diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..95a8418 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +/node_modules +/.idea +/.vscode +/dist +/doc \ No newline at end of file diff --git a/.mocharc.js b/.mocharc.js new file mode 100644 index 0000000..bcc49aa --- /dev/null +++ b/.mocharc.js @@ -0,0 +1,11 @@ +module.exports = { + require: [ + 'ts-node/register', + ], + timeout: 999999, + exit: false, + spec: [ + './test/**/*.test.ts' + ], + 'preserve-symlinks': true +} \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..b8f0108 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,14 @@ + +FROM node:18-alpine + +ENV Param sid=0 + +ADD ./dist ./app + +WORKDIR /app + +RUN apk add tzdata + +RUN npm config set registry http://registry.npm.taobao.org/ && npm install pm2@5.2.2 -g + +CMD cd /app && sh zoeninfo.sh "Asia/Tokyo" && pm2-runtime start js_pm2.config.js -- ${Param} diff --git a/frame.md b/frame.md new file mode 100644 index 0000000..825deab --- /dev/null +++ b/frame.md @@ -0,0 +1,44 @@ +## **src** + +###### api_o2s + +* o2s -> ***任意端与服务端通信代码*** +* s2s -> ***服务端与服务端通信代码*** + +###### api_s2c -> ***与客户端的业务逻辑交互代码*** + +###### gameJson -> ***服务端的json配置文件*** + +###### json -> ***与客户端的共享json配置文件,初次svn拉取项目记得svn切换至../../cehua/json*** + +###### module -> ***mongodb与redis的数据模型*** + +###### monopoly -> ***服务端使用类型文件*** + +###### public -> ***服务端使用函数*** + +###### shared -> ***客户端与服务端共享的类型文件以及函数*** + +###### encrypt.ts -> ***数据加解密*** + +###### extends.ts -> ***扩展npm安装的包*** + +###### global.ts -> ***全局变量定义*** + +###### index.ts -> ***启动脚本*** + +###### jsonType.ts -> ***json配置文件类型提示*** + +###### lng.ts -> ***语言包*** + +###### localConfig.ts -> ***本地服务端配置*** + +###### scheduler.ts -> ***定时器*** + +###### setHttp.ts -> ***创建、初始化 http服务*** + +###### setMongodb.ts -> ***初始化mongodb*** + +###### setRedis.ts -> ***初始化redis*** + +###### setWs.ts -> ***创建、初始化 websocket服务*** diff --git a/js_docker_dev.js b/js_docker_dev.js new file mode 100644 index 0000000..f9afc33 --- /dev/null +++ b/js_docker_dev.js @@ -0,0 +1,61 @@ +/** + * 执行脚本环境要求 + * 1. aliyun cli + * 2. docker + */ + +const { execSync } = require('child_process'); +const { argv, platform } = require('process'); + +const imageName = argv[2]; +const tag = argv[3]; +const url = 'staging-legolas-registry.ap-northeast-1.cr.aliyuncs.com'; +const repositories = `${url}/blacklagoon/heijiaoserver`; + +function executeCommand(command) { + try { + const outPut = execSync(command, { stdio: 'inherit' }); + return outPut?.toString() || ''; + } catch (error) { + console.error(`Command execution failed: ${command}`) + console.error(error.message); + process.exit(); + } +} + +function buildImage() { + console.log('构建镜像'); + if (platform == 'linux') executeCommand(`npm run build_docker_linux`); + else if (platform == 'win32') executeCommand(`npm run build_docker_win`) + executeCommand(`docker build -t ${imageName} .`); +} + +function dockerLogin() { + console.log('登陆镜像仓库'); + const region = 'ap-northeast-1'; + const instanceId = 'cri-fe5eqsg73zl4vd4m'; + const version = '2018-12-01'; + const command = `aliyun cr GetAuthorizationToken --profile dev --region ${region} --InstanceId ${instanceId} --version ${version} --force`; + const output = execSync(command, { encoding: 'utf8' }); + const result = JSON.parse(output); + const password = result.AuthorizationToken.replace(/"/g, ''); + executeCommand(`docker login --username=cr_temp_user --password=${password} ${url}`) +} + +function dockerTag() { + console.log('标记镜像'); + executeCommand(`docker tag ${imageName} ${repositories}:${tag}`); +} + +function dockerPush() { + console.log('推送镜像'); + executeCommand(`docker push ${repositories}:${tag}`); +} + +if (!imageName) return console.error('imageName is null'); +if (!tag) return console.error('tag is null'); + +buildImage(); +dockerLogin(); +dockerTag(); +dockerPush(); diff --git a/js_docker_prod.js b/js_docker_prod.js new file mode 100644 index 0000000..6920e3c --- /dev/null +++ b/js_docker_prod.js @@ -0,0 +1,61 @@ +/** + * 执行脚本环境要求 + * 1. aliyun cli + * 2. docker + */ + +const { execSync } = require('child_process'); +const { argv, platform } = require('process'); + +const imageName = argv[2]; +const tag = argv[3]; +const url = 'production-legolas-registry.ap-northeast-1.cr.aliyuncs.com'; +const repositories = `${url}/blacklagoon/heijiao-server`; + +function executeCommand(command) { + try { + const outPut = execSync(command, { stdio: 'inherit' }); + return outPut?.toString() || ''; + } catch (error) { + console.error(`Command execution failed: ${command}`) + console.error(error.message); + process.exit(); + } +} + +function buildImage() { + console.log('构建镜像'); + if (platform == 'linux') executeCommand(`npm run build_docker_linux`); + else if (platform == 'win32') executeCommand(`npm run build_docker_win`) + executeCommand(`docker build -t ${imageName} .`); +} + +function dockerLogin() { + console.log('登陆镜像仓库'); + const region = 'ap-northeast-1'; + const instanceId = 'cri-azy285s79zw3ti5v'; + const version = '2018-12-01'; + const command = `aliyun cr GetAuthorizationToken --profile prod --region ${region} --InstanceId ${instanceId} --version ${version} --force`; + const output = execSync(command, { encoding: 'utf8' }); + const result = JSON.parse(output); + const password = result.AuthorizationToken.replace(/"/g, ''); + executeCommand(`docker login --username=cr_temp_user --password=${password} ${url}`) +} + +function dockerTag() { + console.log('标记镜像'); + executeCommand(`docker tag ${imageName} ${repositories}:${tag}`); +} + +function dockerPush() { + console.log('推送镜像'); + executeCommand(`docker push ${repositories}:${tag}`); +} + +if (!imageName) return console.error('imageName is null'); +if (!tag) return console.error('tag is null'); + +buildImage(); +dockerLogin(); +dockerTag(); +dockerPush(); diff --git a/js_jsonType.js b/js_jsonType.js new file mode 100644 index 0000000..10b36c3 --- /dev/null +++ b/js_jsonType.js @@ -0,0 +1,20 @@ +var fs = require('fs'); +var path = require('path'); +var shell = require('child_process'); + +shell.execSync(`svn up ${path.join(__dirname, '../cehua')}`); +shell.exec(`node ${path.join(__dirname, '../cehua/_creatJsonType.js')} ${path.join(__dirname, 'src/gamejson')}`, (err, stdout, stderr) => { + if (stdout) { + + fs.writeFileSync('src/jsonType.ts', stdout + ` + +declare global { + type _gcType = gcType; +} + +export function initGcType () { + +} + `); + } +}); \ No newline at end of file diff --git a/js_pm2.config.js b/js_pm2.config.js new file mode 100644 index 0000000..9dee1a0 --- /dev/null +++ b/js_pm2.config.js @@ -0,0 +1,85 @@ +const fs = require('fs'); +const os = require('os'); +const path = require('path'); +const {env} = require('process'); +const request = require('sync-request'); + +console.log('服务端环境变量 ', env.SERVER_ID, env.SERVER_TYPE); + +if (env.SERVER_ID) { + let type = env.SERVER_TYPE || 'game'; + let url = `http://server-tool:7456/server/getConfig?sid=${env.SERVER_ID}&type=${type}` + console.log('拉取服务端启动配置文件', url); + + let res = request('GET', url, { + headers: { + 'content-type': 'application/json' + } + }); + + const body = JSON.parse(res.body.toString()); + if (body) { + fs.writeFileSync('config.json', JSON.stringify(body, null, 2)); + console.log('服务端配置: ', body); + } else { + console.log('拉取失败'); + } +} + +//读取服务配置 +const config = fs.existsSync(path.resolve(__dirname, 'config.json')) ? JSON.parse(fs.readFileSync(path.resolve(__dirname, 'config.json'), 'utf-8')) : {}; +const dis = config.serverId != undefined ? config.serverId : '0'; +const localApps = [ + { + // 应用程序名称 + name: 'heijiao_msg_s' + dis, + // 执行文件 + script: 'index.js', + // 应用程序所在的目录 + cwd: './', + //集群实例数量,0表示根据cpu核心数自动控制 + instances: 8, + // 传递给脚本的参数 + args: '-serverType msg', + // 是否启用监控模式,默认是false。如果设置成true,当应用程序变动时,pm2会自动重载。这里也可以设置你要监控的文件。 + watch: false, + // 不用监听的文件 + ignore_watch: [ + 'logs' + ], + // 自定义应用程序的错误日志文件(错误日志文件) + error_file: './logs/errMsg.log', + // 自定义应用程序日志文件(正常日志文件) + out_file: './logs/outMsg.log', + // 指定日志文件的时间格式 + log_date_format: 'YYYY-MM-DD HH:mm:ss', + } +]; +const crossApps = [ + { + // 应用程序名称 + name: 'heijiao_cross_s' + dis, + // 执行文件 + script: 'index.js', + // 应用程序所在的目录 + cwd: './', + // 传递给脚本的参数 + args: '-serverType cross', + // 是否启用监控模式,默认是false。如果设置成true,当应用程序变动时,pm2会自动重载。这里也可以设置你要监控的文件。 + watch: false, + // 不用监听的文件 + ignore_watch: [ + 'logs' + ], + // 自定义应用程序的错误日志文件(错误日志文件) + error_file: './logs/errCross.log', + // 自定义应用程序日志文件(正常日志文件) + out_file: './logs/outCross.log', + // 指定日志文件的时间格式 + log_date_format: 'YYYY-MM-DD HH:mm:ss', + } +] + +module.exports = { + apps: config.type == 'cross' ? crossApps : localApps +} \ No newline at end of file diff --git a/js_uploadDoc.js b/js_uploadDoc.js new file mode 100644 index 0000000..be36d8c --- /dev/null +++ b/js_uploadDoc.js @@ -0,0 +1,128 @@ +const fs = require('fs'); +const ftp = require('ftp'); +const path = require('path'); +const client = new ftp(); + +function changeMD(url) { + var str = '' + if (url.indexOf('s2c') != -1) { + str = ` +## [返回上一级](README.md) + +## 目录 + + ` + } else if (url.indexOf('s2o') != -1) { + str = ` +## [返回上一级](README.md) +## 通用说明 + +- 所有请求方法均为 \`POST\` +- 所有请求均需加入以下 Header : + - \`Content-Type: application/json\` +- 调用api的格式为: + - \`url: http://{ip}:{port}{path}\` + - \`body: 对应api的请求类型\` + - \`加密方式: 联系该项目的后端获取\` +- 返回值统一为: + - 请求参数校验不成功返回: + - \`data error 字符串\` + - 请求参数校验成功: + { + /**请求是否成功 */ + isSucc: boolean; + /**请求的返回值 对应调用api的响应值*/ + res?: any; + /**请求返回的错误信息*/ + err?: any; + } +- 以向玩家发送邮件为例: + + ![发送邮件代码示例](../../img/heijiao_http_api_send.png) + ![发送邮件代码示例](../../img/heijiao_http_api_send_over.png) + +## 目录 + ` + } + + let file = fs.readFileSync(url, 'utf-8'); + file = file.replace(/^# TSRPC API 接口文档(.|\n)*^## 目录/gm, str); + fs.writeFileSync(url, file); +} + +changeMD('doc/s2c/tsapi.md'); +changeMD('doc/s2o/tsapi.md'); + +client.on('ready', async () => { + console.log('ftp client is ready'); + + await cd('document/serverDoc/doc/heijiao'); + let { err, files } = await list(); + console.log(files); + for (let file of files) { + await del(file.name) + } + await put('doc/s2c/tsapi.md', 's2c.md'); + await put('doc/s2o/tsapi.md', 's2o.md'); + + client.destroy(); +}); + +client.on('close', () => { + console.log('ftp client has close') +}); + +client.on('end', () => { + console.log('ftp client has end') +}); + +client.on('error', (err) => { + console.log('ftp client has an error : ' + JSON.stringify(err)) +}); + +client.connect({ + host: '10.0.1.20', + port: '21', + user: 'administrator', + password: 'a123456789.', + keepalive: 1000 +}); + +//列出目标目录 +async function list() { + return new Promise((resolve, reject) => { + client.list((err, files) => { + resolve({ err: err, files: files }); + }) + }); +} + +//切换目录 +async function cd(dirPath) { + return new Promise(res => { + client.cwd(dirPath, (err, dir) => { + res({ err: err, dir: dir }) + }) + }); +} + +//删除 +async function del(path) { + return new Promise(res => { + client.rmdir(path, (err, dir) => { + + res({ err: err, dir: dir }) + }) + }); +} + +//将文件上传到ftp目标地址 +async function put(currentFile, targetFilePath) { + const rs = fs.createReadStream(currentFile); + + return new Promise((resolve, reject) => { + client.put(rs, targetFilePath, (err) => { + resolve({ err: err }); + }) + }); +} \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..1043838 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,8076 @@ +{ + "name": "server-.", + "version": "0.1.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "server-.", + "version": "0.1.0", + "dependencies": { + "axios": "^1.4.0", + "crypto-js": "^4.1.1", + "express": "^4.18.2", + "json5": "^2.2.3", + "mathjs": "^11.4.0", + "mongodb": "^4.11.0", + "redis": "^4.3.1", + "shelljs": "^0.8.5", + "sync-request": "^6.1.0", + "tsrpc": "^3.4.12", + "xlsx": "^0.18.5" + }, + "devDependencies": { + "@types/crypto-js": "^4.1.1", + "@types/json5": "^2.2.0", + "@types/mathjs": "^9.4.2", + "@types/mocha": "^8.2.3", + "@types/mongodb": "^4.0.7", + "@types/node": "^15.14.9", + "@types/redis": "^4.0.11", + "ftp": "^0.3.10", + "mocha": "^9.2.2", + "onchange": "^7.1.0", + "ts-node": "^10.9.1", + "tsrpc-cli": "^2.4.5", + "typescript": "^4.8.4" + } + }, + "node_modules/@aws-crypto/ie11-detection": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@aws-crypto/ie11-detection/-/ie11-detection-2.0.2.tgz", + "integrity": "sha512-5XDMQY98gMAf/WRTic5G++jfmS/VLM0rwpiOpaainKi4L0nqWMSB1SzsrEG5rjFZGYN6ZAefO+/Yta2dFM0kMw==", + "optional": true, + "dependencies": { + "tslib": "^1.11.1" + } + }, + "node_modules/@aws-crypto/ie11-detection/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "optional": true + }, + "node_modules/@aws-crypto/sha256-browser": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-browser/-/sha256-browser-2.0.0.tgz", + "integrity": "sha512-rYXOQ8BFOaqMEHJrLHul/25ckWH6GTJtdLSajhlqGMx0PmSueAuvboCuZCTqEKlxR8CQOwRarxYMZZSYlhRA1A==", + "optional": true, + "dependencies": { + "@aws-crypto/ie11-detection": "^2.0.0", + "@aws-crypto/sha256-js": "^2.0.0", + "@aws-crypto/supports-web-crypto": "^2.0.0", + "@aws-crypto/util": "^2.0.0", + "@aws-sdk/types": "^3.1.0", + "@aws-sdk/util-locate-window": "^3.0.0", + "@aws-sdk/util-utf8-browser": "^3.0.0", + "tslib": "^1.11.1" + } + }, + "node_modules/@aws-crypto/sha256-browser/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "optional": true + }, + "node_modules/@aws-crypto/sha256-js": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-2.0.0.tgz", + "integrity": "sha512-VZY+mCY4Nmrs5WGfitmNqXzaE873fcIZDu54cbaDaaamsaTOP1DBImV9F4pICc3EHjQXujyE8jig+PFCaew9ig==", + "optional": true, + "dependencies": { + "@aws-crypto/util": "^2.0.0", + "@aws-sdk/types": "^3.1.0", + "tslib": "^1.11.1" + } + }, + "node_modules/@aws-crypto/sha256-js/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "optional": true + }, + "node_modules/@aws-crypto/supports-web-crypto": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@aws-crypto/supports-web-crypto/-/supports-web-crypto-2.0.2.tgz", + "integrity": "sha512-6mbSsLHwZ99CTOOswvCRP3C+VCWnzBf+1SnbWxzzJ9lR0mA0JnY2JEAhp8rqmTE0GPFy88rrM27ffgp62oErMQ==", + "optional": true, + "dependencies": { + "tslib": "^1.11.1" + } + }, + "node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "optional": true + }, + "node_modules/@aws-crypto/util": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@aws-crypto/util/-/util-2.0.2.tgz", + "integrity": "sha512-Lgu5v/0e/BcrZ5m/IWqzPUf3UYFTy/PpeED+uc9SWUR1iZQL8XXbGQg10UfllwwBryO3hFF5dizK+78aoXC1eA==", + "optional": true, + "dependencies": { + "@aws-sdk/types": "^3.110.0", + "@aws-sdk/util-utf8-browser": "^3.0.0", + "tslib": "^1.11.1" + } + }, + "node_modules/@aws-crypto/util/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "optional": true + }, + "node_modules/@aws-sdk/abort-controller": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/abort-controller/-/abort-controller-3.193.0.tgz", + "integrity": "sha512-MYPBm5PWyKP+Tq37mKs5wDbyAyVMocF5iYmx738LYXBSj8A1V4LTFrvfd4U16BRC/sM0DYB9fBFJUQ9ISFRVYw==", + "optional": true, + "dependencies": { + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/client-cognito-identity": { + "version": "3.194.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.194.0.tgz", + "integrity": "sha512-khDgkrrSC/2PFN7Sb8sUsvt6QTsU3s9vcizFULWc8H5OO58tTdzkoKuAa5XMVbSRQnnl6iQ4uv6bBglCC+OfSw==", + "optional": true, + "dependencies": { + "@aws-crypto/sha256-browser": "2.0.0", + "@aws-crypto/sha256-js": "2.0.0", + "@aws-sdk/client-sts": "3.194.0", + "@aws-sdk/config-resolver": "3.193.0", + "@aws-sdk/credential-provider-node": "3.193.0", + "@aws-sdk/fetch-http-handler": "3.193.0", + "@aws-sdk/hash-node": "3.193.0", + "@aws-sdk/invalid-dependency": "3.193.0", + "@aws-sdk/middleware-content-length": "3.193.0", + "@aws-sdk/middleware-host-header": "3.193.0", + "@aws-sdk/middleware-logger": "3.193.0", + "@aws-sdk/middleware-recursion-detection": "3.193.0", + "@aws-sdk/middleware-retry": "3.193.0", + "@aws-sdk/middleware-serde": "3.193.0", + "@aws-sdk/middleware-signing": "3.193.0", + "@aws-sdk/middleware-stack": "3.193.0", + "@aws-sdk/middleware-user-agent": "3.193.0", + "@aws-sdk/node-config-provider": "3.193.0", + "@aws-sdk/node-http-handler": "3.193.0", + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/smithy-client": "3.193.0", + "@aws-sdk/types": "3.193.0", + "@aws-sdk/url-parser": "3.193.0", + "@aws-sdk/util-base64-browser": "3.188.0", + "@aws-sdk/util-base64-node": "3.188.0", + "@aws-sdk/util-body-length-browser": "3.188.0", + "@aws-sdk/util-body-length-node": "3.188.0", + "@aws-sdk/util-defaults-mode-browser": "3.193.0", + "@aws-sdk/util-defaults-mode-node": "3.193.0", + "@aws-sdk/util-user-agent-browser": "3.193.0", + "@aws-sdk/util-user-agent-node": "3.193.0", + "@aws-sdk/util-utf8-browser": "3.188.0", + "@aws-sdk/util-utf8-node": "3.188.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@aws-sdk/client-sso": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.193.0.tgz", + "integrity": "sha512-NxDckym95mtimYp9uWRA1lcyJHDyS8OZEaDC+dZ/tt5wGyPoc3ftHZNWDLzZM1PUjzgo+XzjMBVkWMvk/SRSYw==", + "optional": true, + "dependencies": { + "@aws-crypto/sha256-browser": "2.0.0", + "@aws-crypto/sha256-js": "2.0.0", + "@aws-sdk/config-resolver": "3.193.0", + "@aws-sdk/fetch-http-handler": "3.193.0", + "@aws-sdk/hash-node": "3.193.0", + "@aws-sdk/invalid-dependency": "3.193.0", + "@aws-sdk/middleware-content-length": "3.193.0", + "@aws-sdk/middleware-host-header": "3.193.0", + "@aws-sdk/middleware-logger": "3.193.0", + "@aws-sdk/middleware-recursion-detection": "3.193.0", + "@aws-sdk/middleware-retry": "3.193.0", + "@aws-sdk/middleware-serde": "3.193.0", + "@aws-sdk/middleware-stack": "3.193.0", + "@aws-sdk/middleware-user-agent": "3.193.0", + "@aws-sdk/node-config-provider": "3.193.0", + "@aws-sdk/node-http-handler": "3.193.0", + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/smithy-client": "3.193.0", + "@aws-sdk/types": "3.193.0", + "@aws-sdk/url-parser": "3.193.0", + "@aws-sdk/util-base64-browser": "3.188.0", + "@aws-sdk/util-base64-node": "3.188.0", + "@aws-sdk/util-body-length-browser": "3.188.0", + "@aws-sdk/util-body-length-node": "3.188.0", + "@aws-sdk/util-defaults-mode-browser": "3.193.0", + "@aws-sdk/util-defaults-mode-node": "3.193.0", + "@aws-sdk/util-user-agent-browser": "3.193.0", + "@aws-sdk/util-user-agent-node": "3.193.0", + "@aws-sdk/util-utf8-browser": "3.188.0", + "@aws-sdk/util-utf8-node": "3.188.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@aws-sdk/client-sts": { + "version": "3.194.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.194.0.tgz", + "integrity": "sha512-duolI7KLvRLMrL0ZpiVvmhaC5stKcNp5tfJ7gUW24tyf+7ImAmk2odSMIgcq54EWQ3XppTKBhEGCjOJ9th7+Qg==", + "optional": true, + "dependencies": { + "@aws-crypto/sha256-browser": "2.0.0", + "@aws-crypto/sha256-js": "2.0.0", + "@aws-sdk/config-resolver": "3.193.0", + "@aws-sdk/credential-provider-node": "3.193.0", + "@aws-sdk/fetch-http-handler": "3.193.0", + "@aws-sdk/hash-node": "3.193.0", + "@aws-sdk/invalid-dependency": "3.193.0", + "@aws-sdk/middleware-content-length": "3.193.0", + "@aws-sdk/middleware-endpoint": "3.193.0", + "@aws-sdk/middleware-host-header": "3.193.0", + "@aws-sdk/middleware-logger": "3.193.0", + "@aws-sdk/middleware-recursion-detection": "3.193.0", + "@aws-sdk/middleware-retry": "3.193.0", + "@aws-sdk/middleware-sdk-sts": "3.193.0", + "@aws-sdk/middleware-serde": "3.193.0", + "@aws-sdk/middleware-signing": "3.193.0", + "@aws-sdk/middleware-stack": "3.193.0", + "@aws-sdk/middleware-user-agent": "3.193.0", + "@aws-sdk/node-config-provider": "3.193.0", + "@aws-sdk/node-http-handler": "3.193.0", + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/smithy-client": "3.193.0", + "@aws-sdk/types": "3.193.0", + "@aws-sdk/url-parser": "3.193.0", + "@aws-sdk/util-base64-browser": "3.188.0", + "@aws-sdk/util-base64-node": "3.188.0", + "@aws-sdk/util-body-length-browser": "3.188.0", + "@aws-sdk/util-body-length-node": "3.188.0", + "@aws-sdk/util-defaults-mode-browser": "3.193.0", + "@aws-sdk/util-defaults-mode-node": "3.193.0", + "@aws-sdk/util-endpoints": "3.194.0", + "@aws-sdk/util-user-agent-browser": "3.193.0", + "@aws-sdk/util-user-agent-node": "3.193.0", + "@aws-sdk/util-utf8-browser": "3.188.0", + "@aws-sdk/util-utf8-node": "3.188.0", + "fast-xml-parser": "4.0.11", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@aws-sdk/config-resolver": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/config-resolver/-/config-resolver-3.193.0.tgz", + "integrity": "sha512-HIjuv2A1glgkXy9g/A8bfsiz3jTFaRbwGZheoHFZod6iEQQEbbeAsBe3u2AZyzOrVLgs8lOvBtgU8XKSJWjDkw==", + "optional": true, + "dependencies": { + "@aws-sdk/signature-v4": "3.193.0", + "@aws-sdk/types": "3.193.0", + "@aws-sdk/util-config-provider": "3.188.0", + "@aws-sdk/util-middleware": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-cognito-identity": { + "version": "3.194.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.194.0.tgz", + "integrity": "sha512-AAtnTap4SS0aDuLB8NsWuvAkbaCX8kh6QG+S4+hziPq3+OZtYq34QM8j52ojGyB99VU4dhJmxoExMayLOSTIJg==", + "optional": true, + "dependencies": { + "@aws-sdk/client-cognito-identity": "3.194.0", + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-env": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.193.0.tgz", + "integrity": "sha512-pRqZoIaqCdWB4JJdR6DqDn3u+CwKJchwiCPnRtChwC8KXCMkT4njq9J1bWG3imYeTxP/G06O1PDONEuD4pPtNQ==", + "optional": true, + "dependencies": { + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-imds": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.193.0.tgz", + "integrity": "sha512-jC7uT7uVpO/iitz49toHMGFKXQ2igWQQG2SKirREqDRaz5HSXwEP1V3rcOlNNyGIBPMggDjZnxYgJHqBXSq9Ag==", + "optional": true, + "dependencies": { + "@aws-sdk/node-config-provider": "3.193.0", + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/types": "3.193.0", + "@aws-sdk/url-parser": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-ini": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.193.0.tgz", + "integrity": "sha512-JQ4tyeLjwsa9Jo95yTrLgFFspAP5GwaZDqDJArG98waKDzxhl7FeBs+N32+oux6WB7RKRB0svOK02nnoWnrjVg==", + "optional": true, + "dependencies": { + "@aws-sdk/credential-provider-env": "3.193.0", + "@aws-sdk/credential-provider-imds": "3.193.0", + "@aws-sdk/credential-provider-sso": "3.193.0", + "@aws-sdk/credential-provider-web-identity": "3.193.0", + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/shared-ini-file-loader": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-node": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.193.0.tgz", + "integrity": "sha512-2E8yWVw1vLb6IumZxA0w4mes759YSCTHLdfp5nMBpn+d+Otz26mczKSe7xr7AaVONq+/sVPUl2GfTFTWM4B0eA==", + "optional": true, + "dependencies": { + "@aws-sdk/credential-provider-env": "3.193.0", + "@aws-sdk/credential-provider-imds": "3.193.0", + "@aws-sdk/credential-provider-ini": "3.193.0", + "@aws-sdk/credential-provider-process": "3.193.0", + "@aws-sdk/credential-provider-sso": "3.193.0", + "@aws-sdk/credential-provider-web-identity": "3.193.0", + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/shared-ini-file-loader": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-process": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.193.0.tgz", + "integrity": "sha512-zpXxtQzQqkaUuFqmHW9dSkh9p/1k+XNKlwEkG8FTwAJNUWmy2ZMJv+8NTVn4s4vaRu7xJ1er9chspYr7mvxHlA==", + "optional": true, + "dependencies": { + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/shared-ini-file-loader": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-sso": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.193.0.tgz", + "integrity": "sha512-jBFWreNFZUgnGyCkpxDGf+LrXTuzEfjYkJYti1HnnsUF4vF0PsVZS6/FQi1mDl3pqorrtgknI59ENnAhKVxtBg==", + "optional": true, + "dependencies": { + "@aws-sdk/client-sso": "3.193.0", + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/shared-ini-file-loader": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-web-identity": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.193.0.tgz", + "integrity": "sha512-MIQY9KwLCBnRyIt7an4EtMrFQZz2HC1E8vQDdKVzmeQBBePhW61fnX9XDP9bfc3Ypg1NggLG00KBPEC88twLFg==", + "optional": true, + "dependencies": { + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/credential-providers": { + "version": "3.194.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-providers/-/credential-providers-3.194.0.tgz", + "integrity": "sha512-pEwhG/W5Y/sEItXu3ulpuq3+nl9M3PDHzgtDfKbtvO8Mfhd8EucmHbTGHIcHdUow44E94tGIbxsnt239e9m/yg==", + "optional": true, + "dependencies": { + "@aws-sdk/client-cognito-identity": "3.194.0", + "@aws-sdk/client-sso": "3.193.0", + "@aws-sdk/client-sts": "3.194.0", + "@aws-sdk/credential-provider-cognito-identity": "3.194.0", + "@aws-sdk/credential-provider-env": "3.193.0", + "@aws-sdk/credential-provider-imds": "3.193.0", + "@aws-sdk/credential-provider-ini": "3.193.0", + "@aws-sdk/credential-provider-node": "3.193.0", + "@aws-sdk/credential-provider-process": "3.193.0", + "@aws-sdk/credential-provider-sso": "3.193.0", + "@aws-sdk/credential-provider-web-identity": "3.193.0", + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/shared-ini-file-loader": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/fetch-http-handler": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.193.0.tgz", + "integrity": "sha512-UhIS2LtCK9hqBzYVon6BI8WebJW1KC0GGIL/Gse5bqzU9iAGgFLAe66qg9k+/h3Jjc5LNAYzqXNVizMwn7689Q==", + "optional": true, + "dependencies": { + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/querystring-builder": "3.193.0", + "@aws-sdk/types": "3.193.0", + "@aws-sdk/util-base64-browser": "3.188.0", + "tslib": "^2.3.1" + } + }, + "node_modules/@aws-sdk/hash-node": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/hash-node/-/hash-node-3.193.0.tgz", + "integrity": "sha512-O2SLPVBjrCUo+4ouAdRUoHBYsyurO9LcjNZNYD7YQOotBTbVFA3cx7kTZu+K4B6kX7FDaGbqbE1C/T1/eg/r+w==", + "optional": true, + "dependencies": { + "@aws-sdk/types": "3.193.0", + "@aws-sdk/util-buffer-from": "3.188.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/invalid-dependency": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/invalid-dependency/-/invalid-dependency-3.193.0.tgz", + "integrity": "sha512-54DCknekLwJAI1os76XJ8XCzfAH7BGkBGtlWk5WCNkZTfj3rf5RUiXz4uoKUMWE1rZmyMDoDDS1PBo+yTVKW5w==", + "optional": true, + "dependencies": { + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "node_modules/@aws-sdk/is-array-buffer": { + "version": "3.188.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/is-array-buffer/-/is-array-buffer-3.188.0.tgz", + "integrity": "sha512-n69N4zJZCNd87Rf4NzufPzhactUeM877Y0Tp/F3KiHqGeTnVjYUa4Lv1vLBjqtfjYb2HWT3NKlYn5yzrhaEwiQ==", + "optional": true, + "dependencies": { + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/middleware-content-length": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-content-length/-/middleware-content-length-3.193.0.tgz", + "integrity": "sha512-em0Sqo7O7DFOcVXU460pbcYuIjblDTZqK2YE62nQ0T+5Nbj+MSjuoite+rRRdRww9VqBkUROGKON45bUNjogtQ==", + "optional": true, + "dependencies": { + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/middleware-endpoint": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-endpoint/-/middleware-endpoint-3.193.0.tgz", + "integrity": "sha512-Inbpt7jcHGvzF7UOJOCxx9wih0+eAQYERikokidWJa7M405EJpVYq1mGbeOcQUPANU3uWF1AObmUUFhbkriHQw==", + "optional": true, + "dependencies": { + "@aws-sdk/middleware-serde": "3.193.0", + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/signature-v4": "3.193.0", + "@aws-sdk/types": "3.193.0", + "@aws-sdk/url-parser": "3.193.0", + "@aws-sdk/util-config-provider": "3.188.0", + "@aws-sdk/util-middleware": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/middleware-host-header": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.193.0.tgz", + "integrity": "sha512-aegzj5oRWd//lmfmkzRmgG2b4l3140v8Ey4QkqCxcowvAEX5a7rh23yuKaGtmiePwv2RQalCKz+tN6JXCm8g6Q==", + "optional": true, + "dependencies": { + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/middleware-logger": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.193.0.tgz", + "integrity": "sha512-D/h1pU5tAcyJpJ8ZeD1Sta0S9QZPcxERYRBiJdEl8VUrYwfy3Cl1WJedVOmd5nG73ZLRSyHeXHewb/ohge3yKQ==", + "optional": true, + "dependencies": { + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/middleware-recursion-detection": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.193.0.tgz", + "integrity": "sha512-fMWP76Q1GOb/9OzS1arizm6Dbfo02DPZ6xp7OoAN3PS6ybH3Eb47s/gP3jzgBPAITQacFj4St/4a06YWYrN3NA==", + "optional": true, + "dependencies": { + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/middleware-retry": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-retry/-/middleware-retry-3.193.0.tgz", + "integrity": "sha512-zTQkHLBQBJi6ns655WYcYLyLPc1tgbEYU080Oc8zlveLUqoDn1ogkcmNhG7XMeQuBvWZBYN7J3/wFaXlDzeCKg==", + "optional": true, + "dependencies": { + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/service-error-classification": "3.193.0", + "@aws-sdk/types": "3.193.0", + "@aws-sdk/util-middleware": "3.193.0", + "tslib": "^2.3.1", + "uuid": "^8.3.2" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/middleware-sdk-sts": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.193.0.tgz", + "integrity": "sha512-TafiDkeflUsnbNa89TLkDnAiRRp1gAaZLDAjt75AzriRKZnhtFfYUXWb+qAuN50T+CkJ/gZI9LHDZL5ogz/HxQ==", + "optional": true, + "dependencies": { + "@aws-sdk/middleware-signing": "3.193.0", + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/signature-v4": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/middleware-serde": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-serde/-/middleware-serde-3.193.0.tgz", + "integrity": "sha512-dH93EJYVztY+ZDPzSMRi9LfAZfKO+luH62raNy49hlNa4jiyE1Tc/+qwlmOEpfGsrtcZ9TgsON1uFF9sgBXXaA==", + "optional": true, + "dependencies": { + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/middleware-signing": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.193.0.tgz", + "integrity": "sha512-obBoELGPf5ikvHYZwbzllLeuODiokdDfe92Ve2ufeOa/d8+xsmbqNzNdCTLNNTmr1tEIaEE7ngZVTOiHqAVhyw==", + "optional": true, + "dependencies": { + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/signature-v4": "3.193.0", + "@aws-sdk/types": "3.193.0", + "@aws-sdk/util-middleware": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/middleware-stack": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-stack/-/middleware-stack-3.193.0.tgz", + "integrity": "sha512-Ix5d7gE6bZwFNIVf0dGnjYuymz1gjitNoAZDPpv1nEZlUMek/jcno5lmzWFzUZXY/azpbIyaPwq/wm/c69au5A==", + "optional": true, + "dependencies": { + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/middleware-user-agent": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.193.0.tgz", + "integrity": "sha512-0vT6F9NwYQK7ARUUJeHTUIUPnupsO3IbmjHSi1+clkssFlJm2UfmSGeafiWe4AYH3anATTvZEtcxX5DZT/ExbA==", + "optional": true, + "dependencies": { + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/node-config-provider": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/node-config-provider/-/node-config-provider-3.193.0.tgz", + "integrity": "sha512-5RLdjQLH69ISRG8TX9klSLOpEySXxj+z9E9Em39HRvw0/rDcd8poCTADvjYIOqRVvMka0z/hm+elvUTIVn/DRw==", + "optional": true, + "dependencies": { + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/shared-ini-file-loader": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/node-http-handler": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/node-http-handler/-/node-http-handler-3.193.0.tgz", + "integrity": "sha512-DP4BmFw64HOShgpAPEEMZedVnRmKKjHOwMEoXcnNlAkMXnYUFHiKvudYq87Q2AnSlT6OHkyMviB61gEvIk73dA==", + "optional": true, + "dependencies": { + "@aws-sdk/abort-controller": "3.193.0", + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/querystring-builder": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/property-provider": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/property-provider/-/property-provider-3.193.0.tgz", + "integrity": "sha512-IaDR/PdZjKlAeSq2E/6u6nkPsZF9wvhHZckwH7uumq4ocWsWXFzaT+hKpV4YZPHx9n+K2YV4Gn/bDedpz99W1Q==", + "optional": true, + "dependencies": { + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/protocol-http": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/protocol-http/-/protocol-http-3.193.0.tgz", + "integrity": "sha512-r0wbTwFJyXq0uiImI6giqG3g/RO1N/y4wwPA7qr7OC+KXJ0NkyVxIf6e7Vx8h06aM1ATtngbwJaMP59kVCp85A==", + "optional": true, + "dependencies": { + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/querystring-builder": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/querystring-builder/-/querystring-builder-3.193.0.tgz", + "integrity": "sha512-PRaK6649iw0UO45UjUoiUzFcOKXZb8pMjjFJpqALpEvdZT3twxqhlPXujT7GWPKrSwO4uPLNnyYEtPY82wx2vw==", + "optional": true, + "dependencies": { + "@aws-sdk/types": "3.193.0", + "@aws-sdk/util-uri-escape": "3.188.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/querystring-parser": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/querystring-parser/-/querystring-parser-3.193.0.tgz", + "integrity": "sha512-dGEPCe8SK4/td5dSpiaEI3SvT5eHXrbJWbLGyD4FL3n7WCGMy2xVWAB/yrgzD0GdLDjDa8L5vLVz6yT1P9i+hA==", + "optional": true, + "dependencies": { + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/service-error-classification": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/service-error-classification/-/service-error-classification-3.193.0.tgz", + "integrity": "sha512-bPnXVu8ErE1RfWVVQKc2TE7EuoImUi4dSPW9g80fGRzJdQNwXb636C+7OUuWvSDzmFwuBYqZza8GZjVd+rz2zQ==", + "optional": true, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/shared-ini-file-loader": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.193.0.tgz", + "integrity": "sha512-hnvZup8RSpFXfah7Rrn6+lQJnAOCO+OiDJ2R/iMgZQh475GRQpLbu3cPhCOkjB14vVLygJtW8trK/0+zKq93bQ==", + "optional": true, + "dependencies": { + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/signature-v4": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.193.0.tgz", + "integrity": "sha512-JEqqOB8wQZz6g1ERNUOIBFDFt8OJtz5G5Uh1CdkS5W66gyWnJEz/dE1hA2VTqqQwHGGEsIEV/hlzruU1lXsvFA==", + "optional": true, + "dependencies": { + "@aws-sdk/is-array-buffer": "3.188.0", + "@aws-sdk/types": "3.193.0", + "@aws-sdk/util-hex-encoding": "3.188.0", + "@aws-sdk/util-middleware": "3.193.0", + "@aws-sdk/util-uri-escape": "3.188.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/smithy-client": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.193.0.tgz", + "integrity": "sha512-BY0jhfW76vyXr7ODMaKO3eyS98RSrZgOMl6DTQV9sk7eFP/MPVlG7p7nfX/CDIgPBIO1z0A0i2CVIzYur9uGgQ==", + "optional": true, + "dependencies": { + "@aws-sdk/middleware-stack": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/types": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.193.0.tgz", + "integrity": "sha512-LV/wcPolRZKORrcHwkH59QMCkiDR5sM+9ZtuTxvyUGG2QFW/kjoxs08fUF10OWNJMrotBI+czDc5QJRgN8BlAw==", + "optional": true, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/url-parser": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/url-parser/-/url-parser-3.193.0.tgz", + "integrity": "sha512-hwD1koJlOu2a6GvaSbNbdo7I6a3tmrsNTZr8bCjAcbqpc5pDThcpnl/Uaz3zHmMPs92U8I6BvWoK6pH8By06qw==", + "optional": true, + "dependencies": { + "@aws-sdk/querystring-parser": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "node_modules/@aws-sdk/util-base64-browser": { + "version": "3.188.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-base64-browser/-/util-base64-browser-3.188.0.tgz", + "integrity": "sha512-qlH+5NZBLiyKziL335BEPedYxX6j+p7KFRWXvDQox9S+s+gLCayednpK+fteOhBenCcR9fUZOVuAPScy1I8qCg==", + "optional": true, + "dependencies": { + "tslib": "^2.3.1" + } + }, + "node_modules/@aws-sdk/util-base64-node": { + "version": "3.188.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-base64-node/-/util-base64-node-3.188.0.tgz", + "integrity": "sha512-r1dccRsRjKq+OhVRUfqFiW3sGgZBjHbMeHLbrAs9jrOjU2PTQ8PSzAXLvX/9lmp7YjmX17Qvlsg0NCr1tbB9OA==", + "optional": true, + "dependencies": { + "@aws-sdk/util-buffer-from": "3.188.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/util-body-length-browser": { + "version": "3.188.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-body-length-browser/-/util-body-length-browser-3.188.0.tgz", + "integrity": "sha512-8VpnwFWXhnZ/iRSl9mTf+VKOX9wDE8QtN4bj9pBfxwf90H1X7E8T6NkiZD3k+HubYf2J94e7DbeHs7fuCPW5Qg==", + "optional": true, + "dependencies": { + "tslib": "^2.3.1" + } + }, + "node_modules/@aws-sdk/util-body-length-node": { + "version": "3.188.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-body-length-node/-/util-body-length-node-3.188.0.tgz", + "integrity": "sha512-XwqP3vxk60MKp4YDdvDeCD6BPOiG2e+/Ou4AofZOy5/toB6NKz2pFNibQIUg2+jc7mPMnGnvOW3MQEgSJ+gu/Q==", + "optional": true, + "dependencies": { + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/util-buffer-from": { + "version": "3.188.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-buffer-from/-/util-buffer-from-3.188.0.tgz", + "integrity": "sha512-NX1WXZ8TH20IZb4jPFT2CnLKSqZWddGxtfiWxD9M47YOtq/SSQeR82fhqqVjJn4P8w2F5E28f+Du4ntg/sGcxA==", + "optional": true, + "dependencies": { + "@aws-sdk/is-array-buffer": "3.188.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/util-config-provider": { + "version": "3.188.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-config-provider/-/util-config-provider-3.188.0.tgz", + "integrity": "sha512-LBA7tLbi7v4uvbOJhSnjJrxbcRifKK/1ZVK94JTV2MNSCCyNkFotyEI5UWDl10YKriTIUyf7o5cakpiDZ3O4xg==", + "optional": true, + "dependencies": { + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/util-defaults-mode-browser": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.193.0.tgz", + "integrity": "sha512-9riQKFrSJcsNAMnPA/3ltpSxNykeO20klE/UKjxEoD7UWjxLwsPK22UJjFwMRaHoAFcZD0LU/SgPxbC0ktCYCg==", + "optional": true, + "dependencies": { + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/types": "3.193.0", + "bowser": "^2.11.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@aws-sdk/util-defaults-mode-node": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.193.0.tgz", + "integrity": "sha512-occQmckvPRiM4YQIZnulfKKKjykGKWloa5ByGC5gOEGlyeP9zJpfs4zc/M2kArTAt+d2r3wkBtsKe5yKSlVEhA==", + "optional": true, + "dependencies": { + "@aws-sdk/config-resolver": "3.193.0", + "@aws-sdk/credential-provider-imds": "3.193.0", + "@aws-sdk/node-config-provider": "3.193.0", + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@aws-sdk/util-endpoints": { + "version": "3.194.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.194.0.tgz", + "integrity": "sha512-G+DGC3Zx0GnQpt4DpRmVcCfliNxf3nwBtZ3JIdCptkUZgDEpLYzOfjbf3bUyPTQh+oGHeqfnVAF+rFjTnYql3A==", + "optional": true, + "dependencies": { + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/util-hex-encoding": { + "version": "3.188.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-hex-encoding/-/util-hex-encoding-3.188.0.tgz", + "integrity": "sha512-QyWovTtjQ2RYxqVM+STPh65owSqzuXURnfoof778spyX4iQ4z46wOge1YV2ZtwS8w5LWd9eeVvDrLu5POPYOnA==", + "optional": true, + "dependencies": { + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/util-locate-window": { + "version": "3.188.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.188.0.tgz", + "integrity": "sha512-SxobBVLZkkLSawTCfeQnhVX3Azm9O+C2dngZVe1+BqtF8+retUbVTs7OfYeWBlawVkULKF2e781lTzEHBBjCzw==", + "optional": true, + "dependencies": { + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/util-middleware": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-middleware/-/util-middleware-3.193.0.tgz", + "integrity": "sha512-+aC6pmkcGgpxaMWCH/FXTsGWl2W342oQGs1OYKGi+W8z9UguXrqamWjdkdMqgunvj9qOEG2KBMKz1FWFFZlUyA==", + "optional": true, + "dependencies": { + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/util-uri-escape": { + "version": "3.188.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-uri-escape/-/util-uri-escape-3.188.0.tgz", + "integrity": "sha512-4Y6AYZMT483Tiuq8dxz5WHIiPNdSFPGrl6tRTo2Oi2FcwypwmFhqgEGcqxeXDUJktvaCBxeA08DLr/AemVhPCg==", + "optional": true, + "dependencies": { + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@aws-sdk/util-user-agent-browser": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.193.0.tgz", + "integrity": "sha512-1EkGYsUtOMEyJG/UBIR4PtmO3lVjKNoUImoMpLtEucoGbWz5RG9zFSwLevjFyFs5roUBFlxkSpTMo8xQ3aRzQg==", + "optional": true, + "dependencies": { + "@aws-sdk/types": "3.193.0", + "bowser": "^2.11.0", + "tslib": "^2.3.1" + } + }, + "node_modules/@aws-sdk/util-user-agent-node": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.193.0.tgz", + "integrity": "sha512-G/2/1cSgsxVtREAm8Eq8Duib5PXzXknFRHuDpAxJ5++lsJMXoYMReS278KgV54cojOkAVfcODDTqmY3Av0WHhQ==", + "optional": true, + "dependencies": { + "@aws-sdk/node-config-provider": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "peerDependencies": { + "aws-crt": ">=1.0.0" + }, + "peerDependenciesMeta": { + "aws-crt": { + "optional": true + } + } + }, + "node_modules/@aws-sdk/util-utf8-browser": { + "version": "3.188.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.188.0.tgz", + "integrity": "sha512-jt627x0+jE+Ydr9NwkFstg3cUvgWh56qdaqAMDsqgRlKD21md/6G226z/Qxl7lb1VEW2LlmCx43ai/37Qwcj2Q==", + "optional": true, + "dependencies": { + "tslib": "^2.3.1" + } + }, + "node_modules/@aws-sdk/util-utf8-node": { + "version": "3.188.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-utf8-node/-/util-utf8-node-3.188.0.tgz", + "integrity": "sha512-hCgP4+C0Lekjpjt2zFJ2R/iHes5sBGljXa5bScOFAEkRUc0Qw0VNgTv7LpEbIOAwGmqyxBoCwBW0YHPW1DfmYQ==", + "optional": true, + "dependencies": { + "@aws-sdk/util-buffer-from": "3.188.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.20.6", + "resolved": "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.20.6.tgz", + "integrity": "sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==", + "dependencies": { + "regenerator-runtime": "^0.13.11" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@blakeembrey/deque": { + "version": "1.0.5", + "resolved": "https://registry.npmmirror.com/@blakeembrey/deque/-/deque-1.0.5.tgz", + "integrity": "sha512-6xnwtvp9DY1EINIKdTfvfeAtCYw4OqBZJhtiqkT3ivjnEfa25VQ3TsKvaFfKm8MyGIEfE95qLe+bNEt3nB0Ylg==", + "dev": true + }, + "node_modules/@blakeembrey/template": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/@blakeembrey/template/-/template-1.1.0.tgz", + "integrity": "sha512-iZf+UWfL+DogJVpd/xMQyP6X6McYd6ArdYoPMiv/zlOTzeXXfQbYxBNJJBF6tThvsjLMbA8tLjkCdm9RWMFCCw==", + "dev": true + }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmmirror.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@redis/bloom": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@redis/bloom/-/bloom-1.0.2.tgz", + "integrity": "sha512-EBw7Ag1hPgFzdznK2PBblc1kdlj5B5Cw3XwI9/oG7tSn85/HKy3X9xHy/8tm/eNXJYHLXHJL/pkwBpFMVVefkw==", + "peerDependencies": { + "@redis/client": "^1.0.0" + } + }, + "node_modules/@redis/client": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@redis/client/-/client-1.3.0.tgz", + "integrity": "sha512-XCFV60nloXAefDsPnYMjHGtvbtHR8fV5Om8cQ0JYqTNbWcQo/4AryzJ2luRj4blveWazRK/j40gES8M7Cp6cfQ==", + "dependencies": { + "cluster-key-slot": "1.1.0", + "generic-pool": "3.8.2", + "yallist": "4.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@redis/client/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/@redis/graph": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@redis/graph/-/graph-1.0.1.tgz", + "integrity": "sha512-oDE4myMCJOCVKYMygEMWuriBgqlS5FqdWerikMoJxzmmTUErnTRRgmIDa2VcgytACZMFqpAOWDzops4DOlnkfQ==", + "peerDependencies": { + "@redis/client": "^1.0.0" + } + }, + "node_modules/@redis/json": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@redis/json/-/json-1.0.4.tgz", + "integrity": "sha512-LUZE2Gdrhg0Rx7AN+cZkb1e6HjoSKaeeW8rYnt89Tly13GBI5eP4CwDVr+MY8BAYfCg4/N15OUrtLoona9uSgw==", + "peerDependencies": { + "@redis/client": "^1.0.0" + } + }, + "node_modules/@redis/search": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@redis/search/-/search-1.1.0.tgz", + "integrity": "sha512-NyFZEVnxIJEybpy+YskjgOJRNsfTYqaPbK/Buv6W2kmFNaRk85JiqjJZA5QkRmWvGbyQYwoO5QfDi2wHskKrQQ==", + "peerDependencies": { + "@redis/client": "^1.0.0" + } + }, + "node_modules/@redis/time-series": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@redis/time-series/-/time-series-1.0.3.tgz", + "integrity": "sha512-OFp0q4SGrTH0Mruf6oFsHGea58u8vS/iI5+NpYdicaM+7BgqBZH8FFvNZ8rYYLrUO/QRqMq72NpXmxLVNcdmjA==", + "peerDependencies": { + "@redis/client": "^1.0.0" + } + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.9", + "resolved": "https://registry.npmmirror.com/@tsconfig/node10/-/node10-1.0.9.tgz", + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "dev": true + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmmirror.com/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dev": true + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/@tsconfig/node16/-/node16-1.0.3.tgz", + "integrity": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==", + "dev": true + }, + "node_modules/@types/concat-stream": { + "version": "1.6.1", + "resolved": "https://registry.npmmirror.com/@types/concat-stream/-/concat-stream-1.6.1.tgz", + "integrity": "sha512-eHE4cQPoj6ngxBZMvVf6Hw7Mh4jMW4U9lpGmS5GBPB9RYxlFg+CHaVN7ErNY4W9XfLIEn20b4VDYaIrbq0q4uA==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/crypto-js": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@types/crypto-js/-/crypto-js-4.1.1.tgz", + "integrity": "sha512-BG7fQKZ689HIoc5h+6D2Dgq1fABRa0RbBWKBd9SP/MVRVXROflpm5fhwyATX5duFmbStzyzyycPB8qUYKDH3NA==", + "dev": true + }, + "node_modules/@types/form-data": { + "version": "0.0.33", + "resolved": "https://registry.npmmirror.com/@types/form-data/-/form-data-0.0.33.tgz", + "integrity": "sha512-8BSvG1kGm83cyJITQMZSulnl6QV8jqAGreJsc5tPu1Jq0vTSOiY/k24Wx82JRpWwZSqrala6sd5rWi6aNXvqcw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/json5": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/@types/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-NrVug5woqbvNZ0WX+Gv4R+L4TGddtmFek2u8RtccAgFZWtS9QXF2xCXY22/M4nzkaKF0q9Fc6M/5rxLDhfwc/A==", + "deprecated": "This is a stub types definition. json5 provides its own type definitions, so you do not need this installed.", + "dev": true, + "dependencies": { + "json5": "*" + } + }, + "node_modules/@types/mathjs": { + "version": "9.4.2", + "resolved": "https://registry.npmmirror.com/@types/mathjs/-/mathjs-9.4.2.tgz", + "integrity": "sha512-GF5g1vJmvKdWIWsE53XX7EDAyCaZ9p6gaYm1xhlXn5JjrY/NJrOfJN3fBxS3wyZpVh3QqKoMkS2WjFwxWMHOTw==", + "deprecated": "This is a stub types definition. mathjs provides its own type definitions, so you do not need this installed.", + "dev": true, + "dependencies": { + "mathjs": "*" + } + }, + "node_modules/@types/mocha": { + "version": "8.2.3", + "resolved": "https://registry.npmmirror.com/@types/mocha/-/mocha-8.2.3.tgz", + "integrity": "sha512-ekGvFhFgrc2zYQoX4JeZPmVzZxw6Dtllga7iGHzfbYIYkAMUx/sAFP2GdFpLff+vdHXu5fl7WX9AT+TtqYcsyw==", + "dev": true + }, + "node_modules/@types/mongodb": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/@types/mongodb/-/mongodb-4.0.7.tgz", + "integrity": "sha512-lPUYPpzA43baXqnd36cZ9xxorprybxXDzteVKCPAdp14ppHtFJHnXYvNpmBvtMUTb5fKXVv6sVbzo1LHkWhJlw==", + "deprecated": "mongodb provides its own types. @types/mongodb is no longer needed.", + "dev": true, + "dependencies": { + "mongodb": "*" + } + }, + "node_modules/@types/node": { + "version": "15.14.9", + "resolved": "https://registry.npmmirror.com/@types/node/-/node-15.14.9.tgz", + "integrity": "sha512-qjd88DrCxupx/kJD5yQgZdcYKZKSIGBVDIBE1/LTGcNm3d2Np/jxojkdePDdfnBHJc5W7vSMpbJ1aB7p/Py69A==" + }, + "node_modules/@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmmirror.com/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" + }, + "node_modules/@types/redis": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/@types/redis/-/redis-4.0.11.tgz", + "integrity": "sha512-bI+gth8La8Wg/QCR1+V1fhrL9+LZUSWfcqpOj2Kc80ZQ4ffbdL173vQd5wovmoV9i071FU9oP2g6etLuEwb6Rg==", + "deprecated": "This is a stub types definition. redis provides its own type definitions, so you do not need this installed.", + "dev": true, + "dependencies": { + "redis": "*" + } + }, + "node_modules/@types/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-xTE1E+YF4aWPJJeUzaZI5DRntlkY3+BCVJi0axFptnjGmAoWxkyREIh/XMrfxVLejwQxMCfDXdICo0VLxThrog==" + }, + "node_modules/@types/whatwg-url": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-8.2.2.tgz", + "integrity": "sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==", + "dependencies": { + "@types/node": "*", + "@types/webidl-conversions": "*" + } + }, + "node_modules/@types/ws": { + "version": "7.4.7", + "resolved": "https://registry.npmmirror.com/@types/ws/-/ws-7.4.7.tgz", + "integrity": "sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@ungap/promise-all-settled": { + "version": "1.1.2", + "resolved": "https://registry.npmmirror.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz", + "integrity": "sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==", + "dev": true + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.8.0", + "resolved": "https://registry.npmmirror.com/acorn/-/acorn-8.8.0.tgz", + "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmmirror.com/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/adler-32": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/adler-32/-/adler-32-1.3.1.tgz", + "integrity": "sha512-ynZ4w/nUUv5rrsR8UUGoe1VC9hZj6V5hU9Qw1HlMDJGEJw5S7TfTErWTjMys6M7vr0YWcPqs3qAr4ss0nDfP+A==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmmirror.com/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmmirror.com/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmmirror.com/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmmirror.com/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/axios": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.4.0.tgz", + "integrity": "sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==", + "dependencies": { + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/axios/node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/bowser": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.11.0.tgz", + "integrity": "sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==", + "optional": true + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browser-stdout": { + "version": "1.3.1", + "resolved": "https://registry.npmmirror.com/browser-stdout/-/browser-stdout-1.3.1.tgz", + "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", + "dev": true + }, + "node_modules/bson": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/bson/-/bson-4.7.0.tgz", + "integrity": "sha512-VrlEE4vuiO1WTpfof4VmaVolCVYkYTgB9iWgYNOrVlnifpME/06fhFRmONgBhClD5pFC1t9ZWqFUQEQAzY43bA==", + "dependencies": { + "buffer": "^5.6.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmmirror.com/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmmirror.com/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmmirror.com/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmmirror.com/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" + }, + "node_modules/cfb": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cfb/-/cfb-1.2.2.tgz", + "integrity": "sha512-KfdUZsSOw19/ObEWasvBP/Ac4reZvAGauZhs6S/gqNhXhI7cKwvlH7ulj+dOEYnca4bm4SGo8C1bTAQvnTjgQA==", + "dependencies": { + "adler-32": "~1.3.0", + "crc-32": "~1.2.0" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/chalk/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmmirror.com/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "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" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-spinners": { + "version": "2.7.0", + "resolved": "https://registry.npmmirror.com/cli-spinners/-/cli-spinners-2.7.0.tgz", + "integrity": "sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmmirror.com/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/cluster-key-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/cluster-key-slot/-/cluster-key-slot-1.1.0.tgz", + "integrity": "sha512-2Nii8p3RwAPiFwsnZvukotvow2rIHM+yQ6ZcBXGHdniadkYGZYiGmkHJIbZPIV9nfv7m/U1IPMVVcAhoWFeklw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/codepage": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/codepage/-/codepage-1.15.0.tgz", + "integrity": "sha512-3g6NUTPd/YtuuGrhMnOMRjFc+LJw/bnMp3+0r/Wcz3IXUuCosKRJvMphm5+Q+bvTVGcJJuRvVLuYba+WojaFaA==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/commandpost": { + "version": "1.4.0", + "resolved": "https://registry.npmmirror.com/commandpost/-/commandpost-1.4.0.tgz", + "integrity": "sha512-aE2Y4MTFJ870NuB/+2z1cXBhSBBzRydVVjzhFC4gtenEhpnj15yu0qptWGJsO9YGrcPZ3ezX8AWb1VA391MKpQ==", + "dev": true + }, + "node_modules/complex.js": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/complex.js/-/complex.js-2.1.1.tgz", + "integrity": "sha512-8njCHOTtFFLtegk6zQo0kkVX1rngygb/KQI6z1qZxlFI3scluC+LVTCFbrkWjBv4vvLlbQ9t88IPMC6k95VTTg==", + "engines": { + "node": "*" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmmirror.com/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/concat-stream/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "node_modules/concat-stream/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/concat-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/concat-stream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "node_modules/crc-32": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz", + "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==", + "bin": { + "crc32": "bin/crc32.njs" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-js": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.1.1.tgz", + "integrity": "sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==" + }, + "node_modules/debug": { + "version": "4.3.3", + "resolved": "https://registry.npmmirror.com/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/debug/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/decamelize": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/decamelize/-/decamelize-4.0.0.tgz", + "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/decimal.js": { + "version": "10.4.2", + "resolved": "https://registry.npmmirror.com/decimal.js/-/decimal.js-10.4.2.tgz", + "integrity": "sha512-ic1yEvwT6GuvaYwBLLY6/aFFgjZdySKTE8en/fkU3QICTmRtgtSlFn0u0BXN06InZwtfCelR7j8LRiDI/02iGA==" + }, + "node_modules/defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "dev": true, + "dependencies": { + "clone": "^1.0.2" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/denque": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", + "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/diff": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/diff/-/diff-5.0.0.tgz", + "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/editorconfig": { + "version": "0.15.3", + "resolved": "https://registry.npmmirror.com/editorconfig/-/editorconfig-0.15.3.tgz", + "integrity": "sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g==", + "dev": true, + "dependencies": { + "commander": "^2.19.0", + "lru-cache": "^4.1.5", + "semver": "^5.6.0", + "sigmund": "^1.0.1" + }, + "bin": { + "editorconfig": "bin/editorconfig" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmmirror.com/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "node_modules/escape-latex": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/escape-latex/-/escape-latex-1.2.0.tgz", + "integrity": "sha512-nV5aVWW1K0wEiUIEdZ4erkGGH8mDxGyxSeqPzRNtWP7ataw+/olFObw7hujFWlVjNsaDFw5VZ5NzVSIqRgfTiw==" + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/execa": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dev": true, + "dependencies": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/fast-xml-parser": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.0.11.tgz", + "integrity": "sha512-4aUg3aNRR/WjQAcpceODG1C3x3lFANXRo8+1biqfieHmg9pyMt7qB4lQV/Ta6sJCTbA5vfD8fnA8S54JATiFUA==", + "optional": true, + "dependencies": { + "strnum": "^1.0.5" + }, + "bin": { + "fxparser": "src/cli/cli.js" + }, + "funding": { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" + } + }, + "node_modules/figures": { + "version": "3.2.0", + "resolved": "https://registry.npmmirror.com/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/figures/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmmirror.com/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true, + "bin": { + "flat": "cli.js" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/form-data": { + "version": "2.5.1", + "resolved": "https://registry.npmmirror.com/form-data/-/form-data-2.5.1.tgz", + "integrity": "sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/frac": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/frac/-/frac-1.1.2.tgz", + "integrity": "sha512-w/XBfkibaTl3YDqASwfDUqkna4Z2p9cFSr1aHDt0WoMTECnRfBOv2WArlZILlqgWlmdIlALXGpM2AOhEk5W3IA==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmmirror.com/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", + "engines": { + "node": "*" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/ftp": { + "version": "0.3.10", + "resolved": "https://registry.npmmirror.com/ftp/-/ftp-0.3.10.tgz", + "integrity": "sha512-faFVML1aBx2UoDStmLwv2Wptt4vw5x03xxX172nhA5Y5HBshW5JweqQ2W4xL4dezQTG8inJsuYcpPHHU3X5OTQ==", + "dev": true, + "dependencies": { + "readable-stream": "1.1.x", + "xregexp": "2.0.0" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/ftp/node_modules/readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "node_modules/ftp/node_modules/string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmmirror.com/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", + "dev": true + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/generic-pool": { + "version": "3.8.2", + "resolved": "https://registry.npmjs.org/generic-pool/-/generic-pool-3.8.2.tgz", + "integrity": "sha512-nGToKy6p3PAbYQ7p1UlWl6vSPwfwU6TMSWK7TTu+WUY4ZjyZQGniGGt2oNVvyNSpyZYSB43zMXVLcBm08MTMkg==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.1.3", + "resolved": "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz", + "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + } + }, + "node_modules/get-port": { + "version": "3.2.0", + "resolved": "https://registry.npmmirror.com/get-port/-/get-port-3.2.0.tgz", + "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmmirror.com/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "dev": true + }, + "node_modules/growl": { + "version": "1.10.5", + "resolved": "https://registry.npmmirror.com/growl/-/growl-1.10.5.tgz", + "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==", + "dev": true, + "engines": { + "node": ">=4.x" + } + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "bin": { + "he": "bin/he" + } + }, + "node_modules/http-basic": { + "version": "8.1.3", + "resolved": "https://registry.npmmirror.com/http-basic/-/http-basic-8.1.3.tgz", + "integrity": "sha512-/EcDMwJZh3mABI2NhGfHOGOeOZITqfkEO4p/xK+l3NpyncIHUQBoMvCSF/b5GqvKtySC2srL/GGG3+EtlqlmCw==", + "dependencies": { + "caseless": "^0.12.0", + "concat-stream": "^1.6.2", + "http-response-object": "^3.0.1", + "parse-cache-control": "^1.0.1" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-response-object": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/http-response-object/-/http-response-object-3.0.2.tgz", + "integrity": "sha512-bqX0XTF6fnXSQcEJ2Iuyr75yVakyjIDCqroJQ/aHfSdlM743Cwqoi2nDYMzLGWUcuTWGWy8AAvOKXTfiv6q9RA==", + "dependencies": { + "@types/node": "^10.0.3" + } + }, + "node_modules/http-response-object/node_modules/@types/node": { + "version": "10.17.60", + "resolved": "https://registry.npmmirror.com/@types/node/-/node-10.17.60.tgz", + "integrity": "sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==" + }, + "node_modules/human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "dev": true, + "engines": { + "node": ">=8.12.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + }, + "node_modules/ignore": { + "version": "5.2.0", + "resolved": "https://registry.npmmirror.com/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/inquirer": { + "version": "8.2.5", + "resolved": "https://registry.npmmirror.com/inquirer/-/inquirer-8.2.5.tgz", + "integrity": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==", + "dev": true, + "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": "^7.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/invert-kv": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/invert-kv/-/invert-kv-3.0.1.tgz", + "integrity": "sha512-CYdFeFexxhv/Bcny+Q0BfOV+ltRlJcd4BBZBYFX/O0u4npJrgZtIcjokegtiSMAvlMTJ+Koq0GBCc//3bueQxw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmmirror.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmmirror.com/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/javascript-natural-sort": { + "version": "0.7.1", + "resolved": "https://registry.npmmirror.com/javascript-natural-sort/-/javascript-natural-sort-0.7.1.tgz", + "integrity": "sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw==" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/k8w-crypto": { + "version": "0.2.0", + "resolved": "https://registry.npmmirror.com/k8w-crypto/-/k8w-crypto-0.2.0.tgz", + "integrity": "sha512-M6u4eQ6CQaU5xO3s4zaUUp9G79xNDhXtTU0X7N80tDcBhQC5ggowlyOzj95v7WiCuk7xkV0aFsTmCpuf0m0djw==", + "dev": true + }, + "node_modules/k8w-extend-native": { + "version": "1.4.6", + "resolved": "https://registry.npmmirror.com/k8w-extend-native/-/k8w-extend-native-1.4.6.tgz", + "integrity": "sha512-AHTCyFshldMme0s9FKD+QKG+QZdBkHXzl+8kYfNhsSDhcdQ5TYWQwphjecSJjxNdGd78TIbO0fHiOvM+Ei22YA==", + "dependencies": { + "k8w-linq-array": "*", + "k8w-super-date": "*", + "k8w-super-object": "*" + } + }, + "node_modules/k8w-linq-array": { + "version": "0.2.8", + "resolved": "https://registry.npmmirror.com/k8w-linq-array/-/k8w-linq-array-0.2.8.tgz", + "integrity": "sha512-4IAkQN8UJdk804tQi++wuwSZvFWk/Wcl1uG5PR/0c0YvB5hUd2f8tJm3OgOMOxjV9UVByNLvnPYGIwrFQPpjlA==" + }, + "node_modules/k8w-super-date": { + "version": "0.1.3", + "resolved": "https://registry.npmmirror.com/k8w-super-date/-/k8w-super-date-0.1.3.tgz", + "integrity": "sha512-IBqKOAMAXR/bgzu+rYI30tEMP/Y6Q8HQuqJiTkE2mLJg11yok9guoi8uZTynTahviVBndcfBpOgi1H/zhihv7w==" + }, + "node_modules/k8w-super-object": { + "version": "0.3.0", + "resolved": "https://registry.npmmirror.com/k8w-super-object/-/k8w-super-object-0.3.0.tgz", + "integrity": "sha512-u2jfh4goYXKZmSucaLaOTaNbLRatjv0CSRpzE0KU0732+9XtYZFd5vrdw/mzJfK5fPHb/zyikOSHDX5mJrav+g==" + }, + "node_modules/lcid": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/lcid/-/lcid-3.1.1.tgz", + "integrity": "sha512-M6T051+5QCGLBQb8id3hdvIW8+zeFV2FyBGFS9IEK5H9Wt4MueD4bW1eWikpHgZp+5xR3l5c8pZUkQsIA0BFZg==", + "dev": true, + "dependencies": { + "invert-kv": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmmirror.com/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "node_modules/map-age-cleaner": { + "version": "0.1.3", + "resolved": "https://registry.npmmirror.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", + "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", + "dev": true, + "dependencies": { + "p-defer": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/mathjs": { + "version": "11.4.0", + "resolved": "https://registry.npmmirror.com/mathjs/-/mathjs-11.4.0.tgz", + "integrity": "sha512-SGhKmXnwsPWrLHvhzm849RJPMjFTgLgVwKtv2L+IY7XHB4nuzyZLfV2eHT1HtBZ4yzsLHgcqak47zMmxuEIIUg==", + "dependencies": { + "@babel/runtime": "^7.20.1", + "complex.js": "^2.1.1", + "decimal.js": "^10.4.2", + "escape-latex": "^1.2.0", + "fraction.js": "^4.2.0", + "javascript-natural-sort": "^0.7.1", + "seedrandom": "^3.0.5", + "tiny-emitter": "^2.1.0", + "typed-function": "^4.1.0" + }, + "bin": { + "mathjs": "bin/cli.js" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mem": { + "version": "5.1.1", + "resolved": "https://registry.npmmirror.com/mem/-/mem-5.1.1.tgz", + "integrity": "sha512-qvwipnozMohxLXG1pOqoLiZKNkC4r4qqRucSoDwXowsNGDSULiqFTRUF05vcZWnwJSG22qTsynQhxbaMtnX9gw==", + "dev": true, + "dependencies": { + "map-age-cleaner": "^0.1.3", + "mimic-fn": "^2.1.0", + "p-is-promise": "^2.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/memory-pager": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz", + "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==", + "optional": true + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/minimatch": { + "version": "4.2.1", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-4.2.1.tgz", + "integrity": "sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/minimist": { + "version": "1.2.7", + "resolved": "https://registry.npmmirror.com/minimist/-/minimist-1.2.7.tgz", + "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", + "dev": true + }, + "node_modules/mocha": { + "version": "9.2.2", + "resolved": "https://registry.npmmirror.com/mocha/-/mocha-9.2.2.tgz", + "integrity": "sha512-L6XC3EdwT6YrIk0yXpavvLkn8h+EU+Y5UcCHKECyMbdUIxyMuZj4bX4U9e1nvnvUUvQVsV2VHQr5zLdcUkhW/g==", + "dev": true, + "dependencies": { + "@ungap/promise-all-settled": "1.1.2", + "ansi-colors": "4.1.1", + "browser-stdout": "1.3.1", + "chokidar": "3.5.3", + "debug": "4.3.3", + "diff": "5.0.0", + "escape-string-regexp": "4.0.0", + "find-up": "5.0.0", + "glob": "7.2.0", + "growl": "1.10.5", + "he": "1.2.0", + "js-yaml": "4.1.0", + "log-symbols": "4.1.0", + "minimatch": "4.2.1", + "ms": "2.1.3", + "nanoid": "3.3.1", + "serialize-javascript": "6.0.0", + "strip-json-comments": "3.1.1", + "supports-color": "8.1.1", + "which": "2.0.2", + "workerpool": "6.2.0", + "yargs": "16.2.0", + "yargs-parser": "20.2.4", + "yargs-unparser": "2.0.0" + }, + "bin": { + "_mocha": "bin/_mocha", + "mocha": "bin/mocha" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/mongodb": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-4.11.0.tgz", + "integrity": "sha512-9l9n4Nk2BYZzljW3vHah3Z0rfS5npKw6ktnkmFgTcnzaXH1DRm3pDl6VMHu84EVb1lzmSaJC4OzWZqTkB5i2wg==", + "dependencies": { + "bson": "^4.7.0", + "denque": "^2.1.0", + "mongodb-connection-string-url": "^2.5.4", + "socks": "^2.7.1" + }, + "engines": { + "node": ">=12.9.0" + }, + "optionalDependencies": { + "@aws-sdk/credential-providers": "^3.186.0", + "saslprep": "^1.0.3" + } + }, + "node_modules/mongodb-connection-string-url": { + "version": "2.5.4", + "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-2.5.4.tgz", + "integrity": "sha512-SeAxuWs0ez3iI3vvmLk/j2y+zHwigTDKQhtdxTgt5ZCOQQS5+HW4g45/Xw5vzzbn7oQXCNQ24Z40AkJsizEy7w==", + "dependencies": { + "@types/whatwg-url": "^8.2.1", + "whatwg-url": "^11.0.0" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmmirror.com/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true + }, + "node_modules/nanoid": { + "version": "3.3.1", + "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.1.tgz", + "integrity": "sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==", + "dev": true, + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==" + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmmirror.com/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onchange": { + "version": "7.1.0", + "resolved": "https://registry.npmmirror.com/onchange/-/onchange-7.1.0.tgz", + "integrity": "sha512-ZJcqsPiWUAUpvmnJri5TPBooqJOPmC0ttN65juhN15Q8xA+Nbg3BaxBHXQ45EistKKlKElb0edmbPWnKSBkvMg==", + "dev": true, + "dependencies": { + "@blakeembrey/deque": "^1.0.5", + "@blakeembrey/template": "^1.0.0", + "arg": "^4.1.3", + "chokidar": "^3.3.1", + "cross-spawn": "^7.0.1", + "ignore": "^5.1.4", + "tree-kill": "^1.2.2" + }, + "bin": { + "onchange": "dist/bin.js" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmmirror.com/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "dev": true, + "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" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/os-locale": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/os-locale/-/os-locale-5.0.0.tgz", + "integrity": "sha512-tqZcNEDAIZKBEPnHPlVDvKrp7NzgLi7jRmhKiUoa2NUmhl13FtkAGLUVR+ZsYvApBQdBfYm43A4tXXQ4IrYLBA==", + "dev": true, + "dependencies": { + "execa": "^4.0.0", + "lcid": "^3.0.0", + "mem": "^5.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/p-defer": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/p-defer/-/p-defer-1.0.0.tgz", + "integrity": "sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-is-promise": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/p-is-promise/-/p-is-promise-2.1.0.tgz", + "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/parse-cache-control": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/parse-cache-control/-/parse-cache-control-1.0.1.tgz", + "integrity": "sha512-60zvsJReQPX5/QP0Kzfd/VrpjScIQ7SHBW6bFCYfEP+fp0Eppr1SHhIO5nd1PjZtvclzSzES9D/p5nFJurwfWg==" + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "node_modules/promise": { + "version": "8.3.0", + "resolved": "https://registry.npmmirror.com/promise/-/promise-8.3.0.tgz", + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "dependencies": { + "asap": "~2.0.6" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + }, + "node_modules/pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", + "dev": true + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmmirror.com/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", + "dependencies": { + "resolve": "^1.1.6" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/redis": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/redis/-/redis-4.3.1.tgz", + "integrity": "sha512-cM7yFU5CA6zyCF7N/+SSTcSJQSRMEKN0k0Whhu6J7n9mmXRoXugfWDBo5iOzGwABmsWKSwGPTU5J4Bxbl+0mrA==", + "dependencies": { + "@redis/bloom": "1.0.2", + "@redis/client": "1.3.0", + "@redis/graph": "1.0.1", + "@redis/json": "1.0.4", + "@redis/search": "1.1.0", + "@redis/time-series": "1.0.3" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmmirror.com/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/rxjs": { + "version": "7.5.7", + "resolved": "https://registry.npmmirror.com/rxjs/-/rxjs-7.5.7.tgz", + "integrity": "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==", + "dev": true, + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/saslprep": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/saslprep/-/saslprep-1.0.3.tgz", + "integrity": "sha512-/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag==", + "optional": true, + "dependencies": { + "sparse-bitfield": "^3.0.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/seedrandom": { + "version": "3.0.5", + "resolved": "https://registry.npmmirror.com/seedrandom/-/seedrandom-3.0.5.tgz", + "integrity": "sha512-8OwmbklUNzwezjGInmZ+2clQmExQPvomqjL7LFqOYqtmuxRgQYqOD3mHaU+MvZn5FLUeVxVfQjwLZW/n/JFuqg==" + }, + "node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmmirror.com/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/shelljs": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", + "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", + "dependencies": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + }, + "bin": { + "shjs": "bin/shjs" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "node_modules/sigmund": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/sigmund/-/sigmund-1.0.1.tgz", + "integrity": "sha512-fCvEXfh6NWpm+YSuY2bpXb/VIihqWA6hLsgboC+0nl71Q7N7o2eaCW8mJa/NLvQhs6jpd3VZV4UiUQlV6+lc8g==", + "dev": true + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "dependencies": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + }, + "engines": { + "node": ">= 10.13.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/sparse-bitfield": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", + "integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==", + "optional": true, + "dependencies": { + "memory-pager": "^1.0.2" + } + }, + "node_modules/ssf": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/ssf/-/ssf-0.11.2.tgz", + "integrity": "sha512-+idbmIXoYET47hH+d7dfm2epdOMUDjqcB4648sTZ+t2JwoyBFL/insLfB/racrDmsKB3diwsDA696pZMieAC5g==", + "dependencies": { + "frac": "~1.1.2" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/strnum": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", + "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==", + "optional": true + }, + "node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/sync-request": { + "version": "6.1.0", + "resolved": "https://registry.npmmirror.com/sync-request/-/sync-request-6.1.0.tgz", + "integrity": "sha512-8fjNkrNlNCrVc/av+Jn+xxqfCjYaBoHqCsDz6mt030UMxJGr+GSfCV1dQt2gRtlL63+VPidwDVLr7V2OcTSdRw==", + "dependencies": { + "http-response-object": "^3.0.1", + "sync-rpc": "^1.2.1", + "then-request": "^6.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/sync-rpc": { + "version": "1.3.6", + "resolved": "https://registry.npmmirror.com/sync-rpc/-/sync-rpc-1.3.6.tgz", + "integrity": "sha512-J8jTXuZzRlvU7HemDgHi3pGnh/rkoqR/OZSjhTyyZrEkkYQbk7Z33AXp37mkPfPpfdOuj7Ex3H/TJM1z48uPQw==", + "dependencies": { + "get-port": "^3.1.0" + } + }, + "node_modules/then-request": { + "version": "6.0.2", + "resolved": "https://registry.npmmirror.com/then-request/-/then-request-6.0.2.tgz", + "integrity": "sha512-3ZBiG7JvP3wbDzA9iNY5zJQcHL4jn/0BWtXIkagfz7QgOL/LqjCEOBQuJNZfu0XYnv5JhKh+cDxCPM4ILrqruA==", + "dependencies": { + "@types/concat-stream": "^1.6.0", + "@types/form-data": "0.0.33", + "@types/node": "^8.0.0", + "@types/qs": "^6.2.31", + "caseless": "~0.12.0", + "concat-stream": "^1.6.0", + "form-data": "^2.2.0", + "http-basic": "^8.1.1", + "http-response-object": "^3.0.1", + "promise": "^8.0.0", + "qs": "^6.4.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/then-request/node_modules/@types/node": { + "version": "8.10.66", + "resolved": "https://registry.npmmirror.com/@types/node/-/node-8.10.66.tgz", + "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==" + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmmirror.com/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true + }, + "node_modules/tiny-emitter": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz", + "integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==" + }, + "node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmmirror.com/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmmirror.com/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "dev": true, + "bin": { + "tree-kill": "cli.js" + } + }, + "node_modules/ts-node": { + "version": "10.9.1", + "resolved": "https://registry.npmmirror.com/ts-node/-/ts-node-10.9.1.tgz", + "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", + "dev": true, + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } + } + }, + "node_modules/ts-node/node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmmirror.com/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/tsbuffer": { + "version": "2.2.7", + "resolved": "https://registry.npmmirror.com/tsbuffer/-/tsbuffer-2.2.7.tgz", + "integrity": "sha512-WkP6NU14W14Kxa+OtccJ4m9+nY8UZs/DlM3FQzxstBkNGzmNvggN3+2mfIzYO8YDKu6mqYUXgpNg1aqIYcUACw==", + "dependencies": { + "k8w-extend-native": "^1.4.6", + "tsbuffer-validator": "^2.1.1", + "tslib": "*" + } + }, + "node_modules/tsbuffer-proto-generator": { + "version": "1.7.2", + "resolved": "https://registry.npmmirror.com/tsbuffer-proto-generator/-/tsbuffer-proto-generator-1.7.2.tgz", + "integrity": "sha512-Rjq/mNXb6Z3ORi5M0BH3O+L0hpr+RcLzJ1edXO4bOZkojdtxDmwoKGBKoh+/xba+bhOiSiwHfVZLiQ06A6vEmw==", + "dev": true, + "dependencies": { + "k8w-crypto": "^0.2.0", + "k8w-extend-native": "^1.4.6", + "tsbuffer-schema": "^2.2.0", + "tslib": "*", + "typescript": "^4" + } + }, + "node_modules/tsbuffer-schema": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/tsbuffer-schema/-/tsbuffer-schema-2.2.0.tgz", + "integrity": "sha512-I4+5Xfk7G+D++kXdNnYTeY26WQTaf14C84XQwPKteNmrwxRY3CQCkMqASRiCUqtpOuDn43qmoxuXpT+Vo8Wltg==" + }, + "node_modules/tsbuffer-validator": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/tsbuffer-validator/-/tsbuffer-validator-2.1.1.tgz", + "integrity": "sha512-12JVltPQjv2hZqfd9TZhTjCyQ0bvtRlTXyczOAaH+CnryWI9Twt0i9ZGaM5fb2QMxW5BOhToOIbwO8opDqpCEg==", + "dependencies": { + "k8w-extend-native": "^1.4.6", + "tsbuffer-schema": "^2.2.0", + "tslib": "*" + } + }, + "node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" + }, + "node_modules/tsrpc": { + "version": "3.4.12", + "resolved": "https://registry.npmmirror.com/tsrpc/-/tsrpc-3.4.12.tgz", + "integrity": "sha512-FMa7FdzW7LdhsQ49DxcNegeW4oRJGxqP+3DXbZBvsUHSeL2h6UFCSKmw2TypI2ChDeRGgbo+wt6uJ0upF6fz9Q==", + "dependencies": { + "@types/ws": "^7.4.7", + "chalk": "^4.1.2", + "tsbuffer": "^2.2.7", + "tsrpc-base-client": "^2.1.11", + "tsrpc-proto": "^1.4.3", + "uuid": "^8.3.2", + "ws": "^7.5.9" + } + }, + "node_modules/tsrpc-base-client": { + "version": "2.1.12", + "resolved": "https://registry.npmmirror.com/tsrpc-base-client/-/tsrpc-base-client-2.1.12.tgz", + "integrity": "sha512-7Zsby1dtDQkxzvT/tRMLLnjCqpYpoCwN9Sci9x7iWCBMNHiiBPBoKIIp2nqhlfLF3kxSgemQOGF499Mx3GVQfg==", + "dependencies": { + "k8w-extend-native": "^1.4.6", + "tsbuffer": "^2.2.7", + "tslib": "*", + "tsrpc-proto": "^1.4.3" + } + }, + "node_modules/tsrpc-cli": { + "version": "2.4.5", + "resolved": "https://registry.npmmirror.com/tsrpc-cli/-/tsrpc-cli-2.4.5.tgz", + "integrity": "sha512-/3MMyGAAuSnZLQVfoRZXI5sfyGakRTk2AfrllvVSUSfGPTr06iU1YAgOATNYEHl+uAj1+QFz3dKT8g3J+wCIcw==", + "dev": true, + "dependencies": { + "chalk": "^4.1.2", + "chokidar": "^3.5.3", + "fs-extra": "^10.1.0", + "glob": "^7.2.3", + "inquirer": "^8.2.4", + "k8w-extend-native": "^1.4.6", + "minimist": "^1.2.6", + "ora": "^5.4.1", + "os-locale": "^5.0.0", + "ts-node": "^10.8.2", + "tsbuffer": "^2.2.3", + "tsbuffer-proto-generator": "^1.7.2", + "tsbuffer-schema": "^2.2.0", + "tsrpc-proto": "^1.4.2", + "typescript": "^4.7.4", + "typescript-formatter": "^7.2.2" + }, + "bin": { + "tsrpc": "bin.js", + "tsrpc-cli": "bin.js" + } + }, + "node_modules/tsrpc-cli/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/tsrpc-cli/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/tsrpc-proto": { + "version": "1.4.3", + "resolved": "https://registry.npmmirror.com/tsrpc-proto/-/tsrpc-proto-1.4.3.tgz", + "integrity": "sha512-qtkk5i34m9/K1258EdyXAEikU/ADPELHCCXN/oFJ4XwH+kN3kXnKYmwCDblUuMA73V2+A/EwkgUGyAgPa335Hw==", + "dependencies": { + "tsbuffer-schema": "^2.2.0", + "tslib": "*" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmmirror.com/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typed-function": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/typed-function/-/typed-function-4.1.0.tgz", + "integrity": "sha512-DGwUl6cioBW5gw2L+6SMupGwH/kZOqivy17E4nsh1JI9fKF87orMmlQx3KISQPmg3sfnOUGlwVkroosvgddrlg==", + "engines": { + "node": ">= 14" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmmirror.com/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" + }, + "node_modules/typescript": { + "version": "4.8.4", + "resolved": "https://registry.npmmirror.com/typescript/-/typescript-4.8.4.tgz", + "integrity": "sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/typescript-formatter": { + "version": "7.2.2", + "resolved": "https://registry.npmmirror.com/typescript-formatter/-/typescript-formatter-7.2.2.tgz", + "integrity": "sha512-V7vfI9XArVhriOTYHPzMU2WUnm5IMdu9X/CPxs8mIMGxmTBFpDABlbkBka64PZJ9/xgQeRpK8KzzAG4MPzxBDQ==", + "dev": true, + "dependencies": { + "commandpost": "^1.0.0", + "editorconfig": "^0.15.0" + }, + "bin": { + "tsfmt": "bin/tsfmt" + }, + "engines": { + "node": ">= 4.2.0" + }, + "peerDependencies": { + "typescript": "^2.1.6 || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev" + } + }, + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmmirror.com/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "dev": true + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "dev": true, + "dependencies": { + "defaults": "^1.0.3" + } + }, + "node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "dependencies": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wmf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wmf/-/wmf-1.0.2.tgz", + "integrity": "sha512-/p9K7bEh0Dj6WbXg4JG0xvLQmIadrner1bi45VMJTfnbVHsc7yIajZyoSoK60/dtVBs12Fm6WkUI5/3WAVsNMw==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/word": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/word/-/word-0.3.0.tgz", + "integrity": "sha512-OELeY0Q61OXpdUfTp+oweA/vtLVg5VDOXh+3he3PNzLGG/y0oylSOC1xRVj0+l4vQ3tj/bB1HVHv1ocXkQceFA==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/workerpool": { + "version": "6.2.0", + "resolved": "https://registry.npmmirror.com/workerpool/-/workerpool-6.2.0.tgz", + "integrity": "sha512-Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A==", + "dev": true + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "node_modules/ws": { + "version": "7.5.9", + "resolved": "https://registry.npmmirror.com/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xlsx": { + "version": "0.18.5", + "resolved": "https://registry.npmjs.org/xlsx/-/xlsx-0.18.5.tgz", + "integrity": "sha512-dmg3LCjBPHZnQp5/F/+nnTa+miPJxUXB6vtk42YjBBKayDNagxGEeIdWApkYPOf3Z3pm3k62Knjzp7lMeTEtFQ==", + "dependencies": { + "adler-32": "~1.3.0", + "cfb": "~1.2.1", + "codepage": "~1.15.0", + "crc-32": "~1.2.1", + "ssf": "~0.11.2", + "wmf": "~1.0.1", + "word": "~0.3.0" + }, + "bin": { + "xlsx": "bin/xlsx.njs" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/xregexp": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/xregexp/-/xregexp-2.0.0.tgz", + "integrity": "sha512-xl/50/Cf32VsGq/1R8jJE5ajH1yMCQkpmoS10QbFZWl2Oor4H0Me64Pu2yxvsRWK3m6soJbmGfzSR7BYmDcWAA==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmmirror.com/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true + }, + "node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmmirror.com/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.4", + "resolved": "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-20.2.4.tgz", + "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-unparser": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/yargs-unparser/-/yargs-unparser-2.0.0.tgz", + "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", + "dev": true, + "dependencies": { + "camelcase": "^6.0.0", + "decamelize": "^4.0.0", + "flat": "^5.0.2", + "is-plain-obj": "^2.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yn": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmmirror.com/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + } + } + }, + "dependencies": { + "@aws-crypto/ie11-detection": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@aws-crypto/ie11-detection/-/ie11-detection-2.0.2.tgz", + "integrity": "sha512-5XDMQY98gMAf/WRTic5G++jfmS/VLM0rwpiOpaainKi4L0nqWMSB1SzsrEG5rjFZGYN6ZAefO+/Yta2dFM0kMw==", + "optional": true, + "requires": { + "tslib": "^1.11.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "optional": true + } + } + }, + "@aws-crypto/sha256-browser": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-browser/-/sha256-browser-2.0.0.tgz", + "integrity": "sha512-rYXOQ8BFOaqMEHJrLHul/25ckWH6GTJtdLSajhlqGMx0PmSueAuvboCuZCTqEKlxR8CQOwRarxYMZZSYlhRA1A==", + "optional": true, + "requires": { + "@aws-crypto/ie11-detection": "^2.0.0", + "@aws-crypto/sha256-js": "^2.0.0", + "@aws-crypto/supports-web-crypto": "^2.0.0", + "@aws-crypto/util": "^2.0.0", + "@aws-sdk/types": "^3.1.0", + "@aws-sdk/util-locate-window": "^3.0.0", + "@aws-sdk/util-utf8-browser": "^3.0.0", + "tslib": "^1.11.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "optional": true + } + } + }, + "@aws-crypto/sha256-js": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-2.0.0.tgz", + "integrity": "sha512-VZY+mCY4Nmrs5WGfitmNqXzaE873fcIZDu54cbaDaaamsaTOP1DBImV9F4pICc3EHjQXujyE8jig+PFCaew9ig==", + "optional": true, + "requires": { + "@aws-crypto/util": "^2.0.0", + "@aws-sdk/types": "^3.1.0", + "tslib": "^1.11.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "optional": true + } + } + }, + "@aws-crypto/supports-web-crypto": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@aws-crypto/supports-web-crypto/-/supports-web-crypto-2.0.2.tgz", + "integrity": "sha512-6mbSsLHwZ99CTOOswvCRP3C+VCWnzBf+1SnbWxzzJ9lR0mA0JnY2JEAhp8rqmTE0GPFy88rrM27ffgp62oErMQ==", + "optional": true, + "requires": { + "tslib": "^1.11.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "optional": true + } + } + }, + "@aws-crypto/util": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@aws-crypto/util/-/util-2.0.2.tgz", + "integrity": "sha512-Lgu5v/0e/BcrZ5m/IWqzPUf3UYFTy/PpeED+uc9SWUR1iZQL8XXbGQg10UfllwwBryO3hFF5dizK+78aoXC1eA==", + "optional": true, + "requires": { + "@aws-sdk/types": "^3.110.0", + "@aws-sdk/util-utf8-browser": "^3.0.0", + "tslib": "^1.11.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "optional": true + } + } + }, + "@aws-sdk/abort-controller": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/abort-controller/-/abort-controller-3.193.0.tgz", + "integrity": "sha512-MYPBm5PWyKP+Tq37mKs5wDbyAyVMocF5iYmx738LYXBSj8A1V4LTFrvfd4U16BRC/sM0DYB9fBFJUQ9ISFRVYw==", + "optional": true, + "requires": { + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/client-cognito-identity": { + "version": "3.194.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.194.0.tgz", + "integrity": "sha512-khDgkrrSC/2PFN7Sb8sUsvt6QTsU3s9vcizFULWc8H5OO58tTdzkoKuAa5XMVbSRQnnl6iQ4uv6bBglCC+OfSw==", + "optional": true, + "requires": { + "@aws-crypto/sha256-browser": "2.0.0", + "@aws-crypto/sha256-js": "2.0.0", + "@aws-sdk/client-sts": "3.194.0", + "@aws-sdk/config-resolver": "3.193.0", + "@aws-sdk/credential-provider-node": "3.193.0", + "@aws-sdk/fetch-http-handler": "3.193.0", + "@aws-sdk/hash-node": "3.193.0", + "@aws-sdk/invalid-dependency": "3.193.0", + "@aws-sdk/middleware-content-length": "3.193.0", + "@aws-sdk/middleware-host-header": "3.193.0", + "@aws-sdk/middleware-logger": "3.193.0", + "@aws-sdk/middleware-recursion-detection": "3.193.0", + "@aws-sdk/middleware-retry": "3.193.0", + "@aws-sdk/middleware-serde": "3.193.0", + "@aws-sdk/middleware-signing": "3.193.0", + "@aws-sdk/middleware-stack": "3.193.0", + "@aws-sdk/middleware-user-agent": "3.193.0", + "@aws-sdk/node-config-provider": "3.193.0", + "@aws-sdk/node-http-handler": "3.193.0", + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/smithy-client": "3.193.0", + "@aws-sdk/types": "3.193.0", + "@aws-sdk/url-parser": "3.193.0", + "@aws-sdk/util-base64-browser": "3.188.0", + "@aws-sdk/util-base64-node": "3.188.0", + "@aws-sdk/util-body-length-browser": "3.188.0", + "@aws-sdk/util-body-length-node": "3.188.0", + "@aws-sdk/util-defaults-mode-browser": "3.193.0", + "@aws-sdk/util-defaults-mode-node": "3.193.0", + "@aws-sdk/util-user-agent-browser": "3.193.0", + "@aws-sdk/util-user-agent-node": "3.193.0", + "@aws-sdk/util-utf8-browser": "3.188.0", + "@aws-sdk/util-utf8-node": "3.188.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/client-sso": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.193.0.tgz", + "integrity": "sha512-NxDckym95mtimYp9uWRA1lcyJHDyS8OZEaDC+dZ/tt5wGyPoc3ftHZNWDLzZM1PUjzgo+XzjMBVkWMvk/SRSYw==", + "optional": true, + "requires": { + "@aws-crypto/sha256-browser": "2.0.0", + "@aws-crypto/sha256-js": "2.0.0", + "@aws-sdk/config-resolver": "3.193.0", + "@aws-sdk/fetch-http-handler": "3.193.0", + "@aws-sdk/hash-node": "3.193.0", + "@aws-sdk/invalid-dependency": "3.193.0", + "@aws-sdk/middleware-content-length": "3.193.0", + "@aws-sdk/middleware-host-header": "3.193.0", + "@aws-sdk/middleware-logger": "3.193.0", + "@aws-sdk/middleware-recursion-detection": "3.193.0", + "@aws-sdk/middleware-retry": "3.193.0", + "@aws-sdk/middleware-serde": "3.193.0", + "@aws-sdk/middleware-stack": "3.193.0", + "@aws-sdk/middleware-user-agent": "3.193.0", + "@aws-sdk/node-config-provider": "3.193.0", + "@aws-sdk/node-http-handler": "3.193.0", + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/smithy-client": "3.193.0", + "@aws-sdk/types": "3.193.0", + "@aws-sdk/url-parser": "3.193.0", + "@aws-sdk/util-base64-browser": "3.188.0", + "@aws-sdk/util-base64-node": "3.188.0", + "@aws-sdk/util-body-length-browser": "3.188.0", + "@aws-sdk/util-body-length-node": "3.188.0", + "@aws-sdk/util-defaults-mode-browser": "3.193.0", + "@aws-sdk/util-defaults-mode-node": "3.193.0", + "@aws-sdk/util-user-agent-browser": "3.193.0", + "@aws-sdk/util-user-agent-node": "3.193.0", + "@aws-sdk/util-utf8-browser": "3.188.0", + "@aws-sdk/util-utf8-node": "3.188.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/client-sts": { + "version": "3.194.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.194.0.tgz", + "integrity": "sha512-duolI7KLvRLMrL0ZpiVvmhaC5stKcNp5tfJ7gUW24tyf+7ImAmk2odSMIgcq54EWQ3XppTKBhEGCjOJ9th7+Qg==", + "optional": true, + "requires": { + "@aws-crypto/sha256-browser": "2.0.0", + "@aws-crypto/sha256-js": "2.0.0", + "@aws-sdk/config-resolver": "3.193.0", + "@aws-sdk/credential-provider-node": "3.193.0", + "@aws-sdk/fetch-http-handler": "3.193.0", + "@aws-sdk/hash-node": "3.193.0", + "@aws-sdk/invalid-dependency": "3.193.0", + "@aws-sdk/middleware-content-length": "3.193.0", + "@aws-sdk/middleware-endpoint": "3.193.0", + "@aws-sdk/middleware-host-header": "3.193.0", + "@aws-sdk/middleware-logger": "3.193.0", + "@aws-sdk/middleware-recursion-detection": "3.193.0", + "@aws-sdk/middleware-retry": "3.193.0", + "@aws-sdk/middleware-sdk-sts": "3.193.0", + "@aws-sdk/middleware-serde": "3.193.0", + "@aws-sdk/middleware-signing": "3.193.0", + "@aws-sdk/middleware-stack": "3.193.0", + "@aws-sdk/middleware-user-agent": "3.193.0", + "@aws-sdk/node-config-provider": "3.193.0", + "@aws-sdk/node-http-handler": "3.193.0", + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/smithy-client": "3.193.0", + "@aws-sdk/types": "3.193.0", + "@aws-sdk/url-parser": "3.193.0", + "@aws-sdk/util-base64-browser": "3.188.0", + "@aws-sdk/util-base64-node": "3.188.0", + "@aws-sdk/util-body-length-browser": "3.188.0", + "@aws-sdk/util-body-length-node": "3.188.0", + "@aws-sdk/util-defaults-mode-browser": "3.193.0", + "@aws-sdk/util-defaults-mode-node": "3.193.0", + "@aws-sdk/util-endpoints": "3.194.0", + "@aws-sdk/util-user-agent-browser": "3.193.0", + "@aws-sdk/util-user-agent-node": "3.193.0", + "@aws-sdk/util-utf8-browser": "3.188.0", + "@aws-sdk/util-utf8-node": "3.188.0", + "fast-xml-parser": "4.0.11", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/config-resolver": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/config-resolver/-/config-resolver-3.193.0.tgz", + "integrity": "sha512-HIjuv2A1glgkXy9g/A8bfsiz3jTFaRbwGZheoHFZod6iEQQEbbeAsBe3u2AZyzOrVLgs8lOvBtgU8XKSJWjDkw==", + "optional": true, + "requires": { + "@aws-sdk/signature-v4": "3.193.0", + "@aws-sdk/types": "3.193.0", + "@aws-sdk/util-config-provider": "3.188.0", + "@aws-sdk/util-middleware": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/credential-provider-cognito-identity": { + "version": "3.194.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.194.0.tgz", + "integrity": "sha512-AAtnTap4SS0aDuLB8NsWuvAkbaCX8kh6QG+S4+hziPq3+OZtYq34QM8j52ojGyB99VU4dhJmxoExMayLOSTIJg==", + "optional": true, + "requires": { + "@aws-sdk/client-cognito-identity": "3.194.0", + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/credential-provider-env": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.193.0.tgz", + "integrity": "sha512-pRqZoIaqCdWB4JJdR6DqDn3u+CwKJchwiCPnRtChwC8KXCMkT4njq9J1bWG3imYeTxP/G06O1PDONEuD4pPtNQ==", + "optional": true, + "requires": { + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/credential-provider-imds": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.193.0.tgz", + "integrity": "sha512-jC7uT7uVpO/iitz49toHMGFKXQ2igWQQG2SKirREqDRaz5HSXwEP1V3rcOlNNyGIBPMggDjZnxYgJHqBXSq9Ag==", + "optional": true, + "requires": { + "@aws-sdk/node-config-provider": "3.193.0", + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/types": "3.193.0", + "@aws-sdk/url-parser": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/credential-provider-ini": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.193.0.tgz", + "integrity": "sha512-JQ4tyeLjwsa9Jo95yTrLgFFspAP5GwaZDqDJArG98waKDzxhl7FeBs+N32+oux6WB7RKRB0svOK02nnoWnrjVg==", + "optional": true, + "requires": { + "@aws-sdk/credential-provider-env": "3.193.0", + "@aws-sdk/credential-provider-imds": "3.193.0", + "@aws-sdk/credential-provider-sso": "3.193.0", + "@aws-sdk/credential-provider-web-identity": "3.193.0", + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/shared-ini-file-loader": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/credential-provider-node": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.193.0.tgz", + "integrity": "sha512-2E8yWVw1vLb6IumZxA0w4mes759YSCTHLdfp5nMBpn+d+Otz26mczKSe7xr7AaVONq+/sVPUl2GfTFTWM4B0eA==", + "optional": true, + "requires": { + "@aws-sdk/credential-provider-env": "3.193.0", + "@aws-sdk/credential-provider-imds": "3.193.0", + "@aws-sdk/credential-provider-ini": "3.193.0", + "@aws-sdk/credential-provider-process": "3.193.0", + "@aws-sdk/credential-provider-sso": "3.193.0", + "@aws-sdk/credential-provider-web-identity": "3.193.0", + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/shared-ini-file-loader": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/credential-provider-process": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.193.0.tgz", + "integrity": "sha512-zpXxtQzQqkaUuFqmHW9dSkh9p/1k+XNKlwEkG8FTwAJNUWmy2ZMJv+8NTVn4s4vaRu7xJ1er9chspYr7mvxHlA==", + "optional": true, + "requires": { + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/shared-ini-file-loader": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/credential-provider-sso": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.193.0.tgz", + "integrity": "sha512-jBFWreNFZUgnGyCkpxDGf+LrXTuzEfjYkJYti1HnnsUF4vF0PsVZS6/FQi1mDl3pqorrtgknI59ENnAhKVxtBg==", + "optional": true, + "requires": { + "@aws-sdk/client-sso": "3.193.0", + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/shared-ini-file-loader": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/credential-provider-web-identity": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.193.0.tgz", + "integrity": "sha512-MIQY9KwLCBnRyIt7an4EtMrFQZz2HC1E8vQDdKVzmeQBBePhW61fnX9XDP9bfc3Ypg1NggLG00KBPEC88twLFg==", + "optional": true, + "requires": { + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/credential-providers": { + "version": "3.194.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-providers/-/credential-providers-3.194.0.tgz", + "integrity": "sha512-pEwhG/W5Y/sEItXu3ulpuq3+nl9M3PDHzgtDfKbtvO8Mfhd8EucmHbTGHIcHdUow44E94tGIbxsnt239e9m/yg==", + "optional": true, + "requires": { + "@aws-sdk/client-cognito-identity": "3.194.0", + "@aws-sdk/client-sso": "3.193.0", + "@aws-sdk/client-sts": "3.194.0", + "@aws-sdk/credential-provider-cognito-identity": "3.194.0", + "@aws-sdk/credential-provider-env": "3.193.0", + "@aws-sdk/credential-provider-imds": "3.193.0", + "@aws-sdk/credential-provider-ini": "3.193.0", + "@aws-sdk/credential-provider-node": "3.193.0", + "@aws-sdk/credential-provider-process": "3.193.0", + "@aws-sdk/credential-provider-sso": "3.193.0", + "@aws-sdk/credential-provider-web-identity": "3.193.0", + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/shared-ini-file-loader": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/fetch-http-handler": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.193.0.tgz", + "integrity": "sha512-UhIS2LtCK9hqBzYVon6BI8WebJW1KC0GGIL/Gse5bqzU9iAGgFLAe66qg9k+/h3Jjc5LNAYzqXNVizMwn7689Q==", + "optional": true, + "requires": { + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/querystring-builder": "3.193.0", + "@aws-sdk/types": "3.193.0", + "@aws-sdk/util-base64-browser": "3.188.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/hash-node": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/hash-node/-/hash-node-3.193.0.tgz", + "integrity": "sha512-O2SLPVBjrCUo+4ouAdRUoHBYsyurO9LcjNZNYD7YQOotBTbVFA3cx7kTZu+K4B6kX7FDaGbqbE1C/T1/eg/r+w==", + "optional": true, + "requires": { + "@aws-sdk/types": "3.193.0", + "@aws-sdk/util-buffer-from": "3.188.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/invalid-dependency": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/invalid-dependency/-/invalid-dependency-3.193.0.tgz", + "integrity": "sha512-54DCknekLwJAI1os76XJ8XCzfAH7BGkBGtlWk5WCNkZTfj3rf5RUiXz4uoKUMWE1rZmyMDoDDS1PBo+yTVKW5w==", + "optional": true, + "requires": { + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/is-array-buffer": { + "version": "3.188.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/is-array-buffer/-/is-array-buffer-3.188.0.tgz", + "integrity": "sha512-n69N4zJZCNd87Rf4NzufPzhactUeM877Y0Tp/F3KiHqGeTnVjYUa4Lv1vLBjqtfjYb2HWT3NKlYn5yzrhaEwiQ==", + "optional": true, + "requires": { + "tslib": "^2.3.1" + } + }, + "@aws-sdk/middleware-content-length": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-content-length/-/middleware-content-length-3.193.0.tgz", + "integrity": "sha512-em0Sqo7O7DFOcVXU460pbcYuIjblDTZqK2YE62nQ0T+5Nbj+MSjuoite+rRRdRww9VqBkUROGKON45bUNjogtQ==", + "optional": true, + "requires": { + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/middleware-endpoint": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-endpoint/-/middleware-endpoint-3.193.0.tgz", + "integrity": "sha512-Inbpt7jcHGvzF7UOJOCxx9wih0+eAQYERikokidWJa7M405EJpVYq1mGbeOcQUPANU3uWF1AObmUUFhbkriHQw==", + "optional": true, + "requires": { + "@aws-sdk/middleware-serde": "3.193.0", + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/signature-v4": "3.193.0", + "@aws-sdk/types": "3.193.0", + "@aws-sdk/url-parser": "3.193.0", + "@aws-sdk/util-config-provider": "3.188.0", + "@aws-sdk/util-middleware": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/middleware-host-header": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.193.0.tgz", + "integrity": "sha512-aegzj5oRWd//lmfmkzRmgG2b4l3140v8Ey4QkqCxcowvAEX5a7rh23yuKaGtmiePwv2RQalCKz+tN6JXCm8g6Q==", + "optional": true, + "requires": { + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/middleware-logger": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.193.0.tgz", + "integrity": "sha512-D/h1pU5tAcyJpJ8ZeD1Sta0S9QZPcxERYRBiJdEl8VUrYwfy3Cl1WJedVOmd5nG73ZLRSyHeXHewb/ohge3yKQ==", + "optional": true, + "requires": { + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/middleware-recursion-detection": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.193.0.tgz", + "integrity": "sha512-fMWP76Q1GOb/9OzS1arizm6Dbfo02DPZ6xp7OoAN3PS6ybH3Eb47s/gP3jzgBPAITQacFj4St/4a06YWYrN3NA==", + "optional": true, + "requires": { + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/middleware-retry": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-retry/-/middleware-retry-3.193.0.tgz", + "integrity": "sha512-zTQkHLBQBJi6ns655WYcYLyLPc1tgbEYU080Oc8zlveLUqoDn1ogkcmNhG7XMeQuBvWZBYN7J3/wFaXlDzeCKg==", + "optional": true, + "requires": { + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/service-error-classification": "3.193.0", + "@aws-sdk/types": "3.193.0", + "@aws-sdk/util-middleware": "3.193.0", + "tslib": "^2.3.1", + "uuid": "^8.3.2" + } + }, + "@aws-sdk/middleware-sdk-sts": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.193.0.tgz", + "integrity": "sha512-TafiDkeflUsnbNa89TLkDnAiRRp1gAaZLDAjt75AzriRKZnhtFfYUXWb+qAuN50T+CkJ/gZI9LHDZL5ogz/HxQ==", + "optional": true, + "requires": { + "@aws-sdk/middleware-signing": "3.193.0", + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/signature-v4": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/middleware-serde": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-serde/-/middleware-serde-3.193.0.tgz", + "integrity": "sha512-dH93EJYVztY+ZDPzSMRi9LfAZfKO+luH62raNy49hlNa4jiyE1Tc/+qwlmOEpfGsrtcZ9TgsON1uFF9sgBXXaA==", + "optional": true, + "requires": { + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/middleware-signing": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.193.0.tgz", + "integrity": "sha512-obBoELGPf5ikvHYZwbzllLeuODiokdDfe92Ve2ufeOa/d8+xsmbqNzNdCTLNNTmr1tEIaEE7ngZVTOiHqAVhyw==", + "optional": true, + "requires": { + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/signature-v4": "3.193.0", + "@aws-sdk/types": "3.193.0", + "@aws-sdk/util-middleware": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/middleware-stack": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-stack/-/middleware-stack-3.193.0.tgz", + "integrity": "sha512-Ix5d7gE6bZwFNIVf0dGnjYuymz1gjitNoAZDPpv1nEZlUMek/jcno5lmzWFzUZXY/azpbIyaPwq/wm/c69au5A==", + "optional": true, + "requires": { + "tslib": "^2.3.1" + } + }, + "@aws-sdk/middleware-user-agent": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.193.0.tgz", + "integrity": "sha512-0vT6F9NwYQK7ARUUJeHTUIUPnupsO3IbmjHSi1+clkssFlJm2UfmSGeafiWe4AYH3anATTvZEtcxX5DZT/ExbA==", + "optional": true, + "requires": { + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/node-config-provider": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/node-config-provider/-/node-config-provider-3.193.0.tgz", + "integrity": "sha512-5RLdjQLH69ISRG8TX9klSLOpEySXxj+z9E9Em39HRvw0/rDcd8poCTADvjYIOqRVvMka0z/hm+elvUTIVn/DRw==", + "optional": true, + "requires": { + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/shared-ini-file-loader": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/node-http-handler": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/node-http-handler/-/node-http-handler-3.193.0.tgz", + "integrity": "sha512-DP4BmFw64HOShgpAPEEMZedVnRmKKjHOwMEoXcnNlAkMXnYUFHiKvudYq87Q2AnSlT6OHkyMviB61gEvIk73dA==", + "optional": true, + "requires": { + "@aws-sdk/abort-controller": "3.193.0", + "@aws-sdk/protocol-http": "3.193.0", + "@aws-sdk/querystring-builder": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/property-provider": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/property-provider/-/property-provider-3.193.0.tgz", + "integrity": "sha512-IaDR/PdZjKlAeSq2E/6u6nkPsZF9wvhHZckwH7uumq4ocWsWXFzaT+hKpV4YZPHx9n+K2YV4Gn/bDedpz99W1Q==", + "optional": true, + "requires": { + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/protocol-http": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/protocol-http/-/protocol-http-3.193.0.tgz", + "integrity": "sha512-r0wbTwFJyXq0uiImI6giqG3g/RO1N/y4wwPA7qr7OC+KXJ0NkyVxIf6e7Vx8h06aM1ATtngbwJaMP59kVCp85A==", + "optional": true, + "requires": { + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/querystring-builder": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/querystring-builder/-/querystring-builder-3.193.0.tgz", + "integrity": "sha512-PRaK6649iw0UO45UjUoiUzFcOKXZb8pMjjFJpqALpEvdZT3twxqhlPXujT7GWPKrSwO4uPLNnyYEtPY82wx2vw==", + "optional": true, + "requires": { + "@aws-sdk/types": "3.193.0", + "@aws-sdk/util-uri-escape": "3.188.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/querystring-parser": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/querystring-parser/-/querystring-parser-3.193.0.tgz", + "integrity": "sha512-dGEPCe8SK4/td5dSpiaEI3SvT5eHXrbJWbLGyD4FL3n7WCGMy2xVWAB/yrgzD0GdLDjDa8L5vLVz6yT1P9i+hA==", + "optional": true, + "requires": { + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/service-error-classification": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/service-error-classification/-/service-error-classification-3.193.0.tgz", + "integrity": "sha512-bPnXVu8ErE1RfWVVQKc2TE7EuoImUi4dSPW9g80fGRzJdQNwXb636C+7OUuWvSDzmFwuBYqZza8GZjVd+rz2zQ==", + "optional": true + }, + "@aws-sdk/shared-ini-file-loader": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.193.0.tgz", + "integrity": "sha512-hnvZup8RSpFXfah7Rrn6+lQJnAOCO+OiDJ2R/iMgZQh475GRQpLbu3cPhCOkjB14vVLygJtW8trK/0+zKq93bQ==", + "optional": true, + "requires": { + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/signature-v4": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.193.0.tgz", + "integrity": "sha512-JEqqOB8wQZz6g1ERNUOIBFDFt8OJtz5G5Uh1CdkS5W66gyWnJEz/dE1hA2VTqqQwHGGEsIEV/hlzruU1lXsvFA==", + "optional": true, + "requires": { + "@aws-sdk/is-array-buffer": "3.188.0", + "@aws-sdk/types": "3.193.0", + "@aws-sdk/util-hex-encoding": "3.188.0", + "@aws-sdk/util-middleware": "3.193.0", + "@aws-sdk/util-uri-escape": "3.188.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/smithy-client": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.193.0.tgz", + "integrity": "sha512-BY0jhfW76vyXr7ODMaKO3eyS98RSrZgOMl6DTQV9sk7eFP/MPVlG7p7nfX/CDIgPBIO1z0A0i2CVIzYur9uGgQ==", + "optional": true, + "requires": { + "@aws-sdk/middleware-stack": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/types": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.193.0.tgz", + "integrity": "sha512-LV/wcPolRZKORrcHwkH59QMCkiDR5sM+9ZtuTxvyUGG2QFW/kjoxs08fUF10OWNJMrotBI+czDc5QJRgN8BlAw==", + "optional": true + }, + "@aws-sdk/url-parser": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/url-parser/-/url-parser-3.193.0.tgz", + "integrity": "sha512-hwD1koJlOu2a6GvaSbNbdo7I6a3tmrsNTZr8bCjAcbqpc5pDThcpnl/Uaz3zHmMPs92U8I6BvWoK6pH8By06qw==", + "optional": true, + "requires": { + "@aws-sdk/querystring-parser": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/util-base64-browser": { + "version": "3.188.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-base64-browser/-/util-base64-browser-3.188.0.tgz", + "integrity": "sha512-qlH+5NZBLiyKziL335BEPedYxX6j+p7KFRWXvDQox9S+s+gLCayednpK+fteOhBenCcR9fUZOVuAPScy1I8qCg==", + "optional": true, + "requires": { + "tslib": "^2.3.1" + } + }, + "@aws-sdk/util-base64-node": { + "version": "3.188.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-base64-node/-/util-base64-node-3.188.0.tgz", + "integrity": "sha512-r1dccRsRjKq+OhVRUfqFiW3sGgZBjHbMeHLbrAs9jrOjU2PTQ8PSzAXLvX/9lmp7YjmX17Qvlsg0NCr1tbB9OA==", + "optional": true, + "requires": { + "@aws-sdk/util-buffer-from": "3.188.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/util-body-length-browser": { + "version": "3.188.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-body-length-browser/-/util-body-length-browser-3.188.0.tgz", + "integrity": "sha512-8VpnwFWXhnZ/iRSl9mTf+VKOX9wDE8QtN4bj9pBfxwf90H1X7E8T6NkiZD3k+HubYf2J94e7DbeHs7fuCPW5Qg==", + "optional": true, + "requires": { + "tslib": "^2.3.1" + } + }, + "@aws-sdk/util-body-length-node": { + "version": "3.188.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-body-length-node/-/util-body-length-node-3.188.0.tgz", + "integrity": "sha512-XwqP3vxk60MKp4YDdvDeCD6BPOiG2e+/Ou4AofZOy5/toB6NKz2pFNibQIUg2+jc7mPMnGnvOW3MQEgSJ+gu/Q==", + "optional": true, + "requires": { + "tslib": "^2.3.1" + } + }, + "@aws-sdk/util-buffer-from": { + "version": "3.188.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-buffer-from/-/util-buffer-from-3.188.0.tgz", + "integrity": "sha512-NX1WXZ8TH20IZb4jPFT2CnLKSqZWddGxtfiWxD9M47YOtq/SSQeR82fhqqVjJn4P8w2F5E28f+Du4ntg/sGcxA==", + "optional": true, + "requires": { + "@aws-sdk/is-array-buffer": "3.188.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/util-config-provider": { + "version": "3.188.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-config-provider/-/util-config-provider-3.188.0.tgz", + "integrity": "sha512-LBA7tLbi7v4uvbOJhSnjJrxbcRifKK/1ZVK94JTV2MNSCCyNkFotyEI5UWDl10YKriTIUyf7o5cakpiDZ3O4xg==", + "optional": true, + "requires": { + "tslib": "^2.3.1" + } + }, + "@aws-sdk/util-defaults-mode-browser": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.193.0.tgz", + "integrity": "sha512-9riQKFrSJcsNAMnPA/3ltpSxNykeO20klE/UKjxEoD7UWjxLwsPK22UJjFwMRaHoAFcZD0LU/SgPxbC0ktCYCg==", + "optional": true, + "requires": { + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/types": "3.193.0", + "bowser": "^2.11.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/util-defaults-mode-node": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.193.0.tgz", + "integrity": "sha512-occQmckvPRiM4YQIZnulfKKKjykGKWloa5ByGC5gOEGlyeP9zJpfs4zc/M2kArTAt+d2r3wkBtsKe5yKSlVEhA==", + "optional": true, + "requires": { + "@aws-sdk/config-resolver": "3.193.0", + "@aws-sdk/credential-provider-imds": "3.193.0", + "@aws-sdk/node-config-provider": "3.193.0", + "@aws-sdk/property-provider": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/util-endpoints": { + "version": "3.194.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.194.0.tgz", + "integrity": "sha512-G+DGC3Zx0GnQpt4DpRmVcCfliNxf3nwBtZ3JIdCptkUZgDEpLYzOfjbf3bUyPTQh+oGHeqfnVAF+rFjTnYql3A==", + "optional": true, + "requires": { + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/util-hex-encoding": { + "version": "3.188.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-hex-encoding/-/util-hex-encoding-3.188.0.tgz", + "integrity": "sha512-QyWovTtjQ2RYxqVM+STPh65owSqzuXURnfoof778spyX4iQ4z46wOge1YV2ZtwS8w5LWd9eeVvDrLu5POPYOnA==", + "optional": true, + "requires": { + "tslib": "^2.3.1" + } + }, + "@aws-sdk/util-locate-window": { + "version": "3.188.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.188.0.tgz", + "integrity": "sha512-SxobBVLZkkLSawTCfeQnhVX3Azm9O+C2dngZVe1+BqtF8+retUbVTs7OfYeWBlawVkULKF2e781lTzEHBBjCzw==", + "optional": true, + "requires": { + "tslib": "^2.3.1" + } + }, + "@aws-sdk/util-middleware": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-middleware/-/util-middleware-3.193.0.tgz", + "integrity": "sha512-+aC6pmkcGgpxaMWCH/FXTsGWl2W342oQGs1OYKGi+W8z9UguXrqamWjdkdMqgunvj9qOEG2KBMKz1FWFFZlUyA==", + "optional": true, + "requires": { + "tslib": "^2.3.1" + } + }, + "@aws-sdk/util-uri-escape": { + "version": "3.188.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-uri-escape/-/util-uri-escape-3.188.0.tgz", + "integrity": "sha512-4Y6AYZMT483Tiuq8dxz5WHIiPNdSFPGrl6tRTo2Oi2FcwypwmFhqgEGcqxeXDUJktvaCBxeA08DLr/AemVhPCg==", + "optional": true, + "requires": { + "tslib": "^2.3.1" + } + }, + "@aws-sdk/util-user-agent-browser": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.193.0.tgz", + "integrity": "sha512-1EkGYsUtOMEyJG/UBIR4PtmO3lVjKNoUImoMpLtEucoGbWz5RG9zFSwLevjFyFs5roUBFlxkSpTMo8xQ3aRzQg==", + "optional": true, + "requires": { + "@aws-sdk/types": "3.193.0", + "bowser": "^2.11.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/util-user-agent-node": { + "version": "3.193.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.193.0.tgz", + "integrity": "sha512-G/2/1cSgsxVtREAm8Eq8Duib5PXzXknFRHuDpAxJ5++lsJMXoYMReS278KgV54cojOkAVfcODDTqmY3Av0WHhQ==", + "optional": true, + "requires": { + "@aws-sdk/node-config-provider": "3.193.0", + "@aws-sdk/types": "3.193.0", + "tslib": "^2.3.1" + } + }, + "@aws-sdk/util-utf8-browser": { + "version": "3.188.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.188.0.tgz", + "integrity": "sha512-jt627x0+jE+Ydr9NwkFstg3cUvgWh56qdaqAMDsqgRlKD21md/6G226z/Qxl7lb1VEW2LlmCx43ai/37Qwcj2Q==", + "optional": true, + "requires": { + "tslib": "^2.3.1" + } + }, + "@aws-sdk/util-utf8-node": { + "version": "3.188.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-utf8-node/-/util-utf8-node-3.188.0.tgz", + "integrity": "sha512-hCgP4+C0Lekjpjt2zFJ2R/iHes5sBGljXa5bScOFAEkRUc0Qw0VNgTv7LpEbIOAwGmqyxBoCwBW0YHPW1DfmYQ==", + "optional": true, + "requires": { + "@aws-sdk/util-buffer-from": "3.188.0", + "tslib": "^2.3.1" + } + }, + "@babel/runtime": { + "version": "7.20.6", + "resolved": "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.20.6.tgz", + "integrity": "sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==", + "requires": { + "regenerator-runtime": "^0.13.11" + } + }, + "@blakeembrey/deque": { + "version": "1.0.5", + "resolved": "https://registry.npmmirror.com/@blakeembrey/deque/-/deque-1.0.5.tgz", + "integrity": "sha512-6xnwtvp9DY1EINIKdTfvfeAtCYw4OqBZJhtiqkT3ivjnEfa25VQ3TsKvaFfKm8MyGIEfE95qLe+bNEt3nB0Ylg==", + "dev": true + }, + "@blakeembrey/template": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/@blakeembrey/template/-/template-1.1.0.tgz", + "integrity": "sha512-iZf+UWfL+DogJVpd/xMQyP6X6McYd6ArdYoPMiv/zlOTzeXXfQbYxBNJJBF6tThvsjLMbA8tLjkCdm9RWMFCCw==", + "dev": true + }, + "@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmmirror.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "0.3.9" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "@redis/bloom": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@redis/bloom/-/bloom-1.0.2.tgz", + "integrity": "sha512-EBw7Ag1hPgFzdznK2PBblc1kdlj5B5Cw3XwI9/oG7tSn85/HKy3X9xHy/8tm/eNXJYHLXHJL/pkwBpFMVVefkw==", + "requires": {} + }, + "@redis/client": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@redis/client/-/client-1.3.0.tgz", + "integrity": "sha512-XCFV60nloXAefDsPnYMjHGtvbtHR8fV5Om8cQ0JYqTNbWcQo/4AryzJ2luRj4blveWazRK/j40gES8M7Cp6cfQ==", + "requires": { + "cluster-key-slot": "1.1.0", + "generic-pool": "3.8.2", + "yallist": "4.0.0" + }, + "dependencies": { + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + } + }, + "@redis/graph": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@redis/graph/-/graph-1.0.1.tgz", + "integrity": "sha512-oDE4myMCJOCVKYMygEMWuriBgqlS5FqdWerikMoJxzmmTUErnTRRgmIDa2VcgytACZMFqpAOWDzops4DOlnkfQ==", + "requires": {} + }, + "@redis/json": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@redis/json/-/json-1.0.4.tgz", + "integrity": "sha512-LUZE2Gdrhg0Rx7AN+cZkb1e6HjoSKaeeW8rYnt89Tly13GBI5eP4CwDVr+MY8BAYfCg4/N15OUrtLoona9uSgw==", + "requires": {} + }, + "@redis/search": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@redis/search/-/search-1.1.0.tgz", + "integrity": "sha512-NyFZEVnxIJEybpy+YskjgOJRNsfTYqaPbK/Buv6W2kmFNaRk85JiqjJZA5QkRmWvGbyQYwoO5QfDi2wHskKrQQ==", + "requires": {} + }, + "@redis/time-series": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@redis/time-series/-/time-series-1.0.3.tgz", + "integrity": "sha512-OFp0q4SGrTH0Mruf6oFsHGea58u8vS/iI5+NpYdicaM+7BgqBZH8FFvNZ8rYYLrUO/QRqMq72NpXmxLVNcdmjA==", + "requires": {} + }, + "@tsconfig/node10": { + "version": "1.0.9", + "resolved": "https://registry.npmmirror.com/@tsconfig/node10/-/node10-1.0.9.tgz", + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "dev": true + }, + "@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmmirror.com/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dev": true + }, + "@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true + }, + "@tsconfig/node16": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/@tsconfig/node16/-/node16-1.0.3.tgz", + "integrity": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==", + "dev": true + }, + "@types/concat-stream": { + "version": "1.6.1", + "resolved": "https://registry.npmmirror.com/@types/concat-stream/-/concat-stream-1.6.1.tgz", + "integrity": "sha512-eHE4cQPoj6ngxBZMvVf6Hw7Mh4jMW4U9lpGmS5GBPB9RYxlFg+CHaVN7ErNY4W9XfLIEn20b4VDYaIrbq0q4uA==", + "requires": { + "@types/node": "*" + } + }, + "@types/crypto-js": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@types/crypto-js/-/crypto-js-4.1.1.tgz", + "integrity": "sha512-BG7fQKZ689HIoc5h+6D2Dgq1fABRa0RbBWKBd9SP/MVRVXROflpm5fhwyATX5duFmbStzyzyycPB8qUYKDH3NA==", + "dev": true + }, + "@types/form-data": { + "version": "0.0.33", + "resolved": "https://registry.npmmirror.com/@types/form-data/-/form-data-0.0.33.tgz", + "integrity": "sha512-8BSvG1kGm83cyJITQMZSulnl6QV8jqAGreJsc5tPu1Jq0vTSOiY/k24Wx82JRpWwZSqrala6sd5rWi6aNXvqcw==", + "requires": { + "@types/node": "*" + } + }, + "@types/json5": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/@types/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-NrVug5woqbvNZ0WX+Gv4R+L4TGddtmFek2u8RtccAgFZWtS9QXF2xCXY22/M4nzkaKF0q9Fc6M/5rxLDhfwc/A==", + "dev": true, + "requires": { + "json5": "*" + } + }, + "@types/mathjs": { + "version": "9.4.2", + "resolved": "https://registry.npmmirror.com/@types/mathjs/-/mathjs-9.4.2.tgz", + "integrity": "sha512-GF5g1vJmvKdWIWsE53XX7EDAyCaZ9p6gaYm1xhlXn5JjrY/NJrOfJN3fBxS3wyZpVh3QqKoMkS2WjFwxWMHOTw==", + "dev": true, + "requires": { + "mathjs": "*" + } + }, + "@types/mocha": { + "version": "8.2.3", + "resolved": "https://registry.npmmirror.com/@types/mocha/-/mocha-8.2.3.tgz", + "integrity": "sha512-ekGvFhFgrc2zYQoX4JeZPmVzZxw6Dtllga7iGHzfbYIYkAMUx/sAFP2GdFpLff+vdHXu5fl7WX9AT+TtqYcsyw==", + "dev": true + }, + "@types/mongodb": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/@types/mongodb/-/mongodb-4.0.7.tgz", + "integrity": "sha512-lPUYPpzA43baXqnd36cZ9xxorprybxXDzteVKCPAdp14ppHtFJHnXYvNpmBvtMUTb5fKXVv6sVbzo1LHkWhJlw==", + "dev": true, + "requires": { + "mongodb": "*" + } + }, + "@types/node": { + "version": "15.14.9", + "resolved": "https://registry.npmmirror.com/@types/node/-/node-15.14.9.tgz", + "integrity": "sha512-qjd88DrCxupx/kJD5yQgZdcYKZKSIGBVDIBE1/LTGcNm3d2Np/jxojkdePDdfnBHJc5W7vSMpbJ1aB7p/Py69A==" + }, + "@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmmirror.com/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" + }, + "@types/redis": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/@types/redis/-/redis-4.0.11.tgz", + "integrity": "sha512-bI+gth8La8Wg/QCR1+V1fhrL9+LZUSWfcqpOj2Kc80ZQ4ffbdL173vQd5wovmoV9i071FU9oP2g6etLuEwb6Rg==", + "dev": true, + "requires": { + "redis": "*" + } + }, + "@types/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-xTE1E+YF4aWPJJeUzaZI5DRntlkY3+BCVJi0axFptnjGmAoWxkyREIh/XMrfxVLejwQxMCfDXdICo0VLxThrog==" + }, + "@types/whatwg-url": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-8.2.2.tgz", + "integrity": "sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==", + "requires": { + "@types/node": "*", + "@types/webidl-conversions": "*" + } + }, + "@types/ws": { + "version": "7.4.7", + "resolved": "https://registry.npmmirror.com/@types/ws/-/ws-7.4.7.tgz", + "integrity": "sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==", + "requires": { + "@types/node": "*" + } + }, + "@ungap/promise-all-settled": { + "version": "1.1.2", + "resolved": "https://registry.npmmirror.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz", + "integrity": "sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==", + "dev": true + }, + "accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + } + }, + "acorn": { + "version": "8.8.0", + "resolved": "https://registry.npmmirror.com/acorn/-/acorn-8.8.0.tgz", + "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", + "dev": true + }, + "acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmmirror.com/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "dev": true + }, + "adler-32": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/adler-32/-/adler-32-1.3.1.tgz", + "integrity": "sha512-ynZ4w/nUUv5rrsR8UUGoe1VC9hZj6V5hU9Qw1HlMDJGEJw5S7TfTErWTjMys6M7vr0YWcPqs3qAr4ss0nDfP+A==" + }, + "ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmmirror.com/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true + }, + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmmirror.com/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "arg": { + "version": "4.1.3", + "resolved": "https://registry.npmmirror.com/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "asap": { + "version": "2.0.6", + "resolved": "https://registry.npmmirror.com/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "axios": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.4.0.tgz", + "integrity": "sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==", + "requires": { + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + }, + "dependencies": { + "form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + } + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "bl": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "requires": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } + } + }, + "bowser": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.11.0.tgz", + "integrity": "sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==", + "optional": true + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "browser-stdout": { + "version": "1.3.1", + "resolved": "https://registry.npmmirror.com/browser-stdout/-/browser-stdout-1.3.1.tgz", + "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", + "dev": true + }, + "bson": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/bson/-/bson-4.7.0.tgz", + "integrity": "sha512-VrlEE4vuiO1WTpfof4VmaVolCVYkYTgB9iWgYNOrVlnifpME/06fhFRmONgBhClD5pFC1t9ZWqFUQEQAzY43bA==", + "requires": { + "buffer": "^5.6.0" + } + }, + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmmirror.com/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmmirror.com/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmmirror.com/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmmirror.com/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" + }, + "cfb": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cfb/-/cfb-1.2.2.tgz", + "integrity": "sha512-KfdUZsSOw19/ObEWasvBP/Ac4reZvAGauZhs6S/gqNhXhI7cKwvlH7ulj+dOEYnca4bm4SGo8C1bTAQvnTjgQA==", + "requires": { + "adler-32": "~1.3.0", + "crc-32": "~1.2.0" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmmirror.com/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.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" + } + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "cli-spinners": { + "version": "2.7.0", + "resolved": "https://registry.npmmirror.com/cli-spinners/-/cli-spinners-2.7.0.tgz", + "integrity": "sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==", + "dev": true + }, + "cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmmirror.com/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "dev": true + }, + "cluster-key-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/cluster-key-slot/-/cluster-key-slot-1.1.0.tgz", + "integrity": "sha512-2Nii8p3RwAPiFwsnZvukotvow2rIHM+yQ6ZcBXGHdniadkYGZYiGmkHJIbZPIV9nfv7m/U1IPMVVcAhoWFeklw==" + }, + "codepage": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/codepage/-/codepage-1.15.0.tgz", + "integrity": "sha512-3g6NUTPd/YtuuGrhMnOMRjFc+LJw/bnMp3+0r/Wcz3IXUuCosKRJvMphm5+Q+bvTVGcJJuRvVLuYba+WojaFaA==" + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "commandpost": { + "version": "1.4.0", + "resolved": "https://registry.npmmirror.com/commandpost/-/commandpost-1.4.0.tgz", + "integrity": "sha512-aE2Y4MTFJ870NuB/+2z1cXBhSBBzRydVVjzhFC4gtenEhpnj15yu0qptWGJsO9YGrcPZ3ezX8AWb1VA391MKpQ==", + "dev": true + }, + "complex.js": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/complex.js/-/complex.js-2.1.1.tgz", + "integrity": "sha512-8njCHOTtFFLtegk6zQo0kkVX1rngygb/KQI6z1qZxlFI3scluC+LVTCFbrkWjBv4vvLlbQ9t88IPMC6k95VTTg==" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmmirror.com/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "requires": { + "safe-buffer": "5.2.1" + } + }, + "content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" + }, + "cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "crc-32": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz", + "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==" + }, + "create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "crypto-js": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.1.1.tgz", + "integrity": "sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==" + }, + "debug": { + "version": "4.3.3", + "resolved": "https://registry.npmmirror.com/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", + "dev": true, + "requires": { + "ms": "2.1.2" + }, + "dependencies": { + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + } + } + }, + "decamelize": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/decamelize/-/decamelize-4.0.0.tgz", + "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", + "dev": true + }, + "decimal.js": { + "version": "10.4.2", + "resolved": "https://registry.npmmirror.com/decimal.js/-/decimal.js-10.4.2.tgz", + "integrity": "sha512-ic1yEvwT6GuvaYwBLLY6/aFFgjZdySKTE8en/fkU3QICTmRtgtSlFn0u0BXN06InZwtfCelR7j8LRiDI/02iGA==" + }, + "defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "dev": true, + "requires": { + "clone": "^1.0.2" + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + }, + "denque": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", + "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==" + }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + }, + "destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" + }, + "diff": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/diff/-/diff-5.0.0.tgz", + "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==", + "dev": true + }, + "editorconfig": { + "version": "0.15.3", + "resolved": "https://registry.npmmirror.com/editorconfig/-/editorconfig-0.15.3.tgz", + "integrity": "sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g==", + "dev": true, + "requires": { + "commander": "^2.19.0", + "lru-cache": "^4.1.5", + "semver": "^5.6.0", + "sigmund": "^1.0.1" + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmmirror.com/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "escape-latex": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/escape-latex/-/escape-latex-1.2.0.tgz", + "integrity": "sha512-nV5aVWW1K0wEiUIEdZ4erkGGH8mDxGyxSeqPzRNtWP7ataw+/olFObw7hujFWlVjNsaDFw5VZ5NzVSIqRgfTiw==" + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" + }, + "execa": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "requires": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } + } + }, + "external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dev": true, + "requires": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + } + }, + "fast-xml-parser": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.0.11.tgz", + "integrity": "sha512-4aUg3aNRR/WjQAcpceODG1C3x3lFANXRo8+1biqfieHmg9pyMt7qB4lQV/Ta6sJCTbA5vfD8fnA8S54JATiFUA==", + "optional": true, + "requires": { + "strnum": "^1.0.5" + } + }, + "figures": { + "version": "3.2.0", + "resolved": "https://registry.npmmirror.com/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + }, + "dependencies": { + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + } + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } + } + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "flat": { + "version": "5.0.2", + "resolved": "https://registry.npmmirror.com/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true + }, + "follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==" + }, + "form-data": { + "version": "2.5.1", + "resolved": "https://registry.npmmirror.com/form-data/-/form-data-2.5.1.tgz", + "integrity": "sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + }, + "frac": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/frac/-/frac-1.1.2.tgz", + "integrity": "sha512-w/XBfkibaTl3YDqASwfDUqkna4Z2p9cFSr1aHDt0WoMTECnRfBOv2WArlZILlqgWlmdIlALXGpM2AOhEk5W3IA==" + }, + "fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmmirror.com/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" + }, + "fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true + }, + "ftp": { + "version": "0.3.10", + "resolved": "https://registry.npmmirror.com/ftp/-/ftp-0.3.10.tgz", + "integrity": "sha512-faFVML1aBx2UoDStmLwv2Wptt4vw5x03xxX172nhA5Y5HBshW5JweqQ2W4xL4dezQTG8inJsuYcpPHHU3X5OTQ==", + "dev": true, + "requires": { + "readable-stream": "1.1.x", + "xregexp": "2.0.0" + }, + "dependencies": { + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmmirror.com/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", + "dev": true + } + } + }, + "function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" + }, + "generic-pool": { + "version": "3.8.2", + "resolved": "https://registry.npmjs.org/generic-pool/-/generic-pool-3.8.2.tgz", + "integrity": "sha512-nGToKy6p3PAbYQ7p1UlWl6vSPwfwU6TMSWK7TTu+WUY4ZjyZQGniGGt2oNVvyNSpyZYSB43zMXVLcBm08MTMkg==" + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "get-intrinsic": { + "version": "1.1.3", + "resolved": "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz", + "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + } + }, + "get-port": { + "version": "3.2.0", + "resolved": "https://registry.npmmirror.com/get-port/-/get-port-3.2.0.tgz", + "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==" + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmmirror.com/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "glob": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": { + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "requires": { + "brace-expansion": "^1.1.7" + } + } + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "dev": true + }, + "growl": { + "version": "1.10.5", + "resolved": "https://registry.npmmirror.com/growl/-/growl-1.10.5.tgz", + "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==", + "dev": true + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + }, + "hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "requires": { + "function-bind": "^1.1.2" + } + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true + }, + "http-basic": { + "version": "8.1.3", + "resolved": "https://registry.npmmirror.com/http-basic/-/http-basic-8.1.3.tgz", + "integrity": "sha512-/EcDMwJZh3mABI2NhGfHOGOeOZITqfkEO4p/xK+l3NpyncIHUQBoMvCSF/b5GqvKtySC2srL/GGG3+EtlqlmCw==", + "requires": { + "caseless": "^0.12.0", + "concat-stream": "^1.6.2", + "http-response-object": "^3.0.1", + "parse-cache-control": "^1.0.1" + } + }, + "http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "requires": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + } + }, + "http-response-object": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/http-response-object/-/http-response-object-3.0.2.tgz", + "integrity": "sha512-bqX0XTF6fnXSQcEJ2Iuyr75yVakyjIDCqroJQ/aHfSdlM743Cwqoi2nDYMzLGWUcuTWGWy8AAvOKXTfiv6q9RA==", + "requires": { + "@types/node": "^10.0.3" + }, + "dependencies": { + "@types/node": { + "version": "10.17.60", + "resolved": "https://registry.npmmirror.com/@types/node/-/node-10.17.60.tgz", + "integrity": "sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==" + } + } + }, + "human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "dev": true + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + }, + "ignore": { + "version": "5.2.0", + "resolved": "https://registry.npmmirror.com/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "inquirer": { + "version": "8.2.5", + "resolved": "https://registry.npmmirror.com/inquirer/-/inquirer-8.2.5.tgz", + "integrity": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==", + "dev": true, + "requires": { + "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": "^7.0.0" + } + }, + "interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==" + }, + "invert-kv": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/invert-kv/-/invert-kv-3.0.1.tgz", + "integrity": "sha512-CYdFeFexxhv/Bcny+Q0BfOV+ltRlJcd4BBZBYFX/O0u4npJrgZtIcjokegtiSMAvlMTJ+Koq0GBCc//3bueQxw==", + "dev": true + }, + "ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "requires": { + "hasown": "^2.0.0" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "dev": true + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true + }, + "is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmmirror.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmmirror.com/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "javascript-natural-sort": { + "version": "0.7.1", + "resolved": "https://registry.npmmirror.com/javascript-natural-sort/-/javascript-natural-sort-0.7.1.tgz", + "integrity": "sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw==" + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + }, + "json5": { + "version": "2.2.3", + "resolved": "https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "k8w-crypto": { + "version": "0.2.0", + "resolved": "https://registry.npmmirror.com/k8w-crypto/-/k8w-crypto-0.2.0.tgz", + "integrity": "sha512-M6u4eQ6CQaU5xO3s4zaUUp9G79xNDhXtTU0X7N80tDcBhQC5ggowlyOzj95v7WiCuk7xkV0aFsTmCpuf0m0djw==", + "dev": true + }, + "k8w-extend-native": { + "version": "1.4.6", + "resolved": "https://registry.npmmirror.com/k8w-extend-native/-/k8w-extend-native-1.4.6.tgz", + "integrity": "sha512-AHTCyFshldMme0s9FKD+QKG+QZdBkHXzl+8kYfNhsSDhcdQ5TYWQwphjecSJjxNdGd78TIbO0fHiOvM+Ei22YA==", + "requires": { + "k8w-linq-array": "*", + "k8w-super-date": "*", + "k8w-super-object": "*" + } + }, + "k8w-linq-array": { + "version": "0.2.8", + "resolved": "https://registry.npmmirror.com/k8w-linq-array/-/k8w-linq-array-0.2.8.tgz", + "integrity": "sha512-4IAkQN8UJdk804tQi++wuwSZvFWk/Wcl1uG5PR/0c0YvB5hUd2f8tJm3OgOMOxjV9UVByNLvnPYGIwrFQPpjlA==" + }, + "k8w-super-date": { + "version": "0.1.3", + "resolved": "https://registry.npmmirror.com/k8w-super-date/-/k8w-super-date-0.1.3.tgz", + "integrity": "sha512-IBqKOAMAXR/bgzu+rYI30tEMP/Y6Q8HQuqJiTkE2mLJg11yok9guoi8uZTynTahviVBndcfBpOgi1H/zhihv7w==" + }, + "k8w-super-object": { + "version": "0.3.0", + "resolved": "https://registry.npmmirror.com/k8w-super-object/-/k8w-super-object-0.3.0.tgz", + "integrity": "sha512-u2jfh4goYXKZmSucaLaOTaNbLRatjv0CSRpzE0KU0732+9XtYZFd5vrdw/mzJfK5fPHb/zyikOSHDX5mJrav+g==" + }, + "lcid": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/lcid/-/lcid-3.1.1.tgz", + "integrity": "sha512-M6T051+5QCGLBQb8id3hdvIW8+zeFV2FyBGFS9IEK5H9Wt4MueD4bW1eWikpHgZp+5xR3l5c8pZUkQsIA0BFZg==", + "dev": true, + "requires": { + "invert-kv": "^3.0.0" + } + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "requires": { + "p-locate": "^5.0.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + } + }, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmmirror.com/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "map-age-cleaner": { + "version": "0.1.3", + "resolved": "https://registry.npmmirror.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", + "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", + "dev": true, + "requires": { + "p-defer": "^1.0.0" + } + }, + "mathjs": { + "version": "11.4.0", + "resolved": "https://registry.npmmirror.com/mathjs/-/mathjs-11.4.0.tgz", + "integrity": "sha512-SGhKmXnwsPWrLHvhzm849RJPMjFTgLgVwKtv2L+IY7XHB4nuzyZLfV2eHT1HtBZ4yzsLHgcqak47zMmxuEIIUg==", + "requires": { + "@babel/runtime": "^7.20.1", + "complex.js": "^2.1.1", + "decimal.js": "^10.4.2", + "escape-latex": "^1.2.0", + "fraction.js": "^4.2.0", + "javascript-natural-sort": "^0.7.1", + "seedrandom": "^3.0.5", + "tiny-emitter": "^2.1.0", + "typed-function": "^4.1.0" + } + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" + }, + "mem": { + "version": "5.1.1", + "resolved": "https://registry.npmmirror.com/mem/-/mem-5.1.1.tgz", + "integrity": "sha512-qvwipnozMohxLXG1pOqoLiZKNkC4r4qqRucSoDwXowsNGDSULiqFTRUF05vcZWnwJSG22qTsynQhxbaMtnX9gw==", + "dev": true, + "requires": { + "map-age-cleaner": "^0.1.3", + "mimic-fn": "^2.1.0", + "p-is-promise": "^2.1.0" + } + }, + "memory-pager": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz", + "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==", + "optional": true + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "requires": { + "mime-db": "1.52.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true + }, + "minimatch": { + "version": "4.2.1", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-4.2.1.tgz", + "integrity": "sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.7", + "resolved": "https://registry.npmmirror.com/minimist/-/minimist-1.2.7.tgz", + "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", + "dev": true + }, + "mocha": { + "version": "9.2.2", + "resolved": "https://registry.npmmirror.com/mocha/-/mocha-9.2.2.tgz", + "integrity": "sha512-L6XC3EdwT6YrIk0yXpavvLkn8h+EU+Y5UcCHKECyMbdUIxyMuZj4bX4U9e1nvnvUUvQVsV2VHQr5zLdcUkhW/g==", + "dev": true, + "requires": { + "@ungap/promise-all-settled": "1.1.2", + "ansi-colors": "4.1.1", + "browser-stdout": "1.3.1", + "chokidar": "3.5.3", + "debug": "4.3.3", + "diff": "5.0.0", + "escape-string-regexp": "4.0.0", + "find-up": "5.0.0", + "glob": "7.2.0", + "growl": "1.10.5", + "he": "1.2.0", + "js-yaml": "4.1.0", + "log-symbols": "4.1.0", + "minimatch": "4.2.1", + "ms": "2.1.3", + "nanoid": "3.3.1", + "serialize-javascript": "6.0.0", + "strip-json-comments": "3.1.1", + "supports-color": "8.1.1", + "which": "2.0.2", + "workerpool": "6.2.0", + "yargs": "16.2.0", + "yargs-parser": "20.2.4", + "yargs-unparser": "2.0.0" + } + }, + "mongodb": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-4.11.0.tgz", + "integrity": "sha512-9l9n4Nk2BYZzljW3vHah3Z0rfS5npKw6ktnkmFgTcnzaXH1DRm3pDl6VMHu84EVb1lzmSaJC4OzWZqTkB5i2wg==", + "requires": { + "@aws-sdk/credential-providers": "^3.186.0", + "bson": "^4.7.0", + "denque": "^2.1.0", + "mongodb-connection-string-url": "^2.5.4", + "saslprep": "^1.0.3", + "socks": "^2.7.1" + } + }, + "mongodb-connection-string-url": { + "version": "2.5.4", + "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-2.5.4.tgz", + "integrity": "sha512-SeAxuWs0ez3iI3vvmLk/j2y+zHwigTDKQhtdxTgt5ZCOQQS5+HW4g45/Xw5vzzbn7oQXCNQ24Z40AkJsizEy7w==", + "requires": { + "@types/whatwg-url": "^8.2.1", + "whatwg-url": "^11.0.0" + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmmirror.com/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true + }, + "nanoid": { + "version": "3.3.1", + "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.1.tgz", + "integrity": "sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==", + "dev": true + }, + "negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "requires": { + "path-key": "^3.0.0" + } + }, + "object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==" + }, + "on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "requires": { + "ee-first": "1.1.1" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmmirror.com/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "requires": { + "wrappy": "1" + } + }, + "onchange": { + "version": "7.1.0", + "resolved": "https://registry.npmmirror.com/onchange/-/onchange-7.1.0.tgz", + "integrity": "sha512-ZJcqsPiWUAUpvmnJri5TPBooqJOPmC0ttN65juhN15Q8xA+Nbg3BaxBHXQ45EistKKlKElb0edmbPWnKSBkvMg==", + "dev": true, + "requires": { + "@blakeembrey/deque": "^1.0.5", + "@blakeembrey/template": "^1.0.0", + "arg": "^4.1.3", + "chokidar": "^3.3.1", + "cross-spawn": "^7.0.1", + "ignore": "^5.1.4", + "tree-kill": "^1.2.2" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "ora": { + "version": "5.4.1", + "resolved": "https://registry.npmmirror.com/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "dev": true, + "requires": { + "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" + } + }, + "os-locale": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/os-locale/-/os-locale-5.0.0.tgz", + "integrity": "sha512-tqZcNEDAIZKBEPnHPlVDvKrp7NzgLi7jRmhKiUoa2NUmhl13FtkAGLUVR+ZsYvApBQdBfYm43A4tXXQ4IrYLBA==", + "dev": true, + "requires": { + "execa": "^4.0.0", + "lcid": "^3.0.0", + "mem": "^5.0.0" + } + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "dev": true + }, + "p-defer": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/p-defer/-/p-defer-1.0.0.tgz", + "integrity": "sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==", + "dev": true + }, + "p-is-promise": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/p-is-promise/-/p-is-promise-2.1.0.tgz", + "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==", + "dev": true + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "requires": { + "p-limit": "^3.0.2" + } + }, + "parse-cache-control": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/parse-cache-control/-/parse-cache-control-1.0.1.tgz", + "integrity": "sha512-60zvsJReQPX5/QP0Kzfd/VrpjScIQ7SHBW6bFCYfEP+fp0Eppr1SHhIO5nd1PjZtvclzSzES9D/p5nFJurwfWg==" + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "promise": { + "version": "8.3.0", + "resolved": "https://registry.npmmirror.com/promise/-/promise-8.3.0.tgz", + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "requires": { + "asap": "~2.0.6" + } + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + } + }, + "proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + }, + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", + "dev": true + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + }, + "qs": { + "version": "6.11.0", + "resolved": "https://registry.npmmirror.com/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "requires": { + "side-channel": "^1.0.4" + } + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + }, + "raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "requires": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", + "requires": { + "resolve": "^1.1.6" + } + }, + "redis": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/redis/-/redis-4.3.1.tgz", + "integrity": "sha512-cM7yFU5CA6zyCF7N/+SSTcSJQSRMEKN0k0Whhu6J7n9mmXRoXugfWDBo5iOzGwABmsWKSwGPTU5J4Bxbl+0mrA==", + "requires": { + "@redis/bloom": "1.0.2", + "@redis/client": "1.3.0", + "@redis/graph": "1.0.1", + "@redis/json": "1.0.4", + "@redis/search": "1.1.0", + "@redis/time-series": "1.0.3" + } + }, + "regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true + }, + "resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "requires": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmmirror.com/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "dev": true + }, + "rxjs": { + "version": "7.5.7", + "resolved": "https://registry.npmmirror.com/rxjs/-/rxjs-7.5.7.tgz", + "integrity": "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==", + "dev": true, + "requires": { + "tslib": "^2.1.0" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "saslprep": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/saslprep/-/saslprep-1.0.3.tgz", + "integrity": "sha512-/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag==", + "optional": true, + "requires": { + "sparse-bitfield": "^3.0.3" + } + }, + "seedrandom": { + "version": "3.0.5", + "resolved": "https://registry.npmmirror.com/seedrandom/-/seedrandom-3.0.5.tgz", + "integrity": "sha512-8OwmbklUNzwezjGInmZ+2clQmExQPvomqjL7LFqOYqtmuxRgQYqOD3mHaU+MvZn5FLUeVxVfQjwLZW/n/JFuqg==" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmmirror.com/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "requires": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } + } + } + } + }, + "serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, + "serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + } + }, + "setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "shelljs": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", + "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", + "requires": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + } + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "sigmund": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/sigmund/-/sigmund-1.0.1.tgz", + "integrity": "sha512-fCvEXfh6NWpm+YSuY2bpXb/VIihqWA6hLsgboC+0nl71Q7N7o2eaCW8mJa/NLvQhs6jpd3VZV4UiUQlV6+lc8g==", + "dev": true + }, + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" + }, + "socks": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "requires": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + } + }, + "sparse-bitfield": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", + "integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==", + "optional": true, + "requires": { + "memory-pager": "^1.0.2" + } + }, + "ssf": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/ssf/-/ssf-0.11.2.tgz", + "integrity": "sha512-+idbmIXoYET47hH+d7dfm2epdOMUDjqcB4648sTZ+t2JwoyBFL/insLfB/racrDmsKB3diwsDA696pZMieAC5g==", + "requires": { + "frac": "~1.1.2" + } + }, + "statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, + "strnum": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", + "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==", + "optional": true + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + }, + "sync-request": { + "version": "6.1.0", + "resolved": "https://registry.npmmirror.com/sync-request/-/sync-request-6.1.0.tgz", + "integrity": "sha512-8fjNkrNlNCrVc/av+Jn+xxqfCjYaBoHqCsDz6mt030UMxJGr+GSfCV1dQt2gRtlL63+VPidwDVLr7V2OcTSdRw==", + "requires": { + "http-response-object": "^3.0.1", + "sync-rpc": "^1.2.1", + "then-request": "^6.0.0" + } + }, + "sync-rpc": { + "version": "1.3.6", + "resolved": "https://registry.npmmirror.com/sync-rpc/-/sync-rpc-1.3.6.tgz", + "integrity": "sha512-J8jTXuZzRlvU7HemDgHi3pGnh/rkoqR/OZSjhTyyZrEkkYQbk7Z33AXp37mkPfPpfdOuj7Ex3H/TJM1z48uPQw==", + "requires": { + "get-port": "^3.1.0" + } + }, + "then-request": { + "version": "6.0.2", + "resolved": "https://registry.npmmirror.com/then-request/-/then-request-6.0.2.tgz", + "integrity": "sha512-3ZBiG7JvP3wbDzA9iNY5zJQcHL4jn/0BWtXIkagfz7QgOL/LqjCEOBQuJNZfu0XYnv5JhKh+cDxCPM4ILrqruA==", + "requires": { + "@types/concat-stream": "^1.6.0", + "@types/form-data": "0.0.33", + "@types/node": "^8.0.0", + "@types/qs": "^6.2.31", + "caseless": "~0.12.0", + "concat-stream": "^1.6.0", + "form-data": "^2.2.0", + "http-basic": "^8.1.1", + "http-response-object": "^3.0.1", + "promise": "^8.0.0", + "qs": "^6.4.0" + }, + "dependencies": { + "@types/node": { + "version": "8.10.66", + "resolved": "https://registry.npmmirror.com/@types/node/-/node-8.10.66.tgz", + "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==" + } + } + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmmirror.com/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true + }, + "tiny-emitter": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz", + "integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==" + }, + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmmirror.com/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "requires": { + "os-tmpdir": "~1.0.2" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + }, + "tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "requires": { + "punycode": "^2.1.1" + } + }, + "tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmmirror.com/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "dev": true + }, + "ts-node": { + "version": "10.9.1", + "resolved": "https://registry.npmmirror.com/ts-node/-/ts-node-10.9.1.tgz", + "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", + "dev": true, + "requires": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "dependencies": { + "diff": { + "version": "4.0.2", + "resolved": "https://registry.npmmirror.com/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true + } + } + }, + "tsbuffer": { + "version": "2.2.7", + "resolved": "https://registry.npmmirror.com/tsbuffer/-/tsbuffer-2.2.7.tgz", + "integrity": "sha512-WkP6NU14W14Kxa+OtccJ4m9+nY8UZs/DlM3FQzxstBkNGzmNvggN3+2mfIzYO8YDKu6mqYUXgpNg1aqIYcUACw==", + "requires": { + "k8w-extend-native": "^1.4.6", + "tsbuffer-validator": "^2.1.1", + "tslib": "*" + } + }, + "tsbuffer-proto-generator": { + "version": "1.7.2", + "resolved": "https://registry.npmmirror.com/tsbuffer-proto-generator/-/tsbuffer-proto-generator-1.7.2.tgz", + "integrity": "sha512-Rjq/mNXb6Z3ORi5M0BH3O+L0hpr+RcLzJ1edXO4bOZkojdtxDmwoKGBKoh+/xba+bhOiSiwHfVZLiQ06A6vEmw==", + "dev": true, + "requires": { + "k8w-crypto": "^0.2.0", + "k8w-extend-native": "^1.4.6", + "tsbuffer-schema": "^2.2.0", + "tslib": "*", + "typescript": "^4" + } + }, + "tsbuffer-schema": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/tsbuffer-schema/-/tsbuffer-schema-2.2.0.tgz", + "integrity": "sha512-I4+5Xfk7G+D++kXdNnYTeY26WQTaf14C84XQwPKteNmrwxRY3CQCkMqASRiCUqtpOuDn43qmoxuXpT+Vo8Wltg==" + }, + "tsbuffer-validator": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/tsbuffer-validator/-/tsbuffer-validator-2.1.1.tgz", + "integrity": "sha512-12JVltPQjv2hZqfd9TZhTjCyQ0bvtRlTXyczOAaH+CnryWI9Twt0i9ZGaM5fb2QMxW5BOhToOIbwO8opDqpCEg==", + "requires": { + "k8w-extend-native": "^1.4.6", + "tsbuffer-schema": "^2.2.0", + "tslib": "*" + } + }, + "tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" + }, + "tsrpc": { + "version": "3.4.12", + "resolved": "https://registry.npmmirror.com/tsrpc/-/tsrpc-3.4.12.tgz", + "integrity": "sha512-FMa7FdzW7LdhsQ49DxcNegeW4oRJGxqP+3DXbZBvsUHSeL2h6UFCSKmw2TypI2ChDeRGgbo+wt6uJ0upF6fz9Q==", + "requires": { + "@types/ws": "^7.4.7", + "chalk": "^4.1.2", + "tsbuffer": "^2.2.7", + "tsrpc-base-client": "^2.1.11", + "tsrpc-proto": "^1.4.3", + "uuid": "^8.3.2", + "ws": "^7.5.9" + } + }, + "tsrpc-base-client": { + "version": "2.1.12", + "resolved": "https://registry.npmmirror.com/tsrpc-base-client/-/tsrpc-base-client-2.1.12.tgz", + "integrity": "sha512-7Zsby1dtDQkxzvT/tRMLLnjCqpYpoCwN9Sci9x7iWCBMNHiiBPBoKIIp2nqhlfLF3kxSgemQOGF499Mx3GVQfg==", + "requires": { + "k8w-extend-native": "^1.4.6", + "tsbuffer": "^2.2.7", + "tslib": "*", + "tsrpc-proto": "^1.4.3" + } + }, + "tsrpc-cli": { + "version": "2.4.5", + "resolved": "https://registry.npmmirror.com/tsrpc-cli/-/tsrpc-cli-2.4.5.tgz", + "integrity": "sha512-/3MMyGAAuSnZLQVfoRZXI5sfyGakRTk2AfrllvVSUSfGPTr06iU1YAgOATNYEHl+uAj1+QFz3dKT8g3J+wCIcw==", + "dev": true, + "requires": { + "chalk": "^4.1.2", + "chokidar": "^3.5.3", + "fs-extra": "^10.1.0", + "glob": "^7.2.3", + "inquirer": "^8.2.4", + "k8w-extend-native": "^1.4.6", + "minimist": "^1.2.6", + "ora": "^5.4.1", + "os-locale": "^5.0.0", + "ts-node": "^10.8.2", + "tsbuffer": "^2.2.3", + "tsbuffer-proto-generator": "^1.7.2", + "tsbuffer-schema": "^2.2.0", + "tsrpc-proto": "^1.4.2", + "typescript": "^4.7.4", + "typescript-formatter": "^7.2.2" + }, + "dependencies": { + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + } + } + }, + "tsrpc-proto": { + "version": "1.4.3", + "resolved": "https://registry.npmmirror.com/tsrpc-proto/-/tsrpc-proto-1.4.3.tgz", + "integrity": "sha512-qtkk5i34m9/K1258EdyXAEikU/ADPELHCCXN/oFJ4XwH+kN3kXnKYmwCDblUuMA73V2+A/EwkgUGyAgPa335Hw==", + "requires": { + "tsbuffer-schema": "^2.2.0", + "tslib": "*" + } + }, + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmmirror.com/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "typed-function": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/typed-function/-/typed-function-4.1.0.tgz", + "integrity": "sha512-DGwUl6cioBW5gw2L+6SMupGwH/kZOqivy17E4nsh1JI9fKF87orMmlQx3KISQPmg3sfnOUGlwVkroosvgddrlg==" + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmmirror.com/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" + }, + "typescript": { + "version": "4.8.4", + "resolved": "https://registry.npmmirror.com/typescript/-/typescript-4.8.4.tgz", + "integrity": "sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==", + "dev": true + }, + "typescript-formatter": { + "version": "7.2.2", + "resolved": "https://registry.npmmirror.com/typescript-formatter/-/typescript-formatter-7.2.2.tgz", + "integrity": "sha512-V7vfI9XArVhriOTYHPzMU2WUnm5IMdu9X/CPxs8mIMGxmTBFpDABlbkBka64PZJ9/xgQeRpK8KzzAG4MPzxBDQ==", + "dev": true, + "requires": { + "commandpost": "^1.0.0", + "editorconfig": "^0.15.0" + } + }, + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" + }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmmirror.com/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + }, + "v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "dev": true + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" + }, + "wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "dev": true, + "requires": { + "defaults": "^1.0.3" + } + }, + "webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" + }, + "whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "requires": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "wmf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wmf/-/wmf-1.0.2.tgz", + "integrity": "sha512-/p9K7bEh0Dj6WbXg4JG0xvLQmIadrner1bi45VMJTfnbVHsc7yIajZyoSoK60/dtVBs12Fm6WkUI5/3WAVsNMw==" + }, + "word": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/word/-/word-0.3.0.tgz", + "integrity": "sha512-OELeY0Q61OXpdUfTp+oweA/vtLVg5VDOXh+3he3PNzLGG/y0oylSOC1xRVj0+l4vQ3tj/bB1HVHv1ocXkQceFA==" + }, + "workerpool": { + "version": "6.2.0", + "resolved": "https://registry.npmmirror.com/workerpool/-/workerpool-6.2.0.tgz", + "integrity": "sha512-Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A==", + "dev": true + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "ws": { + "version": "7.5.9", + "resolved": "https://registry.npmmirror.com/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "requires": {} + }, + "xlsx": { + "version": "0.18.5", + "resolved": "https://registry.npmjs.org/xlsx/-/xlsx-0.18.5.tgz", + "integrity": "sha512-dmg3LCjBPHZnQp5/F/+nnTa+miPJxUXB6vtk42YjBBKayDNagxGEeIdWApkYPOf3Z3pm3k62Knjzp7lMeTEtFQ==", + "requires": { + "adler-32": "~1.3.0", + "cfb": "~1.2.1", + "codepage": "~1.15.0", + "crc-32": "~1.2.1", + "ssf": "~0.11.2", + "wmf": "~1.0.1", + "word": "~0.3.0" + } + }, + "xregexp": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/xregexp/-/xregexp-2.0.0.tgz", + "integrity": "sha512-xl/50/Cf32VsGq/1R8jJE5ajH1yMCQkpmoS10QbFZWl2Oor4H0Me64Pu2yxvsRWK3m6soJbmGfzSR7BYmDcWAA==", + "dev": true + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmmirror.com/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmmirror.com/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + }, + "yargs-parser": { + "version": "20.2.4", + "resolved": "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-20.2.4.tgz", + "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==", + "dev": true + }, + "yargs-unparser": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/yargs-unparser/-/yargs-unparser-2.0.0.tgz", + "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", + "dev": true, + "requires": { + "camelcase": "^6.0.0", + "decamelize": "^4.0.0", + "flat": "^5.0.2", + "is-plain-obj": "^2.1.0" + } + }, + "yn": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmmirror.com/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..2086b37 --- /dev/null +++ b/package.json @@ -0,0 +1,49 @@ +{ + "name": "server-.", + "description": "黑礁", + "version": "0.1.0", + "main": "index.js", + "private": true, + "scripts": { + "dev": "tsrpc-cli dev", + "build": "tsrpc-cli build && copy js_pm2.config.js dist && copy zoeninfo.sh dist && mkdir dist\\json && xcopy src\\json dist\\json /e ", + "build_win": "tsrpc-cli build && copy js_pm2.config.js dist && copy zoeninfo.sh dist && mkdir dist\\json && xcopy src\\json dist\\json /e ", + "build_linux": "tsrpc-cli build && cp js_pm2.config.js dist && cp zoeninfo.sh dist && cp src/json/ -a dist ", + "build_docker_win": "npm run build_win && cd dist && npm i --omit=dev", + "build_docker_linux": "npm run build_linux && cd dist && npm i --omit=dev", + "doc": "tsrpc-cli doc && node js_uploadDoc.js", + "test": "mocha test/**/*.test.ts", + "proto": "tsrpc-cli proto", + "sync": "tsrpc-cli sync", + "api": "tsrpc-cli api", + "capi": "npm run proto && npm run api && npm run doc" + }, + "devDependencies": { + "@types/crypto-js": "^4.1.1", + "@types/json5": "^2.2.0", + "@types/mathjs": "^9.4.2", + "@types/mocha": "^8.2.3", + "@types/mongodb": "^4.0.7", + "@types/node": "^15.14.9", + "@types/redis": "^4.0.11", + "ftp": "^0.3.10", + "mocha": "^9.2.2", + "onchange": "^7.1.0", + "ts-node": "^10.9.1", + "tsrpc-cli": "^2.4.5", + "typescript": "^4.8.4" + }, + "dependencies": { + "axios": "^1.4.0", + "crypto-js": "^4.1.1", + "express": "^4.18.2", + "json5": "^2.2.3", + "mathjs": "^11.4.0", + "mongodb": "^4.11.0", + "redis": "^4.3.1", + "shelljs": "^0.8.5", + "sync-request": "^6.1.0", + "tsrpc": "^3.4.12", + "xlsx": "^0.18.5" + } +} diff --git a/src/api_cross/clsl/ApiFindEnemy.ts b/src/api_cross/clsl/ApiFindEnemy.ts new file mode 100644 index 0000000..e6ead85 --- /dev/null +++ b/src/api_cross/clsl/ApiFindEnemy.ts @@ -0,0 +1,21 @@ +import { ApiCall } from "tsrpc"; +import { ReqFindEnemy, ResFindEnemy } from "../../cross/protocols/clsl/PtlFindEnemy"; +import { formatNpcData } from '../../shared/fightControl/fightFun'; + +export default async function (call: ApiCall) { + let my = await G.mongodb.collection('clslCrossUser').findOne({ uid: call.req.uid }); + let starConf = getStarConf(my.allStar); + let others = await G.mongodb.collection('clslCrossUser').find({ uid: { $nin: [call.req.uid] } }).toArray(); + let enemy = others.random(); + + call.succ({ + allStar: enemy?.allStar || my.allStar, + info: enemy?.info || formatNpcData(starConf.npc) + }); +} + +const endConf = Object.values(G.gc.clsl_dan).slice(-1)[0]; + +function getStarConf(star = 0) { + return G.gc.clsl_dan[star] || endConf; +} \ No newline at end of file diff --git a/src/api_cross/clsl/ApiLog.ts b/src/api_cross/clsl/ApiLog.ts new file mode 100644 index 0000000..6f8b44b --- /dev/null +++ b/src/api_cross/clsl/ApiLog.ts @@ -0,0 +1,14 @@ +import { ApiCall } from "tsrpc"; +import { ReqLog, ResLog } from "../../cross/protocols/clsl/PtlLog"; +import { FightFun } from '../../public/fight'; + +export default async function (call: ApiCall) { + if (call.req.result) { + FightFun.saveLog(call.req.uid, 'clsl', call.req.result); + call.succ({}); + } else { + call.succ({ + logs: await FightFun.readLog(call.req.uid, 'clsl') + }); + } +} \ No newline at end of file diff --git a/src/api_cross/clsl/ApiRank.ts b/src/api_cross/clsl/ApiRank.ts new file mode 100644 index 0000000..ff8eeff --- /dev/null +++ b/src/api_cross/clsl/ApiRank.ts @@ -0,0 +1,7 @@ +import { ApiCall } from "tsrpc"; +import { ReqRank, ResRank } from "../../cross/protocols/clsl/PtlRank"; +import { Rank } from '../../public/rank/rank'; + +export default async function (call: ApiCall) { + call.succ(await Rank.list.clslCross.getRankList(call.req.gud.uid, call.req.gud)); +} \ No newline at end of file diff --git a/src/api_cross/clsl/ApiRankUids.ts b/src/api_cross/clsl/ApiRankUids.ts new file mode 100644 index 0000000..4530770 --- /dev/null +++ b/src/api_cross/clsl/ApiRankUids.ts @@ -0,0 +1,10 @@ +import { ApiCall } from "tsrpc"; +import { ReqRankUids, ResRankUids } from "../../cross/protocols/clsl/PtlRankUids"; +import { Rank } from '../../public/rank/rank'; + +export default async function (call: ApiCall) { + let rankList = await Rank.list.clslCross.getRankListAll() + call.succ({ + uids: rankList.map(li => li.player.uid) + }); +} \ No newline at end of file diff --git a/src/api_cross/clsl/ApiUpLoad.ts b/src/api_cross/clsl/ApiUpLoad.ts new file mode 100644 index 0000000..7d40b57 --- /dev/null +++ b/src/api_cross/clsl/ApiUpLoad.ts @@ -0,0 +1,23 @@ +import { ApiCall } from "tsrpc"; +import { ReqUpLoad, ResUpLoad } from "../../cross/protocols/clsl/PtlUpLoad"; +import { Rank } from '../../public/rank/rank'; + +export default async function (call: ApiCall) { + let { allStar, uid, ...ops } = call.req; + + let a = await G.mongodb.collection('clslCrossUser').findOneAndUpdate( + { uid: uid }, + { + $inc: { allStar: allStar || 0 }, + $set: ops + }, + { upsert: true } + ); + + if (allStar != undefined && ops.info) { + Rank.list.clslCross.addNew({ + player: a.value.info.player, + valArr: [(await G.mongodb.collection('clslCrossUser').findOne({ uid: uid })).allStar] + }); + } +} \ No newline at end of file diff --git a/src/api_cross/hbzb/jfs/ApiGetEnemy.ts b/src/api_cross/hbzb/jfs/ApiGetEnemy.ts new file mode 100644 index 0000000..7ea9a6b --- /dev/null +++ b/src/api_cross/hbzb/jfs/ApiGetEnemy.ts @@ -0,0 +1,43 @@ +import { ApiCall } from "tsrpc"; +import { ReqGetEnemy, ResGetEnemy } from "../../../cross/protocols/hbzb/jfs/PtlGetEnemy"; +import { Rank } from '../../../public/rank/rank'; +import { formatNpcData } from '../../../shared/fightControl/fightFun'; +import { PublicShared } from "../../../shared/public/public"; + +export default async function (call: ApiCall) { + // TODO + let allPlayers = Rank.list.hbzbCross.allPlayer; + let user = allPlayers[call.req.uid]; + if (!user) return call.succ({ enemy: [] }); + + let conf = call.req.auto ? G.gc.hbzb.jfsMatchingAuto : G.gc.hbzb.jfsMatchingHand; + let rang = conf.map(val => { + return [PublicShared.eval(val.min, { zhanli: user.data.player.power }), PublicShared.eval(val.max, { zhanli: user.data.player.power })] as [number, number]; + }); + let min = rang.slice(-1)[0][0]; + let max = rang[0][1]; + let players = Object.values(allPlayers).filter(p => { + return p.data.player.power >= min && p.data.player.power <= max && p.data.player.uid != call.req.uid; + }); + let select: string[] = []; + let enemy = rang.map((r, index) => { + let es = players.filter(p => p.data.player.power >= r[0] && p.data.player.power <= r[1] && !select.includes(p.data.player.uid)); + if (es.length > 0) { + let { uid, ...ops } = es.random(); + select.push(uid); + return ops; + } else { + return { + data: getNpc(user.data.player.lv, index), + jifen: 1000 + }; + } + }); + + call.succ({ enemy: enemy }); +} + +function getNpc(lv: number, index: number) { + let rang = G.gc.hbzb.jfsRefreshNpcId.find(v => lv >= v.lvs[0] && lv <= v.lvs[1]); + return formatNpcData(rang.npcs[index].random()); +} \ No newline at end of file diff --git a/src/api_cross/hbzb/jfs/ApiGetLog.ts b/src/api_cross/hbzb/jfs/ApiGetLog.ts new file mode 100644 index 0000000..c252cae --- /dev/null +++ b/src/api_cross/hbzb/jfs/ApiGetLog.ts @@ -0,0 +1,7 @@ +import { ApiCall } from "tsrpc"; +import { ReqGetLog, ResGetLog } from "../../../cross/protocols/hbzb/jfs/PtlGetLog"; +import { FightFun } from '../../../public/fight'; + +export default async function (call: ApiCall) { + call.succ(await FightFun.readLog(call.req.uid, 'hbzbJfs')); +} \ No newline at end of file diff --git a/src/api_cross/hbzb/jfs/ApiGetRankList.ts b/src/api_cross/hbzb/jfs/ApiGetRankList.ts new file mode 100644 index 0000000..90718c9 --- /dev/null +++ b/src/api_cross/hbzb/jfs/ApiGetRankList.ts @@ -0,0 +1,9 @@ +import { ApiCall } from "tsrpc"; +import { ReqGetRankList, ResGetRankList } from "../../../cross/protocols/hbzb/jfs/PtlGetRankList"; +import { Rank } from '../../../public/rank/rank'; + +export default async function (call: ApiCall) { + let rankList = await Rank.list.hbzbCross.getRankListAll() + // TODO + call.succ({ rankList: rankList, jifen: Rank.list.hbzbCross.allPlayer[call.req.uid]?.jifen || 1000 }); +} \ No newline at end of file diff --git a/src/api_cross/hbzb/jfs/ApiGetUser.ts b/src/api_cross/hbzb/jfs/ApiGetUser.ts new file mode 100644 index 0000000..081d04d --- /dev/null +++ b/src/api_cross/hbzb/jfs/ApiGetUser.ts @@ -0,0 +1,7 @@ +import { ApiCall } from "tsrpc"; +import { ReqGetUser, ResGetUser } from "../../../cross/protocols/hbzb/jfs/PtlGetUser"; + +export default async function (call: ApiCall) { + // TODO + call.error('API Not Implemented'); +} \ No newline at end of file diff --git a/src/api_cross/hbzb/zbs/ApiGetEnemy.ts b/src/api_cross/hbzb/zbs/ApiGetEnemy.ts new file mode 100644 index 0000000..757c5c2 --- /dev/null +++ b/src/api_cross/hbzb/zbs/ApiGetEnemy.ts @@ -0,0 +1,31 @@ +import {ApiCall} from "tsrpc"; +import {ReqGetEnemy, ResGetEnemy} from "../../../cross/protocols/hbzb/zbs/PtlGetEnemy"; +import {Rank} from '../../../public/rank/rank'; + +export default async function (call: ApiCall) { + let list = await Rank.list.hbzbZbsCross.getRankListAll(); + let enemys = list.slice(0, 10); + let myRank = list.findIndex(e => e.player.uid == call.req.uid); + + if (myRank > 8) { + if (myRank == 9) enemys.push(list.slice(10, 5).random()); + else if (myRank == 10) enemys.push(list.slice(11, 5).random()); + else { + let two = list.slice(10, myRank - 10).shuffle(); + enemys.push(...two.slice(0, 2)); + enemys.push(list.slice(myRank + 1, 5).random()); + } + } + + + call.succ({ + enemy: enemys.map((e, i) => ({ + data: { + player: e.player, + roles: e.roles + }, + rank: i + })), + rank: myRank + }); +} \ No newline at end of file diff --git a/src/api_cross/hbzb/zbs/ApiGetLog.ts b/src/api_cross/hbzb/zbs/ApiGetLog.ts new file mode 100644 index 0000000..4487ef1 --- /dev/null +++ b/src/api_cross/hbzb/zbs/ApiGetLog.ts @@ -0,0 +1,7 @@ +import { ApiCall } from "tsrpc"; +import { ReqGetLog, ResGetLog } from "../../../cross/protocols/hbzb/zbs/PtlGetLog"; +import { FightFun } from '../../../public/fight'; + +export default async function (call: ApiCall) { + call.succ(await FightFun.readLog(call.req.uid, 'hbzbZbs')); +} \ No newline at end of file diff --git a/src/api_cross/hbzb/zbs/ApiGetRankList.ts b/src/api_cross/hbzb/zbs/ApiGetRankList.ts new file mode 100644 index 0000000..aa01d09 --- /dev/null +++ b/src/api_cross/hbzb/zbs/ApiGetRankList.ts @@ -0,0 +1,8 @@ +import { ApiCall } from "tsrpc"; +import { ReqGetRankList, ResGetRankList } from "../../../cross/protocols/hbzb/zbs/PtlGetRankList"; +import { Rank } from '../../../public/rank/rank'; + +export default async function (call: ApiCall) { + let rankList = await Rank.list.hbzbZbsCross.getRankListAll(); + call.succ({ rankList: rankList }); +} \ No newline at end of file diff --git a/src/api_cross/hbzb/zbs/ApiGetStatus.ts b/src/api_cross/hbzb/zbs/ApiGetStatus.ts new file mode 100644 index 0000000..316b1ba --- /dev/null +++ b/src/api_cross/hbzb/zbs/ApiGetStatus.ts @@ -0,0 +1,8 @@ +import { ApiCall } from "tsrpc"; +import { ReqGetStatus, ResGetStatus } from "../../../cross/protocols/hbzb/zbs/PtlGetStatus"; +import { Rank } from '../../../public/rank/rank'; + +export default async function (call: ApiCall) { + let rank = await Rank.list.hbzbZbsCross.getRankSortByOne(call.req.uid) + call.succ({ status: rank}); +} \ No newline at end of file diff --git a/src/api_cross/hbzb/zbs/ApiSendJjcTop.ts b/src/api_cross/hbzb/zbs/ApiSendJjcTop.ts new file mode 100644 index 0000000..ac28c16 --- /dev/null +++ b/src/api_cross/hbzb/zbs/ApiSendJjcTop.ts @@ -0,0 +1,13 @@ +import { ApiCall } from "tsrpc"; +import { ReqSendJjcTop, ResSendJjcTop } from "../../../cross/protocols/hbzb/zbs/PtlSendJjcTop"; +import { Rank } from '../../../public/rank/rank'; + +export default async function (call: ApiCall) { + // Rank.list.hbzbZbsCross.list.push(...call.req.tops); + for (let index = 0; index < call.req.tops.length; index++) { + const element = call.req.tops[index]; + element["valArr"] = [0]; + Rank.list.hbzbZbsCross.addNew(element) + + }; +} \ No newline at end of file diff --git a/src/api_cross/kbzz/ApiApply.ts b/src/api_cross/kbzz/ApiApply.ts new file mode 100644 index 0000000..57ba8cd --- /dev/null +++ b/src/api_cross/kbzz/ApiApply.ts @@ -0,0 +1,7 @@ +import { ApiCall } from "tsrpc"; +import { ReqApply, ResApply } from "../../cross/protocols/kbzz/PtlApply"; + +export default async function (call: ApiCall) { + G.mongodb.collection('kbzzApplyUser').updateOne({ uid: call.req.info.player.uid }, { $set: { info: call.req.info } }, { upsert: true }); + call.succ({}); +} \ No newline at end of file diff --git a/src/api_cross/kbzz/ApiGetUser.ts b/src/api_cross/kbzz/ApiGetUser.ts new file mode 100644 index 0000000..1284126 --- /dev/null +++ b/src/api_cross/kbzz/ApiGetUser.ts @@ -0,0 +1,12 @@ +import { ApiCall } from "tsrpc"; +import { ReqGetUser, ResGetUser } from "../../cross/protocols/kbzz/PtlGetUser"; + +export default async function (call: ApiCall) { + + let dbData = await G.mongodb.collection('kbzzGroupUser').findOne({ uid: call.req.uid }); + + call.succ({ + group: dbData.group, + troop: dbData.troop + }); +} \ No newline at end of file diff --git a/src/api_cross/kbzz/ApiGroupRank.ts b/src/api_cross/kbzz/ApiGroupRank.ts new file mode 100644 index 0000000..9165b4e --- /dev/null +++ b/src/api_cross/kbzz/ApiGroupRank.ts @@ -0,0 +1,17 @@ +import { ApiCall } from "tsrpc"; +import { ReqGroupRank, ResGroupRank } from "../../cross/protocols/kbzz/PtlGroupRank"; + +export default async function (call: ApiCall) { + // TODO + let db = await G.mongodb.collection('kbzzGroupTroop').find({ group: call.req.group }).toArray(); + + call.succ({ + rank: db.map(d => { + return { + troop: d.troop, + score: d.score + }; + }), + log: (await G.mongodb.collection('kbzzGroupLog').findOne({ group: call.req.group }))?.log || [] + }); +} \ No newline at end of file diff --git a/src/api_cross/kbzz/ApiRank.ts b/src/api_cross/kbzz/ApiRank.ts new file mode 100644 index 0000000..237b8e2 --- /dev/null +++ b/src/api_cross/kbzz/ApiRank.ts @@ -0,0 +1,17 @@ +import { ApiCall } from "tsrpc"; +import { ReqRank, ResRank } from "../../cross/protocols/kbzz/PtlRank"; +import { RankKbzz } from '../../public/rank/rank_kbzz'; + +export default async function (call: ApiCall) { + let _cunzai = await G.mongodb.collection('kbzzGroupTroop').findOne({}) + if (!_cunzai) { + return call.error('', { code: -1, message: '功能未开放' }) + } + let db = await G.mongodb.collection('kbzzGroupUser').findOne({ uid: call.req.uid }); + let group = db?.group || 0; + let rank = await RankKbzz.groupList[group].getRankList(call.req.uid); + + call.succ({ + ...rank + }); +} \ No newline at end of file diff --git a/src/api_cross/kbzz/ApiRefresh.ts b/src/api_cross/kbzz/ApiRefresh.ts new file mode 100644 index 0000000..af7f78e --- /dev/null +++ b/src/api_cross/kbzz/ApiRefresh.ts @@ -0,0 +1,19 @@ +import { ApiCall } from "tsrpc"; +import { ReqRefresh, ResRefresh } from "../../cross/protocols/kbzz/PtlRefresh"; + +export default async function (call: ApiCall) { + let enemys = await G.mongodb.collection('kbzzGroupUser').find({ group: call.req.group, troop: { $nin: [call.req.troop] } }).toArray(); + enemys.sort(() => Math.random() - .5); + + let arr = enemys.slice(0, G.gc.kbzz.refreshEnemyNum).map(e => { + return { + info: e.info, + troop: e.troop, + result: null + }; + }); + + call.succ({ + enemy: arr + }); +} \ No newline at end of file diff --git a/src/api_cross/kbzz/ApiState.ts b/src/api_cross/kbzz/ApiState.ts new file mode 100644 index 0000000..833cda9 --- /dev/null +++ b/src/api_cross/kbzz/ApiState.ts @@ -0,0 +1,12 @@ +import { ApiCall } from "tsrpc"; +import { ReqState, ResState } from "../../cross/protocols/kbzz/PtlState"; + +export default async function (call: ApiCall) { + + let num = await G.mongodb.collection(call.req.type == 'apply' ? 'kbzzApplyUser' : 'kbzzGroupUser').countDocuments(); + + call.succ({ + num: num, + succ: call.req.type == 'apply' ? num >= G.gc.kbzz.groupNum : num >= 1 + }); +} \ No newline at end of file diff --git a/src/api_cross/kbzz/ApiUpUser.ts b/src/api_cross/kbzz/ApiUpUser.ts new file mode 100644 index 0000000..c24b9ee --- /dev/null +++ b/src/api_cross/kbzz/ApiUpUser.ts @@ -0,0 +1,44 @@ +import { ApiCall } from "tsrpc"; +import { ReqUpUser, ResUpUser } from "../../cross/protocols/kbzz/PtlUpUser"; +import { RankKbzz } from '../../public/rank/rank_kbzz'; + +export default async function (call: ApiCall) { + + + G.mongodb.collection('kbzzGroupUser').updateOne( + { uid: call.req.uid }, + { + $inc: { score: call.req.addScore }, + $set: call.req.info == null ? {} : { info: call.req.info } + } + ); + + G.mongodb.collection('kbzzGroupTroop').updateOne( + { group: call.req.group, troop: call.req.troop }, + { + $inc: { score: call.req.addScore } + } + ); + + G.mongodb.collection('kbzzGroupLog').updateOne( + { group: call.req.group }, + { + $push: { + log: { + $each: [call.req.log], + $slice: -50 + } + } + }, + { upsert: true } + ); + + if (call.req.info != null) { + RankKbzz.groupList[call.req.group].addNew({ + ...call.req.info, + valArr: [call.req.allScore] + }); + } + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_cross/wzry/ApiBaoMing.ts b/src/api_cross/wzry/ApiBaoMing.ts new file mode 100644 index 0000000..7bb3fab --- /dev/null +++ b/src/api_cross/wzry/ApiBaoMing.ts @@ -0,0 +1,13 @@ +import { ApiCall } from "tsrpc"; +import { ReqBaoMing, ResBaoMing } from "../../cross/protocols/wzry/PtlBaoMing"; + +export default async function (call: ApiCall) { + let _setData = { + zkey: call.req.zkey, + data: call.req.data, + jifen: 0, + uid: call.req.data.player.uid + } + await G.mongodb.collection('wzry_user_cross').updateOne({ uid: call.req.data.player.uid }, { $set: _setData }, { upsert: true }) + call.succ({ mydata: _setData }); +} \ No newline at end of file diff --git a/src/api_cross/wzry/ApiDldRefre.ts b/src/api_cross/wzry/ApiDldRefre.ts new file mode 100644 index 0000000..f02b34f --- /dev/null +++ b/src/api_cross/wzry/ApiDldRefre.ts @@ -0,0 +1,9 @@ +import { ApiCall } from "tsrpc"; +import { ReqDldRefre, ResDldRefre } from "../../cross/protocols/wzry/PtlDldRefre"; + +export default async function (call: ApiCall) { + let others = await G.mongodb.collection('wzry_fight').find({ uid: { $nin: [call.req.uid] } }).toArray(); + let enemy = others.random(); + + call.succ({ info: enemy.data }) +} \ No newline at end of file diff --git a/src/api_cross/wzry/ApiRank.ts b/src/api_cross/wzry/ApiRank.ts new file mode 100644 index 0000000..f31e925 --- /dev/null +++ b/src/api_cross/wzry/ApiRank.ts @@ -0,0 +1,15 @@ +import { ApiCall } from "tsrpc"; +import { ReqRank, ResRank } from "../../cross/protocols/wzry/PtlRank"; +import { ChatFun } from "../../public/chat"; +import { EmailFun } from "../../public/email"; +import { FightFun } from "../../public/fight"; +import { Rank } from '../../public/rank/rank'; +import { SchedulerWzryDlDstart, wzrygroup } from "../../public/scheduler/scheduler_wzry"; +import { WangZheRongYaofun } from "../../public/wzry"; +import { PublicShared } from "../../shared/public/public"; + +export default async function (call: ApiCall) { + let _r = await Rank.list.wzryCross.getRankList(call.req.gud.uid, call.req.gud) + + call.succ(_r); +} \ No newline at end of file diff --git a/src/api_cross/wzry/ApiSetWzFight.ts b/src/api_cross/wzry/ApiSetWzFight.ts new file mode 100644 index 0000000..ddf772e --- /dev/null +++ b/src/api_cross/wzry/ApiSetWzFight.ts @@ -0,0 +1,24 @@ +import { ApiCall } from "tsrpc"; +import { ReqSetWzFight, ResSetWzFight } from "../../cross/protocols/wzry/PtlSetWzFight"; +import { Rank } from "../../public/rank/rank"; + +export default async function (call: ApiCall) { + let _setData = { + zkey: call.req.zkey, + data: call.req.data, + jifen: call.req.jifen, + uid: call.req.data.player.uid + } + await G.mongodb.collection('wzry_fight').updateOne({ uid: call.req.data.player.uid }, { $set: _setData }) + // 有积分数据更新积分 + if (_setData.jifen) { + let data = { + valArr: [_setData.jifen], + ..._setData.data + } + Rank.list.wzryCross.addNew(data) + } + + let rank = await Rank.list.wzryCross.getPlayerRank(call.req.data.player.uid) || -1 + call.succ({ mydata: _setData, rank: rank }); +} \ No newline at end of file diff --git a/src/api_cross/wzry/ApiUpdateFight.ts b/src/api_cross/wzry/ApiUpdateFight.ts new file mode 100644 index 0000000..d1ae133 --- /dev/null +++ b/src/api_cross/wzry/ApiUpdateFight.ts @@ -0,0 +1,23 @@ +import { ApiCall } from "tsrpc"; +import { ReqUpdateFight, ResUpdateFight } from "../../cross/protocols/wzry/PtlUpdateFight"; + +export default async function (call: ApiCall) { + if (call.req.setdata) { + await G.mongodb.collection('wzry_fight').updateOne({ uid: call.req.uid }, { $set: call.req.setdata }) + } + + if (call.req.isjingcai) { + await G.mongodb.collection('crosskv').updateOne({ type: "wzryallnum" }, { $inc: { num: call.req.isjingcai } }, { upsert: true }) + } + + // 设置删除跨服邮件的标识符,标识已经被拉倒本服生效 + if (call.req?.isdelemail?.isdel) { + let _list = [] + for (let index = 0; index < call.req.isdelemail.email.length; index++) { + const element = call.req.isdelemail.email[index]; + _list.push(G.mongodb.conversionId(element)) + } + await G.mongodb.collection('email').updateMany({ _id: { $in: _list } }, {$set: { isdel: 1 }}) + } + call.succ({}) +} \ No newline at end of file diff --git a/src/api_cross/wzry/ApiWzFightData.ts b/src/api_cross/wzry/ApiWzFightData.ts new file mode 100644 index 0000000..3421bca --- /dev/null +++ b/src/api_cross/wzry/ApiWzFightData.ts @@ -0,0 +1,45 @@ +import { ApiCall } from "tsrpc"; +import { ReqWzFightData, ResWzFightData } from "../../cross/protocols/wzry/PtlWzFightData"; +import { Rank } from "../../public/rank/rank"; +import { PublicShared } from "../../shared/public/public"; + +export default async function (call: ApiCall) { + // 王者参与数据 + let changeInfo: ResWzFightData = {} + if (call.req.iswzfight) { + let _myFight = await G.mongodb.collection('wzry_fight').findOne({ uid: call.req.uid }) + if (_myFight && Object.keys(_myFight).length > 0) { + if (_myFight?._id) delete _myFight._id + _myFight['rank'] = await Rank.list.wzryCross.getPlayerRank(call.req.uid) || -1 + changeInfo['info'] = _myFight + } + } + + // 王者之巅本期数据 + if (call.req.iswzzd) { + let zkey = PublicShared.getToWeek() + let _wzzd = await G.mongodb.collection('wzrywiner').findOne({ zkey: zkey }) + if (_wzzd && _wzzd._id) delete _wzzd._id + changeInfo['wzzd'] = _wzzd + } + + if (call.req.isdel) { + // 删除本期数据 + await G.mongodb.collection('wzry_fight').deleteMany({}) + await G.mongodb.collection('crosskv').deleteMany({ type: 'wzryallnum' }) + await G.mongodb.collection('wzry_user_cross').deleteMany({}) + await G.mongodb.collection('wzry_fight_log').deleteMany({}) + await Rank.list.wzryCross.clear() + } + + // 跨服邮件 + if (call.req.isemail) { + let _crossEmail = await G.mongodb.collection('email').find({ isdel: { $exists: false } }).toArray() + _crossEmail.forEach(email => { + email._id.toString() + }) + changeInfo['crossEmail'] = _crossEmail + } + + call.succ(changeInfo) +} \ No newline at end of file diff --git a/src/api_cross/wzry/ApiWzFightGroup.ts b/src/api_cross/wzry/ApiWzFightGroup.ts new file mode 100644 index 0000000..b16398e --- /dev/null +++ b/src/api_cross/wzry/ApiWzFightGroup.ts @@ -0,0 +1,7 @@ +import { ApiCall } from "tsrpc"; +import { ReqWzFightGroup, ResWzFightGroup } from "../../cross/protocols/wzry/PtlWzFightGroup"; + +export default async function (call: ApiCall) { + let _myFight = await G.mongodb.collection('wzry_fight').find({ ...call.req.where }).toArray() + call.succ({ info: _myFight }) +} \ No newline at end of file diff --git a/src/api_cross/wzry/ApiWzzd.ts b/src/api_cross/wzry/ApiWzzd.ts new file mode 100644 index 0000000..82a5dcd --- /dev/null +++ b/src/api_cross/wzry/ApiWzzd.ts @@ -0,0 +1,8 @@ +import { ApiCall } from "tsrpc"; +import { ReqWzzd, ResWzzd } from "../../cross/protocols/wzry/PtlWzzd"; + +export default async function (call: ApiCall) { + let _where = call.req?.where ? call.req.where : {} + let wzzdlist = await G.mongodb.collection('wzrywiner').find(_where).toArray() + call.succ({ wzzdlist: wzzdlist }); +} \ No newline at end of file diff --git a/src/api_cross/wzry/ApicatFightLog.ts b/src/api_cross/wzry/ApicatFightLog.ts new file mode 100644 index 0000000..fbe0d99 --- /dev/null +++ b/src/api_cross/wzry/ApicatFightLog.ts @@ -0,0 +1,11 @@ +import { ApiCall } from "tsrpc"; +import { ReqcatFightLog, RescatFightLog } from "../../cross/protocols/wzry/PtlcatFightLog"; + +export default async function (call: ApiCall) { + let result = await G.mongodb.collection('wzry_fight_log').findOne({ _id: G.mongodb.conversionId(call.req.fid) }); + if (!result) { + return call.errorCode(-1); + } + delete result._id; + call.succ({ result: result }); +} \ No newline at end of file diff --git a/src/api_cross/wzry/ApigetJingCai.ts b/src/api_cross/wzry/ApigetJingCai.ts new file mode 100644 index 0000000..424f80a --- /dev/null +++ b/src/api_cross/wzry/ApigetJingCai.ts @@ -0,0 +1,9 @@ +import { ApiCall } from "tsrpc"; +import { ReqgetJingCai, ResgetJingCai } from "../../cross/protocols/wzry/PtlgetJingCai"; + +export default async function (call: ApiCall) { + let num = (await G.mongodb.collection('crosskv').findOne({ type: 'wzryallnum' }))?.num || 0 + call.succ({ + num: num + }) +} \ No newline at end of file diff --git a/src/api_o2s/ApiAddHuoDong.ts b/src/api_o2s/ApiAddHuoDong.ts new file mode 100644 index 0000000..eb0d885 --- /dev/null +++ b/src/api_o2s/ApiAddHuoDong.ts @@ -0,0 +1,22 @@ +import { ApiCall } from "tsrpc"; +import { ReqAddHuoDong, ResAddHuoDong } from "../monopoly/protocols/PtlAddHuoDong"; +import { HuoDongFun } from "../public/huodongfun"; +import { PublicShared } from "../shared/public/public"; + +export default async function (call: ApiCall) { + let _hd = call.req + if (_hd["ttype"] == 0) { + if (_hd["stime"] == -1) { // 永久活动 + _hd["stime"] = 0 + _hd["rtime"] = 0 + _hd["etime"] = 0 + _hd["showtime"] = "永久" + } else { // 不是永久活动,直接使用传输时间;检测显示时间 + let _st = PublicShared.fmtTime(_hd["stime"]) + let _rt = PublicShared.fmtTime(_hd["rtime"]) + _hd["showtime"] = _st + " - " + _rt + } + } + + call.succ({ insertId: await HuoDongFun.addHuoDong(_hd) }); +} \ No newline at end of file diff --git a/src/api_o2s/ApiCatAllhd.ts b/src/api_o2s/ApiCatAllhd.ts new file mode 100644 index 0000000..aeca85f --- /dev/null +++ b/src/api_o2s/ApiCatAllhd.ts @@ -0,0 +1,13 @@ +import { ApiCall } from "tsrpc"; +import { ReqCatAllhd, ResCatAllhd } from "../monopoly/protocols/PtlCatAllhd"; +import { HuoDongFun } from "../public/huodongfun"; + +export default async function (call: ApiCall) { + let _where = call.req.where + let _w = {} + if (_where && Object.keys(_where).length > 0) { + _w = _where + } + let _hdList = await HuoDongFun.catAllHD(_w) + call.succ({ hdlist: _hdList }); +} \ No newline at end of file diff --git a/src/api_o2s/ApiDelHuoDong.ts b/src/api_o2s/ApiDelHuoDong.ts new file mode 100644 index 0000000..7f83dfc --- /dev/null +++ b/src/api_o2s/ApiDelHuoDong.ts @@ -0,0 +1,8 @@ +import { ApiCall } from "tsrpc"; +import { ReqDelHuoDong, ResDelHuoDong } from "../monopoly/protocols/PtlDelHuoDong"; +import { HuoDongFun } from "../public/huodongfun"; + +export default async function (call: ApiCall) { + await HuoDongFun.delHD(call.req.hdid) + call.succ({ status: "success" }); +} \ No newline at end of file diff --git a/src/api_o2s/ApiEmail.ts b/src/api_o2s/ApiEmail.ts new file mode 100644 index 0000000..ea6c22b --- /dev/null +++ b/src/api_o2s/ApiEmail.ts @@ -0,0 +1,7 @@ +import { ApiCall } from "tsrpc"; +import { ReqEmail, ResEmail } from "../monopoly/protocols/PtlEmail"; +import { EmailFun } from '../public/email'; + +export default async function (call: ApiCall) { + call.succ({ insertId: await EmailFun.addEmail(call.req) }); +} \ No newline at end of file diff --git a/src/api_o2s/ApiGetLog.ts b/src/api_o2s/ApiGetLog.ts new file mode 100644 index 0000000..90c8ee2 --- /dev/null +++ b/src/api_o2s/ApiGetLog.ts @@ -0,0 +1,19 @@ +import { existsSync, readFileSync, readdirSync } from 'fs'; +import { dirname, join } from 'path'; +import { ApiCall } from "tsrpc"; +import { ReqGetLog, ResGetLog } from "../monopoly/protocols/PtlGetLog"; + +export default async function (call: ApiCall) { + let logStr = ''; + let dir = join(dirname(require.main.filename), 'logs'); + + if (existsSync(dir)) { + let files = readdirSync(dir); + files.forEach(file => { + logStr += file + ':\n'; + logStr += readFileSync(join(dir, file), 'utf-8') + '\n'; + }); + } + + call.succ(logStr); +} \ No newline at end of file diff --git a/src/api_o2s/Apihealthz.ts b/src/api_o2s/Apihealthz.ts new file mode 100644 index 0000000..6287d2d --- /dev/null +++ b/src/api_o2s/Apihealthz.ts @@ -0,0 +1,37 @@ +import { ApiCall } from "tsrpc"; +import { Reqhealthz, Reshealthz } from "../monopoly/protocols/Ptlhealthz"; + +export default async function (call: ApiCall) { + let _chkMDB = await G.mongodb.indexInformation("user") + let _chkRedis = await G.redis.chkRedis() + + let _dateTime = new Date(); + let _newTime = _dateTime.format('YYYY-MM-DDTHH:MM+01:00'); + + // 构造返回值 + let _data: Reshealthz = { + code: 0, + data: { + dependencies: [] + } + } + + let _names = ["mongodb", "redis"] + for (let index = 0; index < [_chkMDB, _chkRedis].length; index++) { + const element = [_chkMDB, _chkRedis][index]; + + let _tmp = { + dependency: _names[index], + status: (_names[index] == "mongodb" ? _chkMDB : _chkRedis) ? 0 : 102, + reason: '', + severity: _names[index] == "mongodb" ? "critical" : "warning", + lastcheck: _newTime + } + + _data.code = _tmp.status + _data.data.dependencies.push(_tmp) + + } + + call.succ(_data); +} \ No newline at end of file diff --git a/src/api_o2s/games/Apideploy.ts b/src/api_o2s/games/Apideploy.ts new file mode 100644 index 0000000..4655655 --- /dev/null +++ b/src/api_o2s/games/Apideploy.ts @@ -0,0 +1,14 @@ +import { ApiCall } from "tsrpc"; +import { Reqdeploy, Resdeploy } from "../../monopoly/protocols/games/Ptldeploy"; +import { initStarupFun } from "../../starup"; + +export default async function (call: ApiCall) { + try{ + initStarupFun.initStart() + }catch(err){ + call.succ({message:err.toString(), code:-1}) + } + + // 区服初始化 + call.succ({ message: "success", code: 0 }); +} \ No newline at end of file diff --git a/src/api_o2s/games/Apimetrics.ts b/src/api_o2s/games/Apimetrics.ts new file mode 100644 index 0000000..8608123 --- /dev/null +++ b/src/api_o2s/games/Apimetrics.ts @@ -0,0 +1,17 @@ +import { ApiCall } from "tsrpc"; +import { Reqmetrics, Resmetrics } from "../../monopoly/protocols/games/Ptlmetrics"; + +export default async function (call: ApiCall) { + // 当前区服付费人数 + let now_paid_user_num = await G.mongodb.collection('payLog').countDocuments({}) + // 当前区服在线人数 + let now_login_user_num = await G.mongodb.collection('user').countDocuments({ newonlinetime: { $gte: G.time - 90, $lte: G.time + 30 } }) + // 当前区服注册人数 + let now_register_user_num = await G.mongodb.collection('user').countDocuments({}) + + call.succ({ + now_paid_user_num: now_paid_user_num, + now_login_user_num: now_login_user_num, + now_register_user_num: now_register_user_num + }); +} \ No newline at end of file diff --git a/src/api_o2s/games/Apinotification.ts b/src/api_o2s/games/Apinotification.ts new file mode 100644 index 0000000..64871e0 --- /dev/null +++ b/src/api_o2s/games/Apinotification.ts @@ -0,0 +1,127 @@ +import { ApiCall } from "tsrpc"; +import { GongGaoBan_info, Reqnotification, Resnotification } from "../../monopoly/protocols/games/Ptlnotification"; +import { ChatFun } from "../../public/chat"; +import { EmailFun } from "../../public/email"; +import { NotifiCationFun } from "../../public/notification"; +import { ServerToolFun } from "../../public/servertooltcp"; + +export default async function (call: ApiCall) { + let template = call.req.template + let action = call.req.action + + if (template == "server_mail") { // 全服邮件 + if (action == "offline") { // publish 发布全服邮件/个人邮件/公告板/跑马灯 offline 下线全服邮件/公告板/跑马灯 + // 根据g123 唯一id 删除邮件 + await G.mongodb.collection('email').deleteMany({ "g123log.id": { $in: call.req.data } }); + } else { + let _prize = await NotifiCationFun.getFmtPrize(call.req.data.assets) + + let _mails = call.req.data.mail + for (let indexMail = 0; indexMail < _mails.length; indexMail++) { + const elementMail = _mails[indexMail]; + EmailFun.addQuanFuEmail({ + uid: "system", + type: 'gm', + title: elementMail.header, + content: elementMail.content, + prize: _prize, + contentInsertArr: [], + createTime: call.req.data?.startTime || G.time, + g123log: { id: call.req.data.id } + }) + } + } + + } else if (template == "player_mail") { // 个人邮件 + let _playerIds = call.req.data.playerIds + for (let index = 0; index < _playerIds.length; index++) { + const element = _playerIds[index]; + // 邮件内容 + let _prize = await NotifiCationFun.getFmtPrize(call.req.data.assets) + let _mails = call.req.data.mail + for (let indexMail = 0; indexMail < _mails.length; indexMail++) { + const elementMail = _mails[indexMail]; + EmailFun.addEmail({ + uid: element, + type: 'gm', + title: elementMail.header, + content: elementMail.content, + prize: _prize, + contentInsertArr: [], + createTime: call.req.data?.sendTime || G.time, + g123log: { id: call.req.data.id } + }) + } + } + } else if (template == "news_ticker") { // 跑马灯 + if (action == "offline") { // 删除跑马灯 + ChatFun.newMsg({ + type: 'local', + msg: "", + time: G.time, + sender: 'system', + otherData: { + pmd: false, + args: [], + + ids: call.req.data + } + }) + + } else { + let newsTicker = call.req.data.newsTicker + for (let index = 0; index < newsTicker.length; index++) { + const element = newsTicker[index]; + + ChatFun.newMsg({ + type: 'local', + msg: element.content, + time: call.req.data.startTime, + sender: 'system', + otherData: { + pmd: true, + args: [], + + interval: call.req.data.interval, // 播放间隔,单位分钟,为0时仅播放frequency次 + frequency: call.req.data.frequency, // 每回播放频次,单位条数 + id: call.req.data.id // G123生成的告知唯一ID + } + }) + } + + } + } else if (template == "bulletin") { // 游戏公告板(登录游戏之前的公告) + if (action == "offline") { // 删除公告 + ServerToolFun.postServer("server/delGongGao", { "gonggao": call.req.data }) + } else { + let _gongGao: GongGaoBan_info[] = [] + let bulletin = call.req.data.bulletin + + let levelMin = call.req.data.levelMin + let levelMax = call.req.data.levelMax + let stime = call.req.data.startTime + let etime = call.req.data.endTime + for (let index = 0; index < bulletin.length; index++) { + const element = bulletin[index]; + + let _tmp: GongGaoBan_info = { + content: element.content, + title: element.header, + stime: stime, + etime: etime, + sort: "0", // 写入的时候会复写 + otherData: { + levelMin: levelMin, + levelMax: levelMax, + id: call.req.data.id, + serverIds: call.req.data.serverIds + } + } + _gongGao.push(_tmp) + } + ServerToolFun.postServer("server/setGongGao", { "gonggao": _gongGao }) + } + } + + call.succ({ message: "success", code: 0 }); +} \ No newline at end of file diff --git a/src/api_o2s/games/Apiopen.ts b/src/api_o2s/games/Apiopen.ts new file mode 100644 index 0000000..67dd22f --- /dev/null +++ b/src/api_o2s/games/Apiopen.ts @@ -0,0 +1,50 @@ +import {ApiCall} from "tsrpc"; +import {Reqopen, Resopen} from "../../monopoly/protocols/games/Ptlopen"; +import {env} from "process"; +import request from "sync-request"; +import fs from "fs"; +import {initStarupFun} from "../../starup"; + +export default async function (call: ApiCall) { + // 设置开区时间 + let _opentine = call.req.opentime + + let _dateTime = new Date(_opentine); + _dateTime = new Date(_dateTime.getTime()); + G.openTime = _dateTime.format('YYYY-MM-DD hh:mm:ss') + + await setConfig() + + call.succ({ + code: 0, + message: G.openTime + }); + + initStarupFun.initStart() + + if(call.req.utc){ + console.log('---------------开始修改时区shell脚本---------------') + const shell = require('shelljs'); + shell.exec(`sh /app/zoeninfo.sh ${call.req.utc}`) + } +} + +async function setConfig(){ + let type = env.SERVER_TYPE || 'game'; + let url = `http://server-tool:7456/server/getConfig?sid=${env.SERVER_ID}&type=${type}` + console.log('拉取服务端启动配置文件', url); + + let res = await request('GET', url, { + headers: { + 'content-type': 'application/json' + } + }); + + const body = JSON.parse(res.body.toString()); + if (body) { + await fs.writeFileSync('/app/config.json', JSON.stringify(body, null, 2)); + console.log('服务端配置: ', body); + } else { + console.log('拉取失败'); + } +} \ No newline at end of file diff --git a/src/api_o2s/games/Apiranking.ts b/src/api_o2s/games/Apiranking.ts new file mode 100644 index 0000000..5b5b19a --- /dev/null +++ b/src/api_o2s/games/Apiranking.ts @@ -0,0 +1,40 @@ +import { ApiCall } from "tsrpc"; +import { rankOpenfun } from "../../api_s2c/rank/ApiOpen"; +import { Reqranking, Resranking } from "../../monopoly/protocols/games/Ptlranking"; +import { NotifiCationFun } from "../../public/notification"; +import { PayFun } from "../../public/pay"; + +export default async function (call: ApiCall) { + // 设置开区时间 + let _num = call.req.skip ? 999 : call.req.num + let _rankType = call.req.rankid + + // 无此玩家 随便取一个玩家 + let gud = await G.mongodb.collection('user').findOne({}); + if (!gud) { + return call.error('', { code: 1002, message: globalThis.lng.wuciwanjia }); + } + let rescall = PayFun.getCall(gud); + // 排行榜数据 + let _rankData = await rankOpenfun(rescall, [_rankType]) + // 排行 + let _renkList = _rankData[_rankType]["rankList"] + let _resData = [] + + for (let index = 0; index < _renkList.length; index++) { + const element = _renkList[index]; + let _tmp: Resranking["data"][0] = { + ranking: index + 1, + id: element.player.uid, + name: element.player.name, + rankkingValue: (element.valArr ? element.valArr[0] : await NotifiCationFun.getFmtRankVal(_rankType, element)).toString() + } + _resData.push(_tmp) + } + + call.succ({ + code: 0, + message: globalThis.lng.huoqupaihang, + data: _resData + }); +} \ No newline at end of file diff --git a/src/api_o2s/gift/Apipopup.ts b/src/api_o2s/gift/Apipopup.ts new file mode 100644 index 0000000..44fe9f5 --- /dev/null +++ b/src/api_o2s/gift/Apipopup.ts @@ -0,0 +1,27 @@ +import {ApiCall} from "tsrpc"; +import {Reqpopup, Respopup} from "../../monopoly/protocols/gift/Ptlpopup"; + +export default async function (call: ApiCall) { + // 给用户推送礼包的逻辑实现 + let popup_info = call.req + + // todo 开发去实现 + console.log("收到礼包推送", popup_info) + + let user = G.server.uid_connections[popup_info.game_user_id] + + let giftLog: any = {...popup_info} + + if (user) { + giftLog = { + ...popup_info, + showTime: G.time, + endTime: G.time + popup_info.duration + } + G.server.sendMsgByUid(popup_info.game_user_id, 'msg_s2c/SendGift', giftLog) + } + + G.mongodb.collection('giftLog').updateOne({popup_id: giftLog.popup_id}, {$set: giftLog}, {upsert: true}); + + call.succ({}) +} \ No newline at end of file diff --git a/src/api_o2s/gm/ApiPay.ts b/src/api_o2s/gm/ApiPay.ts new file mode 100644 index 0000000..b7bd450 --- /dev/null +++ b/src/api_o2s/gm/ApiPay.ts @@ -0,0 +1,9 @@ +import {ApiCall} from "tsrpc"; +import {ReqPay, ResPay} from "../../monopoly/protocols/gm/PtlPay"; +import {PayFun} from "../../public/pay"; + +export default async function (call: ApiCall) { + + await PayFun.pay(call.req.uid, call.req.payId, call.req.payArgs, call.req.type); + call.succ({}); +} \ No newline at end of file diff --git a/src/api_o2s/gm/ApiSendPrize.ts b/src/api_o2s/gm/ApiSendPrize.ts new file mode 100644 index 0000000..787dbbf --- /dev/null +++ b/src/api_o2s/gm/ApiSendPrize.ts @@ -0,0 +1,7 @@ +import {ApiCall} from "tsrpc"; +import {ReqSendPrize, ResSendPrize} from "../../monopoly/protocols/gm/PtlSendPrize"; + +export default async function (call: ApiCall) { + + +} \ No newline at end of file diff --git a/src/api_o2s/hdinfo/Apidetails.ts b/src/api_o2s/hdinfo/Apidetails.ts new file mode 100644 index 0000000..3e26fba --- /dev/null +++ b/src/api_o2s/hdinfo/Apidetails.ts @@ -0,0 +1,61 @@ +import { ApiCall } from "tsrpc"; +import { g123_response_hdinfo_details, g123_response_hdinfo_details_accountingData, g123_response_hdinfo_details_taowa, Reqdetails, Resdetails } from "../../monopoly/protocols/hdinfo/Ptldetails"; +import { HuoDongFun } from "../../public/huodongfun"; +import { PayFun } from "../../public/pay"; + +export default async function (call: ApiCall) { + let _where = call.req.uid ? { uid: call.req.uid } : {} + + // 无玩家 随便取一个玩家 + let gud = await G.mongodb.collection('user').findOne(_where); + if (!gud) { + return call.error('', { code: 1002, message: globalThis.lng.wuciwanjia }); + } + let rescall = PayFun.getCall(gud); + + // 构造返回值 + let _data: g123_response_hdinfo_details[] = [] + + // 目前游戏只有游戏 5 符合查询要求 + // @ts-ignore + let _hds = await HuoDongFun.gethdList(rescall, 5) + for (let index = 0; index < _hds.length; index++) { + const element = _hds[index]; + + let _dbType: `leijichongzhi${number}` = `leijichongzhi${element.hdid}` + let _users = await G.mongodb.cEvent(_dbType).find({ type: _dbType }).toArray(); + + let accountingData: g123_response_hdinfo_details_accountingData[] = [] + for (let index = 0; index < _users.length; index++) { + + const elementUser = _users[index]; + let _tmp = { + ranking: index, + participantId: elementUser.uid, + value: await (await PayFun.getPayDaysAllPayNum(elementUser.uid, element.stime, element.rtime)).toString() + } + accountingData.push(_tmp) + } + + // 排序 + accountingData = accountingData.sort((b, a) => Number(a.value) - Number(b.value)) + accountingData.forEach((ele, index) => { + ele.ranking = index + 1 + }) + + let _pushiTmp: g123_response_hdinfo_details_taowa[] = [] + _pushiTmp.push({ + eventId: element.hdid.toString(), + eventName: element.name, + serverId: G.config.serverId, + accountingTime: element.rtime * 1000, + accountingData: accountingData + }) + _data.push({ + total: index + 1, + elemengts: _pushiTmp + }) + } + + call.succ({ status: 0, message: "success", data: _data }); +} \ No newline at end of file diff --git a/src/api_o2s/union/Apirename.ts b/src/api_o2s/union/Apirename.ts new file mode 100644 index 0000000..21b97fd --- /dev/null +++ b/src/api_o2s/union/Apirename.ts @@ -0,0 +1,17 @@ +import { ApiCall } from "tsrpc"; +import { Reqrename, Resrename } from "../../monopoly/protocols/union/Ptlrename"; +import { GongHuiFun } from "../../public/gonghui/gonghui"; +import { GHManage } from "../../public/gonghui/manage"; + +export default async function (call: ApiCall) { + let _newName = call.req.guildName; + await GongHuiFun.checkSetArgs({ name: _newName }); + + let _GH = await GHManage.getGH(call.req.guildId); + if (!_GH) { + call.error('', { status: 1001, message: globalThis.lng.wucigonghui }); + } + _GH.updateSetting({ name: _newName }); + + call.succ({ status: 0, message: "success" }); +} \ No newline at end of file diff --git a/src/api_o2s/user/Apidata.ts b/src/api_o2s/user/Apidata.ts new file mode 100644 index 0000000..026321e --- /dev/null +++ b/src/api_o2s/user/Apidata.ts @@ -0,0 +1,36 @@ +import { ApiCall } from "tsrpc"; +import { Reqdata, Resdata } from "../../monopoly/protocols/user/Ptldata"; +import { PayFun } from "../../public/pay"; +import { PlayerFun } from "../../public/player"; + +export default async function (call: ApiCall) { + let uid = call.req.data.playerId + let upData = call.req.data.playerData + + // 无此玩家 + let getgud = await G.mongodb.collection('user').findOne({ uid: uid }); + if (!getgud) { + return call.error('', { code: 1002, message: globalThis.lng.wuciwanjia }); + } + + // 无法修改的数据 + let falseData = ["name", "uid", "bindUid"] + // 需要修改的数据key + let _tmp = Object.keys(upData) + let _setData = {} + for (let index = 0; index < _tmp.length; index++) { + const element = _tmp[index]; + if (upData[element] == getgud[element] || falseData.indexOf(element) != -1) { + continue + } + _setData[element] = upData[element] + } + + if (Object.keys(_setData).length > 0) { + let renamecall = PayFun.getCall(getgud); + await PlayerFun.addAttr(renamecall, _setData); + G.server.sendMsgByUid(uid, 'msg_s2c/PlayerChange', _setData) + } + + call.succ({ message: "玩家导入数据成功", code: 0 }); +} \ No newline at end of file diff --git a/src/api_o2s/user/Apigetdata.ts b/src/api_o2s/user/Apigetdata.ts new file mode 100644 index 0000000..1fd42dd --- /dev/null +++ b/src/api_o2s/user/Apigetdata.ts @@ -0,0 +1,15 @@ +import { ApiCall } from "tsrpc"; +import { Reqgetdata, Resgetdata } from "../../monopoly/protocols/user/Ptlgetdata"; + +export default async function (call: ApiCall) { + let uid = call.req.user_id; + + // 无此玩家 + let getgud = await G.mongodb.collection('user').findOne({ uid: uid }); + if (!getgud) { + return call.error('', { code: 1002, message: globalThis.lng.wuciwanjia }); + } + let { _id, ...gud } = getgud; + + call.succ({ message: "导出玩家数据成功", code: 0, data: gud }); +} \ No newline at end of file diff --git a/src/api_o2s/user/Apirename.ts b/src/api_o2s/user/Apirename.ts new file mode 100644 index 0000000..c36efb8 --- /dev/null +++ b/src/api_o2s/user/Apirename.ts @@ -0,0 +1,32 @@ +import { ApiCall } from "tsrpc"; +import { Reqrename, Resrename } from "../../monopoly/protocols/user/Ptlrename"; +import { PlayerFun } from "../../public/player"; +import { PayFun } from "../../public/pay"; + +export default async function (call: ApiCall) { + let uid = call.req.data.playerId + let _name = call.req.data.nickname + + // 名称已被使用 + let _user = await G.mongodb.collection('user').findOne({ "name": _name }); + if (_user) { + return call.error('', { code: 1001, message: globalThis.lng.nameyicunzai }); + } + + // g123 后台修改不限次数,不扣资源 + // let num = call.conn.gud.changeNameNum || 0; + // let need = G.gc.common.usercom.changename[num] || G.gc.common.usercom.changename.slice(-1)[0]; + + // 无此玩家 + let gud = await G.mongodb.collection('user').findOne({ uid: uid }); + if (!gud) { + return call.error('', { code: 1002, message: globalThis.lng.wuciwanjia }); + } + let rescall = PayFun.getCall(gud); + await PlayerFun.addAttr(rescall, { name: _name }); + G.server.sendMsgByUid(uid, 'msg_s2c/PlayerChange', { name: _name }) + + call.succ({ message: "玩家昵称更新成功", code: 0 }); + + G.emit('PLAYER_CHANGE_NAME', gud, _name); +} \ No newline at end of file diff --git a/src/api_s2c/ApiBingo.ts b/src/api_s2c/ApiBingo.ts new file mode 100644 index 0000000..5ef1516 --- /dev/null +++ b/src/api_s2c/ApiBingo.ts @@ -0,0 +1,127 @@ +import { ApiCall } from "tsrpc"; +import { HeroFun } from '../public/hero'; +import { PlayerFun } from '../public/player'; +import { defaultUserAppend, UserFun } from '../public/user'; +import { ReqBingo, ResBingo } from "../shared/protocols/PtlBingo"; + +export default async function (call: ApiCall) { + // TODO + if (G.config.debug == false) return call.succ('fail'); + + let shell = call.req.split(' '); + + if (shell[0] == 'all') { + + if (shell[1] == 'item') { + if (isNaN(parseInt(shell[2]))) return call.error(`请输入正确的数量`); + + await PlayerFun.addItem(call, Object.keys(G.gc.item).map((v, index) => { + return { + a: 'item', + t: v, + n: parseInt(shell[2]), + }; + })); + } else if (shell[1] == 'hero') { + if (isNaN(parseInt(shell[2]))) return call.error(`请输入正确的数量`); + + await PlayerFun.addHero(call, Object.keys(G.gc.hero).map(v => { + return { + a: 'item', + t: v, + n: parseInt(shell[2]), + }; + })); + } else if (shell[1] == 'equip') { + if (isNaN(parseInt(shell[2]))) return call.error(`请输入正确的数量`); + + await PlayerFun.addEquip(call, Object.keys(G.gc.equip).map(v => { + return { + a: 'equip', + t: v, + n: parseInt(shell[2]), + }; + })); + } else if (shell[1] == 'shiwu') { + if (isNaN(parseInt(shell[2]))) return call.error(`请输入正确的数量`); + if (isNaN(parseInt(shell[3]))) return call.error(`请输入正确的品质`); + + await PlayerFun.addShiwu(call, Object.keys(G.gc.shiwu).map(v => { + return { + a: 'shiwu', + t: v, + n: parseInt(shell[2]), + colour: parseInt(shell[3]) + }; + })); + } else if (shell[1] == 'peijian') { + if (isNaN(parseInt(shell[2]))) return call.error(`请输入正确的数量`); + + await PlayerFun.addPeijian(call, Object.keys(G.gc.peijian).map(v => { + return { + a: 'peijian', + t: v, + n: parseInt(shell[2]), + }; + })); + } + + } else if (shell[0] == 'item') { + + if (!G.gc.item[shell[1]]) return call.error(`道具id不存在:${shell[1]}`); + if (isNaN(parseInt(shell[2]))) return call.error(`请输入正确的数量`); + await PlayerFun.addItem(call, [{ a: 'item', t: shell[1], n: parseInt(shell[2]) }]); + + } else if (shell[0] == 'hero') { + + if (!G.gc.hero[shell[1]]) return call.error(`英雄id不存在:${shell[1]}`); + if (isNaN(parseInt(shell[2]))) return call.error(`请输入正确的数量`); + await PlayerFun.addHero(call, [{ a: 'item', t: shell[1], n: parseInt(shell[2]) }]); + + } else if (shell[0] == 'equip') { + + if (!G.gc.equip[shell[1]]) return call.error(`装备id不存在:${shell[1]}`); + if (isNaN(parseInt(shell[2]))) return call.error(`请输入正确的数量`); + await PlayerFun.addEquip(call, [{ a: 'equip', t: shell[1], n: parseInt(shell[2]) }]); + + } else if (shell[0] == 'shiwu') { + + if (!G.gc.shiwu[shell[1]]) return call.error(`饰物id不存在:${shell[1]}`); + if (isNaN(parseInt(shell[2]))) return call.error(`请输入正确的数量`); + if (isNaN(parseInt(shell[3]))) return call.error(`请输入正确的品质`); + await PlayerFun.addShiwu(call, [{ a: 'shiwu', t: shell[1], n: parseInt(shell[2]), colour: parseInt(shell[3]) }]); + + } else if (shell[0] == 'peijian') { + + if (!G.gc.peijian[shell[1]]) return call.error(`配件id不存在:${shell[1]}`); + if (isNaN(parseInt(shell[2]))) return call.error(`请输入正确的数量`); + await PlayerFun.addPeijian(call, [{ a: 'peijian', t: shell[1], n: parseInt(shell[2]) }]); + + } else if (shell[0] == 'attr') { + if (G.gc.attr[shell[1]] == undefined) return call.error(`道具id不存在:${shell[1]}`); + if (isNaN(parseInt(shell[2]))) return call.error(`请输入正确的数量`); + await PlayerFun.addAttr(call, [{ a: 'attr', t: shell[1], n: parseInt(shell[2]) }]); + + } else if (shell.length == 2) { + + let gud = Object.assign(UserFun.create(''), defaultUserAppend); + if (gud[shell[0]] != undefined) { + let obj = {}; + if (typeof gud[shell[0]] == 'string') { + obj[shell[0]] = shell[1]; + } else if (typeof gud[shell[0]] == 'number' && !isNaN(parseInt(shell[1]))) { + obj[shell[0]] = parseInt(shell[1]); + } else { + return; + } + await PlayerFun.addAttr(call, obj); + } + + } else if (shell[0] == 'heroMaxLv') { + let heros = await G.redis.get('hero', call.uid); + for (let [_id, hero] of Object.entries(heros)) { + await HeroFun.changeHeroAttr(call, hero, { lv: Object.keys(G.gc.playerLv).length * 3, jieji: Object.keys(G.gc.herogrow[hero.heroId]).length - 1 }); + } + } + call.succ('succ'); +} \ No newline at end of file diff --git a/src/api_s2c/ApiFightTest.ts b/src/api_s2c/ApiFightTest.ts new file mode 100644 index 0000000..f56b62a --- /dev/null +++ b/src/api_s2c/ApiFightTest.ts @@ -0,0 +1,41 @@ +import { ApiCall } from "tsrpc"; +import { FightFun } from '../public/fight'; +import { joinFightData } from '../shared/fightControl/fightType'; +import { ReqFightTest, ResFightTest } from "../shared/protocols/PtlFightTest"; +import { HeroShared } from '../shared/public/hero'; +import { PublicShared } from '../shared/public/public'; + +export default async function (call: ApiCall) { + + let joins: joinFightData[] = []; + + let pd = await FightFun.getPlayerFightData(call.uid); + + call.req.roles.forEach((d, i) => { + let player = call.req.player?.[i] || { ...pd, fightHeros: d.map(d => d.hero.heroId.toString()) }; + + let a: any[] = d.map((hd, index) => { + + let buff = HeroShared.getHeroBasicAttr({ ...hd.hero, lv: hd.hero.lv || 1, jieji: hd.hero.jieji || 0 }, player, index + 1); + let hero = { + attr: buff, + ...hd.hero + }; + + PublicShared.mergeProperty(hero.attr, hd.attr); + hero.attr.maxHp = hero.attr.hp; + return hero; + }); + + joins.push({ + player: JSON.parse(JSON.stringify(player)), + roles: Object.fromEntries(a.map((h, p) => [p + 1, h])) + }); + }); + + let res = FightFun.fight(joins); + + call.succ({ + result: res + }); +} \ No newline at end of file diff --git a/src/api_s2c/ApiSyncBtn.ts b/src/api_s2c/ApiSyncBtn.ts new file mode 100644 index 0000000..d732794 --- /dev/null +++ b/src/api_s2c/ApiSyncBtn.ts @@ -0,0 +1,139 @@ +import {ApiCall} from "tsrpc"; +import {EventFun} from '../public/event/event'; +import {PayFun} from '../public/pay'; +import {ReqSyncBtn, ResSyncBtn, syncBtnKeys} from "../shared/protocols/PtlSyncBtn"; +import {PublicShared} from '../shared/public/public'; + +const defaultKeys: syncBtnKeys[] = [ + 'huobanzhaomu', 'yibaichou', 'shouchong', + 'dayjijin', 'dengjijijin', 'guanqiajijin', 'tianshujijin', + 'zhanling', + 'xianshilibao', + 'xianshizhaomu', + 'G123Gift' + + // 'kaifukuanghuan', + // 'qiridenglu', + // 'leijichongzhi', 'xinshoulibao', 'jierihuodong', 'yuedujijin', 'zixuanlibao', 'diaoluoduihuan', 'chuanshuozhilu', + // 'yangchengmubiao' +]; + +export default async function (call: ApiCall) { + let change: ResSyncBtn = {}; + let keys = call.req.length < 1 ? defaultKeys : call.req; + let data = await G.mongodb.collection('syncBtns').findOne({uid: call.uid}); + + if (!data) data = {} as any; + + for (let key of keys) { + switch (key) { + case 'huobanzhaomu': + case 'yibaichou': + case 'shouchong': + //领完消失 + if (!data[key]) { + data[key] = {active: true}; + change[key] = data[key]; + } + break; + case 'dayjijin': + case 'dengjijijin': + case 'guanqiajijin': + case 'tianshujijin': + //领完消失 + if (!PublicShared.getEventIsOpen(G.gc.eventOpen[key], call.conn.gud)) { + data[key] = {active: false}; + } else { + if (!data[key]) { + data[key] = {active: true}; + change[key] = data[key]; + } + } + break; + case 'zhanling': + //30天一轮循环,不管奖励。常驻活动 + if (!PublicShared.getEventIsOpen(G.gc.zhanling.eventOpen, call.conn.gud)) { + data[key] = {active: false}; + } else { + let zls = await G.mongodb.collection('scheduler').findOne({type: 'zhanling'}); + if (!data[key] || data[key].round != zls.round) { + let lastRunTime = zls && zls.lastRunTime? zls.lastRunTime : G.time + let round = zls && zls.lastRunTime? zls.round : 1 + data[key] = {active: true, sTime: lastRunTime, round: round}; + change[key] = data[key]; + + PayFun.setPayLog(call.uid, {payId: G.gc.zhanling.payId, val: []}); + + G.mongodb.cEvent('zhanling').findOne({uid: call.uid, type: 'zhanling'}).then(data => { + //新一轮战令 不管玩家多久没上线 只补发玩家上一轮没有领取的奖励 + data && EventFun.reissueZhanLingPrize(data, call.conn.gud); + + G.mongodb.cEvent('zhanling').updateOne( + {uid: call.uid, type: 'zhanling'}, + { + $set: { + lv: 1, + exp: 0, + rec: {}, + isPay: false, + taskRec: [], + refreshTime: G.time + } + }, + {upsert: true} + ); + }); + } + } + break; + case 'xianshilibao': + // 到时间消失 + if (!data.xianshilibao) { + data.xianshilibao = change.xianshilibao = {pays: []}; + } else { + change.xianshilibao = data.xianshilibao; + data.xianshilibao.pays = data.xianshilibao.pays.filter(p => { + return p.eTime > G.time; + }); + } + break; + case 'xianshizhaomu': + // 不确定 + if (G.time < PublicShared.getToDayZeroTime(G.openTime) + G.gc.xianshizhaomu.time.slice(-1)[0]) { + data[key] = {active: false}; + } else { + data[key] = {active: false}; + } + break; + case 'G123Gift': + data[key] = {active: false, giftInfo:[]}; + let giftList = await G.mongodb.collection('giftLog').find({ + game_user_id: call.uid, + $or: [{endTime: {$gte: G.time}}, {endTime: {$exists: false}}] + }).toArray(); + if (giftList.length>0) { + data[key] = {active: true, giftInfo: giftList.filter(i=>(i.buyNumber||0) 0) { + G.mongodb.collection('syncBtns').updateOne({uid: call.uid}, {$set: change}, {upsert: true}); + } + + call.succ(Object.fromEntries(keys.map(key => [key, data[key]]))); +} \ No newline at end of file diff --git a/src/api_s2c/ApiTest.ts b/src/api_s2c/ApiTest.ts new file mode 100644 index 0000000..ba39182 --- /dev/null +++ b/src/api_s2c/ApiTest.ts @@ -0,0 +1,12 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../public/player'; +import { ReqTest, ResTest } from "../shared/protocols/PtlTest"; + +export default async function (call: ApiCall) { + // TODO + // if (G.config.debug == false) return call.succ({}); + await PlayerFun.sendPrize(call, G.gc.playerdata.data); + call.succ({}); + // PayFun.pay(call.uid, 'zuanshi_1', G.gc.pay['zuanshi_1'].prize); + // call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/chat/ApiDelPrivate.ts b/src/api_s2c/chat/ApiDelPrivate.ts new file mode 100644 index 0000000..c532b5f --- /dev/null +++ b/src/api_s2c/chat/ApiDelPrivate.ts @@ -0,0 +1,15 @@ +import { ApiCall } from "tsrpc"; +import { ReqDelPrivate, ResDelPrivate } from "../../shared/protocols/chat/PtlDelPrivate"; + +export default async function (call: ApiCall) { + + G.redis.get('chatPrivate', call.uid).then(v => { + if (v?.includes(call.req.privateId)) { + G.redis.arrPop('chatPrivate', call.uid, v.findIndex(id => id == call.req.privateId)); + } + }); + + G.mongodb.collection('chat').deleteOne({ type: call.req.privateId }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/chat/ApiGetList.ts b/src/api_s2c/chat/ApiGetList.ts new file mode 100644 index 0000000..78b6c36 --- /dev/null +++ b/src/api_s2c/chat/ApiGetList.ts @@ -0,0 +1,23 @@ +import { ApiCall } from "tsrpc"; +import { ChatFun } from '../../public/chat'; +import { ReqGetList, ResGetList } from "../../shared/protocols/chat/PtlGetList"; +import { PublicShared } from "../../shared/public/public"; + +export default async function (call: ApiCall) { + + let publicList = await G.mongodb.collection('chat').find({ type: { $in: ['cross', 'local', `guild${call.conn.gud.ghId || ''}`] } }).toArray(); + let _guildList = publicList.find(l => l.type.indexOf('guild') != -1)?.list || [] + let list = { + cross: publicList.find(l => l.type == 'cross')?.list || [], + local: publicList.find(l => l.type == 'local')?.list || [], + guild: _guildList.filter(l => { return PublicShared.getToDayZeroTime(G.time) < l.time }), + private: await ChatFun.getPrivateList(call.uid) + }; + + // 删除过期帮助 + if (_guildList.length != list.guild.length) { + G.mongodb.collection('chat').updateOne({ type: 'guild' + call.conn.gud.ghId }, { $set: { list: list.guild } }); + } + + call.succ(list); +} \ No newline at end of file diff --git a/src/api_s2c/chat/ApiHelp.ts b/src/api_s2c/chat/ApiHelp.ts new file mode 100644 index 0000000..02f650b --- /dev/null +++ b/src/api_s2c/chat/ApiHelp.ts @@ -0,0 +1,84 @@ +import { ApiCall } from "tsrpc"; +import { PayFun } from '../../public/pay'; +import { PlayerFun } from '../../public/player'; +import { ReqHelp, ResHelp } from "../../shared/protocols/chat/PtlHelp"; +import { PublicShared } from '../../shared/public/public'; + +export default async function (call: ApiCall) { + call.req.helps = call.req.helps.filter(h => { + return G.time >= PublicShared.getToDayZeroTime(h.cTime) && call.uid != h.uid; + }); + // 'chat list is null' + if (call.req.helps.length < 1) return call.error('', { code: -1, message: globalThis.lng.chat_1 }); + + let chatList = await G.mongodb.collection('chat').findOne({ type: 'guild' + call.conn.gud.ghId }); + if (!chatList || chatList.list.length < 1) return call.error('', { code: -2, message: globalThis.lng.chat_1 }); + + let list = []; + let _isQz: 0 | 1 = 0 + chatList.list.remove(v => { + // 只需要移除过期的即可 (不是当天的就是过期) + if (PublicShared.getToDayZeroTime(v.time) == PublicShared.getToDayZeroTime(G.time)) { + // 帮助次数不够 + _isQz = (v.sender.uid == call.uid && v.otherData.myhelpless >= call.req.helps.length) && _isQz == 0 ? 1 : _isQz + list.push(v); + return true; + } else return false; + }); + + if (_isQz == 0) { + // '请先求助或帮助次数不够' + return call.error('', { code: -3, message: globalThis.lng.chat_2 }); + } + + // 新增条件,移除本玩家 + let listFilter = list.filter(li => li.otherData.helpUis.length < G.gc.shili_com.resHelp[li.otherData.helpIndex].num && !li.otherData.helpUis.includes(call.uid) + && (li.sender.uid != call.uid)); + if (listFilter.length < 1) return call.error('', { code: -4, message: 'chat list is null' }); + + let prize = []; + let change = []; + let need = []; + + for (let index = 0; index < call.req.helps.length; index++) { + const element = call.req.helps[index]; + + for (let index = 0; index < list.length; index++) { + const li = list[index]; + + // 扣除帮助次数 + if (li.sender.uid == call.uid) { + let _lessNum = li.otherData.myhelpless - 1 + li.otherData.myhelpless = _lessNum < 0 ? 0 : _lessNum + } + // 修改被帮玩家数据 及 发奖 + if (li.sender.uid == element.uid) { + change.push({ + uid: li.sender.uid, + cTime: li.time, + pushUid: call.uid, + }); + li.otherData.helpUis.push(call.uid); + if (G.gc.shili_com.resHelp[li.otherData.helpIndex] <= li.otherData.helpUis.length) { + PlayerFun.sendPrize(PayFun.getCall(await G.redis.get('user', li.sender.uid)), [G.gc.shili_com.resHelp[li.otherData.helpIndex].need]); + } + prize.push(...PublicShared.randomDropGroup(G.gc.shili_com.resHelp[li.otherData.helpIndex].helpPrizeDrop)); + } + } + } + + // 新改帮助无消耗 + // need = PublicShared.mergePrize(need); + // await PlayerFun.checkNeedIsMeet(call, need); + // await PlayerFun.cutNeed(call, need); + + prize = PublicShared.mergePrize(prize); + await PlayerFun.sendPrize(call, prize); + + G.server.broadcastClusterMsg('msg_s2c/ChatHelp', { change: change }, {ghId:call.conn.gud.ghId}); + G.mongodb.collection('chat').updateOne({ type: 'guild' + call.conn.gud.ghId }, { $set: { list: list } }); + + call.succ({ + prize: prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/chat/ApiPrivate.ts b/src/api_s2c/chat/ApiPrivate.ts new file mode 100644 index 0000000..4151bca --- /dev/null +++ b/src/api_s2c/chat/ApiPrivate.ts @@ -0,0 +1,39 @@ +import { ApiCall } from "tsrpc"; +import { ChatFun } from '../../public/chat'; +import { FriendManage } from '../../public/friend/manage'; +import { ReqPrivate, ResPrivate } from "../../shared/protocols/chat/PtlPrivate"; +import { MsgPrivate } from '../../shared/protocols/msg_s2c/MsgPrivate'; + +export default async function (call: ApiCall) { + let my = await FriendManage.getFriend(call.uid); + + if (!my.data.friendList.includes(call.req.uid)) return call.errorCode(-1); + + let privateId = [call.uid, call.req.uid].sort().join('&'); + + ChatFun.writePrivateId(call.uid, privateId); + ChatFun.writePrivateId(call.req.uid, privateId); + + let recipient = await G.mongodb.collection('user').findOne({ uid: call.req.uid }); + let msg: MsgPrivate = { + msg: call.req.msg, + time: G.time, + sender: call.conn.gud, + privateId: privateId, + otherData: { + uids: [call.req.uid, call.uid] + }, + recipient: recipient + }; + + G.mongodb.collection('chat').updateOne( + { type: privateId }, + { $push: { list: msg } }, + { upsert: true } + ); + + G.server.sendMsgByUid(call.uid, 'msg_s2c/Private', msg); + G.server.sendMsgByUid(call.req.uid, 'msg_s2c/Private', msg); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/chat/ApiSend.ts b/src/api_s2c/chat/ApiSend.ts new file mode 100644 index 0000000..4ea6ec7 --- /dev/null +++ b/src/api_s2c/chat/ApiSend.ts @@ -0,0 +1,39 @@ +import { ApiCall, WsClientStatus } from "tsrpc"; +import { ActionLog } from '../../public/actionLog/actionLog'; +import { ChatFun } from '../../public/chat'; +import { ReqSend, ResSend } from "../../shared/protocols/chat/PtlSend"; + + + +export default async function (call: ApiCall) { + + let data = call.req; + if (data.msg.length < 1 || data.msg.length > 30) return call.error('', { code: -1 }); + + if (data.otherData?.helpIndex != undefined) { + let num = await ActionLog.getDayLog(call.uid, 'resHelp'); + if (num > 0) return call.errorCode(-2); + ActionLog.addDayLog(call.uid, { key: 'resHelp', val: 1 }); + data.otherData.helpUis = []; + // 我助力别人次数 初始10 + data.otherData.myhelpless = 10; + } + + let gud = call.conn.gud; + let sendData = { + ...data, + time: G.time, + sender: gud + }; + + if (sendData.type == 'guild' && !gud.ghId) return call.error('', { code: -3, message: globalThis.lng.chat_3 }); + + if (sendData.type == 'cross' && G.clientCross?.status == WsClientStatus.Opened) { + G.clientCross.sendMsg('msg_cross/CrossChat', sendData); + call.succ({}); + return; + } + + ChatFun.newMsg(sendData); + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/chongzhi/ApiBuyGift.ts b/src/api_s2c/chongzhi/ApiBuyGift.ts new file mode 100644 index 0000000..a9b88bf --- /dev/null +++ b/src/api_s2c/chongzhi/ApiBuyGift.ts @@ -0,0 +1,28 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqBuyGift, ResBuyGift } from "../../shared/protocols/chongzhi/PtlBuyGift"; + +export default async function (call: ApiCall) { + + if (call.req.vip > call.conn.gud.vip) return call.error(globalThis.lng.chongzhi_1); + if (!G.gc.chongzhi.tequan[call.req.vip] || !G.gc.chongzhi.tequan[call.req.vip].gift) return call.error(globalThis.lng.chongzhi_2); + + let data = await G.mongodb.cPlayerInfo('chongzhi').findOne({ uid: call.uid, type: 'chongzhi' }); + let buyNum = data?.giftBy?.[call.req.vip]; + let need = G.gc.chongzhi.tequan[call.req.vip].gift.need.map(v => { return { ...v, n: v.n * G.gc.chongzhi.tequan[call.req.vip].gift.sale / 10 }; }); + if (buyNum >= G.gc.chongzhi.tequan[call.req.vip].gift.buyNum) return call.error(globalThis.lng.chongzhi_3); + + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + await PlayerFun.sendPrize(call, G.gc.chongzhi.tequan[call.req.vip].gift.prize); + + G.mongodb.cPlayerInfo('chongzhi').updateOne( + { uid: call.uid, type: 'chongzhi' }, + { $inc: G.mongodb.createTreeObj({ key: 'giftBy', k: call.req.vip.toString(), val: 1 }) }, + { upsert: true } + ); + + call.succ({ + prize: G.gc.chongzhi.tequan[call.req.vip].gift.prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/chongzhi/ApiOpen.ts b/src/api_s2c/chongzhi/ApiOpen.ts new file mode 100644 index 0000000..54bb51a --- /dev/null +++ b/src/api_s2c/chongzhi/ApiOpen.ts @@ -0,0 +1,14 @@ +import { ApiCall } from "tsrpc"; +import { PayFun } from '../../public/pay'; +import { ReqOpen, ResOpen } from "../../shared/protocols/chongzhi/PtlOpen"; + +export default async function (call: ApiCall) { + + let data = await G.mongodb.cPlayerInfo('chongzhi').findOne({ uid: call.uid, type: 'chongzhi' }); + let logs = await PayFun.getPayLog(call.uid); + + call.succ({ + payNum: Object.fromEntries(G.gc.chongzhi.payCom.map(pay => pay.payId).map(payId => [payId, logs?.[payId]?.length || 0])), + giftBuy: data?.giftBy || {}, + }); +} \ No newline at end of file diff --git a/src/api_s2c/conglinshoulie/ApiBuyNum.ts b/src/api_s2c/conglinshoulie/ApiBuyNum.ts new file mode 100644 index 0000000..74a18ed --- /dev/null +++ b/src/api_s2c/conglinshoulie/ApiBuyNum.ts @@ -0,0 +1,24 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqBuyNum, ResBuyNum } from "../../shared/protocols/conglinshoulie/PtlBuyNum"; +import { HongDianChange } from "../hongdian/fun"; +import { clslDb } from './ApiOpen'; + +export default async function (call: ApiCall) { + + let db = await clslDb().findOne({ uid: call.uid, type: 'clsl' }); + let buyNum = db?.buyFightNum || 0; + let hasNum = G.gc.clsl_com.vipBuyFightNum[call.conn.gud.vip]; + + if (buyNum >= hasNum) return call.errorCode(-1); + + let _need = [G.gc.clsl_com.buyFightNumNeed[buyNum]] + await PlayerFun.checkNeedIsMeet(call, _need); + await PlayerFun.cutNeed(call, _need); + + clslDb().updateOne({ uid: call.uid, type: 'clsl' }, { $inc: { buyFightNum: 1 } }); + + HongDianChange.sendChangeKey(call.uid, ['clslhd']) + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/conglinshoulie/ApiFind.ts b/src/api_s2c/conglinshoulie/ApiFind.ts new file mode 100644 index 0000000..948bfea --- /dev/null +++ b/src/api_s2c/conglinshoulie/ApiFind.ts @@ -0,0 +1,40 @@ +import { ApiCall } from "tsrpc"; +import { FightFun } from '../../public/fight'; +import { PlayerFun } from '../../public/player'; +import { ReqFind, ResFind } from "../../shared/protocols/conglinshoulie/PtlFind"; +import { PublicShared } from '../../shared/public/public'; +import { addStar, clslDb } from './ApiOpen'; + +export default async function (call: ApiCall) { + let weekZeroTime = PublicShared.getToWeekMondayZeroTime(); + if (G.time < weekZeroTime + G.gc.clsl_com.fightTime[0] || G.time > weekZeroTime + G.gc.clsl_com.fightTime[1]) return call.errorCode(-1); + + let db = await clslDb().findOne({ uid: call.uid, type: 'clsl' }); + let curStar = db?.allStar || 0; + let useNum = db?.useFightNum || 0; + let buyNum = db?.buyFightNum || 0; + let starConf = G.gc.clsl_dan[curStar] || Object.values(G.gc.clsl_dan).slice(-1)[0]; + + if (useNum >= buyNum + G.gc.clsl_com.fightNum) return call.errorCode(-2); + + let my = await call.conn.getDefaultFightData(); + let other = (await G.clientCross.callApi('clsl/FindEnemy', { uid: call.uid })).res; + let result = FightFun.fight([my, other.info]); + + if ((result.winSide != 0 && starConf.failCut) || result.winSide == 0) { + addStar(call, result.winSide == 0 ? 1 : -starConf.failCut, my); + } + + result.winSide == 0 && clslDb().updateOne({ uid: call.uid, type: 'clsl' }, { $inc: { fightWinNum: 1 } }); + clslDb().updateOne({ uid: call.uid, type: 'clsl' }, { $inc: { useFightNum: 1 } }); + + await PlayerFun.sendPrize(call, starConf.fightPrize); + + G.clientCross?.callApi('clsl/Log', { uid: call.uid, result: result }); + G.clientCross?.callApi('clsl/Log', { uid: other.info.player.uid, result: result }); + + call.succ({ + enemy: other, + result: result + }); +} \ No newline at end of file diff --git a/src/api_s2c/conglinshoulie/ApiGetLog.ts b/src/api_s2c/conglinshoulie/ApiGetLog.ts new file mode 100644 index 0000000..cdc43b8 --- /dev/null +++ b/src/api_s2c/conglinshoulie/ApiGetLog.ts @@ -0,0 +1,6 @@ +import { ApiCall } from "tsrpc"; +import { ReqGetLog, ResGetLog } from "../../shared/protocols/conglinshoulie/PtlGetLog"; + +export default async function (call: ApiCall) { + call.succ((await G.clientCross.callApi('clsl/Log', { uid: call.uid })).res?.logs || []); +} \ No newline at end of file diff --git a/src/api_s2c/conglinshoulie/ApiOpen.ts b/src/api_s2c/conglinshoulie/ApiOpen.ts new file mode 100644 index 0000000..e50e2b8 --- /dev/null +++ b/src/api_s2c/conglinshoulie/ApiOpen.ts @@ -0,0 +1,47 @@ +import { OptionalId, WithId } from 'mongodb'; +import { ApiCall } from "tsrpc"; +import { CollectionPlayerInfo } from '../../module/collection_palyerInfo'; +import { joinFightData } from '../../shared/fightControl/fightType'; +import { ReqOpen, ResOpen } from "../../shared/protocols/conglinshoulie/PtlOpen"; +import { PublicShared } from '../../shared/public/public'; + +export default async function (call: ApiCall) { + let db = await clslDb().findOne({ uid: call.uid, type: 'clsl' }); + let { _id, uid, type, ...ops } = db || {} as WithId>>; + + if (!db || ops?.refreshTime < PublicShared.getToDayZeroTime()) { + + let change: Partial = { + refreshTime: G.time, + useFightNum: 0, + recWinPrize: [], + fightWinNum: 0, + buyFightNum: 0 + }; + + Object.assign(ops, change); + + clslDb().updateOne({ uid: call.uid, type: 'clsl' }, { $set: change }, { upsert: true }); + + call.conn.getDefaultFightData().then(v => { + G.clientCross.callApi('clsl/UpLoad', { uid: call.uid, info: v }); + }); + } + + call.succ({ + allStar: ops?.allStar || 0, + buyFightNum: ops?.buyFightNum || 0, + useFightNum: ops?.useFightNum || 0, + fightWinNum: ops?.fightWinNum || 0, + recWinPrize: ops?.recWinPrize || [] + }); +} + +export function clslDb() { + return G.mongodb.cPlayerInfo('clsl'); +} + +export async function addStar(call: ApiCall, star: number, info?: joinFightData) { + clslDb().updateOne({ uid: call.uid, type: 'clsl' }, { $inc: { allStar: star } }, { upsert: true }); + G.clientCross.callApi('clsl/UpLoad', { uid: call.uid, allStar: star, info: info || await call.conn.getDefaultFightData() }); +} \ No newline at end of file diff --git a/src/api_s2c/conglinshoulie/ApiRec.ts b/src/api_s2c/conglinshoulie/ApiRec.ts new file mode 100644 index 0000000..2d336bd --- /dev/null +++ b/src/api_s2c/conglinshoulie/ApiRec.ts @@ -0,0 +1,23 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqRec, ResRec } from "../../shared/protocols/conglinshoulie/PtlRec"; +import { HongDianChange } from "../hongdian/fun"; +import { addStar, clslDb } from './ApiOpen'; + +export default async function (call: ApiCall) { + let conf = G.gc.clsl_com.fightWinPrize[call.req.index]; + if (!conf) return call.errorCode(-1); + + let db = await clslDb().findOne({ uid: call.uid, type: 'clsl' }); + if ((db?.fightWinNum || 0) < conf.total || db?.recWinPrize?.includes(call.req.index)) return call.errorCode(-2); + + await PlayerFun.sendPrize(call, conf.prize); + + addStar(call, conf.star); + + clslDb().updateOne({ uid: call.uid, type: 'clsl' }, { $push: { recWinPrize: call.req.index } }); + + HongDianChange.sendChangeKey(call.uid, ['clslhd']) + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/dixiaheishi/ApiOpen.ts b/src/api_s2c/dixiaheishi/ApiOpen.ts new file mode 100644 index 0000000..af58a69 --- /dev/null +++ b/src/api_s2c/dixiaheishi/ApiOpen.ts @@ -0,0 +1,6 @@ +import { ApiCall } from "tsrpc"; +import { ReqOpen, ResOpen } from "../../shared/protocols/dixiaheishi/PtlOpen"; + +export default async function (call: ApiCall) { + call.error(globalThis.lng.dixiaheishi_3); +} \ No newline at end of file diff --git a/src/api_s2c/dixialeitai/ApiBuy.ts b/src/api_s2c/dixialeitai/ApiBuy.ts new file mode 100644 index 0000000..986df45 --- /dev/null +++ b/src/api_s2c/dixialeitai/ApiBuy.ts @@ -0,0 +1,31 @@ +import { ApiCall } from "tsrpc"; +import { DxltFun } from '../../public/dxlt'; +import { PlayerFun } from '../../public/player'; +import { ReqBuy, ResBuy } from "../../shared/protocols/dixialeitai/PtlBuy"; +import { ResOpen } from '../../shared/protocols/dixialeitai/PtlOpen'; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + + let change: Partial = {}; + let data = await DxltFun.getData(call); + let shopItem = data.shop[call.req.id]; + + if (!shopItem) return call.error(globalThis.lng.dixialeitai_1); + if (shopItem.useBuyNum >= shopItem.buyNum) return call.error(globalThis.lng.dixialeitai_1); + + shopItem.useBuyNum++; + change.shop = data.shop; + + await PlayerFun.checkNeedIsMeet(call, shopItem.need); + await PlayerFun.sendPrize(call, shopItem.prize); + await PlayerFun.cutNeed(call, shopItem.need); + await DxltFun.changeData(call, change); + + HongDianChange.sendChangeKey(call.uid, ['dxlthd']); + + call.succ({ + change: change, + prize: shopItem.prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/dixialeitai/ApiFight.ts b/src/api_s2c/dixialeitai/ApiFight.ts new file mode 100644 index 0000000..975dfa5 --- /dev/null +++ b/src/api_s2c/dixialeitai/ApiFight.ts @@ -0,0 +1,94 @@ +import { ApiCall } from "tsrpc"; +import { DxltFun } from '../../public/dxlt'; +import { FightFun } from '../../public/fight'; +import { PlayerFun } from '../../public/player'; +import { formatNpcData } from '../../shared/fightControl/fightFun'; +import { roleDataType } from '../../shared/fightControl/fightType'; +import { ReqFight, ResFight } from "../../shared/protocols/dixialeitai/PtlFight"; +import { ResOpen } from '../../shared/protocols/dixialeitai/PtlOpen'; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let change: Partial = {}; + let data = await DxltFun.getData(call); + + if (data.killBoss >= G.gc.dxlt_com.dayFightLayer) return call.error(globalThis.lng.dixialeitai_2); + if (G.gc.dxlt_layer[data.curLayer].type != 1) return call.error(globalThis.lng.dixialeitai_3); + if (data.over) return call.error(globalThis.lng.dixialeitai_4); + if (!data.heros[call.req]) return call.error(globalThis.lng.dixialeitai_5); + if (data.heros[call.req].attr.hp <= 0) return call.error(globalThis.lng.dixialeitai_6); + + let hero: roleDataType = JSON.parse(JSON.stringify(data.heros[call.req])); + Object.assign(hero.attr, DxltFun.getBuff(data)); + + let npc = formatNpcData(G.gc.dxlt_layer[data.curLayer].npcId); + Object.entries(data.enemyState).forEach(role => { + Object.assign(npc.roles[role[0]].attr, role[1]); + }); + + const result = FightFun.fight( + [ + { + player: call.conn.gud, + roles: Object.fromEntries([hero].map(hero => [1, hero])) + }, + npc + ], + 30, + 'pve' + ); + + let _role = result.fightData[0].roles[1]; + Object.assign(data.heros[call.req].attr, { hp: _role.attr.hp, maxHp: _role.attr.maxHp }); + + change.heros = data.heros; + change.enemyState = {}; + + let prize: atn[] = []; + if (result.winSide == 0) { + + DxltFun.saodan(data, 1); + change.over = true; + change.item = data.item; + change.buff = data.buff; + + if (data.saodang.mibaoNum) { + change.mibao = (data.mibao || 0) + data.saodang.mibaoNum; + } + + if (G.gc.dxlt_layer[data.curLayer].isBoss) { + change.killBoss = (data.killBoss || 0) + 1; + } + + prize.push(...G.gc.dxlt_layer[data.curLayer].price); + + if (data.saodang.prize) { + prize.push(...data.saodang.prize); + } + + if (data.saodang.shop) { + DxltFun.changeShop(data, change); + } + + DxltFun.passLayerChange(data, change); + } else { + Object.entries(result.fightData[1].roles).forEach(role => { + change.enemyState[role[0]] = { hp: role[1].attr.hp, maxHp: role[1].attr.maxHp }; + }); + } + + if (prize.length > 0) { + await PlayerFun.sendPrize(call, prize); + } + + await DxltFun.changeData(call, change); + + HongDianChange.sendChangeKey(call.uid, ['dxlthd']); + + call.succ({ + change: change, + result: result, + fightPrize: data.saodang || {}, + prize: prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/dixialeitai/ApiNext.ts b/src/api_s2c/dixialeitai/ApiNext.ts new file mode 100644 index 0000000..0c84433 --- /dev/null +++ b/src/api_s2c/dixialeitai/ApiNext.ts @@ -0,0 +1,30 @@ +import { ApiCall } from "tsrpc"; +import { DxltFun } from '../../public/dxlt'; +import { ReqNext, ResNext } from "../../shared/protocols/dixialeitai/PtlNext"; +import { ResOpen } from '../../shared/protocols/dixialeitai/PtlOpen'; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + + let change: Partial = {}; + let data = await DxltFun.getData(call); + + if (!G.gc.dxlt_layer[data.curLayer + 1]) return call.error(globalThis.lng.dixialeitai_7); + + change.curLayer = data.curLayer += 1; + if (G.gc.dxlt_layer[change.curLayer].type == 2) { + DxltFun.passLayerChange(data, change); + DxltFun.changeShop(data, change); + change.over = true; + } else { + change.over = false; + } + + await DxltFun.changeData(call, change); + + HongDianChange.sendChangeKey(call.uid, ['dxlthd']) + + call.succ({ + change: change + }); +} \ No newline at end of file diff --git a/src/api_s2c/dixialeitai/ApiOpen.ts b/src/api_s2c/dixialeitai/ApiOpen.ts new file mode 100644 index 0000000..fd0583f --- /dev/null +++ b/src/api_s2c/dixialeitai/ApiOpen.ts @@ -0,0 +1,47 @@ +import { ApiCall } from "tsrpc"; +import { DxltFun } from '../../public/dxlt'; +import { ReqOpen, ResOpen } from "../../shared/protocols/dixialeitai/PtlOpen"; +import { PublicShared } from '../../shared/public/public'; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + + let collection = await G.mongodb.collection('dxlt').findOne({ uid: call.uid }); + if (!collection) return call.error('', { code: 2 }); + + let { _id, uid, ...data } = collection; + + if (Object.keys(data).length == 2) {//说明第一次进入游戏 + data.buff = {}; + data.item = {}; + data.over = false; + data.curLayer = 1; + data.maxLayer = 0; + data.curMaxLayer = 0; + data.toDayLayer = 0; + data.recordLayer = 0; + data.mibao = 0; + data.enemyState = {}; + data.killPrizeRec = []; + data.passPrizeRec = []; + data.shop = {}; + data.killBoss = 0; + call.succ(data); + } else if (PublicShared.getToDayZeroTime() >= PublicShared.getToDayZeroTime(data.resetTime) + 2 * 24 * 3600) {//每两天重置 + data.item = {}; + data.buff = {}; + data.toDayLayer = 0; + data.enemyState = {}; + data.killPrizeRec = []; + data.shop = {}; + data.killBoss = 0; + DxltFun.backLayer(data); + call.error('', { code: 2 }); + HongDianChange.sendChangeKey(call.uid, ['dxlthd']); + } else { + call.succ(data); + } + + G.redis.set('dxlt', call.uid, data); + G.mongodb.collection('dxlt').updateOne({ uid: call.uid }, { $set: { ...data } }); +} \ No newline at end of file diff --git a/src/api_s2c/dixialeitai/ApiRecMiBao.ts b/src/api_s2c/dixialeitai/ApiRecMiBao.ts new file mode 100644 index 0000000..dc3e820 --- /dev/null +++ b/src/api_s2c/dixialeitai/ApiRecMiBao.ts @@ -0,0 +1,27 @@ +import { ApiCall } from "tsrpc"; +import { DxltFun } from '../../public/dxlt'; +import { PlayerFun } from '../../public/player'; +import { ResOpen } from '../../shared/protocols/dixialeitai/PtlOpen'; +import { ReqRecMiBao, ResRecMiBao } from "../../shared/protocols/dixialeitai/PtlRecMiBao"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + + let change: Partial = {}; + let data = await DxltFun.getData(call); + + if (!G.gc.dxlt_mb[call.req.id]) return call.error(globalThis.lng.dixialeitai_5); + if (data.mibao < G.gc.dxlt_com.getPrizeByMiBaoNum) return call.error(globalThis.lng.dixialeitai_8); + + change.mibao = (data.mibao - G.gc.dxlt_com.getPrizeByMiBaoNum); + + await PlayerFun.sendPrize(call, G.gc.dxlt_mb[call.req.id].mibao); + await DxltFun.changeData(call, change); + + HongDianChange.sendChangeKey(call.uid, ['dxlthd']); + + call.succ({ + change: change, + prize: G.gc.dxlt_mb[call.req.id].mibao + }); +} \ No newline at end of file diff --git a/src/api_s2c/dixialeitai/ApiRecPrize.ts b/src/api_s2c/dixialeitai/ApiRecPrize.ts new file mode 100644 index 0000000..289a4f0 --- /dev/null +++ b/src/api_s2c/dixialeitai/ApiRecPrize.ts @@ -0,0 +1,32 @@ +import { ApiCall } from "tsrpc"; +import { DxltFun } from '../../public/dxlt'; +import { PlayerFun } from '../../public/player'; +import { ResOpen } from '../../shared/protocols/dixialeitai/PtlOpen'; +import { ReqRecPrize, ResRecPrize } from "../../shared/protocols/dixialeitai/PtlRecPrize"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + + let change: Partial = {}; + let data = await DxltFun.getData(call); + let val = call.req.type == 'killPrizeRec' ? (data.killBoss || 0) : data.maxLayer; + let conf = call.req.type == 'killPrizeRec' ? G.gc.dxlt_com.killPrize : G.gc.dxlt_com.passPrize; + + if (!conf[call.req.index]) return call.error(globalThis.lng.dixialeitai_5); + if (data[call.req.type].includes(call.req.index)) return call.error(globalThis.lng.dixialeitai_9); + if (val < conf[call.req.index].need) return call.error(globalThis.lng.dixialeitai_10); + + data[call.req.type].push(call.req.index); + + change[call.req.type] = data[call.req.type]; + + await PlayerFun.sendPrize(call, conf[call.req.index].prize); + await DxltFun.changeData(call, change); + + HongDianChange.sendChangeKey(call.uid, ['dxlthd']); + + call.succ({ + change: change, + prize: conf[call.req.index].prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/dixialeitai/ApiSetDef.ts b/src/api_s2c/dixialeitai/ApiSetDef.ts new file mode 100644 index 0000000..2c5428e --- /dev/null +++ b/src/api_s2c/dixialeitai/ApiSetDef.ts @@ -0,0 +1,30 @@ +import { ApiCall } from "tsrpc"; +import { HeroFun } from '../../public/hero'; +import { ReqSetDef, ResSetDef } from "../../shared/protocols/dixialeitai/PtlSetDef"; + +export default async function (call: ApiCall) { + + let arr = call.req; + if (arr.isDuplication()) return call.error(globalThis.lng.dixialeitai_5); + if (arr.length < G.gc.dxlt_com.heroNum[0] || arr.length > G.gc.dxlt_com.heroNum[1]) return call.error(globalThis.lng.dixialeitai_5); + + let heros = await HeroFun.getHeros(call, arr); + if (heros.filter(hero => hero != null).length < arr.length) return call.error(globalThis.lng.dixialeitai_5); + + await G.mongodb.collection('dxlt').updateOne( + { + uid: call.uid + }, + { + $set: { + resetTime: G.time, + heros: (await call.conn.getDefaultFightData(Object.fromEntries(arr.map((_id, pos) => [pos + 1, _id])))).roles + } + }, + { + upsert: true + } + ); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/dixialeitai/ApiUseItem.ts b/src/api_s2c/dixialeitai/ApiUseItem.ts new file mode 100644 index 0000000..57930c6 --- /dev/null +++ b/src/api_s2c/dixialeitai/ApiUseItem.ts @@ -0,0 +1,70 @@ +import { ApiCall } from "tsrpc"; +import { DxltFun } from '../../public/dxlt'; +import { PlayerFun } from '../../public/player'; +import { ResOpen } from '../../shared/protocols/dixialeitai/PtlOpen'; +import { ReqUseItem, ResUseItem } from "../../shared/protocols/dixialeitai/PtlUseItem"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let args = call.req; + let change: Partial = {}; + let data = await DxltFun.getData(call); + let item = data.item; + let conf = G.gc.dxlt_com.fightPrize.item[args.id]; + let prize: atn[] = []; + + if (!item[args.id]) return call.error(globalThis.lng.dixialeitai_11); + if (args.id == '1' && !data.heros[args.pos]) return call.error(globalThis.lng.dixialeitai_5); + if (args.id == '2' && data.killBoss >= G.gc.dxlt_com.dayFightLayer) return call.error(globalThis.lng.dixialeitai_2); + if (args.id == '2' && G.gc.dxlt_layer[data.curLayer].type != 1) return call.error(globalThis.lng.dixialeitai_12); + if (args.id == '2' && data.over) return call.error(globalThis.lng.dixialeitai_12); + + item[args.id]--; + switch (args.id) { + case '1': + data.heros[args.pos].attr.hp += data.heros[args.pos].attr.maxHp * conf.val; + if (data.heros[args.pos].attr.hp > data.heros[args.pos].attr.maxHp) data.heros[args.pos].attr.hp = data.heros[args.pos].attr.maxHp; + change.heros = data.heros; + break; + case '2': + DxltFun.saodan(data, 1); + change.over = true; + change.buff = data.buff; + + if (data.saodang.mibaoNum) { + change.mibao += data.saodang.mibaoNum; + } + + if (G.gc.dxlt_layer[data.curLayer].isBoss) { + change.killBoss = (data.killBoss || 0) + 1; + } + + prize.push(...G.gc.dxlt_layer[data.curLayer].price); + + if (data.saodang.prize) { + prize.push(...data.saodang.prize); + } + + if (data.saodang.shop) { + DxltFun.changeShop(data, change); + } + + DxltFun.passLayerChange(data, change); + break; + case '3': + DxltFun.changeShop(data, change); + break; + } + change.item = data.item; + + prize.length > 0 && await PlayerFun.sendPrize(call, prize); + await DxltFun.changeData(call, change); + + HongDianChange.sendChangeKey(call.uid, ['dxlthd']); + + call.succ({ + change: change, + fightPrize: data.saodang || {}, + prize: prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/dixiaqianzhuang/ApiOpen.ts b/src/api_s2c/dixiaqianzhuang/ApiOpen.ts new file mode 100644 index 0000000..33efb9a --- /dev/null +++ b/src/api_s2c/dixiaqianzhuang/ApiOpen.ts @@ -0,0 +1,11 @@ +import { ApiCall } from "tsrpc"; +import { DiXiaQianZhuangFun } from "../../public/dixiaqianzhuang"; +import { ReqOpen, ResOpen } from "../../shared/protocols/dixiaqianzhuang/PtlOpen"; + +export default async function (call: ApiCall) { + let result = await DiXiaQianZhuangFun.getMyData(call) + + call.succ({ + num: result + }); +} \ No newline at end of file diff --git a/src/api_s2c/dixiaqianzhuang/ApiQf.ts b/src/api_s2c/dixiaqianzhuang/ApiQf.ts new file mode 100644 index 0000000..688aff0 --- /dev/null +++ b/src/api_s2c/dixiaqianzhuang/ApiQf.ts @@ -0,0 +1,109 @@ +import { OptionalId, UpdateFilter } from 'mongodb'; +import { ApiCall } from "tsrpc"; +import { CollectionPlayerInfo } from '../../module/collection_palyerInfo'; +import { PlayerFun } from '../../public/player'; +import { ReqQf, ResQf } from "../../shared/protocols/dixiaqianzhuang/PtlQf"; +import { ResOpen } from '../../shared/protocols/dixiaqianzhuang/PtlOpen'; +import { DiXiaQianZhuangFun } from '../../public/dixiaqianzhuang'; +import { HongDianChange } from '../hongdian/fun'; + +export default async function (call: ApiCall) { + let need: atn[]; + let prize: atn[]; + let _num = await DiXiaQianZhuangFun.getMyData(call) + let update: UpdateFilter>>; + let changeData: Partial; + let _rbj = {} // 返回的暴击次数 + + let _needNum: number = 0 + let _jinbi: number = 0 + let isnum: number = 0 // 实际次数 + if (call.req.type == 1) { + let _myNeed = await DiXiaQianZhuangFun.getNumNeed(call, _num + 1) + // vip 条件不足 + if (_myNeed.needvip > call.conn.gud.vip) { + return call.error('', { code: -1, message: globalThis.lng.dixaiqianzhuang_1 }) + } + + if (_myNeed.need) { + _needNum = _myNeed.need + } + let _bj = await DiXiaQianZhuangFun.getBj() + _jinbi += _myNeed.jinbi * _bj + _rbj[_bj.toString()] = 1 + isnum = 1 + + } else if (call.req.type == 10) { + for (let index = 1; index <= call.req.type; index++) { + let _myNeed = await DiXiaQianZhuangFun.getNumNeed(call, _num + index) + if (_myNeed.needvip > call.conn.gud.vip) { + break + } + + isnum += 1 + if (_myNeed.need) { + _needNum += _myNeed.need + } + + let _bj = await DiXiaQianZhuangFun.getBj() + // console.log("第 {} 次暴击 {} 倍数", index, _bj) + if (_myNeed.jinbi) { + _jinbi += _myNeed.jinbi * _bj + } + + // 返回的暴击次数 + + if (_rbj[_bj]) { + _rbj[_bj] += 1 + } else { + _rbj[_bj] = 1 + } + } + + // 一次次数都没有 + if (isnum == 0) { + return call.error('', { code: -2, message: globalThis.lng.dixaiqianzhuang_1 }) + } + } + + // 更新数据的数据 + update = { + $set: { time: G.time, num: isnum + _num } + }; + + if (_needNum) { + need = [{ "a": "attr", "t": "rmbmoney", "n": _needNum }] + let meet = await PlayerFun.checkNeedByArgs(call, need[0]); + need = [meet.atn]; + } + prize = [{ "a": "attr", "t": "jinbi", "n": _jinbi }] + + // 设置数据 + G.mongodb.collection('playerInfo', 'dixiaqianzhuang').updateOne( + { + uid: call.uid, + type: 'dixiaqianzhuang' + }, + { + ...update + }, + { + upsert: true + } + ); + + // 扣除奖励和发奖 + need && await PlayerFun.cutNeed(call, need); + await PlayerFun.sendPrize(call, prize); + + changeData = { + num: _num + isnum + }; + HongDianChange.sendChangeKey(call.uid, ['dixiaqianzhuanghd', 'taskhd', 'huodonghd']) + + call.succ({ + prize: prize, + changeData: changeData, + bj: _rbj + }); +} \ No newline at end of file diff --git a/src/api_s2c/email/ApiAllReceive.ts b/src/api_s2c/email/ApiAllReceive.ts new file mode 100644 index 0000000..a4953b2 --- /dev/null +++ b/src/api_s2c/email/ApiAllReceive.ts @@ -0,0 +1,20 @@ +import { ApiCall } from "tsrpc"; +import { EmailFun } from '../../public/email'; +import { PlayerFun } from '../../public/player'; +import { ReqAllReceive, ResAllReceive } from "../../shared/protocols/email/PtlAllReceive"; + +export default async function (call: ApiCall) { + + let emailList = (await EmailFun.getAllEmail(call.uid, true)).filter(email => (email.type == 'system' && email.prizeData?.isGet == false && email.prizeData?.prize?.length > 0) + || (email.type == 'system' && email.uid == "system" && (email?.prizelist?.indexOf(call.uid) == -1 && call.conn.gud && call.conn.gud.cTime <= email.createTime))); + + if (emailList.length < 1) return call.error(globalThis.lng.email_1); + + let prizeList = emailList.map(email => email.prizeData.prize).reduce((a, b) => a.concat(b)); + let sendPrize = await PlayerFun.sendPrize(call, prizeList); + + call.succ({ + prize: sendPrize, + change: EmailFun.receiveEmail(call.uid, emailList.map(email => email._id)) + }); +} \ No newline at end of file diff --git a/src/api_s2c/email/ApiAllRemove.ts b/src/api_s2c/email/ApiAllRemove.ts new file mode 100644 index 0000000..262cbe7 --- /dev/null +++ b/src/api_s2c/email/ApiAllRemove.ts @@ -0,0 +1,13 @@ +import { ApiCall } from "tsrpc"; +import { EmailFun } from '../../public/email'; +import { ReqAllRemove, ResAllRemove } from "../../shared/protocols/email/PtlAllRemove"; + +export default async function (call: ApiCall) { + // TODO + let emailList = (await EmailFun.getAllEmail(call.uid, true)).filter(email => (email.type == 'system' && (!email.prizeData || email.prizeData?.isGet == true || !email.prizeData.prize || email.prizeData.prize.length < 1 + || (email?.dellist?.indexOf(call.uid) == -1 && call.conn.gud && call.conn.gud.cTime <= email.createTime)))); + + if (emailList.length < 1) return call.error(globalThis.lng.email_2); + + call.succ(EmailFun.removeEmail(call.uid, emailList.map(email => email._id))); +} \ No newline at end of file diff --git a/src/api_s2c/email/ApiOpen.ts b/src/api_s2c/email/ApiOpen.ts new file mode 100644 index 0000000..5fd03f0 --- /dev/null +++ b/src/api_s2c/email/ApiOpen.ts @@ -0,0 +1,10 @@ +import { ApiCall } from "tsrpc"; +import { EmailFun } from '../../public/email'; +import { ReqOpen, ResOpen } from "../../shared/protocols/email/PtlOpen"; + +export default async function (call: ApiCall) { + let list = await EmailFun.getAllEmail(call.uid); + let obj: ResOpen = {}; + list.forEach(e => obj[e._id] = e); + call.succ(obj); +} \ No newline at end of file diff --git a/src/api_s2c/email/ApiRead.ts b/src/api_s2c/email/ApiRead.ts new file mode 100644 index 0000000..ca8d275 --- /dev/null +++ b/src/api_s2c/email/ApiRead.ts @@ -0,0 +1,9 @@ +import { ApiCall } from "tsrpc"; +import { EmailFun } from '../../public/email'; +import { ReqRead, ResRead } from "../../shared/protocols/email/PtlRead"; + +export default async function (call: ApiCall) { + // 修改状态为已读 + await EmailFun.readEmail(call.uid, call.req._id); + call.succ([]); +} \ No newline at end of file diff --git a/src/api_s2c/email/ApiReceive.ts b/src/api_s2c/email/ApiReceive.ts new file mode 100644 index 0000000..4626ab4 --- /dev/null +++ b/src/api_s2c/email/ApiReceive.ts @@ -0,0 +1,20 @@ +import { ApiCall } from "tsrpc"; +import { EmailFun } from '../../public/email'; +import { PlayerFun } from '../../public/player'; +import { ReqReceive, ResReceive } from "../../shared/protocols/email/PtlReceive"; + +export default async function (call: ApiCall) { + + let email = await EmailFun.getEmail(call.uid, call.req._id); + + if (!email) return call.error(globalThis.lng.email_3); + if (!email.prizeData || (email.prizeData.prize && email.prizeData.prize.length < 1)) return call.error(globalThis.lng.email_5); + if (email.prizeData.isGet) return call.error(globalThis.lng.email_4); + + let prize = await PlayerFun.sendPrize(call, email.prizeData.prize); + + call.succ({ + prize: prize, + change: EmailFun.receiveEmail(call.uid, call.req._id) + }); +} \ No newline at end of file diff --git a/src/api_s2c/email/ApiRemove.ts b/src/api_s2c/email/ApiRemove.ts new file mode 100644 index 0000000..413a106 --- /dev/null +++ b/src/api_s2c/email/ApiRemove.ts @@ -0,0 +1,12 @@ +import { ApiCall } from "tsrpc"; +import { EmailFun } from '../../public/email'; +import { ReqRemove, ResRemove } from "../../shared/protocols/email/PtlRemove"; + +export default async function (call: ApiCall) { + let email = await EmailFun.getEmail(call.uid, call.req._id); + + if (!email) return call.error(globalThis.lng.email_3); + if (email.prizeData?.isGet == false && email.prizeData?.prize?.length > 0) return call.error(globalThis.lng.email_6); + + call.succ(EmailFun.removeEmail(call.uid, call.req._id)); +} \ No newline at end of file diff --git a/src/api_s2c/equip/ApiAdjustment.ts b/src/api_s2c/equip/ApiAdjustment.ts new file mode 100644 index 0000000..e2206e9 --- /dev/null +++ b/src/api_s2c/equip/ApiAdjustment.ts @@ -0,0 +1,48 @@ +import { ApiCall } from "tsrpc"; +import { EquipFun } from '../../public/equip'; +import { HeroFun } from '../../public/hero'; +import { PlayerFun } from '../../public/player'; +import { ReqAdjustment, ResAdjustment } from "../../shared/protocols/equip/PtlAdjustment"; +import { EquipShared } from '../../shared/public/equip'; +import { PublicShared } from '../../shared/public/public'; + +export default async function (call: ApiCall) { + + let equip = await EquipFun.getEquip(call, call.req.equipId); + if (!equip) return call.error('', { code: 0 }); + + let curLv = equip.adjustment || 0; + if (!G.gc.equipAdjusting[curLv + 1]) return call.error('', { code: -1 }); + + let addLv = 0; + let allNeed: atn[] = []; + + for (let i = 1; i <= call.req.num; i++) { + let conf = G.gc.equipAdjusting[curLv + i]; + if (!conf) break; + let isMeet = await PlayerFun.checkNeedIsMeet(call, PublicShared.mergePrize(allNeed.concat(conf.need)), false); + if (!isMeet.isOk) { + if (addLv == 0) { + return call.error('', { code: -104, atn: isMeet.atn }); + } else { + break; + } + } + addLv++; + allNeed.push(...conf.need); + } + + await PlayerFun.cutNeed(call, allNeed); + await EquipFun.changeEquipAttr(call, equip, { adjustment: curLv + addLv }); + + if (equip.wearaId) { + let hero = await HeroFun.getHero(call, equip.wearaId); + if (hero) { + let wearData = hero.equip || {}; + wearData[G.gc.equip[equip.equipId].type] = EquipShared.fmtEquip(equip); + await HeroFun.changeHeroAttr(call, hero, { equip: wearData }); + } + } + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/equip/ApiGetList.ts b/src/api_s2c/equip/ApiGetList.ts new file mode 100644 index 0000000..6a258c8 --- /dev/null +++ b/src/api_s2c/equip/ApiGetList.ts @@ -0,0 +1,37 @@ +import { ApiCall } from "tsrpc"; +import { RedisCollections2 } from '../../module/redis'; +import { ReqGetList, ResGetList } from "../../shared/protocols/equip/PtlGetList"; + +export default async function (call: ApiCall) { + let list: ResGetList['list'] = {}; + let kvList: k_v = {}; + let arrList = await G.mongodb.collection('equip').find({ uid: call.uid }).toArray(); + + let equipCon = G.gc.equip + let color = {} + let maxequiplv = 0 + arrList.forEach(v => { + let d = G.mongodb.conversionIdObj(v); + kvList[G.formatRedisKey(d._id)] = d; + list[d._id] = d; + + if (v.lv > maxequiplv) maxequiplv = v.lv + if (!color[equipCon[v.equipId].colour]) color[equipCon[v.equipId].colour] = 0 + color[equipCon[v.equipId].colour] += 1 + + }); + // 记录玩家最大等级,注册任务用 + await G.mongodb.collection('playerInfo', 'usertasklog').updateOne({ uid: call.conn.uid, type: 'usertasklog' }, + { $set: { maxequiplv: maxequiplv, equipcolor: color } }, { upsert: true }) + + G.redis.set('equip', call.uid, kvList); + + let recLshd = await G.mongodb.collection('playerInfo', 'lshd_equip').findOne({ uid: call.conn.uid, type: 'lshd_equip' }); + let { uid, _id, type, ...equips } = (recLshd || {}); + + call.conn.lshd.equip = equips || {}; + call.succ({ + list: list, + lshd: equips || {} + }); +} \ No newline at end of file diff --git a/src/api_s2c/equip/ApiLvUp.ts b/src/api_s2c/equip/ApiLvUp.ts new file mode 100644 index 0000000..b0f4ccc --- /dev/null +++ b/src/api_s2c/equip/ApiLvUp.ts @@ -0,0 +1,52 @@ +import { ApiCall } from "tsrpc"; +import { Wjjl } from '../../module/collection_wjjl'; +import { EquipFun } from '../../public/equip'; +import { HeroFun } from '../../public/hero'; +import { PlayerFun } from '../../public/player'; +import { ReqLvUp, ResLvUp } from "../../shared/protocols/equip/PtlLvUp"; +import { ServiceType } from '../../shared/protocols/serviceProto'; +import { EquipShared } from '../../shared/public/equip'; +import { PublicShared } from '../../shared/public/public'; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let equip = await EquipFun.getEquip(call, call.req.equipId); + + if (!equip) return call.error(globalThis.lng.equip_1); + if (equip.lv >= call.conn.gud.lv * 2) return call.error(globalThis.lng.equip_2); + + let addLv = 0; + let allNeed: atn[] = []; + + for (let i = 1; i <= call.req.upLv; i++) { + if (equip.lv + i > call.conn.gud.lv * 2) break; + let need = EquipShared.getEquipLvUpNeed({ lv: equip.lv + i }); + let isMeet = await PlayerFun.checkNeedIsMeet(call, PublicShared.mergePrize(allNeed.concat(need)), false); + if (!isMeet.isOk) { + if (addLv == 0) { + return call.error('', { code: -104, atn: isMeet.atn }); + } else { + break; + } + } + addLv++; + allNeed = allNeed.concat(need); + } + + await PlayerFun.cutNeed(call, allNeed); + await EquipFun.changeEquipAttr(call, equip, { lv: equip.lv + addLv }); + + Wjjl.setVal(call.uid, 'equip_qh_lv', equip.lv); + + if (equip.wearaId) { + let hero = await HeroFun.getHero(call, equip.wearaId); + if (hero) { + let wearData = hero.equip || {}; + wearData[G.gc.equip[equip.equipId].type] = EquipShared.fmtEquip(equip); + await HeroFun.changeHeroAttr(call, hero, { equip: wearData }); + } + } + + HongDianChange.sendChangeKey(call.uid, ['taskhd', 'huodonghd']); + call.succ({ lv: equip.lv, addlv: addLv }); +} \ No newline at end of file diff --git a/src/api_s2c/equip/ApiOneKeyLvUp.ts b/src/api_s2c/equip/ApiOneKeyLvUp.ts new file mode 100644 index 0000000..374c320 --- /dev/null +++ b/src/api_s2c/equip/ApiOneKeyLvUp.ts @@ -0,0 +1,68 @@ +import { ApiCall } from "tsrpc"; +import { Wjjl } from '../../module/collection_wjjl'; +import { EquipFun } from '../../public/equip'; +import { HeroFun } from '../../public/hero'; +import { PlayerFun } from '../../public/player'; +import { ReqOneKeyLvUp, ResOneKeyLvUp } from "../../shared/protocols/equip/PtlOneKeyLvUp"; +import { ServiceType } from '../../shared/protocols/serviceProto'; +import { EquipShared } from '../../shared/public/equip'; +import { PublicShared } from '../../shared/public/public'; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let hero = await HeroFun.getHero(call, call.req.heroId); + + if (!hero) return call.errorCode(-4); + if (hero.lv < G.gc.herocom.equipOpenLv) return call.errorCode(0); + if (Object.values(hero.equip || {}).filter(v => v != '').length < 1) return call.errorCode(-1); + // let res = EquipShared.getQuickLvUpNeed(hero.equip, call.conn.gud.lv) + // let {posLvUp, allNeed, log} = res + let allNeed:atn[] = []; + let posLvUp = {}; + // 获取装备数量 + let _equip = {} + Object.keys(hero.equip).forEach( x => { + if(hero.equip[x]) _equip[x] = EquipShared.getFmtEquipLvUp(x, hero.equip) + }) + for (let i = 1; i <= 10 * Object.keys(_equip).length; i++) { + let meet: boolean[] = []; + // 排序,取等级最低的装备升级 + let _sortPos = Object.keys(_equip).sort((a, b) => _equip[a] - _equip[b]) + const pos = _sortPos[0] + // const pos = _sortPos[index]; + if (!hero.equip[pos]) continue; + let equipLv = _equip[pos] + if (equipLv + 1 > call.conn.gud.lv * 2) continue; + let need:atn[] = EquipShared.getEquipLvUpNeed({ lv: equipLv + 1 }); + let countNeed = PublicShared.mergePrize(allNeed.concat(need)); + if ((await PlayerFun.checkNeedIsMeet(call, countNeed, false)).isOk == false) { + continue; + } + meet.push(true); + allNeed = allNeed.concat(need); + if (!posLvUp[pos]) posLvUp[pos] = 0; + posLvUp[pos]++; + _equip[pos]++; + if (!meet.includes(true)) break; + } + if (allNeed.length < 1) return call.errorCode(-104); + + await PlayerFun.cutNeed(call, allNeed); + + let log = {}; + for (let pos in posLvUp) { + let equip = EquipShared.fmtEquip(hero.equip[pos]); + let _lv = equip.lv + posLvUp[pos]; + await EquipFun.changeEquipAttr(call, equip, { lv: _lv }); + hero.equip[pos] = EquipShared.fmtEquip(equip); + + Wjjl.setVal(call.uid, 'equip_qh_lv', _lv); + + log[pos] = _lv; + } + + await HeroFun.changeHeroAttr(call, hero, { equip: hero.equip }); + HongDianChange.sendChangeKey(call.uid, ['taskhd', 'huodonghd']); + + call.succ({ posLvUp: posLvUp, log: log, allNeed}); +} \ No newline at end of file diff --git a/src/api_s2c/equip/ApiOneKeyTakeOff.ts b/src/api_s2c/equip/ApiOneKeyTakeOff.ts new file mode 100644 index 0000000..559bac6 --- /dev/null +++ b/src/api_s2c/equip/ApiOneKeyTakeOff.ts @@ -0,0 +1,22 @@ +import { ApiCall } from "tsrpc"; +import { EquipFun } from '../../public/equip'; +import { HeroFun } from '../../public/hero'; +import { ReqOneKeyTakeOff, ResOneKeyTakeOff } from "../../shared/protocols/equip/PtlOneKeyTakeOff"; +import { EquipShared } from '../../shared/public/equip'; + +export default async function (call: ApiCall) { + let hero = await HeroFun.getHero(call, call.req.h_id); + if (!hero) return call.errorCode(-1); + + let obj = hero.equip || {}; + let equips = Object.values(obj).filter(s => !!s).map(s => EquipShared.fmtEquip(s)); + + if (equips.length > 0) { + for (let equip of equips) { + await EquipFun.changeEquipAttr(call, equip, { wearaId: '' }, false); + } + await HeroFun.changeHeroAttr(call, hero, { equip: {} }); + } + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/equip/ApiOneKeyWear.ts b/src/api_s2c/equip/ApiOneKeyWear.ts new file mode 100644 index 0000000..1ea3f52 --- /dev/null +++ b/src/api_s2c/equip/ApiOneKeyWear.ts @@ -0,0 +1,58 @@ +import { ApiCall } from "tsrpc"; +import { EquipFun } from '../../public/equip'; +import { HeroFun } from '../../public/hero'; +import { ReqOneKeyWear, ResOneKeyWear } from "../../shared/protocols/equip/PtlOneKeyWear"; +import { ServiceType } from '../../shared/protocols/serviceProto'; +import { EquipShared } from '../../shared/public/equip'; + +export default async function (call: ApiCall) { + let hero = await HeroFun.getHero(call, call.req.heroId); + + if (!hero) return call.error(globalThis.lng.equip_3); + if (hero.lv < G.gc.herocom.equipOpenLv) return call.error(`英雄${G.gc.herocom.equipOpenLv}级开启`); + + let wearNum = 0; + let wearData = hero.equip || {}; + let equipList = await G.redis.get('equip', call.conn.uid) || {}; + let allEquip = Object.values(equipList); + let heroIds = Object.values(call.conn.gud.heroPos).filter(i=>!!i) + + + for (let pos = 1; pos < 5; pos++) { + let posEquip = wearData[pos] || ''; + let curEquip = EquipShared.fmtEquip(posEquip); + let curEquipConf = G.gc.equip[curEquip.equipId]; + let wearEquip = allEquip.filter(e => { + let conf = G.gc.equip[e.equipId]; + if (!posEquip) { + return (!e.wearaId || !heroIds.includes(e.wearaId)) && conf.type == pos; + } else { + return (!e.wearaId || !heroIds.includes(e.wearaId)) && conf.type == pos && ( + conf.colour > curEquipConf.colour + || (conf.colour > curEquipConf.colour && e.lv > curEquip.lv) + || (conf.colour > curEquipConf.colour && e.lv > curEquip.lv && e.star > curEquip.star)); + } + }).sort((a, b) => { + if (G.gc.equip[a.equipId].colour != G.gc.equip[b.equipId].colour) { + return G.gc.equip[b.equipId].colour - G.gc.equip[a.equipId].colour; + } else if (a.lv != b.lv) { + return b.lv - a.lv; + } else { + return b.star - a.star; + } + })[0]; + if (!wearEquip) continue; + if (posEquip) { + await EquipFun.changeEquipAttr(call, equipList[G.formatRedisKey(EquipShared.fmtEquip(posEquip)._id)], { wearaId: '' }, false); + } + await EquipFun.changeEquipAttr(call, wearEquip, { wearaId: hero._id }); + wearNum++; + wearData[pos] = EquipShared.fmtEquip(wearEquip); + } + + if (wearNum > 0) { + await HeroFun.changeHeroAttr(call, hero, { equip: wearData }); + } + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/equip/ApiReset.ts b/src/api_s2c/equip/ApiReset.ts new file mode 100644 index 0000000..43070e5 --- /dev/null +++ b/src/api_s2c/equip/ApiReset.ts @@ -0,0 +1,82 @@ +import {ApiCall} from "tsrpc"; +import {EquipFun} from '../../public/equip'; +import {PlayerFun} from '../../public/player'; +import {ReqReset, ResReset} from "../../shared/protocols/equip/PtlReset"; +import {prizeType} from '../../shared/protocols/type'; +import {EquipShared} from '../../shared/public/equip'; +import {PublicShared} from '../../shared/public/public'; + +export default async function (call: ApiCall) { + let req = call.req; + let equips = await EquipFun.getEquip(call, req._ids); + + if (equips.length != req._ids.length) return call.errorCode(-1); + if (equips.some(e => e.wearaId != '')) return call.errorCode(-2); + if (req.type == 'cj' && equips.some(e => (e.lv || e.star || e.adjustment) && G.gc.equip[e.equipId].colour > 3)) return call.errorCode(-3); + if (req.type == 'yl') { + let ylprize: prizeType[] = []; + for (let equip of equips) { + if (equip.lv) { + ylprize.push(...new Array(equip.lv).fill(1).map((v, i) => EquipShared.getEquipLvUpNeed({lv: i + 1})).reduce((a, b) => a.concat(b))); + } + if (equip.star) { + ylprize.push(...new Array(equip.star).fill(1).map((v, i) => G.gc.equipstar[equip.equipId][i + 1].need).reduce((a, b) => a.concat(b))); + } + if (equip.adjustment) { + ylprize.push(...new Array(equip.adjustment).fill(1).map((v, i) => G.gc.equipAdjusting[i + 1].need).reduce((a, b) => a.concat(b))); + } + } + ylprize = PublicShared.mergePrize(ylprize); + ylprize.forEach(p => { + if (p.t == 'jinbi') p.n = Math.floor(p.n * G.gc.guanlidiaodu.equip_cz_jinbi); + }); + return call.succ({ + prize: ylprize + }); + } + let need = G.gc.guanlidiaodu[req.type == 'cz' ? 'equip_cz_need' : 'equip_qs_need'].map(n => { + return { + ...n, + n: n.n * equips.length + }; + }); + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + + let prize: prizeType[] = []; + + + for (let equip of equips) { + + if (equip.lv) { + prize.push(...new Array(equip.lv).fill(1).map((v, i) => EquipShared.getEquipLvUpNeed({lv: i + 1})).reduce((a, b) => a.concat(b))); + } + + if (equip.star) { + prize.push(...new Array(equip.star).fill(1).map((v, i) => G.gc.equipstar[equip.equipId][i + 1].need).reduce((a, b) => a.concat(b))); + } + + if (equip.adjustment) { + prize.push(...new Array(equip.adjustment).fill(1).map((v, i) => G.gc.equipAdjusting[i + 1].need).reduce((a, b) => a.concat(b))); + } + + if (req.type == 'cj') continue + + await EquipFun.changeEquipAttr(call, equip, {lv: 0, star: 0, adjustment: 0}); + } + if (req.type == 'cj') { + await PlayerFun.cutEquip(call, req._ids); + prize.push(...equips.map(c => G.gc.guanlidiaodu.equip_qs_prize[G.gc.equip[c.equipId].colour] as any[]).reduce((a, b) => a.concat(b))); + } + + prize = PublicShared.mergePrize(prize); + prize.forEach(p => { + if (p.t == 'jinbi') p.n = Math.floor(p.n * G.gc.guanlidiaodu.equip_cz_jinbi); + }); + + await PlayerFun.sendPrize(call, prize); + + call.succ({ + prize: prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/equip/ApiStarUp.ts b/src/api_s2c/equip/ApiStarUp.ts new file mode 100644 index 0000000..0727daf --- /dev/null +++ b/src/api_s2c/equip/ApiStarUp.ts @@ -0,0 +1,67 @@ +import { ApiCall } from "tsrpc"; +import { CollectionEquip } from '../../module/collection_equip'; +import { EquipFun } from '../../public/equip'; +import { HeroFun } from '../../public/hero'; +import { PlayerFun } from '../../public/player'; +import { ReqStarUp, ResStarUp } from "../../shared/protocols/equip/PtlStarUp"; +import { ServiceType } from '../../shared/protocols/serviceProto'; +import { EquipShared } from '../../shared/public/equip'; +import { md_redPoint_check } from '../gongyu/mingdao/ApiOpen'; +import { PublicShared } from "../../shared/public/public"; + +export default async function (call: ApiCall) { + + let equip = await G.redis.get('equip', call.uid, call.req.equipId); + + if (!equip) return call.error(globalThis.lng.equip_1); + if (!G.gc.equipstar[equip.equipId]) return call.error(globalThis.lng.equip_4); + if (!G.gc.equipstar[equip.equipId][equip.star + 1]) return call.error(globalThis.lng.equip_5); + + let need = G.gc.equipstar[equip.equipId][equip.star + 1].need; + let needItem = need.filter(v => v.a != 'equip'); + let needEquip = need.filter(v => v.a == 'equip'); + + await PlayerFun.checkNeedIsMeet(call, needItem); + + if (needEquip.length > 0) { + let equipArr: CollectionEquip[] = []; + + for (let _id of call.req.equipArr) { + let equip = await G.redis.get('equip', call.conn.uid, _id); + if (!equip) return call.error(globalThis.lng.equip_6); + if (equip.wearaId) return call.error(globalThis.lng.equip_7); + equipArr.push(equip); + } + + let check = needEquip.map(v => { + return new Array(v.n).fill(1).map(v1 => { + return v.t; + }); + }).reduce((a, b) => a.concat(b)); + + // 选择装备数量不对 + if (check.length != equipArr.length) return call.error('', { code: -1, message: globalThis.lng.equip_starup_1 }); + + let val1 = PublicShared.eval(check.join('+')); + let val2 = PublicShared.eval(equipArr.map(e => e.equipId).join('+')); + + if (val1 != val2) return call.error(globalThis.lng.equip_8); + + await PlayerFun.cutEquip(call, call.req.equipArr); + } + + await PlayerFun.cutNeed(call, needItem); + await EquipFun.changeEquipAttr(call, equip, { star: equip.star + 1 }); + + if (equip.star == 5) md_redPoint_check(call.conn, 'equip_star_5'); + + if (equip.wearaId) { + let hero = await G.redis.get('hero', call.conn.uid, equip.wearaId); + if (hero) { + hero.equip[G.gc.equip[equip.equipId].type] = EquipShared.fmtEquip(equip); + await HeroFun.changeHeroAttr(call, hero, { equip: hero.equip }); + } + } + + call.succ({}); +} diff --git a/src/api_s2c/equip/ApiTakeOff.ts b/src/api_s2c/equip/ApiTakeOff.ts new file mode 100644 index 0000000..4fbb050 --- /dev/null +++ b/src/api_s2c/equip/ApiTakeOff.ts @@ -0,0 +1,15 @@ +import { ApiCall } from "tsrpc"; +import { EquipFun } from '../../public/equip'; +import { ReqTakeOff, ResTakeOff } from "../../shared/protocols/equip/PtlTakeOff"; +import { ServiceType } from '../../shared/protocols/serviceProto'; + +export default async function (call: ApiCall) { + let equip = await G.redis.get('equip', call.conn.uid, call.req.equipId); + + if (!equip) return call.error(globalThis.lng.equip_1); + if (!equip.wearaId) return call.error(globalThis.lng.equip_9); + + await EquipFun.changeEquipAttr(call, equip, { wearaId: '' }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/equip/ApiWear.ts b/src/api_s2c/equip/ApiWear.ts new file mode 100644 index 0000000..d42d0b9 --- /dev/null +++ b/src/api_s2c/equip/ApiWear.ts @@ -0,0 +1,32 @@ +import { ApiCall } from "tsrpc"; +import { EquipFun } from '../../public/equip'; +import { HeroFun } from '../../public/hero'; +import { ReqWear, ResWear } from "../../shared/protocols/equip/PtlWear"; +import { ServiceType } from '../../shared/protocols/serviceProto'; +import { EquipShared } from '../../shared/public/equip'; + +export default async function (call: ApiCall) { + let hero = await G.redis.get('hero', call.conn.uid, call.req.heroId); + + if (!hero) return call.error(globalThis.lng.equip_10); + if (hero.lv < G.gc.herocom.equipOpenLv) return call.error(`英雄${G.gc.herocom.equipOpenLv}级开启`); + + let equip = await G.redis.get('equip', call.conn.uid, call.req.equipId); + + if (!equip) return call.error(globalThis.lng.equip_1); + if (equip.wearaId == hero._id) return call.error(globalThis.lng.equip_11); + + if (hero.equip?.[G.gc.equip[equip.equipId].type]) { + let oldEquip = EquipShared.fmtEquip(hero.equip?.[G.gc.equip[equip.equipId].type]); + await EquipFun.changeEquipAttr(call, oldEquip, { wearaId: '' }, false); + } + + await EquipFun.changeEquipAttr(call, equip, { wearaId: hero._id }); + + let wearData = hero.equip || {}; + wearData[G.gc.equip[equip.equipId].type] = EquipShared.fmtEquip(equip); + + await HeroFun.changeHeroAttr(call, hero, { equip: wearData }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/event/136Gift/ApiOpen.ts b/src/api_s2c/event/136Gift/ApiOpen.ts new file mode 100644 index 0000000..0e76139 --- /dev/null +++ b/src/api_s2c/event/136Gift/ApiOpen.ts @@ -0,0 +1,23 @@ +import { ApiCall } from "tsrpc"; +import { ReqOpen, ResOpen } from "../../../shared/protocols/event/136Gift/PtlOpen"; +import { PublicShared } from '../../../shared/public/public'; + +export default async function (call: ApiCall) { + + let db = await G.mongodb.cEvent('136Gift').findOne({ uid: call.uid, type: '136Gift' }); + + if (!db || db.refreshTime < PublicShared.getToDayZeroTime()) { + G.mongodb.cEvent('136Gift').updateOne( + { uid: call.uid, type: '136Gift' }, + { $set: { recIndex: [], refreshTime: G.time } }, + { upsert: true } + ); + if (db?.recIndex) { + db.recIndex = []; + } + } + + call.succ({ + recIndex: db?.recIndex || [] + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/136Gift/ApiRec.ts b/src/api_s2c/event/136Gift/ApiRec.ts new file mode 100644 index 0000000..09592bd --- /dev/null +++ b/src/api_s2c/event/136Gift/ApiRec.ts @@ -0,0 +1,47 @@ +import { ApiCall } from "tsrpc"; +import { PayFun } from '../../../public/pay'; +import { PlayerFun } from '../../../public/player'; +import { ReqRec, ResRec } from "../../../shared/protocols/event/136Gift/PtlRec"; +import { prizeType } from '../../../shared/protocols/type'; +import { PublicShared } from '../../../shared/public/public'; +import { HongDianChange } from "../../hongdian/fun"; + +export default async function (call: ApiCall) { + let conf = G.gc.dixiaheishi['136Gift'][call.req.index]; + let buyLog = await PayFun.getPayLog(call.uid, G.gc.dixiaheishi['136Gift'][0].payId); + let buy60 = buyLog.slice(-1)[0]?.eTime >= G.time; + if (!conf) return call.error('', { code: -1 }); + if (!buy60 && conf.payId) return call.error('', { code: -2 }); + + let prize: prizeType[] = []; + let pushIndex: number[] = []; + let db = await G.mongodb.cEvent('136Gift').findOne({ uid: call.uid, type: '136Gift' }); + + if (call.req.index == 0) { + G.gc.dixiaheishi['136Gift'].forEach((c, i) => { + if (i == 0 || !c.payId || db.recIndex.includes(i)) return; + pushIndex.push(i); + prize.push(...G.gc.pay[c.payId].prize); + }); + if (pushIndex.length < 1) return call.error('', { code: -4 }); + } else { + if (db.recIndex.includes(call.req.index)) return call.error('', { code: -3 }); + prize.push(...(conf.payId ? G.gc.pay[conf.payId].prize : conf.prize)); + pushIndex.push(call.req.index); + } + + prize = PublicShared.mergePrize(prize); + await PlayerFun.sendPrize(call, prize); + + G.mongodb.cEvent('136Gift').updateOne( + { uid: call.uid, type: '136Gift' }, + { $push: { recIndex: { $each: pushIndex } } } + ); + + // HongDianChange.sendChangeKey(call.uid, ['heishihd', 'heishiMrjx']) + HongDianChange.sendChangeKey(call.uid, ['heishihd']) + + call.succ({ + prize: prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/chuanshuozhilu/ApiOpen.ts b/src/api_s2c/event/chuanshuozhilu/ApiOpen.ts new file mode 100644 index 0000000..27dd5d5 --- /dev/null +++ b/src/api_s2c/event/chuanshuozhilu/ApiOpen.ts @@ -0,0 +1,57 @@ +import { ApiCall } from "tsrpc"; +import { HuoDongFun } from "../../../public/huodongfun"; +import { PayFun } from "../../../public/pay"; +import { ReqOpen, ResOpen } from "../../../shared/protocols/event/chuanshuozhilu/PtlOpen"; +import { player } from '../../../shared/protocols/user/type'; +import { PublicShared } from '../../../shared/public/public'; +import { Queue } from '../../../shared/public/queue'; + +export default async function (call: ApiCall) { + let _hdinfo = await HuoDongFun.getHdidInfo(call, call.req.hdid); + if (!_hdinfo || Object.keys(_hdinfo).length <= 0) { + // 无此活动 + return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + } + + let db = await G.mongodb.cEvent(`chuanshuozhilu${call.req.hdid}`).findOne({ uid: call.uid, type: `chuanshuozhilu${call.req.hdid}` }); + + call.succ({ + info: db?.info || {}, + hdinfo: _hdinfo + }); +} + +type P = Pick; + +const cache: k_v> = {}; +const quene = new Queue(); + +/**传说之路任务记录 */ +export async function event_cszl_record(player: player, hid: string | number, v: number, type: 'lv' | 'jieji') { + let call = await PayFun.getCall(player); + // @ts-ignore // 此活动的唯一标识 htype 为 3 + let _hdList = await HuoDongFun.gethdList(call, 3) + for (let index = 0; index < _hdList.length; index++) { + const element = _hdList[index]; + if (hid != element.data.hid) continue; + + quene.enqueue(async () => { + let _dbType: `chuanshuozhilu${number}` = `chuanshuozhilu${element.hdid}` + if (!cache[player.uid]) cache[player.uid] = (await G.mongodb.cEvent(_dbType).findOne({ uid: player.uid, type: _dbType }))?.info || {}; + + if (!cache[player.uid][hid] || !cache[player.uid][hid][type] || cache[player.uid][hid][type] < v) { + await G.mongodb.cEvent(_dbType).updateOne( + { uid: player.uid, type: _dbType }, + { $set: G.mongodb.createTreeObj({ key: `info.${hid}.${type}`, val: v }) }, + { upsert: true } + ); + } + + if (!cache[player.uid][hid]) cache[player.uid][hid] = { lv: 0, jieji: 0 }; + if (cache[player.uid][hid][type] < v) cache[player.uid][hid][type] = v; + + G.server.sendMsgByUid(player.uid, 'msg_s2c/HongDianChange', ['huodonghd']); + }); + + } +} \ No newline at end of file diff --git a/src/api_s2c/event/chuanshuozhilu/ApiRec.ts b/src/api_s2c/event/chuanshuozhilu/ApiRec.ts new file mode 100644 index 0000000..2dc6f24 --- /dev/null +++ b/src/api_s2c/event/chuanshuozhilu/ApiRec.ts @@ -0,0 +1,58 @@ +import { ApiCall } from "tsrpc"; +import { HuoDongFun } from "../../../public/huodongfun"; +import { PlayerFun } from '../../../public/player'; +import { ReqRec, ResRec } from "../../../shared/protocols/event/chuanshuozhilu/PtlRec"; +import { prizeType } from '../../../shared/protocols/type'; +import { HongDianChange } from "../../hongdian/fun"; + +export default async function (call: ApiCall) { + let _hdinfo = await HuoDongFun.getHdidInfo(call, call.req.hdid) + if (!_hdinfo || Object.keys(_hdinfo).length <= 0) { + // 无此活动 + return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + } + + let curTask = _hdinfo.data + if (call.req.type == 'task' && !curTask.task[call.req.index]) return call.errorCode(0); + + let prize: prizeType[] = []; + + let _dbType: `chuanshuozhilu${number}` = `chuanshuozhilu${call.req.hdid}` + + let db = await G.mongodb.cEvent(_dbType).findOne({ uid: call.uid, type: _dbType }); + let info: Partial = db?.info?.[curTask.hid] || {}; + let rec = info.rec || []; + + if (call.req.type == 'box') { + if (info.box) return call.errorCode(-1); + if (rec.length < curTask.box.total) return call.errorCode(-2); + + prize.push(...curTask.box.prize); + + G.mongodb.cEvent(_dbType).updateOne( + { uid: call.uid, type: _dbType }, + { $set: G.mongodb.createTreeObj({ key: `info.${curTask.hid}.box`, val: true }) }, + { upsert: true } + ); + } else { + let conf = curTask.task[call.req.index]; + let finish = info[conf.type] || 0; + if (finish < conf.total) return call.errorCode(-3); + if (rec.includes(call.req.index)) return call.errorCode(-4); + + G.mongodb.cEvent(_dbType).updateOne( + { uid: call.uid, type: _dbType }, + { $push: G.mongodb.createTreeObj({ key: `info.${curTask.hid}.rec`, val: call.req.index }) }, + { upsert: true } + ); + + prize.push(...conf.prize); + } + + await PlayerFun.sendPrize(call, prize); + HongDianChange.sendChangeKey(call.uid, ['huodonghd']) + + call.succ({ + prize: prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/diaoluoduihuan/ApiGet.ts b/src/api_s2c/event/diaoluoduihuan/ApiGet.ts new file mode 100644 index 0000000..4d0304e --- /dev/null +++ b/src/api_s2c/event/diaoluoduihuan/ApiGet.ts @@ -0,0 +1,49 @@ +import { ApiCall } from "tsrpc"; +import { HuoDongFun } from "../../../public/huodongfun"; +import { PlayerFun } from '../../../public/player'; +import { ReqGet, ResGet } from "../../../shared/protocols/event/diaoluoduihuan/PtlGet"; +import { HongDianChange } from "../../hongdian/fun"; + +export default async function (call: ApiCall) { + let num = call.req.nums || 1; + if (num < 1) return call.errorCode(-1); + + let _hdinfo = await HuoDongFun.getHdidInfo(call, call.req.hdid) + if (!_hdinfo || Object.keys(_hdinfo).length <= 0) { + // 无此活动 + return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + } + + let conf = _hdinfo.data.event[call.req.type]; + if (!conf[call.req.index] || conf[call.req.index].payId) return call.errorCode(-1); + + let db = await G.mongodb.cEvent(`diaoluoduihuan${call.req.hdid}`).findOne({ uid: call.uid, type: `diaoluoduihuan${call.req.hdid}` }); + let recordNum = db?.record?.[call.req.type]?.[call.req.index] || 0; + if (recordNum + num > conf[call.req.index].num) return call.errorCode(-2); + + if (conf[call.req.index].need) { + let need = conf[call.req.index].need.map(item => ( + { ...item, n: item.n * num } + )); + + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + } + + let prize = conf[call.req.index].prize.map(item => ( + { ...item, n: item.n * num } + )); + + await PlayerFun.sendPrize(call, prize); + + G.mongodb.cEvent(`diaoluoduihuan${call.req.hdid}`).updateOne( + { uid: call.uid, type: `diaoluoduihuan${call.req.hdid}` }, + { $inc: G.mongodb.createTreeObj({ key: `record.${call.req.type}.${call.req.index}`, val: num }) }, + { upsert: true } + ); + HongDianChange.sendChangeKey(call.uid, ['huodonghd']) + + call.succ({ + prize: prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/diaoluoduihuan/ApiOpen.ts b/src/api_s2c/event/diaoluoduihuan/ApiOpen.ts new file mode 100644 index 0000000..c587e29 --- /dev/null +++ b/src/api_s2c/event/diaoluoduihuan/ApiOpen.ts @@ -0,0 +1,44 @@ +import { ApiCall } from "tsrpc"; +import { HuoDongFun } from "../../../public/huodongfun"; +import { ReqOpen, ResOpen } from "../../../shared/protocols/event/diaoluoduihuan/PtlOpen"; +import { prizeType } from '../../../shared/protocols/type'; +import { PublicShared } from '../../../shared/public/public'; + +export default async function (call: ApiCall) { + let _hdinfo = await HuoDongFun.getHdidInfo(call, call.req.hdid) + if (!_hdinfo || Object.keys(_hdinfo).length <= 0) { + // 无此活动 + return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + } + + let db = await G.mongodb.cEvent(`diaoluoduihuan${call.req.hdid}`).findOne({ uid: call.uid, type: `diaoluoduihuan${call.req.hdid}` }); + + + call.succ({ + record: db?.record || {}, + hdinfo: _hdinfo + }); +} + +/** + * 兑换掉落活动添加掉落物品 + * 掉落活动 后端唯一识别标识 htype 2 + */ +export async function event_dldh_addPrize(prize: prizeType[], call: ApiCall, time: number) { + if (time > G.gc.tanxian_com.maxGuaJiTime) time = G.gc.tanxian_com.maxGuaJiTime; + let _hdList = await HuoDongFun.gethdList(call, 2) + for (let index = 0; index < _hdList.length; index++) { + const element = _hdList[index]; + // 这里能有活动,就已经过了时间的筛选,无需这个时间的判断,取消了 + // if (G.time < PublicShared.getToDayZeroTime(call.conn.gud.cTime) + element.data.event.time) { + + let rand = PublicShared.randomDropAny(element.data.diaoluo); + // @ts-ignore + let [n, s, a] = [rand.n, rand.s, rand.a] + if (n > 0) { + let multiply = Math.floor(time / s); + prize.push({ a: a, t: element.data.event.itemId, n: multiply * n }); + } + } + +} \ No newline at end of file diff --git a/src/api_s2c/event/huobanzhaomu/ApiOpen.ts b/src/api_s2c/event/huobanzhaomu/ApiOpen.ts new file mode 100644 index 0000000..860e426 --- /dev/null +++ b/src/api_s2c/event/huobanzhaomu/ApiOpen.ts @@ -0,0 +1,14 @@ +import { ApiCall } from "tsrpc"; +import { ReqOpen, ResOpen } from "../../../shared/protocols/event/huobanzhaomu/PtlOpen"; + +export default async function (call: ApiCall) { + + let db = await G.mongodb.cEvent('huobanzhaomu').findOne({ uid: call.uid, type: 'huobanzhaomu' }); + + call.succ({ + finish: Object.fromEntries(G.gc.huobanzhaomu.map((conf, i) => { + return [i, conf.gudKey ? call.conn.gud[conf.gudKey] >= conf.total : db?.rec?.length >= G.gc.huobanzhaomu.length - 1]; + })), + rec: db?.rec || [] + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/huobanzhaomu/ApiRec.ts b/src/api_s2c/event/huobanzhaomu/ApiRec.ts new file mode 100644 index 0000000..3b8cd45 --- /dev/null +++ b/src/api_s2c/event/huobanzhaomu/ApiRec.ts @@ -0,0 +1,32 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqRec, ResRec } from "../../../shared/protocols/event/huobanzhaomu/PtlRec"; +import { HongDianChange } from "../../hongdian/fun"; + +export default async function (call: ApiCall) { + let conf = G.gc.huobanzhaomu[call.req.index]; + if (!conf) return call.error('', { code: -1 }); + if (conf.gudKey && call.conn.gud[conf.gudKey] < conf.total) return call.error('', { code: -2 }); + + let db = await G.mongodb.cEvent('huobanzhaomu').findOne({ uid: call.uid, type: 'huobanzhaomu' }); + if (db?.rec.includes(call.req.index)) return call.error('', { code: -3 }); + if (!conf.gudKey && (db?.rec?.length || 0) < G.gc.huobanzhaomu.length - 1) return call.error('', { code: -4 }); + + await PlayerFun.sendPrize(call, conf.prize); + + if (db?.rec?.length + 1 >= G.gc.huobanzhaomu.length) { + G.mongodb.collection('syncBtns').updateOne({ uid: call.uid }, { $set: { 'huobanzhaomu.active': false } }, { upsert: true }); + } + + G.mongodb.cEvent('huobanzhaomu').updateOne( + { uid: call.uid, type: 'huobanzhaomu' }, + { $push: { rec: call.req.index } }, + { upsert: true } + ); + + HongDianChange.sendChangeKey(call.uid, ['huobanzhaomuhd']) + + call.succ({ + prize: conf.prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/jierihuodong/ApiGet.ts b/src/api_s2c/event/jierihuodong/ApiGet.ts new file mode 100644 index 0000000..106e20d --- /dev/null +++ b/src/api_s2c/event/jierihuodong/ApiGet.ts @@ -0,0 +1,35 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqGet, ResGet } from "../../../shared/protocols/event/jierihuodong/PtlGet"; + +export default async function (call: ApiCall) { + let req = call.req; + let db = await G.mongodb.cEvent('jierihuodong').findOne({ uid: call.uid, type: 'jierihuodong' }); + + let conf = req.type == 'duihuan' ? G.gc.jierihuodong.duihuan : G.gc.jierihuodong.libao; + if (!conf[req.index]) return call.error('', { code: -1 }); + + let record = req.type == 'duihuan' ? (db?.recordDuihuan || {}) : (db?.recordLibao || {}); + if (record[req.index] + req.num > conf[req.index].num) return call.error('', { code: -2 }); + + let need = conf[req.index].need.map(_n => { + return { ..._n, n: _n.n * req.num }; + }); + + let prize = conf[req.index].prize.map(_p => { + return { ..._p, n: _p.n * req.num }; + }); + + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + await PlayerFun.sendPrize(call, prize); + + G.mongodb.cEvent('jierihuodong').updateOne( + { uid: call.uid, type: 'jierihuodong' }, + { $inc: G.mongodb.createTreeObj({ key: req.type == 'duihuan' ? `recordDuihuan.${req.index}` : `recordLibao.${req.index}`, val: req.num }) } + ); + + call.succ({ + prize: prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/jierihuodong/ApiOpen.ts b/src/api_s2c/event/jierihuodong/ApiOpen.ts new file mode 100644 index 0000000..56fa7e5 --- /dev/null +++ b/src/api_s2c/event/jierihuodong/ApiOpen.ts @@ -0,0 +1,29 @@ +import { ApiCall } from "tsrpc"; +import { ActionLog } from '../../../public/actionLog/actionLog'; +import { ReqOpen, ResOpen } from "../../../shared/protocols/event/jierihuodong/PtlOpen"; +import { PublicShared } from '../../../shared/public/public'; + +export default async function (call: ApiCall) { + + let db = await G.mongodb.cEvent('jierihuodong').findOne({ uid: call.uid, type: 'jierihuodong' }); + let recTask = db?.recTask || []; + + if (!db || db.refreshTime < PublicShared.getToDayZeroTime()) { + G.mongodb.cEvent('jierihuodong').updateOne( + { uid: call.uid, type: 'jierihuodong' }, + { $set: { refreshTime: G.time, recTask: [] } }, + { upsert: true } + ); + recTask = []; + } + + let taskIds = [...new Set(G.gc.jierihuodong.huodongrenwu.map(r => r.taskId))]; + + call.succ({ + recTask: recTask, + recLogin: db?.recLogin || [], + recordLibao: db?.recordLibao || {}, + recordDuihuan: db?.recordDuihuan || {}, + taskFinish: await ActionLog.getDayLog(call.uid, taskIds) + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/jierihuodong/ApiRec.ts b/src/api_s2c/event/jierihuodong/ApiRec.ts new file mode 100644 index 0000000..8dd86fc --- /dev/null +++ b/src/api_s2c/event/jierihuodong/ApiRec.ts @@ -0,0 +1,32 @@ +import { ApiCall } from "tsrpc"; +import { ActionLog } from '../../../public/actionLog/actionLog'; +import { PlayerFun } from '../../../public/player'; +import { ReqRec, ResRec } from "../../../shared/protocols/event/jierihuodong/PtlRec"; +import { HongDianChange } from "../../hongdian/fun"; + +export default async function (call: ApiCall) { + let req = call.req; + let db = await G.mongodb.cEvent('jierihuodong').findOne({ uid: call.uid, type: 'jierihuodong' }); + + let conf = req.type == 'login' ? G.gc.jierihuodong.denglufuli : G.gc.jierihuodong.huodongrenwu; + if (!conf[req.index]) return call.error('', { code: -1 }); + + let recIndex = req.type == 'login' ? (db?.recLogin || []) : (db?.recTask || []); + if (recIndex.includes(req.index)) return call.error('', { code: -2 }); + + let finish = req.type == 'login' ? call.conn.gud.loginDays : await ActionLog.getDayLog(call.uid, conf[req.index].taskId); + if (finish < conf[req.index].total) return call.error('', { code: -3 }); + + await PlayerFun.sendPrize(call, conf[req.index].prize); + + G.mongodb.cEvent('jierihuodong').updateOne( + { uid: call.uid, type: 'jierihuodong' }, + { $push: req.type == 'login' ? { recLogin: req.index } : { recTask: req.index } } + ); + + HongDianChange.sendChangeKey(call.uid, ['jierihd']) + + call.succ({ + prize: conf[req.index].prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/jijin/ApiCheckOpen.ts b/src/api_s2c/event/jijin/ApiCheckOpen.ts new file mode 100644 index 0000000..f5bc066 --- /dev/null +++ b/src/api_s2c/event/jijin/ApiCheckOpen.ts @@ -0,0 +1,36 @@ +import { ApiCall } from "tsrpc"; +import { PayFun } from '../../../public/pay'; +import { jijinType } from "../../../shared/protocols/event/jijin/PtlOpen"; +import {ReqCheckOpen,ResCheckOpen} from "../../../shared/protocols/event/jijin/PtlCheckOpen"; + + +const type:jijinType[] = [ + 'dengjijijin', + 'guanqiajijin', + 'dayjijin', + 'tianshujijin', +] + +export default async function (call: ApiCall) { + let logs = await PayFun.getPayLog(call.uid); + + let data = await G.mongodb.collection('event').find({ uid: call.uid, type: { $in: type}}).toArray(); + + let record = {} + for (const i of type) { + let payId = i == 'tianshujijin' ? 'zhongshenka' : i; + let isPay = logs?.[payId]?.length > 0 + + if(!isPay) record[i] = !isPay + else { + let rec = data.filter(v=>v.type==i)[0]?.rec + let popVal:any = rec && Object.values(rec).at(-1) + record[i] = !(popVal && popVal.pt && popVal.tq); + if(!record[i]){ + G.mongodb.collection('syncBtns').updateOne({ uid: call.uid }, { $set: G.mongodb.createTreeObj({ key: i, val: { active: false } }) }); + } + } + } + + call.succ(record); +} \ No newline at end of file diff --git a/src/api_s2c/event/jijin/ApiOpen.ts b/src/api_s2c/event/jijin/ApiOpen.ts new file mode 100644 index 0000000..9252b25 --- /dev/null +++ b/src/api_s2c/event/jijin/ApiOpen.ts @@ -0,0 +1,40 @@ +import { ApiCall, BaseConnection } from "tsrpc"; +import { PayFun } from '../../../public/pay'; +import { ReqOpen, ResOpen, jijinType } from "../../../shared/protocols/event/jijin/PtlOpen"; +import { payLog } from '../../../shared/protocols/pay/PtlGetList'; +import { PublicShared } from '../../../shared/public/public'; + +/** 基金、dengjijijin + * 关卡基金、guanqiajijin + * 特别通行证、dayjijin + * 天数基金、tianshujijin + * */ +export default async function (call: ApiCall) { + let logs = await PayFun.getPayLog(call.uid); + let data = await G.mongodb.cEvent(call.req.type).findOne({ uid: call.uid, type: call.req.type }); + let payId = call.req.type == 'tianshujijin' ? 'zhongshenka' : call.req.type; + + call.succ({ + isPay: logs?.[payId]?.length > 0, + rec: data?.rec || {}, + finished: await getVal(call, logs) + }); +} + +export async function getVal(call: { conn: BaseConnection, req: ReqOpen; }, logs: k_v, type: jijinType | false = false) { + let val = 0; + let _type = type || call.req.type; + + if (_type == 'dayjijin') { + val = PublicShared.getOpenServerDay() - G.gc.eventOpen.dayjijin.day + 1; + val = (await G.mongodb.collection('pata').findOne({ uid: call.conn.uid }))?.lv || 0; + } else if (_type == 'dengjijijin') { + val = call.conn.gud.lv; + } else if (_type == 'guanqiajijin') { + val = call.conn.gud.mapId; + } else if (_type == 'tianshujijin') { + val = call.conn.gud.loginDays + } + if (val < 0) val = 0; + return val; +} \ No newline at end of file diff --git a/src/api_s2c/event/jijin/ApiReceive.ts b/src/api_s2c/event/jijin/ApiReceive.ts new file mode 100644 index 0000000..e9cf979 --- /dev/null +++ b/src/api_s2c/event/jijin/ApiReceive.ts @@ -0,0 +1,80 @@ +import { ApiCall } from "tsrpc"; +import { PayFun } from '../../../public/pay'; +import { PlayerFun } from '../../../public/player'; +import { ReqReceive, ResReceive } from "../../../shared/protocols/event/jijin/PtlReceive"; +import { PublicShared } from '../../../shared/public/public'; +import { HongDianChange } from "../../hongdian/fun"; +import { getVal } from './ApiOpen'; + +export default async function (call: ApiCall) { + if (call.req.recIndexs.length < 1) return call.error(globalThis.lng.pata_getprize_1); + let data = await G.mongodb.cEvent(call.req.type).findOne({ uid: call.uid, type: call.req.type }); + + let conf = G.gc.jijin[call.req.type]; + + let isErr = conf.map((c, i) => i).intersection(call.req.recIndexs).length != call.req.recIndexs.length; + if (isErr) return call.error(globalThis.lng.pata_getprize_1); + + let logs = await PayFun.getPayLog(call.uid); + let rec = data?.rec || {}; + let val = await getVal(call, logs); + let payId = call.req.type == 'tianshujijin' ? 'zhongshenka' : call.req.type; + let isPay = logs?.[payId]?.length > 0; + let prize: atn[] = []; + + for (let index of call.req.recIndexs) { + if (val < conf[index].total) return call.error(globalThis.lng.event_jijin_1); + + // 配置获取奖励,判断是否存在 + let hasPt = conf[index].pt.length > 0; + let hasTq = conf[index].tq.length > 0; + // 奖励不存在或奖励已被领取 + let getPt = !hasPt || rec[index]?.pt == true; + let getTq = !hasTq || rec[index]?.tq == true; + // 非特权,普通奖励已经被领取,跳过当前循环 + if (getPt && !isPay) continue; + // if (getPt && !getTq && !isPay) return call.error(globalThis.lng.event_jijin_2); + // 特权,全部奖励已被领取,跳过当前循环 + if (getPt && getTq && isPay) continue; + // if (getPt && getTq) return call.error(globalThis.lng.event_jijin_3); + + if (!rec[index]) rec[index] = { pt: false, tq: false }; + + if (hasPt && !getPt) { + prize.push(...conf[index].pt); + rec[index].pt = true; + } + + if (hasTq && !getTq && isPay) { + prize.push(...conf[index].tq); + rec[index].tq = true; + } + } + // 没有领取到奖励,返回错误消息。 + if(prize.length == 0) return call.error(globalThis.lng.event_jijin_3) + prize = PublicShared.mergePrize(prize); + await PlayerFun.sendPrize(call, prize); + + await G.mongodb.cEvent(call.req.type).updateOne( + { uid: call.uid, type: call.req.type }, + { $set: { rec: rec } }, + { upsert: true } + ); + + HongDianChange.sendChangeKey(call.uid, ['jijinhd']) + + call.succ({ + rec: rec, + prize: prize + }); + + let ptLen = conf.filter(c => c.pt.length > 0).length; + let tqLen = conf.filter(c => c.tq.length > 0).length; + let recPtLen = Object.values(rec).filter(r => r.pt == true).length; + let recTqLen = Object.values(rec).filter(r => r.tq == true).length; + + //奖励领取完 更新异步按钮 + if (recPtLen >= ptLen && recTqLen >= tqLen) { + G.mongodb.collection('syncBtns').updateOne({ uid: call.uid }, { $set: G.mongodb.createTreeObj({ key: call.req.type, val: { active: false } }) }); + } +} \ No newline at end of file diff --git a/src/api_s2c/event/kaifukuanghuan/ApiLoginPrize.ts b/src/api_s2c/event/kaifukuanghuan/ApiLoginPrize.ts new file mode 100644 index 0000000..72f1258 --- /dev/null +++ b/src/api_s2c/event/kaifukuanghuan/ApiLoginPrize.ts @@ -0,0 +1,25 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqLoginPrize, ResLoginPrize } from "../../../shared/protocols/event/kaifukuanghuan/PtlLoginPrize"; +import { PublicShared } from '../../../shared/public/public'; +import { HongDianChange } from "../../hongdian/fun"; + +export default async function (call: ApiCall) { + let day = PublicShared.getOpenServerDay(call.conn.gud.cTime); + let data = await G.mongodb.cEvent('kaifukuanghuan').findOne({ uid: call.uid, type: 'kaifukuanghuan' }); + + if (data.receiveLogin.length >= day) return call.error(globalThis.lng.event_kfkh_3); + + let recIndex = Array(day).fill(1).map((v, i) => i).filter(i => !data.receiveLogin.includes(i)); + let prize = recIndex.map(i => G.gc.kaifukuanghuan.loginPrize[i]).reduce((a, b) => a.concat(b)); + let _prize = PublicShared.mergePrize(prize); + + G.mongodb.cEvent('kaifukuanghuan').updateOne({ uid: call.uid, type: 'kaifukuanghuan' }, { $push: { receiveLogin: { $each: recIndex } } }); + await PlayerFun.sendPrize(call, _prize); + + HongDianChange.sendChangeKey(call.uid, ['kaifukuanghuanhd']) + + call.succ({ + prize: _prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/kaifukuanghuan/ApiOpen.ts b/src/api_s2c/event/kaifukuanghuan/ApiOpen.ts new file mode 100644 index 0000000..e2d4d8b --- /dev/null +++ b/src/api_s2c/event/kaifukuanghuan/ApiOpen.ts @@ -0,0 +1,107 @@ +import { ApiCall } from "tsrpc"; +import { Wjjl } from '../../../module/collection_wjjl'; +import { EmailFun } from '../../../public/email'; +import { PayFun } from '../../../public/pay'; +import { ReqOpen, ResOpen } from "../../../shared/protocols/event/kaifukuanghuan/PtlOpen"; +import { player } from '../../../shared/protocols/user/type'; +import { PublicShared } from '../../../shared/public/public'; + +export default async function (call: ApiCall) { + let [isOpen, tips] = PublicShared.getOpenCond(call, "kaifukuanghuan") + if (!isOpen) return call.error('', { code: -1, message: tips }); + + let data = await G.mongodb.cEvent('kaifukuanghuan').findOne({ uid: call.uid, type: 'kaifukuanghuan' }); + + if (!data) { + data = { + _id: null, + uid: call.uid, + type: 'kaifukuanghuan', + buyShop: {}, + receiveBox: [], + receiveTask: Object.fromEntries(Object.keys(G.gc.kaifukuanghuan.task).map(day => [day, []])), + receiveLogin: [], + }; + G.mongodb.cEvent('kaifukuanghuan').insertOne(data); + } + + let tasks = Object.values(G.gc.kaifukuanghuan.task as k_v<_gcType['kaifukuanghuan']['task']['1']>).map(tasks => tasks.map(task => task.taskType)).reduce((a, b) => a.concat(b)); + let taskFinished = await getTaskVal(call.conn.gud, [...new Set(tasks)]); + let { _id, uid, type, ...ops } = data; + + call.succ({ + ...ops, + day: PublicShared.getOpenServerDay(call.conn.gud.cTime), + taskFinished: taskFinished + }); +} + +export async function reissuePrize(gud: player, lastTime: number, curTime: number) { + let cZeroTime = PublicShared.getToDayZeroTime(gud.cTime); + + if (curTime > cZeroTime + 7 * 24 * 3600 && lastTime < cZeroTime + 7 * 24 * 3600) { + let loginDay = gud.loginDays; + let db = await G.mongodb.cEvent('kaifukuanghuan').findOne({ uid: gud.uid, type: 'kaifukuanghuan' }); + let recLogin = db?.receiveLogin || []; + let prize: atn[] = []; + G.gc.kaifukuanghuan.loginPrize.forEach((v, i) => { + if (loginDay >= i + 1 && !recLogin.includes(i)) prize.push(...v); + }); + + prize.length > 0 && EmailFun.addEmail({ + uid: gud.uid, + type: 'system', + title: G.gc.kaifukuanghuan.email.title, + content: G.gc.kaifukuanghuan.email.content, + prize: PublicShared.mergePrize(prize), + contentInsertArr: [] + }); + } +} + +export async function getTaskVal(gud: player, taskTyps: string[]) { + let val: k_v = {}; + + taskTyps = taskTyps.filter(t => { + if (['power', 'helpHeros'].includes(t)) return true; + if (gud[t] != undefined) { + if (typeof gud[t] == 'number') val[t] = gud[t]; + else if (t == 'wxcLv') val[t] = gud[t].lv; + else val[t] = 0; + return false; + } else { + return true; + } + }); + + for (let t of taskTyps) { + if (t == 'toDayLogin') val[t] = 1; + else if (t.indexOf('toDayPay') != -1) { + let daystr = t.split('_')[1] || '1'; + let day = Number(daystr); + let zeroTime = PublicShared.getToDayZeroTime(gud.cTime); + val[t] = await PayFun.getPayDaysAllPayNum(gud.uid, zeroTime + (day - 1) * 24 * 3600, zeroTime + day * 24 * 3600); + } else if (t == 'zccg_level') { + val[t] = (await G.mongodb.collection('pata').findOne({ uid: gud.uid }))?.lv || 0; + } else if (t.indexOf('has_equip_color') != -1) { + let color = Number(t.split('_').last()); + let lshd = G.server.uid_connections[gud.uid].lshd.equip || {}; + if (Object.keys(lshd).length == 0) val[t] = 0; + else { + let meets = Object.entries(lshd).filter(v => G.gc.equip[v[0]].colour >= color); + if (meets.length > 0) { + val[t] = meets.map(v => v[1]).reduce((a, b) => a + b); + } else { + val[t] = 0; + } + } + } else { + // 竞技场默认取值 1000 ,不能为0 + let _default = t == 'jjc_rank' ? 1000 : 0 + val[t] = await Wjjl.getVal(gud.uid, t) || _default; + } + } + + return val; +} + diff --git a/src/api_s2c/event/kaifukuanghuan/ApiShopBuy.ts b/src/api_s2c/event/kaifukuanghuan/ApiShopBuy.ts new file mode 100644 index 0000000..9e50b2a --- /dev/null +++ b/src/api_s2c/event/kaifukuanghuan/ApiShopBuy.ts @@ -0,0 +1,34 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqShopBuy, ResShopBuy } from "../../../shared/protocols/event/kaifukuanghuan/PtlShopBuy"; +import { PublicShared } from '../../../shared/public/public'; + +export default async function (call: ApiCall) { + let conf = G.gc.kaifukuanghuan.shop[call.req.index]; + let buyNum = call.req.buyNum || 1; + + if (!conf) return call.error(globalThis.lng.pata_getprize_1); + if (call.conn.gud.vip < conf.vip) return call.error(globalThis.lng.event_kfkh_4); + if (PublicShared.getOpenServerDay(call.conn.gud.cTime) < conf.day) return call.error(globalThis.lng.event_kfkh_5); + + let data = await G.mongodb.cEvent('kaifukuanghuan').findOne({ uid: call.uid, type: 'kaifukuanghuan' }); + let useBuyNum = data.buyShop[call.req.index] || 0; + + if (buyNum > conf.buyNum - useBuyNum) return call.error(globalThis.lng.event_kfkh_6); + + let needs = conf.need.map(need => { return { ...need, n: need.n * buyNum }; }); + await PlayerFun.checkNeedIsMeet(call, needs); + await PlayerFun.cutNeed(call, needs); + + let prizes = conf.prize.map(prize => { return { ...prize, n: prize.n * buyNum }; }); + await PlayerFun.sendPrize(call, prizes); + + G.mongodb.cEvent('kaifukuanghuan').updateOne( + { uid: call.uid, type: 'kaifukuanghuan' }, + { $inc: G.mongodb.createTreeObj({ key: 'buyShop', k: `${call.req.index}`, val: buyNum }) } + ); + + call.succ({ + prize: prizes + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/kaifukuanghuan/ApiTaskBox.ts b/src/api_s2c/event/kaifukuanghuan/ApiTaskBox.ts new file mode 100644 index 0000000..31f86d8 --- /dev/null +++ b/src/api_s2c/event/kaifukuanghuan/ApiTaskBox.ts @@ -0,0 +1,31 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqTaskBox, ResTaskBox } from "../../../shared/protocols/event/kaifukuanghuan/PtlTaskBox"; +import { HongDianChange } from "../../hongdian/fun"; + +export default async function (call: ApiCall) { + + let conf = G.gc.kaifukuanghuan.taskBoxPrize[call.req.index]; + + if (!conf) return call.error(globalThis.lng.pata_getprize_1); + + let data = await G.mongodb.cEvent('kaifukuanghuan').findOne({ uid: call.uid, type: 'kaifukuanghuan' }); + + if (data.receiveBox.includes(call.req.index)) return call.error(globalThis.lng.event_jijin_3); + + let finished = Object.values(data.receiveTask).map(fs => fs.length).reduce((a, b) => a + b); + + if (finished < conf.total) return call.error(globalThis.lng.event_jijin_1); + + G.mongodb.cEvent('kaifukuanghuan').updateOne( + { uid: call.uid, type: 'kaifukuanghuan' }, + { $push: { receiveBox: call.req.index } } + ); + await PlayerFun.sendPrize(call, conf.prize); + + HongDianChange.sendChangeKey(call.uid, ['kaifukuanghuanhd']) + + call.succ({ + prize: conf.prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/kaifukuanghuan/ApiTaskPrize.ts b/src/api_s2c/event/kaifukuanghuan/ApiTaskPrize.ts new file mode 100644 index 0000000..75871c7 --- /dev/null +++ b/src/api_s2c/event/kaifukuanghuan/ApiTaskPrize.ts @@ -0,0 +1,41 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqTaskPrize, ResTaskPrize } from "../../../shared/protocols/event/kaifukuanghuan/PtlTaskPrize"; +import { PublicShared } from '../../../shared/public/public'; +import { HongDianChange } from "../../hongdian/fun"; +import { getTaskVal } from './ApiOpen'; + +export default async function (call: ApiCall) { + + let conf: _gcType['kaifukuanghuan']['task']['1'][0] = G.gc.kaifukuanghuan.task[call.req.day]?.[call.req.index]; + + if (!conf) return call.error(globalThis.lng.pata_getprize_1); + + let day = PublicShared.getOpenServerDay(call.conn.gud.cTime); + + if (call.req.day > day) return call.error(globalThis.lng.event_kfkh_7); + + let data = await G.mongodb.cEvent('kaifukuanghuan').findOne({ uid: call.uid, type: 'kaifukuanghuan' }); + + if (data.receiveTask[call.req.day].includes(call.req.index)) return call.error(globalThis.lng.event_jijin_3); + + let finished = (await getTaskVal(call.conn.gud, [conf.taskType]))[conf.taskType] || 0; + + if (conf.taskType == 'jjc_rank') { + if (finished > conf.total) return call.error(globalThis.lng.event_kfkh_8); + } else { + if (finished < conf.total) return call.error(globalThis.lng.event_kfkh_8); + } + + G.mongodb.cEvent('kaifukuanghuan').updateOne( + { uid: call.uid, type: 'kaifukuanghuan' }, + { $push: G.mongodb.createTreeObj({ key: `receiveTask.${call.req.day}`, val: call.req.index }) } + ); + await PlayerFun.sendPrize(call, conf.prize); + + HongDianChange.sendChangeKey(call.uid, ['kaifukuanghuanhd']); + + call.succ({ + prize: conf.prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/leijichongzhi/ApiOpen.ts b/src/api_s2c/event/leijichongzhi/ApiOpen.ts new file mode 100644 index 0000000..4aac3ce --- /dev/null +++ b/src/api_s2c/event/leijichongzhi/ApiOpen.ts @@ -0,0 +1,32 @@ +import { ApiCall } from "tsrpc"; +import { HuoDongFun } from "../../../public/huodongfun"; +import { PayFun } from '../../../public/pay'; +import { ReqOpen, ResOpen } from "../../../shared/protocols/event/leijichongzhi/PtlOpen"; +import { PublicShared } from '../../../shared/public/public'; + +export default async function (call: ApiCall) { + let _hdinfo = await HuoDongFun.getHdidInfo(call, call.req.hdid) + if (!_hdinfo || Object.keys(_hdinfo).length <= 0) { + // 无此活动 + return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + } + + let _dbType: `leijichongzhi${number}` = `leijichongzhi${call.req.hdid}` + let db = await G.mongodb.cEvent(_dbType).findOne({ uid: call.uid, type: _dbType }); + let sTime = db?.sTime || PublicShared.getToDayZeroTime(G.time); + + if (!db) { + G.mongodb.cEvent(_dbType).updateOne( + { uid: call.uid, type: _dbType }, + { $set: { sTime: sTime, recIndex: [] } }, + { upsert: true } + ); + } + + call.succ({ + sTime: sTime, + recIndex: db?.recIndex || [], + payNum: await PayFun.getPayDaysAllPayNum(call.uid, _hdinfo.stime, _hdinfo.rtime), + hdinfo: _hdinfo + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/leijichongzhi/ApiRec.ts b/src/api_s2c/event/leijichongzhi/ApiRec.ts new file mode 100644 index 0000000..77aa2ee --- /dev/null +++ b/src/api_s2c/event/leijichongzhi/ApiRec.ts @@ -0,0 +1,37 @@ +import { ApiCall } from "tsrpc"; +import { HuoDongFun } from "../../../public/huodongfun"; +import { PayFun } from '../../../public/pay'; +import { PlayerFun } from '../../../public/player'; +import { ReqRec, ResRec } from "../../../shared/protocols/event/leijichongzhi/PtlRec"; +import { HongDianChange } from "../../hongdian/fun"; + +export default async function (call: ApiCall) { + let _hdinfo = await HuoDongFun.getHdidInfo(call, call.req.hdid) + if (!_hdinfo || Object.keys(_hdinfo).length <= 0) { + // 无此活动 + return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + } + + let _dbType: `leijichongzhi${number}` = `leijichongzhi${call.req.hdid}` + + let conf = _hdinfo.data.tasks[call.req.index]; + if (!conf) return call.error('', { code: -1 }); + + let db = await G.mongodb.cEvent(_dbType).findOne({ uid: call.uid, type: _dbType }); + if (db.recIndex.includes(call.req.index)) return call.error('', { code: -2 }); + + let payNum = await PayFun.getPayDaysAllPayNum(call.uid, _hdinfo.stime, _hdinfo.rtime); + if (payNum < conf.total) return call.error('', { code: -3 }); + + await PlayerFun.sendPrize(call, conf.prize); + + G.mongodb.cEvent(_dbType).updateOne( + { uid: call.uid, type: _dbType }, + { $push: { recIndex: call.req.index } } + ); + + HongDianChange.sendChangeKey(call.uid, ['huodonghd']) + call.succ({ + prize: conf.prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/niudanji/ApiLottery.ts b/src/api_s2c/event/niudanji/ApiLottery.ts new file mode 100644 index 0000000..b6ab342 --- /dev/null +++ b/src/api_s2c/event/niudanji/ApiLottery.ts @@ -0,0 +1,35 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqLottery, ResLottery } from "../../../shared/protocols/event/niudanji/PtlLottery"; +import { PublicShared } from '../../../shared/public/public'; +import { pay2num } from './ApiOpen'; +import { HongDianChange } from "../../hongdian/fun"; + +export default async function (call: ApiCall) { + let hasNum = pay2num(call.conn.gud); + if (hasNum < 1) return call.error('', { code: -1 }); + + let db = await G.mongodb.cEvent('niudanji').findOne({ uid: call.uid, type: 'niudanji' }); + let useNum = db?.useNum || 0; + + if (useNum >= hasNum) return call.error('', { code: -1 }); + + let random = (useNum != 0 && useNum % G.gc.niudanji.num2lottery == 0) ? G.gc.niudanji.lottery[0] : PublicShared.randomDropAny(G.gc.niudanji.lottery); + let prize = random.prize.random(); + + if (random.pmd) { + G.mongodb.collection('any').updateOne({ type: 'niudanlog' }, { $push: { data: { $each: [{ name: call.conn.gud.name, item: prize }], $slice: -30 } } }, { upsert: true }); + } + + await PlayerFun.sendPrize(call, [prize]); + + G.mongodb.cEvent('niudanji').updateOne( + { uid: call.uid, type: 'niudanji' }, + { $inc: { useNum: 1 } }, + { upsert: true } + ); + HongDianChange.sendChangeKey(call.uid, ['heishihd']) + call.succ({ + prize: [prize] + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/niudanji/ApiOpen.ts b/src/api_s2c/event/niudanji/ApiOpen.ts new file mode 100644 index 0000000..5baee80 --- /dev/null +++ b/src/api_s2c/event/niudanji/ApiOpen.ts @@ -0,0 +1,18 @@ +import { ApiCall } from "tsrpc"; +import { ReqOpen, ResOpen } from "../../../shared/protocols/event/niudanji/PtlOpen"; +import { player } from '../../../shared/protocols/user/type'; + +export default async function (call: ApiCall) { + + let db = await G.mongodb.cEvent('niudanji').findOne({ uid: call.uid, type: 'niudanji' }); + + call.succ({ + hasNum: pay2num(call.conn.gud), + useNum: db?.useNum || 0, + logs: (await G.mongodb.collection('any').findOne({ type: 'niudanlog' }))?.data || [] + }); +} + +export function pay2num(player: player) { + return Math.floor(player.payExp / G.gc.niudanji.pay2num); +} \ No newline at end of file diff --git a/src/api_s2c/event/qirichongzhi/ApiOpen.ts b/src/api_s2c/event/qirichongzhi/ApiOpen.ts new file mode 100644 index 0000000..e9c40a7 --- /dev/null +++ b/src/api_s2c/event/qirichongzhi/ApiOpen.ts @@ -0,0 +1,42 @@ +import { UpdateFilter } from 'mongodb'; +import { ApiCall } from "tsrpc"; +import { CollectionEvent } from '../../../module/collection_event'; +import { PayFun } from '../../../public/pay'; +import { ReqOpen, ResOpen } from "../../../shared/protocols/event/qirichongzhi/PtlOpen"; +import { PublicShared } from '../../../shared/public/public'; + +export default async function (call: ApiCall) { + + let db = await G.mongodb.cEvent('qirichongzhi').findOne({ uid: call.uid, type: 'qirichongzhi' }); + let update: UpdateFilter>; + let sTime = PublicShared.getToDayZeroTime(G.time); + + if (!db) { + update = { + $set: { round: 0, sTime: sTime, recIndexs: [] } + }; + } else { + if (db.sTime + G.gc.qirichongzhi[db.round].time < G.time) { + + db.sTime = sTime; + db.round = G.gc.qirichongzhi[db.round + 1] == undefined ? db.round : db.round + 1; + db.recIndexs = []; + + update = { + $set: { index: db.round, sTime: db.sTime, recIndex: [] } + }; + } else { + sTime = db.sTime; + } + } + + update && G.mongodb.cEvent('qirichongzhi').updateOne({ uid: call.uid, type: 'qirichongzhi' }, update, { upsert: true }); + let round = db?.round || 0; + + call.succ({ + round: round, + sTime: sTime, + recIndexs: db?.recIndexs || [], + finished: await PayFun.getPayDaysAllPayNum(call.uid, sTime, sTime + G.gc.qirichongzhi[round].time) + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/qirichongzhi/ApiRec.ts b/src/api_s2c/event/qirichongzhi/ApiRec.ts new file mode 100644 index 0000000..95cede5 --- /dev/null +++ b/src/api_s2c/event/qirichongzhi/ApiRec.ts @@ -0,0 +1,31 @@ +import { ApiCall } from "tsrpc"; +import { PayFun } from '../../../public/pay'; +import { PlayerFun } from '../../../public/player'; +import { ReqRec, ResRec } from "../../../shared/protocols/event/qirichongzhi/PtlRec"; +import { HongDianChange } from "../../hongdian/fun"; + +export default async function (call: ApiCall) { + let db = await G.mongodb.cEvent('qirichongzhi').findOne({ uid: call.uid, type: 'qirichongzhi' }); + let round = db?.round || 0; + let conf = G.gc.qirichongzhi[round]; + + if (!db) return call.error('', { code: 0 }); + if (!conf.tasks[call.req.index]) return call.error('', { code: -1 }); + if (db.recIndexs.includes(call.req.index)) return call.error('', { code: -2 }); + + let finished = await PayFun.getPayDaysAllPayNum(call.uid, db.sTime, db.sTime + G.gc.qirichongzhi[round].time); + if (finished < conf.tasks[call.req.index].total) return call.error('', { code: -3 }); + + await PlayerFun.sendPrize(call, conf.tasks[call.req.index].prize); + + G.mongodb.cEvent('qirichongzhi').updateOne( + { uid: call.uid, type: 'qirichongzhi' }, + { $push: { recIndexs: call.req.index } } + ); + + HongDianChange.sendChangeKey(call.uid, ['qirileichonghd']) + + call.succ({ + prize: conf.tasks[call.req.index].prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/qiridenglu/ApiOpen.ts b/src/api_s2c/event/qiridenglu/ApiOpen.ts new file mode 100644 index 0000000..7063e7b --- /dev/null +++ b/src/api_s2c/event/qiridenglu/ApiOpen.ts @@ -0,0 +1,35 @@ +import { ApiCall } from "tsrpc"; +import { ActionLog } from '../../../public/actionLog/actionLog'; +import { HuoDongFun } from "../../../public/huodongfun"; +import { call } from "../../../public/player"; +import { ReqOpen, ResOpen } from "../../../shared/protocols/event/qiridenglu/PtlOpen"; + +export default async function (call: ApiCall) { + let _hdinfo = await HuoDongFun.getHdidInfo(call, call.req.hdid) + if (!_hdinfo || Object.keys(_hdinfo).length <= 0) { + // 无此活动 + return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + } + + let _dbType: `qiridenglu${number}` = `qiridenglu${call.req.hdid}` + + let db = await G.mongodb.cEvent(_dbType).findOne({ uid: call.uid, type: _dbType }); + let day = await ActionLog.getRetainLog(call.uid, `login_day_qiridenglu_${call.req.hdid}`); + + call.succ({ + loginDay: day, + recPrize: db?.recPrize || [], + hdinfo: _hdinfo + }); +} + + +// 符合时间的七日登录活动记录天数 +export async function qiRiDengLuAddDay(call: call) { + // @ts-ignore + let _sDayhdList = await HuoDongFun.gethdList(call, 6) + _sDayhdList && _sDayhdList.forEach(element => { + ActionLog.addRetainLog(call.uid, { key: `login_day_qiridenglu_${element.hdid}`, val: 1 }); + }); +} + diff --git a/src/api_s2c/event/qiridenglu/ApiRecPrize.ts b/src/api_s2c/event/qiridenglu/ApiRecPrize.ts new file mode 100644 index 0000000..20341ce --- /dev/null +++ b/src/api_s2c/event/qiridenglu/ApiRecPrize.ts @@ -0,0 +1,44 @@ +import { ApiCall } from "tsrpc"; +import { ActionLog } from '../../../public/actionLog/actionLog'; +import { HuoDongFun } from "../../../public/huodongfun"; +import { PlayerFun } from '../../../public/player'; +import { ReqRecPrize, ResRecPrize } from "../../../shared/protocols/event/qiridenglu/PtlRecPrize"; +import { HongDianChange } from "../../hongdian/fun"; + +export default async function (call: ApiCall) { + let _hdinfo = await HuoDongFun.getHdidInfo(call, call.req.hdid) + if (!_hdinfo || Object.keys(_hdinfo).length <= 0) { + // 无此活动 + return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + } + let conf = _hdinfo.data.arr + let _dbType: `qiridenglu${number}` = `qiridenglu${call.req.hdid}` + + + let recIndex = call.req.inedx; + if (!conf[recIndex]) return call.error('', { code: -1 }); + + let day = await ActionLog.getRetainLog(call.uid, `login_day_qiridenglu_${call.req.hdid}`); + if (conf[recIndex].day > day) return call.error('', { code: -2 }); + + let db = await G.mongodb.cEvent(_dbType).findOne({ uid: call.uid, type: _dbType }); + if (db?.recPrize?.includes(recIndex)) return call.error('', { code: -3 }); + + await PlayerFun.sendPrize(call, conf[recIndex].prize); + G.mongodb.cEvent(_dbType).updateOne( + { uid: call.uid, type: _dbType }, + { $push: { recPrize: recIndex } }, + { upsert: true } + ); + + // 此活动可能有多个,此检测似乎不合适,先屏蔽 + // if (db?.recPrize?.length + 1 >= conf.length) { + // G.mongodb.collection('syncBtns').updateOne({ uid: call.uid }, { $set: { 'qiridenglu.active': false } }, { upsert: true }); + // } + + HongDianChange.sendChangeKey(call.uid, ['huodonghd']) + + call.succ({ + prize: conf[recIndex].prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/shiwuleichong/ApiOpen.ts b/src/api_s2c/event/shiwuleichong/ApiOpen.ts new file mode 100644 index 0000000..63aa21d --- /dev/null +++ b/src/api_s2c/event/shiwuleichong/ApiOpen.ts @@ -0,0 +1,41 @@ +import { UpdateFilter } from 'mongodb'; +import { ApiCall } from "tsrpc"; +import { CollectionEvent } from '../../../module/collection_event'; +import { PayFun } from '../../../public/pay'; +import { ReqOpen, ResOpen } from "../../../shared/protocols/event/shiwuleichong/PtlOpen"; +import { PublicShared } from '../../../shared/public/public'; + +export default async function (call: ApiCall) { + let db = await G.mongodb.cEvent('15leichong').findOne({ uid: call.uid, type: '15leichong' }); + let update: UpdateFilter>; + let sTime = PublicShared.getToDayZeroTime(G.time); + + if (!db) { + update = { + $set: { index: 0, sTime: sTime, recIndex: [] } + }; + } else { + if (db.sTime + G.gc.shiwuleichong.data[db.index].time < G.time) { + + db.sTime = sTime; + db.index = G.gc.shiwuleichong.data[db.index + 1] == undefined ? db.index : db.index + 1; + db.recIndex = []; + + update = { + $set: { index: db.index, sTime: db.sTime, recIndex: [] } + }; + } else { + sTime = db.sTime; + } + } + + update && G.mongodb.cEvent('15leichong').updateOne({ uid: call.uid, type: '15leichong' }, update, { upsert: true }); + let index = db?.index || 0; + + call.succ({ + index: index, + sTime: sTime, + recIndex: db?.recIndex || [], + payDay: await PayFun.getPayDaysBuyPayNum(call.uid, sTime, sTime + G.gc.shiwuleichong.data[index].time, G.gc.shiwuleichong.dayPayNeed) + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/shiwuleichong/ApiRec.ts b/src/api_s2c/event/shiwuleichong/ApiRec.ts new file mode 100644 index 0000000..f9cf51e --- /dev/null +++ b/src/api_s2c/event/shiwuleichong/ApiRec.ts @@ -0,0 +1,26 @@ +import { ApiCall } from "tsrpc"; +import { PayFun } from '../../../public/pay'; +import { PlayerFun } from '../../../public/player'; +import { ReqRec, ResRec } from "../../../shared/protocols/event/shiwuleichong/PtlRec"; + +export default async function (call: ApiCall) { + let db = await G.mongodb.cEvent('15leichong').findOne({ uid: call.uid, type: '15leichong' }); + let confArr = G.gc.shiwuleichong.data[db.index]; + + if (!confArr.tasks[call.req.index]) return call.error('', { code: -1 }); + if (db.recIndex.includes(call.req.index)) return call.error('', { code: -2 }); + + let payDay = await PayFun.getPayDaysBuyPayNum(call.uid, db.sTime, db.sTime + confArr.time, G.gc.shiwuleichong.dayPayNeed); + if (payDay < confArr.tasks[call.req.index].total) return call.error('', { code: -3 }); + + await PlayerFun.sendPrize(call, confArr.tasks[call.req.index].prize); + + G.mongodb.cEvent('15leichong').updateOne( + { uid: call.uid, type: '15leichong' }, + { $push: { recIndex: call.req.index } } + ); + + call.succ({ + prize: confArr.tasks[call.req.index].prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/shouchong/ApiOpen.ts b/src/api_s2c/event/shouchong/ApiOpen.ts new file mode 100644 index 0000000..010d12f --- /dev/null +++ b/src/api_s2c/event/shouchong/ApiOpen.ts @@ -0,0 +1,11 @@ +import { ApiCall } from "tsrpc"; +import { ReqOpen, ResOpen } from "../../../shared/protocols/event/shouchong/PtlOpen"; + +export default async function (call: ApiCall) { + let data = await G.mongodb.cEvent('shouchong').findOne({ uid: call.uid, type: 'shouchong' }); + + call.succ({ + payNum: call.conn.gud.payExp / 10, + receive: Object.fromEntries(Object.keys(G.gc.shouchong).map(k => [k, data?.receive?.[k] || []])) + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/shouchong/ApiReceive.ts b/src/api_s2c/event/shouchong/ApiReceive.ts new file mode 100644 index 0000000..6e29d12 --- /dev/null +++ b/src/api_s2c/event/shouchong/ApiReceive.ts @@ -0,0 +1,56 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqReceive, ResReceive } from "../../../shared/protocols/event/shouchong/PtlReceive"; +import { PublicShared } from '../../../shared/public/public'; +import { HongDianChange } from "../../hongdian/fun"; + +export default async function (call: ApiCall) { + + let conf = G.gc.shouchong[call.req.k]; + + if (!conf) return call.error(globalThis.lng.pata_getprize_1); + + let data = await G.mongodb.cEvent('shouchong').findOne({ uid: call.uid, type: 'shouchong' }); + + let recArr = data?.receive?.[call.req.k] || []; + + if (call.conn.gud.payExp < conf.paynum) return call.error(globalThis.lng.event_kfkh_9); + + if (recArr.length >= conf.prize.length) return call.error(globalThis.lng.event_kfkh_3); + + if (recArr.slice(-1)[0] && PublicShared.getToDayZeroTime() < recArr.slice(-1)[0]) return call.error(globalThis.lng.event_kfkh_10); + + await PlayerFun.sendPrize(call, conf.prize[recArr.length]); + await G.mongodb.cEvent('shouchong').updateOne( + { uid: call.uid, type: 'shouchong' }, + { $push: G.mongodb.createTreeObj({ key: 'receive', k: call.req.k, val: G.time }) }, + { upsert: true } + ); + + let recLen = data != null ? Object.values(data.receive).map(arr => arr.length).reduce((a, b) => a + b) + 1 : 1; + let allLen = Object.values(G.gc.shouchong).map(conf => conf.prize.length as number).reduce((a, b) => a + b); + if (data && recLen >= allLen) { + G.mongodb.collection('syncBtns').updateOne({ uid: call.uid }, { $set: { 'shouchong.active': false } }, { upsert: true }); + } + HongDianChange.sendChangeKey(call.uid, ['shouchong']) + + call.succ({ + prize: conf.prize[recArr.length] + }); +} + +export async function getShouChongRedPoint(call: ApiCall) { + let res = { show: false }; + let data = await G.mongodb.cEvent('shouchong').findOne({ uid: call.uid, type: 'shouchong' }); + + for (let [id, conf] of Object.entries(G.gc.shouchong)) { + let rec = data?.receive?.[id] || []; + if (call.conn.gud.payExp / 10 < conf.paynum || rec.length >= conf.prize.length) continue; + if (rec.length == 0 || rec.slice(-1)[0] < PublicShared.getToDayZeroTime(G.time)) { + res = { show: true }; + break; + } + } + + return res; +} \ No newline at end of file diff --git a/src/api_s2c/event/xianshilibao/fun.ts b/src/api_s2c/event/xianshilibao/fun.ts new file mode 100644 index 0000000..f0663c6 --- /dev/null +++ b/src/api_s2c/event/xianshilibao/fun.ts @@ -0,0 +1,39 @@ +import { player } from '../../../shared/protocols/user/type'; + +export function checkPlayerGift(old: player, cur: Partial) { + let payIds: string[] = []; + let keys = Object.keys(G.gc.xianshilibao); + + for (let [k, v] of Object.entries(cur)) { + if (keys.filter(key => key.indexOf(k) != -1).length < 1) continue; + + for (let tag = old[k] + 1; tag <= v; tag++) { + if (G.gc.xianshilibao[k + tag]) payIds.push(k + tag); + } + } + + payIds.length > 0 && addGift(old.uid, payIds); +} + +export async function addGift(uid: string, payIds: string[]) { + + let insert = payIds.map(id => { + return { + payId: id, + eTime: G.time + G.gc.xianshilibao[id].time + }; + }); + + G.mongodb.collection('syncBtns').updateOne( + { uid: uid }, + { + //@ts-ignore + $push: { + 'xianshilibao.pays': { $each: insert } + } + }, + { upsert: true } + ); + + G.server.sendMsgByUid(uid, 'msg_s2c/Xianshilibao', insert); +} \ No newline at end of file diff --git a/src/api_s2c/event/xianshizhaomu/ApiBuy.ts b/src/api_s2c/event/xianshizhaomu/ApiBuy.ts new file mode 100644 index 0000000..774361a --- /dev/null +++ b/src/api_s2c/event/xianshizhaomu/ApiBuy.ts @@ -0,0 +1,29 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqBuy, ResBuy } from "../../../shared/protocols/event/xianshizhaomu/PtlBuy"; +import { xszmdb } from './ApiOpen'; + +export default async function (call: ApiCall) { + let conf = G.gc.xianshizhaomu.gift[call.req.index]; + if (!conf || conf.payId) return call.error('', { code: -1 }); + + let db = await xszmdb().findOne({ uid: call.uid, type: 'xianshizhaomu' }); + if (db?.recordBuy?.[call.req.index] >= conf.num) return call.error('', { code: -1 }); + + if (conf.need.length > 0) { + await PlayerFun.checkNeedIsMeet(call, conf.need); + await PlayerFun.cutNeed(call, conf.need); + } + + await PlayerFun.sendPrize(call, conf.prize); + + xszmdb().updateOne( + { uid: call.uid, type: 'xianshizhaomu' }, + { $inc: G.mongodb.createTreeObj({ key: `recordBuy.${call.req.index}`, val: 1 }) }, + { upsert: true } + ); + + call.succ({ + prize: conf.prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/xianshizhaomu/ApiDuihuan.ts b/src/api_s2c/event/xianshizhaomu/ApiDuihuan.ts new file mode 100644 index 0000000..7cf64f8 --- /dev/null +++ b/src/api_s2c/event/xianshizhaomu/ApiDuihuan.ts @@ -0,0 +1,29 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqDuihuan, ResDuihuan } from "../../../shared/protocols/event/xianshizhaomu/PtlDuihuan"; +import { xszmdb } from './ApiOpen'; + +export default async function (call: ApiCall) { + let conf = G.gc.xianshizhaomu.duihuan[call.req.index]; + if (!conf || call.req.num <= 0) return call.error('', { code: -1 }); + + let db = await xszmdb().findOne({ uid: call.uid, type: 'xianshizhaomu' }); + if ((db?.recordDuihuan?.[call.req.index] || 0) + call.req.num > conf.num) return call.error('', { code: -2 }); + + let need = conf.need.map(need => { return { ...need, n: need.n * call.req.num }; }); + let prize = conf.prize.map(prize => { return { ...prize, n: prize.n * call.req.num }; }); + + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + await PlayerFun.sendPrize(call, prize); + + xszmdb().updateOne( + { uid: call.uid, type: 'xianshizhaomu' }, + { $inc: G.mongodb.createTreeObj({ key: `recordDuihuan.${call.req.index}`, val: call.req.num }) }, + { upsert: true } + ); + + call.succ({ + prize: prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/xianshizhaomu/ApiLottery.ts b/src/api_s2c/event/xianshizhaomu/ApiLottery.ts new file mode 100644 index 0000000..a345ba5 --- /dev/null +++ b/src/api_s2c/event/xianshizhaomu/ApiLottery.ts @@ -0,0 +1,45 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { Rank } from '../../../public/rank/rank'; +import { ReqLottery, ResLottery } from "../../../shared/protocols/event/xianshizhaomu/PtlLottery"; +import { prizeType } from '../../../shared/protocols/type'; +import { PublicShared } from '../../../shared/public/public'; +import { xszmdb } from './ApiOpen'; + +export default async function (call: ApiCall) { + let drop: number[] = G.gc.xianshizhaomu[call.req.type + 'Drop']; + let need: prizeType[] = G.gc.xianshizhaomu[call.req.type + 'Need']; + + await PlayerFun.checkNeedIsMeet(call, need); + + let prize = G.gc.xianshizhaomu[call.req.type + 'Prize']; + let lotteryPrize: prizeType[] = []; + let db = await xszmdb().findOne({ uid: call.uid, type: 'xianshizhaomu' }); + if (call.req.type == 'one' && db?.recordNum % G.gc.xianshizhaomu.oneReplace.num == 0) { + drop = G.gc.xianshizhaomu.oneReplace.drop; + } + + drop.sort(() => Math.random() - .5); + for (let id of drop) { + lotteryPrize.push(...PublicShared.randomDropGroup(id)); + } + + await PlayerFun.cutNeed(call, need); + await PlayerFun.sendPrize(call, lotteryPrize.concat(prize)); + + xszmdb().updateOne( + { uid: call.uid, type: 'xianshizhaomu' }, + { $inc: { recordNum: drop.length, recordOneNum: drop.length > 1 ? 0 : 1 } }, + { upsert: true } + ); + + Rank.list.xszm.addNew({ + ...await call.conn.getDefaultFightData(), + valArr: [(db?.recordNum || 0) + drop.length] + }); + + call.succ({ + prize: prize, + lotteryPrize: lotteryPrize + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/xianshizhaomu/ApiOpen.ts b/src/api_s2c/event/xianshizhaomu/ApiOpen.ts new file mode 100644 index 0000000..8641766 --- /dev/null +++ b/src/api_s2c/event/xianshizhaomu/ApiOpen.ts @@ -0,0 +1,36 @@ +import { UpdateFilter } from 'mongodb'; +import { ApiCall } from "tsrpc"; +import { CollectionEvent } from '../../../module/collection_event'; +import { ReqOpen, ResOpen } from "../../../shared/protocols/event/xianshizhaomu/PtlOpen"; +import { PublicShared } from '../../../shared/public/public'; + +export default async function (call: ApiCall) { + + let db = await xszmdb().findOne({ uid: call.uid, type: 'xianshizhaomu' }); + let update: UpdateFilter>; + let res: Partial = {}; + + if (!db || db?.refreshTime < PublicShared.getToDayZeroTime(G.time)) { + update = { + $set: { + refreshTime: G.time, + recordBuy: {} + } + }; + res.recordBuy = {}; + } + + update && xszmdb().updateOne({ uid: call.uid, type: 'xianshizhaomu' }, update, { upsert: true }); + + call.succ({ + recordNum: db?.recordNum || 0, + recordBuy: db?.recordBuy || res.recordBuy, + recordPrize: db?.recordPrize || [], + recordOneNum: db?.recordOneNum || 0, + recordDuihuan: db?.recordDuihuan || {} + }); +} + +export function xszmdb() { + return G.mongodb.cEvent('xianshizhaomu'); +} \ No newline at end of file diff --git a/src/api_s2c/event/xianshizhaomu/ApiRec.ts b/src/api_s2c/event/xianshizhaomu/ApiRec.ts new file mode 100644 index 0000000..5306ba8 --- /dev/null +++ b/src/api_s2c/event/xianshizhaomu/ApiRec.ts @@ -0,0 +1,24 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqRec, ResRec } from "../../../shared/protocols/event/xianshizhaomu/PtlRec"; +import { xszmdb } from './ApiOpen'; + +export default async function (call: ApiCall) { + let conf = G.gc.xianshizhaomu.eventPrize[call.req.index]; + if (!conf) return call.error('', { code: -1 }); + + let db = await xszmdb().findOne({ uid: call.uid, type: 'xianshizhaomu' }); + if (!db?.recordNum || db.recordNum < conf.total || db?.recordPrize?.includes(call.req.index)) return call.error('', { code: -2 }); + + await PlayerFun.sendPrize(call, conf.prize); + + xszmdb().updateOne( + { uid: call.uid, type: 'xianshizhaomu' }, + { $push: { recordPrize: call.req.index } }, + { upsert: true } + ); + + call.succ({ + prize: conf.prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/xinshoulibao/ApiOpen.ts b/src/api_s2c/event/xinshoulibao/ApiOpen.ts new file mode 100644 index 0000000..76d35bc --- /dev/null +++ b/src/api_s2c/event/xinshoulibao/ApiOpen.ts @@ -0,0 +1,42 @@ +import { UpdateFilter } from 'mongodb'; +import { ApiCall } from "tsrpc"; +import { CollectionEvent } from '../../../module/collection_event'; +import { PayFun } from '../../../public/pay'; +import { ReqOpen, ResOpen } from "../../../shared/protocols/event/xinshoulibao/PtlOpen"; +import { PublicShared } from '../../../shared/public/public'; + +export default async function (call: ApiCall) { + // 后端加不加没多重要 + // let [isOpen, tips] = PublicShared.getOpenCond(call, "xinshoulibao") + // if (!isOpen) return call.error('', { code: -1, message: tips }); + + let db = await G.mongodb.cEvent('xinshoulibao').findOne({ uid: call.uid, type: 'xinshoulibao' }); + let update: UpdateFilter>; + + if (!db) { + update = { + $set: { index: 0, sTime: PublicShared.getToDayZeroTime(G.time) } + }; + } else { + if (db.sTime + G.gc.xinshoulibao[db.index].time < G.time) { + + db.sTime = PublicShared.getToDayZeroTime(G.time); + db.index = G.gc.xinshoulibao[db.index + 1] == undefined ? db.index : db.index + 1; + + update = { + $set: { index: db.index, sTime: db.sTime } + }; + + if (db.index == G.gc.xinshoulibao.length - 1) { + PayFun.setPayLog(call.uid, ...G.gc.xinshoulibao[db.index].pays.map(p => { return { payId: p.payId, val: [] }; })); + } + } + } + + update && G.mongodb.cEvent('xinshoulibao').updateOne({ uid: call.uid, type: 'xinshoulibao' }, update, { upsert: true }); + + call.succ({ + index: db?.index || 0, + sTime: db?.sTime || PublicShared.getToDayZeroTime(G.time) + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/yangchengmubiao/ApiBuy.ts b/src/api_s2c/event/yangchengmubiao/ApiBuy.ts new file mode 100644 index 0000000..406b1ad --- /dev/null +++ b/src/api_s2c/event/yangchengmubiao/ApiBuy.ts @@ -0,0 +1,31 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from "../../../public/player"; +import { ReqBuy, ResBuy } from "../../../shared/protocols/event/yangchengmubiao/PtlBuy"; +import { HongDianChange } from "../../hongdian/fun"; +import { YangChengMuBiaofun } from "./fun"; + +export default async function (call: ApiCall) { + let initCon = await YangChengMuBiaofun.getCon(call) + let conf = initCon[call.req.hdid].data.gift[call.req.index]; + if (!conf || conf.payId) return call.errorCode(-1); + + let _mydata = await YangChengMuBiaofun.getMyData(call, call.req.hdid) + let buyNum = _mydata.record?.[call.req.index] || 0; + if (buyNum >= conf.buyNum) return call.errorCode(-3); + + if (conf.need.length > 0) { + await PlayerFun.checkNeedIsMeet(call, conf.need); + await PlayerFun.cutNeed(call, conf.need); + } + + let selectPrize = conf.prize + // 设置数据和发奖 + await YangChengMuBiaofun.setMyData(call.uid, call.req.hdid, { $inc: G.mongodb.createTreeObj({ key: `record.${call.req.index}`, val: 1 }) }) + await PlayerFun.sendPrize(call, selectPrize); + + HongDianChange.sendChangeKey(call.uid, ['huodonghd']); + + call.succ({ + prize: selectPrize + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/yangchengmubiao/ApiOpen.ts b/src/api_s2c/event/yangchengmubiao/ApiOpen.ts new file mode 100644 index 0000000..89f91a9 --- /dev/null +++ b/src/api_s2c/event/yangchengmubiao/ApiOpen.ts @@ -0,0 +1,16 @@ +import { ApiCall } from "tsrpc"; +import { HuoDongFun } from "../../../public/huodongfun"; +import { ReqOpen, ResOpen } from "../../../shared/protocols/event/yangchengmubiao/PtlOpen"; +import { YangChengMuBiaofun } from "./fun"; + +export default async function (call: ApiCall) { + let _hdinfo = await HuoDongFun.getHdidInfo(call, call.req.hdid) + if (!_hdinfo || Object.keys(_hdinfo).length <= 0) { + // 无此活动 + return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + } + let _mydata = await YangChengMuBiaofun.getMyData(call, call.req.hdid) + let changedata = { mydata: _mydata, hdinfo: _hdinfo } + call.succ(changedata); +} + diff --git a/src/api_s2c/event/yangchengmubiao/ApiRec.ts b/src/api_s2c/event/yangchengmubiao/ApiRec.ts new file mode 100644 index 0000000..1ba2ab4 --- /dev/null +++ b/src/api_s2c/event/yangchengmubiao/ApiRec.ts @@ -0,0 +1,53 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from "../../../public/player"; +import { ReqRec, ResRec } from "../../../shared/protocols/event/yangchengmubiao/PtlRec"; +import { HongDianChange } from "../../hongdian/fun"; +import { YangChengMuBiaofun } from "./fun"; + +export default async function (call: ApiCall) { + // let hdids = await gethdids() + // if (!hdids.includes(call.req.hdid)) { + // // 活动时间过期 + // return call.error('', { code: -1, message: globalThis.lng.yangchengmubiao_1 }) + // } + let _yangchengcon = await YangChengMuBiaofun.getCon(call) + let _initCon = _yangchengcon[call.req.hdid] // 活动配置 + let _con = _initCon.data.tasklist[call.req.type][call.req.taskid] // 任务配置 + if (!_con) { + // 任务id 不存在 + return call.error('', { code: -2, message: globalThis.lng.yangchengmubiao_2 }) + } + + let _mydata = await YangChengMuBiaofun.getMyData(call, call.req.hdid) + if (_mydata.taskval[call.req.taskid] < _con.pval) { + // 任务未完成 + return call.error('', { code: -3, message: globalThis.lng.yangchengmubiao_3 }) + } + + if (_mydata.finishid[_con.type].includes(call.req.taskid)) { + // 任务已领取 + return call.error('', { code: -4, message: globalThis.lng.yangchengmubiao_4 }) + } + + _mydata.finishid[_con.type].push(call.req.taskid) + let _setData = {} + // 轮次任务重置 + if (_con.type == 2 && _mydata.lunci < _initCon.data.maxlun[1] && _mydata.finishid[call.req.type].length >= Object.keys(_initCon.data.tasklist[call.req.type]).length) { + _mydata = await YangChengMuBiaofun.refreTask(call, _mydata, call.req.hdid, 2) + _mydata.lunci += 1 + _setData["taskval"] = _mydata.taskval + _setData["lunci"] = _mydata.lunci + } + + // 设置任务改变数据 + _setData["finishid"] = _mydata.finishid + await YangChengMuBiaofun.setMyData(call.uid, call.req.hdid, { $set: _setData }) + + // 发奖 + let _prize: atn[] = _con.prize + await PlayerFun.sendPrize(call, _prize); + + let changedata = { mydata: _mydata, prize: _prize } + HongDianChange.sendChangeKey(call.uid, ['huodonghd']); + call.succ(changedata); +} \ No newline at end of file diff --git a/src/api_s2c/event/yangchengmubiao/fun.ts b/src/api_s2c/event/yangchengmubiao/fun.ts new file mode 100644 index 0000000..1a3ad36 --- /dev/null +++ b/src/api_s2c/event/yangchengmubiao/fun.ts @@ -0,0 +1,173 @@ +import { strict } from 'assert'; +import { ApiCall } from 'tsrpc'; +import { ReqAddHuoDong } from '../../../monopoly/protocols/PtlAddHuoDong'; +import { HuoDongFun } from '../../../public/huodongfun'; +import { TaskFun } from '../../../public/task'; +import { yangchengmubiao } from '../../../shared/protocols/event/yangchengmubiao/PtlOpen'; +import { PublicShared } from '../../../shared/public/public'; + + +export class YangChengMuBiaofun { + /**配置 */ + static async getCon(call: ApiCall) { + let _con: { [id: string]: ReqAddHuoDong } = {} + let _hd = await HuoDongFun.gethdList(call, 1) + for (let index = 0; index < _hd.length; index++) { + const element = _hd[index]; + if (element && element._id) delete element._id + _con[element.hdid] = element + } + return _con + } + + /**获取所有符合时间的活动 */ + static async gethdids(call: ApiCall) { + let _hdids = [] + let _hd = await HuoDongFun.gethdList(call, 1) + for (let index = 0; index < _hd.length; index++) { + const element = _hd[index]; + _hdids.push(element.hdid) + } + return _hdids + } + + /**获取我的数据 */ + static async getMyData(call: ApiCall, hdid: number) { + let db: any = await G.mongodb.cEvent(`yangchengmubiao${hdid}`).findOne({ uid: call.uid, type: `yangchengmubiao${hdid}`, hdid: hdid }); + if (!db) { + db = await this.initData(call, hdid) + await G.mongodb.cEvent(`yangchengmubiao${hdid}`).updateOne( + { uid: call.uid, type: `yangchengmubiao${hdid}`, hdid: hdid }, + { $set: db }, + { upsert: true } + ) + } + let { _id, ..._myData } = db + if (!PublicShared.chkSameDate(_myData.refresh, G.time)) { + // 刷新每日任务 + _myData = await this.refreTask(call, _myData, hdid) + _myData.refresh = G.time + await this.setMyData(call.uid, hdid, { $set: { refresh: _myData.refresh, finishid: _myData.finishid, taskval: _myData.taskval } }) + } + return _myData + } + + /**初始数据 */ + static async initData(call: ApiCall, hdid: number) { + let _initCon = await this.getCon(call) + let _con = _initCon[hdid] + let _r: yangchengmubiao = { + type: `yangchengmubiao${hdid}`, + uid: call.uid, + hdid: hdid, + taskval: await this.getTaskVal(call, hdid), + finishid: { + "1": [], + "2": [], + "3": [], + }, + refresh: G.time, + lunci: 1, + record: {} + } + if (_con.data.tasklist["4"] && Object.keys(_con.data.tasklist["4"]).length > 0) _r.finishid["4"] = [] + return _r + } + + /**设置数据 */ + static async setMyData(uid: string, hdid: number, set: {}) { + await G.mongodb.cEvent(`yangchengmubiao${hdid}`).updateOne( + { uid: uid, type: `yangchengmubiao${hdid}`, hdid: hdid }, + set + ) + } + + /**获取所有taskid 及对应的值 */ + static async getTaskVal(call: ApiCall, hdid: number) { + let _initCon = await this.getCon(call) + let _con = _initCon[hdid].data.tasklist + let _res = {} + + let _tasks = {} // 所有任务 taskid 为key + Object.values(_con).map(l => { + return Object.assign(_tasks, l) + }) + + for (let index = 0; index < Object.keys(_tasks).length; index++) { + const element = Object.keys(_tasks)[index]; + let _tmp = _tasks[element] + _tmp["id"] = element + _res[element] = await TaskFun.getTaskNval(call, _tmp) + } + return _res + } + + /**刷新每日任务 */ + static async refreTask(call: ApiCall, mydata: yangchengmubiao, hdid: number, type: 1 | 2 = 1) { + let _initCon = await this.getCon(call) + let _con = _initCon[hdid].data.tasklist[type] + if (!_con) return mydata + for (let index = 0; index < Object.keys(_con).length; index++) { + const element = Object.keys(_con)[index]; + let _tmp = _con[element] + if (_tmp.type != type) continue + + mydata.finishid[type] = [] + let _initVal = (_tmp?.zero == 1) ? 0 : await TaskFun.getTaskNval(call, _tmp) + mydata.taskval[element] = _initVal + } + return mydata + } + + /**设置任务 */ + static async setTaskVal(call: ApiCall, stype: number, val: number, chkCall: Function, chkval: number = 0, isinc: number = 0, alchangeVal: Function, arg) { + let hdids = await this.gethdids(call) + if (hdids.length <= 0) return // 活动过期,不计数 + let _initCon = await this.getCon(call) + for (let index = 0; index < hdids.length; index++) { + const hdid = hdids[index]; + let _con = _initCon[hdid].data.tasklist + let _tasks = {} + Object.values(_con).map(l => { + return Object.assign(_tasks, l) + }) + + let _setData = { + $inc: {}, + $set: {} + } + let isset = 0 + for (let indextask = 0; indextask < Object.keys(_tasks).length; indextask++) { + const ele = Object.keys(_tasks)[indextask]; + // 具体任务配置 + let _taskCon = _tasks[ele] + if (_taskCon.stype != stype) continue + + let _pval = _taskCon.pval + // 不符合任务要求 + if (!(await chkCall(_taskCon["cond"], chkval, arg))) continue + + // 根据需求改写 + val = await alchangeVal(call, _taskCon, val, arg) + + isset = 1 + if (isinc == 1) { // 累加 + _setData["$inc"][`taskval.${ele}`] = val + } else { + _setData["$set"][`taskval.${ele}`] = val + } + } + + // 设置任务 + if (isset == 1) { + await G.mongodb.collection('event').updateMany( + { uid: call.uid, type: { $regex: "yangchengmubiao" }, hdid: parseInt(hdid) }, + _setData + ) + } + } + } + + + +} \ No newline at end of file diff --git a/src/api_s2c/event/yibaichou/ApiOpen.ts b/src/api_s2c/event/yibaichou/ApiOpen.ts new file mode 100644 index 0000000..e7de25b --- /dev/null +++ b/src/api_s2c/event/yibaichou/ApiOpen.ts @@ -0,0 +1,16 @@ +import { ApiCall } from "tsrpc"; +import { ReqOpen, ResOpen } from "../../../shared/protocols/event/yibaichou/PtlOpen"; +import { PublicShared } from "../../../shared/public/public"; + +export default async function (call: ApiCall) { + + let [isOpen, tips] = PublicShared.getOpenCond(call, "yibaichou") + if (!isOpen) return call.error('', { code: -1, message: tips }); + + let db = await G.mongodb.cEvent('yibaichou').findOne({ uid: call.uid, type: 'yibaichou' }); + + call.succ({ + loginRec: db?.loginRec || [], + onlineRec: db?.onlineRec || [] + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/yibaichou/ApiRec.ts b/src/api_s2c/event/yibaichou/ApiRec.ts new file mode 100644 index 0000000..fa8bbaf --- /dev/null +++ b/src/api_s2c/event/yibaichou/ApiRec.ts @@ -0,0 +1,38 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqRec, ResRec } from "../../../shared/protocols/event/yibaichou/PtlRec"; +import { HongDianChange } from "../../hongdian/fun"; + +export default async function (call: ApiCall) { + let type = call.req.type; + let index = call.req.index; + + let conf = G.gc.yibaichou[type + 'Prize'][index] as _gcType['yibaichou']['loginPrize'][0]; + if (!conf) return call.error('', { code: -1 }); + + let finish = type == 'login' ? call.conn.gud.loginDays : call.conn.gud.onlineTime; + if (finish < conf.total) return call.error('', { code: -2 }); + + let db = await G.mongodb.cEvent('yibaichou').findOne({ uid: call.uid, type: 'yibaichou' }); + let recArr: number[] = db?.[type + 'Rec'] || []; + if (recArr.includes(index)) return call.error('', { code: -3 }); + + await PlayerFun.sendPrize(call, conf.prize); + + recArr.push(index); + G.mongodb.cEvent('yibaichou').updateOne( + { uid: call.uid, type: 'yibaichou' }, + { $set: G.mongodb.createTreeObj({ key: type + 'Rec', val: recArr }) }, + { upsert: true } + ); + + if (db?.loginRec?.length >= G.gc.yibaichou.loginPrize.length) { + G.mongodb.collection('syncBtns').updateOne({ uid: call.uid }, { $set: { 'yibaichou.active': false } }, { upsert: true }); + } + + HongDianChange.sendChangeKey(call.uid, ['yibaichouhd']) + + call.succ({ + prize: conf.prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/yibaichou/ApiRecAll.ts b/src/api_s2c/event/yibaichou/ApiRecAll.ts new file mode 100644 index 0000000..61a9cc5 --- /dev/null +++ b/src/api_s2c/event/yibaichou/ApiRecAll.ts @@ -0,0 +1,47 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqRecAll, ResRecAll } from "../../../shared/protocols/event/yibaichou/PtlRecAll"; +import { prizeType } from '../../../shared/protocols/type'; + +export default async function (call: ApiCall) { + + let db = await G.mongodb.cEvent('yibaichou').findOne({ uid: call.uid, type: 'yibaichou' }); + let prize: prizeType[] = []; + let loginRec = db?.loginRec || []; + let onlineRec = db?.onlineRec || []; + + G.gc.yibaichou.loginPrize.forEach((t, index) => { + if (call.conn.gud.loginDays >= t.total && !loginRec.includes(index)) { + prize.push(...t.prize); + loginRec.push(index); + } + }); + + G.gc.yibaichou.onlinePrize.forEach((t, index) => { + if (call.conn.gud.onlineTime >= t.total && !onlineRec.includes(index)) { + prize.push(...t.prize); + onlineRec.push(index); + } + }); + + if (prize.length > 0) { + prize = await PlayerFun.sendPrize(call, prize); + G.mongodb.cEvent('yibaichou').updateOne( + { uid: call.uid, type: 'yibaichou' }, + { $set: { loginRec: loginRec, onlineRec: onlineRec } }, + { upsert: true } + ); + } + + if (loginRec?.length >= G.gc.yibaichou.loginPrize.length) { + G.mongodb.collection('syncBtns').updateOne({ uid: call.uid }, { $set: { 'yibaichou.active': false } }, { upsert: true }); + } + + call.succ({ + prize: prize, + change: { + loginRec: loginRec, + onlineRec: onlineRec + } + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/yuedujijin/ApiOpen.ts b/src/api_s2c/event/yuedujijin/ApiOpen.ts new file mode 100644 index 0000000..cca950f --- /dev/null +++ b/src/api_s2c/event/yuedujijin/ApiOpen.ts @@ -0,0 +1,50 @@ +import {ApiCall} from "tsrpc"; +import {PayFun} from '../../../public/pay'; +import {ReqOpen, ResOpen} from "../../../shared/protocols/event/yuedujijin/PtlOpen"; +import {player} from '../../../shared/protocols/user/type'; + +export default async function (call: ApiCall) { + let type = call.req.type as `${number}jijin`; + if (!G.gc.pay[type]) return call.errorCode(-1); + + await checkNewRound(call, type) + + let db = await G.mongodb.cEvent(type).findOne({uid: call.uid, type: type}); + + let recLength = db?.rec?.length - (db?.round || 0) * 30 + let rec = recLength ? (db?.rec?.slice(-recLength) || []) : [] + + call.succ({ + rec: rec, + days: db?.days - (db?.round || 0) * 30 || 0, + round: db?.round + }); +} + +export async function addDay(player: player) { + for (let v of G.gc.yuedujijin) { + if ((await PayFun.getPayLog(player.uid, v.payId)).length > 0) { + let id = v.payId as `${number}jijin`; + G.mongodb.cEvent(id).updateOne( + {uid: player.uid, type: id}, + {$inc: {days: 1}}, + {upsert: true} + ); + } + } +} + +export async function checkNewRound(call, type) { + let db = await G.mongodb.cEvent(type).findOne({uid: call.uid, type: type}); + let recLength = db?.rec?.length - (db?.round || 0) * 30 + if (recLength==30) { + await G.mongodb.cEvent(type).updateOne({uid: call.uid, type: type}, { + $set: { + days: Math.ceil(db?.rec?.length / 30) * 30 - 1, + round: Math.ceil(db?.rec?.length / 30) + } + }, {upsert: true}); + + PayFun.setPayLog(call.uid, {payId: type, val: []}); + } +} \ No newline at end of file diff --git a/src/api_s2c/event/yuedujijin/ApiRec.ts b/src/api_s2c/event/yuedujijin/ApiRec.ts new file mode 100644 index 0000000..039f191 --- /dev/null +++ b/src/api_s2c/event/yuedujijin/ApiRec.ts @@ -0,0 +1,28 @@ +import {ApiCall} from "tsrpc"; +import {PlayerFun} from '../../../public/player'; +import {ReqRec, ResRec} from "../../../shared/protocols/event/yuedujijin/PtlRec"; +import {PayFun} from "../../../public/pay"; + +export default async function (call: ApiCall) { + let type = call.req.type as `${number}jijin`; + let conf = G.gc.yuedujijin.find(v => v.payId == type); + if (!conf) return call.errorCode(-1); + if (!conf.prize[call.req.index]) return call.errorCode(-2); + + let db = await G.mongodb.cEvent(type).findOne({uid: call.uid, type: type}); + let day = db?.days - (db?.round || 0) * 30 || 0; + let recLength = db?.rec?.length % 30 + let rec = recLength ? (db?.rec?.slice(-recLength % 30) || []) : [] + if (call.req.index > day) return call.errorCode(-3); + if (rec.includes(call.req.index)) return call.errorCode(-4); + + + G.mongodb.cEvent(type).updateOne({uid: call.uid, type: type}, {$push: {rec: call.req.index}}, {upsert: true}); + + + await PlayerFun.sendPrize(call, [].concat(conf.prize[call.req.index])); + + call.succ({ + prize: [].concat(conf.prize[call.req.index]) + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/zhanling/ApiBuyLv.ts b/src/api_s2c/event/zhanling/ApiBuyLv.ts new file mode 100644 index 0000000..f0485da --- /dev/null +++ b/src/api_s2c/event/zhanling/ApiBuyLv.ts @@ -0,0 +1,35 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqBuyLv, ResBuyLv } from "../../../shared/protocols/event/zhanling/PtlBuyLv"; +import { HongDianChange } from "../../hongdian/fun"; + +export default async function (call: ApiCall) { + let lv = call.req.lv; + + if (lv < 1) return call.error(globalThis.lng.pata_getprize_1); + + let data = await G.mongodb.cEvent('zhanling').findOne({ uid: call.uid, type: 'zhanling' }); + + if (G.gc.zhanling.lv[data.lv + lv] == undefined) return call.error(globalThis.lng.pata_getprize_1); + + let need = G.gc.zhanling.lvNeed.map(need => { return { ...need, n: need.n * lv }; }); + + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + + let change: ResBuyLv['change'] = {}; + + change.lv = data.lv + lv; + change.exp = G.gc.zhanling.lv[change.lv]; + + G.mongodb.cEvent('zhanling').updateOne( + { uid: call.uid, type: 'zhanling' }, + { $set: change } + ); + + HongDianChange.sendChangeKey(call.uid, ['zhuishalinghd']) + + call.succ({ + change: change + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/zhanling/ApiOpen.ts b/src/api_s2c/event/zhanling/ApiOpen.ts new file mode 100644 index 0000000..023a3ff --- /dev/null +++ b/src/api_s2c/event/zhanling/ApiOpen.ts @@ -0,0 +1,65 @@ +import { ApiCall } from "tsrpc"; +import { ZhanLingTasks } from '../../../public/zhanling'; +import { ReqOpen, ResOpen } from "../../../shared/protocols/event/zhanling/PtlOpen"; +import { player } from '../../../shared/protocols/user/type'; +import { PublicShared } from '../../../shared/public/public'; + +export default async function (call: ApiCall) { + + let data = await G.mongodb.cEvent('zhanling').findOne({ uid: call.uid, type: 'zhanling' }); + + + + if (data && PublicShared.getToDayZeroTime() > data.refreshTime) { + G.mongodb.cEvent('zhanling').updateOne({ uid: call.uid, type: 'zhanling' }, { $set: { refreshTime: G.time, taskRec: [] } }); + } + + let tasks = G.gc.zhanling.task.map(t => { return { type: t.type as 'day' | 'week' | 'round', key: t.taskId }; }); + let taskFinished = await ZhanLingTasks.getLog(call.uid, tasks); + + let result: { rec: {}; isPay: boolean; taskRec: any[]; taskFinished: k_v; refreshTime: number; lv: number; exp: number } = { + ...data, + taskFinished: taskFinished + } + + if (!data){ + result = { + lv: 1, + exp: 0, + rec: {}, + isPay: false, + taskRec: [], + refreshTime: G.time, + taskFinished: taskFinished + } + G.mongodb.cEvent('zhanling').updateOne( + {uid: call.uid, type: 'zhanling'}, + { + $set: { + lv: 1, + exp: 0, + rec: {}, + isPay: false, + taskRec: [], + refreshTime: G.time + } + }, + {upsert: true} + ); + } + + call.succ(result); +} + +export async function payZhanLing(player: player) { + let zlData = await G.mongodb.cEvent('zhanling').findOne({ uid: player.uid, type: 'zhanling' }); + let curLv = zlData?.lv || 1; + let maxLv = Number(Object.keys(G.gc.zhanling.lv).slice(-1)[0]); + let addLv = maxLv - curLv >= G.gc.zhanling.payAddLv ? G.gc.zhanling.payAddLv : maxLv - curLv; + + await G.mongodb.cEvent('zhanling').updateOne( + { uid: player.uid, type: 'zhanling' }, + { $set: { isPay: true, exp: G.gc.zhanling.lv[curLv + addLv], lv: curLv + addLv } }, + { upsert: true } + ); +} \ No newline at end of file diff --git a/src/api_s2c/event/zhanling/ApiRecPrize.ts b/src/api_s2c/event/zhanling/ApiRecPrize.ts new file mode 100644 index 0000000..b5218fc --- /dev/null +++ b/src/api_s2c/event/zhanling/ApiRecPrize.ts @@ -0,0 +1,61 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqRecPrize, ResRecPrize } from "../../../shared/protocols/event/zhanling/PtlRecPrize"; +import { PublicShared } from '../../../shared/public/public'; +import { HongDianChange } from "../../hongdian/fun"; + +export default async function (call: ApiCall) { + if (call.req.recIndexs.length < 1) return call.error(globalThis.lng.pata_getprize_1); + + let conf = G.gc.zhanling.prize; + let isErr = conf.map((c, i) => i).intersection(call.req.recIndexs).length != call.req.recIndexs.length; + + if (isErr) return call.error(globalThis.lng.pata_getprize_1); + + let data = await G.mongodb.cEvent('zhanling').findOne({ uid: call.uid, type: 'zhanling' }); + let rec = data.rec; + let val = data.lv; + let isPay = data.isPay; + let prize: atn[] = []; + + for (let index of call.req.recIndexs) { + if (val < conf[index].lv) return call.error(globalThis.lng.event_jijin_1); + + let hasPt = conf[index].pt.length > 0; + let hasTq = conf[index].tq.length > 0; + let getPt = !hasPt || rec[index]?.pt == true; + let getTq = !hasTq || rec[index]?.tq == true; + + if (getPt && !getTq && !isPay) return call.error(globalThis.lng.event_jijin_2); + if (getPt && getTq) return call.error(globalThis.lng.event_jijin_3); + + if (!rec[index]) rec[index] = { pt: false, tq: false }; + + if (hasPt && !getPt) { + prize.push(...conf[index].pt); + rec[index].pt = true; + } + + if (hasTq && !getTq && isPay) { + prize.push(...conf[index].tq); + rec[index].tq = true; + } + } + + prize = PublicShared.mergePrize(prize); + await PlayerFun.sendPrize(call, prize); + + G.mongodb.cEvent('zhanling').updateOne( + { uid: call.uid, type: 'zhanling' }, + { $set: { rec: rec } } + ); + + HongDianChange.sendChangeKey(call.uid, ['zhuishalinghd']) + + call.succ({ + prize: prize, + change: { + rec: rec + } + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/zhanling/ApiRecTask.ts b/src/api_s2c/event/zhanling/ApiRecTask.ts new file mode 100644 index 0000000..d6ede99 --- /dev/null +++ b/src/api_s2c/event/zhanling/ApiRecTask.ts @@ -0,0 +1,57 @@ +import { ApiCall } from "tsrpc"; +import { eventType } from '../../../module/collection_event'; +import { PlayerFun } from '../../../public/player'; +import { ZhanLingTasks } from '../../../public/zhanling'; +import { ReqRecTask, ResRecTask } from "../../../shared/protocols/event/zhanling/PtlRecTask"; +import { HongDianChange } from "../../hongdian/fun"; + +export default async function (call: ApiCall) { + let conf = G.gc.zhanling.task[call.req.index]; + + if (!conf) return call.error(globalThis.lng.event_kfkh_11); + + let data = await G.mongodb.cEvent('zhanling').findOne({ uid: call.uid, type: 'zhanling' }); + + if (data.taskRec.includes(call.req.index)) return call.error(globalThis.lng.event_kfkh_12); + + let taskVal = await ZhanLingTasks.getLog(call.uid, { type: conf.type as any, key: conf.taskId }); + + if (taskVal < conf.total) return call.error(globalThis.lng.event_kfkh_13); + + conf.prize && await PlayerFun.sendPrize(call, conf.prize); + + G.mongodb.cEvent('zhanling').updateOne( + { uid: call.uid, type: 'zhanling' }, + { $push: { taskRec: call.req.index } } + ); + + HongDianChange.sendChangeKey(call.uid, ['zhuishalinghd']); + + call.succ({ + prize: conf.prize || [], + change: await addExp(call.uid, conf.exp, data) + }); +} + +export async function addExp(uid: string, exp: number, data?: eventType['zhanling']) { + if (!data) data = await G.mongodb.cEvent('zhanling').findOne({ uid: uid, type: 'zhanling' }); + let change: ResRecTask['change'] = {}; + + change.exp = data.exp + exp; + if (G.gc.zhanling.lv[data.lv + 1] && change.exp >= G.gc.zhanling.lv[data.lv + 1]) { + let addLv = 1; + + while (G.gc.zhanling.lv[data.lv + addLv] <= change.exp) { + addLv++; + } + + change.lv = data.lv + addLv; + } + + G.mongodb.cEvent('zhanling').updateOne( + { uid: uid, type: 'zhanling' }, + { $set: change } + ); + + return change; +} \ No newline at end of file diff --git a/src/api_s2c/event/zhoulibao/ApiOpen.ts b/src/api_s2c/event/zhoulibao/ApiOpen.ts new file mode 100644 index 0000000..5b25f7f --- /dev/null +++ b/src/api_s2c/event/zhoulibao/ApiOpen.ts @@ -0,0 +1,27 @@ +import { ApiCall } from "tsrpc"; +import { PayFun } from '../../../public/pay'; +import { ReqOpen, ResOpen } from "../../../shared/protocols/event/zhoulibao/PtlOpen"; + +export default async function (call: ApiCall) { + + let db = await G.mongodb.cEvent('zhoulibao').findOne({ uid: call.uid, type: 'zhoulibao' }); + + if (!db) { + G.mongodb.cEvent('zhoulibao').updateOne( + { uid: call.uid, type: 'zhoulibao' }, + { $set: { sTime: G.time } }, + { upsert: true } + ); + } else if (db.sTime + G.gc.dixiaheishi.zhoulibao.time < G.time) { + db.sTime = G.time; + G.mongodb.cEvent('zhoulibao').updateOne( + { uid: call.uid, type: 'zhoulibao' }, + { $set: { sTime: G.time } }, + ); + PayFun.setPayLog(call.uid, ...G.gc.dixiaheishi.zhoulibao.pays.map(p => { return { payId: p.payId, val: [] }; })); + } + + call.succ({ + sTime: db?.sTime || G.time + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/zixuanlibao/ApiBuy.ts b/src/api_s2c/event/zixuanlibao/ApiBuy.ts new file mode 100644 index 0000000..910e00e --- /dev/null +++ b/src/api_s2c/event/zixuanlibao/ApiBuy.ts @@ -0,0 +1,40 @@ +import { ApiCall } from "tsrpc"; +import { HuoDongFun } from "../../../public/huodongfun"; +import { PlayerFun } from '../../../public/player'; +import { ReqBuy, ResBuy } from "../../../shared/protocols/event/zixuanlibao/PtlBuy"; + +export default async function (call: ApiCall) { + let _hdinfo = await HuoDongFun.getHdidInfo(call, call.req.hdid) + if (!_hdinfo || Object.keys(_hdinfo).length <= 0) { + // 无此活动 + return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + } + + let _dbType: `zixuanlibao${number}` = `zixuanlibao${call.req.hdid}` + + let conf = _hdinfo.data.gift[call.req.index]; + if (!conf || conf.payId) return call.errorCode(-1); + + let selectPrize = conf.prize.map((v, i) => v[call.req.prizeIndex[i]]).filter(p => !!p); + if (selectPrize.length < conf.prize.length) return call.errorCode(-2); + + let buyNum = (await G.mongodb.cEvent(_dbType).findOne({ uid: call.uid, type: _dbType }))?.record?.[call.req.index] || 0; + if (buyNum >= conf.buyNum) return call.errorCode(-3); + + if (conf.need.length > 0) { + await PlayerFun.checkNeedIsMeet(call, conf.need); + await PlayerFun.cutNeed(call, conf.need); + } + + await PlayerFun.sendPrize(call, selectPrize); + + G.mongodb.cEvent(_dbType).updateOne( + { uid: call.uid, type: _dbType }, + { $inc: G.mongodb.createTreeObj({ key: `record.${call.req.index}`, val: 1 }) }, + { upsert: true } + ); + + call.succ({ + prize: selectPrize + }); +} \ No newline at end of file diff --git a/src/api_s2c/event/zixuanlibao/ApiOpen.ts b/src/api_s2c/event/zixuanlibao/ApiOpen.ts new file mode 100644 index 0000000..2b1016f --- /dev/null +++ b/src/api_s2c/event/zixuanlibao/ApiOpen.ts @@ -0,0 +1,19 @@ +import { ApiCall } from "tsrpc"; +import { HuoDongFun } from "../../../public/huodongfun"; +import { ReqOpen, ResOpen } from "../../../shared/protocols/event/zixuanlibao/PtlOpen"; + +export default async function (call: ApiCall) { + let _hdinfo = await HuoDongFun.getHdidInfo(call, call.req.hdid) + if (!_hdinfo || Object.keys(_hdinfo).length <= 0) { + // 无此活动 + return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + } + + let _dbType: `zixuanlibao${number}` = `zixuanlibao${call.req.hdid}` + let db = await G.mongodb.cEvent(_dbType).findOne({ uid: call.uid, type: _dbType }); + + call.succ({ + record: db?.record || {}, + hdinfo: _hdinfo + }); +} \ No newline at end of file diff --git a/src/api_s2c/eventlist/ApihdGetList.ts b/src/api_s2c/eventlist/ApihdGetList.ts new file mode 100644 index 0000000..24dfc45 --- /dev/null +++ b/src/api_s2c/eventlist/ApihdGetList.ts @@ -0,0 +1,11 @@ +import {ApiCall} from "tsrpc"; +import {HuoDongFun} from "../../public/huodongfun"; +import {ReqhdGetList, ReshdGetList} from "../../shared/protocols/eventlist/PtlhdGetList"; +import {HeroShared} from "../../shared/public/hero"; + +export default async function (call: ApiCall) { + + let _hdList = await HuoDongFun.gethdList(call) + + call.succ({hdlist: _hdList}); +} \ No newline at end of file diff --git a/src/api_s2c/friend/ApiApply.ts b/src/api_s2c/friend/ApiApply.ts new file mode 100644 index 0000000..1682be9 --- /dev/null +++ b/src/api_s2c/friend/ApiApply.ts @@ -0,0 +1,23 @@ +import { ApiCall } from "tsrpc"; +import { FriendManage } from '../../public/friend/manage'; +import { ReqApply, ResApply } from "../../shared/protocols/friend/PtlApply"; + +export default async function (call: ApiCall) { + const my = await FriendManage.getFriend(call.uid); + + if (my.data.myApplyList?.includes(call.uid)) return call.error(globalThis.lng.friend_1); + if (my.data.friendList.includes(call.req.uid)) return call.error(globalThis.lng.friend_2); + if (my.data.blacklist.includes(call.req.uid)) return call.error(globalThis.lng.friend_3); + if (my.data.friendList.length >= G.gc.friend.maxFriendNum) return call.error(globalThis.lng.friend_4); + + const he = await FriendManage.getFriend(call.req.uid); + if (he) { + if (he.data.friendList.length >= G.gc.friend.maxFriendNum) return call.error('', { code: -1, message: globalThis.lng.friend_5 }); + if (he.data.applyList.includes(call.uid)) return call.error('', { code: -2, message: globalThis.lng.friend_6 }); + if (he.data.blacklist.includes(call.uid)) return call.error('', { code: -3, message: globalThis.lng.friend_7 }); + + he.addApply(call.uid); + } + my.addMyApply(call.req.uid); + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/friend/ApiDel.ts b/src/api_s2c/friend/ApiDel.ts new file mode 100644 index 0000000..db9aa38 --- /dev/null +++ b/src/api_s2c/friend/ApiDel.ts @@ -0,0 +1,17 @@ +import { ApiCall } from "tsrpc"; +import { FriendManage } from '../../public/friend/manage'; +import { ReqDel, ResDel } from "../../shared/protocols/friend/PtlDel"; + +export default async function (call: ApiCall) { + const my = await FriendManage.getFriend(call.uid); + + if (!my.data.friendList.includes(call.req.uid)) return call.error(globalThis.lng.friend_8); + + my.delFriend(call.req.uid); + + const he = await FriendManage.getFriend(call.req.uid); + + he?.delFriend(call.uid); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/friend/ApiGift.ts b/src/api_s2c/friend/ApiGift.ts new file mode 100644 index 0000000..e3f1915 --- /dev/null +++ b/src/api_s2c/friend/ApiGift.ts @@ -0,0 +1,53 @@ +import { ApiCall } from "tsrpc"; +import { FriendManage } from '../../public/friend/manage'; +import { PlayerFun } from '../../public/player'; +import { ReqGift, ResGift } from "../../shared/protocols/friend/PtlGift"; +import { PublicShared } from '../../shared/public/public'; + +export default async function (call: ApiCall) { + let prize: atn[] = []; + let my = await FriendManage.getFriend(call.uid); + let change: ResGift['change'] = {}; + + if (call.req.type != 'yijian') { + if (!call.req.uid) return call.error(globalThis.lng.friend_9); + if (!my.data.friendList.includes(call.req.uid)) return call.error(globalThis.lng.friend_9); + } + + switch (call.req.type) { + case 'get': + if (my.data.recGift.includes(call.req.uid)) return call.error(globalThis.lng.friend_10); + if (my.data.recGift.length >= G.gc.friend.maxGetGiftNum) return call.error(globalThis.lng.friend_11); + if (!my.data.getGift[call.req.uid] || my.data.getGift[call.req.uid] < PublicShared.getToDayZeroTime()) return call.error(globalThis.lng.friend_12); + prize.push(...PublicShared.randomDropGroup(G.gc.friend.giftPrize)); + my.recGift(call.req.uid); + change.recGift = my.data.recGift; + break; + case 'send': + if (my.data.sendGift.includes(call.req.uid)) return call.error(globalThis.lng.friend_13); + if (my.data.sendGift.length >= G.gc.friend.maxSendGiftNum) return call.error(globalThis.lng.friend_14); + my.sendGift(call.req.uid); + change.sendGift = my.data.sendGift; + break; + case 'yijian': + if (my.data.recGift.length < G.gc.friend.maxGetGiftNum && Object.keys(my.data.getGift).length > my.data.recGift.length) { + let recUids = Object.keys(my.data.getGift).difference(my.data.recGift).slice(0, G.gc.friend.maxGetGiftNum - my.data.recGift.length); + prize.push(...PublicShared.randomDropGroup(G.gc.friend.giftPrize, recUids.length)); + my.recGift(recUids); + change.recGift = my.data.recGift; + } + if (my.data.sendGift.length < G.gc.friend.maxSendGiftNum && my.data.sendGift.length < my.data.friendList.length) { + let sendUids = my.data.friendList.difference(my.data.sendGift).slice(0, G.gc.friend.maxSendGiftNum - my.data.sendGift.length); + my.sendGift(sendUids); + change.sendGift = my.data.sendGift; + } + break; + } + + prize.length > 0 && await PlayerFun.sendPrize(call, prize); + + call.succ({ + prize: prize, + change: change + }); +} \ No newline at end of file diff --git a/src/api_s2c/friend/ApiList.ts b/src/api_s2c/friend/ApiList.ts new file mode 100644 index 0000000..9f89283 --- /dev/null +++ b/src/api_s2c/friend/ApiList.ts @@ -0,0 +1,40 @@ +import {ApiCall} from "tsrpc"; +import {FriendManage} from '../../public/friend/manage'; +import {ReqList, ResList} from "../../shared/protocols/friend/PtlList"; +import {player} from "../../shared/protocols/user/type"; + +export default async function (call: ApiCall) { + const my = await FriendManage.getFriend(call.uid); + var res:player[] = [] + switch (call.req) { + case 'tuijian': + let noFindList = [...my.data.friendList, ...my.data.blacklist, call.uid] + res = await G.mongodb.collection('user').aggregate([ + {$match: {uid: {$nin: noFindList}}}, + {$sample: {size: G.gc.friend.tuijianNum}} + ]).toArray(); + break; + case 'friend': + res = await G.redis.gets('user', ...my.data.friendList.map(uid => [uid] as [string])) + break; + case 'apply': + // 预防申请列表出现脏数据(过滤已添加好友) + res = await G.redis.gets('user', ...my.data.applyList.filter(uid => my.data.friendList.indexOf(uid) == -1).map(uid => [uid] as [string])); + break; + case 'black': + res = await G.redis.gets('user', ...my.data.blacklist.map(uid => [uid] as [string])) + break; + + } + // 排序:在线 > 离线时间 + res.sort((a, b) => { + let x = a.loginTime > a.logoutTime ? 1 : a.logoutTime + let y = b.loginTime > b.logoutTime ? 1 : b.logoutTime + return x - y + }) + return call.succ(res) +} + + + + diff --git a/src/api_s2c/friend/ApiOpen.ts b/src/api_s2c/friend/ApiOpen.ts new file mode 100644 index 0000000..f5879fb --- /dev/null +++ b/src/api_s2c/friend/ApiOpen.ts @@ -0,0 +1,14 @@ +import { ApiCall } from "tsrpc"; +import { FriendManage } from '../../public/friend/manage'; +import { ReqOpen, ResOpen } from "../../shared/protocols/friend/PtlOpen"; +import { PublicShared } from '../../shared/public/public'; + +export default async function (call: ApiCall) { + const my = await FriendManage.getFriend(call.uid); + + if (PublicShared.getToDayZeroTime() > my.data.refreshTime) { + my.refreshTime(); + } + + call.succ(my.data); +} \ No newline at end of file diff --git a/src/api_s2c/friend/ApiRespond.ts b/src/api_s2c/friend/ApiRespond.ts new file mode 100644 index 0000000..f71e900 --- /dev/null +++ b/src/api_s2c/friend/ApiRespond.ts @@ -0,0 +1,27 @@ +import { ApiCall } from "tsrpc"; +import { FriendManage } from '../../public/friend/manage'; +import { ReqRespond, ResRespond } from "../../shared/protocols/friend/PtlRespond"; + +export default async function (call: ApiCall) { + const my = await FriendManage.getFriend(call.uid); + + if (!my.data.applyList.includes(call.req.uid)) return call.error(globalThis.lng.friend_15); + + const he = await FriendManage.getFriend(call.req.uid); + + if (call.req.agree) { + if (my.data.friendList.includes(call.req.uid)) return call.error(globalThis.lng.friend_16); + if (my.data.blacklist.includes(call.req.uid)) return call.error(globalThis.lng.friend_17); + if (my.data.friendList.length >= G.gc.friend.maxFriendNum) return call.error(globalThis.lng.friend_18); + + if (he) { + if (he.data.friendList.length >= G.gc.friend.maxFriendNum) return call.error(globalThis.lng.friend_19); + he.addFriend(call.uid); + } + + my.addFriend(call.req.uid); + } + my.delApply(call.req.uid); + he?.delMyApply(call.uid); + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/friend/ApiRmBlackList.ts b/src/api_s2c/friend/ApiRmBlackList.ts new file mode 100644 index 0000000..ec2c9af --- /dev/null +++ b/src/api_s2c/friend/ApiRmBlackList.ts @@ -0,0 +1,23 @@ +import { ApiCall } from "tsrpc"; +import { FriendManage } from '../../public/friend/manage'; +import { ReqRmBlackList, ResRmBlackList } from "../../shared/protocols/friend/PtlRmBlackList"; + +export default async function (call: ApiCall) { + const my = await FriendManage.getFriend(call.uid); + + if (call.req.rm) { + if (!my.data.blacklist.includes(call.req.uid)) return call.error(globalThis.lng.friend_20); + my.delBlack(call.req.uid); + } else { + const he = await FriendManage.getFriend(call.req.uid); + + if (he) { + if (my.data.blacklist.includes(call.req.uid)) return call.error(globalThis.lng.friend_21); + if (my.data.friendList.includes(call.req.uid)) my.delFriend(call.req.uid); + if (he.data.friendList.includes(call.uid)) he.delFriend(call.uid); + my.addBlack(call.req.uid); + } + } + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/friend/ApiSearch.ts b/src/api_s2c/friend/ApiSearch.ts new file mode 100644 index 0000000..e15f2a1 --- /dev/null +++ b/src/api_s2c/friend/ApiSearch.ts @@ -0,0 +1,11 @@ +import { ApiCall } from "tsrpc"; +import { ReqSearch, ResSearch } from "../../shared/protocols/friend/PtlSearch"; + +export default async function (call: ApiCall) { + + let player = await G.mongodb.collection('user').findOne({ name: call.req.name }); + + if (!player) return call.error('', { code: -1, message: globalThis.lng.friend_22 }); + + call.succ(player); +} \ No newline at end of file diff --git a/src/api_s2c/ganbutexun/ApiChallenge.ts b/src/api_s2c/ganbutexun/ApiChallenge.ts new file mode 100644 index 0000000..d4f0c55 --- /dev/null +++ b/src/api_s2c/ganbutexun/ApiChallenge.ts @@ -0,0 +1,73 @@ +import { ApiCall } from "tsrpc"; +import { FightFun } from '../../public/fight'; +import { PlayerFun } from "../../public/player"; +import { formatNpcData } from '../../shared/fightControl/fightFun'; +import { ReqChallenge, ResChallenge } from "../../shared/protocols/ganbutexun/PtlChallenge"; + +export default async function (call: ApiCall) { + let heroid = call.req.id; + let conf = G.gc.ganbutexun[heroid]; + // 判断开启条件 + // 判断关卡进度 TODO + let isUnlock = Object.entries(conf.cond).every(v => call.conn.gud[v[0]] >= v[1]); + if (!isUnlock) { + return call.error('', { code: -1 }); + } + let need = [conf.need]; + await PlayerFun.checkNeedIsMeet(call, need); + // 战斗 TODO + + let prize = []; + let addnum = 0; + let fightNum = (await G.mongodb.collection('gbtx').findOne({ uid: call.uid }))?.fightNum?.[call.req.id] || 0; + fightNum + 1; + + let lv = fightNum % 6 + fightNum; + let npc = formatNpcData(conf.battle, null, lv); + const result = FightFun.fight([await call.conn.getDefaultFightData(), npc]); + const isWin = result.winSide == 0; + + if (isWin) { + addnum = G.gc.common.gbtxcom.gbtxadd; + + let data = await G.redis.get('gbtx', call.uid, 'luck'); + let prizeArr = JSON.parse(JSON.stringify(conf.prize)); + let obj = {}; + obj['luck.' + call.req.id] = addnum; + data[call.req.id] = data[call.req.id] || 0; + prize = (data[call.req.id] > 0 && data[call.req.id] % 6 == 5) ? prizeArr.map((item) => { + item.n *= 2; + return item; + }) : prizeArr; + data[call.req.id] += addnum; + G.redis.set('gbtx', call.uid, 'luck', data); + + await PlayerFun.cutNeed(call, need); + await PlayerFun.addItem(call, prize); + + G.mongodb.collection('gbtx').updateOne( + { uid: call.uid }, + { + $inc: obj + }, + { + upsert: true + } + ); + } + + G.mongodb.collection('gbtx').updateOne( + { uid: call.uid }, + { + $inc: G.mongodb.createTreeObj({ key: `fightNum.${call.req.id}`, val: 1 }) + }, + { + upsert: true + } + ); + return call.succ({ + addluck: addnum, + prize: prize, + fightobj: result + }); +} \ No newline at end of file diff --git a/src/api_s2c/ganbutexun/ApiOpen.ts b/src/api_s2c/ganbutexun/ApiOpen.ts new file mode 100644 index 0000000..5793de8 --- /dev/null +++ b/src/api_s2c/ganbutexun/ApiOpen.ts @@ -0,0 +1,14 @@ +import { ApiCall } from "tsrpc"; +import { ReqOpen, ResOpen } from "../../shared/protocols/ganbutexun/PtlOpen"; + +export default async function (call: ApiCall) { + // 返回幸运值 + + let data = await G.mongodb.collection('gbtx').findOne({ uid: call.uid }) || { luck: {}, _id: null, uid: '', fightNum: {} }; + let { _id, uid, ...ops } = data; + + G.redis.set('gbtx', call.uid, ops); + call.succ({ + luck: data.luck + }); +} \ No newline at end of file diff --git a/src/api_s2c/ganhai/ApiFast.ts b/src/api_s2c/ganhai/ApiFast.ts new file mode 100644 index 0000000..566b31b --- /dev/null +++ b/src/api_s2c/ganhai/ApiFast.ts @@ -0,0 +1,30 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ZhanLingTasks } from '../../public/zhanling'; +import { ReqFast, ResFast } from "../../shared/protocols/ganhai/PtlFast"; +import { HongDianChange } from "../hongdian/fun"; +import { GanHaiRed, calculatePrize } from './ApiOpen'; + +export default async function (call: ApiCall) { + let dbData = await G.mongodb.collection('ganhai').findOne({ uid: call.uid }); + + if (dbData.ship == null) return call.error('', { code: -1 }); + if (dbData.ship.sTime + G.gc.ganhai.ships[dbData.ship.index].time < G.time) return call.error('', { code: -2 }); + + await PlayerFun.checkNeedIsMeet(call, G.gc.ganhai.ships[dbData.ship.index].kshsNeed); + await PlayerFun.cutNeed(call, G.gc.ganhai.ships[dbData.ship.index].kshsNeed); + let prize = calculatePrize(dbData.ship, G.time); + await PlayerFun.sendPrize(call, prize); + + G.mongodb.collection('ganhai').updateOne({ uid: call.uid }, { $set: { ship: null } }); + HongDianChange.sendChangeKey(call.uid, ['gonghuihd']); + ZhanLingTasks.addLog(call.uid, 'week', `ganhai_finish`); + GanHaiRed.addList(call.uid, null); + + call.succ({ + prize: prize, + change: { + ship: null, + } + }); +} \ No newline at end of file diff --git a/src/api_s2c/ganhai/ApiFight.ts b/src/api_s2c/ganhai/ApiFight.ts new file mode 100644 index 0000000..83396c1 --- /dev/null +++ b/src/api_s2c/ganhai/ApiFight.ts @@ -0,0 +1,52 @@ +import { ApiCall } from "tsrpc"; +import { FightFun } from '../../public/fight'; +import { PlayerFun } from '../../public/player'; +import { ReqFight, ResFight } from "../../shared/protocols/ganhai/PtlFight"; +import { prizeType } from '../../shared/protocols/type'; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let dbData = await G.mongodb.collection('ganhai').findOne({ uid: call.uid }); + let index = call.req.index; + let fightNum = dbData.useFightNum + 1; + let toShipUid = dbData.ships[index]?.player?.player?.uid; + let toShip + if(toShipUid){ + toShip = (await G.mongodb.collection('ganhai').findOne({ uid: toShipUid })).ship; + } + + if (fightNum > G.gc.ganhai.fightNum) return call.error('', { code: -1 }); + if (!toShip) return call.error('', { code: -2 }); + if (toShip.beFightNum >= G.gc.ganhai.ships[toShip.index].ldNum) return call.error('', { code: -3 }); + + G.mongodb.collection('ganhai').updateOne({ uid: call.uid }, { $set: { ships: dbData.ships, useFightNum: fightNum } }); + + let change: ResFight['change'] = { + useFightNum: fightNum, + ships: dbData.ships + }; + let result = FightFun.fight([await call.conn.getDefaultFightData(), toShip.player]); + result.otherData = { shipIndex: toShip.index }; + + FightFun.saveLog(call.uid, 'ganhai', result); + FightFun.saveLog(toShip.player.player.uid, 'ganhai', {...result,winSide:result.winSide?0:1}); + + let prize: prizeType[] = []; + + if (result.winSide == 0) { + // 我方胜利加1 + toShip.beFightNum++; + G.mongodb.collection('ganhai').updateOne({ uid: toShip.player.player.uid }, { $inc: { 'ship.beFightNum': 1 } }); + + let conf = G.gc.ganhai.ships[toShip.index]; + prize = conf.prize.slice(1).map(atn => ({ ...atn, n: Math.floor(atn.n * conf.ldRatio) })); + await PlayerFun.sendPrize(call, prize); + } + + HongDianChange.sendChangeKey(call.uid, ['gonghuihd']); + call.succ({ + prize: prize, + result: result, + change: change + }); +} \ No newline at end of file diff --git a/src/api_s2c/ganhai/ApiLog.ts b/src/api_s2c/ganhai/ApiLog.ts new file mode 100644 index 0000000..0bd1bc9 --- /dev/null +++ b/src/api_s2c/ganhai/ApiLog.ts @@ -0,0 +1,7 @@ +import { ApiCall } from "tsrpc"; +import { FightFun } from '../../public/fight'; +import { ReqLog, ResLog } from "../../shared/protocols/ganhai/PtlLog"; + +export default async function (call: ApiCall) { + call.succ(await FightFun.readLog(call.uid, 'ganhai')); +} \ No newline at end of file diff --git a/src/api_s2c/ganhai/ApiOpen.ts b/src/api_s2c/ganhai/ApiOpen.ts new file mode 100644 index 0000000..37c78c1 --- /dev/null +++ b/src/api_s2c/ganhai/ApiOpen.ts @@ -0,0 +1,181 @@ +import {ApiCall} from "tsrpc"; +import {PlayerFun} from '../../public/player'; +import {ZhanLingTasks} from '../../public/zhanling'; +import {ReqOpen, ResOpen} from "../../shared/protocols/ganhai/PtlOpen"; +import {PublicShared} from '../../shared/public/public'; +import {HongDianChange} from "../hongdian/fun"; +import { isArray } from "mathjs"; + +export default async function (call: ApiCall) { + + let dbData = await G.mongodb.collection('ganhai').findOne({uid: call.uid}); + + if (!dbData) { + var shipIndexs = randomMyShips(); + + var ships = await randomShips(call.uid); + await G.mongodb.collection('ganhai').updateOne({uid: call.uid}, { + $set: { + myShips: shipIndexs, + ships: ships + } + }, {upsert: true}); + } + + /** + * 处理已经被掠夺3次的商船 + */ + let resShips = dbData?.ships + if (resShips) { + let npc = [] + let ids = resShips.filter(i=>!!i).map(i => { + let uid = i.player?.player?.uid + if (uid) return uid + else npc.push(i) + }) + let playerDbData = await G.mongodb.collection('ganhai').find({uid: {$in: ids}}).toArray(); + resShips = playerDbData.map(i => i.ship).filter(Boolean) + resShips = [...resShips, ...npc] + await G.mongodb.collection('ganhai').updateOne({uid: call.uid}, {$set: {ships: resShips}}, {upsert: true}); + } + + + let res: ResOpen = { + ship: dbData?.ship || null, + ships: resShips || ships, + myShips: dbData?.myShips || shipIndexs, + useFightNum: dbData?.useFightNum || 0, + useEscortNum: dbData?.useEscortNum || 0, + useRefreshNum: dbData?.useRefreshNum || 0, + }; + + if (!dbData || dbData.refreshTime < PublicShared.getToDayZeroTime()) { + var refresObj = { + refreshTime: G.time, + useFightNum: 0, + useEscortNum: 0, + useRefreshNum: 0 + }; + await G.mongodb.collection('ganhai').updateOne({uid: call.uid}, {$set: refresObj}, {upsert: true}); + } + + if (dbData?.ship?.sTime && dbData.ship.sTime + G.gc.ganhai.ships[dbData.ship.index].time < G.time) { + let prize = calculatePrize(dbData.ship, dbData.ship.sTime + G.gc.ganhai.ships[dbData.ship.index].time); + await PlayerFun.sendPrize(call, prize); + dbData.ship = null; + await G.mongodb.collection('ganhai').updateOne({uid: call.uid}, {$set: {ship: null}}, {upsert: true}); + res.prize = prize; + + GanHaiRed.addList(call.uid, null); + ZhanLingTasks.addLog(call.uid, 'week', `ganhai_finish`); + HongDianChange.sendChangeKey(call.uid, ['gonghuihd']); + } + + call.succ(res); +} + +export function randomMyShips(isDj = false, yjdj = false) { + let shipIndexs: number[] = []; + for (let i = 0; i < 4; i++) { + let ship = PublicShared.randomDropAny(G.gc.ganhai.ships); + shipIndexs.push(G.gc.ganhai.ships.findIndex(s => s.name == ship.name)); + } + if (isDj) { + shipIndexs[3] = 3; + } + if (yjdj) { + shipIndexs = [3] + } + return shipIndexs; +} + +export async function randomShips(uid: string) { + // let shipss = await G.mongodb.collection('ganhai').find({uid: {$nin: [uid]}}).toArray(); + // console.log(shipss[0]) + // 过滤不存在的用户 + let ships = await G.mongodb.collection('ganhai').aggregate([ + { + "$match": { + uid: {$nin: [uid]} + } + },{ + "$lookup": { + "from": "user", + "localField": "uid", + "foreignField": "uid", + "as": "userInfo" + } + },{ + "$match": { + "userInfo": {$ne: []} + } + } + + ]).toArray() + ships = ships.filter(s => s.ship != null && s.ship.beFightNum < G.gc.ganhai.ships[s.ship.index].ldNum); + ships.sort(() => Math.random() - .5); + return ships.slice(0, 5).map(s => s.ship); +} + +export function calculatePrize(ship: ResOpen['ship'], time: number) { + let conf = G.gc.ganhai.ships[ship.index]; + let zeroTime = PublicShared.getToDayZeroTime(time); + let second = time - zeroTime; + let multiple = 1; + + for (let [start, end] of G.gc.ganhai.doubleTime) { + if (second >= start && second <= end) { + multiple = 2; + break; + } + } + + let ratio = conf.ldRatio; + let ldMultiple = ship.beFightNum * ratio; + let prize1 = conf.prize.slice(0, 1); + let prize2 = conf.prize.slice(1); + + let prize = [...prize1, ...prize2.map(atn => { + let n = atn.n; + if (ldMultiple > 0) { + n = atn.n - Math.floor(atn.n * ldMultiple); + } + return {...atn, n: n}; + })]; + + return prize.filter(p => p.n > 0).map(p => { + return {...p, n: p.n * multiple}; + }); +} + +export class GanHaiRed { + static sends: k_v = {}; + static checkList: k_v = {}; + + static async init() { + + //let dbs = await G.mongodb.collection('ganhai').find({}).toArray(); + //let obj = Object.fromEntries(dbs.map(db => [db.uid, db.ship])); + let dbs = await G.mongodb.find('ganhai',{},['uid','ship.sTime','ship.index']); + let obj = Object.fromEntries(dbs.map(db => [db.uid, db.ship])); + + Object.assign(this.checkList, obj); + } + + static addList(uid: string, ship: ResOpen['ship']) { + this.checkList[uid] = ship; + if (ship) { + this.sends[uid] = false; + } + } + + static check() { + Object.entries(this.checkList).forEach(v => { + let [uid, ship] = v; + if (!this.sends[uid] && ship?.sTime && ship?.sTime + G.gc.ganhai.ships[ship.index].time < G.time) { + G.server.sendMsgByUid(uid, 'msg_s2c/HongDianChange', ['gonghuihd']); + this.sends[uid] = true; + } + }); + } +}; \ No newline at end of file diff --git a/src/api_s2c/ganhai/ApiRefresh.ts b/src/api_s2c/ganhai/ApiRefresh.ts new file mode 100644 index 0000000..a74c25a --- /dev/null +++ b/src/api_s2c/ganhai/ApiRefresh.ts @@ -0,0 +1,15 @@ +import { ApiCall } from "tsrpc"; +import { ReqRefresh, ResRefresh } from "../../shared/protocols/ganhai/PtlRefresh"; +import { randomShips } from './ApiOpen'; + +export default async function (call: ApiCall) { + let ships = await randomShips(call.uid); + + G.mongodb.collection('ganhai').updateOne({ uid: call.uid }, { $set: { ships: ships } }); + + call.succ({ + change: { + ships: ships + } + }); +} \ No newline at end of file diff --git a/src/api_s2c/ganhai/ApiRefreshShip.ts b/src/api_s2c/ganhai/ApiRefreshShip.ts new file mode 100644 index 0000000..f26b19e --- /dev/null +++ b/src/api_s2c/ganhai/ApiRefreshShip.ts @@ -0,0 +1,46 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqRefreshShip, ResRefreshShip } from "../../shared/protocols/ganhai/PtlRefreshShip"; +import { randomMyShips } from './ApiOpen'; + +export default async function (call: ApiCall) { + let dbData = await G.mongodb.collection('ganhai').findOne({ uid: call.uid }); + if (dbData.ship != null) return call.error('', { code: -1 }); + let reNum = dbData.useRefreshNum + + let _refresh: boolean = false + let _yijianzuigao: boolean = false + + + if (call.req?.yjzg) { + _yijianzuigao = true + let need = G.gc.ganhai.oneClickNeed; + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + } else { + reNum += 1; + if (reNum > G.gc.ganhai.refreshNum) { + let _maxNum = G.gc.ganhai.refreshMaxNeed; + let need = G.gc.ganhai.refreshNeed.map(_need => { + return { + ..._need, + n: ((reNum - 1) * 20) > _maxNum ? _maxNum : (reNum - 1) * 20 + }; + }); + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + } + _refresh = reNum % G.gc.ganhai.num == 0 + } + + let shipIndex = randomMyShips(_refresh,_yijianzuigao); + + G.mongodb.collection('ganhai').updateOne({ uid: call.uid }, { $set: { myShips: shipIndex, useRefreshNum: reNum } }); + + call.succ({ + change: { + myShips: shipIndex, + useRefreshNum: reNum + } + }); +} \ No newline at end of file diff --git a/src/api_s2c/ganhai/ApiSelect.ts b/src/api_s2c/ganhai/ApiSelect.ts new file mode 100644 index 0000000..998b98e --- /dev/null +++ b/src/api_s2c/ganhai/ApiSelect.ts @@ -0,0 +1,33 @@ +import { ApiCall } from "tsrpc"; +import { ReqSelect, ResSelect } from "../../shared/protocols/ganhai/PtlSelect"; +import { HongDianChange } from "../hongdian/fun"; +import { GanHaiRed, randomMyShips } from './ApiOpen'; + +export default async function (call: ApiCall) { + let dbData = await G.mongodb.collection('ganhai').findOne({ uid: call.uid }); + let escortNum = dbData.useEscortNum + 1; + + if (escortNum > G.gc.ganhai.escortNum) return call.error('', { code: 0 }); + if (dbData.ship != null) return call.error('', { code: -1 }); + if (dbData.myShips[call.req.index] == undefined) return call.error('', { code: -2 }); + + let obj = { + index: dbData.myShips[call.req.index], + sTime: G.time, + beFightNum: 0, + player: await call.conn.getDefaultFightData() + }; + let shipIndex = randomMyShips(); + + G.mongodb.collection('ganhai').updateOne({ uid: call.uid }, { $set: { myShips: shipIndex, ship: obj, useEscortNum: escortNum } }); + HongDianChange.sendChangeKey(call.uid, ['gonghuihd']); + GanHaiRed.addList(call.uid, obj); + + call.succ({ + change: { + ship: obj, + myShips: shipIndex, + useEscortNum: escortNum + } + }); +} \ No newline at end of file diff --git a/src/api_s2c/gonghui/ApiApply.ts b/src/api_s2c/gonghui/ApiApply.ts new file mode 100644 index 0000000..b9ba1f5 --- /dev/null +++ b/src/api_s2c/gonghui/ApiApply.ts @@ -0,0 +1,21 @@ +import { ApiCall } from "tsrpc"; +import { ReqApply, ResApply } from "../../shared/protocols/gonghui/PtlApply"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + if (call.conn.gud.ghLevel == 3) return call.error(globalThis.lng.gonghui_1); + let GHdata = await call.conn.gonghui + const index = GHdata.data.applyList.findIndex(a => a.uid == call.req.uid); + + if (index == -1) return call.error(globalThis.lng.gonghui_2); + + if (call.req.apply) { + GHdata.apply(call.req.uid); + } else { + GHdata.data.applyList.splice(index, 1); + GHdata.updateDb({ $set: { applyList: GHdata.data.applyList } }); + } + HongDianChange.sendChangeKey(call.uid, ['gonghuihd']) + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/gonghui/ApiApplyAll.ts b/src/api_s2c/gonghui/ApiApplyAll.ts new file mode 100644 index 0000000..3890e65 --- /dev/null +++ b/src/api_s2c/gonghui/ApiApplyAll.ts @@ -0,0 +1,17 @@ +import { ApiCall } from "tsrpc"; +import { ReqApplyAll, ResApplyAll } from "../../shared/protocols/gonghui/PtlApplyAll"; + +export default async function (call: ApiCall) { + let GHdata = await call.conn.gonghui + if (call.conn.gud.ghLevel == 3) return call.error(globalThis.lng.gonghui_1); + if (GHdata.data.applyList.length < 1) return call.error(globalThis.lng.gonghui_3); + + if (call.req) { + GHdata.apply(...GHdata.data.applyList.map(a => a.uid)); + } else { + GHdata.data.applyList = []; + GHdata.updateDb({ $set: { applyList: [] } }); + } + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/gonghui/ApiApplyList.ts b/src/api_s2c/gonghui/ApiApplyList.ts new file mode 100644 index 0000000..175aa66 --- /dev/null +++ b/src/api_s2c/gonghui/ApiApplyList.ts @@ -0,0 +1,19 @@ +import { ApiCall } from "tsrpc"; +import { ReqApplyList, ResApplyList } from "../../shared/protocols/gonghui/PtlApplyList"; + +export default async function (call: ApiCall) { + let GHdata = await call.conn.gonghui + if (GHdata.data.applyList?.length > 0) { + + let players = await G.redis.gets('user', ...GHdata.data.applyList.map(a => [a.uid] as [string])); + + call.succ(players.map((p, i) => { + return { + player: p, + time: GHdata.data.applyList[i].time + }; + })); + } else { + call.succ([]); + } +} \ No newline at end of file diff --git a/src/api_s2c/gonghui/ApiChange.ts b/src/api_s2c/gonghui/ApiChange.ts new file mode 100644 index 0000000..5713099 --- /dev/null +++ b/src/api_s2c/gonghui/ApiChange.ts @@ -0,0 +1,22 @@ +import { ApiCall } from "tsrpc"; +import { GongHuiFun } from '../../public/gonghui/gonghui'; +import { GHManage } from '../../public/gonghui/manage'; +import { PlayerFun } from '../../public/player'; +import { ReqChange, ResChange } from "../../shared/protocols/gonghui/PtlChange"; + +export default async function (call: ApiCall) { + + if (call.conn.gud.ghLevel > 2) return call.error(globalThis.lng.gonghui_1); + if (call.conn.gud.ghLevel != 1 && call.req.name) return call.error(globalThis.lng.gonghui_4); + + await GongHuiFun.checkSetArgs(call.req); + + await PlayerFun.checkNeedIsMeet(call, G.gc.shili_com.changeNameNeed); + + await PlayerFun.cutNeed(call, G.gc.shili_com.changeNameNeed); + + (await GHManage.getGH(call.conn.gud.ghId)).updateSetting(call.req); + + call.succ(call.req); + +} \ No newline at end of file diff --git a/src/api_s2c/gonghui/ApiCreate.ts b/src/api_s2c/gonghui/ApiCreate.ts new file mode 100644 index 0000000..8991c1f --- /dev/null +++ b/src/api_s2c/gonghui/ApiCreate.ts @@ -0,0 +1,50 @@ +import { ApiCall } from "tsrpc"; +import { MongodbCollections } from '../../module/mongodb'; +import { GongHuiFun } from '../../public/gonghui/gonghui'; +import { GHManage } from '../../public/gonghui/manage'; +import { PlayerFun } from '../../public/player'; +import { ReqCreate, ResCreate } from "../../shared/protocols/gonghui/PtlCreate"; + +export default async function (call: ApiCall) { + if ((call.conn.gud.ghExitTime || 0) + G.gc.com.Guild_CD.value > G.time) { + return call.error(globalThis.lng.gonghui_5); + } + + if (call.conn.gud.ghId) return call.error(globalThis.lng.gonghui_6); + + if (call.conn.gud.vip < G.gc.shili_com.createVip) return call.error(globalThis.lng.gonghui_7); + + await PlayerFun.checkNeedIsMeet(call, G.gc.shili_com.createNeed); + + await GongHuiFun.checkSetArgs(call.req); + + await PlayerFun.cutNeed(call, G.gc.shili_com.createNeed); + + const data: MongodbCollections['gonghui'] = { + lv: 1, + exp: 0, + name: call.req.name, + players: [ + { + uid: call.uid, + level: 1, + joinTime: G.time + } + ], + setting: { + ...call.req.setting, + joinLv: G.gc.shili_com.defaultJoinLv, + notice: G.gc.shili_com.defaultNotice, + autoJoin: G.gc.shili_com.defaultAutoJoin, + }, + createTime: G.time, + createPlayer: { name: call.conn.gud.name, uid: call.uid }, + }; + const _id = await GongHuiFun.db.insertOne(data); + + await GHManage.addNew({ ...data, _id: G.mongodb.conversionId(_id.insertedId) }); + + await PlayerFun.addAttr(call, { ghId: G.mongodb.conversionId(_id.insertedId), ghName: call.req.name, ghLevel: 1 }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/gonghui/ApiDissolve.ts b/src/api_s2c/gonghui/ApiDissolve.ts new file mode 100644 index 0000000..7648e06 --- /dev/null +++ b/src/api_s2c/gonghui/ApiDissolve.ts @@ -0,0 +1,12 @@ +import { ApiCall } from "tsrpc"; +import { GHManage } from '../../public/gonghui/manage'; +import { ReqDissolve, ResDissolve } from "../../shared/protocols/gonghui/PtlDissolve"; + +export default async function (call: ApiCall) { + + if (call.conn.gud.ghLevel != 1) return call.error(globalThis.lng.gonghui_8); + + GHManage.remove(call.conn.gud.ghId); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/gonghui/ApiExit.ts b/src/api_s2c/gonghui/ApiExit.ts new file mode 100644 index 0000000..6e8b9d0 --- /dev/null +++ b/src/api_s2c/gonghui/ApiExit.ts @@ -0,0 +1,13 @@ +import { ApiCall } from "tsrpc"; +import { ReqExit, ResExit } from "../../shared/protocols/gonghui/PtlExit"; + +export default async function (call: ApiCall) { + + if (call.conn.gud.ghLevel == 1) { + return call.error(globalThis.lng.gonghui_9); + } + + (await call.conn.gonghui).delPlayer(call.uid); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/gonghui/ApiFbBuyNum.ts b/src/api_s2c/gonghui/ApiFbBuyNum.ts new file mode 100644 index 0000000..3c33e77 --- /dev/null +++ b/src/api_s2c/gonghui/ApiFbBuyNum.ts @@ -0,0 +1,19 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqFbBuyNum, ResFbBuyNum } from "../../shared/protocols/gonghui/PtlFbBuyNum"; + +export default async function (call: ApiCall) { + let _buyNum = (await G.mongodb.collection('gonghuiUser').findOne({ uid: call.uid }))?.fuben?.addNum || 0; + let shiliConfFightNumBuyNeed = G.gc.shili_com.fightNumBuyNeed + let atn = shiliConfFightNumBuyNeed[_buyNum] || shiliConfFightNumBuyNeed[shiliConfFightNumBuyNeed.length - 1] + await PlayerFun.checkNeedIsMeet(call, [atn]); + await PlayerFun.cutNeed(call, [atn]); + // 策划特别强调加上(到时候别又搞取消。。。。。。。。。。。。。。。。。。。。。。。。。) + if (_buyNum >= shiliConfFightNumBuyNeed.length) { + return call.error('', { code: -1, message: globalThis.lng.gonghui_10 }) + } + + G.mongodb.collection('gonghuiUser').updateOne({ uid: call.uid }, { $inc: { 'fuben.fightNum': 1, 'fuben.addNum': 1 } }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/gonghui/ApiFbFight.ts b/src/api_s2c/gonghui/ApiFbFight.ts new file mode 100644 index 0000000..0960ed4 --- /dev/null +++ b/src/api_s2c/gonghui/ApiFbFight.ts @@ -0,0 +1,70 @@ +import { ApiCall } from "tsrpc"; +import { FightFun } from '../../public/fight'; +import { PlayerFun } from '../../public/player'; +import { formatNpcData } from '../../shared/fightControl/fightFun'; +import { ReqFbFight, ResFbFight } from "../../shared/protocols/gonghui/PtlFbFight"; +import { PublicShared } from '../../shared/public/public'; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + + let gh = await call.conn.gonghui; + let conf = G.gc.shili_fb[gh.data.fuben.id]; + + if (!conf) return call.error(globalThis.lng.gonghui_11); + + let dbData = await G.mongodb.collection('gonghuiUser').findOne({ uid: call.uid }); + + if (dbData.fuben.fightNum < 1) return call.error(globalThis.lng.gonghui_12); + + if (await gh.getIsFightBoss()) return call.error(globalThis.lng.gonghui_13); + + await gh.changeIsFightBoss(true); + + let npc = formatNpcData(conf.npc); + Object.entries(gh.data.fuben.bossInfo).forEach(role => { + Object.assign(npc.roles[role[0]].attr, role[1]); + }); + + let result = FightFun.fight([ + { + ...await call.conn.getDefaultFightData() + }, + npc + ], 30, 'pve'); + if (!gh.data.fuben.dps[call.uid]) gh.data.fuben.dps[call.uid] = result.totalDamage[0]; + else gh.data.fuben.dps[call.uid] += result.totalDamage[0]; + // winSide == 0 战斗胜利 + if (result.winSide == 0) { + + await G.mongodb.collection('gonghuiFb').insertOne({ ghId: gh.data._id, fbId: gh.data.fuben.id, rankList: gh.data.fuben.dps }); + + gh.sendeMail(gh.data.fuben.id, Object.keys(gh.data.fuben.dps).map(uid => [uid, gh.data.fuben.dps[uid]])); + + gh.data.fuben = { + id: (Number(gh.data.fuben.id) + 1).toString(), + dps: {}, + bossInfo: {}, + }; + + gh.addExp(conf.gongxianprize); + } else { + Object.entries(result.fightData[1].roles).forEach(role => { + gh.data.fuben.bossInfo[role[0]] = { hp: role[1].attr.hp, maxHp: role[1].attr.maxHp }; + }); + } + + gh.updateDb({ $set: { fuben: gh.data.fuben } }); + gh.changeIsFightBoss(false); + + let prize = conf.fightPrize.map(v => PublicShared.randomDropGroup(v)).reduce((a, b) => a.concat(b)); + + await PlayerFun.sendPrize(call, prize); + G.mongodb.collection('gonghuiUser').updateOne({ uid: call.uid }, { $inc: { 'fuben.fightNum': -1 } }); + HongDianChange.sendChangeKey(call.uid, ['gonghuihd']); + + call.succ({ + prize: prize, + result: result + }); +} \ No newline at end of file diff --git a/src/api_s2c/gonghui/ApiFbOpen.ts b/src/api_s2c/gonghui/ApiFbOpen.ts new file mode 100644 index 0000000..ab90881 --- /dev/null +++ b/src/api_s2c/gonghui/ApiFbOpen.ts @@ -0,0 +1,42 @@ +import { ApiCall } from "tsrpc"; +import { ReqFbOpen, ResFbOpen } from "../../shared/protocols/gonghui/PtlFbOpen"; +import { PublicShared } from '../../shared/public/public'; + +export default async function (call: ApiCall) { + let res: ResFbOpen = { fightNum: 0, addNum: 0, rankList: [] }; + let conf = G.gc.shili_fb[call.req.fbId]; + let gh = await call.conn.gonghui; + + if (Number(call.req.fbId) > Number(gh.data.fuben.id)) return call.error(globalThis.lng.gonghui_14); + if (!conf) return call.error(globalThis.lng.gonghui_15); + if (call.req.fbId != gh.data.fuben.id) { + let md = await G.mongodb.collection('gonghuiFb').findOne({ ghId: gh.data._id, fbId: call.req.fbId }); + let uids = Object.keys(md.rankList); + let players = await G.redis.gets('user', ...uids.map(uid => [uid] as [string])); + res.rankList = players.map(p => { + return { + player: p, + dps: md.rankList[p.uid] + }; + }); + } else { + let uids = Object.keys(gh.data.fuben.dps); + let players = await G.redis.gets('user', ...uids.map(uid => [uid] as [string])); + res.rankList = players.map(p => { + return { + player: p, + dps: gh.data.fuben.dps[p.uid] + }; + }); + } + + let mdMy = (await G.mongodb.collection('gonghuiUser').findOne({ uid: call.uid }))?.fuben; + if (!mdMy || PublicShared.getToDayZeroTime() > mdMy.refreshTime) { + mdMy = { + fightNum: G.gc.shili_com.fightNum, + refreshTime: G.time + }; + G.mongodb.collection('gonghuiUser').updateOne({ uid: call.uid }, { $set: { fuben: mdMy } }, { upsert: true }); + } + call.succ({ ...res, fightNum: mdMy.fightNum, addNum: mdMy?.addNum||0 }); +} \ No newline at end of file diff --git a/src/api_s2c/gonghui/ApiGetList.ts b/src/api_s2c/gonghui/ApiGetList.ts new file mode 100644 index 0000000..c877660 --- /dev/null +++ b/src/api_s2c/gonghui/ApiGetList.ts @@ -0,0 +1,25 @@ +import { ApiCall } from "tsrpc"; +import { GHManage } from '../../public/gonghui/manage'; +import { ReqGetList, ResGetList } from "../../shared/protocols/gonghui/PtlGetList"; + +export default async function (call: ApiCall) { + + let arr: ResGetList['list'] = []; + let GHData = await GHManage.getGHList(); + let ghs = Object.values(GHData).map(item => item.data); + let allRoles = await G.mongodb.collection('user').find().toArray(); + let zhanlis = Object.fromEntries(allRoles.map(r => [r.uid, r.power])); + + for (let gh of ghs) { + let uids = gh.players.map(p => p.uid); + let zhanli = uids.map(u => (zhanlis[u] || 0)).reduce((a, b) => a + b); + arr.push({ + gh: gh, + zhanli: zhanli + }); + } + + call.succ({ + list: arr + }); +} \ No newline at end of file diff --git a/src/api_s2c/gonghui/ApiJoin.ts b/src/api_s2c/gonghui/ApiJoin.ts new file mode 100644 index 0000000..50247b1 --- /dev/null +++ b/src/api_s2c/gonghui/ApiJoin.ts @@ -0,0 +1,34 @@ +import { ApiCall } from "tsrpc"; +import { GHManage } from '../../public/gonghui/manage'; +import { ReqJoin, ResJoin } from "../../shared/protocols/gonghui/PtlJoin"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + if ((call.conn.gud.ghExitTime || 0) + G.gc.com.Guild_CD.value > G.time) { + return call.error(globalThis.lng.gonghui_5); + } + + if (call.conn.gud.ghId) return call.error(globalThis.lng.gonghui_16); + + const gh = await GHManage.getGH(call.req.id); + + if (!gh) return call.error(globalThis.lng.gonghui_17); + + if (gh.data.players.length >= gh.maxPlayerNum) return call.error(globalThis.lng.gonghui_18); + + if (call.conn.gud.lv < gh.data.setting.joinLv) return call.error(globalThis.lng.gonghui_19); + + if (gh.data.setting.autoJoin) { + gh.addPlayer(call.conn.gud); + } else { + gh.addApply(call.conn.gud); + let _ghUsers = await gh.getAllPlayers(); + _ghUsers.forEach(ele => { + if (ele.player.ghLevel != 3) { + HongDianChange.sendChangeKey(ele.player.uid, ['gonghuihd']) + } + }) + } + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/gonghui/ApiJx.ts b/src/api_s2c/gonghui/ApiJx.ts new file mode 100644 index 0000000..4bfc054 --- /dev/null +++ b/src/api_s2c/gonghui/ApiJx.ts @@ -0,0 +1,33 @@ +import { ApiCall } from "tsrpc"; +import { GHManage } from '../../public/gonghui/manage'; +import { PlayerFun } from '../../public/player'; +import { ReqJx, ResJx } from "../../shared/protocols/gonghui/PtlJx"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + const conf = G.gc.shili_com.juanxian[call.req.index]; + + if (!conf) return call.error(globalThis.lng.gonghui_20); + + const data = await G.mongodb.collection('gonghuiUser').findOne({ uid: call.uid }); + const jx = data?.jx || { refreshTime: G.time, record: {} }; + + let num = conf.maxNum; + if (conf.vipAddNum.length > 0) { + if (conf.vipAddNum[call.conn.gud.vip] != undefined) num += conf.vipAddNum[call.conn.gud.vip]; + else num += conf.vipAddNum.last(); + } + if (jx.record[call.req.index] >= num) return call.error(globalThis.lng.gonghui_21); + + await PlayerFun.checkNeedIsMeet(call, conf.need); + await PlayerFun.cutNeed(call, conf.need); + await PlayerFun.sendPrize(call, conf.prize); + await (await GHManage.getGH(call.conn.gud.ghId)).juanxian(call.req.index, call.uid); + + G.mongodb.collection('gonghuiUser').updateOne({ uid: call.uid }, { $inc: G.mongodb.createTreeObj({ key: 'jx', k: `record.${call.req.index}`, val: 1 }) }); + HongDianChange.sendChangeKey(call.uid, ['gonghuihd', 'taskhd', 'huodonghd']) + call.succ({ + change: {}, + prize: conf.prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/gonghui/ApiJxOpen.ts b/src/api_s2c/gonghui/ApiJxOpen.ts new file mode 100644 index 0000000..495ee0a --- /dev/null +++ b/src/api_s2c/gonghui/ApiJxOpen.ts @@ -0,0 +1,17 @@ +import { ApiCall } from "tsrpc"; +import { ReqJxOpen, ResJxOpen } from "../../shared/protocols/gonghui/PtlJxOpen"; +import { PublicShared } from '../../shared/public/public'; + +export default async function (call: ApiCall) { + + const data = await G.mongodb.collection('gonghuiUser').findOne({ uid: call.uid }); + const jx = data?.jx || { record: {}, refreshTime: -1 }; + + if (PublicShared.getToDayZeroTime() > jx.refreshTime) { + jx.record = {}; + jx.refreshTime = G.time; + G.mongodb.collection('gonghuiUser').updateOne({ uid: call.uid }, { $set: { jx: jx } }, { upsert: true }); + } + + call.succ(jx); +} \ No newline at end of file diff --git a/src/api_s2c/gonghui/ApiList.ts b/src/api_s2c/gonghui/ApiList.ts new file mode 100644 index 0000000..8e017e6 --- /dev/null +++ b/src/api_s2c/gonghui/ApiList.ts @@ -0,0 +1,8 @@ +import { ApiCall } from "tsrpc"; +import { GHManage } from '../../public/gonghui/manage'; +import { ReqList, ResList } from "../../shared/protocols/gonghui/PtlList"; + +export default async function (call: ApiCall) { + + call.succ(await (await GHManage.getGH(call.conn.gud.ghId)).getAllPlayers()); +} \ No newline at end of file diff --git a/src/api_s2c/gonghui/ApiManage.ts b/src/api_s2c/gonghui/ApiManage.ts new file mode 100644 index 0000000..f4c294b --- /dev/null +++ b/src/api_s2c/gonghui/ApiManage.ts @@ -0,0 +1,23 @@ +import { ApiCall } from "tsrpc"; +import { ReqManage, ResManage } from "../../shared/protocols/gonghui/PtlManage"; + +export default async function (call: ApiCall) { + if (call.conn.gud.ghLevel >= 3) return call.error(globalThis.lng.gonghui_1); + let GHdata = await call.conn.gonghui + const player = GHdata.data.players.find(p => p.uid == call.req.uid); + + if (!player) return call.error(globalThis.lng.gonghui_22); + if (player.uid == call.uid) return call.error(globalThis.lng.gonghui_23); + if (player.level == call.req.level) return call.error(globalThis.lng.gonghui_15); + //管理只可以踢人 + if (call.conn.gud.ghLevel == 2 && (player.level == 1 || player.level == 2)) return call.error(globalThis.lng.gonghui_1); + + if (call.req.level > 0) { + if (call.req.level == 1) GHdata.managePlayer(call.uid, player.level); + GHdata.managePlayer(call.req.uid, call.req.level); + } else { + GHdata.delPlayer(call.req.uid); + } + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/gonghui/ApiOpen.ts b/src/api_s2c/gonghui/ApiOpen.ts new file mode 100644 index 0000000..2fe7302 --- /dev/null +++ b/src/api_s2c/gonghui/ApiOpen.ts @@ -0,0 +1,8 @@ +import { ApiCall } from "tsrpc"; +import { GHManage } from '../../public/gonghui/manage'; +import { ReqOpen, ResOpen } from "../../shared/protocols/gonghui/PtlOpen"; + +export default async function (call: ApiCall) { + + call.succ((await GHManage.getGH(call.conn.gud.ghId)).data); +} \ No newline at end of file diff --git a/src/api_s2c/gonghui/ApiTanHe.ts b/src/api_s2c/gonghui/ApiTanHe.ts new file mode 100644 index 0000000..6b74652 --- /dev/null +++ b/src/api_s2c/gonghui/ApiTanHe.ts @@ -0,0 +1,16 @@ +import { ApiCall } from "tsrpc"; +import { ReqTanHe, ResTanHe } from "../../shared/protocols/gonghui/PtlTanHe"; + +export default async function (call: ApiCall) { + let GHdata = await call.conn.gonghui; + let createPlayer = await G.redis.get('user', GHdata.data.createPlayer.uid); + + if (GHdata.data.tanhe) call.error(globalThis.lng.gonghui_24); + + if (createPlayer && (G.time - createPlayer.logoutTime > G.gc.shili_com.tanheTime || G.time - createPlayer.loginTime > G.gc.shili_com.tanheTime)) { + await GHdata.tanhe(call.uid); + call.succ({}); + } else { + call.error(globalThis.lng.gonghui_25); + } +} \ No newline at end of file diff --git a/src/api_s2c/gonghui/ApiTaskOpen.ts b/src/api_s2c/gonghui/ApiTaskOpen.ts new file mode 100644 index 0000000..2433e89 --- /dev/null +++ b/src/api_s2c/gonghui/ApiTaskOpen.ts @@ -0,0 +1,31 @@ +import { ApiCall } from "tsrpc"; +import { ActionLog } from '../../public/actionLog/actionLog'; +import { ReqTaskOpen, ResTaskOpen } from "../../shared/protocols/gonghui/PtlTaskOpen"; +import { PublicShared } from '../../shared/public/public'; + +export default async function (call: ApiCall) { + let gh = await call.conn.gonghui; + let data = (await G.mongodb.collection('gonghuiUser').findOne({ uid: call.uid }))?.task; + + if (!gh.data.task || PublicShared.getToDayZeroTime() > gh.data.task.refreshTime) { + gh.data.task = { + finised: 0, + refreshTime: G.time + }; + gh.updateDb({ $set: { task: gh.data.task } }); + } + + if (!data || PublicShared.getToDayZeroTime() > data.refreshTime) { + data = { + ghRec: [], + myRec: [], + refreshTime: G.time + }; + G.mongodb.collection('gonghuiUser').updateOne({ uid: call.uid }, { $set: { task: data } }, { upsert: true }); + } + + call.succ({ + ...data, + progress: await ActionLog.getDayLog(call.uid, ...G.gc.shili_com.task.map(t => t.taskId)) + }); +} \ No newline at end of file diff --git a/src/api_s2c/gonghui/ApiTaskReceive.ts b/src/api_s2c/gonghui/ApiTaskReceive.ts new file mode 100644 index 0000000..fa15dfd --- /dev/null +++ b/src/api_s2c/gonghui/ApiTaskReceive.ts @@ -0,0 +1,43 @@ +import { ApiCall } from "tsrpc"; +import { ActionLog } from '../../public/actionLog/actionLog'; +import { PlayerFun } from '../../public/player'; +import { ReqTaskReceive, ResTaskReceive } from "../../shared/protocols/gonghui/PtlTaskReceive"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let prize: atn[]; + let gh = await call.conn.gonghui; + let data = await G.mongodb.collection('gonghuiUser').findOne({ uid: call.uid }); + + if (call.req.type == 'gh') { + + + if (!G.gc.shili_com.ghTask[call.req.index]) return call.error(globalThis.lng.gonghui_15); + if (G.gc.shili_com.ghTask[call.req.index].total > gh.data.task.finised) return call.error(globalThis.lng.gonghui_26); + if (data.task.ghRec.includes(call.req.index)) return call.error(globalThis.lng.gonghui_27); + + prize = G.gc.shili_com.ghTask[call.req.index].prize; + + G.mongodb.collection('gonghuiUser').updateOne({ uid: call.uid }, { $push: { 'task.ghRec': call.req.index } }); + } else { + + if (!G.gc.shili_com.task[call.req.index]) return call.error(globalThis.lng.gonghui_15); + if (G.gc.shili_com.task[call.req.index].total > await ActionLog.getDayLog(call.uid, G.gc.shili_com.task[call.req.index].taskId)) return call.error(globalThis.lng.gonghui_26); + if (data.task.myRec.includes(call.req.index)) return call.error(globalThis.lng.gonghui_27); + + prize = G.gc.shili_com.task[call.req.index].prize; + + G.mongodb.collection('gonghuiUser').updateOne({ uid: call.uid }, { $push: { 'task.myRec': call.req.index } }); + + gh.data.task.finised++; + gh.updateDb({ $inc: { 'task.finised': 1 } }); + + G.gc.shili_com.task[call.req.index].addExp && gh.addExp(G.gc.shili_com.task[call.req.index].addExp); + } + + await PlayerFun.sendPrize(call, prize); + HongDianChange.sendChangeKey(call.uid, ['gonghuihd']); + call.succ({ + prize: prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/gonghui/ApiUpWz.ts b/src/api_s2c/gonghui/ApiUpWz.ts new file mode 100644 index 0000000..621248a --- /dev/null +++ b/src/api_s2c/gonghui/ApiUpWz.ts @@ -0,0 +1,22 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqUpWz, ResUpWz } from "../../shared/protocols/gonghui/PtlUpWz"; + +export default async function (call: ApiCall) { + + const conf = G.gc.shili_wz[call.req.type]; + const nextLv = call.conn.gud.ghwz[call.req.type] + 1; + + if (!conf) return call.error(globalThis.lng.gonghui_15); + if (!conf[nextLv]) return call.error(globalThis.lng.gonghui_28); + + await PlayerFun.checkNeedIsMeet(call, conf[nextLv].need); + await PlayerFun.cutNeed(call, conf[nextLv].need); + + let change = Object.assign({}, call.conn.gud.ghwz); + change[call.req.type]++; + + await PlayerFun.addAttr(call, { ghwz: change }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/gonghuibaozang/ApiLottery.ts b/src/api_s2c/gonghuibaozang/ApiLottery.ts new file mode 100644 index 0000000..d9f6a8d --- /dev/null +++ b/src/api_s2c/gonghuibaozang/ApiLottery.ts @@ -0,0 +1,96 @@ +import { ApiCall } from "tsrpc"; +import { ChatFun } from '../../public/chat'; +import { GongHuiBaoZang } from '../../public/gonghuibaozang'; +import { PlayerFun } from '../../public/player'; +import { ReqLottery, ResLottery } from "../../shared/protocols/gonghuibaozang/PtlLottery"; +import { PublicShared } from '../../shared/public/public'; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let need: atn[]; + let prize: atn[]; + // @ts-ignore + need = G.gc.com.GuildDraw_Cos.value; + // let need = [{ a: 'item', t: '17', n: 1 }] + let diaoluoid = G.gc.com.GuildDraw_Fall.value; + let _tmp; + + if (call.req.type == 1) { + // 抽奖一次 + await PlayerFun.checkNeedIsMeet(call, need); + prize = []; + prize = prize.concat(PublicShared.randomDropGroup(diaoluoid, call.req.type)); + _tmp = { + prize: prize, + name: call.conn.gud.name, + ctime: G.time, + uid: call.uid + }; + // await G.mongodb.collection('ghbzcjlog').insertOne(_tmp); + GongHuiBaoZang.newMsg(_tmp); + + } else if (call.req.type == 10) { + // 抽奖十次 + need = need.map(_n => { + return { ..._n, n: _n.n * call.req.type }; + }); + + await PlayerFun.checkNeedIsMeet(call, need); + + prize = []; + prize = prize.concat(PublicShared.randomDropGroup(diaoluoid, call.req.type)); + let _setData = []; + for (let index = 0; index < call.req.type; index++) { + const element = prize[index]; + _tmp = { + prize: [element], + name: call.conn.gud.name, + ctime: G.time, + uid: call.uid + }; + _setData.push(_tmp); + } + GongHuiBaoZang.newMsg(_setData); + + } + + need && await PlayerFun.cutNeed(call, need); + await PlayerFun.sendPrize(call, prize); + + // let playName; + // if (prize[0].a == "item") { + // playName = G.gc.item[prize[0].t].name; + // } else if (prize[0].a == "hero") { + // playName = G.gc.hero[prize[0].t].name; + // } else if (prize[0].a == "equip") { + // playName = G.gc.equip[prize[0].t].name; + // } else if (prize[0].a == "shiwu") { + // playName = G.gc.shiwu[prize[0].t].name; + // } else { + // playName = "钻石"; + // } + + for (let index = 0; index < prize.length; index++) { + const element = prize[index]; + + if (element.a == "item" && G.gc.item[element.t].type == 3){ + let playName = G.gc.item[element.t].name + ChatFun.newMsg({ + type: 'local', + msg: G.gc.pmd.guild_pmd, + time: G.time, + sender: 'system', + otherData: { + pmd: true, + args: [call.conn.gud.name, playName] + } + }); + } + } + + HongDianChange.sendChangeKey(call.uid, ['gonghuihd']) + + call.succ({ + prize: prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/gonghuibaozang/ApiOpen.ts b/src/api_s2c/gonghuibaozang/ApiOpen.ts new file mode 100644 index 0000000..8104368 --- /dev/null +++ b/src/api_s2c/gonghuibaozang/ApiOpen.ts @@ -0,0 +1,12 @@ +import { ApiCall } from "tsrpc"; +import { ReqOpen, ResOpen } from "../../shared/protocols/gonghuibaozang/PtlOpen"; + +export default async function (call: ApiCall) { + /**查询所有抽奖日志 */ + let result = await G.mongodb.collection('ghbzcjlog').findOne({ type: "gonghuibaozang_msg"}) + let _res = result?.list || [] + + call.succ({ + cjlog: _res + }); +} \ No newline at end of file diff --git a/src/api_s2c/gonglukuangbiao/ApiBuy.ts b/src/api_s2c/gonglukuangbiao/ApiBuy.ts new file mode 100644 index 0000000..d336c43 --- /dev/null +++ b/src/api_s2c/gonglukuangbiao/ApiBuy.ts @@ -0,0 +1,24 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqBuy, ResBuy } from "../../shared/protocols/gonglukuangbiao/PtlBuy"; + +export default async function (call: ApiCall) { + call.req.num = Math.floor(call.req.num); + if (call.req.num <= 0) return call.error('', { code: 0 }); + + let db = await G.mongodb.collection('wanted').findOne({ uid: call.uid }); + if (db.toDayBuyNum + call.req.num > G.gc.gonglukuangbiao.vipBuyFightNum[call.conn.gud.vip]) return call.error('', { code: -1 }); + + let _con = JSON.parse(JSON.stringify(G.gc.gonglukuangbiao.buyFightNumNeed)) + let need = [] + for (let index = db.toDayBuyNum; index < db.toDayBuyNum + call.req.num; index++) { + need.push(_con[index]) + } + + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + + G.mongodb.collection('wanted').updateOne({ uid: call.uid }, { $inc: { toDayBuyNum: call.req.num } }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/gonglukuangbiao/ApiFight.ts b/src/api_s2c/gonglukuangbiao/ApiFight.ts new file mode 100644 index 0000000..0479816 --- /dev/null +++ b/src/api_s2c/gonglukuangbiao/ApiFight.ts @@ -0,0 +1,85 @@ +import math from "mathjs"; +import { ApiCall } from "tsrpc"; +import { FightFun } from '../../public/fight'; +import { PlayerFun } from '../../public/player'; +import { ReqFight, ResFight } from "../../shared/protocols/gonglukuangbiao/PtlFight"; +import { PublicShared } from '../../shared/public/public'; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let conf = G.gc.gonglukuangbiao.config[call.req.index]; + if (!conf) return call.error('', { code: -1 }); + + let db = await G.mongodb.collection('wanted').findOne({ uid: call.uid }); + if (db.toDayUseNum >= G.gc.gonglukuangbiao.fightNum + db.toDayBuyNum) return call.error('', { code: -2 }); + + let enemy = db.enemys[call.req.index]; + let result = FightFun.fight([await call.conn.getDefaultFightData(), enemy]); + let res: ResFight = { result: result }; + let addWanted = 0; + + let _wanted = enemy["wanted"] || 0; + let _indexConf = Object.values(G.gc.gonglukuangbiao.wanted).filter(e => e.wanted[0] <= _wanted && _wanted <= e.wanted[1]); + if (!_indexConf) return call.error('', { code: -2 }); + let _qdSuccess: boolean = false + let _prize: atn[] + + if (result.winSide == 0) { + let lv = enemy.player.lv + _prize = [{ a: "attr", t: "jinbi", n: Math.floor(eval(_indexConf[0].jinbi)) }] + + let _fA = Math.max(0, 1 - (db?.toDayBeiFightNum || 0) * 0.1) + let _fB = 1 - (Math.max(0, Number(((call.conn.gud.lv - enemy.player.lv) * 0.1).toFixed(1)))) + let _qdPro = Math.max(_indexConf[0].fightsppro[1], _indexConf[0].fightsppro[0] * _fA * _fB) + _qdSuccess = PublicShared.randomNum(1, 100) > _qdPro ? false : true + // npc + if (enemy.player.isNpc && _qdSuccess) { + _prize = _prize.concat(G.gc.gonglukuangbiao.drop1.map(dlz => PublicShared.randomDropGroup(dlz)).reduce((a, b) => a.concat(b))) + } + + if (!enemy.player.isNpc) { + if (_qdSuccess) { + let _userSP = await G.mongodb.collection('item').find({ uid: enemy.player.uid, itemId: { $in: G.gc.gonglukuangbiao.qdusersp } }).toArray() + _qdSuccess = _userSP && _userSP.length > 0 ? true : false + if (_qdSuccess) _prize = _prize.concat([{ a: "item", t: _userSP.random().itemId, n: 1 }]) + } + G.mongodb.collection('wanted').findOne({ uid: enemy.player.uid }).then(db => { + let w = db.wanted - 2 < 0 ? 0 : db.wanted - 2; + let num = db?.toDayBeiFightNum ? (db?.toDayBeiFightNum + 1) : 1 + G.mongodb.collection('wanted').updateOne({ uid: enemy.player.uid }, { $set: { wanted: w, toDayBeiFightNum: num } }); + }); + + } + + // addWanted = conf.killHonor; + // if (enemy.player.isNpc || call.conn.gud.lv - enemy.player.lv <= 10) { + // let winNum = db.toDayWin[call.req.index] * 10; + // let round = conf.round.default - winNum < conf.round.min ? conf.round.min : conf.round.default; + // let isRound = PublicShared.randomNum(1, 100) <= round; + // let dropArr = isRound ? G.gc.gonglukuangbiao.drop1 : G.gc.gonglukuangbiao.drop2; + // if (dropArr.length > 0) { + // let prize = dropArr.map(id => PublicShared.randomDropGroup(id)).reduce((a, b) => a.concat(b)); + // prize = PublicShared.mergePrize(prize); + // res.prize = prize; + // await PlayerFun.sendPrize(call, prize); + // } + // } + + // if (!enemy.player.isNpc) { + // G.mongodb.collection('wanted').findOne({ uid: enemy.player.uid }).then(db => { + // let w = db.wanted - 2 < 0 ? 0 : db.wanted - 2; + // G.mongodb.collection('wanted').updateOne({ uid: enemy.player.uid }, { $set: { wanted: w } }); + // }); + // } + + G.mongodb.collection('wanted').updateOne({ uid: call.uid }, { $inc: G.mongodb.createTreeObj({ key: `toDayWin.${_indexConf[0].index}`, val: 1 }) }); + _prize && await PlayerFun.sendPrize(call, _prize); + } + + addWanted = _qdSuccess ? _indexConf[0].spwanted : _indexConf[0].addwanted + G.mongodb.collection('wanted').updateOne({ uid: call.uid }, { $inc: { wanted: addWanted, toDayUseNum: 1 } }); + + HongDianChange.sendChangeKey(call.uid, ['taskhd', 'huodonghd']) + res.prize = _prize || [] + call.succ(res); +} \ No newline at end of file diff --git a/src/api_s2c/gonglukuangbiao/ApiOpen.ts b/src/api_s2c/gonglukuangbiao/ApiOpen.ts new file mode 100644 index 0000000..5ed4763 --- /dev/null +++ b/src/api_s2c/gonglukuangbiao/ApiOpen.ts @@ -0,0 +1,110 @@ +import {ApiCall} from "tsrpc"; +import {CollectionWanted} from '../../module/collection_wanted'; +import {ChatFun} from '../../public/chat'; +import {FightFun} from '../../public/fight'; +import {formatNpcData} from '../../shared/fightControl/fightFun'; +import {joinFightData} from '../../shared/fightControl/fightType'; +import {ReqOpen, ResOpen} from "../../shared/protocols/gonglukuangbiao/PtlOpen"; +import {player} from '../../shared/protocols/user/type'; +import {PublicShared} from '../../shared/public/public'; + +export default async function (call: ApiCall) { + + let db: Partial = await G.mongodb.collection('wanted').findOne({uid: call.uid}) || {}; + + if (!db.refreshTime || db.refreshTime < PublicShared.getToDayZeroTime()) { + let cut = G.gc.gonglukuangbiao.timeDeduct; + let w = (db?.wanted || 0) - cut < 0 ? 0 : db.wanted - cut; + + db.wanted = w; + db.toDayWin = { + '0': 0, + '1': 0, + '2': 0 + }; + db.toDayBuyNum = 0; + db.toDayUseNum = 0; + db.toDayBeiFightNum = 0; + db.refreshTime = G.time; + + G.mongodb.collection('wanted').updateOne({uid: call.uid}, { + $set: { + wanted: db.wanted, + toDayWin: db.toDayWin, + toDayBuyNum: db.toDayBuyNum, + toDayUseNum: db.toDayUseNum, + toDayBeiFightNum: db.toDayBeiFightNum, + refreshTime: G.time, + } + }, {upsert: true}); + } + if (!db.enemys) { + db.enemys = await refreshEnemys(call); + G.mongodb.collection('wanted').updateOne({uid: call.uid}, { + $set: { + enemys: db.enemys + } + }, {upsert: true}); + } + + call.succ(db as any); +} + +export async function refreshEnemys(call: ApiCall) { + let section = [call.conn.gud.mapId - 8, call.conn.gud.mapId + 8]; + //let allUser = Object.values(await G.redis.get('user')).filter(u => u.mapId >= section[0] && u.mapId <= section[1] && u.uid != call.uid); + //let dbUser = await G.mongodb.collection('wanted').find({uid: {$in: allUser.map(u => u.uid)}}).toArray(); + + let allUser = await G.mongodb.find('user',{ + $and: [ + { mapId: { $gte: section[0] } }, + { mapid: { $lte: section[1] } }, + { uid: { $ne: call.uid } } + ] + }, ['uid']); + let dbUser = await G.mongodb.find('wanted',{uid: {$in: allUser.map(u => u.uid)}},['uid','wanted']); + + let enemys: joinFightData[] = []; + + let configs = G.gc.gonglukuangbiao.config.reverse() + for (let idx = 0; idx < configs.length; idx++) { + let conf = configs[idx] + let needMax = configs[idx + 1]?.need || G.gc.gonglukuangbiao.wanted[idx].wanted[1] + let filter = dbUser.filter(u => conf.need <= u.wanted && u.wanted < needMax); + let uids = filter.map(f => f.uid); + dbUser.remove(u => uids.includes(u.uid)); + let enemy = uids.length > 0 ? await FightFun.getPlayerFightData(uids.random()) : formatNpcData(conf.npc.random()); + if (!enemy) enemy = formatNpcData(conf.npc.random()) + if (enemy.player.isNpc) enemy.player.name = G.gc.gonglukuangbiao.npcname.random() + enemy["wanted"] = !enemy.player.isNpc ? + filter.filter(u => u.uid = enemy.player.uid)[0].wanted : + PublicShared.randomNum(G.gc.gonglukuangbiao.wanted[idx].wanted[0], G.gc.gonglukuangbiao.wanted[idx].wanted[1]) + enemys.push(enemy); + } + + return enemys.reverse(); +} + +export async function checkNewDay(gud: player, last: number, cur: number) { + + G.mongodb.collection('wanted').findOne({uid: gud.uid}).then(db => { + if (!db) return; + let cut = G.gc.gonglukuangbiao.timeDeduct; + let w = db.wanted - cut < 0 ? 0 : db.wanted - cut; + G.mongodb.collection('wanted').updateOne({uid: gud.uid}, {$set: {wanted: w}}); + + if (w >= G.gc.gonglukuangbiao.config[0].need) { + + ChatFun.newMsg({ + type: 'local', + msg: G.gc.pmd.glkb_pmd, + time: G.time, + sender: 'system', + otherData: { + pmd: true, + args: [gud.name] + } + }); + } + }); +} \ No newline at end of file diff --git a/src/api_s2c/gonglukuangbiao/ApiRefresh.ts b/src/api_s2c/gonglukuangbiao/ApiRefresh.ts new file mode 100644 index 0000000..a4e4067 --- /dev/null +++ b/src/api_s2c/gonglukuangbiao/ApiRefresh.ts @@ -0,0 +1,18 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqRefresh, ResRefresh } from "../../shared/protocols/gonglukuangbiao/PtlRefresh"; +import { refreshEnemys } from './ApiOpen'; + +export default async function (call: ApiCall) { + + if (!call.req.free) { + let need = G.gc.gonglukuangbiao.refreshNeed; + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + } + + let enemys = await refreshEnemys(call); + G.mongodb.collection('wanted').updateOne({ uid: call.uid }, { $set: { enemys: enemys } }); + + call.succ({ enemys: enemys }); +} \ No newline at end of file diff --git a/src/api_s2c/gongyu/mingdao/ApiActive.ts b/src/api_s2c/gongyu/mingdao/ApiActive.ts new file mode 100644 index 0000000..f482643 --- /dev/null +++ b/src/api_s2c/gongyu/mingdao/ApiActive.ts @@ -0,0 +1,25 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqActive, ResActive } from "../../../shared/protocols/gongyu/mingdao/PtlActive"; +import { getFinished } from './fun'; + +export default async function (call: ApiCall) { + let id = Number(call.req.id); + if (!G.gc.mingdao[id]) return call.errorCode(-1); + if (call.conn.gud.shoucangping[id]) return call.errorCode(-2); + + let frontId = id - 1; + if (G.gc.mingdao[frontId] && call.conn.gud.shoucangping[frontId] < G.gc.mingdao[frontId].level) return call.errorCode(-3); + + let finish = await getFinished(call.conn, G.gc.mingdao[id].condition.map(c => c[0])); + + for (let cond of G.gc.mingdao[id].condition) { + if (finish[cond[0]] < cond[1]) return call.errorCode(-4); + } + + let send = Object.assign({}, call.conn.gud.shoucangping); + send[id] = 1; + await PlayerFun.addAttr(call, { shoucangping: send }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/gongyu/mingdao/ApiOpen.ts b/src/api_s2c/gongyu/mingdao/ApiOpen.ts new file mode 100644 index 0000000..0ced3fa --- /dev/null +++ b/src/api_s2c/gongyu/mingdao/ApiOpen.ts @@ -0,0 +1,49 @@ +import { ApiCall, BaseConnection } from "tsrpc"; +import { ReqOpen, ResOpen } from "../../../shared/protocols/gongyu/mingdao/PtlOpen"; +import { hongdianVal } from '../../../shared/protocols/hongdian/PtlGet'; +import { getFinished } from './fun'; + +export default async function (call: ApiCall) { + let db = await G.mongodb.collection('mingdao').findOne({ uid: call.uid }); + let types = [...new Set(Object.values(G.gc.mingdao).map(conf => conf.condition.map(cond => cond[0])).reduce((a, b) => a.concat(b)))]; + + call.succ({ + list: Object.fromEntries(Object.keys(G.gc.mingdao).map(id => { + return [id, { + pre: db?.list?.[id]?.pre || 0, + recPrize: db?.list?.[id]?.recPrize || [] + }]; + })), + taskFinished: await getFinished(call.conn, types) + }); +} + +export async function md_redPoint(call: BaseConnection): Promise { + if (Object.keys(call.gud.shoucangping || {}).length >= Object.keys(G.gc.mingdao).length) return { show: false }; + + + let next = Object.keys(call.gud.shoucangping || {}).length + 1; + let front = next - 1; + let conf = G.gc.mingdao[next]; + if (G.gc.mingdao[front] && call.gud.shoucangping[front] < G.gc.mingdao[front].level) return { show: false }; + + let types = [...conf.condition.map(v => v[0])]; + let finish = await getFinished(call, types); + let meetLen = conf.condition.filter(v => finish[v[0]] >= v[1]).length; + if (meetLen < conf.condition.length) return { show: false }; + + return { show: true }; +} + +function md_cur_condArr(call: BaseConnection) { + let next = Object.keys(call.gud.shoucangping || {}).length + 1; + let conf = G.gc.mingdao[next]; + + if (!conf) return []; + return conf.condition.map(v => v[0]); +} + +export function md_redPoint_check(call: BaseConnection, type: string) { + if (!call || !md_cur_condArr(call).includes(type)) return; + G.server.sendMsgByUid(call.uid, 'msg_s2c/HongDianChange', ['mingdao']); +} \ No newline at end of file diff --git a/src/api_s2c/gongyu/mingdao/ApiRecPrize.ts b/src/api_s2c/gongyu/mingdao/ApiRecPrize.ts new file mode 100644 index 0000000..0b30a44 --- /dev/null +++ b/src/api_s2c/gongyu/mingdao/ApiRecPrize.ts @@ -0,0 +1,27 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqRecPrize, ResRecPrize } from "../../../shared/protocols/gongyu/mingdao/PtlRecPrize"; + +export default async function (call: ApiCall) { + let id = call.req.id; + let recId = call.req.recId; + + if (!G.gc.mingdao[id]) return call.errorCode(-1); + if (!G.gc.mingdao[id].reward[recId]) return call.errorCode(-2); + if (call.conn.gud.shoucangping[id] < Number(recId)) return call.errorCode(-3); + + let recArr = (await G.mongodb.collection('mingdao').findOne({ uid: call.uid }))?.list?.[id]?.recPrize || []; + if (recArr.includes(recId)) return call.errorCode(-4); + + await PlayerFun.sendPrize(call, [].concat(G.gc.mingdao[id].reward[recId])); + + G.mongodb.collection('mingdao').updateOne( + { uid: call.uid }, + { $push: G.mongodb.createTreeObj({ key: `list.${id}.recPrize`, val: recId }) }, + { upsert: true } + ); + + call.succ({ + prize: [].concat(G.gc.mingdao[id].reward[recId]) + }); +} \ No newline at end of file diff --git a/src/api_s2c/gongyu/mingdao/ApiRepair.ts b/src/api_s2c/gongyu/mingdao/ApiRepair.ts new file mode 100644 index 0000000..b8e30d8 --- /dev/null +++ b/src/api_s2c/gongyu/mingdao/ApiRepair.ts @@ -0,0 +1,57 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqRepair, ResRepair } from "../../../shared/protocols/gongyu/mingdao/PtlRepair"; +import { prizeType } from '../../../shared/protocols/type'; +import { PublicShared } from '../../../shared/public/public'; + +export default async function (call: ApiCall) { + let id = call.req.id; + if (!G.gc.mingdao[id]) return call.errorCode(-1); + + let conf = G.gc.mingdao[id]; + if (call.conn.gud.shoucangping[id] >= conf.level) return call.errorCode(-2); + + let need: prizeType[] = []; + let itemNeed = { ...conf.need, n: conf.need.n * call.req.num }; + let itemNum = await PlayerFun.getAtnNum(call, itemNeed); + + if (itemNum < itemNeed.n) { + if (itemNum > 0) { + need.push({ ...itemNeed, n: itemNum }); + } + need.push({ ...G.gc.mingdao_com.changeNeed, n: G.gc.mingdao_com.changeNeed.n * itemNeed.n - itemNum }); + } else { + need.push(itemNeed); + } + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + + let multiple = new Array(call.req.num).fill(1).map(v => PublicShared.randomDropAny(G.gc.mingdao_com.crit).multiple); + let addExp = multiple.map(v => v * G.gc.mingdao_com.addExp).reduce((a, b) => a + b);// G.gc.mingdao_com.addExp * multiple * call.req.num; + let curExp = (await G.mongodb.collection('mingdao').findOne({ uid: call.uid }))?.list?.[id]?.pre || 0; + let newExp = 0; + + if (curExp + addExp >= conf.needExp) { + newExp = curExp + addExp - conf.needExp; + let send = Object.assign({}, call.conn.gud.shoucangping); + send[id] += 1; + await PlayerFun.addAttr(call, { shoucangping: send }); + + if (send[id] >= conf.level && G.gc.mingdao[~~id + 1]) { + G.server.sendMsgByUid(call.uid, 'msg_s2c/HongDianChange', ['mingdao']); + } + } else { + newExp = curExp + addExp; + } + + G.mongodb.collection('mingdao').updateOne( + { uid: call.uid }, + { $set: G.mongodb.createTreeObj({ key: `list.${id}.pre`, val: newExp }) }, + { upsert: true } + ); + + call.succ({ + multiple: multiple, + pre: newExp + }); +} \ No newline at end of file diff --git a/src/api_s2c/gongyu/mingdao/fun.ts b/src/api_s2c/gongyu/mingdao/fun.ts new file mode 100644 index 0000000..a91472c --- /dev/null +++ b/src/api_s2c/gongyu/mingdao/fun.ts @@ -0,0 +1,43 @@ +import { BaseConnection } from 'tsrpc'; +import { Wjjl } from '../../../module/collection_wjjl'; +import { ActionLog } from '../../../public/actionLog/actionLog'; + + +function getPeijianGteColor5ID(){ + var ids = []; + for(let id in G.gc.peijian){ + if (G.gc.peijian[id].colour >= 5){ + ids.push(id); + } + } + return ids; +} +let peijianGteColor5ID; + + +export async function getFinished(conn: BaseConnection, types: string[]) { + + if(!peijianGteColor5ID){ + peijianGteColor5ID = getPeijianGteColor5ID(); + // console.log('peijianGteColor5ID',peijianGteColor5ID); + } + + let obj: k_v = {}; + for (let type of types) { + if (type == 'power') obj[type] = await Wjjl.getVal(conn.uid, 'power'); + else if (conn.gud[type] != undefined) obj[type] = conn.gud[type]; + else if (type == 'use_attr_rmbmoney') obj[type] = await ActionLog.getRetainLog(conn.uid, 'use_attr_rmbmoney'); + else if (type == 'zccg') obj[type] = (await G.mongodb.collection('pata').findOne({ uid: conn.uid }))?.lv || 0; + else if (type == 'equip_star_5') { + //let equips = await G.redis.get('equip', conn.uid); + //obj[type] = Object.values(equips).filter(e => e.star >= 5).length; + obj[type] = await G.mongodb.collection('equip').count({ uid: conn.uid, star: { $gte: 5 } }); + } else if (type == 'peijian_colour_5') { + //let peijians = await G.redis.get('peijian', conn.uid); + //obj[type] = Object.values(peijians).filter(p => G.gc.peijian[p.peijianId].colour >= 5).length; + obj[type] = await G.mongodb.collection('peijian').count({ uid: conn.uid, peijianId: { $in: peijianGteColor5ID } }); + } + } + + return obj; +} \ No newline at end of file diff --git a/src/api_s2c/gongyu/xunlianjihua/ApiReset.ts b/src/api_s2c/gongyu/xunlianjihua/ApiReset.ts new file mode 100644 index 0000000..4ef8227 --- /dev/null +++ b/src/api_s2c/gongyu/xunlianjihua/ApiReset.ts @@ -0,0 +1,18 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqReset, ResReset } from "../../../shared/protocols/gongyu/xunlianjihua/PtlReset"; + +export default async function (call: ApiCall) { + + const need = [{ a: 'attr', t: 'rmbmoney', n: 50 }]; + + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + await PlayerFun.addAttr(call, { + skills: {}, + fightSkills: {}, + useTujianLvPoint: 0, + }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/gongyu/xunlianjihua/ApiUpSkill.ts b/src/api_s2c/gongyu/xunlianjihua/ApiUpSkill.ts new file mode 100644 index 0000000..4caa4e2 --- /dev/null +++ b/src/api_s2c/gongyu/xunlianjihua/ApiUpSkill.ts @@ -0,0 +1,26 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqUpSkill, ResUpSkill } from "../../../shared/protocols/gongyu/xunlianjihua/PtlUpSkill"; +import { PlayerShared } from '../../../shared/public/player'; + +export default async function (call: ApiCall) { + + let id = call.req.skillId; + let conf = G.gc.xunlianjihua[id]; + let allPoints = (G.gc.playerLv[call.conn.gud.lv].tujianlv + (PlayerShared.getMingDaoBuff(call.conn.gud, 'zjgy_xld') || 0)); + let points = allPoints - call.conn.gud.useTujianLvPoint; + let skills = Object.assign({}, call.conn.gud.skills); + + if (!conf) return call.error(globalThis.lng.gongyu_1); + if (call.conn.gud.useTujianLvPoint < conf.cond) return call.error(globalThis.lng.gongyu_2); + if (conf.front[0] && (!skills[conf.front[0]] || skills[conf.front[0]] < conf.front[1])) return call.error(globalThis.lng.gongyu_3); + if (skills[id] >= conf.lv) return call.errorCode(-1); + if (points < conf.need) return call.errorCode(-2); + + if (!skills[id]) skills[id] = 1; + else skills[id]++; + + await PlayerFun.addAttr(call, { skills: skills, useTujianLvPoint: call.conn.gud.useTujianLvPoint + conf.need }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/gongyu/zuozhanjihua/ApiSetSkill.ts b/src/api_s2c/gongyu/zuozhanjihua/ApiSetSkill.ts new file mode 100644 index 0000000..0d5dfeb --- /dev/null +++ b/src/api_s2c/gongyu/zuozhanjihua/ApiSetSkill.ts @@ -0,0 +1,19 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqSetSkill, ResSetSkill } from "../../../shared/protocols/gongyu/zuozhanjihua/PtlSetSkill"; + +export default async function (call: ApiCall) { + + + const args = call.req; + const skillIds = Object.values(args).filter(id => id != ''); + + if (skillIds.isDuplication()) return call.error(globalThis.lng.gongyu_4); + if (skillIds.filter(id => G.gc.xunlianjihua[id] == undefined).length > 0) return call.error(globalThis.lng.gongyu_5); + if (skillIds.filter(id => call.conn.gud.skills[id] == undefined).length > 0) return call.error(globalThis.lng.gongyu_6); + if (skillIds.filter(id => G.gc.xunlianjihua[id].use == 0).length > 0) return call.error(globalThis.lng.gongyu_7); + + await PlayerFun.addAttr(call, { fightSkills: args }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/hbzb/jfs/ApiBuyNum.ts b/src/api_s2c/hbzb/jfs/ApiBuyNum.ts new file mode 100644 index 0000000..2f553a9 --- /dev/null +++ b/src/api_s2c/hbzb/jfs/ApiBuyNum.ts @@ -0,0 +1,37 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqBuyNum, ResBuyNum } from "../../../shared/protocols/hbzb/jfs/PtlBuyNum"; +import { prizeType } from '../../../shared/protocols/type'; +import { PublicShared } from '../../../shared/public/public'; +import { HongDianChange } from "../../hongdian/fun"; +import { checkIsOpen } from './ApiOpen'; + +export default async function (call: ApiCall) { + if (!checkIsOpen()) return call.error(globalThis.lng.hbzb_7); + let num = Math.floor(call.req.num); + if (num < 1) return call.error(globalThis.lng.gongyu_4); + let dbData = await G.mongodb.cPlayerInfo('hbzb').findOne({ uid: call.uid, type: 'hbzb' }); + let buyNum = dbData.data.buyFightNum; + let maxNum = G.gc.hbzb.jfsBuyFightNum[call.conn.gud.vip] || G.gc.hbzb.jfsBuyFightNum.slice(-1)[0]; + + if (buyNum + num > maxNum) return call.error(globalThis.lng.hbzb_8); + + + let need: prizeType[] = []; + for (let n = 1; n <= num; n++) { + let cn = buyNum + n; + let conf = G.gc.hbzb.jfsBuyFightNumNeed.find(c => cn >= c.nums[0] && cn <= c.nums[1]); + need.push(...conf.need); + } + need = PublicShared.mergePrize(need); + + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + + await G.mongodb.cPlayerInfo('hbzb').updateOne( + { uid: call.uid, type: 'hbzb' }, + { $set: { 'data.buyFightNum': buyNum + num } } + ); + HongDianChange.sendChangeKey(call.uid, ['hbzbhd']) + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/hbzb/jfs/ApiFight.ts b/src/api_s2c/hbzb/jfs/ApiFight.ts new file mode 100644 index 0000000..da42824 --- /dev/null +++ b/src/api_s2c/hbzb/jfs/ApiFight.ts @@ -0,0 +1,64 @@ +import { ApiCall } from "tsrpc"; +import { FightFun } from '../../../public/fight'; +import { PlayerFun } from '../../../public/player'; +import { Rank } from '../../../public/rank/rank'; +import { ReqFight, ResFight } from "../../../shared/protocols/hbzb/jfs/PtlFight"; +import { PublicShared } from '../../../shared/public/public'; +import { HongDianChange } from "../../hongdian/fun"; +import { checkIsOpen } from './ApiOpen'; + +export default async function (call: ApiCall) { + if (!checkIsOpen()) return call.error(globalThis.lng.hbzb_7); + let dbData = await G.mongodb.cPlayerInfo('hbzb').findOne({ uid: call.uid, type: 'hbzb' }); + let data = dbData.data; + + if (data.useFightNum >= data.buyFightNum + G.gc.hbzb.jfsFightNum) return call.errorCode(-3); + + let enemy = data.enemy.find(e => e.data.player.uid == call.req.uid); + if (!enemy) return call.errorCode(-2); + if (enemy.result != null) return call.errorCode(-1); + + let myData = await call.conn.getDefaultFightData(); + let result = FightFun.fight([myData, enemy.data]); + enemy.result = result.winSide; + + let addJf = PublicShared.randomNum(30, 35); + if (result.winSide == 0) addJf = addJf; + else addJf = 0; + + result.winSide == 0 && Rank.list.hbzbLocal.addNew({ + ...myData, + valArr: [data.jifen + addJf] + }); + + let prize = result.winSide == 0 ? G.gc.hbzb.jfsFightWinPrize.map(i => { return { ...i, n: addJf }; }) : []; + await PlayerFun.sendPrize(call, prize); + + let change: ResFight['change'] = { enemy: data.enemy, useFightNum: data.useFightNum + 1, jifen: data.jifen + addJf }; + if (data.enemy.filter(e => e.result == null).length < 1) { + let callRes = await G.clientCross.callApi('hbzb/jfs/GetEnemy', { uid: call.uid, auto: true }); + change.enemy = callRes.res.enemy.map(e => { return { ...e, result: null }; }); + } + + await G.mongodb.cPlayerInfo('hbzb').updateOne( + { uid: call.uid, type: 'hbzb' }, + { $set: { 'data.enemy': change.enemy, 'data.useFightNum': change.useFightNum, 'data.jifen': change.jifen }, $inc: { 'data.winNum': result.winSide == 0 ? 1 : 0 } } + ); + + G.clientCross.sendMsg('msg_cross/HbzbJfsLog', { + uid: call.conn.uid, + toUid: enemy.data.player.uid, + log: result + }); + + HongDianChange.sendChangeKey(call.uid, ['hbzbhd']); + + call.succ({ + result: result, + prize: prize, + change: { + ...change, + rank: await Rank.list.hbzbLocal.getRankSortByOne(call.uid) + } + }); +} \ No newline at end of file diff --git a/src/api_s2c/hbzb/jfs/ApiGetLog.ts b/src/api_s2c/hbzb/jfs/ApiGetLog.ts new file mode 100644 index 0000000..47e41eb --- /dev/null +++ b/src/api_s2c/hbzb/jfs/ApiGetLog.ts @@ -0,0 +1,6 @@ +import { ApiCall } from "tsrpc"; +import { ReqGetLog, ResGetLog } from "../../../shared/protocols/hbzb/jfs/PtlGetLog"; + +export default async function (call: ApiCall) { + call.succ((await G.clientCross.callApi('hbzb/jfs/GetLog', { uid: call.uid })).res || []); +} \ No newline at end of file diff --git a/src/api_s2c/hbzb/jfs/ApiOpen.ts b/src/api_s2c/hbzb/jfs/ApiOpen.ts new file mode 100644 index 0000000..f6cdd10 --- /dev/null +++ b/src/api_s2c/hbzb/jfs/ApiOpen.ts @@ -0,0 +1,48 @@ +import { ApiCall } from "tsrpc"; +import { Rank } from '../../../public/rank/rank'; +import { ReqOpen, ResOpen } from "../../../shared/protocols/hbzb/jfs/PtlOpen"; +import { PublicShared } from '../../../shared/public/public'; + +export default async function (call: ApiCall) { + let dbData = await G.mongodb.cPlayerInfo('hbzb').findOne({ uid: call.uid, type: 'hbzb' }); + let data: typeof dbData.data = dbData?.data || {} as any; + + if (dbData == null) { + Rank.list.hbzbLocal.addNew({ + ...await call.conn.getDefaultFightData(), + valArr: [1000] + }); + } + + if (!data.refreshTime || data.refreshTime < PublicShared.getToDayZeroTime()) { + data.winNum = 0; + data.buyFightNum = 0; + data.useFightNum = 0; + data.refreshTime = G.time; + data.winRecPrize = []; + data.useRefreshNum = 0; + + if (!data.enemy) { + data.jifen = 1000; + let callRes = await G.clientCross.callApi('hbzb/jfs/GetEnemy', { uid: call.uid, auto: true }); + if (callRes.res.enemy.length) + data.enemy = callRes.res.enemy.map(e => { return { ...e, result: null }; }); + } + + G.mongodb.cPlayerInfo('hbzb').updateOne( + { uid: call.uid, type: 'hbzb' }, + { $set: { data: data } }, + { upsert: true } + ); + } + + call.succ({ + ...data, + rank: await Rank.list.hbzbLocal.getRankSortByOne(call.uid) + }); +} + +export function checkIsOpen() { + let weekZeroTime = PublicShared.getToWeekMondayZeroTime(); + return G.time >= weekZeroTime + G.gc.hbzb.jfsOpenTime[0] && G.time <= weekZeroTime + G.gc.hbzb.jfsOpenTime[1]; +} \ No newline at end of file diff --git a/src/api_s2c/hbzb/jfs/ApiRec.ts b/src/api_s2c/hbzb/jfs/ApiRec.ts new file mode 100644 index 0000000..6b47e63 --- /dev/null +++ b/src/api_s2c/hbzb/jfs/ApiRec.ts @@ -0,0 +1,24 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqRec, ResRec } from "../../../shared/protocols/hbzb/jfs/PtlRec"; +import { HongDianChange } from "../../hongdian/fun"; +import { checkIsOpen } from './ApiOpen'; + +export default async function (call: ApiCall) { + if (!checkIsOpen()) return call.error(globalThis.lng.hbzb_7); + let dbData = await G.mongodb.cPlayerInfo('hbzb').findOne({ uid: call.uid, type: 'hbzb' }); + + if (dbData.data.winRecPrize.includes(call.req.index)) return call.error(globalThis.lng.hbzb_9); + if (dbData.data.winNum < G.gc.hbzb.jfsFightWinNumPrize[call.req.index].total) return call.error(globalThis.lng.hbzb_10); + + await PlayerFun.sendPrize(call, G.gc.hbzb.jfsFightWinNumPrize[call.req.index].prize); + + await G.mongodb.cPlayerInfo('hbzb').updateOne( + { uid: call.uid, type: 'hbzb' }, + { $set: { 'data.winRecPrize': [...dbData.data.winRecPrize, call.req.index] } } + ); + HongDianChange.sendChangeKey(call.uid, ['hbzbhd']) + call.succ({ + prize: G.gc.hbzb.jfsFightWinNumPrize[call.req.index].prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/hbzb/jfs/ApiRefresh.ts b/src/api_s2c/hbzb/jfs/ApiRefresh.ts new file mode 100644 index 0000000..09c496f --- /dev/null +++ b/src/api_s2c/hbzb/jfs/ApiRefresh.ts @@ -0,0 +1,30 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqRefresh, ResRefresh } from "../../../shared/protocols/hbzb/jfs/PtlRefresh"; +import { checkIsOpen } from './ApiOpen'; + +export default async function (call: ApiCall) { + if (!checkIsOpen()) return call.error(globalThis.lng.hbzb_7); + let dbData = await G.mongodb.cPlayerInfo('hbzb').findOne({ uid: call.uid, type: 'hbzb' }); + let refreshNum = dbData.data.useRefreshNum; + + if (refreshNum >= G.gc.hbzb.jfsRefreshNum) { + await PlayerFun.checkNeedIsMeet(call, G.gc.hbzb.jfsRefreshNeed); + await PlayerFun.cutNeed(call, G.gc.hbzb.jfsRefreshNeed); + } + + let change: ResRefresh['change'] = {}; + change.useRefreshNum = dbData.data.useRefreshNum + 1; + + let callRes = await G.clientCross.callApi('hbzb/jfs/GetEnemy', { uid: call.uid, auto: false }); + change.enemy = callRes.res.enemy.map(e => { return { ...e, result: null }; }); + + await G.mongodb.cPlayerInfo('hbzb').updateOne( + { uid: call.uid, type: 'hbzb' }, + { $set: { 'data.enemy': change.enemy, 'data.useRefreshNum': change.useRefreshNum } } + ); + + call.succ({ + change: change + }); +} \ No newline at end of file diff --git a/src/api_s2c/hbzb/zbs/ApiBuyNum.ts b/src/api_s2c/hbzb/zbs/ApiBuyNum.ts new file mode 100644 index 0000000..a3055c9 --- /dev/null +++ b/src/api_s2c/hbzb/zbs/ApiBuyNum.ts @@ -0,0 +1,34 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../../public/player'; +import { ReqBuyNum, ResBuyNum } from "../../../shared/protocols/hbzb/zbs/PtlBuyNum"; +import { prizeType } from '../../../shared/protocols/type'; +import { PublicShared } from '../../../shared/public/public'; + +export default async function (call: ApiCall) { + let num = Math.floor(call.req.num); + if (num < 1) return call.error(globalThis.lng.gongyu_4); + let dbData = await G.mongodb.cPlayerInfo('hbzbZbs').findOne({ uid: call.uid, type: 'hbzbZbs' }); + let buyNum = dbData?.data?.buyFightNum || 0; + let maxNum = G.gc.hbzb.zbsBuyFightNum[call.conn.gud.vip] || G.gc.hbzb.zbsBuyFightNum.slice(-1)[0]; + + if (buyNum + num > maxNum) return call.error(globalThis.lng.hbzb_8); + + + let need: prizeType[] = []; + for (let n = 1; n <= num; n++) { + let cn = buyNum + n; + let conf = G.gc.hbzb.zbsBuyFightNumNeed.find(c => cn >= c.nums[0] && cn <= c.nums[1]); + need.push(...conf.need); + } + need = PublicShared.mergePrize(need); + + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + + await G.mongodb.cPlayerInfo('hbzbZbs').updateOne( + { uid: call.uid, type: 'hbzbZbs' }, + { $set: { 'data.buyFightNum': buyNum + num } }, + { upsert: true } + ); + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/hbzb/zbs/ApiFight.ts b/src/api_s2c/hbzb/zbs/ApiFight.ts new file mode 100644 index 0000000..0f91591 --- /dev/null +++ b/src/api_s2c/hbzb/zbs/ApiFight.ts @@ -0,0 +1,60 @@ +import { ApiCall } from "tsrpc"; +import { FightFun } from '../../../public/fight'; +import { PlayerFun } from '../../../public/player'; +import { ReqFight, ResFight } from "../../../shared/protocols/hbzb/zbs/PtlFight"; + +export default async function (call: ApiCall) { + let dbData = await G.mongodb.cPlayerInfo('hbzbZbs').findOne({ uid: call.uid, type: 'hbzbZbs' }); + let data = dbData.data; + if(!data) return call.errorCode(1); + if (data.failCd && data.failCd + G.gc.hbzb.zbsFightFailCd > G.time) return call.errorCode(0); + if (data.useFightNum >= data.buyFightNum + G.gc.hbzb.zbsFightNum) return call.errorCode(-1); + + let enemy = data.enemy.find(e => e.data.player.uid == call.req.uid); + if (!enemy) return call.errorCode(-2); + + let eRank = (await G.clientCross.callApi('hbzb/zbs/GetStatus', { uid: enemy.data.player.uid })).res.status; + if (eRank != enemy.rank) return call.errorCode(-3); + + let change: ResFight['change'] = {}; + let mRank = (await G.clientCross.callApi('hbzb/zbs/GetStatus', { uid: call.uid })).res.status; + let my = await call.conn.getDefaultFightData(); + let result = FightFun.fight([my, enemy.data]); + + if (result.winSide == 0 && mRank > eRank) { + G.clientCross?.sendMsg('msg_cross/HbzbChangeRank', { + uid: call.uid, + toUid: enemy.data.player.uid + }); + } + + G.clientCross?.sendMsg('msg_cross/HbzbZbsLog', { + uid: call.uid, + toUid: enemy.data.player.uid, + log: result + }); + + change.useFightNum = data.useFightNum + 1; + if (result.winSide != 0) change.failCd = G.time; + + G.mongodb.cPlayerInfo('hbzbZbs').updateOne( + { uid: call.uid, type: 'hbzbZbs' }, + { + $set: G.mongodb.createTreeObj(...Object.entries(change).map(v => { + return { + key: `data.${v[0]}`, + val: v[1] + }; + })) + } + ); + + let prize = result.winSide == 0 ? G.gc.hbzb.zbsFightWinPrize : G.gc.hbzb.zbsFightFailPrize; + await PlayerFun.sendPrize(call, prize); + + call.succ({ + change: change, + result: result, + prize: prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/hbzb/zbs/ApiGetLog.ts b/src/api_s2c/hbzb/zbs/ApiGetLog.ts new file mode 100644 index 0000000..aedc90d --- /dev/null +++ b/src/api_s2c/hbzb/zbs/ApiGetLog.ts @@ -0,0 +1,6 @@ +import { ApiCall } from "tsrpc"; +import { ReqGetLog, ResGetLog } from "../../../shared/protocols/hbzb/zbs/PtlGetLog"; + +export default async function (call: ApiCall) { + call.succ((await G.clientCross.callApi('hbzb/zbs/GetLog', { uid: call.uid })).res); +} \ No newline at end of file diff --git a/src/api_s2c/hbzb/zbs/ApiOpen.ts b/src/api_s2c/hbzb/zbs/ApiOpen.ts new file mode 100644 index 0000000..4a22555 --- /dev/null +++ b/src/api_s2c/hbzb/zbs/ApiOpen.ts @@ -0,0 +1,41 @@ +import { ApiCall } from "tsrpc"; +import { ReqOpen, ResOpen } from "../../../shared/protocols/hbzb/zbs/PtlOpen"; +import { PublicShared } from '../../../shared/public/public'; + +export default async function (call: ApiCall) { + if (G.time < PublicShared.getToWeekMondayZeroTime() + G.gc.hbzb.zbsOpenTime[0]) return call.error(globalThis.lng.hbzb_11); + + let status = (await G.clientCross.callApi('hbzb/zbs/GetStatus', { uid: call.uid })).res.status; + if (status == -1) return call.errorCode(-1); + + let dbData = await G.mongodb.cPlayerInfo('hbzbZbs').findOne({ uid: call.uid, type: 'hbzbZbs' }); + let data: typeof dbData.data = dbData?.data || {} as any; + if (!data.refreshTime || data.refreshTime < PublicShared.getToDayZeroTime()) { + data.winNum = 0; + data.buyFightNum = 0; + data.useFightNum = 0; + data.refreshTime = G.time; + data.winRecPrize = []; + + if (!data.enemy) { + let callRes = await G.clientCross.callApi('hbzb/zbs/GetEnemy', { uid: call.uid }); + data.enemy = callRes.res.enemy; + } + + G.mongodb.cPlayerInfo('hbzbZbs').updateOne( + { uid: call.uid, type: 'hbzbZbs' }, + { $set: { data: data } }, + { upsert: true } + ); + } + + call.succ({ + ...data, + rank: status + }); +} + +export function checkIsOpen() { + let weekZeroTime = PublicShared.getToWeekMondayZeroTime(); + return G.time >= weekZeroTime + G.gc.hbzb.zbsOpenTime[0] && G.time <= weekZeroTime + G.gc.hbzb.zbsOpenTime[1]; +} \ No newline at end of file diff --git a/src/api_s2c/hbzb/zbs/ApiRefresh.ts b/src/api_s2c/hbzb/zbs/ApiRefresh.ts new file mode 100644 index 0000000..430667d --- /dev/null +++ b/src/api_s2c/hbzb/zbs/ApiRefresh.ts @@ -0,0 +1,17 @@ +import { ApiCall } from "tsrpc"; +import { ReqRefresh, ResRefresh } from "../../../shared/protocols/hbzb/zbs/PtlRefresh"; + +export default async function (call: ApiCall) { + + let callRes = await G.clientCross.callApi('hbzb/zbs/GetEnemy', { uid: call.uid }); + + G.mongodb.cPlayerInfo('hbzbZbs').updateOne( + { uid: call.uid, type: 'hbzbZbs' }, + { $set: { 'data.enemy': callRes.res.enemy } }, + { upsert: true } + ); + + call.succ({ + ...callRes.res + }); +} \ No newline at end of file diff --git a/src/api_s2c/hero/ApiAwake.ts b/src/api_s2c/hero/ApiAwake.ts new file mode 100644 index 0000000..d691fc7 --- /dev/null +++ b/src/api_s2c/hero/ApiAwake.ts @@ -0,0 +1,21 @@ +import { ApiCall } from "tsrpc"; +import { HeroFun } from '../../public/hero'; +import { PlayerFun } from '../../public/player'; +import { ReqAwake, ResAwake } from "../../shared/protocols/hero/PtlAwake"; + +export default async function (call: ApiCall) { + let hero = await G.redis.get('hero', call.uid, call.req._id); + if (!hero) return call.error('', { code: -1 }); + + let awake = hero.awake || 0; + let conf = G.gc.hero_jx[awake + 1]; + if (!conf) return call.error('', { code: -2 }); + + let need = [].concat(...conf.item_cos, { a: 'item', t: hero.heroId, n: conf.HeroDebris_Cos }); + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + + await HeroFun.changeHeroAttr(call, hero, {awake: awake + 1}); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/hero/ApiChangePos.ts b/src/api_s2c/hero/ApiChangePos.ts new file mode 100644 index 0000000..0895cb2 --- /dev/null +++ b/src/api_s2c/hero/ApiChangePos.ts @@ -0,0 +1,62 @@ +import { ApiCall } from "tsrpc"; +import { Wjjl } from '../../module/collection_wjjl'; +import { PlayerFun } from '../../public/player'; +import { ReqChangePos, ResChangePos } from "../../shared/protocols/hero/PtlChangePos"; +import {TaskFun} from "../../public/task"; + +export const maxPosNum = 6; + +export default async function (call: ApiCall) { + let hero = await G.redis.get('hero', call.uid, call.req.id); + if (!hero) return call.error(globalThis.lng.hero_1); + + let heroPos = Object.assign({}, call.conn.heroPos); + let fightHeros = call.conn.gud.fightHeros.map(id => id); + let posArr = Object.keys(heroPos).filter(pos => call.conn.gud.lv >= G.gc.herocom.szHeroLimit[pos]); + let idArr = Object.values(heroPos).filter(v => v != ''); + + if (call.conn.gud.helpHeros.find(v => v._id == call.req.id)) return call.error('', { code: -1 }); + if (idArr.includes(call.req.id)) return call.error(globalThis.lng.hero_2); + if (call.req.pos && !posArr.includes(call.req.pos)) return call.error(globalThis.lng.hero_3); + + let matrixPos = JSON.parse(JSON.stringify(call.conn.gud.matrixPos)); + + if (call.req.state == 'set') { + if (idArr.length == posArr.length) return call.error(posArr.length < maxPosNum ? globalThis.lng.hero_5 : globalThis.lng.hero_4); + if (fightHeros.includes(hero.heroId.toString())) return call.errorCode(-2); + let setPos = call.req.pos; + heroPos[setPos] = call.req.id; + + for (let type in matrixPos) { + if (!matrixPos[type][setPos]) matrixPos[type][setPos] = call.req.id; + // else { + // for (let pos = 1; pos <= maxPosNum; pos++) { + // if (!matrixPos[type][pos]) matrixPos[type][pos] = call.req.id; + // } + // } + } + } else if (call.req.state == 'change') { + if (heroPos[call.req.pos]) { + let unLoadHero = await G.redis.get('hero', call.uid, heroPos[call.req.pos]); + unLoadHero && fightHeros.removeOne(id => id == unLoadHero.heroId); + } + if (fightHeros.includes(hero.heroId.toString())) return call.errorCode(-2); + + for (let type in matrixPos) { + for (let pos in matrixPos[type]) { + if (pos == call.req.pos) { + matrixPos[type][pos] = call.req.id; + } + } + } + + heroPos[call.req.pos] = call.req.id; + } + fightHeros.push(hero.heroId.toString()); + + Wjjl.setVal(call.uid, 'fight_hero_colour_4', fightHeros.map(id => G.gc.hero[id].colour).filter(c => c >= 4).length); + + await PlayerFun.addAttr(call, { heroPos: heroPos, fightHeros: fightHeros, matrixPos: matrixPos }); + call.succ(heroPos); + call.conn.refreshPower(); +} \ No newline at end of file diff --git a/src/api_s2c/hero/ApiGetList.ts b/src/api_s2c/hero/ApiGetList.ts new file mode 100644 index 0000000..e9db5af --- /dev/null +++ b/src/api_s2c/hero/ApiGetList.ts @@ -0,0 +1,39 @@ +import { ApiCall } from "tsrpc"; +import { RedisCollections2 } from '../../module/redis'; +import { ReqGetList, ResGetList } from "../../shared/protocols/hero/PtlGetList"; + +export default async function (call: ApiCall) { + let list: ResGetList['list'] = {}; + let kvList: k_v = {}; + let arrList = await G.mongodb.collection('hero').find({ uid: call.uid }).toArray(); + + let heroCon = G.gc.hero; + let color = {}; + let maxherolv = 0; + arrList.forEach(v => { + let d = G.mongodb.conversionIdObj(v); + kvList[G.formatRedisKey(d._id)] = d; + list[d._id] = d; + + if (v.lv > maxherolv) maxherolv = v.lv; + if (!color[heroCon[v.heroId].colour]) color[heroCon[v.heroId].colour] = 0; + color[heroCon[v.heroId].colour] += 1; + }); + // 记录玩家最大等级,颜色相关数据 注册任务用 + await G.mongodb.collection('playerInfo', 'usertasklog').updateOne({ uid: call.conn.uid, type: 'usertasklog' }, + { $set: { maxherolv: maxherolv, herocolor: color } }, { upsert: true }); + + G.redis.set('hero', call.uid, kvList); + + let recLshd = await G.mongodb.collection('playerInfo', 'lshd_hero').findOne({ uid: call.conn.uid, type: 'lshd_hero' }); + let { uid, _id, type, ...heros } = (recLshd || {}); + + + call.conn.lshd.hero = heros || {}; + call.succ({ + list: list, + pos: call.conn.heroPos, + lshd: heros || {}, + gbzj: (await G.mongodb.cPlayerInfo('gbzj').findOne({ uid: call.uid, type: 'gbzj' }))?.rec || {} + }); +} \ No newline at end of file diff --git a/src/api_s2c/hero/ApiJinJie.ts b/src/api_s2c/hero/ApiJinJie.ts new file mode 100644 index 0000000..c9c51c3 --- /dev/null +++ b/src/api_s2c/hero/ApiJinJie.ts @@ -0,0 +1,70 @@ +import { ApiCall } from "tsrpc"; +import { Wjjl } from '../../module/collection_wjjl'; +import { HeroFun } from '../../public/hero'; +import { PlayerFun } from '../../public/player'; +import { ResGetList } from '../../shared/protocols/hero/PtlGetList'; +import { ReqJinJie, ResJinJie } from "../../shared/protocols/hero/PtlJinJie"; +import { ServiceType } from '../../shared/protocols/serviceProto'; +import { HeroShared } from '../../shared/public/hero'; +import { event_cszl_record } from '../event/chuanshuozhilu/ApiOpen'; +import { PublicShared } from "../../shared/public/public"; + +export default async function (call: ApiCall) { + + let hero = await G.redis.get('hero', call.uid, call.req.id); + + if (!hero) return call.error(globalThis.lng.hero_1); + if (G.gc.herogrow[G.gc.hero[hero.heroId].jjup] == undefined) return call.error(globalThis.lng.hero_6); + if (G.gc.herogrow[G.gc.hero[hero.heroId].jjup][hero.jieji + 1] == undefined) return call.error(globalThis.lng.hero_7); + if (G.gc.herogrow[G.gc.hero[hero.heroId].jjup][hero.jieji + 1].lv > hero.lv) return call.error(globalThis.lng.hero_8); + + let need = HeroShared.getHeroJinJieNeed(hero.heroId, hero.jieji); + let needItem = need.filter(v => v.a != 'hero'); + let needHero = need.filter(v => v.a == 'hero'); + + await PlayerFun.checkNeedIsMeet(call, needItem); + + if (needHero.length > 0) { + if (!call.req.idArr || call.req.idArr.length < 1) return call.error(globalThis.lng.hero_9); + if (call.req.idArr.includes(call.req.id)) return call.error(globalThis.lng.hero_10); + if (Object.values(call.conn.heroPos).concat(call.conn.gud.helpHeros.map(h => h._id)).intersection(call.req.idArr).length > 0) return call.error(globalThis.lng.hero_11); + + let check = needHero.map(v => { + return new Array(v.n).fill(1).map(v1 => { + return v.t; + }); + }).reduce((a, b) => a.concat(b)); + + if (call.req.idArr.length != check.length) return call.error(globalThis.lng.hero_12); + + let selectHeros: ResGetList['list'][''][] = []; + for (let _id of call.req.idArr) { + let _hero = await G.redis.get('hero', call.uid, _id); + if (!_hero) return call.error(globalThis.lng.hero_1); + selectHeros.push(_hero); + } + + let val1 = PublicShared.eval(check.join('+')); + let val2 = PublicShared.eval(selectHeros.map(v => v.heroId).join('+')); + + if (val1 != val2) return call.error(globalThis.lng.hero_13); + await PlayerFun.cutHero(call, call.req.idArr); + } + + await PlayerFun.cutNeed(call, needItem); + await HeroFun.changeHeroAttr(call, hero, { + jieji: hero.jieji + 1 + }); + + Wjjl.setVal(call.uid, `has_hero_jieji_${hero.jieji}`, 1, false); + + let help = call.conn.gud.helpHeros.find(v => v._id == call.req.id); + if (help) { + help.jieji = hero.jieji + 1; + await PlayerFun.addAttr(call, { helpHeros: call.conn.gud.helpHeros }); + } + + event_cszl_record(call.conn.gud, hero.heroId, hero.jieji, 'jieji'); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/hero/ApiLvUp.ts b/src/api_s2c/hero/ApiLvUp.ts new file mode 100644 index 0000000..b5c3757 --- /dev/null +++ b/src/api_s2c/hero/ApiLvUp.ts @@ -0,0 +1,54 @@ +import { ApiCall } from "tsrpc"; +import { HeroFun } from '../../public/hero'; +import { PlayerFun } from '../../public/player'; +import { ReqLvUp, ResLvUp } from "../../shared/protocols/hero/PtlLvUp"; +import { ServiceType } from '../../shared/protocols/serviceProto'; +import { HeroShared } from '../../shared/public/hero'; +import { event_cszl_record } from '../event/chuanshuozhilu/ApiOpen'; +import { HongDianChange } from "../hongdian/fun"; +import {PublicShared} from "../../shared/public/public"; + +export default async function (call: ApiCall) { + let hero = await G.redis.get('hero', call.uid, call.req.id); + let up = call.req.up || 1 + if (!hero) return call.errorCode(-1); + if (hero.lv >= call.conn.gud.lv * 3 || hero.lv + up > call.conn.gud.lv * 3) return call.errorCode(-2); + + let need = [] + new Array(up).fill(1).map((v, i) => { + need.push(...HeroShared.getHeroLvUpNeed(hero.heroId, hero.lv + i)); + }) + + need = PublicShared.mergePrize(need); + + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + await HeroFun.changeHeroAttr(call, hero, { + lv: hero.lv + up + }); + event_cszl_record(call.conn.gud, hero.heroId, hero.lv, 'lv') + + HongDianChange.sendChangeKey(call.uid, ['taskhd', 'huodonghd']); + + call.succ({ lv: hero.lv }); +} + + + +// export default async function (call: ApiCall) { +// let hero = await G.redis.get('hero', call.uid, call.req.id); +// if (!hero) return call.errorCode(-1); +// if (hero.lv >= call.conn.gud.lv * 3) return call.errorCode(-2); +// +// let need = HeroShared.getHeroLvUpNeed(hero.heroId, hero.lv); +// await PlayerFun.checkNeedIsMeet(call, need); +// await PlayerFun.cutNeed(call, need); +// await HeroFun.changeHeroAttr(call, hero, { +// lv: hero.lv + 1 +// }); +// event_cszl_record(call.conn.gud, hero.heroId, hero.lv, 'lv') +// +// HongDianChange.sendChangeKey(call.uid, ['taskhd', 'huodonghd']); +// +// call.succ({ lv: hero.lv }); +// } \ No newline at end of file diff --git a/src/api_s2c/hero/ApiPotency.ts b/src/api_s2c/hero/ApiPotency.ts new file mode 100644 index 0000000..b17157f --- /dev/null +++ b/src/api_s2c/hero/ApiPotency.ts @@ -0,0 +1,25 @@ +import { ApiCall } from "tsrpc"; +import { HeroFun } from '../../public/hero'; +import { PlayerFun } from '../../public/player'; +import { ReqPotency, ResPotency } from "../../shared/protocols/hero/PtlPotency"; + +export default async function (call: ApiCall) { + if (!G.gc.hero_qianneng[call.req.type]) return call.error(globalThis.lng.hero_14); + + let hero = await G.redis.get('hero', call.uid, call.req._id); + let qiannneg = hero.qiannneg || Object.fromEntries(Object.keys(G.gc.hero_qianneng).map(k => [k, 0])); + let nextLv = qiannneg[call.req.type] + 1; + + if (nextLv - Math.min(...Object.values(qiannneg)) > 1) return call.error(globalThis.lng.hero_15); + + let need = G.gc.hero_qianneng[call.req.type][nextLv].need; + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + + qiannneg[call.req.type]++; + await HeroFun.changeHeroAttr(call, hero, { + qiannneg: qiannneg + }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/hero/ApiRec.ts b/src/api_s2c/hero/ApiRec.ts new file mode 100644 index 0000000..c935cf7 --- /dev/null +++ b/src/api_s2c/hero/ApiRec.ts @@ -0,0 +1,22 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqRec, ResRec } from "../../shared/protocols/hero/PtlRec"; + +export default async function (call: ApiCall) { + if (!call.conn.lshd.hero[call.req.heroId]) return call.errorCode(-1); + + let rec = (await G.mongodb.cPlayerInfo('gbzj').findOne({ uid: call.uid, type: 'gbzj' }))?.rec || {}; + if (rec[call.req.heroId]) return call.errorCode(-2); + + G.mongodb.cPlayerInfo('gbzj').updateOne( + { uid: call.uid, type: 'gbzj' }, + { $set: G.mongodb.createTreeObj({ key: `rec.${call.req.heroId}`, val: true }) }, + { upsert: true } + ); + + await PlayerFun.sendPrize(call, G.gc.hero[call.req.heroId].prize); + + call.succ({ + prize: G.gc.hero[call.req.heroId].prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/hero/ApiReset.ts b/src/api_s2c/hero/ApiReset.ts new file mode 100644 index 0000000..bcdb67a --- /dev/null +++ b/src/api_s2c/hero/ApiReset.ts @@ -0,0 +1,89 @@ +import { ApiCall } from "tsrpc"; +import { HeroFun } from '../../public/hero'; +import { PlayerFun } from '../../public/player'; +import { ReqReset, ResReset } from "../../shared/protocols/hero/PtlReset"; +import { prizeType } from '../../shared/protocols/type'; +import { PublicShared } from "../../shared/public/public"; + +export default async function (call: ApiCall) { + let req = call.req; + if (req.type == 'qs' && Object.values(call.conn.gud.heroPos).filter(_id => _id != '').concat(call.conn.gud.helpHeros.map(h => h._id)).intersection(req._ids).length > 0) return call.errorCode(-1); + + let heros = (await HeroFun.getHeros(call, req._ids)).filter(h => !!h); + if (heros.length < req._ids.length) return call.errorCode(-2); + + let prize: prizeType[] = []; + if (req.type == 'yl') { + for (let hero of heros) { + if (hero.lv <= 1 && hero.jieji == 0) { + let item = G.gc.item[hero.heroId]; + if (item) { + prize.push({ a: 'item', t: item.id, n: item.num }); + } + } + let p = await HeroFun.delHero(call, hero); + prize.push(...p); + } + prize = PublicShared.mergePrize(prize); + prize.forEach(p => { + if (p.t == 'jinbi') p.n = Math.floor(p.n * G.gc.guanlidiaodu.hero_cz_jinbi); + }); + return call.succ({ + prize: prize + }); + } else if (req.type == 'cz') { + // if (heros.filter(h => h.lv <= 1).length > 0) return call.errorCode(-10); + + let need = G.gc.guanlidiaodu.hero_cz_need.map(n => { + return { + ...n, + n: n.n * heros.length + }; + }); + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + + let oneHeros = heros.filter(v => v.lv <= 1 && v.jieji == 0 ).map(v => v._id); + + for (let hero of heros) { + + if (hero.lv > 1 || hero.jieji > 0) { + let p = await HeroFun.delHero(call, hero); + let { _id, uid, ...ops } = hero; + await HeroFun.changeHeroAttr(call, hero, ops); + prize.push(...p); + } else { + let item = G.gc.item[hero.heroId]; + if (item) { + prize.push({ a: 'item', t: item.id, n: item.num }); + } + } + } + + oneHeros.length > 0 && await PlayerFun.cutHero(call, oneHeros); + } else if (req.type == 'qs') { + if (heros.filter(h => h.lv > 1 || h.jieji > 0).length > 0) return call.errorCode(-20); + + let need = G.gc.guanlidiaodu.hero_qs_need.map(n => { + return { + ...n, + n: n.n * heros.length + }; + }); + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + + await PlayerFun.cutHero(call, heros.map(h => h._id)); + prize.push(...heros.map(c => G.gc.guanlidiaodu.hero_qs_prize[G.gc.hero[c.heroId].star] as any[]).reduce((a, b) => a.concat(b))); + } + + prize.forEach(p => { + if (p.t == 'jinbi') p.n = Math.floor(p.n * G.gc.guanlidiaodu.hero_cz_jinbi); + }); + prize = PublicShared.mergePrize(prize); + await PlayerFun.sendPrize(call, prize); + + call.succ({ + prize: prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/hero/ApiTalent.ts b/src/api_s2c/hero/ApiTalent.ts new file mode 100644 index 0000000..af1a9f1 --- /dev/null +++ b/src/api_s2c/hero/ApiTalent.ts @@ -0,0 +1,33 @@ +import { ApiCall } from "tsrpc"; +import { HeroFun } from '../../public/hero'; +import { ReqTalent, ResTalent } from "../../shared/protocols/hero/PtlTalent"; + +export default async function (call: ApiCall) { + let typeConf = G.gc.hero_tf[call.req.type]; + if (!typeConf) return call.error('', { code: -1 }); + + let hero = await G.redis.get('hero', call.uid, call.req._id); + if (!hero) return call.error('', { code: -2 }); + + let talent = hero.talent || Object.fromEntries(Object.keys(G.gc.hero_tf).map(t => [t, 0])); + let conf = typeConf[talent[call.req.type] + 1]; + if (!conf) return call.error('', { code: -3 }); + + let pre = conf.unlock; + // if (pre && talent[pre] < Object.keys(pre).length) return call.error('', { code: -4 }); + if (pre.length > 0) { + for (let type of pre) { + if (talent[type] < Object.values(G.gc.hero_tf[type]).slice(-1)[0].lv) return call.error('', { code: -4 }); + } + } + + let allPoint = G.gc.hero_jx[hero.awake]?.talent_point || 0; + let usePoints = Object.entries(talent).map(v => new Array(v[1]).fill(1).map((_v, i) => G.gc.hero_tf[v[0]][i + 1].cos)).reduce((a, b) => a.concat(b)); + let usePoint = usePoints.length > 0 ? usePoints.reduce((a, b) => a + b) : 0; + + if (allPoint - usePoint < conf.cos) return call.error('', { code: -4 }); + talent[call.req.type]++; + + await HeroFun.changeHeroAttr(call, hero, {talent: talent}); + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/hero/ApiWeaponUp.ts b/src/api_s2c/hero/ApiWeaponUp.ts new file mode 100644 index 0000000..ee43e58 --- /dev/null +++ b/src/api_s2c/hero/ApiWeaponUp.ts @@ -0,0 +1,63 @@ +import { ApiCall } from "tsrpc"; +import { HeroFun } from '../../public/hero'; +import { PlayerFun } from '../../public/player'; +import { ReqWeaponUp, ResWeaponUp } from "../../shared/protocols/hero/PtlWeaponUp"; +import { PublicShared } from '../../shared/public/public'; + +export default async function (call: ApiCall) { + let hero = await G.redis.get('hero', call.uid, call.req.id); + let heroConf = G.gc.hero[hero?.heroId]; + + if (!hero) return call.error(globalThis.lng.hero_1); + if (!heroConf.zhuanshu) return call.error(globalThis.lng.hero_16); + if (hero.lv < G.gc.herocom.zswqOpenLv) return call.error(`英雄达到${G.gc.herocom.zswqOpenLv}级开启`); + + let weapon = Object.assign({}, hero.weapon || { jieji: 0, star: 0, starProbability: 0 }); + let weaponConf = G.gc.zhuanshu[heroConf.zhuanshu]; + + if (call.req.type == 'jieji') { + if (!weaponConf[weapon.jieji + 1]) return call.error(globalThis.lng.hero_17); + if (weapon.star < Object.values(weaponConf[weapon.jieji]).slice(-1)[0].star) return call.error(globalThis.lng.hero_18); + + let need = weaponConf[weapon.jieji + 1][0].need; + await PlayerFun.checkNeedIsMeet(call, need); + + weapon.jieji += 1; + weapon.star = 0; + await PlayerFun.cutNeed(call, need); + await HeroFun.changeHeroAttr(call, hero, { + weapon: weapon + }); + + call.succ({}); + } else if (call.req.type == 'star') { + if (!weaponConf[weapon.jieji][weapon.star + 1]) return call.error(globalThis.lng.hero_19); + + let need = weaponConf[weapon.jieji][weapon.star + 1].need; + await PlayerFun.checkNeedIsMeet(call, need); + + await PlayerFun.cutNeed(call, need); + + let starFail: boolean; + let randomNum = PublicShared.randomNum(1, 100); + let vipAdd = 0; + if (G.gc.herocom.zswqVip[call.conn.gud.vip] == undefined) vipAdd += G.gc.herocom.zswqVip.last(); + else vipAdd += G.gc.herocom.zswqVip[call.conn.gud.vip]; + let probability = (weapon.starProbability + vipAdd + weaponConf[weapon.jieji][weapon.star + 1].probability) * 100; + if (randomNum <= probability) { + weapon.star += 1; + weapon.starProbability = 0; + starFail = false; + } else { + weapon.starProbability += 0.01; + starFail = true; + } + await HeroFun.changeHeroAttr(call, hero, { + weapon: weapon + }); + + call.succ({ + starFail: starFail + }); + } +} \ No newline at end of file diff --git a/src/api_s2c/hongdian/ApiGet.ts b/src/api_s2c/hongdian/ApiGet.ts new file mode 100644 index 0000000..2973dca --- /dev/null +++ b/src/api_s2c/hongdian/ApiGet.ts @@ -0,0 +1,160 @@ +import { ApiCall } from "tsrpc"; +import { DiXiaQianZhuangFun } from "../../public/dixiaqianzhuang"; +import { DxltFun } from "../../public/dxlt"; +import { GongHuiFun } from "../../public/gonghui/gonghui"; +import { JJCFun } from "../../public/jjc"; +import { KuangDongfun } from "../../public/kuangdong"; +import { LingZhuLaiXifun } from "../../public/lingzhulaixi"; +import { SignFun } from "../../public/sign"; +import { TaskFun } from "../../public/task"; +import { WangZheRongYaofun } from "../../public/wzry"; +import { XstaskFun } from "../../public/xstask"; +import { ReqGet, ResGet, hongdianKey } from "../../shared/protocols/hongdian/PtlGet"; +import { PublicShared } from '../../shared/public/public'; +import { getShouChongRedPoint } from '../event/shouchong/ApiReceive'; +import { md_redPoint } from '../gongyu/mingdao/ApiOpen'; +import { HongDianFun, HuoDongHongDianFun } from "./fun"; + +const defaultKeys: hongdianKey[] = ['jiuba', 'jiaotang', 'shouchong', 'clslhd', 'dixiaqianzhuanghd', 'gonghuihd', 'hbzbhd', 'jjchd', 'taskhd', + 'xstaskhd', 'lingzhulaixihd', 'dxlthd', 'wzcjhd', 'slzdhd', 'qjzzdhd', 'kuangdonghd', 'qiandaohd', 'kaifukuanghuanhd', 'jijinhd', 'zhuishalinghd', + 'yibaichouhd', 'huobanzhaomuhd', 'qirileichonghd', 'jierihd', 'kbzzhd', 'wzryhd', 'yuedujijin', 'mingdao', 'patahd', + 'heishihd', 'huodonghd', 'renown']; + +export default async function (call: ApiCall) { + + let res: ResGet = {}; + let keys = call.req.length < 1 ? [] : call.req; + let toDayZeroTime = PublicShared.getToDayZeroTime(); + + //正常跑完引导的等级 + if(call.conn.gud.lv >= 7){ + for (let key of keys) { + switch (key) { + case 'jiuba': + case 'jiaotang': + let db = await G.mongodb.collection('playerInfo', key).findOne({ uid: call.uid, type: key }); + res[key] = { show: (!db || toDayZeroTime >= db.freeTime) ? true : false }; + break; + case 'shouchong': + res[key] = await getShouChongRedPoint(call); + break; + case 'dixiaqianzhuanghd': + res[key] = await DiXiaQianZhuangFun.getHongDian(call); + break; + case 'taskhd': + res[key] = await TaskFun.getHongDian(call); + break; + case 'xstaskhd': + res[key] = await XstaskFun.getHongDian(call); + break; + case 'gonghuihd': + res[key] = await GongHuiFun.getHongDian(call); + break; + case 'jjchd': + res[key] = await JJCFun.getHongDian(call); + break; + case 'hbzbhd': + res[key] = await HongDianFun.hbzBgetHongDian(call); + break; + case 'clslhd': + res[key] = await HongDianFun.clslgetHongDian(call); + break; + case 'lingzhulaixihd': + // 讨伐海盗 + res[key] = await LingZhuLaiXifun.getHongDian(call); + break; + case 'dxlthd': + // 地下擂台 + res[key] = await DxltFun.getHongDian(call); + break; + case 'wzcjhd': + // 物资筹集 + res[key] = await HongDianFun.mrslGetHongDian(call); + break; + case 'slzdhd': + // 势力争夺 + res[key] = await HongDianFun.slzdGetHongDian(call); + break; + case 'qjzzdhd': + // 清缴真主党 + res[key] = await HongDianFun.qjzzdGetHongDian(call); + break; + case 'kuangdonghd': + // 底盘争夺 + res[key] = await KuangDongfun.getHongDian(call); + break; + case 'qiandaohd': + // 签到 + res[key] = await SignFun.getHongDian(call); + break; + case 'kaifukuanghuanhd': + // 开服狂欢红点 + res[key] = await HuoDongHongDianFun.kfkhHongDian(call); + break; + case 'jijinhd': + // 基金 + res[key] = await HuoDongHongDianFun.jijinHongDian(call); + break; + case 'zhuishalinghd': + // 追杀令红点 + res[key] = await HuoDongHongDianFun.zhuishalingHongDian(call); + break; + case 'yibaichouhd': + // 一百抽红点 + res[key] = await HuoDongHongDianFun.yibaichouHongDian(call); + break; + case 'huobanzhaomuhd': + // 伙伴招募红点 + res[key] = await HuoDongHongDianFun.huobanzhaomuHongDian(call); + break; + case 'qirileichonghd': + // 七日累充红点 + res[key] = await HuoDongHongDianFun.qirileichongHongDian(call); + break; + case 'jierihd': + // 节日红点 + res[key] = await HuoDongHongDianFun.jieriHongDian(call); + break; + case 'kbzzhd': + // 恐怖战争 + res[key] = await HongDianFun.kongbuzzHongDian(call); + break; + case 'wzryhd': + // 王者荣耀 + res[key] = await WangZheRongYaofun.getHongDian(call); + break; + case 'yuedujijin': + //月度基金 + res[key] = await HuoDongHongDianFun.yuedujijinHongDian(call); + break; + case 'mingdao': + res[key] = await md_redPoint(call.conn); + break; + // case 'heishiMrjx': + // // 黑市-每日精选--集合到heishihd查询,待删除,需前端配合 + // res[key] = await HuoDongHongDianFun.heiShiHongDian(call); + // break; + // case 'jitianhaoli': + // // 黑市-积天豪礼--集合到heishihd查询,待删除,需前端配合 + // res[key] = await HuoDongHongDianFun.heiShiLCHongDian(call); + // break; + case 'heishihd': + // 黑市红点 + res[key] = await HuoDongHongDianFun.heiShihd(call) + break; + case 'huodonghd': + res[key] = await HuoDongHongDianFun.houtaihdHongDian(call); + break; + case 'patahd': + // 黑暗塔红点 + res[key] = await HongDianFun.pataHongDian(call); + break; + case 'renown': + res[key] = await HongDianFun.renownHongDian(call); + break; + } + } + } + + call.succ(res); +} \ No newline at end of file diff --git a/src/api_s2c/hongdian/fun.ts b/src/api_s2c/hongdian/fun.ts new file mode 100644 index 0000000..f23a593 --- /dev/null +++ b/src/api_s2c/hongdian/fun.ts @@ -0,0 +1,833 @@ +import { ApiCall } from 'tsrpc'; +import { ReqAddHuoDong } from '../../monopoly/protocols/PtlAddHuoDong'; +import { ActionLog } from '../../public/actionLog/actionLog'; +import { HuoDongFun } from '../../public/huodongfun'; +import { PataFun } from '../../public/pata'; +import { PayFun } from '../../public/pay'; +import { ZhanLingTasks } from '../../public/zhanling'; +import { jijinType } from '../../shared/protocols/event/jijin/PtlOpen'; +import { hongdianKey, hongdianVal } from '../../shared/protocols/hongdian/PtlGet'; +import { payLog } from '../../shared/protocols/pay/PtlGetList'; +import { PublicShared } from '../../shared/public/public'; +import { clslDb } from '../conglinshoulie/ApiOpen'; +import { getVal } from '../event/jijin/ApiOpen'; +import { getTaskVal } from '../event/kaifukuanghuan/ApiOpen'; +import { YangChengMuBiaofun } from '../event/yangchengmubiao/fun'; +import { checkIsOpen } from '../hbzb/jfs/ApiOpen'; +import { PlayerShared } from "../../shared/public/player"; +import { kbzzUserDb } from '../kbzz/ApiOpen'; +import {number} from "mathjs"; +import {PlayerFun} from "../../public/player"; + +export class HongDianFun { + /**黑榜争霸红点 */ + static async hbzBgetHongDian(call: ApiCall) { + let _res: hongdianVal = { + show: false + }; + if (!checkIsOpen()) return _res; + let data = await G.mongodb.cPlayerInfo('hbzb').findOne({ uid: call.uid, type: 'hbzb' }); + let _mydata = (data && data.data && data.data.refreshTime >= PublicShared.getToDayZeroTime()) ? data.data : { winNum: 0, buyFightNum: 0, useFightNum: 0, refreshTime: G.time, winRecPrize: [], useRefreshNum: 0 }; + if (_mydata.useFightNum < _mydata.buyFightNum + G.gc.hbzb.jfsFightNum) { + _res.show = true; + } + if (!_res.show) { + let _con = JSON.parse(JSON.stringify(G.gc.hbzb.jfsFightWinNumPrize)); + for (let index = 0; index < _con.length; index++) { + const element = _con[index]; + if (_mydata.winRecPrize.includes(index)) continue; + if (_mydata.winNum < element.total) continue; + _res.show = true; + break; + } + } + return _res; + } + + /**丛林狩猎红点 */ + static async clslgetHongDian(call: ApiCall) { + let _res: hongdianVal = { + show: false + }; + let weekZeroTime = PublicShared.getToWeekMondayZeroTime(); + if (G.time < weekZeroTime + G.gc.clsl_com.fightTime[0] || G.time > weekZeroTime + G.gc.clsl_com.fightTime[1]) return _res; + let _mydata = await clslDb().findOne({ uid: call.uid, type: 'clsl' }); + let useNum = _mydata?.useFightNum || 0; + let buyNum = _mydata?.buyFightNum || 0; + if (useNum < buyNum + G.gc.clsl_com.fightNum) { + _res.show = true; + } + + if (!_res.show) { + let fightWinNum = _mydata?.fightWinNum || 0; + let _con = JSON.parse(JSON.stringify(G.gc.clsl_com.fightWinPrize)); + for (let index = 0; index < _con.length; index++) { + const element = _con[index]; + if (_mydata?.recWinPrize?.includes(index)) continue; + if (fightWinNum < element.total) continue; + _res.show = true; + break; + } + } + return _res; + } + + /** + * 每日试炼 物资筹集 红点 + * types.money 休闲区 + * types.exp 物资部 + * types.qhs 加工仓库 + * _mydata.data.numInfo.[type].['0'] 下标‘0’原本是根据难度设定次数,改为次数共享后,取‘0’值统一计算次数 + **/ + static async mrslGetHongDian(call: ApiCall) { + let _res = { + show: false + }; + let _mydata = await G.mongodb.cPlayerInfo('meirishilian').findOne({ uid: call.uid, type: 'meirishilian' }); + let types = ['money', 'exp', 'qhs']; + for(let type of types) { + let buyNum = _mydata?.data?.numInfo?.[type]?.['0']?.buyFightNum || 0; + let useNum = _mydata?.data?.numInfo?.[type]?.['0']?.useFightNum || 0; + _res.show = useNum < buyNum + (PlayerShared.getMingDaoBuff(call.conn.gud, 'wzsj_free') || 0) + G.gc.meirishilian_com.fightNum + if(_res.show) break + } + return _res; + } + + /**势力争夺 红点 */ + static async slzdGetHongDian(call: ApiCall) { + let _res = { + show: false + }; + let db = await G.mongodb.collection('slzdUser').findOne({ uid: call.uid }); + + let _mydata = (db && db.data && db.data.refreshTime >= PublicShared.getToDayZeroTime()) ? db.data : { fightNum: G.gc.slzd.ctorFightNum, winNum: 0, winRec: [] }; + if (_mydata.fightNum >= 1) { + _res.show = true; + } + + if (!_res.show) { + let _con = JSON.parse(JSON.stringify(G.gc.slzd.fightWinNumPrize)); + for (let index = 0; index < _con.length; index++) { + const element = _con[index]; + if (_mydata.winRec.includes(index)) continue; + if (_mydata.winNum < element.total) continue; + _res.show = true; + break; + } + } + return _res; + } + + /**清缴真主党 红点 */ + static async qjzzdGetHongDian(call: ApiCall) { + let _res = { + show: false + }; + return _res + let data = await G.mongodb.collection('scheduler').findOne({ type: 'qjzzd' }); + if (!data) return _res; // 功能未开放 + let db = await G.mongodb.cPlayerInfo('qjzzd').findOne({ uid: call.uid, type: 'qjzzd' }); + + let myData = (db && db.refreshTime >= data.lastRunTime) ? db : { refreshTime: data.lastRunTime, useFightNum: 0, maxDps: 0 }; + if (myData.useFightNum < G.gc.qjzzd.fightNum) { + _res.show = true; + } + return _res; + } + + /**恐怖战争 红点 */ + static async kongbuzzHongDian(call: ApiCall) { + let _res = { + show: false + }; + let second = G.time - PublicShared.getToWeekMondayZeroTime(); + if (second >= G.gc.kbzz.time.apply[0] && second < G.gc.kbzz.time.apply[1]) { + // 报名时间 + let state = await G.mongodb.cPlayerInfo('kbzzApply').findOne({ uid: call.uid, type: 'kbzzApply' }); + let apply = state?.apply || false; + if (!apply) { + _res.show = true; + return _res; + } + } else { + let dbData = await kbzzUserDb().findOne({ uid: call.uid, type: 'kbzzUser' }); + let myData = dbData ? dbData : { score: G.gc.kbzz.playerScore, recScorePrize: [], toDayScore: 0, fightNum: G.gc.kbzz.fightNum }; + let conf = G.gc.kbzz.scorePrize; + for (let index = 0; index < conf.length; index++) { + const element = conf[index]; + if (myData.recScorePrize.includes(index)) continue; + if (myData.toDayScore < element.total) continue; + _res.show = true; + break; + } + } + return _res; + } + + /**斩草除根(爬塔) 红点 */ + static async pataHongDian(call: ApiCall) { + let _res = { + show: false, + val: { + shopItems: { + show: false + }, + saodang: { + show: false + }, + reward: { + show: false + } + } + }; + let _conf = G.gc.patacom; + let _conList = Object.keys(_conf).sort((a, b) => Number(a) - Number(b)); + let _myData = await PataFun.getInfo(call.uid); + for (let index = 0; index < _conList.length; index++) { + const element = Number(_conList[index]); + // 未通关 已经经过排序,可以直接 break + if (_myData.lv <= element) break + /**已经领取 */ + if (_myData.gotarr.indexOf(element) != -1) continue + _res.show = true + _res.val.reward.show = true + } + // 扫荡判断 + let max = G.gc.com.pata_saodang.value + (PlayerShared.getMingDaoBuff(call.conn.gud, "zccg_sd") || 0); + let prize = G.gc.pata[_myData.lv - 1]?.sdprize; + _res.val.saodang.show = max - (_myData.saodangNum || 0) > 0 && !!prize + _res.show = _res.show || _res.val.saodang.show + // 商店判断 + // 个人爬塔商店购买情况 + let shopData = await G.redis.get('shop', call.uid, '7'); // 商店编号7,未理清商店id存放的数据表,后续该出尽量改为数据库读取 + if(shopData) { + let {buyNum, shopItems} = shopData + // 获取爬塔商店商品 + for(let index in shopItems) { + let x = shopItems[index] + if(x.needZCCG > 0 && x.needZCCG < _myData.lv && (buyNum && !buyNum[index])) { + // 验证是否达到购买条件 + let isOk = await (await PlayerFun.checkNeedIsMeet(call, x.buyNeed, false)).isOk + if(isOk) { + _res.show = true + _res.val.shopItems.show = true + } + } + } + } + return _res; + } + + /**名望免费礼包及特权领取 红点 */ + static async renownHongDian(call: ApiCall) { + let _res = { + show: false + }; + let _conf = G.gc.mw_com.gift + let _myData = await G.mongodb.collection('playerInfo', 'juewei').findOne({ uid: call.conn.uid, type: 'juewei' }); + // 无数据,有免费礼包 + if (!_myData) { + _res.show = true + return _res + } + + for (let index = 0; index < _conf.length; index++) { + const element = _conf[index]; + if (index == 0 && PublicShared.getToDayZeroTime(_myData.tequan.recTime || 0) == PublicShared.getToDayZeroTime(G.time)) { + // 特权红点 + let buyLog = await PayFun.getPayLog(call.uid, element.payId); + if (buyLog.length > 0) { + _res.show = true + return _res + } + } + + // 不是免费 + if (element.payId) continue + + /**已经领取最大次数 */ + if ((_myData.record?.[index] || 0) >= element.buyNum) continue + _res.show = true + break + } + return _res; + } + +} + + +export class HuoDongHongDianFun { + /**所有可支持后台活动 红点 */ + static async houtaihdHongDian(call: ApiCall) { + let _res = { + show: false, + val: { + hdid: [], + htype: [], + hdxq: {} + } + }; + let _hdList = [] + for (let i = 0; i < 8; i++){ + _hdList.push(...await HuoDongFun.gethdList(call, i + 1)) + } + // let _hdList = await HuoDongFun.gethdList(call) + for (let index = 0; index < _hdList.length; index++) { + const element = _hdList[index]; + let ishd: hongdianVal = { show: false } + if (element.htype == 1) { + // 检测 htype 1 养成目标活动红点 + ishd = await this.yangchengmubiaoHongDian(call, element) + } + + if (element.htype == 2) { + // 检测 htype 2 掉落兑换活动红点 + ishd = await this.diaoluoduihuanHongDian(call, element) + } + + if (element.htype == 3) { + // 检测 htype 3 传说之路活动红点 + ishd = await this.chuanshuozhiluHongDian(call, element) + } + + if (element.htype == 4) { + // 检测 htype 4 自选礼包活动红点 + ishd = await this.zixuanlibaoHongDian(call, element) + } + + if (element.htype == 5) { + // 检测 htype 5 累计充值活动红点 + ishd = await this.leijichongzhiHongDian(call, element) + } + + if (element.htype == 6) { + // 检测 htype 6 七日登录活动红点 + ishd = await this.qiridengluHongDian(call, element) + } + + // 此活动有红点 + if (ishd.show) { + _res.show = true + _res.val.hdid.push(element.hdid) + if (_res.val.htype.indexOf(element.htype) == -1) _res.val.htype.push(element.htype) + _res.val.hdxq[element.hdid] = ishd + } + } + return _res; + } + + /**开服狂欢红点 */ + static async kfkhHongDian(call: ApiCall) { + let _res: hongdianVal = { + show: false + }; + let [isOpen, tips] = PublicShared.getOpenCond(call, "kaifukuanghuan") + if (!isOpen) return _res; + + let db = await G.mongodb.cEvent('kaifukuanghuan').findOne({ uid: call.uid, type: 'kaifukuanghuan' }); + let data = db || { + receiveLogin: [], + receiveBox: [], + receiveTask: Object.fromEntries(Object.keys(G.gc.kaifukuanghuan.task).map(day => [day, []])) + }; + // 登录奖励 + let day = PublicShared.getOpenServerDay(call.conn.gud.cTime); + if (data.receiveLogin.length < day) _res.show = true; + + // 宝箱奖励 + if (!_res.show) { + let _con = G.gc.kaifukuanghuan.taskBoxPrize; + let finished = Object.values(data.receiveTask).map(fs => fs.length).reduce((a, b) => a + b); + for (let index = 0; index < _con.length; index++) { + const element = _con[index]; + if (data.receiveBox.includes(index)) continue; + if (finished < element.total) continue; + _res.show = true; + } + } + + // 任务奖励 + if (!_res.show) { + let _taskcon = G.gc.kaifukuanghuan.task; + let tasks = Object.values(G.gc.kaifukuanghuan.task as k_v<_gcType['kaifukuanghuan']['task']['1']>).map(tasks => tasks.map(task => task.taskType)).reduce((a, b) => a.concat(b)); + let taskFinished = await getTaskVal(call.conn.gud, [...new Set(tasks)]); + let _keys = Object.keys(_taskcon); + for (let index = 0; index < _keys.length; index++) { + const element = _taskcon[_keys[index]]; + + for (let indexTask = 0; indexTask < element.length; indexTask++) { + const _tmp = element[indexTask]; + if (parseInt(_keys[index]) > day) break; // 未开放 + if (data.receiveTask[_keys[index]].includes(indexTask)) continue; + // 重复领取 和 条件未满足 + if (_tmp.taskType != 'jjc_rank') { + if ((taskFinished[_tmp.taskType] || 0) < _tmp.total) continue; + } else { + if ((taskFinished[_tmp.taskType] || 0) > _tmp.total) continue; + } + + _res.show = true; + break; + } + + if (_res.show) break; + } + } + return _res; + } + + /**基金红点 */ + static async jijinHongDian(call: ApiCall) { + let _res: hongdianVal = { + show: false, + val: { + keys: [] + } + }; + let jijintype: jijinType[] = ["dengjijijin", "guanqiajijin", "dayjijin", "tianshujijin"]; + let logs = await PayFun.getPayLog(call.uid); + for (let index = 0; index < jijintype.length; index++) { + const element = jijintype[index]; + let conf = G.gc.jijin[element]; + + // 相关数据 + let data = await G.mongodb.cEvent(element).findOne({ uid: call.uid, type: element }); + let rec = data?.rec || {}; // 领取数据 + let val = await getVal(call, logs, element); + let payId = element == 'tianshujijin' ? 'zhongshenka' : element; + let isPay = logs?.[payId]?.length > 0; + for (let taskindex = 0; taskindex < conf.length; taskindex++) { + const elementtask = conf[taskindex]; + + if (val < elementtask.total) continue; // 未完成 + let hasPt = elementtask.pt.length > 0; + let hasTq = elementtask.tq.length > 0; + let getPt = !hasPt || rec[taskindex]?.pt == true; + let getTq = !hasTq || rec[taskindex]?.tq == true; + + if (getPt && !getTq && !isPay) continue; // 购买礼包后才可以领取奖励 + if (getPt && getTq) continue; // 奖励已领取 + + _res.show = true; + _res.val.keys.push(element); + break; + } + // if (_res.show) break; + } + return _res; + } + + /**追杀令红点 */ + static async zhuishalingHongDian(call: ApiCall) { + let _res: hongdianVal = { + show: false, + val: { + "task": [], + "zhanling": 0 + } + }; + + let [isOpen, tips] = PublicShared.getOpenCond(call, "zhanling") + if (!isOpen) return _res; + + // 任务奖励 + let conf = G.gc.zhanling.task; + let _mydata = await G.mongodb.cEvent('zhanling').findOne({ uid: call.uid, type: 'zhanling' }); + let tasks = G.gc.zhanling.task.map(t => { return { type: t.type as 'day' | 'week' | 'round', key: t.taskId }; }); + let taskFinished = await ZhanLingTasks.getLog(call.uid, tasks); + for (let index = 0; index < conf.length; index++) { + const element = conf[index]; + if (element.taskId == 'tqexp' && !_mydata?.isPay) continue; + if ((_mydata?.taskRec || []).includes(index)) continue; + // let taskVal = await ActionLog.getDayLog(call.uid, element.taskId); + let _key = `${element.type}@${element.taskId}`; + let taskVal = taskFinished[_key]; + if (taskVal < element.total) continue; + _res.show = true; + if (!_res.val["task"].includes(element.type)) { + _res.val["task"].push(element.type); + } + // break; 前端要求加 key + } + + // 战令奖励 + let rec = _mydata?.rec || {}; + let val = _mydata?.lv || 0; + let isPay = _mydata?.isPay; + let _conf = G.gc.zhanling.prize; + for (let zlindex = 0; zlindex < _conf.length; zlindex++) { + const zlelement = _conf[zlindex]; + if (val < zlelement.lv) continue; // 未完成 + let hasPt = zlelement.pt.length > 0; + let hasTq = zlelement.tq.length > 0; + let getPt = !hasPt || rec[zlindex]?.pt == true; + let getTq = !hasTq || rec[zlindex]?.tq == true; + + if (getPt && !getTq && !isPay) continue; // 购买礼包后才可以领取奖励 + if (getPt && getTq) continue; // 奖励已领取 + + _res.show = true; + _res.val["zhanling"] = 1; + break; + } + return _res; + } + + /**七日登录红点 */ + static async qiridengluHongDian(call: ApiCall, hdCon: ReqAddHuoDong) { + let _res: hongdianVal = { + show: false + }; + let _con = hdCon.data.arr; + let day = await ActionLog.getRetainLog(call.uid, `login_day_qiridenglu_${hdCon.hdid}`); + let _dbType: `qiridenglu${number}` = `qiridenglu${hdCon.hdid}` + let _mydata = await G.mongodb.cEvent(_dbType).findOne({ uid: call.uid, type: _dbType }); + for (let index = 0; index < _con.length; index++) { + const element = _con[index]; + if (element.day > day) continue; + if (_mydata?.recPrize?.includes(index)) continue; + _res.show = true; + break; + } + return _res; + } + + // 一百抽 子函数 + static async yibaochouhd(conf, finish: number, recArr: number[]) { + let ishd: 0 | 1 = 0; + for (let index = 0; index < conf.length; index++) { + const element = conf[index]; + if (finish < element.total) continue; + if (recArr.includes(index)) continue; + ishd = 1; + break; + } + return ishd; + } + + /**一百抽红点 */ + static async yibaichouHongDian(call: ApiCall) { + let _res: hongdianVal = { + show: false + }; + let [isOpen, tips] = PublicShared.getOpenCond(call, "yibaichou") + if (!isOpen) return _res; + + let _con = G.gc.yibaichou; + let _type = ['online', 'login']; + let _mydata = await G.mongodb.cEvent('yibaichou').findOne({ uid: call.uid, type: 'yibaichou' }); + for (let index = 0; index < _type.length; index++) { + const element = _type[index]; + + let conf = G.gc.yibaichou[element + 'Prize']; + let finish = element == 'login' ? call.conn.gud.loginDays : call.conn.gud.onlineTime; + let recArr: number[] = _mydata?.[element + 'Rec'] || []; + let ishd = await this.yibaochouhd(conf, finish, recArr); + if (ishd == 1) { + _res.show = true; + break; + } + } + return _res; + } + + /**伙伴招募红点 */ + static async huobanzhaomuHongDian(call: ApiCall) { + let _res: hongdianVal = { + show: false + }; + + let [isOpen, tips] = PublicShared.getOpenCond(call, "huobanzhaomu") + if (!isOpen) return _res; + + let _con = G.gc.huobanzhaomu; + let _mydata = await G.mongodb.cEvent('huobanzhaomu').findOne({ uid: call.uid, type: 'huobanzhaomu' }); + for (let index = 0; index < _con.length; index++) { + const element = _con[index]; + if (_mydata?.rec.includes(index)) continue; // 已领取 + if (element.gudKey && call.conn.gud[element.gudKey] < element.total) continue; // 未达成 + if (!element.gudKey && (_mydata?.rec?.length || 0) < _con.length - 1) continue; // 大奖资格不够 + _res.show = true; + break; + } + return _res; + } + + /**累计充值红点 */ + static async leijichongzhiHongDian(call: ApiCall, hdCon: ReqAddHuoDong) { + let _res: hongdianVal = { + show: false + }; + let _dbType: `leijichongzhi${number}` = `leijichongzhi${hdCon.hdid}` + let _con = hdCon.data.tasks; + let db = await G.mongodb.cEvent(_dbType).findOne({ uid: call.uid, type: _dbType }); + let _mydata = db || { sTime: PublicShared.getToDayZeroTime(G.time), recIndex: [] }; + let payNum = await PayFun.getPayDaysAllPayNum(call.uid, hdCon.stime, hdCon.rtime); + for (let index = 0; index < _con.length; index++) { + const element = _con[index]; + if (_mydata.recIndex.includes(index)) continue; + if (payNum < element.total) continue; + _res.show = true; + break; + } + return _res; + } + + /**七日累充红点 */ + static async qirileichongHongDian(call: ApiCall) { + let _res: hongdianVal = { + show: false + }; + let db = await G.mongodb.cEvent('qirichongzhi').findOne({ uid: call.uid, type: 'qirichongzhi' }); + let _mydata = db || { round: 0, sTime: PublicShared.getToDayZeroTime(G.time), recIndexs: [] }; + let _con = G.gc.qirichongzhi[_mydata.round]; + let finished = await PayFun.getPayDaysAllPayNum(call.uid, _mydata.sTime, _mydata.sTime + G.gc.qirichongzhi[_mydata.round].time); + for (let index = 0; index < _con.tasks.length; index++) { + const element = _con.tasks[index]; + if (_mydata.recIndexs.includes(index)) continue; + if (finished < element.total) continue; + _res.show = true; + break; + } + return _res; + } + + /**节日 子函数 */ + static async jieriHD(call: ApiCall, _conf, recIndex, _type, _finish: number) { + let ishd: 0 | 1 = 0; + for (let index = 0; index < _conf.length; index++) { + const element = _conf[index]; + if (_type == 'task') _finish = await ActionLog.getDayLog(call.uid, element.taskId); + if (_finish < element.total) continue; + if (recIndex.includes(index)) continue; + ishd = 1; + break; + } + return ishd; + } + + /**节日红点 */ + static async jieriHongDian(call: ApiCall) { + let _res: hongdianVal = { + show: false + }; + let db = await G.mongodb.cEvent('jierihuodong').findOne({ uid: call.uid, type: 'jierihuodong' }); + let _mydata = db || { refreshTime: G.time, recTask: [], recLogin: [] }; + let _types = ['login', 'task']; + let finish = call.conn.gud.loginDays; + for (let index = 0; index < _types.length; index++) { + const element = _types[index]; + let _conf = element == 'login' ? G.gc.jierihuodong.denglufuli : G.gc.jierihuodong.huodongrenwu; + let recIndex = element == 'login' ? (_mydata?.recLogin || []) : (_mydata?.recTask || []); + let ishd = await this.jieriHD(call, _conf, recIndex, element, finish); + if (ishd == 1) { + _res.show = true; + break; + } + } + return _res; + } + + /**养成目标红点 */ + static async yangchengmubiaoHongDian(call: ApiCall, hdCon: ReqAddHuoDong) { + let _res: hongdianVal = { + show: false, + }; + + let _hdCon = hdCon.data; + let _mydata = await YangChengMuBiaofun.getMyData(call, hdCon.hdid); + + let _tasks = {}; // 所有任务 taskid 为key + Object.values(_hdCon.tasklist).map(l => { + return Object.assign(_tasks, l); + }); + + let _ishd = 0; + for (let indextask = 0; indextask < Object.keys(_tasks).length; indextask++) { + const elementtask = Object.keys(_tasks)[indextask]; + let _tmp = _tasks[elementtask]; + if (_tmp.pval <= (_mydata.taskval[elementtask] || 0) && !_mydata.finishid[_tmp.type].includes(parseInt(elementtask))) { + // 任务完成且没有领取 + _res.show = true; + _ishd = 1; + break; + } + } + + if (_ishd != 1) { + let _gift = _hdCon.gift.filter(l => !l.payId && l.need.length <= 0); + for (let indexgift = 0; indexgift < _gift.length; indexgift++) { + const elementgift = _gift[indexgift]; + let buyNum = _mydata.record?.[indexgift] || 0; + if (buyNum < elementgift.buyNum) { + _res.show = true; + break; + } + } + } + return _res; + } + + /**掉落兑换红点 */ + static async diaoluoduihuanHongDian(call: ApiCall, hdCon: ReqAddHuoDong): Promise { + let _dbType: `diaoluoduihuan${number}` = `diaoluoduihuan${hdCon.hdid}` + // 取出用户已领取的数据 + let data = await G.mongodb.cEvent(_dbType).findOne({uid: call.uid, type: _dbType}) + // 循环活动商店,判断免费与领取 + let confEvent = Object.keys(hdCon.data.event).filter(k => Array.isArray(hdCon.data.event[k])) + for(let key of confEvent){ + let item = hdCon.data.event[key] + for(let i in item) { + if(item[i].free && !(data && data.record && data.record[key] && data.record[key][i])) return {show: true} + } + } + return { show: false }; + } + + /**传说之路 */ + static async chuanshuozhiluHongDian(call: ApiCall, hdCon: ReqAddHuoDong): Promise { + let _dbType: `chuanshuozhilu${number}` = `chuanshuozhilu${hdCon.hdid}` + + let task = hdCon.data + let db = await G.mongodb.cEvent(_dbType).findOne({ uid: call.uid, type: _dbType }); + let info: Partial = db?.info?.[task.hid] || {}; + + for (let conf of task.task) { + if (info[conf.type] >= conf.total && !(info.rec || []).includes(conf.idx)) return { show: true }; + } + + if (info.rec?.length >= task.box.total && !info.box) return { show: true }; + + return { show: false }; + } + + /**自选礼包红点 */ + static async zixuanlibaoHongDian(call: ApiCall, hdCon: ReqAddHuoDong): Promise { + let _dbType: `zixuanlibao${number}` = `zixuanlibao${hdCon.hdid}` + let db = await G.mongodb.cEvent(_dbType).findOne({ uid: call.uid, type: _dbType }); + if (!db?.record?.[0]){ + return { show: true } + } + + return { show: false }; + } + + /**月度基金 */ + static async yuedujijinHongDian(call: ApiCall): Promise { + let pays = 0; + let payIds = G.gc.yuedujijin.map(v => v.payId); + let obj: k_v = {}; + + for (let id of payIds) { + let logs = obj[id] = await PayFun.getPayLog(call.uid, id); + if (logs.length > 0) pays++; + } + + if (pays < 1) return { show: false }; + + for (let conf of G.gc.yuedujijin) { + let id = conf.payId; + let logs = obj[conf.payId]; + if (logs.length < 1) continue; + let db = await G.mongodb.cEvent(id as `${number}jijin`).findOne({ uid: call.uid, type: id as `${number}jijin` }); + let rec = db?.rec || []; + let days = db?.days || 0; + let round = db?.round || 0; + if (rec.length < days + 1 && rec.length < conf.prize.length * (round + 1)) return { show: true }; + } + + return { show: false }; + } + + /** 黑市活动 */ + static async heiShihd(call: ApiCall): Promise { + let _res: hongdianVal = { + show: false, + val: { + meirijingxuan: {}, + jitianhaoli: {}, + niudanji: {} + } + }; + _res.val.meirijingxuan = await this.heiShiHongDian(call) + _res.val.jitianhaoli = await this.heiShiLCHongDian(call) + _res.val.niudanji = await this.heiShiNiuDanJi(call) + Object.values(_res.val).forEach(x => _res.show = _res.show || x.show) + return _res + } + + /**黑市 每日精选 */ + static async heiShiHongDian(call: ApiCall): Promise { + let payKey = "136Gift1" + let _res: hongdianVal = { + show: false, + val: {stask: []} + }; + let db = await G.mongodb.cEvent('136Gift').findOne({ uid: call.uid, type: '136Gift' }); + let payData = await PayFun.getPayLog(call.uid) + let payLen = (payData[payKey] || []).length + let isBuy = !(!payLen || payData[payKey][payLen - 1].eTime < G.time) + let _myData = (db && db.refreshTime >= PublicShared.getToDayZeroTime() && db.recIndex) ? db.recIndex : []; + let _con = G.gc["dixiaheishi"]['136Gift']; + for (let index = 1; index < _con.length; index++) { + const element = _con[index]; + // if (element.payId && !isBuy) { + if (element.payId && !isBuy) { + continue; + } + if (_myData.includes(index)) { + continue; + } + _res.val.stask.push(index) + if(index > 1 && !_res.val.stask.includes(0)) _res.val.stask.push(0) + _res.show = true + } + return _res; + } + /**黑市 积天豪礼 */ + static async heiShiLCHongDian(call: ApiCall): Promise { + let _res: hongdianVal = { + show: false + }; + let db = await G.mongodb.cEvent('15leichong').findOne({ uid: call.uid, type: '15leichong' }); + + if(!db) return _res; + + let _con = G.gc.shiwuleichong.data[db.index]; + let payDay = await PayFun.getPayDaysBuyPayNum(call.uid, db.sTime, db.sTime + _con.time, G.gc.shiwuleichong.dayPayNeed); + for (let index = 0; index < _con.tasks.length; index++) { + const element = _con.tasks[index]; + if (db.recIndex.includes(index)) continue; + if (payDay < element.total) continue; + _res.show = true; + break; + } + return _res; + } + + /**黑市 扭蛋机 */ + static async heiShiNiuDanJi(call: ApiCall): Promise { + // 查询配置,获取等级限制 + let openCondConf = G.gc.openCond['hs_btn_ndj'] + let _res: hongdianVal = { + show: false + }; + // 等级不满足,上锁,不查询红点。 + if(call.conn.gud.lv < openCondConf.display.lv) return _res + let db = await G.mongodb.cEvent('niudanji').findOne({ uid: call.uid, type: 'niudanji' }); + let useNum = db?.useNum || 0 + let hasNum = Math.floor(call.conn.gud.payExp / G.gc.niudanji.pay2num) + _res.show = useNum < hasNum + return _res + } +} + + +export class HongDianChange { + /**红点 change */ + static async sendChangeKey(uid: string, key: hongdianKey[]) { + G.server.sendMsgByUid(uid, 'msg_s2c/HongDianChange', key); + } +} + diff --git a/src/api_s2c/item/ApiGetList.ts b/src/api_s2c/item/ApiGetList.ts new file mode 100644 index 0000000..3f70d52 --- /dev/null +++ b/src/api_s2c/item/ApiGetList.ts @@ -0,0 +1,22 @@ +import { ApiCall } from "tsrpc"; +import { RedisCollections2 } from '../../module/redis'; +import { ReqGetList, ResGetList } from "../../shared/protocols/item/PtlGetList"; + +export default async function (call: ApiCall) { + let list: ResGetList['list'] = {}; + let kvList: k_v = {}; + let arrList = await G.mongodb.collection('item').find({ uid: call.uid,num:{$ne:0}}).toArray(); + + arrList.forEach(v => { + let d = G.mongodb.conversionIdObj(v); + kvList[G.formatRedisKey(d.itemId)] = d; + list[d.itemId] = d; + }); + + G.redis.set('item', call.uid, kvList); + + call.conn.item = list; + call.succ({ + list: list + }); +} \ No newline at end of file diff --git a/src/api_s2c/item/ApiUse.ts b/src/api_s2c/item/ApiUse.ts new file mode 100644 index 0000000..ad9e3c8 --- /dev/null +++ b/src/api_s2c/item/ApiUse.ts @@ -0,0 +1,120 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { UserFun } from '../../public/user'; +import { ReqUse, ResUse } from "../../shared/protocols/item/PtlUse"; +import { PublicShared } from '../../shared/public/public'; +import { TanXianShared } from '../../shared/public/tanxian'; +import { event_dldh_addPrize } from '../event/diaoluoduihuan/ApiOpen'; +import { getEventPrize } from '../tanxian/ApiEvent'; + +const iType = { + 3: 'hero', + 4: 'equip', + 5: 'item' +}; + +export default async function (call: ApiCall) { + let item = call.conn.item[call.req.itemId]; + let useNum = call.req.useNum; + let itemConf = G.gc.item[item?.itemId]; + + if (!item) return call.error(globalThis.lng.item_1); + if (itemConf.type == 1) return call.error(globalThis.lng.item_2); + if (useNum < 1) return call.error(globalThis.lng.item_3); + + let cutPrize: atn[] = []; + let sendPrize: atn[] = []; + + if (itemConf.type == 2) { + + if (useNum > item.num) return call.error(globalThis.lng.item_3); + if (itemConf.useNeed?.length > 0) { + await PlayerFun.checkNeedIsMeet(call, itemConf.useNeed.map(need => { return { ...need, n: need.n * useNum }; })); + await PlayerFun.cutNeed(call, itemConf.useNeed.map(need => { return { ...need, n: need.n * useNum }; })); + } + if (itemConf.selecPrize?.length > 0) { + if (call.req.selectIndex == undefined || !itemConf.selecPrize[call.req.selectIndex]) return call.errorCode(-3); + sendPrize.push({ ...itemConf.selecPrize[call.req.selectIndex], n: itemConf.selecPrize[call.req.selectIndex].n * useNum }); + } + + if (itemConf.diaoluo) { + sendPrize.push(...PublicShared.randomDropGroup(itemConf.diaoluo, useNum)); + } else if (itemConf.usePrize?.length > 0) { + itemConf.usePrize.forEach(id => { + sendPrize.push(...PublicShared.randomDropGroup(id, useNum)); + }); + } + + if (G.gc.other[`item${itemConf.id}`] && itemConf.id == 614) { + let lv = call.conn.gud.wxcLv.lv; + let conf = G.gc.other[`item${itemConf.id}`] as _gcType['other']['item614']; + let find = conf.find(v => lv >= v.lv[0] && lv <= v.lv[1]); + sendPrize = PublicShared.randomDropGroup(find.dlz).map(dp => { + return { + ...dp, + n: dp.n * useNum + }; + }); + } + + if (itemConf.id == 24) { + + let prize = TanXianShared.getGuaJiPrize(G.gc.tanxian_com.fastGuaJiTime, call.conn.gud.mapId, false); + let eventPrize = getEventPrize(call.conn.gud.lv, G.gc.tanxian_com.fastGuaJiTime, call.conn.gud.mapId, call.conn.gud.wxcLv?.lv); + let _p = [].concat(prize.prize, prize.dlz, eventPrize.prize); + // await event_dldh_addPrize(_p, call, G.gc.tanxian_com.fastGuaJiTime); + sendPrize = _p.map(atn => ({ ...atn, n: atn.n * useNum })); + } + + cutPrize = [{ + a: 'item', + t: item.itemId, + n: useNum + }]; + + sendPrize.forEach(atn => { + if (atn.a == 'shiwu' && !atn.colour) atn.colour = itemConf.colour; + }); + } else if ([2, 3, 4].includes(itemConf.type)) { + if (useNum * itemConf.num > item.num) return call.error(globalThis.lng.item_3); + if (!itemConf[iType[itemConf.type]]) return call.error(globalThis.lng.item_4); + cutPrize = [ + { + a: 'item', + t: item.itemId, + n: useNum * itemConf.num + } + ]; + sendPrize = [ + { + a: iType[itemConf.type], + t: itemConf[iType[itemConf.type]].toString(), + n: useNum + } + ]; + } else if ([7, 8].includes(itemConf.type)) { + if (useNum > item.num) return call.error(globalThis.lng.item_3); + if (itemConf.type == 7) UserFun.activeHeadFrame(call.uid, itemConf.diaoluo.toString(), useNum); + if (itemConf.type == 8) UserFun.activeChatFrame(call.uid, itemConf.diaoluo.toString(), useNum); + + cutPrize = [ + { + a: 'item', + t: item.itemId, + n: useNum + } + ]; + } + + if (cutPrize && sendPrize) { + await PlayerFun.cutNeed(call, cutPrize); + await PlayerFun.sendPrize(call, sendPrize); + + call.succ({ + prize: sendPrize + }); + } else { + call.error(globalThis.lng.item_5); + } + +} \ No newline at end of file diff --git a/src/api_s2c/jiaotang/ApiLottery.ts b/src/api_s2c/jiaotang/ApiLottery.ts new file mode 100644 index 0000000..2eb5bea --- /dev/null +++ b/src/api_s2c/jiaotang/ApiLottery.ts @@ -0,0 +1,96 @@ +import { OptionalId, UpdateFilter } from 'mongodb'; +import { ApiCall } from "tsrpc"; +import { CollectionPlayerInfo } from '../../module/collection_palyerInfo'; +import { PlayerFun } from '../../public/player'; +import { ReqLottery, ResLottery } from "../../shared/protocols/jiaotang/PtlLottery"; +import { ResOpen } from '../../shared/protocols/jiaotang/PtlOpen'; +import { PublicShared } from '../../shared/public/public'; +import { HongDianChange } from '../hongdian/fun'; + +export default async function (call: ApiCall) { + let need: atn[]; + let prize: atn[]; + let result = await G.mongodb.collection('playerInfo', 'jiaotang').findOne({ uid: call.uid, type: 'jiaotang' }); + let update: UpdateFilter>>; + let changeData: Partial; + + if (call.req.type == 1) { + let isReplace = false; + let conf = G.gc.choujiang.jiaotang[1]; + let toDayZeroTime = PublicShared.getToDayZeroTime(); + let oneReplaceNum = result?.oneReplaceNum || 0; + + if (toDayZeroTime <= result?.freeTime) { + let meet = await PlayerFun.checkNeedByArgs(call, conf.need1, conf.need2); + need = [meet.atn]; + } + + prize = []; + prize = prize.concat(PublicShared.randomDropGroup(oneReplaceNum == conf.replace.num ? conf.replace.diaoluo : result?.oneNum ? conf.firstdiaoluo : conf.diaoluo)); + + for (let atn of prize) { + let atnConf = PublicShared.getAtnConf(atn) as any; + if (atnConf.colour >= conf.replace.colour) { + isReplace = true; + break; + } + } + + update = { + $inc: { oneNum: 1 }, + $set: { oneReplaceNum: isReplace ? 0 : oneReplaceNum + 1 } + }; + + changeData = { + oneNum: (result?.oneNum || 0) + 1 + }; + + if (!result || !result.freeTime || result.freeTime < toDayZeroTime) { + Object.assign(update.$set, { freeTime: G.time }); + Object.assign(changeData, { freeTime: G.time }); + } + } else if (call.req.type == 10) { + let conf = G.gc.choujiang.jiaotang[2]; + + let meet = await PlayerFun.checkNeedByArgs(call, conf.need1, conf.need2); + need = [meet.atn]; + + let dlArr = result?.tenNum ? conf.firstdiaoluo : conf.diaoluo; + + dlArr.sort(() => { return 0.5 - Math.random(); }); + prize = []; + for (let id of dlArr) { + prize = prize.concat(PublicShared.randomDropGroup(id)); + } + + update = { + $inc: { tenNum: 1 } + }; + + changeData = { + tenNum: (result?.tenNum || 0) + 1 + }; + } + + need && await PlayerFun.cutNeed(call, need); + await PlayerFun.sendPrize(call, prize); + + G.mongodb.collection('playerInfo', 'jiaotang').updateOne( + { + uid: call.uid, + type: 'jiaotang' + }, + { + ...update + }, + { + upsert: true + } + ); + HongDianChange.sendChangeKey(call.uid, ['jiaotang', 'taskhd', 'huodonghd']); + + call.succ({ + prize: prize, + changeData: changeData + }); +} \ No newline at end of file diff --git a/src/api_s2c/jiaotang/ApiOpen.ts b/src/api_s2c/jiaotang/ApiOpen.ts new file mode 100644 index 0000000..5977234 --- /dev/null +++ b/src/api_s2c/jiaotang/ApiOpen.ts @@ -0,0 +1,13 @@ +import { ApiCall } from "tsrpc"; +import { ReqOpen, ResOpen } from "../../shared/protocols/jiaotang/PtlOpen"; + +export default async function (call: ApiCall) { + + let result = await G.mongodb.collection('playerInfo', 'jiaotang').findOne({ uid: call.uid, type: 'jiaotang' }); + + call.succ({ + oneNum: result?.oneNum || 0, + tenNum: result?.tenNum || 0, + freeTime: result?.freeTime || 0 + }); +} \ No newline at end of file diff --git a/src/api_s2c/jiuba/ApiLottery.ts b/src/api_s2c/jiuba/ApiLottery.ts new file mode 100644 index 0000000..5323ca1 --- /dev/null +++ b/src/api_s2c/jiuba/ApiLottery.ts @@ -0,0 +1,125 @@ +import { OptionalId, UpdateFilter } from 'mongodb'; +import { ApiCall } from "tsrpc"; +import { CollectionPlayerInfo } from '../../module/collection_palyerInfo'; +import { ChatFun } from '../../public/chat'; +import { PlayerFun } from '../../public/player'; +import { UserFun } from '../../public/user'; +import { ResOpen } from '../../shared/protocols/jiaotang/PtlOpen'; +import { ReqLottery, ResLottery } from "../../shared/protocols/jiuba/PtlLottery"; +import { PublicShared } from '../../shared/public/public'; +import { HongDianChange } from '../hongdian/fun'; + +export default async function (call: ApiCall) { + let need: atn[]; + let prize: atn[]; + let result = await G.mongodb.collection('playerInfo', 'jiuba').findOne({ uid: call.uid, type: 'jiuba' }); + let update: UpdateFilter>>; + let changeData: Partial; + + if (call.req.type == 1 || call.req.type == 30) { + let isReplace = false; + let conf = G.gc.choujiang.jiuba[1]; + let toDayZeroTime = PublicShared.getToDayZeroTime(); + let oneReplaceNum = result?.oneReplaceNum || 0; + + if (toDayZeroTime <= result?.freeTime) { + let meet = await PlayerFun.checkNeedByArgs(call, conf.need1, conf.need2); + need = [meet.atn]; + } + + prize = []; + prize = prize.concat(PublicShared.randomDropGroup(oneReplaceNum == conf.replace.num ? conf.replace.diaoluo : (call.req.type == 1 ? conf.diaoluo.random() : conf.firstdiaoluo))); + + for (let atn of prize) { + let atnConf = PublicShared.getAtnConf(atn) as any; + if (conf.replace.colour.includes(atnConf.colour) || conf.replace.colour.includes(atnConf.star)) { + isReplace = true; + break; + } + } + + update = { + $inc: { oneNum: 1 }, + $set: { oneReplaceNum: isReplace ? 0 : oneReplaceNum + 1 } + }; + + changeData = { + oneNum: (result?.oneNum || 0) + 1 + }; + + if (!result || !result.freeTime || result.freeTime < toDayZeroTime) { + Object.assign(update.$set, { freeTime: G.time }); + Object.assign(changeData, { freeTime: G.time }); + } + } else if (call.req.type == 10) { + let conf = G.gc.choujiang.jiuba[2]; + let allNum = (result?.tenNum || 0) * 10; + let meet = await PlayerFun.checkNeedByArgs(call, conf.need1, conf.need2); + need = [meet.atn]; + + let dlArr = result?.tenNum ? [...conf.diaoluo] : [...conf.firstdiaoluo]; + dlArr.sort(() => { return 0.5 - Math.random(); }); + + if (G.gc.choujiang.jiubabaodi.numbd[allNum]) { + dlArr.splice(0, G.gc.choujiang.jiubabaodi.numbd[allNum].length); + dlArr.push(...G.gc.choujiang.jiubabaodi.numbd[allNum]); + dlArr.sort(() => { return 0.5 - Math.random(); }); + } + + + prize = []; + for (let id of dlArr) { + prize = prize.concat(PublicShared.randomDropGroup(id)); + } + + update = { + $inc: { tenNum: 1 } + }; + + changeData = { + tenNum: (result?.tenNum || 0) + 1 + }; + } + + need && await PlayerFun.cutNeed(call, need); + await PlayerFun.sendPrize(call, prize); + + prize.forEach(p => { + if (p.a == 'hero' && G.gc.hero[p.t]?.star == 5) { + ChatFun.newMsg({ + type: 'local', + msg: G.gc.pmd.get_hero_star5_pmd, + time: G.time, + sender: 'system', + otherData: { + pmd: true, + args: [call.conn.gud.name, G.gc.hero[p.t].name] + } + }); + } + }); + + G.mongodb.collection('playerInfo', 'jiuba').updateOne( + { + uid: call.uid, + type: 'jiuba' + }, + { + ...update + }, + { + upsert: true + } + ); + + HongDianChange.sendChangeKey(call.uid, ['jiuba', 'taskhd', 'huodonghd']); + + let oneNum = result?.oneNum || 0; + let tenNum = result?.tenNum || 0; + UserFun.activeHeadFrame(call.uid, 'jiuba/Lottery', oneNum + tenNum * 10 + call.req.type); + + call.succ({ + prize: prize, + changeData: changeData + }); +} \ No newline at end of file diff --git a/src/api_s2c/jiuba/ApiOpen.ts b/src/api_s2c/jiuba/ApiOpen.ts new file mode 100644 index 0000000..3c4623a --- /dev/null +++ b/src/api_s2c/jiuba/ApiOpen.ts @@ -0,0 +1,12 @@ +import { ApiCall } from "tsrpc"; +import { ReqOpen, ResOpen } from "../../shared/protocols/jiuba/PtlOpen"; + +export default async function (call: ApiCall) { + let result = await G.mongodb.collection('playerInfo', 'jiuba').findOne({ uid: call.uid, type: 'jiuba' }); + + call.succ({ + oneNum: result?.oneNum || 0, + tenNum: result?.tenNum || 0, + freeTime: result?.freeTime || 0 + }); +} \ No newline at end of file diff --git a/src/api_s2c/jjc/ApiBuyFightNum.ts b/src/api_s2c/jjc/ApiBuyFightNum.ts new file mode 100644 index 0000000..5674e78 --- /dev/null +++ b/src/api_s2c/jjc/ApiBuyFightNum.ts @@ -0,0 +1,38 @@ +import { ApiCall } from "tsrpc"; +import { JJCFun } from '../../public/jjc'; +import { PlayerFun } from '../../public/player'; +import { ReqBuyFightNum, ResBuyFightNum } from "../../shared/protocols/jjc/PtlBuyFightNum"; +import { jjcChange } from '../../shared/protocols/jjc/PtlOpen'; +import { PublicShared } from '../../shared/public/public'; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + + const data = await JJCFun.getData(call); + const change: jjcChange = {}; + const buyNum = call.req.num || 1; + const maxBuyNum = G.gc.jjc_com.buyFightNumVip[call.conn.gud.vip] as number; + + if (data.buyFightNum + buyNum > maxBuyNum) return call.error(globalThis.lng.jjc_1); + + let need = new Array(call.req.num).fill(1).map((v, i) => i + 1).map(n => { + return { + a: 'attr', + t: 'rmbmoney', + n: Math.floor((data.buyFightNum + n) / 2 * 10) + 10 + }; + }); + need = PublicShared.mergePrize(need); + + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + + change.buyFightNum = data.buyFightNum + buyNum; + + JJCFun.changeData(call, change); + + HongDianChange.sendChangeKey(call.uid, ['jjchd']); + call.succ({ + change: change + }); +} \ No newline at end of file diff --git a/src/api_s2c/jjc/ApiFight.ts b/src/api_s2c/jjc/ApiFight.ts new file mode 100644 index 0000000..008a62e --- /dev/null +++ b/src/api_s2c/jjc/ApiFight.ts @@ -0,0 +1,54 @@ +import { ApiCall } from "tsrpc"; +import { FightFun } from '../../public/fight'; +import { JJCFun } from '../../public/jjc'; +import { PlayerFun } from '../../public/player'; +import { ReqFight, ResFight } from "../../shared/protocols/jjc/PtlFight"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + + const res: ResFight = { + result: null, + change: {} + }; + const data = await JJCFun.getData(call); + // ### globalDebug JJCFun 查询传参uid的排名 + const enemy = await JJCFun.getPlayerData(call.req.uid) + + if (!enemy) return call.error(globalThis.lng.jjc_2, { code: 2 }); + if (data.useFightNum >= data.buyFightNum + G.gc.jjc_com.fightNum) return call.error(globalThis.lng.jjc_4); + if (JJCFun.lockPlayer[call.req.uid]) return call.error(globalThis.lng.jjc_3, { code: 2 }); + + JJCFun.lockPlayer[enemy.player.uid] = true; + JJCFun.lockPlayer[call.uid] = true; + + let result = res.result = await FightFun.fightJJc(call, enemy); + + if (result.winSide == 0) { + res.prize = G.gc.jjc_com.fightWinPrize; + await PlayerFun.sendPrize(call, G.gc.jjc_com.fightWinPrize); + JJCFun.addRankInfo({ player: call.conn.gud }, enemy); + res.change.recordWin = (data.recordWin || 0) + 1; + } + + JJCFun.lockPlayer[enemy.player.uid] = false; + JJCFun.lockPlayer[call.uid] = false; + + let userRank = await JJCFun.getPlayerRank(call.uid) + let enemyRank = await JJCFun.getPlayerRank(enemy.player.uid) + result.otherData = {userRank,enemyRank} + + JJCFun.saveFightLog(call.uid, result); + JJCFun.saveFightLog(enemy.player.uid, result); + + res.change.useFightNum = data.useFightNum + 1; + Object.assign(res.change, await JJCFun.randomEnemy(call.uid)); + + JJCFun.changeData(call, res.change); + HongDianChange.sendChangeKey(call.uid, ['jjchd', 'taskhd', 'huodonghd']); + + (await call.conn.gonghui)?.addExp(5); + + call.succ(res); + +} \ No newline at end of file diff --git a/src/api_s2c/jjc/ApiFightLog.ts b/src/api_s2c/jjc/ApiFightLog.ts new file mode 100644 index 0000000..cd9ebc9 --- /dev/null +++ b/src/api_s2c/jjc/ApiFightLog.ts @@ -0,0 +1,7 @@ +import { ApiCall } from "tsrpc"; +import { FightFun } from '../../public/fight'; +import { ReqFightLog, ResFightLog } from "../../shared/protocols/jjc/PtlFightLog"; + +export default async function (call: ApiCall) { + call.succ(await FightFun.readLog(call.uid, 'jjc')); +} \ No newline at end of file diff --git a/src/api_s2c/jjc/ApiOpen.ts b/src/api_s2c/jjc/ApiOpen.ts new file mode 100644 index 0000000..1f7ed12 --- /dev/null +++ b/src/api_s2c/jjc/ApiOpen.ts @@ -0,0 +1,35 @@ +import { ApiCall } from "tsrpc"; +import { JJCFun } from '../../public/jjc'; +import { ReqOpen, ResOpen } from "../../shared/protocols/jjc/PtlOpen"; +import { PublicShared } from '../../shared/public/public'; + +export default async function (call: ApiCall) { + + const dbData = await G.mongodb.collection('jjc').findOne({ uid: call.uid }) || { _id: null, uid: null, ...{ resetTime: G.time, receivedArr: [], buyFightNum: 0, useFightNum: 0, recordWin: 0 } }; + const { _id, uid, ...data } = dbData; + + let _ipDate = {} + if (dbData._id == null || await JJCFun.getPlayerRank(call.uid) == -1) { + await JJCFun.addRankInfo({ player: call.conn.gud }); + if (dbData._id == null) _ipDate = { ...data } + } + + if (PublicShared.getToDayZeroTime() > data.resetTime) { + Object.assign(data, { resetTime: G.time, receivedArr: [], buyFightNum: 0, useFightNum: 0 }); + _ipDate = { ...data } + } + + if (_ipDate && Object.keys(_ipDate).length > 0) { + G.mongodb.collection('jjc').updateOne({ uid: call.uid }, { $set: { ...data } }, { upsert: true }); + } + + G.redis.set('jjc', call.uid, data); + + data.recordWin = data.recordWin || 0; + let enemy = await JJCFun.randomEnemy(call.uid) + + call.succ({ + ...data, + ...enemy + }); +} \ No newline at end of file diff --git a/src/api_s2c/jjc/ApiReceive.ts b/src/api_s2c/jjc/ApiReceive.ts new file mode 100644 index 0000000..e9414e4 --- /dev/null +++ b/src/api_s2c/jjc/ApiReceive.ts @@ -0,0 +1,26 @@ +import { ApiCall } from "tsrpc"; +import { JJCFun } from '../../public/jjc'; +import { PlayerFun } from '../../public/player'; +import { jjcChange } from '../../shared/protocols/jjc/PtlOpen'; +import { ReqReceive, ResReceive } from "../../shared/protocols/jjc/PtlReceive"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + + let data = await JJCFun.getData(call); + let change: jjcChange = {}; + + if (data.receivedArr.find(r => r == call.req.id)) return call.error(globalThis.lng.jjc_5); + if (data.useFightNum < G.gc.jjc_tz[call.req.id].num) return call.error(globalThis.lng.jjc_6); + + await PlayerFun.sendPrize(call, G.gc.jjc_tz[call.req.id].prize); + + change.receivedArr = [].concat(data.receivedArr, call.req.id); + + JJCFun.changeData(call, change); + HongDianChange.sendChangeKey(call.uid, ['jjchd']) + call.succ({ + change: change, + prize: G.gc.jjc_tz[call.req.id].prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/jjc/ApiRefresh.ts b/src/api_s2c/jjc/ApiRefresh.ts new file mode 100644 index 0000000..63da020 --- /dev/null +++ b/src/api_s2c/jjc/ApiRefresh.ts @@ -0,0 +1,10 @@ +import { ApiCall } from "tsrpc"; +import { JJCFun } from '../../public/jjc'; +import { ReqRefresh, ResRefresh } from "../../shared/protocols/jjc/PtlRefresh"; + +export default async function (call: ApiCall) { + let enemy = await JJCFun.randomEnemy(call.uid) + call.succ({ + ...enemy + }); +} \ No newline at end of file diff --git a/src/api_s2c/kbzz/ApiApply.ts b/src/api_s2c/kbzz/ApiApply.ts new file mode 100644 index 0000000..a467df2 --- /dev/null +++ b/src/api_s2c/kbzz/ApiApply.ts @@ -0,0 +1,9 @@ +import { ApiCall } from "tsrpc"; +import { ReqApply, ResApply } from "../../shared/protocols/kbzz/PtlApply"; +import { apply } from './ApiOpen'; + +export default async function (call: ApiCall) { + if ((await G.mongodb.cPlayerInfo('kbzzApply').findOne({ uid: call.uid, type: 'kbzzApply' }))?.apply) return call.error('', { code: -1 }); + apply(call.uid); + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/kbzz/ApiAutoApply.ts b/src/api_s2c/kbzz/ApiAutoApply.ts new file mode 100644 index 0000000..39f9521 --- /dev/null +++ b/src/api_s2c/kbzz/ApiAutoApply.ts @@ -0,0 +1,11 @@ +import { ApiCall } from "tsrpc"; +import { ReqAutoApply, ResAutoApply } from "../../shared/protocols/kbzz/PtlAutoApply"; + +export default async function (call: ApiCall) { + + if (call.conn.gud.vip < G.gc.kbzz.autoApplyNeedVip) return call.error('', { code: -1 }); + + G.mongodb.cPlayerInfo('kbzzApply').updateOne({ uid: call.uid, type: 'kbzzApply' }, { $set: { autoApply: call.req.auto } }, { upsert: true }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/kbzz/ApiBuyNum.ts b/src/api_s2c/kbzz/ApiBuyNum.ts new file mode 100644 index 0000000..09e9d32 --- /dev/null +++ b/src/api_s2c/kbzz/ApiBuyNum.ts @@ -0,0 +1,37 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqBuyNum, ResBuyNum } from "../../shared/protocols/kbzz/PtlBuyNum"; +import { prizeType } from '../../shared/protocols/type'; +import { PublicShared } from '../../shared/public/public'; +import { HongDianChange } from "../hongdian/fun"; +import { kbzzUserDb } from './ApiOpen'; + +export default async function (call: ApiCall) { + let num = Math.floor(call.req.num); + if (num < 1) return call.error(globalThis.lng.kbzz_1); + + let dbData = await kbzzUserDb().findOne({ uid: call.uid, type: 'kbzzUser' }); + let buyNum = dbData.buyFightNum; + let maxNum = G.gc.kbzz.buyFightNum[call.conn.gud.vip] || G.gc.hbzb.jfsBuyFightNum.slice(-1)[0]; + if (buyNum + num > maxNum) return call.error(globalThis.lng.kbzz_2); + + let need: prizeType[] = []; + for (let n = 1; n <= num; n++) { + let cn = buyNum + n; + let conf = G.gc.kbzz.buyFightNumNeed.find(c => cn >= c.nums[0] && cn <= c.nums[1]); + need.push(...conf.need); + } + need = PublicShared.mergePrize(need); + + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + + await kbzzUserDb().updateOne( + { uid: call.uid, type: 'kbzzUser' }, + { $inc: { buyFightNum: num, fightNum: num } } + ); + + HongDianChange.sendChangeKey(call.uid, ['kbzzhd']) + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/kbzz/ApiFight.ts b/src/api_s2c/kbzz/ApiFight.ts new file mode 100644 index 0000000..29b2b98 --- /dev/null +++ b/src/api_s2c/kbzz/ApiFight.ts @@ -0,0 +1,79 @@ +import { ApiCall } from "tsrpc"; +import { FightFun } from '../../public/fight'; +import { PlayerFun } from '../../public/player'; +import { fightResult } from '../../shared/fightControl/fightType'; +import { ReqFight, ResFight } from "../../shared/protocols/kbzz/PtlFight"; +import { prizeType } from '../../shared/protocols/type'; +import { PublicShared } from '../../shared/public/public'; +import { HongDianChange } from "../hongdian/fun"; +import { kbzzUserDb } from './ApiOpen'; + +export default async function (call: ApiCall) { + let uids = call.req.uids; + if (uids.length < 1 || uids.isDuplication()) return call.error(globalThis.lng.kbzz_1); + + let dbData = await kbzzUserDb().findOne({ uid: call.uid, type: 'kbzzUser' }); + if (dbData.fightNum < uids.length) return call.error(globalThis.lng.jjc_4); + + let enemys = dbData.enemy.filter(e => uids.includes(e.info.player.uid) && e.result == null); + if (enemys.length < uids.length) return call.error(globalThis.lng.kbzz_1); + + let prize: prizeType[] = []; + let result: fightResult[] = []; + let change: ResFight['change'] = {}; + let addScore = 0; + let myInfo = await call.conn.getDefaultFightData(); + + enemys.forEach((enemy, index) => { + let r = FightFun.fight([myInfo, enemy.info]); + r.otherData = { + troops: [dbData.troop, enemy.troop] + }; + FightFun.saveLog(call.uid, 'kbzz', r, 50); + + enemy.result = r.winSide; + result.push(r); + + let getScore = 0; + if (r.winSide == 0) { + getScore = 200 + Math.floor((enemy.info.player.power || 0) / 500000); + if (getScore > 400) getScore = 400; + } else { + getScore = 100; + } + addScore += getScore; + prize.push(...G.gc.kbzz[r.winSide == 0 ? 'winPrize' : 'failPrize']); + + G.clientCross.callApi('kbzz/UpUser', { + uid: call.uid, + group: dbData.group, + troop: dbData.troop, + info: index == enemys.length - 1 ? myInfo : null, + allScore: dbData.score + addScore, + addScore: getScore, + log: { + player: [myInfo.player, enemy.info.player], + troop: [dbData.troop, enemy.troop], + winSide: r.winSide + } + }); + }); + + prize = PublicShared.mergePrize(prize); + change.fightNum = dbData.fightNum - uids.length; + change.toDayScore = dbData.toDayScore + addScore; + change.enemy = dbData.enemy; + change.score = dbData.score + addScore; + + await PlayerFun.sendPrize(call, prize); + + kbzzUserDb().updateOne({ uid: call.uid, type: 'kbzzUser' }, { $set: { ...change } }); + + HongDianChange.sendChangeKey(call.uid, ['kbzzhd']); + + call.succ({ + prize: prize, + result: result, + change: change + }); +} \ No newline at end of file diff --git a/src/api_s2c/kbzz/ApiFightLog.ts b/src/api_s2c/kbzz/ApiFightLog.ts new file mode 100644 index 0000000..a0eb14d --- /dev/null +++ b/src/api_s2c/kbzz/ApiFightLog.ts @@ -0,0 +1,8 @@ +import { ApiCall } from "tsrpc"; +import { FightFun } from '../../public/fight'; +import { ReqFightLog, ResFightLog } from "../../shared/protocols/kbzz/PtlFightLog"; + +export default async function (call: ApiCall) { + + call.succ(await FightFun.readLog(call.uid, 'kbzz')); +} \ No newline at end of file diff --git a/src/api_s2c/kbzz/ApiGroupState.ts b/src/api_s2c/kbzz/ApiGroupState.ts new file mode 100644 index 0000000..41c5a6f --- /dev/null +++ b/src/api_s2c/kbzz/ApiGroupState.ts @@ -0,0 +1,8 @@ +import { ApiCall } from "tsrpc"; +import { ReqGroupState, ResGroupState } from "../../shared/protocols/kbzz/PtlGroupState"; + +export default async function (call: ApiCall) { + + let result = await G.clientCross.callApi('kbzz/GroupRank', { ...call.req }); + call.succ(result.res); +} \ No newline at end of file diff --git a/src/api_s2c/kbzz/ApiOpen.ts b/src/api_s2c/kbzz/ApiOpen.ts new file mode 100644 index 0000000..c15c58c --- /dev/null +++ b/src/api_s2c/kbzz/ApiOpen.ts @@ -0,0 +1,90 @@ +import { ApiCall } from "tsrpc"; +import { playerInfoType } from '../../module/collection_palyerInfo'; +import { FightFun } from '../../public/fight'; +import { ReqOpen, ResOpen } from "../../shared/protocols/kbzz/PtlOpen"; +import { PublicShared } from '../../shared/public/public'; + +export default async function (call: ApiCall) { + let second = G.time - PublicShared.getToWeekMondayZeroTime(); + + if (second >= G.gc.kbzz.time.apply[0] && second < G.gc.kbzz.time.apply[1]) { + applyTime(call); + } else if (second >= G.gc.kbzz.time.applyEnd[0] && second < G.gc.kbzz.time.applyEnd[1]) { + applyEndTime(call); + } else { + eventCycleTime(call); + } +} + +async function applyTime(call: ApiCall, type: 'apply' | 'event' = 'apply') { + let state = await G.mongodb.cPlayerInfo('kbzzApply').findOne({ uid: call.uid, type: 'kbzzApply' }); + let resCall = await G.clientCross.callApi('kbzz/State', { type: type }); + + call.succ({ + apply: state?.apply || false, + autoApply: state?.autoApply || false, + state: resCall.res + }); +} + +async function applyEndTime(call: ApiCall) { + applyTime(call, 'event'); +} + +async function eventCycleTime(call: ApiCall) { + let state = await G.mongodb.cPlayerInfo('kbzzApply').findOne({ uid: call.uid, type: 'kbzzApply' }); + if (state?.apply != true) return call.error('', { code: -1, message: globalThis.lng.kbzz_3 }); + + let isOpen = (await G.clientCross.callApi('kbzz/State', { type: 'event' })).res; + if (!isOpen.succ) return call.error('', { code: -2, message: globalThis.lng.kbzz_4 }); + + let dbData = await kbzzUserDb().findOne({ uid: call.uid, type: 'kbzzUser' }); + let data: playerInfoType['kbzzUser']; + + if (!dbData) { + let res = (await G.clientCross.callApi('kbzz/GetUser', { uid: call.uid })).res; + data = { + ...res, + enemy: [], + score: G.gc.kbzz.playerScore, + fightNum: G.gc.kbzz.fightNum, + toDayScore: 0, + buyFightNum: 0, + refreshTime: G.time, + recScorePrize: [] + }; + kbzzUserDb().updateOne({ uid: call.uid, type: 'kbzzUser' }, { $set: { ...data } }, { upsert: true }); + } else { + data = dbData; + let zeroTime = PublicShared.getToDayZeroTime(); + if (zeroTime > data.refreshTime) { + let addFightNum = Math.ceil((zeroTime - PublicShared.getToDayZeroTime(data.refreshTime)) / (3600 * 24)) * G.gc.kbzz.recoverFightNum; + data.fightNum = data.fightNum + addFightNum > G.gc.kbzz.maxFightNum ? G.gc.kbzz.maxFightNum : data.fightNum + addFightNum; + data.toDayScore = 0; + data.buyFightNum = 0; + data.recScorePrize = []; + kbzzUserDb().updateOne({ uid: call.uid, type: 'kbzzUser' }, { + $set: { + refreshTime: G.time, + fightNum: data.fightNum, + toDayScore: 0, + buyFightNum: 0, + recScorePrize: [] + } + }, { upsert: true }); + } + } + + call.succ(data); +} + +export async function apply(uid: string) { + G.mongodb.cPlayerInfo('kbzzApply').updateOne({ uid: uid, type: 'kbzzApply' }, { $set: { apply: true, applyTime: G.time } }, { upsert: true }); + + let info = await FightFun.getPlayerFightData(uid); + G.clientCross.callApi('kbzz/Apply', { info: info }); +} + +export const kbzzUserDb = () => { + return G.mongodb.cPlayerInfo('kbzzUser'); +}; \ No newline at end of file diff --git a/src/api_s2c/kbzz/ApiRecPrize.ts b/src/api_s2c/kbzz/ApiRecPrize.ts new file mode 100644 index 0000000..1d8d755 --- /dev/null +++ b/src/api_s2c/kbzz/ApiRecPrize.ts @@ -0,0 +1,24 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqRecPrize, ResRecPrize } from "../../shared/protocols/kbzz/PtlRecPrize"; +import { HongDianChange } from "../hongdian/fun"; +import { kbzzUserDb } from './ApiOpen'; + +export default async function (call: ApiCall) { + if (!G.gc.kbzz.scorePrize[call.req.index]) return call.error(globalThis.lng.kbzz_1); + + let dbData = await kbzzUserDb().findOne({ uid: call.uid, type: 'kbzzUser' }); + if (dbData.recScorePrize.includes(call.req.index)) return call.error(globalThis.lng.jjc_5); + + let conf = G.gc.kbzz.scorePrize[call.req.index]; + if (dbData.toDayScore < conf.total) return call.error(globalThis.lng.kbzz_5); + + await PlayerFun.sendPrize(call, conf.prize); + + kbzzUserDb().updateOne({ uid: call.uid, type: 'kbzzUser' }, { $set: { recScorePrize: dbData.recScorePrize.concat(call.req.index) } }); + + HongDianChange.sendChangeKey(call.uid, ['kbzzhd']) + call.succ({ + prize: conf.prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/kbzz/ApiRefresh.ts b/src/api_s2c/kbzz/ApiRefresh.ts new file mode 100644 index 0000000..85e437a --- /dev/null +++ b/src/api_s2c/kbzz/ApiRefresh.ts @@ -0,0 +1,14 @@ +import { ApiCall } from "tsrpc"; +import { ReqRefresh, ResRefresh } from "../../shared/protocols/kbzz/PtlRefresh"; +import { kbzzUserDb } from './ApiOpen'; + +export default async function (call: ApiCall) { + + let resCall = (await G.clientCross.callApi('kbzz/Refresh', { ...call.req })).res; + + kbzzUserDb().updateOne({ uid: call.uid, type: 'kbzzUser' }, { $set: { enemy: resCall.enemy } }); + + call.succ({ + enemy: resCall.enemy + }); +} \ No newline at end of file diff --git a/src/api_s2c/kuangdong/ApiAddPkNum.ts b/src/api_s2c/kuangdong/ApiAddPkNum.ts new file mode 100644 index 0000000..364e449 --- /dev/null +++ b/src/api_s2c/kuangdong/ApiAddPkNum.ts @@ -0,0 +1,45 @@ +import { time } from "console"; +import { ApiCall } from "tsrpc"; +import { KuangDongfun } from "../../public/kuangdong"; +import { PlayerFun } from "../../public/player"; +import { ReqAddPkNum, ResAddPkNum } from "../../shared/protocols/kuangdong/PtlAddPkNum"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let _area = call.req.area + let _num = call.req?.num || 1 + // 我的次数信息 + let _myData = await KuangDongfun.getNumInfo(call) + // 可增加的次数配置 + let _addNumCon = G.gc.com.TerritoryFight_PurchaseNum.value + // 已购买次数 + let _buyNum = _myData.buynum?.[_area] || 0 + if (_buyNum + _num > _addNumCon) { + return call.error('', { code: -1, message: globalThis.lng.kudangdong_9 }) + } + + // @ts-ignore + let need: atn[] = G.gc.com.TerritoryFight_PurchasePrice.value + // let need: atn[] = [{ a: 'attr', t: 'rmbmoney', n: 50 }] + need[0].n *= _num + let meet = await PlayerFun.checkNeedByArgs(call, need[0]); + need = [meet.atn]; + need && await PlayerFun.cutNeed(call, need); + + // 增加次数 + const newNum = _num + (_myData.buynum?.[_area.toString()] || 0) + _myData.buynum[_area.toString()] = newNum + let update = { + $set: { + buynum: _myData.buynum, + time: _myData.time + } + } + await G.mongodb.collection('playerInfo', 'kuangdong').updateOne({ uid: call.uid, type: 'kuangdong' }, update, { upsert: true }) + + HongDianChange.sendChangeKey(call.uid, ['kuangdonghd']) + + call.succ({ + mydata: _myData + }); +} \ No newline at end of file diff --git a/src/api_s2c/kuangdong/ApiGetPrize.ts b/src/api_s2c/kuangdong/ApiGetPrize.ts new file mode 100644 index 0000000..f1cd325 --- /dev/null +++ b/src/api_s2c/kuangdong/ApiGetPrize.ts @@ -0,0 +1,26 @@ +import { ApiCall } from "tsrpc"; +import { KuangDongfun } from "../../public/kuangdong"; +import { ReqGetPrize, ResGetPrize } from "../../shared/protocols/kuangdong/PtlGetPrize"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let _kdInfo = await KuangDongfun.getKaiCaiInfo(call.req.hdid) + /**没有建筑信息 */ + if (!_kdInfo) { + return call.error('', { code: -1, message: globalThis.lng.kudangdong_7 }) + } + + /**不能放弃别人的 */ + if (_kdInfo.uid != call.uid) { + return call.error('', { code: -2, message: globalThis.lng.kudangdong_8 }) + } + + /**结算 函数内部已经发了奖励 */ + let _prize = await KuangDongfun.getKuangDongPrize(call.req.hdid, _kdInfo, { msgtype: 4}) + HongDianChange.sendChangeKey(call.uid, ['kuangdonghd']) + + + call.succ({ + prize: _prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/kuangdong/ApiKdInfo.ts b/src/api_s2c/kuangdong/ApiKdInfo.ts new file mode 100644 index 0000000..df70c1e --- /dev/null +++ b/src/api_s2c/kuangdong/ApiKdInfo.ts @@ -0,0 +1,41 @@ +import { OptionalId, UpdateFilter } from 'mongodb'; +import { ApiCall } from "tsrpc"; +import { FightFun } from '../../public/fight'; +import { KuangDongfun } from '../../public/kuangdong'; +import { ReqKdInfo, ResKdInfo } from '../../shared/protocols/kuangdong/PtlKdInfo'; +import { KuangDongKaiCaiListTmp } from '../../shared/protocols/kuangdong/PtlOpen'; + +export default async function (call: ApiCall) { + let hdid = call.req.hdid + let kdInfo = await KuangDongfun.getKaiCaiInfo(hdid) + + if (!kdInfo) { + return call.error('', { code: -1, message: globalThis.lng.kudangdong_1 }) + } + + kdInfo._id = kdInfo._id.toString() + let userinfo: KuangDongKaiCaiListTmp + if (kdInfo) { + let _tmp: KuangDongKaiCaiListTmp + let _gud = await G.mongodb.collection('user').findOne({ uid: kdInfo.uid }) + _tmp = { + name: _gud.name, + lv: _gud.lv, + power: _gud.power, + ghId: _gud.ghId, + ghName: _gud.ghName, + head: _gud.head, + headFrame: _gud.headFrame, + } + userinfo = _tmp + } + let changeData = { + kdinfo: kdInfo + } + + if (userinfo) { + changeData["userinfo"] = userinfo + } + + call.succ(changeData); +} \ No newline at end of file diff --git a/src/api_s2c/kuangdong/ApiLog.ts b/src/api_s2c/kuangdong/ApiLog.ts new file mode 100644 index 0000000..c97f580 --- /dev/null +++ b/src/api_s2c/kuangdong/ApiLog.ts @@ -0,0 +1,20 @@ +import { ApiCall } from "tsrpc"; +import { ReqLog, ResLog } from "../../shared/protocols/kuangdong/PtlLog"; + +export default async function (call: ApiCall) { + /**查询所有抽奖日志 */ + let result = (await G.mongodb.collection('ghbzcjlog').findOne({ type: "kuangdong_msg" })) || { list: [] } + let _res = [] + if (result.list.length > 0) { + for (let index = 0; index < result.list.length; index++) { + const element = result.list[index]; + if (element.uid == call.uid) { + _res.push(element) + } + } + } + + call.succ({ + kuangdonglog: _res + }); +} \ No newline at end of file diff --git a/src/api_s2c/kuangdong/ApiOpen.ts b/src/api_s2c/kuangdong/ApiOpen.ts new file mode 100644 index 0000000..adc0730 --- /dev/null +++ b/src/api_s2c/kuangdong/ApiOpen.ts @@ -0,0 +1,25 @@ +import { ApiCall } from "tsrpc"; +import { KuangDongfun } from "../../public/kuangdong"; +import { ReqOpen, ResOpen } from "../../shared/protocols/kuangdong/PtlOpen"; +import { PublicShared } from "../../shared/public/public"; + +export default async function (call: ApiCall) { + /**查询所有矿洞信息 */ + let result = await KuangDongfun.getKaiCaiList() + let myData = await KuangDongfun.getNumInfo(call) + + let changeData = { + mydata: myData, + prize: result["prize"][call.uid] || [] + } + + if (result["kdinfo"]) { + changeData["kdList"] = result["kdinfo"] + } + + if (changeData.prize) { + changeData.prize = PublicShared.mergePrize(changeData.prize) + } + + call.succ(changeData); +} \ No newline at end of file diff --git a/src/api_s2c/kuangdong/ApiYanShi.ts b/src/api_s2c/kuangdong/ApiYanShi.ts new file mode 100644 index 0000000..f80c861 --- /dev/null +++ b/src/api_s2c/kuangdong/ApiYanShi.ts @@ -0,0 +1,39 @@ +import { ApiCall } from "tsrpc"; +import { KuangDongfun } from "../../public/kuangdong"; +import { PlayerFun } from "../../public/player"; +import { ReqYanShi, ResYanShi } from "../../shared/protocols/kuangdong/PtlYanShi"; + +export default async function (call: ApiCall) { + let hdid = call.req.hdid + let kdInfo = await KuangDongfun.getKaiCaiInfo(hdid) + + if (!kdInfo) { + return call.error('', { code: -1, message: globalThis.lng.kudangdong_1 }) + } + + // 不是自己占领的 + if (kdInfo.uid != call.uid) { + return call.error('', { code: -2, message: globalThis.lng.kudangdong_8 }) + } + + // 已经延时 + if (kdInfo.yanshi != 0) { + return call.error('', { code: -2, message: globalThis.lng.kudangdong_10 }) + } + + // @ts-ignore + let _need: atn[] = G.gc.com.dpzd_time.value; + + // 扣资源 + // _need = [{ a: 'attr', t: 'rmbmoney', n: 120 }] + await PlayerFun.checkNeedIsMeet(call, _need) + _need && await PlayerFun.cutNeed(call, _need); + + kdInfo.yanshi = 8 * 3600 + await KuangDongfun.setminingZhanLing(call.uid, hdid, { $set: { yanshi: kdInfo.yanshi } }) + kdInfo._id = kdInfo._id.toString() + let changeData = { + kdinfo: kdInfo + } + call.succ(changeData) +} \ No newline at end of file diff --git a/src/api_s2c/kuangdong/ApiZhanLing.ts b/src/api_s2c/kuangdong/ApiZhanLing.ts new file mode 100644 index 0000000..f3ea41f --- /dev/null +++ b/src/api_s2c/kuangdong/ApiZhanLing.ts @@ -0,0 +1,133 @@ +import { ApiCall } from "tsrpc"; +import { FightFun } from "../../public/fight"; +import { KuangDongfun } from "../../public/kuangdong"; +import { KuangDongKaiCailog } from "../../shared/protocols/kuangdong/PtlOpen"; +import { ReqZhanLing, ResZhanLing } from "../../shared/protocols/kuangdong/PtlZhanLing"; +import { PlayerShared } from "../../shared/public/player"; +import { HongDianChange } from "../hongdian/fun"; + + +export default async function (call: ApiCall) { + let hdid = call.req.hdid; + let _con = await KuangDongfun.getCon(hdid); + + // 参数错误 + if (!_con) { + return call.error('', { code: -1, message: globalThis.lng.kudangdong_1 }); + } + let _kdInfo = await KuangDongfun.getKaiCaiInfo(hdid); + + // 重复占领 + if (_kdInfo && _kdInfo.uid == call.uid) { + return call.error('', { code: -2, message: globalThis.lng.kudangdong_4 }); + } + + // 新手保护期 + let _wudiTime = G.gc.com.TerritoryFight_InvincibleTime.value; + if (_kdInfo && _kdInfo.ctime >= G.time - _wudiTime * 60) { + return call.error('', { code: -3, message: globalThis.lng.kudangdong_5 }); + } + + let _chongfu = await G.mongodb.collection('kuangdong').findOne({ uid: call.uid, kdtype: _con.type }); + if (_chongfu) { + // 此区域不可重复获取 + return call.error('', { code: -6, message: globalThis.lng.kudangdong_11 }); + } + + // 此街道不可抢夺 + if (_kdInfo && !_con.public_map) { + return call.error('', { code: -4, message: globalThis.lng.kudangdong_3 }); + } + + // 2023.8.29 策划新加 所有矿所有区域,总次数限制(目前各区域一次,总3次) + let _allAreaDayNum = G.gc.com.dpzd_quyu_num.value + let _mykdList = await G.mongodb.collection('kuangdong').find({ uid: call.uid }).toArray() + let _tqNum = Object.keys(call.conn.gud.shoucangping).indexOf("4") != -1 ? 1 : 0 + if (_mykdList.length >= _allAreaDayNum + _tqNum) { + return call.error('', { code: -4, message: globalThis.lng.kudangdong_12 }); + } + + // 次数信息 + let _mydata = await KuangDongfun.getNumInfo(call); + // 配置可挑战次数 + let _fightNumCon = G.gc.com.TerritoryFight_ChallengesNum.value; + // 购买次数 + let _buyNum = _mydata.buynum?.[_con.type] || 0; + // 已挑战次数 + let _fightNum = _mydata.eara?.[_con.type] || 0; + + let changeData: ResZhanLing = { + mydata: _mydata + }; + let _isQdSuccess = 1; + let isFight = false; + let GHdata = await call.conn.gonghui; + + if (_kdInfo && _kdInfo.uid != call.uid) { + // 挑战次数不足 打架才扣次数 + if (_fightNumCon + _buyNum + (PlayerShared.getMingDaoBuff(call.conn.gud, 'dpzd_zl') || 0) <= _fightNum) { + return call.error('', { code: -5, message: globalThis.lng.kudangdong_6 }); + } + _mydata.eara[_con.type] = 1 + (_mydata.eara?.[_con.type] || 0); + let update = { + $set: { + eara: _mydata.eara, + time: _mydata.time + } + }; + await G.mongodb.collection('playerInfo', 'kuangdong').updateOne({ uid: call.uid, type: 'kuangdong' }, update, { upsert: true }); + + // 有人占领 抢夺 + let _toFightData = await FightFun.getPlayerFightData(_kdInfo.uid); + let _gud = await G.mongodb.collection('user').findOne({ uid: _kdInfo.uid }); + + isFight = true; + + if (Object.keys(_toFightData.roles).length < 1) { + // 该玩家没有上阵干部,默认被抢夺 进行收益结算 + await KuangDongfun.getKuangDongPrize(hdid, _kdInfo, { msgtype: 2, toname: _gud.name, touid: _gud.name }); + + GHdata?.addExp(5); + } else { + let result = await FightFun.fight([await call.conn.getDefaultFightData(), _toFightData]); + if (result.winSide == 0) { + // 胜利 + await KuangDongfun.getKuangDongPrize(hdid, _kdInfo, { msgtype: 2, toname: call.conn.gud.name, touid: call.conn.gud.uid }); + + GHdata?.addExp(5); + } else { + // 失败 + // 增加抢夺失败日志 + _isQdSuccess = 0; + let _log: KuangDongKaiCailog = { + uid: _kdInfo.uid, + hdid: hdid, + name: _gud.name, + toname: call.conn.gud.name, + touid: call.conn.gud.uid, + ctime: G.time, + msgtype: 3, + longtime: G.time - _kdInfo.ctime, + }; + await KuangDongfun.newKuangDongLog(_log); + } + // 增加战斗返回数据 + changeData.result = result; + } + } + + if (_isQdSuccess != 0) { + let kdInfo = await KuangDongfun.miningZhanLing(call, hdid); + kdInfo.userinfo = await KuangDongfun.getUserInfo(kdInfo.uid); + changeData.kdInfo = kdInfo; + } + + if (_isQdSuccess != 0 && !isFight) { + GHdata?.addExp(10); + } + + HongDianChange.sendChangeKey(call.uid, ['kuangdonghd', 'taskhd', 'huodonghd']); + + changeData.mydata = _mydata; + call.succ(changeData); +} \ No newline at end of file diff --git a/src/api_s2c/lingzhulaixi/ApiOpen.ts b/src/api_s2c/lingzhulaixi/ApiOpen.ts new file mode 100644 index 0000000..069d845 --- /dev/null +++ b/src/api_s2c/lingzhulaixi/ApiOpen.ts @@ -0,0 +1,13 @@ +import { ApiCall } from "tsrpc"; +import { LingZhuLaiXifun } from "../../public/lingzhulaixi"; +import { ReqOpen, ResOpen } from "../../shared/protocols/lingzhulaixi/PtlOpen"; + +export default async function (call: ApiCall) { + let _myData = await LingZhuLaiXifun.getUsePKNum(call) + let bosslist = await LingZhuLaiXifun.fmtBossList(call) + + call.succ({ + mydata: _myData, + bosslist: bosslist + }); +} \ No newline at end of file diff --git a/src/api_s2c/lingzhulaixi/ApiPkBoss.ts b/src/api_s2c/lingzhulaixi/ApiPkBoss.ts new file mode 100644 index 0000000..997a6fc --- /dev/null +++ b/src/api_s2c/lingzhulaixi/ApiPkBoss.ts @@ -0,0 +1,120 @@ +import { maxDependencies } from "mathjs"; +import { ApiCall } from "tsrpc"; +import { FightFun } from "../../public/fight"; +import { LingZhuLaiXifun } from "../../public/lingzhulaixi"; +import { PlayerFun } from "../../public/player"; +import { ReqPkBoss, ResPkBoss } from "../../shared/protocols/lingzhulaixi/PtlPkBoss"; +import { PublicShared } from "../../shared/public/public"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let _con = await LingZhuLaiXifun.getCon(call.req.bid) + if (!_con) { + // 参数错误,无相关配置 + return call.error('', { code: -1, message: globalThis.lng.lingzhulaixi_1 }) + } + + if (call.conn.gud.lv < _con.lv) { + // 等级不足 + return call.error('', { code: -2, message: globalThis.lng.lingzhulaixi_2 }) + } + + // 个人数据 + let _myData = await LingZhuLaiXifun.getUsePKNum(call) + let _maxNum = G.gc.com.PiratesFight_ChallengesNum.value + if (_myData.num >= _maxNum) { + // 挑战次数不足 + return call.error('', { code: -3, message: globalThis.lng.lingzhulaixi_3 }) + } + + // boss信息 + let _bossData = await LingZhuLaiXifun.getBossData(call.req.bid) + if (_bossData.passtime != 0) { + // boss 未复活 + return call.error('', { code: -4, message: globalThis.lng.lingzhulaixi_4 }) + } + + let _bossMaxHp = _bossData.maxhp + let _bossDelHp = _bossData.delhp + /**格式化boss属性 */ + let hpjc = Number(((_bossMaxHp - _bossDelHp) / _bossMaxHp).toFixed(2)) || 0.01 // 继承血量比 + let _bossFightId = _con.army // boss 战斗id + let _npcFightData = await LingZhuLaiXifun.getBossFightInof(_bossFightId, Number(hpjc)) + // let _npcFightData = await LingZhuLaiXifun.getBossFightInof(25, Number(hpjc)) // 测试数据 + let _myFightData = await call.conn.getDefaultFightData() // 我的战斗信息 + const result = FightFun.fight([_myFightData, _npcFightData]) + let _dlz: number[] // 掉落组id + let _setData + let _mySetDat = {} + if (_bossData.delhp + result.totalDamage[0] > _bossData.maxhp) { + // 胜利 + _dlz = _con.kill_drop + _setData = { // 设置的数据 + $set: { + pkuser: {}, + delhp: 0, + maxhp: await LingZhuLaiXifun.getBossMapHp(_bossData.bid), + passtime: _con.member * 60 + G.time, + randusernum: 0 + } + } + Object.assign(_bossData, _setData["$set"]) + await G.mongodb.cPlayerInfo('lingzhulaixi').updateMany( + { type: 'lingzhulaixi' }, + { $set: G.mongodb.createTreeObj({ key: `maxdps.${call.req.bid}`, val: 0 }) } + ) + + } else { + // 超过回合,直接赋值输 + result.winSide = 1 + _dlz = _con.drop + // 更新伤害数据 + if (!_bossData.pkuser[call.uid]) { + _bossData.pkuser[call.uid] = 0 + } + _bossData.pkuser[call.uid] += result.totalDamage[0] + let pkNum = Object.keys(_bossData.pkuser).length // 实际pk人数 + if (pkNum >= 3 && !(pkNum - 1 <= _bossData.randusernum && _bossData.randusernum <= 2 * pkNum)) { + _bossData.randusernum = PublicShared.randomNum(pkNum - 1, 2 * pkNum) + } + _setData = { // 设置的数据 + $inc: { + delhp: result.totalDamage[0] + }, + $set: { + pkuser: _bossData.pkuser, + randusernum: _bossData.randusernum + } + } + // 放入伤害数据 + if (!_myData.maxdps[_bossData.bid] || _myData.maxdps[_bossData.bid] < result.totalDamage[0]) { + _myData.maxdps[_bossData.bid] = result.totalDamage[0] + } + _mySetDat = { + maxdps: _myData.maxdps, + time: _myData.time, + num: _myData.num + 1 + } + _bossData.delhp += result.totalDamage[0] + + } + // 设置boss数据 + await LingZhuLaiXifun.setBossData(_bossData.bid, _setData) + await LingZhuLaiXifun.setMyData(call, { $set: _mySetDat }) + + // 发奖 + let prize = PublicShared.mergePrize(await LingZhuLaiXifun.getPrize(_dlz)) + await PlayerFun.sendPrize(call, prize); + + // 扣除挑战次数 + _myData.num += 1 + + HongDianChange.sendChangeKey(call.uid, ['lingzhulaixihd']) + + call.succ({ + mydata: _myData, + bossdata: _bossData, + prize: prize, + result: result + }); +} \ No newline at end of file diff --git a/src/api_s2c/lingzhulaixi/ApiPkRank.ts b/src/api_s2c/lingzhulaixi/ApiPkRank.ts new file mode 100644 index 0000000..668afa7 --- /dev/null +++ b/src/api_s2c/lingzhulaixi/ApiPkRank.ts @@ -0,0 +1,29 @@ +import { ApiCall } from "tsrpc"; +import { KuangDongfun } from "../../public/kuangdong"; +import { LingZhuLaiXifun } from "../../public/lingzhulaixi"; +import { ReqPkRank, ResPkRank } from "../../shared/protocols/lingzhulaixi/PtlPkRank"; + +export default async function (call: ApiCall) { + let _bossData = await LingZhuLaiXifun.getBossData(call.req.bid) + let rankList = [] + let userdps = 0 + if (_bossData && Object.keys(_bossData.pkuser).length > 0) { + userdps = _bossData.pkuser?.[call.uid] || 0 + let fmtrankList = await LingZhuLaiXifun.getRankList(_bossData.pkuser) + // 取前三条 + for (let index = 0; index < fmtrankList.length; index++) { + const element = fmtrankList[index]; + if (rankList.length >= 3) { + break + } + element.userinfo = await KuangDongfun.getUserInfo(element.uid) + rankList.push(element) + } + } + + call.succ({ + bossdata: _bossData, + ranklist: rankList, + userdps: userdps + }) +} \ No newline at end of file diff --git a/src/api_s2c/lingzhulaixi/ApiSaoDang.ts b/src/api_s2c/lingzhulaixi/ApiSaoDang.ts new file mode 100644 index 0000000..34a019f --- /dev/null +++ b/src/api_s2c/lingzhulaixi/ApiSaoDang.ts @@ -0,0 +1,104 @@ +import { ApiCall } from "tsrpc"; +import { LingZhuLaiXifun } from "../../public/lingzhulaixi"; +import { PlayerFun } from "../../public/player"; +import { ReqSaoDang, ResSaoDang } from "../../shared/protocols/lingzhulaixi/PtlSaoDang"; +import { PublicShared } from "../../shared/public/public"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let _con = await LingZhuLaiXifun.getCon(call.req.bid) + if (!_con) { + // 参数错误,无相关配置 + return call.error('', { code: -1, message: globalThis.lng.lingzhulaixi_1 }) + } + + if (call.conn.gud.lv < _con.lv) { + // 等级不足 + return call.error('', { code: -2, message: globalThis.lng.lingzhulaixi_2 }) + } + + // boss信息 + let _bossData = await LingZhuLaiXifun.getBossData(call.req.bid) + if (_bossData.passtime != 0) { + // boss 未复活 + return call.error('', { code: -3, message: globalThis.lng.lingzhulaixi_4 }) + } + + if (!_bossData.pkuser[call.uid]) { + // 未挑战过,请先去挑战 + return call.error('', { code: -4, message: globalThis.lng.lingzhulaixi_5 }) + } + + let _myData = await LingZhuLaiXifun.getUsePKNum(call) + let _maxNum = G.gc.com.PiratesFight_ChallengesNum.value + let _logMaxDel = _myData.maxdps?.[_bossData.bid] || 0 // 历史最大伤害 + let _num = 0 // 实际扫荡次数 + let prize: atn[] = [] + for (let index = 0; index < call.req.num; index++) { + _num += 1 + if (_myData.num + _num > _maxNum) { + // 挑战次数不足直接跳出 + break + } + _bossData.delhp += _logMaxDel + if (_bossData.delhp >= _bossData.maxhp) { + // 击杀boss + prize = prize.concat(await LingZhuLaiXifun.getPrize(_con.kill_drop)) + break + } else { + prize = prize.concat(await LingZhuLaiXifun.getPrize(_con.drop)) + } + _bossData.pkuser[call.uid] += _logMaxDel + } + + if (!prize[0]) { + // 无奖励,没有挑战次数 + return call.error('', { code: -5, message: globalThis.lng.lingzhulaixi_6 }) + } + + let _setData // 设置数据 + if (_bossData.delhp >= _bossData.maxhp) { + _setData = { + $set: { + pkuser: {}, + delhp: 0, + maxhp: await LingZhuLaiXifun.getBossMapHp(_bossData.bid), + passtime: _con.member * 60 + G.time, + randusernum: 0 + } + } + Object.assign(_bossData, _setData["$set"]) + // 清除玩家数据 + await G.mongodb.cPlayerInfo('lingzhulaixi').updateMany( + { type: 'lingzhulaixi' }, + { $set: G.mongodb.createTreeObj({ key: `maxdps.${call.req.bid}`, val: 0 }) } + ) + } else { + _setData = { + $set: { + delhp: _bossData.delhp, + pkuser: _bossData.pkuser + + } + } + } + + // 设置boss数据 + await LingZhuLaiXifun.setBossData(_bossData.bid, _setData) + await LingZhuLaiXifun.setMyData(call, { $inc: { num: _num } }) + + // 发奖 + prize = PublicShared.mergePrize(prize) + await PlayerFun.sendPrize(call, prize) + + // 扣除挑战次数 + _myData.num += _num + + HongDianChange.sendChangeKey(call.uid, ['lingzhulaixihd']) + + call.succ({ + mydata: _myData, + bossdata: _bossData, + prize: prize + }) +} \ No newline at end of file diff --git a/src/api_s2c/meirishilian/ApiBuy.ts b/src/api_s2c/meirishilian/ApiBuy.ts new file mode 100644 index 0000000..583eb48 --- /dev/null +++ b/src/api_s2c/meirishilian/ApiBuy.ts @@ -0,0 +1,24 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqBuy, ResBuy } from "../../shared/protocols/meirishilian/PtlBuy"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let db = await G.mongodb.cPlayerInfo('meirishilian').findOne({ uid: call.uid, type: 'meirishilian' }); + let buyNum = db?.data?.numInfo?.[call.req.type]?.['0']?.buyFightNum || 0; + + if (buyNum >= G.gc.meirishilian_com.fightBuyNum) return call.error('', { code: -1 }); + + await PlayerFun.checkNeedIsMeet(call, [G.gc.meirishilian_com.fightBuyNumNeed[buyNum]]); + await PlayerFun.cutNeed(call, [G.gc.meirishilian_com.fightBuyNumNeed[buyNum]]); + + await G.mongodb.cPlayerInfo('meirishilian').updateOne( + { uid: call.uid, type: 'meirishilian' }, + { $inc: G.mongodb.createTreeObj({ key: `data.numInfo.${call.req.type}.0.buyFightNum`, val: 1 }) }, + { upsert: true } + ); + + HongDianChange.sendChangeKey(call.uid, ['wzcjhd']); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/meirishilian/ApiFight.ts b/src/api_s2c/meirishilian/ApiFight.ts new file mode 100644 index 0000000..465597a --- /dev/null +++ b/src/api_s2c/meirishilian/ApiFight.ts @@ -0,0 +1,34 @@ +import { ApiCall } from "tsrpc"; +import { FightFun } from '../../public/fight'; +import { PlayerFun } from '../../public/player'; +import { ReqFight, ResFight } from "../../shared/protocols/meirishilian/PtlFight"; +import { PlayerShared } from '../../shared/public/player'; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let conf = G.gc.meirishilian[call.req.type]?.[call.req.difficulty]; + if (!conf) return call.error('', { code: -1 }); + + let db = await G.mongodb.cPlayerInfo('meirishilian').findOne({ uid: call.uid, type: 'meirishilian' }); + let useNum = db?.data?.numInfo?.[call.req.type]?.['0']?.useFightNum || 0; + let buyNum = db?.data?.numInfo?.[call.req.type]?.['0']?.buyFightNum || 0; + if (useNum >= buyNum + (PlayerShared.getMingDaoBuff(call.conn.gud, 'wzsj_free') || 0) + G.gc.meirishilian_com.fightNum) return call.error('', { code: -2 }); + + let res: ResFight = {}; + if (db?.data?.recordWin?.[call.req.type]?.[call.req.difficulty]) { + res.prize = conf.prize; + } else { + let result = res.result = await FightFun.fightNpc(call, conf.npcId, 'meirishilian'); + if (result.winSide == 0) res.prize = conf.prize; + } + res.prize && await PlayerFun.sendPrize(call, res.prize); + res.prize && await G.mongodb.cPlayerInfo('meirishilian').updateOne( + { uid: call.uid, type: 'meirishilian' }, + { $inc: G.mongodb.createTreeObj({ key: `data.numInfo.${call.req.type}.0.useFightNum`, val: 1 }, { key: `data.recordWin.${call.req.type}.${call.req.difficulty}`, val: 1 }) }, + { upsert: true } + ); + + HongDianChange.sendChangeKey(call.uid, ['wzcjhd', 'taskhd', 'huodonghd']) + + call.succ(res); +} \ No newline at end of file diff --git a/src/api_s2c/meirishilian/ApiOpen.ts b/src/api_s2c/meirishilian/ApiOpen.ts new file mode 100644 index 0000000..62f99be --- /dev/null +++ b/src/api_s2c/meirishilian/ApiOpen.ts @@ -0,0 +1,36 @@ +import { ApiCall } from "tsrpc"; +import { ReqOpen, ResOpen } from "../../shared/protocols/meirishilian/PtlOpen"; +import { PublicShared } from '../../shared/public/public'; + +export default async function (call: ApiCall) { + + let db = await G.mongodb.cPlayerInfo('meirishilian').findOne({ uid: call.uid, type: 'meirishilian' }); + let data = db?.data || { + refreshTime: G.time, + recordWin: Object.fromEntries(Object.keys(G.gc.meirishilian).map(t => [t, {}])), + useFightNum: 0, + buyFightNum: 0, + numInfo: Object.fromEntries(Object.keys(G.gc.meirishilian).map(t => [t, {"0": { buyFightNum: 0, useFightNum: 0 }}])) + }; + if (!db || db.data.refreshTime < PublicShared.getToDayZeroTime()) { + data.useFightNum = 0; + data.buyFightNum = 0; + data.numInfo = Object.fromEntries(Object.keys(G.gc.meirishilian).map(t => [t, {"0": { buyFightNum: 0, useFightNum: 0 }}])) + + G.mongodb.cPlayerInfo('meirishilian').updateOne( + { uid: call.uid, type: 'meirishilian' }, + { $set: { "data.refreshTime": G.time, 'data.useFightNum': 0, 'data.buyFightNum': 0, 'data.numInfo': data.numInfo } }, + { upsert: true } + ); + } + + if (!data.recordWin) { + data.recordWin = Object.fromEntries(Object.keys(G.gc.meirishilian).map(t => [t, {}])); + } + + if (!data.numInfo) { + data.numInfo = Object.fromEntries(Object.keys(G.gc.meirishilian).map(t => [t, {}])); + } + + call.succ(data); +} \ No newline at end of file diff --git a/src/api_s2c/pata/ApiFight.ts b/src/api_s2c/pata/ApiFight.ts new file mode 100644 index 0000000..0a61778 --- /dev/null +++ b/src/api_s2c/pata/ApiFight.ts @@ -0,0 +1,58 @@ +import { ApiCall } from "tsrpc"; +import { FightFun } from "../../public/fight"; +import { PataFun } from '../../public/pata'; +import { PlayerFun } from '../../public/player'; +import { Rank } from '../../public/rank/rank'; +import { fightResult } from "../../shared/fightControl/fightType"; +import { ReqFight, ResFight } from "../../shared/protocols/pata/PtlFight"; +import { md_redPoint_check } from '../gongyu/mingdao/ApiOpen'; +import { HongDianChange } from "../hongdian/fun"; +// import { paTaType } from '../../shared/protocols/pata/type'; + +export default async function (call: ApiCall) { + let changeInfo = await PataFun.getInfo(call.uid); + let maxNum = G.gc.common.patacom.patamax; + let con = G.gc.pata; + let prize = []; + + // 挑战次数不足 + if (maxNum > 0 && changeInfo.useNum > maxNum) { + return call.error(globalThis.lng.pata_fight_1); + } + + // 参数错误 + if (!con[changeInfo.lv]) { + return call.error(globalThis.lng.pata_fight_2); + } + let result: fightResult = await FightFun.fightNpc(call, con[changeInfo.lv]["npcid"], 'pata'); + + if (result.winSide == 0) { + changeInfo.useNum += 1; + changeInfo.lv += 1; + // 改变的数据 + let setData = { + useNum: changeInfo.useNum, + lv: changeInfo.lv + }; + // 设置数据 + await PataFun.changeInfo(call.uid, changeInfo.sid, { $set: setData }); + prize = await PlayerFun.sendPrize(call, con[changeInfo.lv - 1].prize); + + Rank.list['zccg'].addNew({ + player: call.conn.gud, + valArr: [changeInfo.lv] + }); + + md_redPoint_check(call.conn, 'zccg'); + } + + let data = { + mydata: changeInfo, + prize: prize, + result: result + }; + + HongDianChange.sendChangeKey(call.uid, ['taskhd', 'huodonghd', 'jijinhd', 'patahd']); + + call.succ(data); +} \ No newline at end of file diff --git a/src/api_s2c/pata/ApiGetPrize.ts b/src/api_s2c/pata/ApiGetPrize.ts new file mode 100644 index 0000000..74e3e46 --- /dev/null +++ b/src/api_s2c/pata/ApiGetPrize.ts @@ -0,0 +1,40 @@ +import { ApiCall } from "tsrpc"; +import { PataFun } from '../../public/pata'; +import { ReqGetPrize, ResGetPrize } from "../../shared/protocols/pata/PtlGetPrize"; +import { PlayerFun } from '../../public/player'; +import { HongDianChange } from "../hongdian/fun"; +// import { paTaType } from '../../shared/protocols/pata/type'; + +export default async function (call: ApiCall) { + let idx = call.req.idx; + let con = G.gc.patacom + + /**参数错误 */ + if (!con[idx]) { + return call.error(globalThis.lng.pata_getprize_1) + } + let changeInfo = await PataFun.getInfo(call.uid); + + /**未通关此关卡 */ + if (changeInfo.lv <= idx) { + return call.error(globalThis.lng.pata_getprize_2) + } + /**已经领取 */ + if (changeInfo.gotarr.indexOf(idx) != -1) { + return call.error(globalThis.lng.pata_getprize_2) + } + + // 设置数据 + let prize = [] + changeInfo.gotarr.push(idx) + let setData = {gotarr: changeInfo.gotarr} + await PataFun.changeInfo(call.uid, changeInfo.sid, { $set: setData }); + prize = await PlayerFun.sendPrize(call, con[idx].prize) + + let data = { + mydata: changeInfo, + prize: prize + } + HongDianChange.sendChangeKey(call.uid, ['patahd']) + call.succ(data); +} \ No newline at end of file diff --git a/src/api_s2c/pata/ApiOpen.ts b/src/api_s2c/pata/ApiOpen.ts new file mode 100644 index 0000000..bb4a60f --- /dev/null +++ b/src/api_s2c/pata/ApiOpen.ts @@ -0,0 +1,15 @@ +import { ApiCall } from "tsrpc"; +// import { playerInfoType } from '../../module/collection_palyerInfo'; 统计使用 无需 +import { PataFun } from '../../public/pata'; +import { ReqOpen, ResOpen } from "../../shared/protocols/pata/PtlOpen"; +// import { PublicShared } from '../../shared/public/public'; +// import { paTaType } from '../../shared/protocols/pata/type'; + +export default async function (call: ApiCall) { + let changeInfo = await PataFun.getInfo(call.uid); + + let data = { + mydata: changeInfo + } + call.succ(data); +} \ No newline at end of file diff --git a/src/api_s2c/pata/ApiSaoDang.ts b/src/api_s2c/pata/ApiSaoDang.ts new file mode 100644 index 0000000..cd097cb --- /dev/null +++ b/src/api_s2c/pata/ApiSaoDang.ts @@ -0,0 +1,41 @@ +import { ApiCall } from "tsrpc"; +import { PataFun } from "../../public/pata"; +import { PlayerFun } from "../../public/player"; +import { ReqSaoDang, ResSaoDang } from "../../shared/protocols/pata/PtlSaoDang"; +import { PlayerShared } from '../../shared/public/player'; +import { PublicShared } from "../../shared/public/public"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let changeInfo = await PataFun.getInfo(call.uid); + let maxNum = G.gc.com.pata_saodang.value; + + // 扫荡次数不足 + if ((changeInfo?.saodangNum || 0) >= (maxNum + (PlayerShared.getMingDaoBuff(call.conn.gud, 'zccg_sd') || 0))) return call.error(globalThis.lng.pata_fight_1); + + // 未通关过关卡 + if (changeInfo.lv <= 1) return call.error(globalThis.lng.pata_getprize_3); + + let _guankaid = changeInfo.lv - 1; + let _prize: atn[] = G.gc.pata[_guankaid].sdprize; + for (let index = 0; index < call.req.num - 1; index++) { + _prize = _prize.concat(G.gc.pata[_guankaid].sdprize); + } + _prize = PublicShared.mergePrize(_prize); + + changeInfo.saodangNum = call.req.num + (changeInfo?.saodangNum || 0); + // 改变的数据 + let setData = { + saodangNum: changeInfo.saodangNum + }; + // 设置数据 + await PataFun.changeInfo(call.uid, changeInfo.sid, { $set: setData }); + _prize = await PlayerFun.sendPrize(call, _prize); + + let data = { + mydata: changeInfo, + prize: _prize + }; + HongDianChange.sendChangeKey(call.uid, ['taskhd', 'huodonghd']); + call.succ(data); +} \ No newline at end of file diff --git a/src/api_s2c/pay/ApiGetList.ts b/src/api_s2c/pay/ApiGetList.ts new file mode 100644 index 0000000..4e339da --- /dev/null +++ b/src/api_s2c/pay/ApiGetList.ts @@ -0,0 +1,10 @@ +import { ApiCall } from "tsrpc"; +import { PayFun } from '../../public/pay'; +import { ReqGetList, ResGetList } from "../../shared/protocols/pay/PtlGetList"; + +export default async function (call: ApiCall) { + + call.succ({ + list: await PayFun.getPayLog(call.uid) + }); +} \ No newline at end of file diff --git a/src/api_s2c/peijian/ApiGetList.ts b/src/api_s2c/peijian/ApiGetList.ts new file mode 100644 index 0000000..9951678 --- /dev/null +++ b/src/api_s2c/peijian/ApiGetList.ts @@ -0,0 +1,34 @@ +import { ApiCall } from "tsrpc"; +import { ReqGetList, ResGetList } from "../../shared/protocols/peijian/PtlGetList"; + +export default async function (call: ApiCall) { + let _maxLv = 0 + let color = {} + let peijianCon = G.gc.peijian + + let dbList = (await G.mongodb.collection('peijian').find({ uid: call.uid }).toArray()).map(p => { + let np = G.mongodb.conversionIdObj(p); + let { uid, ...ops } = np; + + if (np.lv > _maxLv) _maxLv = np.lv + if (!color[peijianCon[np.peijianId].colour]) color[peijianCon[np.peijianId].colour] = 0 + color[peijianCon[np.peijianId].colour] = np.lv > color[peijianCon[np.peijianId].colour] ? np.lv : color[peijianCon[np.peijianId].colour] + return ops; + }); + + // 记录玩家最大等级,颜色相关数据 注册任务用 + await G.mongodb.collection('playerInfo', 'usertasklog').updateOne({ uid: call.conn.uid, type: 'usertasklog' }, + { $set: { maxpeijianlv: _maxLv, peijiancolor: color } }, { upsert: true }) + + let list = Object.fromEntries(dbList.map(p => [G.formatRedisKey(p._id), p])); + G.redis.set('peijian', call.uid, list); + + let recLshd = await G.mongodb.collection('playerInfo', 'lshd_peijian').findOne({ uid: call.conn.uid, type: 'lshd_peijian' }); + let { uid, _id, type, ...peijians } = (recLshd || {}); + + call.conn.lshd.peijian = peijians || {}; + call.succ({ + list: Object.fromEntries(dbList.map(p => [p._id, p])), + lshd: peijians || {} + }); +} \ No newline at end of file diff --git a/src/api_s2c/peijian/ApiJinJie.ts b/src/api_s2c/peijian/ApiJinJie.ts new file mode 100644 index 0000000..c5ca6ed --- /dev/null +++ b/src/api_s2c/peijian/ApiJinJie.ts @@ -0,0 +1,45 @@ +import { ApiCall } from "tsrpc"; +import { ChatFun } from '../../public/chat'; +import { PeijianFun } from '../../public/peijian'; +import { PlayerFun } from '../../public/player'; +import { ReqJinJie, ResJinJie } from "../../shared/protocols/peijian/PtlJinJie"; + +export default async function (call: ApiCall) { + + let peijian = await PeijianFun.getPeijian(call, call.req.p_id); + if (!peijian) return call.errorCode(-1); + + let conf = G.gc.peijian[peijian.peijianId]; + if (!conf.jjid) return call.errorCode(-2); + + if (peijian.lv < G.gc.peijiancom.jinjieLv) return call.errorCode(-3); + + await PlayerFun.checkNeedIsMeet(call, G.gc.peijiancom.jinjieNeed); + await PlayerFun.cutNeed(call, G.gc.peijiancom.jinjieNeed); + + let newLv = 2; + let useExp = Object.values(G.gc.peijian_lv[conf.colour]).filter(c => c.lv <= peijian.lv).map(c => c.need[0].n).reduce((a, b) => a + b); + let countExp = 0; + let newLvConfs = Object.values(G.gc.peijian_lv[G.gc.peijian[conf.jjid].colour]); + + for (let c of newLvConfs) { + countExp += c.need[0].n; + if (useExp < countExp) break; + if (G.gc.peijian_lv[G.gc.peijian[conf.jjid].colour][newLv + 1]) newLv++; + } + + await PeijianFun.changeAttr(call, peijian, { peijianId: conf.jjid.toString(), lv: newLv }); + + ChatFun.newMsg({ + type: 'local', + msg: G.gc.pmd.jinjie_peijian, + time: G.time, + sender: 'system', + otherData: { + pmd: true, + args: [call.conn.gud.name, conf.name] + } + }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/peijian/ApiJingLian.ts b/src/api_s2c/peijian/ApiJingLian.ts new file mode 100644 index 0000000..adc2f37 --- /dev/null +++ b/src/api_s2c/peijian/ApiJingLian.ts @@ -0,0 +1,35 @@ +import { ApiCall } from "tsrpc"; +import { PeijianFun } from '../../public/peijian'; +import { PlayerFun } from '../../public/player'; +import { ReqJingLian, ResJingLian } from "../../shared/protocols/peijian/PtlJingLian"; + +export default async function (call: ApiCall) { + + let peijian = await PeijianFun.getPeijian(call, call.req.p_id); + if (!peijian) return call.errorCode(-1); + + let conf = G.gc.peijian[peijian.peijianId]; + if (!G.gc.peijiancom.jinglianColour.includes(conf.colour)) return call.errorCode(-2); + + let jlConf = G.gc.peijian_jl[peijian.jinglian + 1]; + if (!jlConf) return call.errorCode(-3); + if (peijian.lv < jlConf.needLv) return call.errorCode(-4); + + await PlayerFun.checkNeedIsMeet(call, jlConf.need); + + if (jlConf.peijianNum) { + let t = Object.values(G.gc.peijian).find(p => p.jjid.toString() == peijian.peijianId); + if (t) { + let filters = Object.values(await G.redis.get('peijian', call.uid)).filter(p => p.peijianId == t.id.toString() && !p.wearId && p.lv <= 1); + if (filters.length < jlConf.peijianNum) return call.errorCode(-5); + await PlayerFun.cutPeijian(call, filters.slice(0, jlConf.peijianNum).map(p => p._id)); + } else { + return call.errorCode(-6); + } + } + + await PlayerFun.cutNeed(call, jlConf.need); + await PeijianFun.changeAttr(call, peijian, { jinglian: peijian.jinglian + 1 }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/peijian/ApiLvUp.ts b/src/api_s2c/peijian/ApiLvUp.ts new file mode 100644 index 0000000..90e7aad --- /dev/null +++ b/src/api_s2c/peijian/ApiLvUp.ts @@ -0,0 +1,39 @@ +import { ApiCall } from "tsrpc"; +import { PeijianFun } from '../../public/peijian'; +import { PlayerFun } from '../../public/player'; +import { ReqLvUp, ResLvUp } from "../../shared/protocols/peijian/PtlLvUp"; +import { prizeType } from '../../shared/protocols/type'; +import { PublicShared } from '../../shared/public/public'; + +export default async function (call: ApiCall) { + + let peijian = await PeijianFun.getPeijian(call, call.req.p_id); + if (!peijian) return call.errorCode(-1); + + let conf = G.gc.peijian[peijian.peijianId]; + if (!G.gc.peijian_lv[conf.colour][peijian.lv + 1] || conf.isExp) return call.errorCode(-2); + + let addLv = 0; + let need: prizeType[] = []; + for (let lv = 1; lv <= call.req.num; lv++) { + let lvConf = G.gc.peijian_lv[conf.colour][peijian.lv + lv]; + if (!lvConf) break; + + let isMeet = await PlayerFun.checkNeedIsMeet(call, PublicShared.mergePrize(need.concat(lvConf.need)), false); + if (!isMeet.isOk) { + if (lv == 1) { + return call.error('', { code: -104, atn: isMeet.atn }); + } else { + break; + } + } + + addLv++; + need = need.concat(lvConf.need); + } + + await PlayerFun.cutNeed(call, need); + await PeijianFun.changeAttr(call, peijian, { lv: peijian.lv + addLv }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/peijian/ApiOneKeyLvUp.ts b/src/api_s2c/peijian/ApiOneKeyLvUp.ts new file mode 100644 index 0000000..f6607be --- /dev/null +++ b/src/api_s2c/peijian/ApiOneKeyLvUp.ts @@ -0,0 +1,61 @@ +import { ApiCall } from "tsrpc"; +import { HeroFun } from '../../public/hero'; +import { PeijianFun } from '../../public/peijian'; +import { PlayerFun } from '../../public/player'; +import { PeiJian } from '../../shared/protocols/peijian/PtlGetList'; +import { ReqOneKeyLvUp, ResOneKeyLvUp } from "../../shared/protocols/peijian/PtlOneKeyLvUp"; +import { prizeType } from '../../shared/protocols/type'; +import { PeijianShared } from '../../shared/public/peijian'; +import { PublicShared } from '../../shared/public/public'; + +export default async function (call: ApiCall) { + + let hero = await HeroFun.getHero(call, call.req.heroId); + if (!hero) return call.errorCode(-1); + + if (!hero.peijian) return call.errorCode(-2); + + let posObj: k_v> = {}; + let need: prizeType[] = []; + + Object.keys(hero.peijian).forEach( x => { + if(hero.peijian[x]) posObj[x] = PeijianShared.fmt(hero.peijian[x]) + }) + let addObj = Object.fromEntries(Object.keys(posObj).map(p => [ p, { lv: 0, can: true, peijianId: posObj[p].peijianId }])); + let _sjNum = 0 // 任务计数,升级用 + for (let addLv = 1; addLv <= 20 * Object.keys(posObj).length; addLv++) { + if (Object.values(addObj).filter(a => a.can == false).length == Object.keys(posObj).length) break; + // 排序获取级最低的装备 + let _sortPos = Object.keys(posObj).sort((a, b) => posObj[a].lv - posObj[b].lv) + let pos = _sortPos[0] + let peijian = posObj[pos] + if (!addObj[pos].can) continue; + let nextLv = peijian.lv + 1; + // 下一级需要的资源 + let lvConf = G.gc.peijian_lv[G.gc.peijian[peijian.peijianId].colour][nextLv]; + + if (!lvConf || (await PlayerFun.checkNeedIsMeet(call, PublicShared.mergePrize([].concat(need, lvConf.need)), false)).isOk == false) { + addObj[pos].can = false; + continue; + } + need.push(...lvConf.need); + addObj[pos].lv++; + _sjNum++ + posObj[pos].lv++ + } + + if (need.length < 1) return call.errorCode(-2); + + await PlayerFun.cutNeed(call, need); + + for (let [pos, obj] of Object.entries(addObj)) { + if (!obj.lv) continue; + let pj = posObj[pos]; + await PeijianFun.changeAttr(call, pj, { lv: pj.lv }, false); + } + + await HeroFun.changeHeroAttr(call, hero, { peijian: Object.fromEntries(Object.keys(posObj).map(pos => [pos, PeijianShared.fmt(posObj[pos])])) }); + let posLvUp = Object.keys(addObj).map(x => addObj[x].lv) + let allNeed = PublicShared.mergePrize(need) + call.succ({ sjnum: _sjNum, posLvUp, allNeed}); +} \ No newline at end of file diff --git a/src/api_s2c/peijian/ApiOneKeyWear.ts b/src/api_s2c/peijian/ApiOneKeyWear.ts new file mode 100644 index 0000000..dcef528 --- /dev/null +++ b/src/api_s2c/peijian/ApiOneKeyWear.ts @@ -0,0 +1,54 @@ +import { ApiCall } from "tsrpc"; +import { HeroFun } from '../../public/hero'; +import { PeijianFun } from '../../public/peijian'; +import { ReqOneKeyWear, ResOneKeyWear } from "../../shared/protocols/peijian/PtlOneKeyWear"; +import { PeijianShared } from '../../shared/public/peijian'; + +export default async function (call: ApiCall) { + + + let hero = await HeroFun.getHero(call, call.req.h_id); + if (!hero) return call.errorCode(-2); + + if (call.conn.gud.lv < G.gc.peijiancom.gridCond['1'].lv) return call.errorCode(-3); + + + let wears = hero.peijian || {}; + + // 检查配件位置是否可以穿戴 + let posArr = [] + for (let i = 1; i < 7; i++){ + if (wears[i]) continue + + if(call.conn.gud.lv >= G.gc.peijiancom.gridCond[i.toString()].lv || (call.conn.gud.peijianUnlock?.[i.toString()] != undefined)){ + posArr.push(i) + } + } + + let peijianArr = await PeijianFun.getAvbPeijian(call,1000); + peijianArr = peijianArr.filter(i=>!G.gc.peijian[i.peijianId].isExp) + + if(peijianArr.length==0||posArr.length==0) return call.succ({}); + + for (let pos of posArr){ + + if(!peijianArr.length) break + + for (let index in peijianArr){ + + let wearsData = Object.values(wears).filter(pos1 => !!wears[pos1] && pos1 != pos).map(s => PeijianShared.fmt(s)); + if (wearsData.map(p => G.gc.peijian[p.peijianId].buff[0]).includes(G.gc.peijian[peijianArr[index].peijianId].buff[0])) continue + + await PeijianFun.changeAttr(call, peijianArr[Number(index)], { wearId: call.req.h_id }, false); + + wears[pos] = PeijianShared.fmt(peijianArr[Number(index)]); + + peijianArr.splice(Number(index),1) + break; + } + + } + await HeroFun.changeHeroAttr(call, hero, { peijian: wears }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/peijian/ApiReset.ts b/src/api_s2c/peijian/ApiReset.ts new file mode 100644 index 0000000..740d618 --- /dev/null +++ b/src/api_s2c/peijian/ApiReset.ts @@ -0,0 +1,42 @@ +import { ApiCall } from "tsrpc"; +import { PeijianFun } from '../../public/peijian'; +import { PlayerFun } from '../../public/player'; +import { ReqReset, ResReset } from "../../shared/protocols/peijian/PtlReset"; + +export default async function (call: ApiCall) { + + let peijians = (await PeijianFun.getPeijian(call, call.req.p_ids)).filter(peijian => !peijian.wearId && (peijian.lv > 1 || G.gc.peijian[peijian.peijianId].colour == 5) && !G.gc.peijian[peijian.peijianId].isExp); + if (peijians.length < call.req.p_ids.length) return call.errorCode(-1); + + let need = G.gc.peijiancom.resetNeed.map(atn => { return { ...atn, n: atn.n * peijians.length }; }); + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + + let prize: atn[] = []; + let allConfs = Object.values(G.gc.peijian); + for (let peijian of peijians) { + let conf = G.gc.peijian[peijian.peijianId]; + + if (peijian.lv > 1) { + let needs = Object.values(G.gc.peijian_lv[conf.colour]).filter(c => c.lv <= peijian.lv).map(c => c.need).reduce((a, b) => a.concat(b)); + prize.push(...needs); + } + + if (conf.colour == 5) { + let jjConf = allConfs.find(c => c.jjid.toString() == peijian.peijianId); + prize.push(...G.gc.peijiancom.jinjieNeed); + + if (peijian.jinglian > 0) { + prize.push(...Object.values(G.gc.peijian_jl).filter(c => c.lv <= peijian.jinglian).map(c => [].concat(c.need, { a: 'peijian', t: jjConf.id, n: c.peijianNum })).reduce((a, b) => a.concat(b))); + } + + await PeijianFun.changeAttr(call, peijian, { lv: 1, jinglian: 0, peijianId: jjConf.id.toString() }); + } else { + await PeijianFun.changeAttr(call, peijian, { lv: 1, jinglian: 0 }); + } + } + + prize = await PlayerFun.sendPrize(call, prize); + + call.succ({ prize: prize }); +} \ No newline at end of file diff --git a/src/api_s2c/peijian/ApiRm.ts b/src/api_s2c/peijian/ApiRm.ts new file mode 100644 index 0000000..2aacaf6 --- /dev/null +++ b/src/api_s2c/peijian/ApiRm.ts @@ -0,0 +1,17 @@ +import { ApiCall } from "tsrpc"; +import { PeijianFun } from '../../public/peijian'; +import { PlayerFun } from '../../public/player'; +import { ReqRm, ResRm } from "../../shared/protocols/peijian/PtlRm"; + +export default async function (call: ApiCall) { + let peijians = (await PeijianFun.getPeijian(call, call.req.p_ids)).filter(peijian => !peijian.wearId && peijian.lv <= 1); + if (peijians.length < call.req.p_ids.length) return call.errorCode(-1); + + let prize = peijians.map(p => G.gc.peijian[p.peijianId].rmPrize).reduce((a, b) => a.concat(b)); + + await PlayerFun.cutPeijian(call, call.req.p_ids); + + prize = await PlayerFun.sendPrize(call, prize); + + call.succ({ prize: prize }); +} \ No newline at end of file diff --git a/src/api_s2c/peijian/ApiTakeOff.ts b/src/api_s2c/peijian/ApiTakeOff.ts new file mode 100644 index 0000000..101185d --- /dev/null +++ b/src/api_s2c/peijian/ApiTakeOff.ts @@ -0,0 +1,13 @@ +import { ApiCall } from "tsrpc"; +import { PeijianFun } from '../../public/peijian'; +import { ReqTakeOff, ResTakeOff } from "../../shared/protocols/peijian/PtlTakeOff"; + +export default async function (call: ApiCall) { + + let peijian = await PeijianFun.getPeijian(call, call.req.p_id); + if (!peijian || !peijian.wearId) return call.errorCode(-1); + + await PeijianFun.changeAttr(call, peijian, { wearId: '' }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/peijian/ApiUnLock.ts b/src/api_s2c/peijian/ApiUnLock.ts new file mode 100644 index 0000000..a258671 --- /dev/null +++ b/src/api_s2c/peijian/ApiUnLock.ts @@ -0,0 +1,22 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqUnLock, ResUnLock } from "../../shared/protocols/peijian/PtlUnLock"; + +export default async function (call: ApiCall) { + let conf = G.gc.peijiancom.gridCond[call.req.pos]; + if (!conf || conf.need.length < 1) return call.errorCode(-1); + + let player = call.conn.gud; + if (player.lv >= conf.lv) return call.errorCode(-3); + if (player.peijianUnlock?.[call.req.pos] != undefined) return call.errorCode(-4); + + await PlayerFun.checkNeedIsMeet(call, conf.need); + await PlayerFun.cutNeed(call, conf.need); + + let wears = player.peijianUnlock || {}; + wears[call.req.pos] = ''; + + await PlayerFun.addAttr(call, { peijianUnlock: wears }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/peijian/ApiWear.ts b/src/api_s2c/peijian/ApiWear.ts new file mode 100644 index 0000000..52855e4 --- /dev/null +++ b/src/api_s2c/peijian/ApiWear.ts @@ -0,0 +1,41 @@ +import { ApiCall } from "tsrpc"; +import { HeroFun } from '../../public/hero'; +import { PeijianFun } from '../../public/peijian'; +import { ReqWear, ResWear } from "../../shared/protocols/peijian/PtlWear"; +import { PeijianShared } from '../../shared/public/peijian'; + +export default async function (call: ApiCall) { + + if (!G.gc.peijiancom.gridCond[call.req.pos]) return call.errorCode(-1); + + let hero = await HeroFun.getHero(call, call.req.h_id); + if (!hero) return call.errorCode(-2); + if (call.conn.gud.lv < G.gc.peijiancom.gridCond['1'].lv) return call.errorCode(-3); + if (Object.values(hero.peijian || {}).includes(call.req.p_id)) return call.errorCode(-4); + + let peijian = await PeijianFun.getPeijian(call, call.req.p_id); + if (!peijian || peijian.wearId || G.gc.peijian[peijian.peijianId].isExp) return call.errorCode(-5); + + let wears = hero.peijian || {}; + let wearsData = Object.values(wears).filter(pos => !!wears[pos] && pos != call.req.pos).map(s => PeijianShared.fmt(s)); + let unlock = call.conn.gud.peijianUnlock || {}; + + //是否解锁 + if (call.req.pos != '1' && G.gc.peijiancom.gridCond[call.req.pos].lv > call.conn.gud.lv && unlock[call.req.pos] == undefined) return call.errorCode(-6); + + //是否存在同类型buff配件 + if (wearsData.map(p => G.gc.peijian[p.peijianId].buff[0]).includes(G.gc.peijian[peijian.peijianId].buff[0])) return call.errorCode(-7); + + //如果该位置穿戴着其他配件 那么卸下 + if (wears[call.req.pos]) { + await PeijianFun.changeAttr(call, PeijianShared.fmt(wears[call.req.pos]), { wearId: '' }, false); + } + + await PeijianFun.changeAttr(call, peijian, { wearId: call.req.h_id }, false); + + wears[call.req.pos] = PeijianShared.fmt(peijian); + + await HeroFun.changeHeroAttr(call, hero, { peijian: wears }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/peijiancangku/ApiDeal.ts b/src/api_s2c/peijiancangku/ApiDeal.ts new file mode 100644 index 0000000..1283a85 --- /dev/null +++ b/src/api_s2c/peijiancangku/ApiDeal.ts @@ -0,0 +1,60 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqDeal, ResDeal } from "../../shared/protocols/peijiancangku/PtlDeal"; +import { PublicShared } from '../../shared/public/public'; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let db = await G.mongodb.cPlayerInfo('peijiancangku').findOne({ uid: call.uid, type: 'peijiancangku' }); + let index = db?.index || 0; + + let need: atn[] = []; + let indexs: number[] = []; + for (let n = 0; n < call.req.num; n++) { + + let isMeet = await PlayerFun.checkNeedIsMeet(call, [].concat(need, G.gc.peijiancangku.warehouse[index].need), false); + if (!isMeet.isOk) { + if (indexs.length == 1) return call.error('', { code: -104, atn: isMeet.atn }); + else break; + } + indexs.push(index); + need.push(...G.gc.peijiancangku.warehouse[index].need); + + let next = G.gc.peijiancangku.warehouse[index + 1]; + if (next) { + let isRandom = PublicShared.randomNum(1, 100) <= next.p; + if (isRandom) { + index = index + 1; + } else { + index = 0; + } + } else { + index = 0; + } + } + + await PlayerFun.cutNeed(call, need); + + let prize = indexs.map(i => { + let conf = G.gc.peijiancangku.warehouse[i]; + let drop = PublicShared.randomDropAny(conf.drop); + return drop.dlz.map(dlz => PublicShared.randomDropGroup(dlz)).reduce((a, b) => a.concat(b)); + }).reduce((a, b) => a.concat(b)); + + let sendPrize = prize.map(p => { + if (p.a == 'peijian' && G.gc.peijian[p.t].conversion.length > 0) return G.gc.peijian[p.t].conversion[0]; + return p; + }); + + await PlayerFun.sendPrize(call, sendPrize); + + G.mongodb.cPlayerInfo('peijiancangku').updateOne( + { uid: call.uid, type: 'peijiancangku' }, + { $set: { index: index } }, + { upsert: true } + ); + + HongDianChange.sendChangeKey(call.uid, ['taskhd', 'huodonghd']) + + call.succ({ prize: prize, index: index, indexs: indexs }); +} \ No newline at end of file diff --git a/src/api_s2c/peijiancangku/ApiJump.ts b/src/api_s2c/peijiancangku/ApiJump.ts new file mode 100644 index 0000000..eecfcc3 --- /dev/null +++ b/src/api_s2c/peijiancangku/ApiJump.ts @@ -0,0 +1,24 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqJump, ResJump } from "../../shared/protocols/peijiancangku/PtlJump"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let db = await G.mongodb.cPlayerInfo('peijiancangku').findOne({ uid: call.uid, type: 'peijiancangku' }); + + if (db?.index == G.gc.peijiancangku.jumpWarehouse.index) return call.errorCode(-1); + + await PlayerFun.checkNeedIsMeet(call, G.gc.peijiancangku.jumpWarehouse.need); + await PlayerFun.cutNeed(call, G.gc.peijiancangku.jumpWarehouse.need); + await PlayerFun.sendPrize(call, G.gc.peijiancangku.jumpWarehouse.prize); + + G.mongodb.cPlayerInfo('peijiancangku').updateOne( + { uid: call.uid, type: 'peijiancangku' }, + { $set: { index: G.gc.peijiancangku.jumpWarehouse.index } }, + { upsert: true } + ); + + HongDianChange.sendChangeKey(call.uid, ['taskhd', 'huodonghd']) + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/peijiancangku/ApiOpen.ts b/src/api_s2c/peijiancangku/ApiOpen.ts new file mode 100644 index 0000000..f5d6174 --- /dev/null +++ b/src/api_s2c/peijiancangku/ApiOpen.ts @@ -0,0 +1,10 @@ +import { ApiCall } from "tsrpc"; +import { ReqOpen, ResOpen } from "../../shared/protocols/peijiancangku/PtlOpen"; + +export default async function (call: ApiCall) { + let db = await G.mongodb.cPlayerInfo('peijiancangku').findOne({ uid: call.uid, type: 'peijiancangku' }); + + call.succ({ + index: db?.index || 0 + }); +} \ No newline at end of file diff --git a/src/api_s2c/qjzzd/ApiFight.ts b/src/api_s2c/qjzzd/ApiFight.ts new file mode 100644 index 0000000..176b018 --- /dev/null +++ b/src/api_s2c/qjzzd/ApiFight.ts @@ -0,0 +1,51 @@ +import { ApiCall } from "tsrpc"; +import { FightFun } from '../../public/fight'; +import { PlayerFun } from "../../public/player"; +import { QjzzdFun } from "../../public/qjzzd"; +import { Rank } from '../../public/rank/rank'; +import { ReqFight, ResFight } from "../../shared/protocols/qjzzd/PtlFight"; +import { PublicShared } from "../../shared/public/public"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let data = await G.mongodb.collection('scheduler').findOne({ type: 'qjzzd' }); + + if (!data) return call.error('', { code: -1, message: globalThis.lng.qjzzd_5 }); + + let myData = await G.mongodb.cPlayerInfo('qjzzd').findOne({ uid: call.uid, type: 'qjzzd' }); + + // if (myData.useFightNum >= G.gc.qjzzd.fightNum) return call.error('挑战次数不足'); + + let _zeroTime = PublicShared.getToDayZeroTime(G.time) + if (!(_zeroTime + G.gc.qjzzd.time[0] <= G.time && G.time <= _zeroTime + G.gc.qjzzd.time[1])) return call.error('', { code: -1, message: globalThis.lng.qjzzd_5 }); + + let result = await FightFun.fightNpc(call, data.boss, 'qjzzd'); + + let change: ResFight['change'] = {}; + + change.useFightNum = myData.useFightNum + 1; + change.maxDps = result.totalDamage[0] > myData.maxDps ? result.totalDamage[0] : myData.maxDps; + + if (result.totalDamage[0] > myData.maxDps) { + Rank.list['qjzzd'].addNew({ + player: call.conn.gud, + valArr: [result.totalDamage[0]] + }); + } + + G.mongodb.cPlayerInfo('qjzzd').updateOne( + { uid: call.uid, type: 'qjzzd' }, + { $inc: { useFightNum: 1 }, $set: { maxDps: change.maxDps } }, + { upsert: true } + ); + + let _prize = await QjzzdFun.getFightPrize(change.useFightNum) + _prize && await PlayerFun.sendPrize(call, _prize); + HongDianChange.sendChangeKey(call.uid, ['qjzzdhd', 'taskhd', 'huodonghd']) + + call.succ({ + result: result, + change: change, + prize: _prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/qjzzd/ApiOpen.ts b/src/api_s2c/qjzzd/ApiOpen.ts new file mode 100644 index 0000000..b1fd06d --- /dev/null +++ b/src/api_s2c/qjzzd/ApiOpen.ts @@ -0,0 +1,42 @@ +import { ApiCall } from "tsrpc"; +import { ReqOpen, ResOpen } from "../../shared/protocols/qjzzd/PtlOpen"; +import { PublicShared } from "../../shared/public/public"; + +export default async function (call: ApiCall) { + let data = await G.mongodb.collection('scheduler').findOne({ type: 'qjzzd' }); + + let myData = await G.mongodb.cPlayerInfo('qjzzd').findOne({ uid: call.uid, type: 'qjzzd' }); + let _zeroTime = PublicShared.getToDayZeroTime(G.time) + if (!myData || myData.refreshTime < data.lastRunTime || !myData?.refreFightTime || myData?.refreFightTime < _zeroTime) { + let _setData = {} + if (!myData?.refreFightTime || myData?.refreFightTime < _zeroTime) { + // 每日挑战 + _setData = { + refreFightTime: G.time, + useFightNum: 0 + } + } + + if (!myData || myData.refreshTime < data.lastRunTime) { + Object.assign(_setData, { refreshTime: data.lastRunTime, useFightNum: 0, maxDps: 0 }) + } + + G.mongodb.cPlayerInfo('qjzzd').updateOne( + { uid: call.uid, type: 'qjzzd' }, + { $set: _setData }, + { upsert: true } + ); + + call.succ({ + boss: data.boss, + maxDps: myData?.maxDps || 0, + useFightNum: 0, + refreshTime: data.lastRunTime, + }); + } else { + call.succ({ + ...myData, + boss: data.boss + }); + } +} \ No newline at end of file diff --git a/src/api_s2c/rank/ApiOpen.ts b/src/api_s2c/rank/ApiOpen.ts new file mode 100644 index 0000000..9be5797 --- /dev/null +++ b/src/api_s2c/rank/ApiOpen.ts @@ -0,0 +1,72 @@ +import { ApiCall } from "tsrpc"; +import { JJCFun } from '../../public/jjc'; +import { Rank } from '../../public/rank/rank'; +import { ReqOpen, ResOpen } from "../../shared/protocols/rank/PtlOpen"; + +export default async function (call: ApiCall) { + + let obj = await rankOpenfun(call, call.req) + call.succ(obj); +} + + +// ### debug 参数需调整,req数组应使用types字段接收,需增加分页参数,需前端配合,优化redis存储暂不改。 +export async function rankOpenfun(call, req: ReqOpen): Promise { + let obj: ResOpen = {}; + + for (let type of req) { + switch (type) { + case 'jjc': + // 获取前50名ranklist数据 + let rankList = await JJCFun.getRankList(0, 50); + // 获取自己的排名 + let myRank = await JJCFun.getPlayerRank(call.uid) + // 获取自己的rank信息 + let myRankInfo = await JJCFun.getPlayerData(call.uid) + obj[type] = { + rankList: rankList, + myRank: { + rank: myRank, + player: myRankInfo?.player || call.conn.gud, + valArr: myRankInfo?.valArr || [], + otherData: myRankInfo?.otherData || {} + } + }; + break; + case 'hbzbCross': + obj[type] = await Rank.list.hbzbLocal.getCrossRankList(call.uid); + break; + case 'hbzbZbsCross': + obj[type] = await Rank.list.hbzbLocal.getZbsRankList(call.uid); + break; + case 'slzd1': + case 'slzd2': + case 'slzd3': + case 'slzd4': + case 'slzd5': + case 'slzd6': + obj[type] = await Rank.list[type].getRankList(call.conn.gud.ghId); + break; + case 'kbzz': + let resCall = await G.clientCross.callApi('kbzz/Rank', { uid: call.uid }); + if (!resCall.isSucc) { + return call.error('', { code: -2, message: globalThis.lng.rank_kbzz }); + } + obj[type] = resCall.res; + break; + case 'clslCross': + let resCallClsl = await G.clientCross.callApi('clsl/Rank', { gud: call.conn.gud }); + obj[type] = resCallClsl.res; + break; + case 'wzryCross': + let resCallWzry = await G.clientCross.callApi('wzry/Rank', { gud: call.conn.gud }); + obj[type] = resCallWzry.res; + break; + default: + obj[type] = await Rank.list[type].getRankList(call.uid); + break; + } + } + return obj +} + diff --git a/src/api_s2c/shiwu/ApiConcise.ts b/src/api_s2c/shiwu/ApiConcise.ts new file mode 100644 index 0000000..dba8c71 --- /dev/null +++ b/src/api_s2c/shiwu/ApiConcise.ts @@ -0,0 +1,24 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ShiwuFun } from '../../public/shiwu'; +import { ReqConcise, ResConcise } from "../../shared/protocols/shiwu/PtlConcise"; +import { ShiwuShared } from '../../shared/public/shiwu'; + +export default async function (call: ApiCall) { + + let shiwu = await ShiwuFun.getShiwu(call, call.req._id); + if (!shiwu) return call.error(globalThis.lng.shiwu_1); + + let fujiaNum = shiwu.colour - 1; + let allOrange = shiwu.fujia.filter(f => f.colour >= 5).length == fujiaNum; + if (allOrange && call.req.lockArr.length == fujiaNum) return call.error(globalThis.lng.shiwu_2); + + let need = allOrange && (fujiaNum - call.req.lockArr.length >= 0) ? ShiwuShared.getConciseNeed(fujiaNum - call.req.lockArr.length) : ShiwuShared.getConciseNeed(shiwu); + await PlayerFun.checkNeedIsMeet(call, need); + + ShiwuFun.randomFujiaAll(shiwu, call.req.lockArr); + await PlayerFun.cutNeed(call, need); + await ShiwuFun.changeShiwuAttr(call, shiwu, { fujia: shiwu.fujia }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/shiwu/ApiExtract.ts b/src/api_s2c/shiwu/ApiExtract.ts new file mode 100644 index 0000000..db35bdd --- /dev/null +++ b/src/api_s2c/shiwu/ApiExtract.ts @@ -0,0 +1,39 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ShiwuFun } from '../../public/shiwu'; +import { ReqExtract, ResExtract } from "../../shared/protocols/shiwu/PtlExtract"; +import { prizeType } from '../../shared/protocols/type'; +import { PublicShared } from '../../shared/public/public'; + +export default async function (call: ApiCall) { + if (call.req._ids.length < 1) return call.error('', { code: -1 }); + + let items = await ShiwuFun.getShiwu(call, call.req._ids); + if (items.length != call.req._ids.length) return call.error('', { code: -2 }); + if (items.filter(i => !!i.wearId).length > 0) return call.error('', { code: -3 }); + + let prize: prizeType[] = []; + items.forEach(i => { + let val = Math.floor((140 - G.gc.shiwu[i.shiwuId].lv) * G.gc.shiwucom.base.tilianfactor[i.colour] * 100); + let round = PublicShared.randomNum(1, 100) <= val; + + let _next = G.gc.shiwu[i.shiwuId].next + if (round && _next != 0) { + if (i.colour == 5) { + prize.push({ a: 'shiwu', t: _next, n: 1, colour: i.colour }); + } else { + prize.push({ a: 'shiwu', t: _next, n: 1, colour: i.colour + 1 }); + } + } else { + prize.push(...G.gc.shiwucom.base.tilian[i.colour]); + } + }); + + await PlayerFun.cutShiwu(call, call.req._ids); + let send = await PlayerFun.sendPrize(call, prize); + + call.succ({ + prize: send, + newIds: [] + }); +} \ No newline at end of file diff --git a/src/api_s2c/shiwu/ApiGetList.ts b/src/api_s2c/shiwu/ApiGetList.ts new file mode 100644 index 0000000..c0752b5 --- /dev/null +++ b/src/api_s2c/shiwu/ApiGetList.ts @@ -0,0 +1,21 @@ +import { ApiCall } from "tsrpc"; +import { RedisCollections2 } from '../../module/redis'; +import { ReqGetList, ResGetList } from "../../shared/protocols/shiwu/PtlGetList"; + +export default async function (call: ApiCall) { + let list: ResGetList['list'] = {}; + let kvList: k_v = {}; + let arrList = await G.mongodb.collection('shiwu').find({ uid: call.uid }).toArray(); + + arrList.forEach(v => { + let d = G.mongodb.conversionIdObj(v); + kvList[G.formatRedisKey(d._id)] = d; + list[d._id] = d; + }); + + G.redis.set('shiwu', call.uid, kvList); + + call.succ({ + list: list + }); +} \ No newline at end of file diff --git a/src/api_s2c/shiwu/ApiLvUp.ts b/src/api_s2c/shiwu/ApiLvUp.ts new file mode 100644 index 0000000..7819de5 --- /dev/null +++ b/src/api_s2c/shiwu/ApiLvUp.ts @@ -0,0 +1,58 @@ +import { ApiCall } from "tsrpc"; +import { CollectionShiwu } from '../../module/collection_shiwu'; +import { HeroFun } from '../../public/hero'; +import { PlayerFun } from '../../public/player'; +import { ShiwuFun } from '../../public/shiwu'; +import { ReqLvUp, ResLvUp } from "../../shared/protocols/shiwu/PtlLvUp"; +import { PublicShared } from '../../shared/public/public'; + +export default async function (call: ApiCall) { + let _id = call.req._id; + let _ids = call.req._ids; + + if (_ids.length > 5 || _ids.length == 0) return call.errorCode(0); + if (_ids.intersection([_id]).length > 0) return call.errorCode(-1); + + let shiwu = await ShiwuFun.getShiwu(call, _id); + if (!checkIsSpeed(shiwu) || !shiwu.wearId) return call.errorCode(-2); + if (!checkIsCanUp(shiwu)) return call.errorCode(-3); + + let hero = await HeroFun.getHero(call, shiwu.wearId); + let next = getNextShiwu(shiwu); + if (hero.lv < next.lv) return call.errorCode(-6); + + + let shiwus = await ShiwuFun.getShiwu(call, _ids); + if (shiwus.length != _ids.length) return call.errorCode(-4); + if (shiwus.filter(s => !!s.wearId || s.shiwuId != shiwu.shiwuId).length > 0) return call.errorCode(-5); + + let isSucc = PublicShared.randomNum(1, 100) <= _ids.length * 20; + if (isSucc) { + shiwu.shiwuId = next.id.toString(); + shiwu.jichu = ShiwuFun.randomJichu(shiwu); + ShiwuFun.randomFujiaAll(shiwu); + await ShiwuFun.changeShiwuAttr(call, shiwu, { shiwuId: shiwu.shiwuId, jichu: shiwu.jichu, fujia: shiwu.fujia }); + } + + await PlayerFun.cutShiwu(call, _ids); + + call.succ({ + isSucc: isSucc + }); +} + +function checkIsSpeed(shiwu: CollectionShiwu) { + let conf = G.gc.shiwu[shiwu.shiwuId]; + return Object.keys(conf.buff)[0] == 'speed'; +} + +function checkIsCanUp(shiwu: CollectionShiwu) { + let ss = Object.values(G.gc.shiwu).filter(s => Object.keys(s.buff)[0] == 'speed').sort((a, b) => a.lv - b.lv); + return ss.findIndex(s => s.id.toString() == shiwu.shiwuId) != ss.length - 1; +} + +function getNextShiwu(shiwu: CollectionShiwu) { + let ss = Object.values(G.gc.shiwu).filter(s => Object.keys(s.buff)[0] == 'speed').sort((a, b) => a.lv - b.lv); + let index = ss.findIndex(s => s.id.toString() == shiwu.shiwuId); + return ss[index + 1]; +} \ No newline at end of file diff --git a/src/api_s2c/shiwu/ApiRecast.ts b/src/api_s2c/shiwu/ApiRecast.ts new file mode 100644 index 0000000..797b6b8 --- /dev/null +++ b/src/api_s2c/shiwu/ApiRecast.ts @@ -0,0 +1,21 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ShiwuFun } from '../../public/shiwu'; +import { ReqRecast, ResRecast } from "../../shared/protocols/shiwu/PtlRecast"; +import { ShiwuShared } from '../../shared/public/shiwu'; + +export default async function (call: ApiCall) { + + let shiwu = await ShiwuFun.getShiwu(call, call.req._id); + if (!shiwu) return call.error(globalThis.lng.shiwu_3); + if (!shiwu.zhuanshu) return call.error(globalThis.lng.shiwu_4); + + let need = ShiwuShared.getRecastNeed(call.req.needType); + await PlayerFun.checkNeedIsMeet(call, need); + + ShiwuFun.randomZhuanshu(shiwu); + await PlayerFun.cutNeed(call, need); + await ShiwuFun.changeShiwuAttr(call, shiwu, { zhuanshu: shiwu.zhuanshu }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/shiwu/ApiTakeOff.ts b/src/api_s2c/shiwu/ApiTakeOff.ts new file mode 100644 index 0000000..aee3f70 --- /dev/null +++ b/src/api_s2c/shiwu/ApiTakeOff.ts @@ -0,0 +1,14 @@ +import { ApiCall } from "tsrpc"; +import { ShiwuFun } from '../../public/shiwu'; +import { ReqTakeOff, ResTakeOff } from "../../shared/protocols/shiwu/PtlTakeOff"; + +export default async function (call: ApiCall) { + + let shiwu = await ShiwuFun.getShiwu(call, call.req._id); + if (!shiwu) return call.error(globalThis.lng.shiwu_3); + if (!shiwu.wearId) return call.error(globalThis.lng.shiwu_5); + + await ShiwuFun.changeShiwuAttr(call, shiwu, { wearId: '' }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/shiwu/ApiWear.ts b/src/api_s2c/shiwu/ApiWear.ts new file mode 100644 index 0000000..a6c022b --- /dev/null +++ b/src/api_s2c/shiwu/ApiWear.ts @@ -0,0 +1,31 @@ +import { ApiCall } from "tsrpc"; +import { HeroFun } from '../../public/hero'; +import { ShiwuFun } from '../../public/shiwu'; +import { ReqWear, ResWear } from "../../shared/protocols/shiwu/PtlWear"; + +export default async function (call: ApiCall) { + if (!['1', '2'].includes(call.req.pos)) return call.error(globalThis.lng.shiwu_6); + + let hero = await HeroFun.getHero(call, call.req.heroId); + if (!hero) return call.error(globalThis.lng.shiwu_7); + if (hero.lv < G.gc.herocom.equipOpenLv) return call.error(`英雄${G.gc.herocom.equipOpenLv}开启`); + + let shiwu = await ShiwuFun.getShiwu(call, call.req.shiwuId); + if (!shiwu) return call.error(globalThis.lng.shiwu_3); + if (G.gc.shiwu[shiwu.shiwuId].lv > call.conn.gud.lv) return call.error(globalThis.lng.shiwu_8); + + let wearShiwu = hero.shiwu || {}; + if (Object.values(wearShiwu).filter(sw => sw._id == shiwu._id).length > 0) return call.error(globalThis.lng.shiwu_9); + + let oldShiwu = wearShiwu[call.req.pos]; + if (oldShiwu) { + await ShiwuFun.changeShiwuAttr(call, oldShiwu, { wearId: '' }, false); + } + + wearShiwu[call.req.pos] = ShiwuFun.fmtHeroShiwu(shiwu); + + await HeroFun.changeHeroAttr(call, hero, { shiwu: wearShiwu }); + await ShiwuFun.changeShiwuAttr(call, shiwu, { wearId: hero._id }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/shootGame/ApiOpen.ts b/src/api_s2c/shootGame/ApiOpen.ts new file mode 100644 index 0000000..9756f6f --- /dev/null +++ b/src/api_s2c/shootGame/ApiOpen.ts @@ -0,0 +1,33 @@ +import { ApiCall } from "tsrpc"; +import { ReqOpen, ResOpen } from "../../shared/protocols/shootGame/PtlOpen"; +import { PublicShared } from '../../shared/public/public'; + +export default async function (call: ApiCall) { + + const data = await G.mongodb.collection('playerInfo', 'shootGame').findOne({ uid: call.uid, type: 'shootGame' }); + + if (!data) { + G.mongodb.collection('playerInfo', 'shootGame').insertOne({ + passList: {}, + receiveList: [], + refreshTime: G.time, + uid: call.uid, + type: 'shootGame' + }); + return call.succ({ + passList: {}, + receiveList: [] + }); + } + + if (PublicShared.getToDayZeroTime() > data.refreshTime) { + data.receiveList = []; + data.refreshTime = G.time; + G.mongodb.collection('playerInfo', 'shootGame').updateOne({ uid: call.uid, type: 'shootGame' }, { $set: { receiveList: [], refreshTime: G.time } }); + } + + call.succ({ + passList: data.passList, + receiveList: data.receiveList + }); +} \ No newline at end of file diff --git a/src/api_s2c/shootGame/ApiRec.ts b/src/api_s2c/shootGame/ApiRec.ts new file mode 100644 index 0000000..65d2754 --- /dev/null +++ b/src/api_s2c/shootGame/ApiRec.ts @@ -0,0 +1,30 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqRec, ResRec } from "../../shared/protocols/shootGame/PtlRec"; + +export default async function (call: ApiCall) { + const req = call.req; + const conf = G.gc.shoot; + const data = await G.mongodb.collection('playerInfo', 'shootGame').findOne({ uid: call.uid, type: 'shootGame' }); + const passList = data.passList || {}; + + if (!conf[req.id] || !conf[req.id].prize[req.level]) return call.error(globalThis.lng.shootgame_1); + + if (conf[Number(req.id) - 1] && !!!data.passList[Number(req.id) - 1]) return call.error(globalThis.lng.shootgame_2); + + if (data?.receiveList.includes(req.id)) return call.error(globalThis.lng.shootgame_3); + + await PlayerFun.sendPrize(call, conf[req.id].prize[req.level].content); + + let obj = {}; + obj[`passList.${req.id}`] = 1; + + G.mongodb.collection('playerInfo', 'shootGame').updateOne( + { uid: call.uid, type: 'shootGame' }, + { $inc: obj, $push: { receiveList: req.id } } + ); + + call.succ({ + prize: conf[req.id].prize[req.level].content + }); +} \ No newline at end of file diff --git a/src/api_s2c/shop/ApiBuy.ts b/src/api_s2c/shop/ApiBuy.ts new file mode 100644 index 0000000..ca69811 --- /dev/null +++ b/src/api_s2c/shop/ApiBuy.ts @@ -0,0 +1,60 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ShopFun } from '../../public/shop'; +import { ReqBuy, ResBuy } from "../../shared/protocols/shop/PtlBuy"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + + let index = call.req.buyIndex; + let buyNum = call.req.buyNum || 1; + let shopId = call.req.shopId; + + let rId = shopId == "2" ? call.conn.gud.ghId : call.uid + + let shopData = await G.redis.get('shop', rId, shopId); + let shopItem = shopData.shopItems[index]; + + if (!shopData) return call.error(globalThis.lng.shop_1); + if (!shopItem) return call.error(globalThis.lng.shop_2); + if (shopItem.needVip > call.conn.gud.vip) return call.error(globalThis.lng.shop_3); + if (buyNum < 0) return call.error(globalThis.lng.shop_4); + + shopData.buyNum[index] = shopData.buyNum[index] || 0; + + let vipAdd = 0; + if (shopItem.vipAddbuyNum.length > 0) { + if (shopItem.vipAddbuyNum[call.conn.gud.vip] != undefined) vipAdd += shopItem.vipAddbuyNum[call.conn.gud.vip]; + else vipAdd += shopItem.vipAddbuyNum.last(); + } + if (shopItem.buyNum > 0 && shopData.buyNum[index] + buyNum > shopItem.buyNum + vipAdd) return call.error(globalThis.lng.shop_4); + + let need = shopItem.buyNeed.map(v => { + v.n *= buyNum; + return v; + }); + await PlayerFun.checkNeedIsMeet(call, need); + + shopData.buyNum[index] += buyNum; + shopItem.n *= buyNum; + + await PlayerFun.cutNeed(call, need); + if (shopItem.a == 'shiwu') { + await PlayerFun.addShiwu(call, [{ ...shopItem, t: shopItem.t.toString() }]); + } else { + await PlayerFun.sendPrize(call, [shopItem]); + } + if(shopId == '2'){ + await ShopFun.changeGHShopData(call, shopId, shopData, { buyNum: shopData.buyNum }); + }else { + await ShopFun.changeShopData(rId, shopId, shopData, { buyNum: shopData.buyNum }); + } + + HongDianChange.sendChangeKey(rId, ['gonghuihd', 'taskhd', 'huodonghd', 'patahd']); + // shopId=2,rid=公会id,作用未知,单独给“2”发送个人红点。 + if(shopId == "2") HongDianChange.sendChangeKey(call.uid, ['gonghuihd', 'taskhd', 'huodonghd', 'patahd']); + call.succ({ + prize: [shopItem], + buyNum: shopData.buyNum + }); +} \ No newline at end of file diff --git a/src/api_s2c/shop/ApiOpen.ts b/src/api_s2c/shop/ApiOpen.ts new file mode 100644 index 0000000..09a2c42 --- /dev/null +++ b/src/api_s2c/shop/ApiOpen.ts @@ -0,0 +1,61 @@ +import { ApiCall } from "tsrpc"; +import { ShopFun } from '../../public/shop'; +import { ReqOpen, ResOpen } from "../../shared/protocols/shop/PtlOpen"; +import { PublicShared } from '../../shared/public/public'; + +export default async function (call: ApiCall) { + let shopId = call.req.shopId; + let shopConf = G.gc.shop[shopId]; + + let rId = shopId == "2" ? call.conn.gud.ghId : call.uid + + if (!shopConf) return call.error(globalThis.lng.shop_1); + if (!checkIsOpen(call, shopId)) return call.error(globalThis.lng.shop_5); + if (!await G.redis.get('shop', rId)) await G.redis.set('shop', rId, {}); + if (!await G.redis.get('shop', rId, shopId)) await G.redis.set('shop', rId, shopId, { + buyNum: {}, + shopItems: ShopFun.getShopItems(shopId, call.conn.gud.lv), + useFreeRefreshNum: 0, + useRecoilRefreshNum: 0, + lastAutoRefreshTime: PublicShared.getToDayZeroTime(G.time), + lastFreeRefreshTime: G.time + }); + + let shopData = await G.redis.get('shop', rId, shopId); + + //自动刷新 + if (shopConf.autoRefreshTime > 0 && G.time - shopData.lastAutoRefreshTime >= shopConf.autoRefreshTime) { + await ShopFun.changeShopData(rId, shopId, shopData, { + buyNum: {}, + shopItems: ShopFun.getShopItems(shopId, call.conn.gud.lv), + useFreeRefreshNum: 0, + useRecoilRefreshNum: 0, + lastFreeRefreshTime: G.time, + lastAutoRefreshTime: G.time -(G.time - PublicShared.getToDayZeroTime(G.time)) % shopConf.autoRefreshTime + }); + } + + //免费次数 + if (shopConf.freeRefreshInterval > 0 && G.time - shopData.lastFreeRefreshTime >= shopConf.freeRefreshInterval && shopData.useFreeRefreshNum < 1) { + await ShopFun.changeShopData(rId, shopId, shopData, { + useFreeRefreshNum: 0, + lastFreeRefreshTime: G.time + }); + } + call.succ(shopData); +} + +function checkIsOpen(call: ApiCall, shopId: string | number) { + let openCond = G.gc.shop[shopId].openCond; + + for (let i = 0; i < openCond.length; i++) { + if (i % 2 != 0) continue; + let k = openCond[i]; + let v = openCond[i + 1] as number; + + if (k == 'lv' && call.conn.gud.lv < v) return false; + else if (k == 'day' && PublicShared.getOpenServerDay() < v) return false; + } + + return true; +} \ No newline at end of file diff --git a/src/api_s2c/shop/ApiRefresh.ts b/src/api_s2c/shop/ApiRefresh.ts new file mode 100644 index 0000000..c9f7e00 --- /dev/null +++ b/src/api_s2c/shop/ApiRefresh.ts @@ -0,0 +1,56 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ShopFun } from '../../public/shop'; +import { ReqRefresh, ResRefresh } from "../../shared/protocols/shop/PtlRefresh"; + +export default async function (call: ApiCall) { + + let shopId = call.req.shopId; + let shopConf = G.gc.shop[shopId]; + + let rId = shopId == "2" ? call.conn.gud.ghId : call.uid + + let shopData = await G.redis.get('shop', rId, shopId); + + if (!shopData) return call.error(globalThis.lng.shop_1); + + let change: typeof ShopFun.changeType = {}; + + if (shopConf.freeRefreshNum > 0 && shopData.useFreeRefreshNum < shopConf.freeRefreshNum) { + change.useFreeRefreshNum = shopData.useFreeRefreshNum + 1; + if (shopConf.freeRefreshInterval > 0 && change.useFreeRefreshNum >= shopConf.freeRefreshNum) { + change.lastFreeRefreshTime = G.time; + } + } else if (shopConf.freeRefreshInterval > 0 && G.time - shopData.lastFreeRefreshTime >= shopConf.freeRefreshInterval) { + change.useFreeRefreshNum = 1; + if (change.useFreeRefreshNum >= shopConf.freeRefreshNum) { + change.lastFreeRefreshTime = G.time; + } + } else { + if (shopConf.recoilRefreshNum == 0 && shopConf.vip.length < 1) return call.error(globalThis.lng.shop_6); + let refreshNum = shopConf.recoilRefreshNum; + if (shopConf.vip.length > 0) { + if (shopConf.vip[call.conn.gud.vip] != undefined) refreshNum += shopConf.vip[call.conn.gud.vip]; + else refreshNum += shopConf.vip.last(); + } + if (shopConf.recoilRefreshNum > 0 && shopData.useRecoilRefreshNum >= shopConf.recoilRefreshNum) return call.error(globalThis.lng.shop_7); + if (shopConf.recoilRefreshNeed.length > 0) { + let meet = await PlayerFun.checkNeedByArgs(call, ...shopConf.recoilRefreshNeed); + await PlayerFun.cutNeed(call, [meet.atn]); + } + + change.useRecoilRefreshNum = shopData.useRecoilRefreshNum + 1; + } + + change.buyNum = {}; + change.shopItems = ShopFun.getShopItems(shopId, call.conn.gud.lv); + + await ShopFun.changeShopData(rId, shopId, shopData, change); + + let { buyNum, shopItems, ...ops } = change; + call.succ({ + buyNum: buyNum, + shopItems: shopItems, + ...ops + }); +} \ No newline at end of file diff --git a/src/api_s2c/sign/ApiGetBoxPrize.ts b/src/api_s2c/sign/ApiGetBoxPrize.ts new file mode 100644 index 0000000..5a67c36 --- /dev/null +++ b/src/api_s2c/sign/ApiGetBoxPrize.ts @@ -0,0 +1,43 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { SignFun } from "../../public/sign"; +import { ReqGetBoxPrize, ResGetBoxPrize } from "../../shared/protocols/sign/PtlGetBoxPrize"; +import { ctype } from "../../shared/protocols/sign/type"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let key = call.req.key; + let con = await SignFun.getBoxCon() + + /**参数错误 */ + if (!con[key]) { + return call.error('', { code: -3, message: globalThis.lng.sign_boxprize_1 }) + // return call.error(globalThis.lng.sign_boxprize_1) + } + let mydata = await SignFun.getInfo(call.uid, {ctype: ctype}); + + /**登录天数不足 */ + if (mydata["login"] < key) { + return call.error('', { code: -1, message: globalThis.lng.sign_boxprize_2 }) + // return call.error(globalThis.lng.sign_boxprize_2) + } + /**已经领取 */ + if (mydata["boxgotarr"].indexOf(key) != -1) { + return call.error('', { code: -2, message: globalThis.lng.sign_boxprize_3 }) + // return call.error(globalThis.lng.sign_boxprize_3) + } + + // 设置数据 + let prize = [] + mydata["boxgotarr"].push(key) + await SignFun.setInfo(call.uid, mydata); + prize = await PlayerFun.sendPrize(call, con[key].prize) + + HongDianChange.sendChangeKey(call.uid, ['qiandaohd']) + + let data = { + mydata: mydata, + prize: prize + } + call.succ(data); +} \ No newline at end of file diff --git a/src/api_s2c/sign/ApiGetPrize.ts b/src/api_s2c/sign/ApiGetPrize.ts new file mode 100644 index 0000000..3c6355d --- /dev/null +++ b/src/api_s2c/sign/ApiGetPrize.ts @@ -0,0 +1,46 @@ +import { ApiCall } from "tsrpc"; +import { ReqGetPrize, ResGetPrize } from "../../shared/protocols/sign/PtlGetPrize"; +import { PlayerFun } from '../../public/player'; +import { SignFun } from "../../public/sign"; +import { ctype } from "../../shared/protocols/sign/type"; +import { PublicShared } from "../../shared/public/public"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let idx = call.req.idx; + let _con = await SignFun.getCon() + let changeInfo = await SignFun.getInfo(call.uid, { ctype: ctype }); + let con = _con[changeInfo["key"]] + + /**参数错误 */ + if (!con[idx]) { + return call.error(globalThis.lng.sign_boxprize_1) + } + + /**登录天数不足 */ + if (changeInfo["login"] < idx) { + return call.error(globalThis.lng.sign_boxprize_2) + } + /**已经领取 */ + if (changeInfo["gotarr"].indexOf(idx) != -1) { + return call.error(globalThis.lng.sign_boxprize_3) + } + + // 设置数据 + changeInfo["gotarr"].push(idx) + await SignFun.setInfo(call.uid, changeInfo); + + let prize = con[idx].prize + if (con[idx].vip && call.conn.gud.vip >= con[idx].vip) { + prize = PublicShared.mergePrize(prize.concat(con[idx].prize)) + } + prize = await PlayerFun.sendPrize(call, prize) + + HongDianChange.sendChangeKey(call.uid, ['qiandaohd', 'taskhd', 'huodonghd']) + + let data = { + mydata: changeInfo, + prize: prize + } + call.succ(data); +} \ No newline at end of file diff --git a/src/api_s2c/sign/ApiOpen.ts b/src/api_s2c/sign/ApiOpen.ts new file mode 100644 index 0000000..1e9968a --- /dev/null +++ b/src/api_s2c/sign/ApiOpen.ts @@ -0,0 +1,13 @@ +import { ApiCall } from "tsrpc"; +import { SignFun } from '../../public/sign'; +import { ReqOpen, ResOpen } from "../../shared/protocols/sign/PtlOpen"; +import { signType, ctype } from "../../shared/protocols/sign/type"; + +export default async function (call: ApiCall) { + let mydata: {} = await SignFun.getInfo(call.uid, {ctype: ctype}); + + let data = { + mydata: mydata + } + call.succ(data); +} \ No newline at end of file diff --git a/src/api_s2c/slzd/ApiAim.ts b/src/api_s2c/slzd/ApiAim.ts new file mode 100644 index 0000000..8dfb296 --- /dev/null +++ b/src/api_s2c/slzd/ApiAim.ts @@ -0,0 +1,15 @@ +import { ApiCall } from "tsrpc"; +import { ReqAim, ResAim } from "../../shared/protocols/slzd/PtlAim"; + +export default async function (call: ApiCall) { + + if (call.conn.gud.ghLevel > 2 || call.conn.gud.ghLevel == 0) return call.error(globalThis.lng.slzd_1); + if (!G.gc.slzd.forts[call.req.fort]) return call.error(globalThis.lng.shiwu_6); + + G.mongodb.collection('slzdUser').updateMany( + { ghid: call.conn.gud.ghId }, + { $set: { "data.aim": call.req.fort } } + ); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/slzd/ApiBuyNum.ts b/src/api_s2c/slzd/ApiBuyNum.ts new file mode 100644 index 0000000..0b25bde --- /dev/null +++ b/src/api_s2c/slzd/ApiBuyNum.ts @@ -0,0 +1,38 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqBuyNum, ResBuyNum } from "../../shared/protocols/slzd/PtlBuyNum"; +import { prizeType } from '../../shared/protocols/type'; +import { PublicShared } from '../../shared/public/public'; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let num = Math.floor(call.req.num); + if (num < 1) return call.error(globalThis.lng.kbzz_1); + + let dbData = await G.mongodb.collection('slzdUser').findOne({ uid: call.uid }); + let buyNum = dbData.data.buyFightNum; + let maxNum = G.gc.slzd.maxFightNum; + if (buyNum + num > maxNum) return call.error(globalThis.lng.slzd_2); + + let need: prizeType[] = []; + for (let n = 1; n <= num; n++) { + let cn = buyNum + n; + let conf = G.gc.slzd.buyFightNumNeed.find(c => cn >= c.nums[0] && cn <= c.nums[1]); + need.push(...conf.need); + } + need = PublicShared.mergePrize(need); + + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + + G.mongodb.collection('slzdUser').updateOne( + { uid: call.uid }, + { + $inc: { 'data.buyFightNum': num, 'data.fightNum': num } + } + ); + + HongDianChange.sendChangeKey(call.uid, ['slzdhd']) + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/slzd/ApiFight.ts b/src/api_s2c/slzd/ApiFight.ts new file mode 100644 index 0000000..fb63a90 --- /dev/null +++ b/src/api_s2c/slzd/ApiFight.ts @@ -0,0 +1,88 @@ +import { ApiCall } from "tsrpc"; +import { FightFun } from '../../public/fight'; +import { Rank } from '../../public/rank/rank'; +import { fightResult } from '../../shared/fightControl/fightType'; +import { ReqFight, ResFight } from "../../shared/protocols/slzd/PtlFight"; +import { player } from '../../shared/protocols/user/type'; +import { PublicShared } from "../../shared/public/public"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let dbData = await G.mongodb.collection('slzdUser').findOne({ uid: call.uid }); + let data = dbData.data; + let fort = call.req.fort; + let index = call.req.index; + + if (data.fightNum < 1) return call.error(globalThis.lng.slzd_3); + if (data.enemy[fort]?.[index]?.result == 0) return call.error(globalThis.lng.shiwu_6); + + let _zeroTime = PublicShared.getToWeekMondayZeroTime(G.time) + if (!(_zeroTime + G.gc.slzd.openTime[0] <= G.time && G.time <= _zeroTime + G.gc.slzd.openTime[1])) return call.error('', { code: -1, message: globalThis.lng.slzd_4 }); + + let change: ResFight['change'] = {}; + let my = await call.conn.getDefaultFightData(); + let enemy = data.enemy[fort][index]; + let result = FightFun.fight([my, enemy.data]); + let myAdd = 0; + let selfAdd = 0; + + if (result.winSide == 0) { + myAdd = 5; + selfAdd = -2; + change.winNum = ++data.winNum; + } else { + myAdd = 1; + } + + add(call.conn.gud, fort, myAdd, result); + add(enemy.data.player, fort, selfAdd, result); + + enemy.result = result.winSide; + data.replyCd = G.time; + change.enemy = data.enemy; + change.replyCd = data.replyCd; + change.fightNum = --data.fightNum; + + G.mongodb.collection('slzdUser').updateOne( + { uid: call.uid }, + { $set: { data: data, info: { ...my } }, $inc: { recordFightNum: 1 } } + ); + + HongDianChange.sendChangeKey(call.uid, ['slzdhd']) + + call.succ({ + result: result, + change: change + }); +} + +async function add(player: Partial, fort: string, add: number, result: fightResult) { + if (player.uid.indexOf('npc') != -1) return; + let user = await G.mongodb.collection('slzdUser').findOne({ uid: player.uid }); + let gh = await G.mongodb.collection('slzdGh').findOne({ ghid: player.ghId }); + + let myVal = (user.val?.[fort] || 0) + add <= 0 ? 0 : (user.val?.[fort] || 0) + add; + let ghVal = (gh?.val[fort] || 0) + add <= 0 ? 0 : (gh?.val[fort] || 0) + add; + + G.mongodb.collection('slzdUser').updateOne( + { uid: player.uid }, + { $set: G.mongodb.createTreeObj({ key: 'val.' + fort, val: myVal }) } + ); + + G.mongodb.collection('slzdGh').updateOne( + { ghid: player.ghId }, + { $set: G.mongodb.createTreeObj({ key: 'val.' + fort, val: ghVal }, { key: 'ghName', val: player.ghName }) }, + { upsert: true } + ); + + (Rank.list[`slzd${fort}`] as Rank).addNew( + { + player: { + ghId: player.ghId, + ghName: player.ghName + }, + valArr: [ghVal] + } + ); + FightFun.saveLog(player.ghId, 'slzd', result); +} \ No newline at end of file diff --git a/src/api_s2c/slzd/ApiFightLog.ts b/src/api_s2c/slzd/ApiFightLog.ts new file mode 100644 index 0000000..77a9a88 --- /dev/null +++ b/src/api_s2c/slzd/ApiFightLog.ts @@ -0,0 +1,7 @@ +import { ApiCall } from "tsrpc"; +import { FightFun } from '../../public/fight'; +import { ReqFightLog, ResFightLog } from "../../shared/protocols/slzd/PtlFightLog"; + +export default async function (call: ApiCall) { + call.succ(await FightFun.readLog(call.conn.gud.ghId, 'slzd')); +} \ No newline at end of file diff --git a/src/api_s2c/slzd/ApiMyRank.ts b/src/api_s2c/slzd/ApiMyRank.ts new file mode 100644 index 0000000..0615772 --- /dev/null +++ b/src/api_s2c/slzd/ApiMyRank.ts @@ -0,0 +1,16 @@ +import { ApiCall } from "tsrpc"; +import { ReqMyRank, ResMyRank } from "../../shared/protocols/slzd/PtlMyRank"; + +export default async function (call: ApiCall) { + + let arr = await G.mongodb.collection('slzdUser').find({ ghid: call.conn.gud.ghId }).toArray(); + + call.succ({ + rankList: arr.map(a => { + return { + player: a.info.player, + valArr: [a.val, a.recordFightNum] + }; + }) + }); +} \ No newline at end of file diff --git a/src/api_s2c/slzd/ApiOpen.ts b/src/api_s2c/slzd/ApiOpen.ts new file mode 100644 index 0000000..3d1095b --- /dev/null +++ b/src/api_s2c/slzd/ApiOpen.ts @@ -0,0 +1,58 @@ +import { ApiCall } from "tsrpc"; +import { ReqOpen, ResOpen } from "../../shared/protocols/slzd/PtlOpen"; +import { PublicShared } from '../../shared/public/public'; +import { SlzdShared } from '../../shared/public/slzd'; + +export default async function (call: ApiCall) { + // 查询特产库 + let stashObj:k_v = await SlzdShared.getStash() + let dbData = await G.mongodb.collection('slzdUser').findOne({ uid: call.uid }); + let data = dbData?.data; + + if (!data || PublicShared.getToDayZeroTime() > data.refreshTime) { + let GHdata = await call.conn.gonghui; + if (!data) { + var hz = await G.mongodb.collection('slzdUser').findOne({ uid: GHdata.data.createPlayer.uid }); + } + + data = { + aim: hz?.data?.aim || '', + winNum: 0, + winRec: [], + fightNum: G.gc.slzd.ctorFightNum, + buyFightNum: 0, + replyCd: G.time, + refreshTime: G.time, + useRefreshNum: 0, + enemy: data?.enemy || {} + }; + + + G.mongodb.collection('slzdUser').updateOne( + { uid: call.uid }, + { + $set: { + ghid: call.conn.gud.ghId, + data: data, + info: await call.conn.getDefaultFightData(), + val: dbData?.val || {}, + recordFightNum: 0 + } + }, + { upsert: true } + ); + } else if (data.fightNum < G.gc.slzd.maxFightNum && G.time - data.refreshTime > G.gc.slzd.replyCd) { + let addNum = Math.floor((G.time - data.refreshTime) / G.gc.slzd.replyCd); + let maxAddNum = G.gc.slzd.maxFightNum - data.fightNum; + data.fightNum += addNum > maxAddNum ? maxAddNum : addNum; + data.replyCd = G.time; + G.mongodb.collection('slzdUser').updateOne({ uid: call.uid }, { $set: { 'data.fightNum': data.fightNum, 'data.replyCd': data.replyCd } }); + } + + let { refreshTime, ...ops } = data; + call.succ({ + ...ops, + stashObj, + soltLog: (await G.mongodb.collection('slzdGh').findOne({ ghid: call.conn.gud.ghId }))?.soltLog || [] + }); +} \ No newline at end of file diff --git a/src/api_s2c/slzd/ApiOpenFort.ts b/src/api_s2c/slzd/ApiOpenFort.ts new file mode 100644 index 0000000..043b018 --- /dev/null +++ b/src/api_s2c/slzd/ApiOpenFort.ts @@ -0,0 +1,29 @@ +import { ApiCall } from "tsrpc"; +import { ReqOpenFort, ResOpenFort } from "../../shared/protocols/slzd/PtlOpenFort"; +import { getEnemy } from './fun'; + +export default async function (call: ApiCall) { + if (!G.gc.slzd.forts[call.req.fort]) return call.error(globalThis.lng.shiwu_6); + let fort = call.req.fort; + let dbData = await G.mongodb.collection('slzdUser').findOne({ uid: call.uid }); + + if (!dbData.data.enemy[fort]) { + let enemy = (await getEnemy(call.conn.gud, fort)).map(e => { + return { + data: e, + result: null + }; + }); + + G.mongodb.collection('slzdUser').updateOne( + { uid: call.uid }, + { $set: G.mongodb.createTreeObj({ key: 'data.enemy.' + fort, val: enemy }) } + ); + + call.succ({ + enemy: enemy + }); + } else { + call.succ({}); + } +} \ No newline at end of file diff --git a/src/api_s2c/slzd/ApiRec.ts b/src/api_s2c/slzd/ApiRec.ts new file mode 100644 index 0000000..e9b09b2 --- /dev/null +++ b/src/api_s2c/slzd/ApiRec.ts @@ -0,0 +1,24 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqRec, ResRec } from "../../shared/protocols/slzd/PtlRec"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let dbData = await G.mongodb.collection('slzdUser').findOne({ uid: call.uid }); + + if (dbData.data.winRec.includes(call.req.index)) return call.error(globalThis.lng.slzd_5); + if (dbData.data.winNum < G.gc.slzd.fightWinNumPrize[call.req.index].total) return call.error(globalThis.lng.slzd_6); + + await PlayerFun.sendPrize(call, G.gc.slzd.fightWinNumPrize[call.req.index].prize); + + await G.mongodb.collection('slzdUser').updateOne( + { uid: call.uid }, + { $set: { 'data.winRec': [...dbData.data.winRec, call.req.index] } } + ); + + HongDianChange.sendChangeKey(call.uid, ['slzdhd']) + + call.succ({ + prize: G.gc.slzd.fightWinNumPrize[call.req.index].prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/slzd/ApiRefresh.ts b/src/api_s2c/slzd/ApiRefresh.ts new file mode 100644 index 0000000..f988a54 --- /dev/null +++ b/src/api_s2c/slzd/ApiRefresh.ts @@ -0,0 +1,31 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqRefresh, ResRefresh } from "../../shared/protocols/slzd/PtlRefresh"; +import { getEnemy } from './fun'; + +export default async function (call: ApiCall) { + if (!G.gc.slzd.forts[call.req.fort]) return call.error(globalThis.lng.shiwu_6); + let fort = call.req.fort; + let dbData = await G.mongodb.collection('slzdUser').findOne({ uid: call.uid }); + + if (dbData.data.useRefreshNum >= G.gc.slzd.refreshNum) { + await PlayerFun.checkNeedIsMeet(call, G.gc.slzd.refreshNeed); + await PlayerFun.cutNeed(call, G.gc.slzd.refreshNeed); + } + + let enemy = (await getEnemy(call.conn.gud, fort)).map(e => { + return { + data: e, + result: null + }; + }); + + G.mongodb.collection('slzdUser').updateOne( + { uid: call.uid }, + { $set: G.mongodb.createTreeObj({ key: 'data.enemy.' + fort, val: enemy }, { key: 'data.useRefreshNum', val: dbData.data.useRefreshNum + 1 }) } + ); + + call.succ({ + enemy: enemy + }); +} \ No newline at end of file diff --git a/src/api_s2c/slzd/ApiSlot.ts b/src/api_s2c/slzd/ApiSlot.ts new file mode 100644 index 0000000..e7a622e --- /dev/null +++ b/src/api_s2c/slzd/ApiSlot.ts @@ -0,0 +1,26 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqSlot, ResSlot } from "../../shared/protocols/slzd/PtlSlot"; +import { PublicShared } from '../../shared/public/public'; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + + await PlayerFun.checkNeedIsMeet(call, G.gc.slzd.slotNeed); + await PlayerFun.cutNeed(call, G.gc.slzd.slotNeed); + + let prize = PublicShared.randomDropGroup(G.gc.slzd.slotDrop); + + await PlayerFun.sendPrize(call, prize); + + HongDianChange.sendChangeKey(call.uid, ['slzdhd']) + + call.succ({ + prize: prize + }); + + G.mongodb.collection('slzdGh').updateOne( + { ghid: call.conn.gud.ghId }, + { $push: { soltLog: { $each: [{ name: call.conn.gud.name, prize: prize }], $slice: -30 } } } + ); +} \ No newline at end of file diff --git a/src/api_s2c/slzd/fun.ts b/src/api_s2c/slzd/fun.ts new file mode 100644 index 0000000..4d71340 --- /dev/null +++ b/src/api_s2c/slzd/fun.ts @@ -0,0 +1,31 @@ +import {formatNpcData} from '../../shared/fightControl/fightFun'; +import {joinFightData} from '../../shared/fightControl/fightType'; +import {player} from '../../shared/protocols/user/type'; + +function getNpc(lv: number, fort: string) { + let rang = G.gc.slzd.forts[fort].npc.find(v => lv >= v.lvs[0] && lv <= v.lvs[1]); + return formatNpcData(rang.npcs.random()); +} + +export async function getEnemy(player: player, fort: string) { + let enemy: joinFightData[] = []; + + let roles = await G.mongodb.collection('slzdUser').aggregate([ + {$match: {uid: {$ne: player.uid}, ghid: {$ne: player.ghId}, val: {[fort]: {$ne: undefined}}}}, + {$project: { + _id: 0, + info: 1 + }}, + {$sample: {size: 5}} + ]).toArray(); + + for (let index = 0; index < 6; index++) { + if (!roles[index]) { + enemy.push(getNpc(player.lv, fort)); + } else { + enemy.push(roles[index].info); + } + } + + return enemy; +} \ No newline at end of file diff --git a/src/api_s2c/tanxian/ApiEvent.ts b/src/api_s2c/tanxian/ApiEvent.ts new file mode 100644 index 0000000..b1ea18f --- /dev/null +++ b/src/api_s2c/tanxian/ApiEvent.ts @@ -0,0 +1,68 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { TanXianFun } from '../../public/tanxian'; +import { ReqEvent, ResEvent } from "../../shared/protocols/tanxian/PtlEvent"; +import { prizeType } from '../../shared/protocols/type'; +import { PublicShared } from '../../shared/public/public'; + +export default async function (call: ApiCall) { + let data = await TanXianFun.getData(call, false); + if (!data?.eventTime || !G.gc.tanxian[call.conn.gud.mapId]) return call.errorCode(-1); + + let seconds = G.time - data.eventTime; + if (seconds < G.gc.tanxian_com.eventCd) return call.errorCode(-2); + let maxSeconds = 20 * 3600; + if (seconds > maxSeconds) seconds = maxSeconds; + + let eventTime = G.time; + let prizeData = getEventPrize( call.conn.gud.lv,seconds, call.conn.gud.mapId, call.conn.gud.wxcLv?.lv); + + await PlayerFun.sendPrize(call, prizeData.prize); + TanXianFun.changeData(call, { eventTime: eventTime }); + call.succ({ + prize: prizeData.prize, + iNum: prizeData.iNum, + aNum: prizeData.aNum, + eventTime: eventTime + }); +} + +export function getEventPrize(plerLv: number, seconds: number, mapId: number, wxcLv = 1): { + prize: prizeType[]; + iNum: number, + aNum: number, +} { + let prize: prizeType[] = []; + let num = Math.floor(seconds / G.gc.tanxian_com.eventCd); + let conf = G.gc.tanxian[mapId || 1]; + let cutNum = 0; + let drop = [...conf.drop]; + // 根据等级查询饰品掉落组 + let shiwuConf = G.gc.tanxian_shiwu + let shiwuDiaoluo = Object.values(shiwuConf).filter(v => v.level[0] <= plerLv && v.level[1] >= plerLv).map(v => v.guajidiaoluo) + // 随机插入饰物 + if(shiwuDiaoluo.length > 0) { + drop.push(shiwuDiaoluo.sort(() => 0.5 - Math.random()).shift()) + } + if (G.gc.weixiuchang_zz[wxcLv || 1]) { + wxcLv = wxcLv == 0 ? 1 : wxcLv + drop.push(G.gc.weixiuchang_zz[wxcLv].drop); + } + + for (let i = 0; i < num; i++) { + let c = PublicShared.randomDropAny(G.gc.tanxian_com.event); + if (c.type == 'item') { + cutNum++; + prize.push(...PublicShared.randomDropGroup(drop.random())); + } else { + prize.push({ a: "attr", t: 'jinbi', n: Math.floor(conf.base * conf.round.random()) }); + } + } + + prize = PublicShared.mergePrize(prize); + return { + prize: prize, + iNum: cutNum, + aNum: num - cutNum + }; +} \ No newline at end of file diff --git a/src/api_s2c/tanxian/ApiFastGuaJi.ts b/src/api_s2c/tanxian/ApiFastGuaJi.ts new file mode 100644 index 0000000..82e0f4b --- /dev/null +++ b/src/api_s2c/tanxian/ApiFastGuaJi.ts @@ -0,0 +1,53 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { TanXianFun } from '../../public/tanxian'; +import { TeQuanFun } from "../../public/tequan"; +import { ReqFastGuaJi, ResFastGuaJi } from "../../shared/protocols/tanxian/PtlFastGuaJi"; +import { TanXianShared } from '../../shared/public/tanxian'; +import { event_dldh_addPrize } from '../event/diaoluoduihuan/ApiOpen'; +import { HongDianChange } from "../hongdian/fun"; +import { getEventPrize } from './ApiEvent'; + +export default async function (call: ApiCall) { + + const data = await TanXianFun.getData(call); + const maxNum = await TanXianFun.getFastGuaJiNum(call); + if (data.useFastGuaJiNum >= maxNum) return call.error(globalThis.lng.tanxian_1); + // 特权免费次数 + let tqFree = await TeQuanFun.getTxFreeNum(call) + let freeNum = G.gc.tanxian_com.fastGuaJiFreeNum + tqFree + + // let notFree = data.useFastGuaJiNum >= freeNum && ((data?.zztqfreeNum || 0) >= tqFree && tqFree) && (data?.useFreeGuaJiNum || 0) <= freeNum + let notFree = (data?.useFreeGuaJiNum || 0) >= freeNum + if (notFree) { + let num = G.gc.tanxian_com.fastGuaJiNeed[data.useFastGuaJiNum - freeNum ] || 0; + let need = [{ a: 'attr', t: 'rmbmoney', n: num ? num : G.gc.tanxian_com.fastGuaJiNeed[G.gc.tanxian_com.fastGuaJiNeed.length - 1] }]; + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + } + let prize = TanXianShared.getGuaJiPrize(G.gc.tanxian_com.fastGuaJiTime, call.conn.gud.mapId, false, { + shoucangpin: call.conn.gud.shoucangping + }); + + let eventPrize = getEventPrize(call.conn.gud.lv, G.gc.tanxian_com.fastGuaJiTime, call.conn.gud.mapId, call.conn.gud.wxcLv?.lv); + let _p = [].concat(prize.prize, prize.dlz, eventPrize.prize); + // 过滤物品数量为0的道具。 + _p = _p.filter(x => x.n > 0) + // await event_dldh_addPrize(_p, call, G.gc.tanxian_com.fastGuaJiTime); + await PlayerFun.sendPrize(call, _p); + + let setData = { useFastGuaJiNum: data.useFastGuaJiNum + 1, useFreeGuaJiNum: (data?.useFreeGuaJiNum || 0) + (notFree ? 0 : 1)} + if ((data?.zztqfreeNum || 0) < tqFree && tqFree) setData["zztqfreeNum"] = tqFree + TanXianFun.changeData(call, setData); + + (await call.conn.gonghui)?.addExp(20); + + HongDianChange.sendChangeKey(call.uid, ['taskhd', 'huodonghd']); + + call.succ({ + prize: _p, + iNum: eventPrize.iNum, + aNum: eventPrize.aNum, + useFastGuaJiNum: data.useFastGuaJiNum + 1 + }); +} \ No newline at end of file diff --git a/src/api_s2c/tanxian/ApiFight.ts b/src/api_s2c/tanxian/ApiFight.ts new file mode 100644 index 0000000..4e92702 --- /dev/null +++ b/src/api_s2c/tanxian/ApiFight.ts @@ -0,0 +1,44 @@ +import { filter } from "mathjs"; +import { ApiCall } from "tsrpc"; +import { FightFun } from '../../public/fight'; +import { PlayerFun } from '../../public/player'; +import { Rank } from '../../public/rank/rank'; +import { fightResult } from '../../shared/fightControl/fightType'; +import { ReqFight, ResFight } from "../../shared/protocols/tanxian/PtlFight"; +import { PublicShared } from '../../shared/public/public'; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + const conf = G.gc.tanxian[call.conn.gud.mapId + 1]; + + if (!conf) return call.error(globalThis.lng.tanxian_2); + if (call.conn.gud.lv < conf.needLv) return call.error(globalThis.lng.tanxian_3); + + // 增加 推关饰品 + let _addDrop = Object.values(G.gc.tanxian_shiwu).filter(ele => { + return ele.level[0] <= call.conn.gud.lv && call.conn.gud.lv <= ele.level[1] + }) + let _passPrize = conf.passPrize.map(_n => { return _n }) + _passPrize.push(_addDrop[0].diaoluo) + + let prize = _passPrize.map(id => PublicShared.randomDropGroup(id)).reduce((a, b) => a.concat(b)); + let result: fightResult = await FightFun.fightNpc(call, conf.npcId, 'tanxian'); + + if (result.winSide == 0) { + await PlayerFun.addAttr(call, { mapId: call.conn.gud.mapId + 1 }); + await PlayerFun.sendPrize(call, prize); + + Rank.list['tanxian'].addNew({ + player: call.conn.gud, + valArr: [call.conn.gud.mapId] + }); + + (await call.conn.gonghui)?.addExp(20); + } + HongDianChange.sendChangeKey(call.uid, ['taskhd', 'huodonghd', 'jijinhd', 'huobanzhaomuhd']) + + call.succ({ + prize: result.winSide == 0 ? prize : [], + result: result + }); +} \ No newline at end of file diff --git a/src/api_s2c/tanxian/ApiGuaJi.ts b/src/api_s2c/tanxian/ApiGuaJi.ts new file mode 100644 index 0000000..ed28bb1 --- /dev/null +++ b/src/api_s2c/tanxian/ApiGuaJi.ts @@ -0,0 +1,27 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { TanXianFun } from '../../public/tanxian'; +import { ReqGuaJi, ResGuaJi } from "../../shared/protocols/tanxian/PtlGuaJi"; +import { TanXianShared } from '../../shared/public/tanxian'; +import { event_dldh_addPrize } from '../event/diaoluoduihuan/ApiOpen'; + +export default async function (call: ApiCall) { + + let data = await TanXianFun.getData(call); + + if (G.time - data.lastGuaJiTime < G.gc.tanxian_com.guaJiPrizeInterval) return call.error(globalThis.lng.tanxian_4); + + let prize = TanXianShared.getGuaJiPrize(G.time - data.lastGuaJiTime, call.conn.gud.mapId, false, { + shoucangpin: call.conn.gud.shoucangping + }); + + let _p = [].concat(prize.prize, prize.dlz); + await event_dldh_addPrize(_p, call, G.time - data.lastGuaJiTime); + await PlayerFun.sendPrize(call, _p); + TanXianFun.changeData(call, { lastGuaJiTime: G.time }); + + call.succ({ + prize: _p, + lastGuaJiTime: G.time + }); +} \ No newline at end of file diff --git a/src/api_s2c/tanxian/ApiOpen.ts b/src/api_s2c/tanxian/ApiOpen.ts new file mode 100644 index 0000000..00dba0a --- /dev/null +++ b/src/api_s2c/tanxian/ApiOpen.ts @@ -0,0 +1,21 @@ +import { ApiCall } from "tsrpc"; +import { TanXianFun } from '../../public/tanxian'; +import { ReqOpen, ResOpen } from "../../shared/protocols/tanxian/PtlOpen"; +import { PublicShared } from '../../shared/public/public'; +import {TeQuanFun} from "../../public/tequan"; + +export default async function (call: ApiCall) { + let data = await TanXianFun.getData(call, call.req.cache); + + if (PublicShared.getToDayZeroTime() > data.resetTime) { + data.useFastGuaJiNum = 0; + data.useFreeGuaJiNum = 0; + TanXianFun.changeData(call, { useFastGuaJiNum: 0, useFreeGuaJiNum:0, resetTime: G.time }); + } + + call.succ({ + zztqfreeNum: await TeQuanFun.getTxFreeNum(call), + ...data, + fastGuaJiNum: await TanXianFun.getFastGuaJiNum(call) + }); +} \ No newline at end of file diff --git a/src/api_s2c/tanxian/ApiReceive.ts b/src/api_s2c/tanxian/ApiReceive.ts new file mode 100644 index 0000000..226e6e2 --- /dev/null +++ b/src/api_s2c/tanxian/ApiReceive.ts @@ -0,0 +1,23 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { TanXianFun } from '../../public/tanxian'; +import { ReqReceive, ResReceive } from "../../shared/protocols/tanxian/PtlReceive"; + +export default async function (call: ApiCall) { + + const data = await TanXianFun.getData(call); + const conf = G.gc.tanxian_tgjl[call.req.id]; + + if (call.conn.gud.mapId < conf.mapId) return call.error(globalThis.lng.tanxian_5); + if (data.receivePrize.includes(call.req.id)) return call.error(globalThis.lng.tanxian_6); + + let newReceivePrize: string[] = [].concat(data.receivePrize, call.req.id); + + await PlayerFun.sendPrize(call, conf.prize); + await TanXianFun.changeData(call, { receivePrize: newReceivePrize }); + + call.succ({ + prize: conf.prize, + receivePrize: newReceivePrize + }); +} \ No newline at end of file diff --git a/src/api_s2c/task/ApiAllFinsh.ts b/src/api_s2c/task/ApiAllFinsh.ts new file mode 100644 index 0000000..eee896d --- /dev/null +++ b/src/api_s2c/task/ApiAllFinsh.ts @@ -0,0 +1,53 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { TaskFun } from "../../public/task"; +import { ReqAllFinsh, ResAllFinsh } from "../../shared/protocols/task/PtlAllFinsh"; +import { prizeType } from "../../shared/protocols/type"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let _type = call.req.type; + let _tasks = await TaskFun.getUserTaksList(call.uid, { type: _type, finish: 0 }) + + let newTask: {}[] = [] + let _finishTaks: number[] = [] + let _prize: prizeType[] = [] + for (let index = 0; index < _tasks.length; index++) { + const _task = _tasks[index]; + let _taskCon = await TaskFun.getTaskConByType(_task["type"], _task["taskid"]) + if (!_taskCon || Object.keys(_taskCon).length == 0) { + // 策划改了任务 找不到 自动删除任务 + await G.mongodb.collection("task").deleteMany({ uid: call.uid, taskid: _task["taskid"] }); + continue + } + // 任务未完成 + if (_task["nval"] < _taskCon["pval"]) continue + _finishTaks.push(_task["taskid"]) + Object.assign(_prize, _taskCon["prize"]) + + // 检测后续任务生成 + let _tmp = {} + if (_taskCon["followtask"]) { + _tmp = await TaskFun.setTaskInfo(call, _taskCon["followtask"], _task as any) + if (_tmp["_id"]) delete _tmp["_id"] + newTask.push(_tmp) + } + } + + // 无奖励可领取 + if (_prize.length == 0) { + return call.error('', { code: -1, message: globalThis.lng.task_finsh_5 }) + } + + // 设置数据 + await TaskFun.setTask(call.uid, { type: _type, taskid: { $in: _finishTaks } }, { finish: 1 }) + let prize = await PlayerFun.sendPrize(call, _prize) + + let data = { + finishtask: _finishTaks, + prize: prize, + newtask: newTask + } + HongDianChange.sendChangeKey(call.uid, ['taskhd', 'huodonghd']) + call.succ(data); +} \ No newline at end of file diff --git a/src/api_s2c/task/ApiFinsh.ts b/src/api_s2c/task/ApiFinsh.ts new file mode 100644 index 0000000..b7b4cb1 --- /dev/null +++ b/src/api_s2c/task/ApiFinsh.ts @@ -0,0 +1,59 @@ +import {ApiCall} from "tsrpc"; +import {PlayerFun} from '../../public/player'; +import {TaskFun} from "../../public/task"; +import {ReqFinsh, ResFinsh} from "../../shared/protocols/task/PtlFinsh"; +import {HongDianChange} from "../hongdian/fun"; +import {taskType} from "../../shared/protocols/task/type"; + +export default async function (call: ApiCall) { + let taskid = call.req.taskid; + let _tasks = await TaskFun.getUserTaksList(call.uid, {taskid: taskid}) + let _task + // 无此id任务 + if (_tasks.length == 0) { + return call.error('', {code: -1, message: globalThis.lng.task_finsh_1}) + } else { + _task = _tasks[0] + } + + // 任务配置错误 + let _con = await TaskFun.getTaskConByType(_task["type"], taskid) + if (!_con || Object.keys(_con).length == 0) { + // 策划改了任务 找不到 自动删除任务 + await G.mongodb.collection("task").deleteMany({uid: call.uid, taskid: _task["taskid"]}); + HongDianChange.sendChangeKey(call.uid, ['taskhd', 'huodonghd']) + return call.error('', {code: -2, message: globalThis.lng.task_finsh_2}) + } + + // 任务已完成 + if (_task["finish"]) { + return call.error('', {code: -3, message: globalThis.lng.task_finsh_3}) + } + + // 任务未完成 + if (_task["nval"] < _con["pval"]) { + return call.error('', {code: -4, message: globalThis.lng.task_finsh_4}) + } + + // 检测生成后续任务 + let _follow = _con["followtask"] + let newTask: taskType + if (_follow) { + // 检测生成新任务 + newTask = await TaskFun.setTaskInfo(call, _follow, _task) + } + // 设置数据 + await TaskFun.setTask(call.uid, {taskid: taskid}, {finish: 1}) + let _prize = await PlayerFun.sendPrize(call, _con["prize"]) + _task["finish"] = 1 + + let data = { + task: _task, + prize: _prize, + newtask: newTask + } + + // G.server.sendMsgByUid(call.uid, 'msg_s2c/TaskChange', newTask) + HongDianChange.sendChangeKey(call.uid, ['taskhd', 'huodonghd']) + call.succ(data); +} \ No newline at end of file diff --git a/src/api_s2c/task/ApiOpen.ts b/src/api_s2c/task/ApiOpen.ts new file mode 100644 index 0000000..d41e6c8 --- /dev/null +++ b/src/api_s2c/task/ApiOpen.ts @@ -0,0 +1,25 @@ +import { ApiCall } from "tsrpc"; +import { Wjjl } from "../../module/collection_wjjl"; +import { TaskFun } from "../../public/task"; +import { ReqOpen, ResOpen } from "../../shared/protocols/task/PtlOpen"; + +export default async function (call: ApiCall) { + let _types = call.req.type + let ischk = 0 + if (_types.indexOf(1) != -1) ischk = 1 + // 所有未完成的任务 + let _taskInfo: {} = await TaskFun.getFinishByTtype(call, _types, { finish: 0 }, ischk = ischk); + // 任务 129 为自减任务 + let _rank = await Wjjl.getVal(call.uid, "jjc_rank") + // 检查数据是否未初始化 + let reInit = Object.keys(_taskInfo).filter( key => (!_taskInfo[key] || _taskInfo[key].length == 0) && ~~key < 5) + for(let key of reInit){ + // 初始化 + _taskInfo[key] = await TaskFun.reInitTask(call, key) + } + let data = { + taskinfo: _taskInfo, + jjcrank: _rank + } + call.succ(data); +} \ No newline at end of file diff --git a/src/api_s2c/user/ApiCDKEY.ts b/src/api_s2c/user/ApiCDKEY.ts new file mode 100644 index 0000000..2c839b8 --- /dev/null +++ b/src/api_s2c/user/ApiCDKEY.ts @@ -0,0 +1,6 @@ +import { ApiCall } from "tsrpc"; +import { ReqCDKEY, ResCDKEY } from "../../shared/protocols/user/PtlCDKEY"; + +export default async function (call: ApiCall) { + call.succ({ prize: [] }); +} \ No newline at end of file diff --git a/src/api_s2c/user/ApiChangeInfo.ts b/src/api_s2c/user/ApiChangeInfo.ts new file mode 100644 index 0000000..4d221d3 --- /dev/null +++ b/src/api_s2c/user/ApiChangeInfo.ts @@ -0,0 +1,36 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqChangeInfo, ResChangeInfo } from "../../shared/protocols/user/PtlChangeInfo"; +import { ResLogin } from '../../shared/protocols/user/PtlLogin'; +import { UserShared } from '../../shared/public/user'; + +export default async function (call: ApiCall) { + + if (call.req.type == 'model' && !call.req.pos) return call.error(globalThis.lng.shiwu_6); + + const active = (await G.mongodb.collection('playerInfo', 'playerInfo').findOne({ uid: call.uid, type: 'playerInfo' }))?.active || {}; + const fmtId = UserShared.getInfoId(call.req.type, call.req.id, call.req.pos || ''); + const isMeet = UserShared.chechIsActive(fmtId, { lv: call.conn.gud.lv, vip: call.conn.gud.vip, lsyx: call.conn.lshd.hero, active: active }); + + if (!isMeet && call.req.type != 'headFrame' && call.req.type != 'chatFrame') return call.error(globalThis.lng.user_1); + + const change: Partial = {}; + + if (call.req.type == 'model') { + let d = JSON.parse(JSON.stringify(call.conn.gud.model)); + d[call.req.pos] = { + id: call.req.id, + time: active[fmtId] || -1 + }; + change.model = d; + } else { + change[call.req.type] = { + id: call.req.id, + time: active[fmtId] || -1 + }; + } + + await PlayerFun.addAttr(call, change); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/user/ApiChangeName.ts b/src/api_s2c/user/ApiChangeName.ts new file mode 100644 index 0000000..9d7da3e --- /dev/null +++ b/src/api_s2c/user/ApiChangeName.ts @@ -0,0 +1,29 @@ +import {ApiCall} from "tsrpc"; +import {PlayerFun} from "../../public/player"; +import {ReqChangeName, ResChangeName} from "../../shared/protocols/user/PtlChangeName"; +import {randomUUID} from "crypto"; + +export default async function (call: ApiCall) { + let _name = call.req.name; + + // 名称已被使用 + let _user = await G.mongodb.collection('user').findOne({"name": _name}); + if (_user) { + if (_name.slice(0, 6) == 'player') { + _name = `player${randomUUID().slice(-6)}` + } else return call.errorCode(-1); + } + + let num = call.conn.gud.changeNameNum || 0; + let need = G.gc.common.usercom.changename[num ? num - 1 : 0] || G.gc.common.usercom.changename.slice(-1)[0]; + + if (need.n > 1) { + await PlayerFun.checkNeedIsMeet(call, [need]); + await PlayerFun.cutNeed(call, [need]); + } + await PlayerFun.addAttr(call, {name: _name, changeNameNum: num + 1}); + + call.succ({}); + + G.emit('PLAYER_CHANGE_NAME', call.conn.gud, _name); +} \ No newline at end of file diff --git a/src/api_s2c/user/ApiFight.ts b/src/api_s2c/user/ApiFight.ts new file mode 100644 index 0000000..4e2ee55 --- /dev/null +++ b/src/api_s2c/user/ApiFight.ts @@ -0,0 +1,21 @@ +import { ApiCall } from "tsrpc"; +import { FightFun } from '../../public/fight'; +import { ReqFight, ResFight } from "../../shared/protocols/user/PtlFight"; + +export default async function (call: ApiCall) { + + let my = await FightFun.getPlayerFightData(call.uid); + + if (Object.keys(my.roles).length < 1) return call.error('', { code: -1, message: globalThis.lng.user_2 }); + + let he = await FightFun.getPlayerFightData(call.req.uid); + + if (!he) return call.error('', { code: -2, message: globalThis.lng.user_3 }); + if (Object.keys(he.roles).length < 1) return call.error('', { code: -3, message: globalThis.lng.user_4 }); + + let result = FightFun.fight([my, he]); + + call.succ({ + result: result + }); +} \ No newline at end of file diff --git a/src/api_s2c/user/ApiGetInfo.ts b/src/api_s2c/user/ApiGetInfo.ts new file mode 100644 index 0000000..ad8f062 --- /dev/null +++ b/src/api_s2c/user/ApiGetInfo.ts @@ -0,0 +1,12 @@ +import { ApiCall } from "tsrpc"; +import { FightFun } from '../../public/fight'; +import { ReqGetInfo, ResGetInfo } from "../../shared/protocols/user/PtlGetInfo"; + +export default async function (call: ApiCall) { + + if (await G.mongodb.collection('user').findOne({ uid: call.req.uid }) == null) return call.error(globalThis.lng.user_3); + + call.succ({ + ... await FightFun.getPlayerFightData(call.req.uid) + }); +} \ No newline at end of file diff --git a/src/api_s2c/user/ApiInfoOpen.ts b/src/api_s2c/user/ApiInfoOpen.ts new file mode 100644 index 0000000..6e2f77f --- /dev/null +++ b/src/api_s2c/user/ApiInfoOpen.ts @@ -0,0 +1,6 @@ +import { ApiCall } from "tsrpc"; +import { ReqInfoOpen, ResInfoOpen } from "../../shared/protocols/user/PtlInfoOpen"; + +export default async function (call: ApiCall) { + call.succ((await G.mongodb.collection('playerInfo', 'playerInfo').findOne({ uid: call.uid, type: 'playerInfo' }))?.active || {}); +} \ No newline at end of file diff --git a/src/api_s2c/user/ApiLogin.ts b/src/api_s2c/user/ApiLogin.ts new file mode 100644 index 0000000..3574bbc --- /dev/null +++ b/src/api_s2c/user/ApiLogin.ts @@ -0,0 +1,180 @@ +import {ApiCall, BaseConnection} from "tsrpc"; +import {FriendManage} from '../../public/friend/manage'; +import {GHManage} from '../../public/gonghui/manage'; +import {HeroFun} from "../../public/hero"; +import {PlayerFun} from '../../public/player'; +import {TaskFun} from "../../public/task"; +import {defaultUserAppend, UserFun} from '../../public/user'; +import {ReqLogin, ResLogin} from "../../shared/protocols/user/PtlLogin"; +import {setUidProcessId} from "../../clusterUtils"; + +//登陆排队中的conn.id +let queueLogin = [ + //{call:call,binduid,binduid,conn:conn} +] +//排队间隔 ms +let delay = 1000; + +setInterval(function () { + doLoginQueue(); +}, delay); + +//获取排队顺序 +function getQueueIndex(bindUid) { + for (let i = 0; i < queueLogin.length; i++) { + if (queueLogin[i].bindUid == bindUid) { + return i; + } + } + return null; +} + +//conn断开了链接,取消排队 +export function unQueueByConn(conn: BaseConnection) { + //从queueLogin删除指定conn + for (let i = 0; i < queueLogin.length; i++) { + if (queueLogin[i].conn == conn) { + queueLogin.splice(i, 1); + break; + } + } +} + +//默认入口 +export default async function (call: ApiCall) { + let bindUid = call.req.bindUid; + let index = getQueueIndex(bindUid); + if (index == null) { + //增加到排队队列 + queueLogin.push({call: call, bindUid: bindUid, conn: call.conn}); + } else { + queueLogin[index].call = call; + queueLogin[index].conn = call.conn; + } + //需要排队的时间 + let needTime = delay * queueLogin.length; + + //需要等待的时间 + call.conn.sendMsg('msg_s2c/LoginQueue', { + delay: needTime + }) +} + +//每N时间消费1个排队 +async function doLoginQueue() { + let data = queueLogin.shift(); + if (!data) return; + console.log("排队登陆中,剩余数量", queueLogin.length); + return await doLogin(data.call); +} + +async function doLogin(call: ApiCall) { + // 异常空数据检测 + // 刺鸟:不应该在这里检查,如果一定要做,也应该是定时或者启动时 + //await UserFun.checkUidOrName() + + //todo 合法性检测,现在似乎是无条件登陆? + + // 查询账号 + let user = await G.mongodb.collection('user').findOne({bindUid: call.req.bindUid, sid: call.req.sid}); + let {_id, ...gud} = user ? user : await UserFun.createUser(call.conn, call.req.bindUid, call.req.sid); + + await G.redis.set('user', gud.uid, gud); + + //记录玩家所在的进程 + setUidProcessId(gud.uid); + + let obj = await UserFun.check(gud, call.req); + call.conn.onlineTime = G.time; + call.conn.uid = gud.uid; + call.conn.bindUid = gud.bindUid; + call.conn.gud = gud; + call.conn.lshd = {}; + + if (!!!user) { + await firstLoginFun(call); + } + + G.mongodb.collection('loginLog').insertOne({ + uid: gud.uid, + bindUid: gud.bindUid, + sid: gud.sid, + loginTime: G.time + }) + + call.succ({ + gud: gud, + curTime: G.time, + openTime: G.config.openTime, + firstLogin: !!!user, + otherData: obj + }); + + if(obj.todayFirstLogin){ + G.emit('FIRST_LOGIN_EVERY_DAY', gud, gud.loginTime || G.time - 24 * 3600, G.time); + } + + LoginFun(call); +} + +/**新玩家首次登陆后执行 */ +async function firstLoginFun(call: ApiCall) { + await Promise.all([ + //插入探险数据 + G.mongodb.collection('tanxian').insertOne({ + uid: call.uid, + eventTime: G.time, + lastGuaJiTime: G.time, + useFastGuaJiNum: 0, + receivePrize: [], + resetTime: G.time + }), + // 首号奖励 + await PlayerFun.sendPrize(call, G.gc.playerdata.hero), + // 自动上阵 + HeroFun.setHeroPos(call), + TaskFun.generateAllTask(call), + ]); +} + +/**玩家登陆后执行 */ +async function LoginFun(call: ApiCall) { + + //检测玩家头像、头像框、聊天框、模型是否过期 + let modelChange = false; + const model: ResLogin['gud']['model'] = {}; + const change: Partial = {}; + if (call.conn.gud.head.time > 0 && call.conn.gud.head.time < G.time) { + change.head = defaultUserAppend.head; + } + if (call.conn.gud.headFrame.time > 0 && call.conn.gud.headFrame.time < G.time) { + change.headFrame = defaultUserAppend.headFrame; + } + if (call.conn.gud.chatFrame.time > 0 && call.conn.gud.chatFrame.time < G.time) { + change.chatFrame = defaultUserAppend.chatFrame; + } + Object.entries(call.conn.gud.model).forEach(v => { + if (v[1].time > 0 && v[1].time < G.time) { + modelChange = true; + model[v[0]] = defaultUserAppend.model[v[0]]; + } else model[v[0]] = Object.assign({}, v[1]); + }); + if (modelChange) change.model = model; + Object.keys(change).length > 0 && PlayerFun.addAttr(call, change); + + //上线重算战力 + call.conn.refreshPower(); + // ### globalDebug GHManage + if (call.conn.gud.ghLevel == 1 && await GHManage.getGH(call.conn.gud.ghId)) { + GHManage.hzsx(call.conn.gud); + } + + if (!await G.redis.hGet('player:uids', call.conn.gud.uid)) { + G.redis.hSet('player:uids', call.conn.gud.uid, 1) + } + FriendManage.addNew(call.conn.gud.uid); + + // 推送当前主线任务信息,引导用 + let _taskInfo = await TaskFun.getFinishByTtype(call, [2], {finish: 0}); + G.server.sendMsgByUid(call.uid, 'msg_s2c/TaskChange', _taskInfo?.[2]?.[0]) +} \ No newline at end of file diff --git a/src/api_s2c/user/ApiPing.ts b/src/api_s2c/user/ApiPing.ts new file mode 100644 index 0000000..8ac1106 --- /dev/null +++ b/src/api_s2c/user/ApiPing.ts @@ -0,0 +1,21 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqPing, ResPing } from "../../shared/protocols/user/PtlPing"; + +export default async function (call: ApiCall) { + let onlineTime = call.conn?.gud?.onlineTime || 0; + + if (call.uid && call.conn.gud && call.conn.onlineTime) { + let addSecond = G.time - call.conn.onlineTime; + if (addSecond > 0) { + PlayerFun.changeAttr(call.uid, { onlineTime: call.conn.gud.onlineTime + addSecond, newonlinetime: G.time }); + } + call.conn.onlineTime = G.time; + onlineTime = call.conn.gud.onlineTime + addSecond; + } + + call.succ({ + time: G.time, + onlineTime: onlineTime + }); +} \ No newline at end of file diff --git a/src/api_s2c/user/ApiRenown.ts b/src/api_s2c/user/ApiRenown.ts new file mode 100644 index 0000000..7163d43 --- /dev/null +++ b/src/api_s2c/user/ApiRenown.ts @@ -0,0 +1,19 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqRenown, ResRenown } from "../../shared/protocols/user/PtlRenown"; + +export default async function (call: ApiCall) { + + let curRenown = call.conn.gud.renown; + let conf = G.gc.mw_dj[curRenown + 1]; + + if (!conf) return call.error(globalThis.lng.user_5); + if (conf.lv > call.conn.gud.lv) return call.error(globalThis.lng.user_6); + + await PlayerFun.checkNeedIsMeet(call, conf.need); + + await PlayerFun.cutNeed(call, conf.need); + await PlayerFun.addAttr(call, { renown: curRenown + 1 }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/user/ApiRenownBuy.ts b/src/api_s2c/user/ApiRenownBuy.ts new file mode 100644 index 0000000..2906566 --- /dev/null +++ b/src/api_s2c/user/ApiRenownBuy.ts @@ -0,0 +1,41 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from "../../public/player"; +import { ReqRenownBuy, ResRenownBuy } from "../../shared/protocols/user/PtlRenownBuy"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + + let conf = G.gc.mw_com.gift[call.req.index] + if (!conf || conf.payId) return call.errorCode(-1); + + let _mydata = { + // 礼包相关数据 + record: {}, + // 领取时间 + tequan: { + istq: 0, + recTime: 0 + } + } + + _mydata = await G.mongodb.collection('playerInfo', 'juewei').findOne({ uid: call.conn.uid, type: 'juewei' }) || _mydata; + let buyNum = _mydata.record?.[call.req.index] || 0; + if (buyNum >= conf.buyNum) return call.errorCode(-3); + + if (conf.need.length > 0) { + await PlayerFun.checkNeedIsMeet(call, conf.need); + await PlayerFun.cutNeed(call, conf.need); + } + + let selectPrize = conf.prize + // 设置数据和发奖 + G.mongodb.collection('playerInfo', 'juewei').updateOne({ uid: call.conn.uid, type: 'juewei' }, { $inc: G.mongodb.createTreeObj({ key: `record.${call.req.index}`, val: 1 }) }); + await PlayerFun.sendPrize(call, selectPrize); + + HongDianChange.sendChangeKey(call.uid, ['renown']); + + call.succ({ + prize: selectPrize, + mydata: _mydata + }); +} \ No newline at end of file diff --git a/src/api_s2c/user/ApiRenownGetPrize.ts b/src/api_s2c/user/ApiRenownGetPrize.ts new file mode 100644 index 0000000..019a4ef --- /dev/null +++ b/src/api_s2c/user/ApiRenownGetPrize.ts @@ -0,0 +1,41 @@ +import { ApiCall } from "tsrpc"; +import { PayFun } from "../../public/pay"; +import { PlayerFun } from "../../public/player"; +import { ReqRenownGetPrize, ResRenownGetPrize } from "../../shared/protocols/user/PtlRenownGetPrize"; +import { PublicShared } from "../../shared/public/public"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let conf = G.gc.mw_com['gift'][0]; + let buyLog = await PayFun.getPayLog(call.uid, conf.payId); + if (!conf || buyLog.length <= 0) return call.error('', { code: -1, message: globalThis.lng.user_7 }); + + let _mydata = { + // 礼包相关数据 + record: {}, + // 领取时间 + tequan: { + istq: buyLog.length > 0 ? 1 : 0, + recTime: 0 + } + } + + _mydata = await G.mongodb.collection('playerInfo', 'juewei').findOne({ uid: call.conn.uid, type: 'juewei' }) || _mydata; + if (PublicShared.getToDayZeroTime(_mydata.tequan.recTime) == PublicShared.getToDayZeroTime(G.time)) { + return call.error('', { code: -2, message: globalThis.lng.tanxian_6 }); + } + + let _sendPrize = G.gc.mw_com.giftdayprize.prize + _mydata.tequan.recTime = G.time + + // 设置数据和发奖 + G.mongodb.collection('playerInfo', 'juewei').updateOne({ uid: call.conn.uid, type: 'juewei' }, { $set: { "tequan.recTime": _mydata.tequan.recTime } }); + await PlayerFun.sendPrize(call, _sendPrize); + + HongDianChange.sendChangeKey(call.uid, ['renown']); + + call.succ({ + prize: _sendPrize, + mydata: _mydata + }); +} \ No newline at end of file diff --git a/src/api_s2c/user/ApiRenownOpen.ts b/src/api_s2c/user/ApiRenownOpen.ts new file mode 100644 index 0000000..83367b2 --- /dev/null +++ b/src/api_s2c/user/ApiRenownOpen.ts @@ -0,0 +1,29 @@ +import { ApiCall } from "tsrpc"; +import { PayFun } from "../../public/pay"; +import { ReqRenownOpen, ResRenownOpen } from "../../shared/protocols/user/PtlRenownOpen"; + +export default async function (call: ApiCall) { + + let conf = G.gc.mw_com['gift'][0]; + let buyLog = await PayFun.getPayLog(call.uid, conf.payId); + + let _data + let _mydata = await G.mongodb.collection('playerInfo', 'juewei').findOne({ uid: call.conn.uid, type: 'juewei' }); + if (!_mydata || buyLog.length > 0) { + _data = { + // 礼包相关数据 + record: _mydata?.record || {}, + // 领取时间 + tequan: { + istq: buyLog.length > 0 ? 1 : 0, + recTime: _mydata?.tequan?.recTime || 0 + } + } + G.mongodb.collection('playerInfo', 'juewei').updateOne({ uid: call.conn.uid, type: 'juewei' }, { $set: _data }, { upsert: true }); + Object.assign(_mydata, _data) + } + + call.succ({ + mydata: _mydata || _data + }); +} \ No newline at end of file diff --git a/src/api_s2c/user/ApiTujian.ts b/src/api_s2c/user/ApiTujian.ts new file mode 100644 index 0000000..9d851c8 --- /dev/null +++ b/src/api_s2c/user/ApiTujian.ts @@ -0,0 +1,24 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { Rank } from '../../public/rank/rank'; +import { ReqTujian, ResTujian } from "../../shared/protocols/user/PtlTujian"; + +export default async function (call: ApiCall) { + + let curLv = call.conn.gud.tujianLv; + + if (!G.gc.tujian_jc[curLv + 1]) return call.error(globalThis.lng.user_8); + + let activeNum = Object.keys(call.conn.lshd.hero).length + Object.keys(call.conn.lshd.equip).length + Object.keys(call.conn.lshd.peijian).length; + + if (activeNum < G.gc.tujian_jc[curLv + 1].jindu) return call.error(globalThis.lng.user_9); + + await PlayerFun.addAttr(call, { tujianLv: curLv + 1 }); + + Rank.list['tujian'].addNew({ + player: call.conn.gud, + valArr: [curLv + 1] + }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/weixiuchang/ApiDazao.ts b/src/api_s2c/weixiuchang/ApiDazao.ts new file mode 100644 index 0000000..942aa97 --- /dev/null +++ b/src/api_s2c/weixiuchang/ApiDazao.ts @@ -0,0 +1,23 @@ +import { ApiCall } from "tsrpc"; +import { ReqDazao, ResDazao } from "../../shared/protocols/weixiuchang/PtlDazao"; +import { PlayerFun } from "../../public/player"; +import { PublicShared } from '../../shared/public/public'; + +export default async function (call: ApiCall) { + let [id, num] = [call.req.id, call.req.num]; + + let dzConf = G.gc.weixiuchang_dz[id]; + if (!dzConf) { + return call.error(globalThis.lng.weixiuchang_1); + } + let need = [].concat(dzConf.item).map(v => { return { ...v, n: v.n * num }; }); + await PlayerFun.checkNeedIsMeet(call, need); + let prize = []; + for (let i = 0; i < num; i++) { + prize = prize.concat(PublicShared.randomDropGroup(PublicShared.randomNum(0, 1) < dzConf.success ? dzConf.target : dzConf.lose)); + } + prize = PublicShared.mergePrize(prize); + await PlayerFun.cutNeed(call, need); + await PlayerFun.addItem(call, prize); + call.succ({ prize: prize }); +} \ No newline at end of file diff --git a/src/api_s2c/weixiuchang/ApiZuzhuang.ts b/src/api_s2c/weixiuchang/ApiZuzhuang.ts new file mode 100644 index 0000000..f7e250a --- /dev/null +++ b/src/api_s2c/weixiuchang/ApiZuzhuang.ts @@ -0,0 +1,29 @@ +import { ApiCall } from "tsrpc"; +import { ReqZuzhuang, ResZuzhuang } from "../../shared/protocols/weixiuchang/PtlZuzhuang"; +import { PlayerFun } from "../../public/player"; + +export default async function (call: ApiCall) { + let data = call.conn.gud.wxcLv; + let conf = G.gc.weixiuchang_zz[data.lv + 1]; + let req = call.req; + let newdata = { ...data }; + + if (req.type == 'sx') { + // 安装零部件 + if (data.ids.length == conf.need.length) return call.error('', { code: -1, message: globalThis.lng.shiwu_6 }); + if (typeof req.idx != 'number') return call.error('', { code: -2, message: globalThis.lng.shiwu_6 }); + if (data.ids.includes(req.idx)) return call.error('', { code: -3, message: globalThis.lng.weixiuchang_2 }); + let need = req.cutneed == 0 ? [conf.need[req.idx]] : [].concat(conf.need2[req.idx] || conf.need2[0]).map(v => { return { ...v, n: v.n * conf.need[req.idx].n }; }); + let isMeet = await PlayerFun.checkNeedIsMeet(call, need); + if (!isMeet.isOk) return call.error('', { code: -4, message: '材料不足' }); + await PlayerFun.cutNeed(call, need); + newdata.ids.push(req.idx); + } else { + // 升星 or 进阶 + if (data.ids.length != conf.need.length) return call.error('', { code: -1, message: globalThis.lng.shiwu_6 }); + newdata.ids.length = 0; + newdata.lv += 1; + } + await PlayerFun.addAttr(call, { wxcLv: newdata }); + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/wzry/ApiAutoBaoMing.ts b/src/api_s2c/wzry/ApiAutoBaoMing.ts new file mode 100644 index 0000000..11b51ff --- /dev/null +++ b/src/api_s2c/wzry/ApiAutoBaoMing.ts @@ -0,0 +1,23 @@ +import { ApiCall } from "tsrpc"; +import { WangZheRongYaofun } from "../../public/wzry"; +import { ReqAutoBaoMing, ResAutoBaoMing } from "../../shared/protocols/wzry/PtlAutoBaoMing"; + +export default async function (call: ApiCall) { + let _con = await WangZheRongYaofun.getCon(); + if (call.conn.gud.lv < G.gc.openCond.wzrybm.and.lv) { + // 等级不足 + return call.error('', { code: -1/* , message: globalThis.lng.wzry_1 */ }); + } + + let _mydata = await WangZheRongYaofun.getMyData(call); + if (_mydata.isauto) { + // 已经自动报名 + return call.error('', { code: -2/* , message: globalThis.lng.wzry_4 */ }); + } + _mydata.isauto = 1; + let _setData = { + isauto: _mydata.isauto + }; + G.mongodb.collection('playerInfo', 'wzry').updateOne({ uid: call.conn.uid, type: 'wzry' }, { $set: _setData }); + call.succ({ mydata: _mydata }); +} \ No newline at end of file diff --git a/src/api_s2c/wzry/ApiBaoMing.ts b/src/api_s2c/wzry/ApiBaoMing.ts new file mode 100644 index 0000000..f407817 --- /dev/null +++ b/src/api_s2c/wzry/ApiBaoMing.ts @@ -0,0 +1,41 @@ +import { ApiCall } from "tsrpc"; +import { FightFun } from "../../public/fight"; +import { PlayerFun } from "../../public/player"; +import { WangZheRongYaofun } from "../../public/wzry"; +import { ReqBaoMing, ResBaoMing } from "../../shared/protocols/wzry/PtlBaoMing"; +import { PublicShared } from "../../shared/public/public"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let _con = await WangZheRongYaofun.getCon(); + if (call.conn.gud.lv < G.gc.openCond.wzrybm.and.lv) { + // 等级不足 + return call.error('', { code: -1/* , message: globalThis.lng.wzry_1 */ }); + } + + let status = await WangZheRongYaofun.getWangZheStatus(); + if (status.status != 1) { + // 未到报名时间 + return call.error('', { code: -2/* , message: globalThis.lng.wzry_2 */ }); + } + + // 个人数据 + let _mydata = await WangZheRongYaofun.getMyData(call); + if (_mydata.isbm) { + // 重复报名 + return call.error('', { code: -3/* , message: globalThis.lng.wzry_3 */ }); + } + + // 周key + let zkey = await PublicShared.getToWeek(); + // 报名 + await WangZheRongYaofun.setWzryBaoMing(call, { zkey: zkey, isbm: 1 }); + + // 发奖 + let _prize: atn[] = _con.wangzhe.bmprize; + await PlayerFun.sendPrize(call, _prize); + + HongDianChange.sendChangeKey(call.uid, ['wzryhd']); + + call.succ({ prize: _prize }); +} \ No newline at end of file diff --git a/src/api_s2c/wzry/ApiCatGroup.ts b/src/api_s2c/wzry/ApiCatGroup.ts new file mode 100644 index 0000000..9b86a43 --- /dev/null +++ b/src/api_s2c/wzry/ApiCatGroup.ts @@ -0,0 +1,31 @@ +import { ApiCall } from "tsrpc"; +import { WangZheRongYaofun } from "../../public/wzry"; +import { ReqCatGroup, ResCatGroup } from "../../shared/protocols/wzry/PtlCatGroup"; + +export default async function (call: ApiCall) { + // let status = await WangZheRongYaofun.getWangZheStatus() + // if (status.status < 5) { + // // 未到报名时间 + // return call.error('', { code: -1, message: globalThis.lng.wzry_5 }) + // } + let _where = {}; + let _num = { + "256": 4, + "64": 32 + }; + if (call.req.deep == 256 || call.req.deep == 64) { // 4个人 + _where['groupinfo.order'] = { $gt: (call.req.group - 1) * _num[call.req.deep], $lte: (call.req.group) * _num[call.req.deep] }; + if (call.req.deep == 64) _where["deep"] = { $gte: 3 }; + } else { + _where["deep"] = { $gte: 6 }; + } + + + let groupList = await WangZheRongYaofun.getFightGroup(call, _where); + if (!groupList) { + // 未到时间 + return call.error('', { code: -3/* , message: globalThis.lng.wzry_11 */ }); + } + + call.succ({ grouplist: groupList }); +} \ No newline at end of file diff --git a/src/api_s2c/wzry/ApiDldFight.ts b/src/api_s2c/wzry/ApiDldFight.ts new file mode 100644 index 0000000..7e25180 --- /dev/null +++ b/src/api_s2c/wzry/ApiDldFight.ts @@ -0,0 +1,78 @@ +import { ApiCall } from "tsrpc"; +import { EmailFun } from "../../public/email"; +import { FightFun } from "../../public/fight"; +import { Rank } from "../../public/rank/rank"; +import { WangZheRongYaofun } from "../../public/wzry"; +import { ReqDldFight, ResDldFight } from "../../shared/protocols/wzry/PtlDldFight"; +import { PublicShared } from "../../shared/public/public"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let status = await WangZheRongYaofun.getWangZheStatus(); + if (status.status != 3) { + // 未到大乱斗时间 + return call.error('', { code: -1/* , message: globalThis.lng.wzry_5 */ }); + } + + let _mydata = await WangZheRongYaofun.getMyData(call); + if (!_mydata.isbm) { + // 未报名 + return call.error('', { code: -2/* , message: globalThis.lng.wzry_7 */ }); + } + + if (_mydata.dldinfo.dldpknum >= G.gc.wangzherongyao.wangzhe.dlpknum) { + // 挑战次数不足 + return call.error('', { code: -3/* , message: globalThis.lng.wzry_7 */ }); + } + + // 我的大乱斗战斗数据 + let _myFight = await WangZheRongYaofun.getMyFight(call); + if (!_myFight || !_mydata.info) { + return call.error('', { code: -4/* , message: globalThis.lng.wzry_16 */ }); + } + _myFight.data = await call.conn.getDefaultFightData(); + let [my, npc] = JSON.parse(JSON.stringify([_myFight.data, _mydata.info])); + const result = FightFun.fight([my, npc]); + + let dldfight = _mydata.dldinfo?.dldfight || []; + dldfight.push(result.winSide); + _mydata.dldinfo.dldfight = dldfight; + _mydata.dldinfo.dldpknum += 1; + + let _jifen = _myFight.jifen; + _myFight.jifen = _myFight.jifen + await WangZheRongYaofun.getMyScore(dldfight); + + // 设置数据 + let _r = await WangZheRongYaofun.setWzryDldFight(call, _myFight); + let _enemy = (await G.clientCross.callApi('wzry/DldRefre', { uid: _mydata.uid })).res.info; + G.mongodb.cPlayerInfo("wzry").updateOne({ uid: call.uid, type: 'wzry' }, { $set: { info: _enemy, dldinfo: _mydata.dldinfo } }); + _mydata.info = _enemy; + + + let _con = await WangZheRongYaofun.getCon(); + for (let index = 0; index < _con.wangzhe.jiangli.dld.length; index++) { + const element = _con.wangzhe.jiangli.dld[index]; + if (_jifen < element.jifen && _myFight.jifen >= element.jifen) { + let prize = G.gc.wangzherongyao.wangzhe.bmprize; + prize.length > 0 && EmailFun.addEmail({ + uid: call.uid, + type: 'system', + title: G.gc.wangzherongyao.wangzhe.email.dldjifen.title, + content: G.gc.wangzherongyao.wangzhe.email.dldjifen.content, + prize: PublicShared.mergePrize(prize), + contentInsertArr: [element.jifen] + }); + } + } + + _mydata.rank = _r.rank; + _mydata.jifen = _myFight.jifen; + + HongDianChange.sendChangeKey(call.uid, ['wzryhd']); + + call.succ({ + mydata: _mydata, + result: result, + wzfight: _myFight + }); +} \ No newline at end of file diff --git a/src/api_s2c/wzry/ApiDldRefre.ts b/src/api_s2c/wzry/ApiDldRefre.ts new file mode 100644 index 0000000..5655c84 --- /dev/null +++ b/src/api_s2c/wzry/ApiDldRefre.ts @@ -0,0 +1,36 @@ +import { ApiCall } from "tsrpc"; +import { WangZheRongYaofun } from "../../public/wzry"; +import { ReqDldRefre, ResDldRefre } from "../../shared/protocols/wzry/PtlDldRefre"; + +export default async function (call: ApiCall) { + let status = await WangZheRongYaofun.getWangZheStatus(); + if (status.status != 3) { + // 未到大乱斗时间 + return call.error('', { code: -1/* , message: globalThis.lng.wzry_5 */ }); + } + + let _mydata = await WangZheRongYaofun.getMyData(call); + if (!_mydata.isbm) { + // 未报名 + return call.error('', { code: -2/* , message: globalThis.lng.wzry_7 */ }); + } + + if (_mydata.dldinfo.dldrefrenum >= G.gc.wangzherongyao.wangzhe.dldrefrenum) { + // 次数不足 + return call.error('', { code: -3/* , message: globalThis.lng.wzry_6 */ }); + } + + let _enemy = (await G.clientCross.callApi('wzry/DldRefre', { uid: _mydata.uid })).res.info; + G.mongodb.cPlayerInfo("wzry").updateOne({ uid: call.uid, type: 'wzry' }, { $set: { info: _enemy }, $inc: { 'dldinfo.dldrefrenum': 1 } }); + _mydata.info = _enemy; + + let _wzFight = await WangZheRongYaofun.getMyFight(call) || {}; + // @ts-ignore + let [rank, jifen] = [_wzFight?.rank || -1, _wzFight?.jifen || 0]; + + _mydata.rank = rank; + _mydata.jifen = jifen; + + _mydata.dldinfo.dldrefrenum += 1; + call.succ({ mydata: _mydata }); +} \ No newline at end of file diff --git a/src/api_s2c/wzry/ApiJingCai.ts b/src/api_s2c/wzry/ApiJingCai.ts new file mode 100644 index 0000000..9991e6b --- /dev/null +++ b/src/api_s2c/wzry/ApiJingCai.ts @@ -0,0 +1,59 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from "../../public/player"; +import { WangZheRongYaofun } from "../../public/wzry"; +import { ReqJingCai, ResJingCai } from "../../shared/protocols/wzry/PtlJingCai"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let status = await WangZheRongYaofun.getWangZheStatus(); + if (status.status != 15) { + // 未到时间 + return call.error('', { code: -1/* , message: globalThis.lng.wzry_11 */ }); + } + + let _con = G.gc.wangzherongyao.wangzhe.guess[call.req.guess]; + if (_con.needvip > call.conn.gud.vip) { + // vip限制 + return call.error('', { code: -2/* , message: globalThis.lng.wzry_12 */ }); + } + + let _myData = await WangZheRongYaofun.getMyData(call); + if (_myData?.isjingcai?.totalmoney) { + // 已经竞猜 + return call.error('', { code: -3/* , message: globalThis.lng.wzry_13 */ }); + } + let _jcList = await WangZheRongYaofun.getFightGroup(call, { deep: { $gte: 6 } }); + if (!_jcList) { + // 未到时间 + return call.error('', { code: -1/* , message: globalThis.lng.wzry_11 */ }); + } + let _jcuser = _jcList.filter(v => v.uid == call.req.touid); + if (!_jcuser) { + return call.error('', { code: -5/* , message: globalThis.lng.wzry_14 */ }); + } + + let need: atn[] = [{ "a": "attr", 't': "rmbmoney", "n": _con.addmoney }]; + need && await PlayerFun.cutNeed(call, need); + let _setData = { + isjingcai: { + totalmoney: _con.addmoney, + guessuid: call.req.touid + } + }; + Object.assign(_myData, _setData); + + // 设置竞猜数据 + await G.mongodb.cPlayerInfo("wzry").updateOne({ uid: call.uid, type: 'wzry' }, { $set: _setData }); + let _r = await G.clientCross.callApi('wzry/UpdateFight', { uid: call.uid, isjingcai: _con.addmoney }); + if (!_r.isSucc) { + return call.error('', { code: -4/* , message: globalThis.lng.wzry_15 */ }); + } + let prize = await PlayerFun.sendPrize(call, _con.prize); + + HongDianChange.sendChangeKey(call.uid, ['wzryhd']); + + call.succ({ + mydata: _myData, + prize: prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/wzry/ApiJingCaiOpen.ts b/src/api_s2c/wzry/ApiJingCaiOpen.ts new file mode 100644 index 0000000..29178ed --- /dev/null +++ b/src/api_s2c/wzry/ApiJingCaiOpen.ts @@ -0,0 +1,22 @@ +import { ApiCall } from "tsrpc"; +import { WangZheRongYaofun } from "../../public/wzry"; +import { ReqJingCaiOpen, ResJingCaiOpen } from "../../shared/protocols/wzry/PtlJingCaiOpen"; + +export default async function (call: ApiCall) { + let status = await WangZheRongYaofun.getWangZheStatus(); + // if (status.status != 6) { + // // 未到时间 + // return call.error('', { code: -2, message: globalThis.lng.wzry_11 }) + // } + let _jcList = await WangZheRongYaofun.getFightGroup(call, { deep: { $gte: 6 } }); + if (!_jcList) { + // 未到时间 + return call.error('', { code: -3/* , message: globalThis.lng.wzry_11 */ }); + } + let _jcAllNum = await (await G.clientCross.callApi('wzry/getJingCai', {})).res.num; + + call.succ({ + jclist: _jcList, + jcallnum: _jcAllNum + }); +} \ No newline at end of file diff --git a/src/api_s2c/wzry/ApiOpen.ts b/src/api_s2c/wzry/ApiOpen.ts new file mode 100644 index 0000000..eb10076 --- /dev/null +++ b/src/api_s2c/wzry/ApiOpen.ts @@ -0,0 +1,47 @@ +import { ApiCall } from "tsrpc"; +import { EmailFun } from "../../public/email"; +import { WangZheRongYaofun } from "../../public/wzry"; +import { ReqOpen, ResOpen } from "../../shared/protocols/wzry/PtlOpen"; +import { PublicShared } from "../../shared/public/public"; + +export default async function (call: ApiCall) { + let status = await WangZheRongYaofun.getWangZheStatus() + let _mydata = await WangZheRongYaofun.getMyData(call) + let _bmnum = await WangZheRongYaofun.getBaoMingNum() + let zkey = await PublicShared.getToWeek() + + // 赛期结束无法清除此数据,这里做个自动刷新 + if (status.status == 3 && _mydata.isdldrefre == 0 && _mydata.isbm) { + let _res = await G.clientCross.callApi('wzry/DldRefre', { uid: _mydata.uid }) + if (_res.isSucc) { + let _enemy = _res.res.info + G.mongodb.cPlayerInfo("wzry").updateOne({ uid: call.uid, type: 'wzry' }, { $set: { info: _enemy, isdldrefre: 1, zkey: zkey } }) + _mydata.info = _enemy + } + } + + let _wzFight = await WangZheRongYaofun.getMyFight(call) || {} + if (Object.keys(_wzFight).length > 1) { + _mydata.isjjzs = 1 + } + + let mygroup = {} + // @ts-ignore + let [_tmpNum, deep, rank, jifen] = [_wzFight?.groupinfo?.order || 0, _wzFight.deep || 0, _wzFight.rank || -1, _wzFight.jifen || 0] + mygroup = { + "256": Math.ceil(_tmpNum / 4), + "64": deep >= 3 ? Math.ceil(_tmpNum / 32) : 0, + "8": deep >= 6 ? 1 : 0 + } + _mydata.rank = rank + _mydata.jifen = jifen + + call.succ({ + status: status, + mydata: _mydata, + zkey: zkey, + bmnum: _bmnum, + time: G.time, + mygroup: mygroup + }) +} \ No newline at end of file diff --git a/src/api_s2c/wzry/ApiUpdateFight.ts b/src/api_s2c/wzry/ApiUpdateFight.ts new file mode 100644 index 0000000..4770b16 --- /dev/null +++ b/src/api_s2c/wzry/ApiUpdateFight.ts @@ -0,0 +1,36 @@ +import {ApiCall} from "tsrpc"; +import {WangZheRongYaofun} from "../../public/wzry"; +import {ReqUpdateFight, ResUpdateFight} from "../../shared/protocols/wzry/PtlUpdateFight"; +import {PublicShared} from "../../shared/public/public"; + +export default async function (call: ApiCall) { + if (PublicShared.getToWeekMondayZeroTime() > G.time - 165600) { + // 周三到周天可以更换 + return call.error('', {code: -1, message: ''/* globalThis.lng.wzry_17 */}); + } + + let canChangeZr = G.gc.wangzherongyao.wangzhe.noupdate + let status = await WangZheRongYaofun.getWangZheStatus(); + if (canChangeZr.includes(status.status) && (status.stime - 5 * 60) <= G.time && G.time <= (status.etime + 5 * 60)) { + // 每个状态开始的前5后5分钟 无法更换 + return call.error('', {code: -2, message: ''/* globalThis.lng.wzry_17 */}); + } + + let _wzFight = await WangZheRongYaofun.getMyFight(call); + if (!_wzFight) { + return call.error('', {code: -4, message: ''/* globalThis.lng.wzry_16 */}); + } + + let _setData = { + jifen: _wzFight.jifen, + zkey: _wzFight.zkey, + data: await call.conn.getDefaultFightData(), // 我的战斗信息 + uid: call.uid + }; + await WangZheRongYaofun.setWzryDldFight(call, _setData); + Object.assign(_wzFight, _setData); + + call.succ({ + // wzfight: _wzFight + }); +} \ No newline at end of file diff --git a/src/api_s2c/wzry/ApiWzzd.ts b/src/api_s2c/wzry/ApiWzzd.ts new file mode 100644 index 0000000..de01115 --- /dev/null +++ b/src/api_s2c/wzry/ApiWzzd.ts @@ -0,0 +1,12 @@ +import { ApiCall } from "tsrpc"; +import { WangZheRongYaofun } from "../../public/wzry"; +import { ReqWzzd, ResWzzd } from "../../shared/protocols/wzry/PtlWzzd"; + +export default async function (call: ApiCall) { + let wzzdlist = await WangZheRongYaofun.getWzzdList(); + if (!wzzdlist) { + return call.error('', { code: -4, message: ''/* globalThis.lng.wzry_16 */ }); + } + + call.succ({ wzzdlist: wzzdlist }); +} \ No newline at end of file diff --git a/src/api_s2c/wzry/ApiZuanShiOpen.ts b/src/api_s2c/wzry/ApiZuanShiOpen.ts new file mode 100644 index 0000000..ee5edfb --- /dev/null +++ b/src/api_s2c/wzry/ApiZuanShiOpen.ts @@ -0,0 +1,19 @@ +import { ApiCall } from "tsrpc"; +import { WangZheRongYaofun } from "../../public/wzry"; +import { ReqZuanShiOpen, ResZuanShiOpen } from "../../shared/protocols/wzry/PtlZuanShiOpen"; + +export default async function (call: ApiCall) { + let status = await WangZheRongYaofun.getWangZheStatus() + if (status.status < 5) { + // 未到报名时间 + return call.error('', { code: -1, message: globalThis.lng.wzry_5 }) + } + let _myFight = await WangZheRongYaofun.getMyFight(call) + if (!_myFight) { + return call.error('', { code: -4, message: globalThis.lng.wzry_16 }) + } + + let _mygroup = _myFight?.groupinfo?.groupid || 0 + + call.succ({ mygroup: _mygroup }); +} \ No newline at end of file diff --git a/src/api_s2c/wzry/ApicatFightLog.ts b/src/api_s2c/wzry/ApicatFightLog.ts new file mode 100644 index 0000000..abb8466 --- /dev/null +++ b/src/api_s2c/wzry/ApicatFightLog.ts @@ -0,0 +1,13 @@ +import { ApiCall } from "tsrpc"; +import { WangZheRongYaofun } from "../../public/wzry"; +import { ReqcatFightLog, RescatFightLog } from "../../shared/protocols/wzry/PtlcatFightLog"; + +export default async function (call: ApiCall) { + let res = await G.clientCross.callApi('wzry/catFightLog', { fid: call.req.fid }); + if (!res.isSucc) { + return call.error('', { code: -1/* , message: globalThis.lng.wzry_10 */ }); + } + let result = res.res.result; + + call.succ({ result: result }); +} \ No newline at end of file diff --git a/src/api_s2c/xstask/ApiAllGet.ts b/src/api_s2c/xstask/ApiAllGet.ts new file mode 100644 index 0000000..f41ac3c --- /dev/null +++ b/src/api_s2c/xstask/ApiAllGet.ts @@ -0,0 +1,47 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { XstaskFun } from '../../public/xstask'; +import { ReqAllGet, ResAllGet } from "../../shared/protocols/xstask/PtlAllGet"; +import { HongDianChange } from "../hongdian/fun"; +import { PublicShared } from "../../shared/public/public"; + +export default async function (call: ApiCall) { + const taskList = JSON.parse(JSON.stringify(await XstaskFun.getAllTask(call.uid))); + let taskInfo = await XstaskFun.getInfo(call.uid); + let prizeArr:atn[] = [] + for(let task of taskList) { + const taskConf = G.gc.xstask[task?.taskId]; + if (!task) continue; + if (task.receiveData == undefined) continue; + if (task.receiveData.rec == true) continue; + if (task.receiveData.time + taskConf.time > G.time) { + // let second = task.receiveData.time + taskConf.time - G.time; + // let needConf = G.gc.xstaskcom.jiasu.filter(v => second >= v.time[0] && second <= v.time[1])[0]; + // if (needConf) { + // await PlayerFun.checkNeedIsMeet(call, needConf.need); + // await PlayerFun.cutNeed(call, needConf.need); + // } + continue + } + let change: Parameters[1] = { $inc: {} }; + change.$inc[`finishNum.${taskConf.colour}`] = 1; + // 比对派遣时间,如果小于当日0点,则更新新任务,否则该变领取状态为true + if(task.receiveData.time < PublicShared.getToDayZeroTime()) { + // 更新任务 + let newTask = XstaskFun.randomTasks(taskInfo?.lv, 1) + XstaskFun.updateTask(call.uid, task._id, newTask[0].taskId) + } else { + // 更新领取状态 + XstaskFun.finishTask(call.uid, task._id) + } + // XstaskFun.delTask(call.uid, task._id); + XstaskFun.changeInfo(call.uid, change); + await PlayerFun.sendPrize(call, taskConf.prize); + HongDianChange.sendChangeKey(call.uid, ['xstaskhd', 'huodonghd']); + prizeArr.push(...taskConf.prize) + } + call.succ({ + taskList: await XstaskFun.getAllTask(call.uid), + prize: PublicShared.mergePrize(prizeArr) + }); +} \ No newline at end of file diff --git a/src/api_s2c/xstask/ApiGet.ts b/src/api_s2c/xstask/ApiGet.ts new file mode 100644 index 0000000..62a5b1b --- /dev/null +++ b/src/api_s2c/xstask/ApiGet.ts @@ -0,0 +1,46 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { XstaskFun } from '../../public/xstask'; +import { ReqGet, ResGet } from "../../shared/protocols/xstask/PtlGet"; +import { HongDianChange } from "../hongdian/fun"; +import { PublicShared } from '../../shared/public/public'; + +export default async function (call: ApiCall) { + + let task = await XstaskFun.getTask(call.uid, call.req._id); + let taskInfo = await XstaskFun.getInfo(call.uid); + let taskConf = G.gc.xstask[task?.taskId]; + + if (!task) return call.error(globalThis.lng.xstask_1); + if (task.receiveData == undefined) return call.error(globalThis.lng.xstask_2); + if (task.receiveData.rec) return call.error(globalThis.lng.xstask_13); // 奖励已领取 + if (task.receiveData.time + taskConf.time > G.time) { + let second = task.receiveData.time + taskConf.time - G.time; + let needConf = G.gc.xstaskcom.jiasu.filter(v => second >= v.time[0] && second <= v.time[1])[0]; + if (needConf) { + await PlayerFun.checkNeedIsMeet(call, needConf.need); + await PlayerFun.cutNeed(call, needConf.need); + } + } + + let change: Parameters[1] = { $inc: {} }; + change.$inc[`finishNum.${taskConf.colour}`] = 1; + // 比对派遣时间,如果小于当日0点,则更新新任务,否则该变领取状态为true + if(task.receiveData.time < PublicShared.getToDayZeroTime()) { + // 更新任务 + let newTask = XstaskFun.randomTasks(taskInfo?.lv, 1) + XstaskFun.updateTask(call.uid, call.req._id, newTask[0].taskId) + } else { + // 更新领取状态 + XstaskFun.finishTask(call.uid, call.req._id) + } + // XstaskFun.delTask(call.uid, call.req._id); + XstaskFun.changeInfo(call.uid, change); + await PlayerFun.sendPrize(call, taskConf.prize); + HongDianChange.sendChangeKey(call.uid, ['xstaskhd', 'huodonghd']); + + call.succ({ + taskList: await XstaskFun.getAllTask(call.uid), + prize: taskConf.prize + }); +} \ No newline at end of file diff --git a/src/api_s2c/xstask/ApiLvUp.ts b/src/api_s2c/xstask/ApiLvUp.ts new file mode 100644 index 0000000..ab7df74 --- /dev/null +++ b/src/api_s2c/xstask/ApiLvUp.ts @@ -0,0 +1,22 @@ +import { ApiCall } from "tsrpc"; +import { XstaskFun } from '../../public/xstask'; +import { ReqLvUp, ResLvUp } from "../../shared/protocols/xstask/PtlLvUp"; + +export default async function (call: ApiCall) { + + let info = await XstaskFun.getInfo(call.uid); + let upConf = G.gc.xstaskcom.lv[info.lv + 1]; + + if (!upConf) return call.error(globalThis.lng.xstask_3); + + let num = 0; + for (let colour in info.finishNum) { + num += info.finishNum[colour]; + } + + if (num < upConf.need) return call.errorCode(-1); + + XstaskFun.changeInfo(call.uid, { $inc: { lv: 1 } }); + + call.succ({ lv: info.lv + 1 }); +} \ No newline at end of file diff --git a/src/api_s2c/xstask/ApiOnekeyReceive.ts b/src/api_s2c/xstask/ApiOnekeyReceive.ts new file mode 100644 index 0000000..933665e --- /dev/null +++ b/src/api_s2c/xstask/ApiOnekeyReceive.ts @@ -0,0 +1,52 @@ +import { ApiCall } from "tsrpc"; +import { HeroFun } from '../../public/hero'; +import { XstaskFun } from '../../public/xstask'; +import { ReqOnekeyReceive, ResOnekeyReceive } from "../../shared/protocols/xstask/PtlOnekeyReceive"; +import { HeroShared } from '../../shared/public/hero'; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + + let args = call.req; + let _ids = args.map(a => a._id); + let heroIds = args.map(a => a.heroIds).reduce((a, b) => a.concat(b)); + + if (args.length < 1 || _ids.isDuplication() || heroIds.isDuplication()) return call.error(globalThis.lng.kbzz_1); + + //所有的任务 + let taskList = await XstaskFun.getAllTask(call.uid); + //所有的任务id + let allTaskIds = taskList.map(task => task._id); + //已派遣的任务id + let receiveIds = taskList.filter(task => task.receiveData != undefined).map(task => task._id); + //已派遣的英雄id + let receiveHeroIds = receiveIds.length > 0 ? taskList.filter(task => task.receiveData != undefined).map(task => task.receiveData.heros).reduce((a, b) => a.concat(b)) : []; + + if (allTaskIds.intersection(_ids).length != _ids.length) return call.error(globalThis.lng.xstask_1); + if (receiveIds.intersection(_ids).length > 0) return call.error(globalThis.lng.xstask_4); + if (receiveHeroIds.intersection(heroIds).length > 0) return call.error(globalThis.lng.xstask_5); + + let heroList = (await HeroFun.getHeros(call, heroIds)).filter(hero => hero != null); + if (heroList.length != heroIds.length) return call.error(globalThis.lng.xstask_6); + + let change: ResOnekeyReceive = {}; + for (let receive of args) { + let task = taskList.find(task => task._id == receive._id); + let taskConf = G.gc.xstask[task.taskId]; + + if (receive.heroIds.length > taskConf.needNum) return call.error(globalThis.lng.xstask_7); + + let heros = heroList.filter(hero => receive.heroIds.includes(hero._id)); + let star = heros.map(h => G.gc.hero[h.heroId].star).reduce((a, b) => a + b); + if (star < taskConf.needStar) return call.error(globalThis.lng.xstask_8); + + change[receive._id] = { time: G.time, heros: receive.heroIds }; + } + + Object.entries(change).forEach(([k, v]) => { + XstaskFun.receiveTask(call.uid, k, v); + }); + HongDianChange.sendChangeKey(call.uid, ['xstaskhd', 'huodonghd']); + + call.succ(change); +} \ No newline at end of file diff --git a/src/api_s2c/xstask/ApiOpen.ts b/src/api_s2c/xstask/ApiOpen.ts new file mode 100644 index 0000000..4261a4c --- /dev/null +++ b/src/api_s2c/xstask/ApiOpen.ts @@ -0,0 +1,47 @@ +import { ApiCall } from "tsrpc"; +import { playerInfoType } from '../../module/collection_palyerInfo'; +import { TeQuanFun } from '../../public/tequan'; +import { XstaskFun } from '../../public/xstask'; +import { ReqOpen, ResOpen } from "../../shared/protocols/xstask/PtlOpen"; +import { PublicShared } from '../../shared/public/public'; + +export default async function (call: ApiCall) { + let needAddTask: number; + let changeInfo: Partial; + let taskInfo = await XstaskFun.getInfo(call.uid); + let taskList = await XstaskFun.getAllTask(call.uid); + + if (!taskInfo) { + changeInfo = { + lv: 1, + finishNum: {}, + lastRefreshTime: G.time, + useFreeRefreshNum: 0 + }; + needAddTask = G.gc.xstaskcom.lv[changeInfo.lv].maxTaskNum; + XstaskFun.changeInfo(call.uid, { $set: { ...changeInfo } }); + } else if (PublicShared.getToDayZeroTime() > taskInfo.lastRefreshTime) { + changeInfo = { + lastRefreshTime: G.time, + useFreeRefreshNum: 0 + }; + Object.assign(taskInfo, changeInfo); + + let delTask = taskList.filter(task => task.receiveData == undefined || task.receiveData.rec == true); + let retainTask = taskList.filter(task => task.receiveData != undefined && !task.receiveData.rec); + + needAddTask = G.gc.xstaskcom.lv[taskInfo.lv].maxTaskNum - retainTask.length; + + XstaskFun.changeInfo(call.uid, { $set: { ...changeInfo } }); + XstaskFun.delTasks(call.uid, delTask.map(task => task._id)); + } + + needAddTask += await TeQuanFun.getXsTaskNum(call); + needAddTask && await XstaskFun.addTasks(call.uid, XstaskFun.randomTasks(taskInfo?.lv || changeInfo.lv, needAddTask)); + + let { _id, uid, type, ...info } = taskInfo || changeInfo as typeof taskInfo; + call.succ({ + ...info, + taskList: await XstaskFun.getAllTask(call.uid), + }); +} \ No newline at end of file diff --git a/src/api_s2c/xstask/ApiReceive.ts b/src/api_s2c/xstask/ApiReceive.ts new file mode 100644 index 0000000..c0c2e97 --- /dev/null +++ b/src/api_s2c/xstask/ApiReceive.ts @@ -0,0 +1,35 @@ +import { ApiCall } from "tsrpc"; +import { HeroFun } from '../../public/hero'; +import { XstaskFun } from '../../public/xstask'; +import { ReqReceive, ResReceive } from "../../shared/protocols/xstask/PtlReceive"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + if (call.req.heroIds.length < 1) return call.error(globalThis.lng.xstask_9); + if (call.req.heroIds.isDuplication()) return call.error(globalThis.lng.xstask_10); + + let task = await XstaskFun.getTask(call.uid, call.req._id); + let taskConf = G.gc.xstask[task?.taskId]; + if (!task) return call.error(globalThis.lng.xstask_1); + if (call.req.heroIds.length > taskConf.needNum) return call.error(globalThis.lng.xstask_7); + if (task.receiveData) return call.error(globalThis.lng.xstask_4); + + let recevieHeroIds = await XstaskFun.getAllReceiveHero(call.uid); + if (recevieHeroIds.intersection(call.req.heroIds).length > 0) return call.error(globalThis.lng.xstask_5); + + let heros = await HeroFun.getHeros(call, call.req.heroIds); + if (heros.filter(h => h != null).length < call.req.heroIds.length) return call.error(globalThis.lng.xstask_6); + + let star = heros.map(h => G.gc.hero[h.heroId].star).reduce((a, b) => a + b); + if (star < taskConf.needStar) return call.error(globalThis.lng.xstask_8); + + let change = { + time: G.time, + heros: call.req.heroIds + }; + + XstaskFun.receiveTask(call.uid, call.req._id, change); + HongDianChange.sendChangeKey(call.uid, ['xstaskhd', 'huodonghd']); + + call.succ(change); +} \ No newline at end of file diff --git a/src/api_s2c/xstask/ApiRefresh.ts b/src/api_s2c/xstask/ApiRefresh.ts new file mode 100644 index 0000000..e48fee9 --- /dev/null +++ b/src/api_s2c/xstask/ApiRefresh.ts @@ -0,0 +1,31 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { TeQuanFun } from '../../public/tequan'; +import { XstaskFun } from '../../public/xstask'; +import { ReqRefresh, ResRefresh } from "../../shared/protocols/xstask/PtlRefresh"; +import { HongDianChange } from "../hongdian/fun"; + +export default async function (call: ApiCall) { + let info = await XstaskFun.getInfo(call.uid); + let taskList = await XstaskFun.getAllTask(call.uid); + let delNum = (G.gc.xstaskcom.lv[info.lv].maxTaskNum + await TeQuanFun.getXsTaskNum(call)) - taskList.filter(task => task.receiveData != undefined && !task.receiveData.rec).length; + + if (delNum < 1) return call.error(globalThis.lng.xstask_11); + + let change: ResRefresh = {}; + let needDel = taskList.filter(task => task.receiveData == undefined || task.receiveData.rec == true); + + if (info.useFreeRefreshNum >= G.gc.xstaskcom.freeRefreshNum) { + let meet = await PlayerFun.checkNeedByArgs(call, ...G.gc.xstaskcom.refreshNeed); + await PlayerFun.cutNeed(call, [meet.atn]); + } else { + change.useFreeRefreshNum = info.useFreeRefreshNum + 1; + XstaskFun.changeInfo(call.uid, { $inc: { useFreeRefreshNum: 1 } }); + } + + XstaskFun.delTasks(call.uid, needDel.map(v => v._id)); + await XstaskFun.addTasks(call.uid, XstaskFun.randomTasks(info.lv, delNum)); + change.taskList = await XstaskFun.getAllTask(call.uid); + HongDianChange.sendChangeKey(call.uid, ['xstaskhd', 'huodonghd']) + call.succ(change); +} \ No newline at end of file diff --git a/src/api_s2c/yongbingzhuzhan/ApiHandle.ts b/src/api_s2c/yongbingzhuzhan/ApiHandle.ts new file mode 100644 index 0000000..2ea9a60 --- /dev/null +++ b/src/api_s2c/yongbingzhuzhan/ApiHandle.ts @@ -0,0 +1,41 @@ +import { ApiCall } from "tsrpc"; +import { Wjjl } from '../../module/collection_wjjl'; +import { HeroFun } from '../../public/hero'; +import { PlayerFun } from '../../public/player'; +import { ReqHandle, ResHandle } from "../../shared/protocols/yongbingzhuzhan/PtlHandle"; + +export default async function (call: ApiCall) { + let req = call.req; + let gud = call.conn.gud; + let helpHeros: typeof gud.helpHeros = JSON.parse(JSON.stringify(gud.helpHeros)); + + if (req.state == 'shangzhen') { + let openNum = G.gc.herocom.zhuzhan.filter((lv: any[]) => { + if (lv.length > 2) { + return gud[lv[0]] >= lv[1] || gud[lv[2]] >= lv[3]; + } else { + return gud[lv[0]] >= lv[1]; + } + }).length; + if (helpHeros.length >= openNum) return call.error('', { code: -1 }); + if (Object.values(gud.heroPos).includes(req._id)) return call.error('', { code: -2 }); + + let hero = await HeroFun.getHero(call, req._id); + let isUp = helpHeros.find(v => v._id == hero._id); + if (isUp) return call.error('', { code: -3 }); + // 上阵英雄数据 + let currentHlepHero = { _id: hero._id, jieji: hero.jieji, heroId: hero.heroId, heroPosId: req.heroPosId} + // 查询站位是否有英雄,判断上阵还是更换 + if (helpHeros.find(v => v.heroPosId == req.heroPosId)) helpHeros.removeOne(v => v.heroPosId == req.heroPosId) + helpHeros.push(currentHlepHero); + } else if (req.state == 'xiexia') { + if (!helpHeros.find(v => v._id == req._id)) return call.error('', { code: -4 }); + helpHeros.removeOne(v => v._id == req._id); + } + + await Wjjl.setVal(call.uid, 'helpHeros', helpHeros.length); + + await PlayerFun.addAttr(call, { helpHeros: helpHeros }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/zhanqianbushu/ApiChangePos.ts b/src/api_s2c/zhanqianbushu/ApiChangePos.ts new file mode 100644 index 0000000..28b41b4 --- /dev/null +++ b/src/api_s2c/zhanqianbushu/ApiChangePos.ts @@ -0,0 +1,20 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqChangePos, ResChangePos } from "../../shared/protocols/zhanqianbushu/PtlChangePos"; + +export default async function (call: ApiCall) { + let req = call.req; + if (!G.gc.fightPlan[req.type] || !G.gc.herocom.szHeroLimit[req.movePos] || !G.gc.herocom.szHeroLimit[req.toPos]) return call.errorCode(-1); + + let matrixPos: typeof call.conn.gud.matrixPos = JSON.parse(JSON.stringify(call.conn.gud.matrixPos)); + if (!matrixPos[req.type][req.movePos]) return call.errorCode(-2); + + let m = matrixPos[req.type][req.movePos]; + let t = matrixPos[req.type][req.toPos]; + + matrixPos[req.type][req.toPos] = m; + matrixPos[req.type][req.movePos] = t; + + await PlayerFun.addAttr(call, { matrixPos: matrixPos }); + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/zhanqianbushu/ApiSelect.ts b/src/api_s2c/zhanqianbushu/ApiSelect.ts new file mode 100644 index 0000000..dd30153 --- /dev/null +++ b/src/api_s2c/zhanqianbushu/ApiSelect.ts @@ -0,0 +1,12 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqSelect, ResSelect } from "../../shared/protocols/zhanqianbushu/PtlSelect"; + +export default async function (call: ApiCall) { + let config = G.gc.fightPlan[call.req.type]; + if (!config && call.req.type != '') return call.error('', { code: -1 }); + + await PlayerFun.addAttr(call, { selectMatrix: call.req.type }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/api_s2c/zhanqianbushu/ApiUp.ts b/src/api_s2c/zhanqianbushu/ApiUp.ts new file mode 100644 index 0000000..19febf8 --- /dev/null +++ b/src/api_s2c/zhanqianbushu/ApiUp.ts @@ -0,0 +1,29 @@ +import { ApiCall } from "tsrpc"; +import { PlayerFun } from '../../public/player'; +import { ReqUp, ResUp } from "../../shared/protocols/zhanqianbushu/PtlUp"; +import { PublicShared } from "../../shared/public/public"; + +export default async function (call: ApiCall) { + let config = G.gc.fightPlan[call.req.type]; + if (!config) return call.error('', { code: -1 }); + + let conf = config[call.conn.gud.matrix[call.req.type]]; + + let need + if(conf.need.length > 0){ + need = conf.need.map(_need => { + return { + ..._need, + n: PublicShared.eval(_need.n, { zflv: call.conn.gud.matrix[call.req.type] }) + }; + }); + await PlayerFun.checkNeedIsMeet(call, need); + await PlayerFun.cutNeed(call, need); + } + + let obj = Object.assign({}, call.conn.gud.matrix); + obj[call.req.type]++; + await PlayerFun.addAttr(call, { matrix: obj }); + + call.succ({}); +} \ No newline at end of file diff --git a/src/clusterUtils.ts b/src/clusterUtils.ts new file mode 100644 index 0000000..1d60f29 --- /dev/null +++ b/src/clusterUtils.ts @@ -0,0 +1,191 @@ +import { RedisClientType, createClient } from "redis"; +import { redisClient } from "./setRedis"; +import { ConnectionStatus, WsServer } from "tsrpc"; +import cluster from 'cluster'; + +//维护当前uid和pid的对应关系 +let uid2processId = {}; +//订阅redis +let subscribeRedis : RedisClientType +//发布和可写redis复用原 setRedis 里的redisClient + + +/** + * 对外方法: + * 集群接收订阅 + * @param key 事件标记 + * @param callback 回调函数 + */ +export function clusterSubscribe(key:string, callback:Function){ + subscribeRedis.subscribe(G.redis.fromatKey(key),function(msg){ + callback(msg); + }); +} + +/** + * 对外方法: + * 集群发布 + * @param key 事件标记 + * @param data 发送数据 + */ +export function clusterPublish(key:string, data:any){ + redisClient.publish(G.redis.fromatKey(key),data); +} + +/** + * 对外方法: + * 在集群的N个进程中,只运行一次,在业务逻辑中也可使用 + */ +export function clusterRunOnce(fun){ + if(process.env.pm_id == null || process.env.pm_id === '0'){ + //非pm2启动的,或是pm2下启动的第一个进程 + fun(); + } +} + + +/** + * 设置玩家所在的processId + * @param uid 玩家uid + */ +export async function setUidProcessId(uid: string, _processId?: number){ + let pid = _processId!=null?_processId : process.pid; + uid2processId[ uid ] = pid; + redisClient.hSet(G.redis.fromatKey("uid2processId") , uid, pid); + + clusterPublish("setUid2ProcessId",JSON.stringify({ + "uid":uid, + "processId": pid + })) +} + +/** + * 清空玩家所在的processId,用于玩家下线时 + * @param uid 玩家uid + */ +export async function delUidProcessId(uid: string){ + delete uid2processId[ uid ]; + redisClient.hDel(G.redis.fromatKey("uid2processId") , uid); + + clusterPublish("delUidProcessId",JSON.stringify({ + "uid":uid + })) +} + + +/** + * 获取uid所在的processId + * @param uid + * @returns + */ +function getUidProcessId(uid: string){ + return uid2processId[uid] || null; +} + +/** + * 从redis中还原玩家的pid信息 + */ +async function initUid2processId(){ + let info = await redisClient.hGetAll(G.redis.fromatKey("uid2processId")) + for(let uid in info){ + uid2processId[uid] = info[uid]; + } +} + +/** + * 初始化订阅redis + */ +async function initSubscribeRedis(){ + subscribeRedis = createClient({ url: G.config.redisUrl }); + await subscribeRedis.connect(); + + //订阅其他进程用户登陆信息 + clusterSubscribe('setUid2ProcessId',function(msg){ + let data = JSON.parse(msg); + uid2processId[ data.uid ] = data.processId; + }); + //订阅其他进程用户登出信息 + clusterSubscribe('delUidProcessId',function(msg){ + let data = JSON.parse(msg); + delete uid2processId[ data.uid ]; + }); + //订阅其他进程要求的向指定用户发送信息 + clusterSubscribe('sendMsgByUid',function(msg){ + let data = JSON.parse(msg); + //如果在本进程才发送,避免在sendMsgByUid时递归publish + if( uid2processId[ data.uid ] == process.pid ){ + G.server.sendMsgByUid(data.uid, data.type , data.val); + } + }); + + //订阅其他进程广播信息 + clusterSubscribe('broadcastClusterMsg',function(msg){ + let data = JSON.parse(msg); + + if(!data.filter){ + G.server.broadcastMsg(data.msgName, data.msg); + }else{ + if(data.filter.ghId != null){ + //指定公会 + let conns = G.server.connections; + conns = conns.filter(c => c.gud.ghId == data.filter.ghId); + G.server.broadcastMsg(data.msgName, data.msg, conns); + } + } + }); +} + + +export async function clusterMain(){ + if(G.argv.serverType != "cross"){ + + //玩家登出时,清理 + G.on('PLAYER_DISCONNECT',function(uid){ + delUidProcessId(uid); + }); + //初始化订阅redis + await initSubscribeRedis(); + + clusterRunOnce(()=>{ + redisClient.del(G.redis.fromatKey("uid2processId")); + }); + + //初始化玩家pid信息 + await initUid2processId(); + } +} + +// WsServer 扩展,向单个玩家推送消息 +// 考虑集群情况 +WsServer.prototype.sendMsgByUid = async function (uid, type, val) { + if( uid2processId[ uid ] == process.pid ){ + //这个用户在本进程,直接发送 + if (G.server.uid_connections[uid]?.status == ConnectionStatus.Opened) { + G.server.uid_connections[uid].sendMsg(type, val); + } + }else{ + clusterPublish("sendMsgByUid",JSON.stringify({ + "uid": uid, + "type": type, + "val": val + })) + } +}; +//向整个集群广播信息 +WsServer.prototype.broadcastClusterMsg = async function (msgName, msg, filter): Promise<{ + isSucc: true; +} | { + isSucc: false; + errMsg: string; +}> { + + clusterPublish("broadcastClusterMsg",JSON.stringify({ + "msgName": msgName, + "msg": msg, + "filter": filter + })) + + return { + isSucc : true + }; +}; \ No newline at end of file diff --git a/src/config.json b/src/config.json new file mode 100644 index 0000000..12bbd4b --- /dev/null +++ b/src/config.json @@ -0,0 +1,5 @@ +{ + "msgPort": 8100, + "openTime": "2023-09-05 00:00:02", + "httpPort": 8101 +} \ No newline at end of file diff --git a/src/cross/protocols/clsl/PtlFindEnemy.ts b/src/cross/protocols/clsl/PtlFindEnemy.ts new file mode 100644 index 0000000..a3f5368 --- /dev/null +++ b/src/cross/protocols/clsl/PtlFindEnemy.ts @@ -0,0 +1,11 @@ +import { joinFightData } from '../../../shared/fightControl/fightType'; + + +export type ReqFindEnemy = { + uid: string; +}; + +export type ResFindEnemy = { + info: joinFightData; + allStar: number; +}; \ No newline at end of file diff --git a/src/cross/protocols/clsl/PtlLog.ts b/src/cross/protocols/clsl/PtlLog.ts new file mode 100644 index 0000000..a88a981 --- /dev/null +++ b/src/cross/protocols/clsl/PtlLog.ts @@ -0,0 +1,10 @@ +import { fightResult } from '../../../shared/fightControl/fightType'; + +export type ReqLog = { + uid: string; + result?: fightResult; +}; + +export type ResLog = { + logs?: fightResult[]; +}; \ No newline at end of file diff --git a/src/cross/protocols/clsl/PtlRank.ts b/src/cross/protocols/clsl/PtlRank.ts new file mode 100644 index 0000000..60b990b --- /dev/null +++ b/src/cross/protocols/clsl/PtlRank.ts @@ -0,0 +1,9 @@ +import { ResOpen } from '../../../shared/protocols/rank/PtlOpen'; +import { player } from '../../../shared/protocols/user/type'; + + +export type ReqRank = { + gud: player; +}; + +export type ResRank = ResOpen['']; \ No newline at end of file diff --git a/src/cross/protocols/clsl/PtlRankUids.ts b/src/cross/protocols/clsl/PtlRankUids.ts new file mode 100644 index 0000000..9938f0d --- /dev/null +++ b/src/cross/protocols/clsl/PtlRankUids.ts @@ -0,0 +1,9 @@ + + +export type ReqRankUids = { + +}; + +export type ResRankUids = { + uids: string[]; +}; \ No newline at end of file diff --git a/src/cross/protocols/clsl/PtlUpLoad.ts b/src/cross/protocols/clsl/PtlUpLoad.ts new file mode 100644 index 0000000..c198f72 --- /dev/null +++ b/src/cross/protocols/clsl/PtlUpLoad.ts @@ -0,0 +1,7 @@ +import { CollectionCllsCrossUser } from '../../../module/collection_clsl'; + +export type ReqUpLoad = Partial; + +export type ResUpLoad = { + +}; \ No newline at end of file diff --git a/src/cross/protocols/hbzb/jfs/PtlGetEnemy.ts b/src/cross/protocols/hbzb/jfs/PtlGetEnemy.ts new file mode 100644 index 0000000..3f85e94 --- /dev/null +++ b/src/cross/protocols/hbzb/jfs/PtlGetEnemy.ts @@ -0,0 +1,13 @@ +import { joinFightData } from '../../../../shared/fightControl/fightType'; + +export type ReqGetEnemy = { + uid: string; + auto: boolean; +}; + +export type ResGetEnemy = { + enemy: { + data: joinFightData; + jifen: number; + }[]; +}; \ No newline at end of file diff --git a/src/cross/protocols/hbzb/jfs/PtlGetLog.ts b/src/cross/protocols/hbzb/jfs/PtlGetLog.ts new file mode 100644 index 0000000..f8e018c --- /dev/null +++ b/src/cross/protocols/hbzb/jfs/PtlGetLog.ts @@ -0,0 +1,8 @@ +import { fightResult } from '../../../../shared/fightControl/fightType'; + + +export type ReqGetLog = { + uid: string; +}; + +export type ResGetLog = fightResult[]; \ No newline at end of file diff --git a/src/cross/protocols/hbzb/jfs/PtlGetRankList.ts b/src/cross/protocols/hbzb/jfs/PtlGetRankList.ts new file mode 100644 index 0000000..87f3f2e --- /dev/null +++ b/src/cross/protocols/hbzb/jfs/PtlGetRankList.ts @@ -0,0 +1,11 @@ +import { rankInfo } from '../../../../shared/protocols/type'; + + +export type ReqGetRankList = { + uid: string; +}; + +export type ResGetRankList = { + rankList: rankInfo[]; + jifen: number; +}; \ No newline at end of file diff --git a/src/cross/protocols/hbzb/jfs/PtlGetUser.ts b/src/cross/protocols/hbzb/jfs/PtlGetUser.ts new file mode 100644 index 0000000..684c4d5 --- /dev/null +++ b/src/cross/protocols/hbzb/jfs/PtlGetUser.ts @@ -0,0 +1,12 @@ +import { joinFightData } from '../../../../shared/fightControl/fightType'; + + +export type ReqGetUser = { + uid: string; +}; + +export type ResGetUser = { + data: joinFightData; + jifen: number; + rank: number; +}; \ No newline at end of file diff --git a/src/cross/protocols/hbzb/zbs/PtlGetEnemy.ts b/src/cross/protocols/hbzb/zbs/PtlGetEnemy.ts new file mode 100644 index 0000000..bdd030b --- /dev/null +++ b/src/cross/protocols/hbzb/zbs/PtlGetEnemy.ts @@ -0,0 +1,13 @@ +import { joinFightData } from '../../../../shared/fightControl/fightType'; + +export type ReqGetEnemy = { + uid: string; +}; + +export type ResGetEnemy = { + enemy: { + data: joinFightData; + rank: number; + }[]; + rank: number; +}; \ No newline at end of file diff --git a/src/cross/protocols/hbzb/zbs/PtlGetLog.ts b/src/cross/protocols/hbzb/zbs/PtlGetLog.ts new file mode 100644 index 0000000..f8e018c --- /dev/null +++ b/src/cross/protocols/hbzb/zbs/PtlGetLog.ts @@ -0,0 +1,8 @@ +import { fightResult } from '../../../../shared/fightControl/fightType'; + + +export type ReqGetLog = { + uid: string; +}; + +export type ResGetLog = fightResult[]; \ No newline at end of file diff --git a/src/cross/protocols/hbzb/zbs/PtlGetRankList.ts b/src/cross/protocols/hbzb/zbs/PtlGetRankList.ts new file mode 100644 index 0000000..3ffc052 --- /dev/null +++ b/src/cross/protocols/hbzb/zbs/PtlGetRankList.ts @@ -0,0 +1,8 @@ +import { rankInfo } from '../../../../shared/protocols/type'; + + +export type ReqGetRankList = {}; + +export type ResGetRankList = { + rankList: rankInfo[]; +}; \ No newline at end of file diff --git a/src/cross/protocols/hbzb/zbs/PtlGetStatus.ts b/src/cross/protocols/hbzb/zbs/PtlGetStatus.ts new file mode 100644 index 0000000..e3157e5 --- /dev/null +++ b/src/cross/protocols/hbzb/zbs/PtlGetStatus.ts @@ -0,0 +1,8 @@ + +export type ReqGetStatus = { + uid: string; +}; + +export type ResGetStatus = { + status: number; +}; \ No newline at end of file diff --git a/src/cross/protocols/hbzb/zbs/PtlSendJjcTop.ts b/src/cross/protocols/hbzb/zbs/PtlSendJjcTop.ts new file mode 100644 index 0000000..025ec1d --- /dev/null +++ b/src/cross/protocols/hbzb/zbs/PtlSendJjcTop.ts @@ -0,0 +1,10 @@ +import { rankInfo } from '../../../../shared/protocols/type'; + + +export type ReqSendJjcTop = { + tops: rankInfo[]; +}; + +export type ResSendJjcTop = { + +}; \ No newline at end of file diff --git a/src/cross/protocols/kbzz/PtlApply.ts b/src/cross/protocols/kbzz/PtlApply.ts new file mode 100644 index 0000000..dadf89c --- /dev/null +++ b/src/cross/protocols/kbzz/PtlApply.ts @@ -0,0 +1,12 @@ +import { joinFightData } from '../../../shared/fightControl/fightType'; + +/** + * 服务器向跨服报名 + */ +export type ReqApply = { + info: joinFightData; +}; + +export type ResApply = { + +}; \ No newline at end of file diff --git a/src/cross/protocols/kbzz/PtlGetUser.ts b/src/cross/protocols/kbzz/PtlGetUser.ts new file mode 100644 index 0000000..60f87b5 --- /dev/null +++ b/src/cross/protocols/kbzz/PtlGetUser.ts @@ -0,0 +1,10 @@ + + +export type ReqGetUser = { + uid: string; +}; + +export type ResGetUser = { + group: number; + troop: number; +}; \ No newline at end of file diff --git a/src/cross/protocols/kbzz/PtlGroupRank.ts b/src/cross/protocols/kbzz/PtlGroupRank.ts new file mode 100644 index 0000000..415bac4 --- /dev/null +++ b/src/cross/protocols/kbzz/PtlGroupRank.ts @@ -0,0 +1,19 @@ +import { player } from '../../../shared/protocols/user/type'; + + +export type ReqGroupRank = { + group: number; + troop: number; +}; + +export type ResGroupRank = { + rank: { + troop: number; + score: number; + }[]; + log: { + player: Partial[]; + troop: number[]; + winSide: number; + }[]; +}; \ No newline at end of file diff --git a/src/cross/protocols/kbzz/PtlRank.ts b/src/cross/protocols/kbzz/PtlRank.ts new file mode 100644 index 0000000..4386d36 --- /dev/null +++ b/src/cross/protocols/kbzz/PtlRank.ts @@ -0,0 +1,11 @@ +import { rankInfo } from '../../../shared/protocols/type'; + + +export type ReqRank = { + uid: string; +}; + +export type ResRank = { + rankList: rankInfo[]; + myRank: rankInfo; +}; \ No newline at end of file diff --git a/src/cross/protocols/kbzz/PtlRefresh.ts b/src/cross/protocols/kbzz/PtlRefresh.ts new file mode 100644 index 0000000..9db3628 --- /dev/null +++ b/src/cross/protocols/kbzz/PtlRefresh.ts @@ -0,0 +1,17 @@ +import { joinFightData } from '../../../shared/fightControl/fightType'; + +/** + * 刷新对手 + */ +export type ReqRefresh = { + group: number; + troop: number; +}; + +export type ResRefresh = { + enemy: { + info: joinFightData; + troop: number; + result: number | null; + }[]; +}; \ No newline at end of file diff --git a/src/cross/protocols/kbzz/PtlState.ts b/src/cross/protocols/kbzz/PtlState.ts new file mode 100644 index 0000000..4fcf76e --- /dev/null +++ b/src/cross/protocols/kbzz/PtlState.ts @@ -0,0 +1,12 @@ + +/** + * 服务器向跨服查询活动是否至少分了一组 + */ +export type ReqState = { + type: 'apply' | 'event'; +}; + +export type ResState = { + num: number; + succ: boolean; +}; \ No newline at end of file diff --git a/src/cross/protocols/kbzz/PtlUpUser.ts b/src/cross/protocols/kbzz/PtlUpUser.ts new file mode 100644 index 0000000..d3a6d36 --- /dev/null +++ b/src/cross/protocols/kbzz/PtlUpUser.ts @@ -0,0 +1,21 @@ +import { joinFightData } from '../../../shared/fightControl/fightType'; +import { player } from '../../../shared/protocols/user/type'; + + +export type ReqUpUser = { + uid: string; + info: joinFightData | null; + group: number; + troop: number; + addScore: number; + allScore: number; + log: { + player: Partial[]; + troop: number[]; + winSide: number; + }; +}; + +export type ResUpUser = { + +}; \ No newline at end of file diff --git a/src/cross/protocols/msg_cross/MsgCrossChat.ts b/src/cross/protocols/msg_cross/MsgCrossChat.ts new file mode 100644 index 0000000..35d7fcb --- /dev/null +++ b/src/cross/protocols/msg_cross/MsgCrossChat.ts @@ -0,0 +1,2 @@ + +export type MsgCrossChat = any; \ No newline at end of file diff --git a/src/cross/protocols/msg_cross/MsgHbzbChangeRank.ts b/src/cross/protocols/msg_cross/MsgHbzbChangeRank.ts new file mode 100644 index 0000000..c44861c --- /dev/null +++ b/src/cross/protocols/msg_cross/MsgHbzbChangeRank.ts @@ -0,0 +1,6 @@ + + +export type MsgHbzbChangeRank = { + uid: string; + toUid: string; +}; \ No newline at end of file diff --git a/src/cross/protocols/msg_cross/MsgHbzbJfsLog.ts b/src/cross/protocols/msg_cross/MsgHbzbJfsLog.ts new file mode 100644 index 0000000..e7c99e7 --- /dev/null +++ b/src/cross/protocols/msg_cross/MsgHbzbJfsLog.ts @@ -0,0 +1,8 @@ +import { fightResult } from '../../../shared/fightControl/fightType'; + + +export type MsgHbzbJfsLog = { + uid: string; + toUid: string; + log: fightResult; +}; \ No newline at end of file diff --git a/src/cross/protocols/msg_cross/MsgHbzbSendUser.ts b/src/cross/protocols/msg_cross/MsgHbzbSendUser.ts new file mode 100644 index 0000000..fb8a02a --- /dev/null +++ b/src/cross/protocols/msg_cross/MsgHbzbSendUser.ts @@ -0,0 +1,2 @@ + +export type MsgHbzbSendUser = any; \ No newline at end of file diff --git a/src/cross/protocols/msg_cross/MsgHbzbZbsLog.ts b/src/cross/protocols/msg_cross/MsgHbzbZbsLog.ts new file mode 100644 index 0000000..10990fe --- /dev/null +++ b/src/cross/protocols/msg_cross/MsgHbzbZbsLog.ts @@ -0,0 +1,8 @@ +import { fightResult } from '../../../shared/fightControl/fightType'; + + +export type MsgHbzbZbsLog = { + uid: string; + toUid: string; + log: fightResult; +}; \ No newline at end of file diff --git a/src/cross/protocols/serviceProto.ts b/src/cross/protocols/serviceProto.ts new file mode 100644 index 0000000..2df4768 --- /dev/null +++ b/src/cross/protocols/serviceProto.ts @@ -0,0 +1,4210 @@ +import { ServiceProto } from 'tsrpc-proto'; +import { ReqFindEnemy, ResFindEnemy } from './clsl/PtlFindEnemy'; +import { ReqLog, ResLog } from './clsl/PtlLog'; +import { ReqRank, ResRank } from './clsl/PtlRank'; +import { ReqRankUids, ResRankUids } from './clsl/PtlRankUids'; +import { ReqUpLoad, ResUpLoad } from './clsl/PtlUpLoad'; +import { ReqGetEnemy, ResGetEnemy } from './hbzb/jfs/PtlGetEnemy'; +import { ReqGetLog, ResGetLog } from './hbzb/jfs/PtlGetLog'; +import { ReqGetRankList, ResGetRankList } from './hbzb/jfs/PtlGetRankList'; +import { ReqGetUser, ResGetUser } from './hbzb/jfs/PtlGetUser'; +import { ReqGetEnemy as ReqGetEnemy_1, ResGetEnemy as ResGetEnemy_1 } from './hbzb/zbs/PtlGetEnemy'; +import { ReqGetLog as ReqGetLog_1, ResGetLog as ResGetLog_1 } from './hbzb/zbs/PtlGetLog'; +import { ReqGetRankList as ReqGetRankList_1, ResGetRankList as ResGetRankList_1 } from './hbzb/zbs/PtlGetRankList'; +import { ReqGetStatus, ResGetStatus } from './hbzb/zbs/PtlGetStatus'; +import { ReqSendJjcTop, ResSendJjcTop } from './hbzb/zbs/PtlSendJjcTop'; +import { ReqApply, ResApply } from './kbzz/PtlApply'; +import { ReqGetUser as ReqGetUser_1, ResGetUser as ResGetUser_1 } from './kbzz/PtlGetUser'; +import { ReqGroupRank, ResGroupRank } from './kbzz/PtlGroupRank'; +import { ReqRank as ReqRank_1, ResRank as ResRank_1 } from './kbzz/PtlRank'; +import { ReqRefresh, ResRefresh } from './kbzz/PtlRefresh'; +import { ReqState, ResState } from './kbzz/PtlState'; +import { ReqUpUser, ResUpUser } from './kbzz/PtlUpUser'; +import { MsgCrossChat } from './msg_cross/MsgCrossChat'; +import { MsgHbzbChangeRank } from './msg_cross/MsgHbzbChangeRank'; +import { MsgHbzbJfsLog } from './msg_cross/MsgHbzbJfsLog'; +import { MsgHbzbSendUser } from './msg_cross/MsgHbzbSendUser'; +import { MsgHbzbZbsLog } from './msg_cross/MsgHbzbZbsLog'; +import { ReqBaoMing, ResBaoMing } from './wzry/PtlBaoMing'; +import { ReqcatFightLog, RescatFightLog } from './wzry/PtlcatFightLog'; +import { ReqDldRefre, ResDldRefre } from './wzry/PtlDldRefre'; +import { ReqgetJingCai, ResgetJingCai } from './wzry/PtlgetJingCai'; +import { ReqRank as ReqRank_2, ResRank as ResRank_2 } from './wzry/PtlRank'; +import { ReqSetWzFight, ResSetWzFight } from './wzry/PtlSetWzFight'; +import { ReqUpdateFight, ResUpdateFight } from './wzry/PtlUpdateFight'; +import { ReqWzFightData, ResWzFightData } from './wzry/PtlWzFightData'; +import { ReqWzFightGroup, ResWzFightGroup } from './wzry/PtlWzFightGroup'; +import { ReqWzzd, ResWzzd } from './wzry/PtlWzzd'; + +export interface ServiceType { + api: { + "clsl/FindEnemy": { + req: ReqFindEnemy, + res: ResFindEnemy + }, + "clsl/Log": { + req: ReqLog, + res: ResLog + }, + "clsl/Rank": { + req: ReqRank, + res: ResRank + }, + "clsl/RankUids": { + req: ReqRankUids, + res: ResRankUids + }, + "clsl/UpLoad": { + req: ReqUpLoad, + res: ResUpLoad + }, + "hbzb/jfs/GetEnemy": { + req: ReqGetEnemy, + res: ResGetEnemy + }, + "hbzb/jfs/GetLog": { + req: ReqGetLog, + res: ResGetLog + }, + "hbzb/jfs/GetRankList": { + req: ReqGetRankList, + res: ResGetRankList + }, + "hbzb/jfs/GetUser": { + req: ReqGetUser, + res: ResGetUser + }, + "hbzb/zbs/GetEnemy": { + req: ReqGetEnemy_1, + res: ResGetEnemy_1 + }, + "hbzb/zbs/GetLog": { + req: ReqGetLog_1, + res: ResGetLog_1 + }, + "hbzb/zbs/GetRankList": { + req: ReqGetRankList_1, + res: ResGetRankList_1 + }, + "hbzb/zbs/GetStatus": { + req: ReqGetStatus, + res: ResGetStatus + }, + "hbzb/zbs/SendJjcTop": { + req: ReqSendJjcTop, + res: ResSendJjcTop + }, + "kbzz/Apply": { + req: ReqApply, + res: ResApply + }, + "kbzz/GetUser": { + req: ReqGetUser_1, + res: ResGetUser_1 + }, + "kbzz/GroupRank": { + req: ReqGroupRank, + res: ResGroupRank + }, + "kbzz/Rank": { + req: ReqRank_1, + res: ResRank_1 + }, + "kbzz/Refresh": { + req: ReqRefresh, + res: ResRefresh + }, + "kbzz/State": { + req: ReqState, + res: ResState + }, + "kbzz/UpUser": { + req: ReqUpUser, + res: ResUpUser + }, + "wzry/BaoMing": { + req: ReqBaoMing, + res: ResBaoMing + }, + "wzry/catFightLog": { + req: ReqcatFightLog, + res: RescatFightLog + }, + "wzry/DldRefre": { + req: ReqDldRefre, + res: ResDldRefre + }, + "wzry/getJingCai": { + req: ReqgetJingCai, + res: ResgetJingCai + }, + "wzry/Rank": { + req: ReqRank_2, + res: ResRank_2 + }, + "wzry/SetWzFight": { + req: ReqSetWzFight, + res: ResSetWzFight + }, + "wzry/UpdateFight": { + req: ReqUpdateFight, + res: ResUpdateFight + }, + "wzry/WzFightData": { + req: ReqWzFightData, + res: ResWzFightData + }, + "wzry/WzFightGroup": { + req: ReqWzFightGroup, + res: ResWzFightGroup + }, + "wzry/Wzzd": { + req: ReqWzzd, + res: ResWzzd + } + }, + msg: { + "msg_cross/CrossChat": MsgCrossChat, + "msg_cross/HbzbChangeRank": MsgHbzbChangeRank, + "msg_cross/HbzbJfsLog": MsgHbzbJfsLog, + "msg_cross/HbzbSendUser": MsgHbzbSendUser, + "msg_cross/HbzbZbsLog": MsgHbzbZbsLog + } +} + +export const serviceProto: ServiceProto = { + "services": [ + { + "id": 0, + "name": "clsl/FindEnemy", + "type": "api" + }, + { + "id": 1, + "name": "clsl/Log", + "type": "api" + }, + { + "id": 2, + "name": "clsl/Rank", + "type": "api" + }, + { + "id": 3, + "name": "clsl/RankUids", + "type": "api" + }, + { + "id": 4, + "name": "clsl/UpLoad", + "type": "api" + }, + { + "id": 5, + "name": "hbzb/jfs/GetEnemy", + "type": "api" + }, + { + "id": 6, + "name": "hbzb/jfs/GetLog", + "type": "api" + }, + { + "id": 7, + "name": "hbzb/jfs/GetRankList", + "type": "api" + }, + { + "id": 8, + "name": "hbzb/jfs/GetUser", + "type": "api" + }, + { + "id": 9, + "name": "hbzb/zbs/GetEnemy", + "type": "api" + }, + { + "id": 10, + "name": "hbzb/zbs/GetLog", + "type": "api" + }, + { + "id": 11, + "name": "hbzb/zbs/GetRankList", + "type": "api" + }, + { + "id": 12, + "name": "hbzb/zbs/GetStatus", + "type": "api" + }, + { + "id": 13, + "name": "hbzb/zbs/SendJjcTop", + "type": "api" + }, + { + "id": 14, + "name": "kbzz/Apply", + "type": "api" + }, + { + "id": 15, + "name": "kbzz/GetUser", + "type": "api" + }, + { + "id": 16, + "name": "kbzz/GroupRank", + "type": "api" + }, + { + "id": 17, + "name": "kbzz/Rank", + "type": "api" + }, + { + "id": 18, + "name": "kbzz/Refresh", + "type": "api" + }, + { + "id": 19, + "name": "kbzz/State", + "type": "api" + }, + { + "id": 20, + "name": "kbzz/UpUser", + "type": "api" + }, + { + "id": 21, + "name": "msg_cross/CrossChat", + "type": "msg" + }, + { + "id": 22, + "name": "msg_cross/HbzbChangeRank", + "type": "msg" + }, + { + "id": 23, + "name": "msg_cross/HbzbJfsLog", + "type": "msg" + }, + { + "id": 24, + "name": "msg_cross/HbzbSendUser", + "type": "msg" + }, + { + "id": 25, + "name": "msg_cross/HbzbZbsLog", + "type": "msg" + }, + { + "id": 26, + "name": "wzry/BaoMing", + "type": "api" + }, + { + "id": 27, + "name": "wzry/catFightLog", + "type": "api" + }, + { + "id": 28, + "name": "wzry/DldRefre", + "type": "api" + }, + { + "id": 29, + "name": "wzry/getJingCai", + "type": "api" + }, + { + "id": 30, + "name": "wzry/Rank", + "type": "api" + }, + { + "id": 31, + "name": "wzry/SetWzFight", + "type": "api" + }, + { + "id": 32, + "name": "wzry/UpdateFight", + "type": "api" + }, + { + "id": 33, + "name": "wzry/WzFightData", + "type": "api" + }, + { + "id": 34, + "name": "wzry/WzFightGroup", + "type": "api" + }, + { + "id": 35, + "name": "wzry/Wzzd", + "type": "api" + } + ], + "types": { + "clsl/PtlFindEnemy/ReqFindEnemy": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + } + ] + }, + "clsl/PtlFindEnemy/ResFindEnemy": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "info", + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/joinFightData" + } + }, + { + "id": 1, + "name": "allStar", + "type": { + "type": "Number" + } + } + ] + }, + "../../shared/fightControl/fightType/joinFightData": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "player", + "type": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Partial", + "target": { + "type": "IndexedAccess", + "index": "gud", + "objectType": { + "type": "Reference", + "target": "../../shared/protocols/user/PtlLogin/ResLogin" + } + } + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "buff", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + }, + { + "id": 1, + "name": "side", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 2, + "name": "pos", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + }, + "optional": true + }, + { + "id": 3, + "name": "attr", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + }, + { + "id": 4, + "name": "dead", + "type": { + "type": "Boolean" + }, + "optional": true + } + ] + } + } + ] + } + }, + { + "id": 1, + "name": "roles", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/roleDataType" + } + } + } + } + ] + }, + "../../shared/protocols/user/PtlLogin/ResLogin": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "gud", + "type": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Reference", + "target": "../../shared/protocols/user/PtlLogin/playerInfo" + } + }, + { + "id": 1, + "type": { + "type": "Reference", + "target": "../../shared/protocols/user/PtlLogin/playerAttr" + } + }, + { + "id": 2, + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "../../shared/protocols/user/PtlLogin/playerAppend" + } + } + } + ] + } + }, + { + "id": 1, + "name": "openTime", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "curTime", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "firstLogin", + "type": { + "type": "Boolean" + } + }, + { + "id": 4, + "name": "otherData", + "type": { + "type": "Any" + }, + "optional": true + } + ] + }, + "../../shared/protocols/user/PtlLogin/playerInfo": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "vip", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "bindUid", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "power", + "type": { + "type": "Number" + } + } + ] + }, + "../../shared/protocols/user/PtlLogin/playerAttr": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "nexp", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "jinbi", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "rmbmoney", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "rongyu", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "payExp", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 5, + "name": "guijinshu", + "type": { + "type": "Number" + }, + "optional": true + } + ] + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + } + } + ] + }, + "../../shared/protocols/user/PtlLogin/playerAppend": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "tujianLv", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "head", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 2, + "name": "headFrame", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 3, + "name": "chatFrame", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 4, + "name": "name", + "type": { + "type": "String" + } + }, + { + "id": 5, + "name": "model", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + } + } + } + }, + { + "id": 6, + "name": "renown", + "type": { + "type": "Number" + } + }, + { + "id": 7, + "name": "wxcLv", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "ids", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + ] + } + }, + { + "id": 8, + "name": "mapId", + "type": { + "type": "Number" + } + }, + { + "id": 9, + "name": "shoucangping", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 10, + "name": "useTujianLvPoint", + "type": { + "type": "Number" + } + }, + { + "id": 11, + "name": "skills", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 12, + "name": "fightSkills", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + }, + { + "id": 13, + "name": "heroPos", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + }, + { + "id": 14, + "name": "ghId", + "type": { + "type": "String" + } + }, + { + "id": 15, + "name": "ghName", + "type": { + "type": "String" + } + }, + { + "id": 16, + "name": "ghLevel", + "type": { + "type": "Reference", + "target": "../../shared/protocols/gonghui/type/gonghuiLevel" + } + }, + { + "id": 17, + "name": "ghwz", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + }, + { + "id": 18, + "name": "ghExitTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 19, + "name": "loginTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 20, + "name": "logoutTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 21, + "name": "cTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 22, + "name": "loginDays", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 23, + "name": "serverName", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 24, + "name": "sid", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 25, + "name": "onlineTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 26, + "name": "newonlinetime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 27, + "name": "isNpc", + "type": { + "type": "Boolean" + }, + "optional": true + }, + { + "id": 28, + "name": "matrix", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + }, + { + "id": 29, + "name": "matrixPos", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + } + }, + "optional": true + }, + { + "id": 30, + "name": "selectMatrix", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 31, + "name": "fightHeros", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + }, + "optional": true + }, + { + "id": 32, + "name": "helpHeros", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "jieji", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "heroId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + }, + "optional": true + }, + { + "id": 3, + "name": "heroPosId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + }, + { + "id": 2, + "type": { + "type": "Literal" + } + } + ] + }, + "optional": true + } + ] + } + }, + "optional": true + }, + { + "id": 33, + "name": "changeNameNum", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 34, + "name": "peijianUnlock", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + }, + "optional": true + }, + { + "id": 35, + "name": "headFrames", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + }, + { + "id": 36, + "name": "chatFrames", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + } + ] + }, + "../../shared/protocols/gonghui/type/gonghuiLevel": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 0 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 1 + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": 2 + } + }, + { + "id": 3, + "type": { + "type": "Literal", + "literal": 3 + } + }, + { + "id": 4, + "type": { + "type": "Literal", + "literal": 4 + } + } + ] + }, + "../../shared/fightControl/fightType/roleDataType": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Partial", + "target": { + "type": "IndexedAccess", + "index": "", + "objectType": { + "type": "IndexedAccess", + "index": "list", + "objectType": { + "type": "Reference", + "target": "../../shared/protocols/hero/PtlGetList/ResGetList" + } + } + } + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "attr", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + } + }, + { + "id": 1, + "name": "side", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 2, + "name": "pos", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + }, + "optional": true + }, + { + "id": 3, + "name": "dead", + "type": { + "type": "Boolean" + }, + "optional": true + }, + { + "id": 4, + "name": "lockHp", + "type": { + "type": "Boolean" + }, + "optional": true + }, + { + "id": 5, + "name": "maxhp", + "type": { + "type": "Number" + }, + "optional": true + } + ] + } + }, + { + "id": 2, + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + } + } + ] + }, + "../../shared/protocols/hero/PtlGetList/ResGetList": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "list", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "heroId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 2, + "name": "lv", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "jieji", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "getTime", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 1, + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "../../shared/protocols/hero/PtlGetList/heroAddKey" + } + } + } + ] + } + } + } + }, + { + "id": 1, + "name": "pos", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + }, + { + "id": 2, + "name": "lshd", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 3, + "name": "gbzj", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Boolean" + } + } + } + } + ] + }, + "../../shared/protocols/hero/PtlGetList/heroAddKey": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "equip", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + }, + { + "id": 1, + "name": "zhanli", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "weapon", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "jieji", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "star", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "starProbability", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 3, + "name": "shiwu", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Reference", + "target": "../../shared/protocols/type/heroShiWu" + } + } + } + }, + { + "id": 4, + "name": "qiannneg", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 5, + "name": "awake", + "type": { + "type": "Number" + } + }, + { + "id": 6, + "name": "talent", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 7, + "name": "peijian", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + } + ] + }, + "../../shared/protocols/type/heroShiWu": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "target": { + "type": "IndexedAccess", + "index": "", + "objectType": { + "type": "IndexedAccess", + "index": "list", + "objectType": { + "type": "Reference", + "target": "../../shared/protocols/shiwu/PtlGetList/ResGetList" + } + } + }, + "keys": [ + "_id", + "jichu", + "fujia", + "zhuanshu" + ], + "type": "Pick" + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "shiwuId", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 1, + "name": "colour", + "type": { + "type": "Number" + }, + "optional": true + } + ] + } + } + ] + }, + "../../shared/protocols/shiwu/PtlGetList/ResGetList": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "list", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "colour", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "shiwuId", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "wearId", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "jichu", + "type": { + "type": "Array", + "elementType": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + } + } + }, + { + "id": 5, + "name": "fujia", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "colour", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "buffKey", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "buffVal", + "type": { + "type": "Number" + } + } + ] + } + } + }, + { + "id": 6, + "name": "zhuanshu", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hero", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "buff", + "type": { + "type": "Tuple", + "elementTypes": [ + { + "type": "String" + }, + { + "type": "Number" + } + ] + }, + "optional": true + }, + { + "id": 2, + "name": "skill", + "type": { + "type": "String" + }, + "optional": true + } + ] + }, + "optional": true + } + ] + } + } + } + } + ] + }, + "clsl/PtlLog/ReqLog": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "result", + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/fightResult" + }, + "optional": true + } + ] + }, + "../../shared/fightControl/fightType/fightResult": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "winSide", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "fightLog", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/recordDataType" + } + } + }, + { + "id": 2, + "name": "initData", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/joinFightData" + } + } + }, + { + "id": 3, + "name": "fightData", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/joinFightData" + } + } + }, + { + "id": 4, + "name": "totalDamage", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "0", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "1", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 5, + "name": "fightStatistics", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + } + }, + "optional": true + }, + { + "id": 6, + "name": "otherData", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "optional": true + } + ] + }, + "../../shared/fightControl/fightType/recordDataType": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/turn_Type" + } + }, + { + "id": 1, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/atk_Type" + } + }, + { + "id": 2, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/addBuff_type" + } + }, + { + "id": 3, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/delBuff_type" + } + }, + { + "id": 4, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/startAct_Type" + } + }, + { + "id": 5, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/stopAct_Type" + } + }, + { + "id": 6, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/fightEnd_Type" + } + }, + { + "id": 7, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/roleDead_Type" + } + }, + { + "id": 8, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/addHp_Type" + } + }, + { + "id": 9, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/downHp_Type" + } + }, + { + "id": 10, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/fanji_Type" + } + }, + { + "id": 11, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/fuhuo_Type" + } + }, + { + "id": 12, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/chongsheng_Type" + } + }, + { + "id": 13, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/playerNuqi_Type" + } + } + ] + }, + "../../shared/fightControl/fightType/turn_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "trun" + } + }, + { + "id": 1, + "name": "roundNums", + "type": { + "type": "Number" + } + } + ] + }, + "../../shared/fightControl/fightType/atk_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "atk" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "targets", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + }, + { + "id": 3, + "name": "skillId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 4, + "name": "rolesInfo", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/atkRoleInfo_Type" + } + } + } + } + ] + }, + "../../shared/fightControl/fightType/atkRoleInfo_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "ov", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "nv", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "miss", + "type": { + "type": "Boolean" + } + }, + { + "id": 3, + "name": "baoji", + "type": { + "type": "Boolean" + } + } + ] + }, + "../../shared/fightControl/fightType/addBuff_type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "addBuff" + } + }, + { + "id": 1, + "name": "toRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "skillId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 4, + "name": "buffType", + "type": { + "type": "String" + } + }, + { + "id": 5, + "name": "buffId", + "type": { + "type": "String" + } + } + ] + }, + "../../shared/fightControl/fightType/delBuff_type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "delBuff" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "skillId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 3, + "name": "buffId", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "buffType", + "type": { + "type": "String" + } + }, + { + "id": 5, + "name": "why", + "type": { + "type": "String" + }, + "optional": true + } + ] + }, + "../../shared/fightControl/fightType/startAct_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "startAct" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + } + ] + }, + "../../shared/fightControl/fightType/stopAct_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "stopAct" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + } + ] + }, + "../../shared/fightControl/fightType/fightEnd_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "fightEnd" + } + }, + { + "id": 1, + "name": "winSide", + "type": { + "type": "Number" + } + } + ] + }, + "../../shared/fightControl/fightType/roleDead_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "roleDead" + } + }, + { + "id": 1, + "name": "isFuhou", + "type": { + "type": "Boolean" + } + }, + { + "id": 2, + "name": "fromRole", + "type": { + "type": "String" + } + } + ] + }, + "../../shared/fightControl/fightType/addHp_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "addHp" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "why", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "buffId", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "nv", + "type": { + "type": "Number" + } + }, + { + "id": 5, + "name": "ov", + "type": { + "type": "Number" + } + } + ] + }, + "../../shared/fightControl/fightType/downHp_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "downHp" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "why", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "buffId", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "nv", + "type": { + "type": "Number" + } + }, + { + "id": 5, + "name": "ov", + "type": { + "type": "Number" + } + } + ] + }, + "../../shared/fightControl/fightType/fanji_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "fanji" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "targets", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + }, + { + "id": 3, + "name": "skillId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 4, + "name": "rolesInfo", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/atkRoleInfo_Type" + } + } + } + } + ] + }, + "../../shared/fightControl/fightType/fuhuo_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "fuhuo" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "target", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "nv", + "type": { + "type": "Number" + } + } + ] + }, + "../../shared/fightControl/fightType/chongsheng_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "chongsheng" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "target", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "nv", + "type": { + "type": "Number" + } + } + ] + }, + "../../shared/fightControl/fightType/playerNuqi_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "playerNuqi" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "maxnuqi", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "nuqi", + "type": { + "type": "Number" + } + } + ] + }, + "clsl/PtlLog/ResLog": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "logs", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/fightResult" + } + }, + "optional": true + } + ] + }, + "clsl/PtlRank/ReqRank": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "gud", + "type": { + "type": "Reference", + "target": "../../shared/protocols/user/type/player" + } + } + ] + }, + "../../shared/protocols/user/type/player": { + "type": "IndexedAccess", + "index": "gud", + "objectType": { + "type": "Reference", + "target": "../../shared/protocols/user/PtlLogin/ResLogin" + } + }, + "clsl/PtlRank/ResRank": { + "type": "IndexedAccess", + "index": "", + "objectType": { + "type": "Reference", + "target": "../../shared/protocols/rank/PtlOpen/ResOpen" + } + }, + "../../shared/protocols/rank/PtlOpen/ResOpen": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "rankList", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../../shared/protocols/type/rankInfo" + } + } + }, + { + "id": 1, + "name": "myRank", + "type": { + "type": "Reference", + "target": "../../shared/protocols/type/rankInfo" + } + } + ] + } + } + }, + "../../shared/protocols/type/rankInfo": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "rank", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 1, + "name": "player", + "type": { + "type": "Partial", + "target": { + "type": "IndexedAccess", + "index": "gud", + "objectType": { + "type": "Reference", + "target": "../../shared/protocols/user/PtlLogin/ResLogin" + } + } + } + }, + { + "id": 2, + "name": "roles", + "type": { + "type": "IndexedAccess", + "index": "roles", + "objectType": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/joinFightData" + } + }, + "optional": true + }, + { + "id": 3, + "name": "valArr", + "type": { + "type": "Array", + "elementType": { + "type": "Any" + } + }, + "optional": true + }, + { + "id": 4, + "name": "otherData", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "optional": true + }, + { + "id": 5, + "name": "utime", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "clsl/PtlRankUids/ReqRankUids": { + "type": "Interface" + }, + "clsl/PtlRankUids/ResRankUids": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uids", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + } + ] + }, + "clsl/PtlUpLoad/ReqUpLoad": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "../../module/collection_clsl/CollectionCllsCrossUser" + } + }, + "../../module/collection_clsl/CollectionCllsCrossUser": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "area", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "allStar", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "info", + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/joinFightData" + } + } + ] + }, + "clsl/PtlUpLoad/ResUpLoad": { + "type": "Interface" + }, + "hbzb/jfs/PtlGetEnemy/ReqGetEnemy": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "auto", + "type": { + "type": "Boolean" + } + } + ] + }, + "hbzb/jfs/PtlGetEnemy/ResGetEnemy": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "enemy", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "data", + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/joinFightData" + } + }, + { + "id": 1, + "name": "jifen", + "type": { + "type": "Number" + } + } + ] + } + } + } + ] + }, + "hbzb/jfs/PtlGetLog/ReqGetLog": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + } + ] + }, + "hbzb/jfs/PtlGetLog/ResGetLog": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/fightResult" + } + }, + "hbzb/jfs/PtlGetRankList/ReqGetRankList": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + } + ] + }, + "hbzb/jfs/PtlGetRankList/ResGetRankList": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "rankList", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../../shared/protocols/type/rankInfo" + } + } + }, + { + "id": 1, + "name": "jifen", + "type": { + "type": "Number" + } + } + ] + }, + "hbzb/jfs/PtlGetUser/ReqGetUser": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + } + ] + }, + "hbzb/jfs/PtlGetUser/ResGetUser": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "data", + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/joinFightData" + } + }, + { + "id": 1, + "name": "jifen", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "rank", + "type": { + "type": "Number" + } + } + ] + }, + "hbzb/zbs/PtlGetEnemy/ReqGetEnemy": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + } + ] + }, + "hbzb/zbs/PtlGetEnemy/ResGetEnemy": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "enemy", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "data", + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/joinFightData" + } + }, + { + "id": 1, + "name": "rank", + "type": { + "type": "Number" + } + } + ] + } + } + }, + { + "id": 1, + "name": "rank", + "type": { + "type": "Number" + } + } + ] + }, + "hbzb/zbs/PtlGetLog/ReqGetLog": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + } + ] + }, + "hbzb/zbs/PtlGetLog/ResGetLog": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/fightResult" + } + }, + "hbzb/zbs/PtlGetRankList/ReqGetRankList": { + "type": "Interface" + }, + "hbzb/zbs/PtlGetRankList/ResGetRankList": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "rankList", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../../shared/protocols/type/rankInfo" + } + } + } + ] + }, + "hbzb/zbs/PtlGetStatus/ReqGetStatus": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + } + ] + }, + "hbzb/zbs/PtlGetStatus/ResGetStatus": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "status", + "type": { + "type": "Number" + } + } + ] + }, + "hbzb/zbs/PtlSendJjcTop/ReqSendJjcTop": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "tops", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../../shared/protocols/type/rankInfo" + } + } + } + ] + }, + "hbzb/zbs/PtlSendJjcTop/ResSendJjcTop": { + "type": "Interface" + }, + "kbzz/PtlApply/ReqApply": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "info", + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/joinFightData" + } + } + ] + }, + "kbzz/PtlApply/ResApply": { + "type": "Interface" + }, + "kbzz/PtlGetUser/ReqGetUser": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + } + ] + }, + "kbzz/PtlGetUser/ResGetUser": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "group", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "troop", + "type": { + "type": "Number" + } + } + ] + }, + "kbzz/PtlGroupRank/ReqGroupRank": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "group", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "troop", + "type": { + "type": "Number" + } + } + ] + }, + "kbzz/PtlGroupRank/ResGroupRank": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "rank", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "troop", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "score", + "type": { + "type": "Number" + } + } + ] + } + } + }, + { + "id": 1, + "name": "log", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "player", + "type": { + "type": "Array", + "elementType": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "../../shared/protocols/user/type/player" + } + } + } + }, + { + "id": 1, + "name": "troop", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 2, + "name": "winSide", + "type": { + "type": "Number" + } + } + ] + } + } + } + ] + }, + "kbzz/PtlRank/ReqRank": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + } + ] + }, + "kbzz/PtlRank/ResRank": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "rankList", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../../shared/protocols/type/rankInfo" + } + } + }, + { + "id": 1, + "name": "myRank", + "type": { + "type": "Reference", + "target": "../../shared/protocols/type/rankInfo" + } + } + ] + }, + "kbzz/PtlRefresh/ReqRefresh": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "group", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "troop", + "type": { + "type": "Number" + } + } + ] + }, + "kbzz/PtlRefresh/ResRefresh": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "enemy", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "info", + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/joinFightData" + } + }, + { + "id": 1, + "name": "troop", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "result", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Number" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": null + } + } + ] + } + } + ] + } + } + } + ] + }, + "kbzz/PtlState/ReqState": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "apply" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "event" + } + } + ] + } + } + ] + }, + "kbzz/PtlState/ResState": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "succ", + "type": { + "type": "Boolean" + } + } + ] + }, + "kbzz/PtlUpUser/ReqUpUser": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "info", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/joinFightData" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": null + } + } + ] + } + }, + { + "id": 2, + "name": "group", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "troop", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "addScore", + "type": { + "type": "Number" + } + }, + { + "id": 5, + "name": "allScore", + "type": { + "type": "Number" + } + }, + { + "id": 6, + "name": "log", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "player", + "type": { + "type": "Array", + "elementType": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "../../shared/protocols/user/type/player" + } + } + } + }, + { + "id": 1, + "name": "troop", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 2, + "name": "winSide", + "type": { + "type": "Number" + } + } + ] + } + } + ] + }, + "kbzz/PtlUpUser/ResUpUser": { + "type": "Interface" + }, + "msg_cross/MsgCrossChat/MsgCrossChat": { + "type": "Any" + }, + "msg_cross/MsgHbzbChangeRank/MsgHbzbChangeRank": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "toUid", + "type": { + "type": "String" + } + } + ] + }, + "msg_cross/MsgHbzbJfsLog/MsgHbzbJfsLog": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "toUid", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "log", + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/fightResult" + } + } + ] + }, + "msg_cross/MsgHbzbSendUser/MsgHbzbSendUser": { + "type": "Any" + }, + "msg_cross/MsgHbzbZbsLog/MsgHbzbZbsLog": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "toUid", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "log", + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/fightResult" + } + } + ] + }, + "wzry/PtlBaoMing/ReqBaoMing": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "data", + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/joinFightData" + } + }, + { + "id": 1, + "name": "zkey", + "type": { + "type": "String" + } + } + ] + }, + "wzry/PtlBaoMing/ResBaoMing": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "mydata", + "type": { + "type": "Reference", + "target": "../../shared/protocols/wzry/PtlOpen/wangzherongyao_baoming" + } + } + ] + }, + "../../shared/protocols/wzry/PtlOpen/wangzherongyao_baoming": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "jifen", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "zkey", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "data", + "type": { + "type": "Reference", + "target": "../../shared/protocols/wzry/PtlOpen/wangzherongyao_biaogeshi" + } + }, + { + "id": 4, + "name": "deep", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 5, + "name": "rank", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "../../shared/protocols/wzry/PtlOpen/wangzherongyao_biaogeshi": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "player", + "type": { + "type": "Partial", + "target": { + "type": "IndexedAccess", + "index": "gud", + "objectType": { + "type": "Reference", + "target": "../../shared/protocols/user/PtlLogin/ResLogin" + } + } + } + }, + { + "id": 1, + "name": "roles", + "type": { + "type": "IndexedAccess", + "index": "roles", + "objectType": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/joinFightData" + } + } + }, + { + "id": 2, + "name": "valArr", + "type": { + "type": "Array", + "elementType": { + "type": "Any" + } + }, + "optional": true + } + ] + }, + "wzry/PtlcatFightLog/ReqcatFightLog": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "fid", + "type": { + "type": "String" + } + } + ] + }, + "wzry/PtlcatFightLog/RescatFightLog": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "result", + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/fightResult" + } + } + ] + }, + "wzry/PtlDldRefre/ReqDldRefre": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + } + ] + }, + "wzry/PtlDldRefre/ResDldRefre": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "info", + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/joinFightData" + } + } + ] + }, + "wzry/PtlgetJingCai/ReqgetJingCai": { + "type": "Interface" + }, + "wzry/PtlgetJingCai/ResgetJingCai": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + } + } + ] + }, + "wzry/PtlRank/ReqRank": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "gud", + "type": { + "type": "Reference", + "target": "../../shared/protocols/user/type/player" + } + } + ] + }, + "wzry/PtlRank/ResRank": { + "type": "IndexedAccess", + "index": "", + "objectType": { + "type": "Reference", + "target": "../../shared/protocols/rank/PtlOpen/ResOpen" + } + }, + "wzry/PtlSetWzFight/ReqSetWzFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "data", + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/joinFightData" + } + }, + { + "id": 1, + "name": "zkey", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "jifen", + "type": { + "type": "Number" + } + } + ] + }, + "wzry/PtlSetWzFight/ResSetWzFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "mydata", + "type": { + "type": "Reference", + "target": "../../shared/protocols/wzry/PtlOpen/wangzherongyao_baoming" + } + }, + { + "id": 1, + "name": "rank", + "type": { + "type": "Number" + } + } + ] + }, + "wzry/PtlUpdateFight/ReqUpdateFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "setdata", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "optional": true + }, + { + "id": 2, + "name": "isjingcai", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 3, + "name": "isdelemail", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "isdel", + "type": { + "type": "Boolean" + } + }, + { + "id": 1, + "name": "email", + "type": { + "type": "Array", + "elementType": { + "type": "Any" + } + } + } + ] + }, + "optional": true + } + ] + }, + "wzry/PtlUpdateFight/ResUpdateFight": { + "type": "Interface" + }, + "wzry/PtlWzFightData/ReqWzFightData": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "iswzfight", + "type": { + "type": "Boolean" + }, + "optional": true + }, + { + "id": 2, + "name": "iswzzd", + "type": { + "type": "Boolean" + }, + "optional": true + }, + { + "id": 3, + "name": "isdel", + "type": { + "type": "Boolean" + }, + "optional": true + }, + { + "id": 4, + "name": "isemail", + "type": { + "type": "Boolean" + }, + "optional": true + } + ] + }, + "wzry/PtlWzFightData/ResWzFightData": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "info", + "type": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Reference", + "target": "../../shared/protocols/wzry/PtlOpen/wangzherongyao_baoming" + } + }, + { + "id": 1, + "type": { + "type": "Reference", + "target": "../../shared/protocols/wzry/PtlOpen/wangzherongyao_fight_group" + } + } + ] + }, + "optional": true + }, + { + "id": 1, + "name": "wzzd", + "type": { + "type": "Reference", + "target": "../../shared/protocols/wzry/PtlOpen/wangzherongyao_fourWiner" + }, + "optional": true + }, + { + "id": 2, + "name": "crossEmail", + "type": { + "type": "Array", + "elementType": { + "type": "Any" + } + }, + "optional": true + } + ] + }, + "../../shared/protocols/wzry/PtlOpen/wangzherongyao_fight_group": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "groupinfo", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "groupid", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "orderid", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "order", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "optional": true + }, + { + "id": 1, + "name": "matchlog", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "optional": true + }, + { + "id": 2, + "name": "isprize", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "optional": true + } + ] + }, + "../../shared/protocols/wzry/PtlOpen/wangzherongyao_fourWiner": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "round", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "zkey", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "ranklist", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../../module/collection_wzryfight/CollectionWzryCrossFight" + } + } + }, + { + "id": 3, + "name": "ctime", + "type": { + "type": "Number" + } + } + ] + }, + "../../module/collection_wzryfight/CollectionWzryCrossFight": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Reference", + "target": "../../shared/protocols/wzry/PtlOpen/wangzherongyao_baoming" + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + } + ] + } + }, + { + "id": 2, + "type": { + "type": "Reference", + "target": "../../shared/protocols/wzry/PtlOpen/wangzherongyao_fight_group" + } + } + ] + }, + "wzry/PtlWzFightGroup/ReqWzFightGroup": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "where", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + } + } + ] + }, + "wzry/PtlWzFightGroup/ResWzFightGroup": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "info", + "type": { + "type": "Array", + "elementType": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Reference", + "target": "../../shared/protocols/wzry/PtlOpen/wangzherongyao_baoming" + } + }, + { + "id": 1, + "type": { + "type": "Reference", + "target": "../../shared/protocols/wzry/PtlOpen/wangzherongyao_fight_group" + } + } + ] + } + } + } + ] + }, + "wzry/PtlWzzd/ReqWzzd": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "where", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "optional": true + } + ] + }, + "wzry/PtlWzzd/ResWzzd": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "wzzdlist", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../../shared/protocols/wzry/PtlOpen/wangzherongyao_fourWiner" + } + } + } + ] + } + } +}; \ No newline at end of file diff --git a/src/cross/protocols/wzry/PtlBaoMing.ts b/src/cross/protocols/wzry/PtlBaoMing.ts new file mode 100644 index 0000000..fcbab6f --- /dev/null +++ b/src/cross/protocols/wzry/PtlBaoMing.ts @@ -0,0 +1,15 @@ +import { StringifyOptions } from "querystring"; +import { joinFightData } from "../../../shared/fightControl/fightType"; +import { player } from "../../../shared/protocols/user/type"; +import { wangzherongyao_baoming } from "../../../shared/protocols/wzry/PtlOpen"; + + +export type ReqBaoMing = { + data: joinFightData + /**周 key */ + zkey: string +}; + +export type ResBaoMing = { + mydata: wangzherongyao_baoming +} \ No newline at end of file diff --git a/src/cross/protocols/wzry/PtlDldRefre.ts b/src/cross/protocols/wzry/PtlDldRefre.ts new file mode 100644 index 0000000..836ea85 --- /dev/null +++ b/src/cross/protocols/wzry/PtlDldRefre.ts @@ -0,0 +1,12 @@ +/** + * 王者荣耀 大乱斗刷新对手 + */ +import { joinFightData } from '../../../shared/fightControl/fightType'; + +export type ReqDldRefre = { + uid: string +}; + +export type ResDldRefre = { + info: joinFightData +}; diff --git a/src/cross/protocols/wzry/PtlRank.ts b/src/cross/protocols/wzry/PtlRank.ts new file mode 100644 index 0000000..60b990b --- /dev/null +++ b/src/cross/protocols/wzry/PtlRank.ts @@ -0,0 +1,9 @@ +import { ResOpen } from '../../../shared/protocols/rank/PtlOpen'; +import { player } from '../../../shared/protocols/user/type'; + + +export type ReqRank = { + gud: player; +}; + +export type ResRank = ResOpen['']; \ No newline at end of file diff --git a/src/cross/protocols/wzry/PtlSetWzFight.ts b/src/cross/protocols/wzry/PtlSetWzFight.ts new file mode 100644 index 0000000..4d0d771 --- /dev/null +++ b/src/cross/protocols/wzry/PtlSetWzFight.ts @@ -0,0 +1,18 @@ +import { StringifyOptions } from "querystring"; +import { joinFightData } from "../../../shared/fightControl/fightType"; +import { player } from "../../../shared/protocols/user/type"; +import { wangzherongyao_baoming } from "../../../shared/protocols/wzry/PtlOpen"; + + +export type ReqSetWzFight = { + data: joinFightData + /**周 key */ + zkey: string + /**积分 */ + jifen: number +}; + +export type ResSetWzFight = { + mydata: wangzherongyao_baoming + rank: number +} \ No newline at end of file diff --git a/src/cross/protocols/wzry/PtlUpdateFight.ts b/src/cross/protocols/wzry/PtlUpdateFight.ts new file mode 100644 index 0000000..78a01de --- /dev/null +++ b/src/cross/protocols/wzry/PtlUpdateFight.ts @@ -0,0 +1,19 @@ +import { StringifyOptions } from "querystring"; +import { CollectionWzryCrossFight } from "../../../module/collection_wzryfight"; +import { joinFightData } from "../../../shared/fightControl/fightType"; +import { player } from "../../../shared/protocols/user/type"; +import { wangzherongyao_baoming } from "../../../shared/protocols/wzry/PtlOpen"; + + +export type ReqUpdateFight = { + uid: string + setdata?: { [id: string]: any } + isjingcai?: number + isdelemail?: { + isdel: boolean + email: any[] + } +}; + +export type ResUpdateFight = { +} \ No newline at end of file diff --git a/src/cross/protocols/wzry/PtlWzFightData.ts b/src/cross/protocols/wzry/PtlWzFightData.ts new file mode 100644 index 0000000..1805fc4 --- /dev/null +++ b/src/cross/protocols/wzry/PtlWzFightData.ts @@ -0,0 +1,22 @@ +/** + * 王者荣耀 大乱斗玩家战斗数据 + */ +import { CollectionEmail } from '../../../module/collection_email'; +import { joinFightData } from '../../../shared/fightControl/fightType'; +import { wangzherongyao_baoming, wangzherongyao_fight_group, wangzherongyao_fourWiner } from '../../../shared/protocols/wzry/PtlOpen'; + +export type ReqWzFightData = { + uid: string + iswzfight?: boolean + iswzzd?: boolean + /**是否删除跨服相关王者荣耀 */ + isdel?: boolean + /**查询跨服数据库的email */ + isemail?: boolean +}; + +export type ResWzFightData = { + info?: wangzherongyao_baoming & wangzherongyao_fight_group + wzzd?: wangzherongyao_fourWiner + crossEmail?: any[] +}; diff --git a/src/cross/protocols/wzry/PtlWzFightGroup.ts b/src/cross/protocols/wzry/PtlWzFightGroup.ts new file mode 100644 index 0000000..ac1c926 --- /dev/null +++ b/src/cross/protocols/wzry/PtlWzFightGroup.ts @@ -0,0 +1,13 @@ +/** + * 王者荣耀 大乱斗玩家战斗数据 + */ +import { joinFightData } from '../../../shared/fightControl/fightType'; +import { wangzherongyao_baoming, wangzherongyao_fight_group } from '../../../shared/protocols/wzry/PtlOpen'; + +export type ReqWzFightGroup = { + where: { [id: string]: any } +}; + +export type ResWzFightGroup = { + info: (wangzherongyao_baoming & wangzherongyao_fight_group)[] +}; diff --git a/src/cross/protocols/wzry/PtlWzzd.ts b/src/cross/protocols/wzry/PtlWzzd.ts new file mode 100644 index 0000000..8855506 --- /dev/null +++ b/src/cross/protocols/wzry/PtlWzzd.ts @@ -0,0 +1,13 @@ +import { StringifyOptions } from "querystring"; +import { joinFightData } from "../../../shared/fightControl/fightType"; +import { player } from "../../../shared/protocols/user/type"; +import { wangzherongyao_baoming, wangzherongyao_fourWiner } from "../../../shared/protocols/wzry/PtlOpen"; + + +export type ReqWzzd = { + where?: { [id: string]: any } +}; + +export type ResWzzd = { + wzzdlist: wangzherongyao_fourWiner[] +} \ No newline at end of file diff --git a/src/cross/protocols/wzry/PtlcatFightLog.ts b/src/cross/protocols/wzry/PtlcatFightLog.ts new file mode 100644 index 0000000..848bfd5 --- /dev/null +++ b/src/cross/protocols/wzry/PtlcatFightLog.ts @@ -0,0 +1,14 @@ +import { StringifyOptions } from "querystring"; +import { fightResult, joinFightData } from "../../../shared/fightControl/fightType"; +import { player } from "../../../shared/protocols/user/type"; +import { wangzherongyao_baoming } from "../../../shared/protocols/wzry/PtlOpen"; + + +export type ReqcatFightLog = { + /**战斗唯一id */ + fid: string +}; + +export type RescatFightLog = { + result: fightResult +} \ No newline at end of file diff --git a/src/cross/protocols/wzry/PtlgetJingCai.ts b/src/cross/protocols/wzry/PtlgetJingCai.ts new file mode 100644 index 0000000..430eea7 --- /dev/null +++ b/src/cross/protocols/wzry/PtlgetJingCai.ts @@ -0,0 +1,14 @@ +import { StringifyOptions } from "querystring"; +import { CollectionWzryCrossFight } from "../../../module/collection_wzryfight"; +import { joinFightData } from "../../../shared/fightControl/fightType"; +import { player } from "../../../shared/protocols/user/type"; +import { wangzherongyao_baoming } from "../../../shared/protocols/wzry/PtlOpen"; + + +export type ReqgetJingCai = { + +}; + +export type ResgetJingCai = { + num: number +} \ No newline at end of file diff --git a/src/encrypt.ts b/src/encrypt.ts new file mode 100644 index 0000000..bf666a6 --- /dev/null +++ b/src/encrypt.ts @@ -0,0 +1,74 @@ +import CryptoJS from 'crypto-js'; + +export class Encrypt { + static encrypt(buf: string | object | Uint8Array): string | object | Uint8Array { + // if (buf instanceof Uint8Array && !buf.encrypt) { + // return encryptUint8Array(buf); + // } + return buf; + } + static decrypt(buf: string | object | Uint8Array): string | object | Uint8Array { + if (buf instanceof Uint8Array) { + return decryptUint8Array(buf); + } + return buf; + } +} + +let aIv = [0x15, 0x4C, 0xD3, 0x55, 0xFE, 0xA1, 0xFF, 0x01, 0x00, 0x34, 0xAB, 0x22, 0x08, 0x4F, 0x13, 0x07]; +let aKey = [0x26, 0xAF, 0xE2, 0x1A, 0x0C, 0x16, 0x73, 0x54, 0x13, 0xFD, 0x68, 0xDD, 0x8F, 0xA0, 0xB7, 0xC1, 0x57, 0xA6, 0x90, 0xFF, 0xCD, 0xB3, 0x54, 0x61, 0x10, 0x07, 0xD5, 0x7E, 0xDB, 0x1E, 0x4C, 0xE9]; +let ivBv = new Uint8Array(aIv); +let keyBv = new Uint8Array(aKey); +let u8array = { + parse: function (u8arr: Uint8Array) { + var len = u8arr.length; + var words = []; + for (var i = 0; i < len; i++) { + words[i >>> 2] |= (u8arr[i] & 0xff) << (24 - (i % 4) * 8); + } + return CryptoJS.lib.WordArray.create(words, len); + }, + stringify: function (wordArray: CryptoJS.lib.WordArray) { + var words = wordArray.words; + var sigBytes = wordArray.sigBytes; + var u8 = new Uint8Array(sigBytes); + for (var i = 0; i < sigBytes; i++) { + var byte = (words[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff; + u8[i] = byte; + } + return u8; + } +}; + +const keyWA = u8array.parse(keyBv); +const ivWA = u8array.parse(ivBv); + +export function encryptUint8Array(array: Uint8Array) { + for (let i = 0; i < array.length; ++i) { + array[i] -= 1; + } + let contentWA = u8array.parse(array); + // let dcBase64String = contentWA.toString(CryptoJS.enc.Base64); + let encrypted = CryptoJS.AES.encrypt(contentWA, keyWA, { + iv: ivWA, + mode: CryptoJS.mode.CFB, + padding: CryptoJS.pad.NoPadding + }); + let u8 = u8array.stringify(encrypted.ciphertext); + return u8; +} + +function decryptUint8Array(array: Uint8Array) { + let contentWA = u8array.parse(array); + let dcBase64String = contentWA.toString(CryptoJS.enc.Base64); + let decrypted = CryptoJS.AES.decrypt(dcBase64String, keyWA, { + iv: ivWA, + mode: CryptoJS.mode.CFB, + padding: CryptoJS.pad.NoPadding + }); + let buf = u8array.stringify(decrypted); + for (let i = 0; i < buf.length; ++i) { + buf[i] += 1; + } + return buf; +} diff --git a/src/event.ts b/src/event.ts new file mode 100644 index 0000000..f4ea716 --- /dev/null +++ b/src/event.ts @@ -0,0 +1,327 @@ +/* + var emitter = EventEmitter.create(); + emitter.emit('my_event', args); + emitter.on('my_event', function(args){ + ...... + }); + + http://nodejs.org/api/events.html + */ + +const isUndefined = function (arg) { + return arg === void 0; +}; + +const isObject = function (arg) { + return typeof arg === "object" && arg !== null; +}; + +const isFunction = function (arg) { + return typeof arg === "function"; +}; + +function EventEmitter(maxListeners) { + this._events = this._events || {}; + this._maxListeners = maxListeners || undefined; +} + +// Backwards-compat with node 0.10.x +EventEmitter.EventEmitter = EventEmitter; + +EventEmitter.prototype._events = undefined; +EventEmitter.prototype._maxListeners = undefined; + +// By default EventEmitters will print a warning if more than 10 listeners are +// added to it. This is a useful default which helps finding memory leaks. +EventEmitter.defaultMaxListeners = 10; + + +// Obviously not all Emitters should be limited to 10. This function allows +// that to be increased. Set to zero for unlimited. +EventEmitter.prototype.setMaxListeners = function (n) { + if (isNaN(n) || n < 0) + throw TypeError("n must be a positive number"); + this._maxListeners = n; + return this; +}; + +EventEmitter.prototype.emit = function (type) { + var er, handler, len, args, i, listeners; + + if (!this._events) + this._events = {}; + + // If there is no 'error' event listener then throw. + if (type === "error" && !this._events.error) { + er = arguments[1]; + if (er instanceof Error) { + throw er; // Unhandled 'error' event + } else { + throw Error("Uncaught, unspecified \"error\" event."); + } + return false; + } + + handler = this._events[type]; + + if (isUndefined(handler)) + return false; + + if (isFunction(handler)) { + var __caller = handler.__caller || this; + switch (arguments.length) { + // fast cases + case 1: + handler.call(__caller); + break; + case 2: + handler.call(__caller, arguments[1]); + break; + case 3: + handler.call(__caller, arguments[1], arguments[2]); + break; + // slower + default: + len = arguments.length; + args = new Array(len - 1); + for (i = 1; i < len; i++) + args[i - 1] = arguments[i]; + handler.apply(__caller, args); + } + } else if (isObject(handler)) { + len = arguments.length; + args = new Array(len - 1); + for (i = 1; i < len; i++) + args[i - 1] = arguments[i]; + + listeners = handler.slice(); + len = listeners.length; + for (i = 0; i < len; i++) { + var __caller = listeners[i].__caller || this; + listeners[i].apply(__caller, args); + } + + } + + return true; +}; + +EventEmitter.prototype.addListener = function (type, listener, caller, returnListenter) { + + if (!isFunction(listener)) + throw TypeError("listener must be a function"); + + listener.__caller = caller; + + if (!this._events) + this._events = {}; + + // To avoid recursion in the case that type === "newListener"! Before + // adding it to the listeners, first emit "newListener". + if (this._events.newListener) + this.emit("newListener", type, + isFunction(listener.listener) ? + listener.listener : listener); + + if (!this._events[type]) + // Optimize the case of one listener. Don't need the extra array object. + this._events[type] = listener; + else if (isObject(this._events[type])) + // If we've already got an array, just append. + this._events[type].push(listener); + else + // Adding the second element, need to change to array. + this._events[type] = [this._events[type], listener]; + + // Check for listener leak + if (isObject(this._events[type]) && !this._events[type].warned) { + var m; + if (!isUndefined(this._maxListeners)) { + m = this._maxListeners; + } else { + m = EventEmitter.defaultMaxListeners; + } + + if (m && m > 0 && this._events[type].length > m) { + this._events[type].warned = true; + console.error("(node) warning: possible EventEmitter memory " + + "leak detected. %d listeners added. " + + "Use emitter.setMaxListeners() to increase limit.", + this._events[type].length); + //console.trace(); + } + } + + if (returnListenter) { + return listener; + } else { + return this; + } +}; + +EventEmitter.prototype.on = EventEmitter.prototype.addListener; + +EventEmitter.prototype.once = function (type, listener, caller) { + if (!isFunction(listener)) + throw TypeError("listener must be a function"); + + var fired = false; + var that = this; + + function g() { + that.removeListener(type, g); + + if (!fired) { + fired = true; + listener.apply(caller || that, arguments); + } + } + + g.listener = listener; + this.on(type, g, caller); + + return this; +}; + +EventEmitter.prototype.onnp = function (type, listener, key) { + if (!isFunction(listener)) + throw TypeError("listener must be a function"); + if (!this._noRepeatKey) this._noRepeatKey = {}; + + var _key = key; + if (_key == null) _key = type + "_" + listener.toString(); + + if (this._noRepeatKey[_key]) { + this.removeListener(type, this._noRepeatKey[_key]); + } + this._noRepeatKey[_key] = listener; + this.on(type, listener); + return this; +}; + +// emits a 'removeListener' event iff the listener was removed +EventEmitter.prototype.removeListener = EventEmitter.prototype.off = function (type, listener, caller) { + var list, position, length, i; + + if (!isFunction(listener)) { + throw TypeError("listener must be a function"); + //return this; + } + + + if (!this._events || !this._events[type]) + return this; + + list = this._events[type]; + length = list.length; + position = -1; + + if (list === listener || + (isFunction(list.listener) && list.listener === listener)) { + delete this._events[type]; + if (this._events.removeListener) + this.emit("removeListener", type, listener); + + } else if (isObject(list)) { + for (i = length; i-- > 0;) { + if (list[i] === listener || + (list[i].listener && list[i].listener === listener) || list[i].__caller == caller) { + position = i; + break; + } + } + + if (position < 0) + return this; + + if (list.length === 1) { + list.length = 0; + delete this._events[type]; + } else { + list.splice(position, 1); + } + + if (this._events.removeListener) + this.emit("removeListener", type, listener); + } + + return this; +}; + +EventEmitter.prototype.removeAllListenersExcept = function (type) { + for (var key in this._events) { + if (key === type) continue; + this.removeAllListeners(key); + } +}; + +EventEmitter.prototype.removeAllListeners = function (type) { + var key, listeners; + + if (!this._events) + return this; + + // not listening for removeListener, no need to emit + if (!this._events.removeListener) { + if (arguments.length === 0) + this._events = {}; + else if (this._events[type]) + delete this._events[type]; + return this; + } + + // emit removeListener for all listeners on all events + if (arguments.length === 0) { + for (key in this._events) { + if (key === "removeListener") continue; + this.removeAllListeners(key); + } + this.removeAllListeners("removeListener"); + this._events = {}; + return this; + } + + listeners = this._events[type]; + + if (isFunction(listeners)) { + this.removeListener(type, listeners); + } else if (Array.isArray(listeners)) { + // LIFO order + while (listeners.length) + this.removeListener(type, listeners[listeners.length - 1]); + } + delete this._events[type]; + this._noRepeatKey = {}; + + return this; +}; + +EventEmitter.prototype.listeners = function (type) { + var ret; + if (!this._events || !this._events[type]) + ret = []; + else if (isFunction(this._events[type])) + ret = [this._events[type]]; + else + ret = this._events[type].slice(); + return ret; +}; + +EventEmitter.listenerCount = function (emitter, type) { + var ret; + if (!emitter._events || !emitter._events[type]) + ret = 0; + else if (isFunction(emitter._events[type])) + ret = 1; + else + ret = emitter._events[type].length; + return ret; +}; + +export const MyEvent = EventEmitter as any as { + (maxListeners: number): void; + on(type: any, callback: any): any; + once(type: any, callback: any): any; + off(type: any, callback: any, caller?: any): void; + emit(type: any, ...args: any[]): void; +}; diff --git a/src/extends.ts b/src/extends.ts new file mode 100644 index 0000000..ac635a1 --- /dev/null +++ b/src/extends.ts @@ -0,0 +1,327 @@ + +import 'tsrpc'; +import { ApiCall, BaseConnection, ConnectionStatus, WsServer } from 'tsrpc'; +import { Wjjl } from './module/collection_wjjl'; +import { GH } from './public/gonghui/gh'; +import { GHManage } from './public/gonghui/manage'; +import { HeroFun } from './public/hero'; +import { Rank } from './public/rank/rank'; +import { UserFun } from './public/user'; +import { joinFightData, roleDataType } from './shared/fightControl/fightType'; +import { ResGetList } from './shared/protocols/item/PtlGetList'; +import { ServiceType } from './shared/protocols/serviceProto'; +import { ResLogin } from './shared/protocols/user/PtlLogin'; +import { HeroShared, otherBuff } from './shared/public/hero'; +import { PlayerShared } from './shared/public/player'; +import { PublicShared } from './shared/public/public'; + +export function extendType() { + +} + +type msg = ServiceType['msg']; +type s2cMsg = Omit; +type omitMsg = Pick; + +declare module 'tsrpc' { + export interface BaseConnection { + /**玩家上阵英雄 */ + get heroPos(): k_v; + /**有些功能会对英雄有属性加成 */ + get otherBuff(): otherBuff; + /**获取当前公会 */ + get gonghui(): GH; + /**玩家唯一uid 玩家登录时赋值*/ + uid: string; + /**玩家登录账号 玩家登录时赋值*/ + bindUid: string; + /**玩家数据 玩家登录时赋值*/ + gud: ResLogin['gud']; + /**玩家道具 玩家拉取道具列表时赋值*/ + item: ResGetList['list']; + /**历史获得 */ + lshd: Partial<{ + hero: k_v; + equip: k_v; + peijian: k_v; + }>; + /**玩家调用api的时间 */ + requstApiTime: k_v; + /**获取默认上阵战斗数据 */ + getDefaultFightData(def?: k_v): Promise; + /**刷新上阵英雄战力 */ + refreshPower(): Promise; + /**玩家计算在线时长时间戳 */ + onlineTime: number; + } + + export interface WsServer { + /**玩家uid对应的socket连接 */ + uid_connections: k_v>; + /**向单个玩家推送消息 */ + sendMsgByUid(uid: string, type: msgType, val: msg[msgType]): void; + + broadcastClusterMsg(msgName: T, msg: ServiceType['msg'][T], filter?: any): Promise<{ + isSucc: true; + } | { + isSucc: false; + errMsg: string; + }>; + } + + export interface ApiCall { + /**玩家唯一uid 玩家登录时赋值 */ + get uid(): string; + /**有些功能会对英雄有属性加成 */ + get otherBuff(): otherBuff; + /**接口回调之前自动推送的消息 */ + eventMsg: k_v>; + /**消息推送 */ + sendMsg(msgName: T, msg: ServiceType['msg'][T]): ReturnType; + /**添加推送消息 */ + addEventMsg(msgName: T, msgKey: string, msg: omitMsg[T]['']): void; + addEventMsg(msgName: T, msg: Partial): void; + addEventMsg(msgName: T, msgKey: 'equip' | 'hero' | 'peijian', msg: k_v): void; + /**返回错误码 */ + errorCode(code: number): Promise; + } + + export interface ApiServiceDef { + /** + *
+ * + * timeIntervalLimit?: number; ---> api调用间隔 默认500毫秒
+ * + * needGudKey?: string[]; ---> 需要玩家gud里面存在的字段 并且conn.gud[key]为true + */ + conf?: { + [k: string]: any; + }; + } +} + +//BaseConnection +Object.defineProperties(BaseConnection.prototype, { + 'heroPos': { + get(this: BaseConnection) { + return this.gud.heroPos; + }, + }, + 'otherBuff': { + get(this: BaseConnection): otherBuff { + return UserFun.getOtherBuff(this.gud); + }, + }, + 'gonghui': { + // ###debug GHManage 对象内同步转异步 + // 涉及call.conn.gonghui,对应引用变量处需增加await + async get(this: BaseConnection): Promise { + // return GHManage.list[this.gud.ghId]; + return await GHManage.getGH(this.gud.ghId); + } + }, +}); + +BaseConnection.prototype.getDefaultFightData = async function (this: BaseConnection, def?: k_v) { + let posObj = def || this.heroPos; + let roles: k_v = {}; + + if (!def && this.gud.selectMatrix && this.gud.matrixPos) { + posObj = this.gud.matrixPos[this.gud.selectMatrix]; + } + + let heros = await HeroFun.getHeros(this, Object.values(posObj).filter(_id => _id != '')); + + Object.entries(posObj).forEach(obj => { + let pos = obj[0]; + let _id = obj[1]; + let hero = heros.filter(h => h._id == _id)[0]; + + if (hero) { + roles[pos] = { + ...hero, + attr: { + ...HeroShared.getHeroBasicAttr(hero, { ...this.otherBuff, allBuff: HeroShared.getAllBuff(heros) }, Number(pos)) + } + }; + } + }); + + return { + player: { ...this.gud, buff: PlayerShared.getBuff(this.gud) }, + roles: roles + }; + +}; + +// 战力刷新 +BaseConnection.prototype.refreshPower = async function (this: BaseConnection) { + let power: number; + + const heroIds = Object.values(this.heroPos).filter(id => id != ''); + + if (heroIds.length < 1) return power = 0; + + const heros = (await HeroFun.getHeros(this, heroIds)).filter(hero => hero != null); + + if (heros.length < 1) return power = 0; + + let jiban = 0; + let powerObj = { + hero: 0, + zj: 0 + } + // 英雄战力 + powerObj.hero = heros.map((h, index) => { + let buff = HeroShared.getHeroBasicAttr(h, { ...this.otherBuff, allBuff: HeroShared.getAllBuff(heros) }, index + 1); + jiban += buff.jiban || 0; + return HeroShared.computeHeroZhanLi(buff); + }).reduce((a, b) => a + b); + Wjjl.setVal(this.uid, 'hero_jiban', jiban); + // 主角属性变量设置 + let zjBuff: k_v = { + zj_atk: 0, + zj_def: 0, + zj_liliang: 0, + zj_zhishi: 0 + } + // 主角等级属性获取 + + zjBuff.zj_atk += PublicShared.eval(G.gc.com.zjcz_atk.value as any as string, { lv: this.gud.lv }) + zjBuff.zj_def += PublicShared.eval(G.gc.com.zjcz_def.value as any as string, { lv: this.gud.lv }) + zjBuff.zj_liliang += PublicShared.eval(G.gc.com.zjcz_liliang.value as any as string, { lv: this.gud.lv }) + zjBuff.zj_zhishi += PublicShared.eval(G.gc.com.zjcz_zhishi.value as any as string, { lv: this.gud.lv }) + // 图鉴属性获取 + for(let i = 1; i <= this.gud.tujianLv; i++) { + let item = G.gc.tujian_jc[i] + if(item) { + // 各等级累加 + for(let k in item.buff) { + zjBuff[k] += item.buff[k] + } + } + } + // 名望属性加成 + if(this.gud.renown > 0) { + let mwConf = G.gc.mw_dj + // 各等级累加 + for(let i = 1; i <= this.gud.renown; i++) { + let mwData = mwConf[i] + for(let k in mwData.buff) { + zjBuff[k] += mwData.buff[k] + } + } + } + // 训练计划加成 + let skillConf = G.gc.xunlianjihua + if(this.gud.skills) { + for(let i in this.gud.skills) { + let item = skillConf[i] + for(let j in zjBuff) { + if((j + 'pro') == item.skill) { + zjBuff[j] += Math.floor(zjBuff[j] * PublicShared.eval(item.v, { slv: this.gud.skills[i]})) + } + } + } + } + // 属性战力计算 + powerObj.zj = Object.values(zjBuff).reduce((a, b) => a + b) * 5 + // 总战力计算 + power = Math.floor(Object.values(powerObj).reduce((a, b) => a + b)); + // console.log(__filename) + // console.log(await Wjjl.setVal(this.uid, 'hero_jiban', jiban)) + // console.log(power) + // console.log(powerObj) + // console.log(tujianBuff) + // console.log(zjBuff) + if (power != this.gud.power) { + this.gud.power = power; + G.redis.set('user', this.uid, 'power', power); + G.mongodb.collection('user').updateOne({ uid: this.uid }, { $set: { power: power } }); + this.sendMsg('msg_s2c/PlayerChange', { power: power }); + + Rank.list['zhanli'].addNew({ + valArr: [power], + ... await this.getDefaultFightData() + }); + + Wjjl.setVal(this.uid, 'power', power); + } +}; + + +// ApiCall -------------- +Object.defineProperties(ApiCall.prototype, { + 'uid': { + get(this: ApiCall) { + return this.conn.uid; + }, + }, + 'otherBuff': { + get(this: ApiCall): otherBuff { + return this.conn.otherBuff; + }, + } +}); + +const succ = ApiCall.prototype.succ; +ApiCall.prototype.succ = async function (this: ApiCall, res: any) { + this.eventMsg && await this.sendMsg('msg_s2c/Collection', this.eventMsg); + return succ.call(this, res); +}; + +ApiCall.prototype.sendMsg = function (this: ApiCall, msgName: string, msg: any) { + return this.conn.sendMsg(msgName, { + fromApi: this.service.name, + msg: msg + }); +}; + +const doubleApi = [ + 'peijiancangku/Deal', + 'xstask/Get' +] + +ApiCall.prototype.addEventMsg = function (this: ApiCall) { + if (!this.conn.id) return; + let msgName: keyof s2cMsg = arguments[0]; + let msgKey = arguments[1]; + let msg = arguments.length == 3 ? arguments[2] : arguments[1]; + + if (!this.eventMsg) this.eventMsg = {}; + if (!this.eventMsg[msgName]) this.eventMsg[msgName] = {}; + if (arguments.length == 3) { + if (!this.eventMsg[msgName][msgKey]) this.eventMsg[msgName][msgKey] = {}; + PublicShared.mergeProperty(this.eventMsg[msgName][msgKey], msg); + } else { + if(doubleApi.includes(this.service?.name) && this.service?.type=='api'&& Object.keys(this.eventMsg[msgName])[0]==Object.keys(msgKey)[0]){ + this.eventMsg[msgName] = msgKey + }else { + PublicShared.mergeProperty(this.eventMsg[msgName], msgKey); + } + } + + switch (msgName) { + case 'msg_s2c/ItemChange': + if (this.conn.item[msgKey]) { + if (msg.num == 0) { + this.conn.item[msgKey] = null; + delete this.conn.item[msgKey]; + } else Object.assign(this.conn.item[msgKey], msg); + } else { + this.conn.item[msgKey] = msg; + } + break; + case 'msg_s2c/PlayerChange': + Object.assign(this.conn.gud, msg); + if (Object.keys(this.otherBuff).intersection(Object.keys(msg)).length > 0) this.conn.refreshPower(); + break; + case 'msg_s2c/LshdChange': + this.conn.lshd[msgKey] && PublicShared.mergeProperty(this.conn.lshd[msgKey], msg); + break; + } +}; + +ApiCall.prototype.errorCode = function (this: ApiCall, code: number) { + return this.error('', { code: code }); +}; \ No newline at end of file diff --git a/src/global.ts b/src/global.ts new file mode 100644 index 0000000..ed3e9ae --- /dev/null +++ b/src/global.ts @@ -0,0 +1,251 @@ +import EventEmitter from 'events'; +import { existsSync, readdirSync, readFileSync, writeFileSync } from 'fs'; +import { parse } from 'json5'; +import * as mathjs from 'mathjs'; +import { join, resolve } from 'path'; +import { argv, env } from 'process'; +import { HttpServer, WsClient, WsServer } from 'tsrpc'; +import { ServiceType as ServiceTypeCross } from './cross/protocols/serviceProto'; +import { MyEvent } from './event'; +import { addListener, gEventType } from './globalListener'; +import localConfig from './localConfig'; +import { ServiceType as ServiceTypeHttp } from './monopoly/protocols/serviceProto'; +import { SchedulerManage } from './public/scheduler/scheduler'; +import { _mongodb } from './setMongodb'; +import { redisJsonFun } from './setRedis'; +import { ResGetList } from './shared/protocols/pay/PtlGetList'; +import { ServiceType as ServiceTypeWs } from './shared/protocols/serviceProto'; +import { PublicShared } from './shared/public/public'; +import { clusterRunOnce } from './clusterUtils'; + + +declare global { + var G: _G & Partial<{ + /**仅类型映射 */ + otherBuff: any; + }>; + var mathJs: typeof mathjs; + + type k_v = { [k: string]: T; }; + type atn = { a: string, t: string | number | any, n: number; colour?: number; shiwuBuff?: any; }; + + /**类型过滤 */ + type FilterConditionally = Pick< + Source, + { + [K in keyof Source]: Source[K] extends Condition ? K : never + }[keyof Source] + >; + + interface Array { + /**数组随机取值 */ + random(): T; + /**取一个数组在当前数组中的交集 */ + intersection(other: T[]): T[]; + /**取一个数组在当前数组中的差集 */ + difference(other: T[]): T[]; + /**数组是否存在重复元素 */ + isDuplication(): boolean; + /**打乱数组 */ + shuffle(): this; + } + + interface Uint8Array { + /**是否已经加密 */ + encrypt: boolean; + } +} + +class _G { + /**游戏配置 */ + gc: Partial<_gcType> = {}; + /**服务启动时命令行参数解析 */ + argv: { + /**服务器类型 */ + serverType: 'msg' | 'cross', + /**服务器日志模式 error | debug*/ + logModel: string; + } = { + serverType: 'msg', + logModel: 'error' + }; + /**当前时间对象 */ + date: Date; + /**当前时间戳 */ + time: number; + // /**serverType==msg时记录所有玩家的uid, 剔除全局变量,转移到redis */ + // uids?: string[]; + /**服务器配置 */ + config: Partial & k_v = {}; + /**当serverType==msg时才会启动的http */ + http?: HttpServer; + /**当serverType!=cross时才会启动的ws */ + server?: WsServer; + /**当serverType==cross时才会启动的ws */ + serverCross?: WsServer; + /**当serverType==msg时才会启动的跨服连接 */ + clientCross?: WsClient; + /**redis连接对象 */ + redis: redisJsonFun; + /**mongodb连接对象 */ + mongodb: _mongodb; + // mongodbClient: any; + /**所有玩家的充值记录 */ + allPlayerPayLog: k_v = {}; + + private event = new EventEmitter(); + + /**映射开服时间 */ + get openTime() { + return this.config.openTime; + } + + get getEvent(): new (...args: any) => { + on(type: any, callback: any, caller?: any): any; + once(type: any, callback: any): any; + off(type: any, callback: any, caller?: any): void; + emit(type: any, ...args: any[]): void; + } { + return MyEvent as any; + } + + constructor(argArr: string[]) { + let configJson = existsSync(resolve(__dirname, 'config.json')) ? JSON.parse(readFileSync(resolve(__dirname, 'config.json'), 'utf-8')) : {}; + + for (let index = 0; index < argArr.length; index++) { + let arg = argArr[index]; + if (arg == '-serverType') { + this.argv.serverType = argArr[index + 1] as any; + } else if (arg == '-logModel') { + this.argv.logModel = argArr[index + 1]; + } + } + + Object.assign(localConfig, configJson); + this.config = localConfig; + if (env.SERVER_ID) { + this.config.serverId = ~~env.SERVER_ID; + } + + this.initGc(); + } + + on(event: T, callback: gEventType[T]) { + return this.event.on(event, callback); + } + + once(event: T, callback: gEventType[T]) { + return this.event.once(event, callback); + } + + emit(event: T, ...args: Parameters) { + return this.event.emit(event, ...args); + } + + /**加载json */ + initGc() { + let jsonPath = join(__dirname, 'json'); + readdirSync(jsonPath).forEach(file => { + if (file.indexOf('.json5') != -1) { + let json = parse(readFileSync(join(jsonPath, file), 'utf-8')); + this.gc[file.split('.')[0]] = json; + } else { + let json = JSON.parse(readFileSync(join(jsonPath, file), 'utf-8')); + this.gc[file.split('.')[0]] = json; + } + }); + } + + /**更新时间 每秒刷新 */ + updateTime() { + if (G.config.debug && G.config.time) { + try { + let conf = JSON.parse(readFileSync(resolve(__dirname, 'config.json'), 'utf-8')); + this.date = new Date(conf.time); + this.date = new Date(this.date.getTime() + 1000); + this.time = Math.round(this.date.getTime() / 1000); + conf.time = this.date.format('YYYY-MM-DD hh:mm:ss'); + // writeFileSync(resolve(__dirname, 'config.json'), JSON.stringify(conf, null, 2)); + } catch (error) { + + } + } else { + // let date = new Date(); + // let time = date.getTime(); + // let offset = date.getTimezoneOffset() / 60 + this.config.utc; + // this.date = new Date(time + offset * 3600 * 1000); + this.date = new Date(); + this.time = Math.round(this.date.getTime() / 1000); + } + } + + /**检查redis路径是否首字符为数字 */ + formatRedisKey(key: string) { + let firstStr = key.toString().substring(0, 1); + if (!isNaN(Number(firstStr))) return '_' + key; + return key; + } + + /**改写开区时间(外部请求 games/open 改写)*/ + set openTime(_opentine) { + try { + let conf = JSON.parse(readFileSync(resolve(__dirname, 'config.json'), 'utf-8')); + G.date = new Date(_opentine); + G.date = new Date(this.date.getTime() + 1000); + conf.openTime = this.date.format('YYYY-MM-DD hh:mm:ss'); + // this.openTime = this.date.format('YYYY-MM-DD hh:mm:ss'); // 外部调用时直接改写了,不然会无限重复调用 + this.config.openTime = this.date.format('YYYY-MM-DD hh:mm:ss') + // writeFileSync(resolve(__dirname, 'config.json'), JSON.stringify(conf, null, 2)); + } catch (error) { + + } + } + +} + + +export function ctor() { + globalThis.mathJs = mathjs; + globalThis.G = new _G(argv); + G.updateTime(); + addListener(); + SchedulerManage.start(); + clusterRunOnce(()=>{ + //非pm2启动的,或是pm2下启动的第一个进程 + SchedulerManage.onlyPm2(); + }); +} + +Array.prototype.random = function (this: Array) { + return this[PublicShared.randomNum(0, this.length)]; +}; + +Array.prototype.intersection = function (this: Array, other: Array) { + let a = new Set(this); + let b = new Set(other); + + return Array.from(new Set([...a].filter(x => b.has(x)))); +}; + +Array.prototype.difference = function (this: Array, other: Array) { + let a = new Set(this); + let b = new Set(other); + + return Array.from(new Set([...a].filter(x => !b.has(x)))); +}; + +Array.prototype.isDuplication = function (this: Array) { + return this.length != [...new Set(this)].length; +}; + +Array.prototype.shuffle = function (this: Array) { + this.forEach((v, k) => { + let _k = 0 | (Math.random() * (k + 1)); + var tmp = this[k]; + this[k] = this[_k]; + this[_k] = tmp; + }); + return this; +} + + diff --git a/src/globalListener.ts b/src/globalListener.ts new file mode 100644 index 0000000..db6a2c5 --- /dev/null +++ b/src/globalListener.ts @@ -0,0 +1,233 @@ +import { ApiCall, ApiReturn } from 'tsrpc'; +import { reissuePrize } from './api_s2c/event/kaifukuanghuan/ApiOpen'; +import { qiRiDengLuAddDay } from './api_s2c/event/qiridenglu/ApiOpen'; +import { addDay } from './api_s2c/event/yuedujijin/ApiOpen'; +import { payZhanLing } from './api_s2c/event/zhanling/ApiOpen'; +import { md_redPoint_check } from './api_s2c/gongyu/mingdao/ApiOpen'; +import { ActionLog } from './public/actionLog/actionLog'; +import { EmailFun } from './public/email'; +import { GHManage } from './public/gonghui/manage'; +import { PayFun } from './public/pay'; +import { SignFun } from './public/sign'; +import { TaskAllEmitFun, TaskFun } from './public/task'; +import { XstaskFun } from './public/xstask'; +import { ZhanLingTasks } from './public/zhanling'; +import { player } from './shared/protocols/user/type'; +import { PublicShared } from './shared/public/public'; + +export type gEventType = { + /**玩家断开连接 */ + PLAYER_DISCONNECT: (uid: string) => void; + /**玩家修改名字 */ + PLAYER_CHANGE_NAME: (gud: player, name: string) => void; + /**玩家充值 */ + PLAYER_PAY: (gud: player, payId: string, type: 'user' | 'system') => void; + /**玩家发生api调用 */ + API_CALL: (node: { call: ApiCall, return: ApiReturn; }) => void; + /**玩家每日首次登陆 */ + FIRST_LOGIN_EVERY_DAY: (gud: player, lastLoginTime: number, curLoginTime: number) => void; + /**玩家消耗道具 */ + USE_ITEM: (gud: player, items: atn[]) => void; + /**进行n次签到*/ + Class_task_100: (eventname, call, val, chkVal) => void; + /**升级 n 次干部 */ + Class_task_101: (eventname, call, val, chkVal) => void; + /**杂货店购买 n 次道具 */ + Class_task_102: (eventname, call, val, chkVal) => void; + /**日常任务完成 n 次 */ + Class_task_999: (eventname, call, val, chkVal) => void; + /**玩家等级升到 n 次 */ + Class_task_104: (eventname, call, val, chkVal) => void; + /**成就任务完成 n 次 */ + Class_task_105: (eventname, call, val, chkVal) => void; + /**玩家通关主线关卡 n 次 */ + Class_task_1: (eventname, call, val, chkVal) => void; + /**干部等级达到 n 级 */ + Class_task_106: (eventname, call, val, chkVal) => void; + /**同时出站 n 个干部 */ + Class_task_107: (eventname, call, val, chkVal) => void; + /**n 个干部进阶配置k阶 */ + Class_task_108: (eventname, call, val, chkVal) => void; + /**综合聊天频道聊天 n 次 */ + Class_task_109: (eventname, call, val, chkVal) => void; + /**升级 n 次训练技能 */ + Class_task_110: (eventname, call, val, chkVal) => void; + /**装备强化 n 次 */ + Class_task_111: (eventname, call, val, chkVal) => void; + /**装备强化到 n 级 */ + Class_task_112: (eventname, call, val, chkVal) => void; + /**有 n 件强化 配置 等级装备 */ + Class_task_113: (eventname, call, val, chkVal) => void; + /**获得 n 个 配置颜色 干部 */ + Class_task_114: (eventname, call, val, chkVal) => void; + /**获得 n 个 配置颜色 装备 */ + Class_task_115: (eventname, call, val, chkVal) => void; + /**累计充值 n 钻石 */ + Class_task_116: (eventname, call, val, chkVal) => void; + /**使用 n 次点金 */ + Class_task_117: (eventname, call, val, chkVal) => void; + /**酒吧招募 n 次 */ + Class_task_118: (eventname, call, val, chkVal) => void; + /**商店购买 n 次道具 */ + Class_task_119: (eventname, call, val, chkVal) => void; + /**探险进行 n 次战斗 不管输赢 */ + Class_task_120: (eventname, call, val, chkVal) => void; + /**势力捐献进行 n 次捐献 */ + Class_task_121: (eventname, call, val, chkVal) => void; + /**进行 n 次快速探险 */ + Class_task_122: (eventname, call, val, chkVal) => void; + /**竞技场中挑战 n 次对手 */ + Class_task_123: (eventname, call, val, chkVal) => void; + /**斩草除根进行 n 次通关或扫荡 */ + Class_task_124: (eventname, call, val, chkVal) => void; + /**挑战 n 次物资筹集 */ + Class_task_125: (eventname, call, val, chkVal) => void; + /**地盘争夺抢夺或战领 n 次 */ + Class_task_126: (eventname, call, val, chkVal) => void; + /**挑战 n 次清缴真主党 */ + Class_task_127: (eventname, call, val, chkVal) => void; + /**竞技场首次达到x名 */ + Class_task_129: (eventname, call, val, chkVal) => void; + /**在仓库使用 x 次交易10次(交易一次不算) */ + Class_task_130: (eventname, call, val, chkVal) => void; + /**在仓库使用 x 次指定高级仓库 */ + Class_task_131: (eventname, call, val, chkVal) => void; + /**进行 x 次公路狂飙 */ + Class_task_132: (eventname, call, val, chkVal) => void; + /**进行 x 次教会招募 */ + Class_task_133: (eventname, call, val, chkVal) => void; + /**消耗 x 个 配置道具 */ + Class_task_134: (eventname, call, val, chkVal, any) => void; + /**累计登录天数 */ + Class_task_135: (eventname, call, val, chkVal) => void; + /**修复 x 次名刀 */ + Class_task_136: (eventname, call, val, chkVal) => void; + /**获得 x 个 配置颜色 配件 */ + Class_task_137: (eventname, call, val, chkVal, any) => void; + /**配件升级 xx 次 */ + Class_task_138: (eventname, call, val, chkVal) => void; + /**配件升级到 xx 级 */ + Class_task_139: (eventname, call, val, chkVal) => void; + /**配置 配件升级到 xx 级(颜色限制) */ + Class_task_140: (eventname, call, val, chkVal) => void; + // 在仓库交易x次 + Class_task_141: (eventname, call, val, chkVal) => void; + /**势力 配置xx 捐献进行 n 次捐献 */ + Class_task_142: (eventname, call, val, chkVal) => void; + /**穿戴X件以上装备 */ + Class_task_143: (eventname, call, val, chkVal) => void; + /**进行x次好友申请或送礼 */ + Class_task_144: (eventname, call, val, chkVal) => void; + /**领取x次挂机收益 */ + Class_task_145: (eventname, call, val, chkVal) => void; + /**合成x次英雄 */ + Class_task_146: (eventname, call, val, chkVal) => void; + /**合成x次装备 */ + Class_task_147: (eventname, call, val, chkVal) => void; +}; + +export function addListener() { + // 注册任务相关监听 + TaskFun.addevent(); + + G.on('PLAYER_DISCONNECT', uid => { + + //离线时删除该玩家的悬赏任务缓存 + if (XstaskFun.uidTask[uid]) { + XstaskFun.uidTask[uid] = null; + delete XstaskFun.uidTask[uid]; + } + + //离线时更新该玩家的登出时间 + G.redis.set('user', uid, 'logoutTime', G.time); + G.mongodb.collection('user').updateOne({ uid: uid }, { $set: { logoutTime: G.time } }); + }); + + G.on('PLAYER_CHANGE_NAME', async (player, name) => { + + //说明是公会会长 修改数据库里公会的会长名字 + if (player.ghId && player.ghLevel == 1) { + (await GHManage.getGH(player.ghId)).updateCreateName(name); + } + }); + + G.on('PLAYER_PAY', async (player, payId, payArgs) => { + let conf: any = await PayFun.getConf(payId, payArgs); + ActionLog.addDayLog(player.uid, { key: 'pay', val: conf.payExp[0].n }); + ActionLog.addRetainLog(player.uid, { key: 'pay', val: conf.payExp[0].n }); + + if (payId == G.gc.zhanling.payId) payZhanLing(player); + + let payEmailConf = G.gc.payEmail[payId] as _gcType['payEmail']['caifutequan']; + if (payEmailConf?.length > 0) { + let sendEmailConfs = payEmailConf; + sendEmailConfs.forEach(conf => { + EmailFun.addEmail({ + uid: player.uid, + type: 'system', + title: conf.title, + content: conf.content, + prize: conf.prize, + }); + }); + } + + G.mongodb.collection('dayPay').updateOne( + { uid: player.uid, time: PublicShared.getToDayZeroTime(G.time) }, + { $inc: { payNum: conf.money } }, + { upsert: true } + ); + }); + + G.on("FIRST_LOGIN_EVERY_DAY", (gud, lastTime, curTime) => { + + // 签到增加天数 + SignFun.updateLogin(gud.uid); + ActionLog.initDayLog(gud.uid); + ActionLog.addRetainLog(gud.uid, { key: 'login_day', val: 1 }); + ZhanLingTasks.clearLog(gud.uid, 'day'); + PayFun.checkGiftDayEmail(gud, lastTime, curTime); + reissuePrize(gud, lastTime, curTime); + addDay(gud); + + // 任务累计登录天数 + let call = PayFun.getCall(gud); + G.emit("Class_task_135", 'Class_task_135', call, 1, 0); + // 七日登录活动计数 + qiRiDengLuAddDay(call); + + }); + + G.on('API_CALL', node => { + + if (node.return.isSucc && node.call.uid && node.call.service.name != 'user/Ping') { + ActionLog.addDayLog(node.call.uid, { key: node.call.service.name, val: 1 }); + if (node.call.service.name == 'shop/Buy') { + ActionLog.addDayLog(node.call.uid, { key: node.call.service.name + `/${node.call.req.shopId}`, val: 1 }); + } + } + //战令任务 + node.return.isSucc && ZhanLingTasks.addListener(node); + // 所有任务监听 + TaskAllEmitFun.allEmit(node); + }); + + G.on('USE_ITEM', (gud, items) => { + + ActionLog.addDayLog(gud.uid, ...items.map(item => { + if (item.t == 'rmbmoney') { + ActionLog.addRetainLog(gud.uid, { key: `use_${item.a}_${item.t}`, val: item.n }); + ZhanLingTasks.addLog(gud.uid, 'day', `use_${item.a}_${item.t}`, item.n); + ZhanLingTasks.addLog(gud.uid, 'round', `use_${item.a}_${item.t}`, item.n); + md_redPoint_check(G.server.uid_connections[gud.uid], 'use_attr_rmbmoney'); + } + + return { + key: `use_${item.a}_${item.t}`, + val: item.n + }; + })); + let call = PayFun.getCall(gud); + G.emit("Class_task_134", 'Class_task_134', call, 1, 0, items); + }); +} \ No newline at end of file diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 0000000..c68799d --- /dev/null +++ b/src/index.ts @@ -0,0 +1,37 @@ +import { clusterMain } from './clusterUtils'; +import { extendType } from './extends'; +import { ctor } from './global'; +import { initGcType } from './jsonType'; +import { createLng } from './lng'; +import { createHttp } from './setHttp'; +import { initMongoDB } from './setMongodb'; +import { initRedis } from './setRedis'; +import { startAfter } from './setStartAfther'; +import { createWs } from './setWs'; + +async function start() { + //扩展框架 + extendType(); + //游戏配置提示文件 + initGcType(); + //连接mongodb + await initMongoDB(); + //连接redis + await initRedis(); + //socket + await createWs(); + //http + await createHttp(); + //集群处理 + await clusterMain(); + //服务器启动后 + startAfter(); +} + +//定义全局变量 +ctor(); +//启动服务 +start(); +//创建语言包 +createLng(); + diff --git a/src/json/PiratesFight.json b/src/json/PiratesFight.json new file mode 100644 index 0000000..0af32b8 --- /dev/null +++ b/src/json/PiratesFight.json @@ -0,0 +1,212 @@ +{ + "1": { + "id": 1, + "name": "PiratesFight_PiratesFight_name_1", + "undefined": "红海海盗", + "lv": 25, + "png": "icon_tfhd_hd1", + "army": 10001, + "drop": [ + 2101, + 2111 + ], + "kill_drop": [ + 2117, + 2126 + ], + "display_drop": [ + { + "a": "item", + "t": "18", + "n": 0 + }, + { + "a": "item", + "t": "19", + "n": 0 + }, + { + "a": "attr", + "t": "jinbi", + "n": 0 + } + ], + "member": 2 + }, + "2": { + "id": 2, + "name": "PiratesFight_PiratesFight_name_2", + "undefined": "波罗的海海盗", + "lv": 35, + "png": "icon_tfhd_hd2", + "army": 10002, + "drop": [ + 2103, + 2112 + ], + "kill_drop": [ + 2118, + 2127 + ], + "display_drop": [ + { + "a": "item", + "t": "18", + "n": 0 + }, + { + "a": "item", + "t": "19", + "n": 0 + }, + { + "a": "attr", + "t": "jinbi", + "n": 0 + } + ], + "member": 2 + }, + "3": { + "id": 3, + "name": "PiratesFight_PiratesFight_name_3", + "undefined": "安达曼海盗", + "lv": 45, + "png": "icon_tfhd_hd3", + "army": 10003, + "drop": [ + 2104, + 2113 + ], + "kill_drop": [ + 2119, + 2128 + ], + "display_drop": [ + { + "a": "item", + "t": "18", + "n": 0 + }, + { + "a": "item", + "t": "19", + "n": 0 + }, + { + "a": "attr", + "t": "jinbi", + "n": 0 + } + ], + "member": 2 + }, + "4": { + "id": 4, + "name": "PiratesFight_PiratesFight_name_4", + "undefined": "波斯湾海盗", + "lv": 55, + "png": "icon_tfhd_hd4", + "army": 10004, + "drop": [ + 2105, + 2108, + 2114 + ], + "kill_drop": [ + 2120, + 2123, + 2129 + ], + "display_drop": [ + { + "a": "item", + "t": "13", + "n": 0 + }, + { + "a": "item", + "t": "19", + "n": 0 + }, + { + "a": "attr", + "t": "jinbi", + "n": 0 + } + ], + "member": 2 + }, + "5": { + "id": 5, + "name": "PiratesFight_PiratesFight_name_5", + "undefined": "苏拉威西海盗", + "lv": 65, + "png": "icon_tfhd_hd5", + "army": 10005, + "drop": [ + 2106, + 2109, + 2115 + ], + "kill_drop": [ + 2121, + 2124, + 2130 + ], + "display_drop": [ + { + "a": "item", + "t": "13", + "n": 0 + }, + { + "a": "item", + "t": "19", + "n": 0 + }, + { + "a": "attr", + "t": "jinbi", + "n": 0 + } + ], + "member": 2 + }, + "6": { + "id": 6, + "name": "PiratesFight_PiratesFight_name_6", + "undefined": "黑海海盗", + "lv": 75, + "png": "icon_tfhd_hd6", + "army": 10006, + "drop": [ + 2107, + 2110, + 2116 + ], + "kill_drop": [ + 2122, + 2125, + 2131 + ], + "display_drop": [ + { + "a": "item", + "t": "13", + "n": 0 + }, + { + "a": "item", + "t": "19", + "n": 0 + }, + { + "a": "attr", + "t": "jinbi", + "n": 0 + } + ], + "member": 2 + } +} \ No newline at end of file diff --git a/src/json/armyattr.json b/src/json/armyattr.json new file mode 100644 index 0000000..4bfe993 --- /dev/null +++ b/src/json/armyattr.json @@ -0,0 +1,3632 @@ +{ + "1": { + "id": 1, + "atk": 2, + "mindps": 2, + "maxdps": 2.1, + "def": 1.3, + "hp": 8, + "speed": 0.3, + "mingzhongpro": 0, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 0, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 0 + }, + "2": { + "id": 2, + "atk": 2, + "mindps": 2, + "maxdps": 2.1, + "def": 1.3, + "hp": 8, + "speed": 0.3, + "mingzhongpro": 0, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 0, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 0 + }, + "3": { + "id": 3, + "atk": 2, + "mindps": 2, + "maxdps": 2.1, + "def": 1.3, + "hp": 8, + "speed": 0.3, + "mingzhongpro": 0, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 0, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 0 + }, + "4": { + "id": 4, + "atk": 2, + "mindps": 2, + "maxdps": 2.1, + "def": 1.3, + "hp": 8, + "speed": 0.3, + "mingzhongpro": 0, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 0, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 0 + }, + "5": { + "id": 5, + "atk": 2, + "mindps": 2, + "maxdps": 2.1, + "def": 1.3, + "hp": 8, + "speed": 0.3, + "mingzhongpro": 0, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 0, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 0 + }, + "90001": { + "id": 90001, + "atk": 0, + "mindps": 1, + "maxdps": 1, + "def": 1, + "hp": 1, + "speed": 0.5, + "mingzhongpro": 0, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 0, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90002": { + "id": 90002, + "atk": 0, + "mindps": 0.7, + "maxdps": 0.7, + "def": 0.7, + "hp": 0.8, + "speed": 0.5, + "mingzhongpro": 0, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 0, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90003": { + "id": 90003, + "atk": 0, + "mindps": 0.8, + "maxdps": 0.85, + "def": 1, + "hp": 1, + "speed": 0.5, + "mingzhongpro": 0, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 0, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90004": { + "id": 90004, + "atk": 0, + "mindps": 0.65, + "maxdps": 0.75, + "def": 0.6, + "hp": 1, + "speed": 0.5, + "mingzhongpro": 0, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 0, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90005": { + "id": 90005, + "atk": 0, + "mindps": 1.1, + "maxdps": 1.1, + "def": 1.1, + "hp": 1.1, + "speed": 0.5, + "mingzhongpro": 0, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 0, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90006": { + "id": 90006, + "atk": 0, + "mindps": 0.5, + "maxdps": 0.5, + "def": 1.1, + "hp": 1, + "speed": 0.5, + "mingzhongpro": 0, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 0, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90007": { + "id": 90007, + "atk": 0, + "mindps": 0.5, + "maxdps": 0.6, + "def": 0.2, + "hp": 0.6, + "speed": 0.5, + "mingzhongpro": 0, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 0, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90008": { + "id": 90008, + "atk": 0, + "mindps": 1.1, + "maxdps": 1.1, + "def": 1.5, + "hp": 110, + "speed": 0, + "mingzhongpro": 0, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 80, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90009": { + "id": 90009, + "atk": 0, + "mindps": 1.2, + "maxdps": 1.2, + "def": 1.5, + "hp": 78, + "speed": 0, + "mingzhongpro": 0, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 75, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90010": { + "id": 90010, + "atk": 0, + "mindps": 1.3, + "maxdps": 1.3, + "def": 1.5, + "hp": 66, + "speed": 0, + "mingzhongpro": 0, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 70, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90011": { + "id": 90011, + "atk": 0, + "mindps": 1.4, + "maxdps": 1.4, + "def": 1.5, + "hp": 85, + "speed": 0, + "mingzhongpro": 0, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 65, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90012": { + "id": 90012, + "atk": 0, + "mindps": 1.5, + "maxdps": 1.5, + "def": 1.5, + "hp": 73, + "speed": 0, + "mingzhongpro": 0, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 60, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90013": { + "id": 90013, + "atk": 0, + "mindps": 1.6, + "maxdps": 1.6, + "def": 1.5, + "hp": 66, + "speed": 0, + "mingzhongpro": 0, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 55, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90014": { + "id": 90014, + "atk": 0, + "mindps": 1.7, + "maxdps": 1.7, + "def": 1.5, + "hp": 80, + "speed": 0, + "mingzhongpro": 0, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 50, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90015": { + "id": 90015, + "atk": 0, + "mindps": 1.8, + "maxdps": 1.8, + "def": 1.5, + "hp": 81, + "speed": 0, + "mingzhongpro": 0, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 45, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90016": { + "id": 90016, + "atk": 0, + "mindps": 1.9, + "maxdps": 1.9, + "def": 1.5, + "hp": 82, + "speed": 0, + "mingzhongpro": 0, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 40, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90017": { + "id": 90017, + "atk": 0, + "mindps": 2, + "maxdps": 2, + "def": 1.5, + "hp": 83, + "speed": 0, + "mingzhongpro": 0, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 35, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90018": { + "id": 90018, + "atk": 0, + "mindps": 0.1, + "maxdps": 0.1, + "def": 0, + "hp": 0.2, + "speed": 0.1, + "mingzhongpro": 0, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 0, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90019": { + "id": 90019, + "atk": 0, + "mindps": 2.5, + "maxdps": 2.5, + "def": 10, + "hp": 120, + "speed": 0, + "mingzhongpro": 50000, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 35, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 2500, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90020": { + "id": 90020, + "atk": 0, + "mindps": 3, + "maxdps": 3, + "def": 15, + "hp": 160, + "speed": 0, + "mingzhongpro": 50000, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 35, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 2500, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90021": { + "id": 90021, + "atk": 0, + "mindps": 3, + "maxdps": 3, + "def": 15, + "hp": 1800, + "speed": 0, + "mingzhongpro": 50000, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 35, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 2500, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90022": { + "id": 90022, + "atk": 0, + "mindps": 3, + "maxdps": 3, + "def": 15, + "hp": 20000, + "speed": 0, + "mingzhongpro": 50000, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 35, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 2500, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90070": { + "id": 90070, + "atk": 0, + "mindps": 1.65, + "maxdps": 1.65, + "def": 1.65, + "hp": 1.65, + "speed": 1, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90071": { + "id": 90071, + "atk": 0, + "mindps": 2, + "maxdps": 2, + "def": 2, + "hp": 2, + "speed": 1, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0.1, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0.9, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90072": { + "id": 90072, + "atk": 0, + "mindps": 1.65, + "maxdps": 1.65, + "def": 1.65, + "hp": 1.65, + "speed": 1, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.2, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90073": { + "id": 90073, + "atk": 0, + "mindps": 1.65, + "maxdps": 1.65, + "def": 1.65, + "hp": 1.65, + "speed": 1, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0.2, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90074": { + "id": 90074, + "atk": 0, + "mindps": 1.65, + "maxdps": 1.65, + "def": 1.65, + "hp": 1.65, + "speed": 1, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0.2, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90075": { + "id": 90075, + "atk": 2, + "mindps": 1.3, + "maxdps": 1.5, + "def": 2, + "hp": 1.5, + "speed": 2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90076": { + "id": 90076, + "atk": 2, + "mindps": 1.5, + "maxdps": 2, + "def": 3, + "hp": 2, + "speed": 2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 2, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90077": { + "id": 90077, + "atk": 3, + "mindps": 1.8, + "maxdps": 2, + "def": 3, + "hp": 2, + "speed": 2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 2, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90078": { + "id": 90078, + "atk": 3.5, + "mindps": 2, + "maxdps": 2.5, + "def": 3.5, + "hp": 2.5, + "speed": 2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 2, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90079": { + "id": 90079, + "atk": 3.5, + "mindps": 2.3, + "maxdps": 2.8, + "def": 3.5, + "hp": 2.5, + "speed": 2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 2.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90080": { + "id": 90080, + "atk": 3.5, + "mindps": 2.5, + "maxdps": 3, + "def": 3.5, + "hp": 3, + "speed": 3, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 1, + "fanshangpro": 2, + "baoshangpro": 3, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90081": { + "id": 90081, + "atk": 0, + "mindps": 2, + "maxdps": 2, + "def": 10, + "hp": 200, + "speed": 3, + "mingzhongpro": 50000, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 35, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 2500, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90082": { + "id": 90082, + "atk": 0, + "mindps": 2.3, + "maxdps": 2.8, + "def": 10, + "hp": 500, + "speed": 3, + "mingzhongpro": 50000, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 35, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 2500, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90083": { + "id": 90083, + "atk": 0, + "mindps": 2.5, + "maxdps": 2.8, + "def": 10, + "hp": 1200, + "speed": 3, + "mingzhongpro": 50000, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 35, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 2500, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90084": { + "id": 90084, + "atk": 0, + "mindps": 2.8, + "maxdps": 3.2, + "def": 15, + "hp": 8000, + "speed": 3, + "mingzhongpro": 50000, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 35, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 2500, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90085": { + "id": 90085, + "atk": 0, + "mindps": 3, + "maxdps": 3.2, + "def": 15, + "hp": 10000, + "speed": 3, + "mingzhongpro": 50000, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 35, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 2500, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90086": { + "id": 90086, + "atk": 0, + "mindps": 4, + "maxdps": 4, + "def": 15, + "hp": 20000, + "speed": 3, + "mingzhongpro": 50000, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 35, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 2500, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90087": { + "id": 90087, + "atk": 0, + "mindps": 0.65, + "maxdps": 0.75, + "def": 5, + "hp": 30, + "speed": 1, + "mingzhongpro": 50000, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 2500, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90088": { + "id": 90088, + "atk": 0, + "mindps": 0.75, + "maxdps": 0.85, + "def": 5, + "hp": 80, + "speed": 1, + "mingzhongpro": 50000, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 2500, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90089": { + "id": 90089, + "atk": 0, + "mindps": 1, + "maxdps": 1.05, + "def": 10, + "hp": 800, + "speed": 1, + "mingzhongpro": 50000, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 2500, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90090": { + "id": 90090, + "atk": 0, + "mindps": 1.3, + "maxdps": 1.5, + "def": 15, + "hp": 8000, + "speed": 1, + "mingzhongpro": 50000, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 35, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 2500, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90091": { + "id": 90091, + "atk": 0, + "mindps": 1.3, + "maxdps": 1.5, + "def": 15, + "hp": 30000, + "speed": 1, + "mingzhongpro": 50000, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 35, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 2500, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90092": { + "id": 90092, + "atk": 0, + "mindps": 5, + "maxdps": 5, + "def": 15, + "hp": 35000, + "speed": 3, + "mingzhongpro": 50000, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 35, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 2500, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90093": { + "id": 90093, + "atk": 0, + "mindps": 1.65, + "maxdps": 1.65, + "def": 1.65, + "hp": 1.65, + "speed": 1, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90094": { + "id": 90094, + "atk": 2, + "mindps": 2, + "maxdps": 2, + "def": 3, + "hp": 2, + "speed": 2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 2, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90095": { + "id": 90095, + "atk": 1, + "mindps": 2, + "maxdps": 2, + "def": 2, + "hp": 2, + "speed": 1, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 2, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90096": { + "id": 90096, + "atk": 3, + "mindps": 2, + "maxdps": 2.5, + "def": 4, + "hp": 3, + "speed": 3, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 3, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90097": { + "id": 90097, + "atk": 2, + "mindps": 2.5, + "maxdps": 3, + "def": 5, + "hp": 3, + "speed": 2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 3, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90098": { + "id": 90098, + "atk": 4, + "mindps": 3, + "maxdps": 4, + "def": 6, + "hp": 4, + "speed": 3, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 4, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90099": { + "id": 90099, + "atk": 3, + "mindps": 2.8, + "maxdps": 3.5, + "def": 7, + "hp": 4, + "speed": 2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 4, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90100": { + "id": 90100, + "atk": 5, + "mindps": 3.8, + "maxdps": 5, + "def": 8, + "hp": 5, + "speed": 3, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 4, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90101": { + "id": 90101, + "atk": 0, + "mindps": 1.3, + "maxdps": 1.5, + "def": 15, + "hp": 60000, + "speed": 1, + "mingzhongpro": 50000, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 35, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 2500, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90102": { + "id": 90102, + "atk": 3.5, + "mindps": 2.3, + "maxdps": 2.8, + "def": 3.5, + "hp": 2.5, + "speed": 2, + "mingzhongpro": 1300, + "misspro": 0.2, + "xixuepro": 0.2, + "fanshangpro": 0.2, + "baoshangpro": 2.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90103": { + "id": 90103, + "atk": 0, + "mindps": 7, + "maxdps": 7, + "def": 25, + "hp": 50000, + "speed": 4, + "mingzhongpro": 50000, + "misspro": 0, + "xixuepro": 0, + "fanshangpro": 0, + "baoshangpro": 50, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 2500, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90201": { + "id": 90201, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90202": { + "id": 90202, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90203": { + "id": 90203, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90204": { + "id": 90204, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90205": { + "id": 90205, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90206": { + "id": 90206, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90207": { + "id": 90207, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90208": { + "id": 90208, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90209": { + "id": 90209, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90210": { + "id": 90210, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90211": { + "id": 90211, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90212": { + "id": 90212, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90213": { + "id": 90213, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90214": { + "id": 90214, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90215": { + "id": 90215, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90216": { + "id": 90216, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90217": { + "id": 90217, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90218": { + "id": 90218, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90219": { + "id": 90219, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90220": { + "id": 90220, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90221": { + "id": 90221, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90222": { + "id": 90222, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90223": { + "id": 90223, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90224": { + "id": 90224, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90225": { + "id": 90225, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90226": { + "id": 90226, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90227": { + "id": 90227, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90228": { + "id": 90228, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90229": { + "id": 90229, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90230": { + "id": 90230, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90231": { + "id": 90231, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90232": { + "id": 90232, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90233": { + "id": 90233, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90234": { + "id": 90234, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90235": { + "id": 90235, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90236": { + "id": 90236, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90237": { + "id": 90237, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90238": { + "id": 90238, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90239": { + "id": 90239, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90240": { + "id": 90240, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90241": { + "id": 90241, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90242": { + "id": 90242, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90243": { + "id": 90243, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90244": { + "id": 90244, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90245": { + "id": 90245, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90246": { + "id": 90246, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90247": { + "id": 90247, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90248": { + "id": 90248, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90249": { + "id": 90249, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90250": { + "id": 90250, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90251": { + "id": 90251, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90252": { + "id": 90252, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90253": { + "id": 90253, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90254": { + "id": 90254, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90255": { + "id": 90255, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90256": { + "id": 90256, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90257": { + "id": 90257, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90258": { + "id": 90258, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90259": { + "id": 90259, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90260": { + "id": 90260, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90261": { + "id": 90261, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90262": { + "id": 90262, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90263": { + "id": 90263, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90264": { + "id": 90264, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90265": { + "id": 90265, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90266": { + "id": 90266, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90267": { + "id": 90267, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90268": { + "id": 90268, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90269": { + "id": 90269, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90270": { + "id": 90270, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.1, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90271": { + "id": 90271, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.1, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90272": { + "id": 90272, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.1, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90273": { + "id": 90273, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.1, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90274": { + "id": 90274, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.1, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90275": { + "id": 90275, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.1, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90276": { + "id": 90276, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.1, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90277": { + "id": 90277, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.1, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90278": { + "id": 90278, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.1, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90279": { + "id": 90279, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.1, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90280": { + "id": 90280, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.1, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90281": { + "id": 90281, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.1, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90282": { + "id": 90282, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.1, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90283": { + "id": 90283, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.1, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90284": { + "id": 90284, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.1, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90285": { + "id": 90285, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.1, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90286": { + "id": 90286, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.1, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90287": { + "id": 90287, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.1, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90288": { + "id": 90288, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.1, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90289": { + "id": 90289, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.1, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90290": { + "id": 90290, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.2, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90291": { + "id": 90291, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.2, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90292": { + "id": 90292, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.2, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90293": { + "id": 90293, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.2, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90294": { + "id": 90294, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.2, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90295": { + "id": 90295, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.2, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90296": { + "id": 90296, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.2, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90297": { + "id": 90297, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.2, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90298": { + "id": 90298, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.2, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90299": { + "id": 90299, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.2, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90300": { + "id": 90300, + "atk": 2.1, + "mindps": 1.9, + "maxdps": 2.1, + "def": 2, + "hp": 1.9, + "speed": 1.2, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 2.1, + "undpspro": 0, + "phydpsdrop": 0.2, + "magdpsdrop": 0, + "addhp": 0, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90301": { + "id": 90301, + "atk": 0.8, + "mindps": 1, + "maxdps": 1.05, + "def": 1, + "hp": 9999999, + "speed": 0, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 1, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 1, + "magdpsdrop": 0, + "addhp": 1, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90302": { + "id": 90302, + "atk": 0.8, + "mindps": 1, + "maxdps": 1.05, + "def": 1, + "hp": 9999999, + "speed": 0, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 1, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0, + "magdpsdrop": 1, + "addhp": 1, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90303": { + "id": 90303, + "atk": 0.8, + "mindps": 1, + "maxdps": 1.05, + "def": 15, + "hp": 9999999, + "speed": 0, + "mingzhongpro": 1300, + "misspro": 0, + "xixuepro": 1, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0.3, + "phydpsdrop": 0, + "magdpsdrop": 0, + "addhp": 1, + "baoji": 1200, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + }, + "90400": { + "id": 90400, + "atk": 2.5, + "mindps": 1.5, + "maxdps": 3, + "def": 2, + "hp": 3000, + "speed": 1.2, + "mingzhongpro": 1000, + "misspro": 0, + "xixuepro": 0.1, + "fanshangpro": 0, + "baoshangpro": 1.5, + "undpspro": 0, + "phydpsdrop": 0.2, + "magdpsdrop": 0.2, + "addhp": 0, + "baoji": 1000, + "shiqi": 0, + "dpspro": 0, + "ducontrol": 1 + } +} \ No newline at end of file diff --git a/src/json/attr.json b/src/json/attr.json new file mode 100644 index 0000000..2b6f525 --- /dev/null +++ b/src/json/attr.json @@ -0,0 +1,72 @@ +{ + "jinbi": { + "id": "jinbi", + "name": "intr_attr_name_1", + "undefined": "美金", + "colour": 3, + "icon": "icon_jinbi", + "sicon": "icon_jinbi", + "describe": "intr_attr_describe_1", + "advancedEffects": "" + }, + "rmbmoney": { + "id": "rmbmoney", + "name": "intr_attr_name_2", + "undefined": "钻石", + "colour": 5, + "icon": "icon_zuanshi", + "sicon": "icon_zuanshi", + "describe": "intr_attr_describe_2", + "advancedEffects": "ani_xiangzikuang" + }, + "nexp": { + "id": "nexp", + "name": "intr_attr_name_3", + "undefined": "主角经验", + "colour": 4, + "icon": "icon_zjjy", + "sicon": "icon_zjjy", + "describe": "intr_attr_describe_3", + "advancedEffects": "" + }, + "rongyu": { + "id": "rongyu", + "name": "intr_attr_name_4", + "undefined": "荣誉勋章", + "colour": 4, + "icon": "icon_rongyu", + "sicon": "icon_rongyu", + "describe": "intr_attr_describe_4", + "advancedEffects": "" + }, + "payExp": { + "id": "payExp", + "name": "intr_attr_name_5", + "undefined": "VIP经验", + "colour": 5, + "icon": "icon_gzjy", + "sicon": "icon_gzjy", + "describe": "intr_attr_describe_5", + "advancedEffects": "ani_xiangzikuang" + }, + "guijinshu": { + "id": "guijinshu", + "name": "intr_attr_name_6", + "undefined": "贵金属", + "colour": 3, + "icon": "icon_xyjsh", + "sicon": "icon_xyjsh", + "describe": "intr_attr_describe_6", + "advancedEffects": "" + }, + "shilifrd": { + "id": "shilifrd", + "name": "intr_attr_name_11", + "undefined": "势力繁荣度", + "colour": 4, + "icon": "icon_slfrd", + "sicon": "icon_slfrd", + "describe": "intr_attr_describe_11", + "advancedEffects": "" + } +} \ No newline at end of file diff --git a/src/json/boss.json b/src/json/boss.json new file mode 100644 index 0000000..d55e739 --- /dev/null +++ b/src/json/boss.json @@ -0,0 +1,5 @@ +{ + "17001": {"id": 17001,"name": "intr_hero_name_1","img": 5001,"intr": "intr_hero_intr_1","skill": {},"bdskill": [],"mbskill": []}, + "17002": {"id": 17002,"name": "intr_hero_name_3","img": 5003,"intr": "intr_hero_intr_2","skill": {},"bdskill": [],"mbskill": []}, + "17003": {"id": 17003,"name": "intr_hero_name_5","img": 5005,"intr": "intr_hero_intr_3","skill": {},"bdskill": [],"mbskill": []} +} \ No newline at end of file diff --git a/src/json/buff.json b/src/json/buff.json new file mode 100644 index 0000000..e6d9d54 --- /dev/null +++ b/src/json/buff.json @@ -0,0 +1,346 @@ +{ + "xuanyun": { + "id": "xuanyun", + "bufftype": "xuanyun", + "type": 3, + "undefined": "眩晕", + "ani": "buff_xuanyun", + "anitype": 1, + "img": "zd_buff_xuany", + "isshow": 1 + }, + "qusan": { + "id": "qusan", + "bufftype": "qusan", + "type": 1, + "undefined": "驱散", + "ani": "", + "img": "zd_buff_qus", + "isshow": 1 + }, + "badbuffdrop": { + "id": "badbuffdrop", + "bufftype": "badbuffdrop", + "type": 1, + "undefined": "免疫减益BUFF", + "ani": "", + "img": "zd_buff_badbuff", + "isshow": 1 + }, + "shiqidrop": { + "id": "shiqidrop", + "bufftype": "shiqidrop", + "type": 2, + "undefined": "士气值百分比降低", + "ani": "", + "img": "zd_buff_shiqdrop", + "isshow": 1 + }, + "shiqipro": { + "id": "shiqipro", + "bufftype": "shiqipro", + "type": 1, + "undefined": "士气值百分比提升", + "ani": "", + "img": "zd_buff_shiqss", + "isshow": 1 + }, + "baojidrop": { + "id": "baojidrop", + "bufftype": "baojidrop", + "type": 2, + "undefined": "暴击值百分比降低", + "ani": "", + "img": "zd_buff_baojdrop", + "isshow": 1 + }, + "addmaxhp": { + "id": "addmaxhp", + "bufftype": "addmaxhp", + "type": 1, + "undefined": "每回合最大生命回血", + "ani": "buff_huixue", + "anitype": 2, + "img": "zd_buff_huix", + "isshow": 1 + }, + "addhp": { + "id": "addhp", + "bufftype": "addhp", + "type": 1, + "undefined": "每回合当前生命回血", + "ani": "buff_huixue", + "anitype": 2, + "img": "zd_buff_huix", + "isshow": 1 + }, + "noaddhp": { + "id": "noaddhp", + "bufftype": "noaddhp", + "type": 2, + "undefined": "禁止任意方式回血", + "ani": "", + "img": "zd_buff_noaddhp", + "isshow": 1 + }, + "defdrop": { + "id": "defdrop", + "bufftype": "defdrop", + "type": 2, + "undefined": "防御降低", + "ani": "", + "img": "zd_buff_defdrop", + "isshow": 1 + }, + "zhongdu": { + "id": "zhongdu", + "bufftype": "zhongdu", + "type": 2, + "undefined": "中毒", + "ani": "buff_du", + "anitype": 1, + "img": "zd_buff_maxdu", + "isshow": 1 + }, + "waterdpsdrop": { + "id": "waterdpsdrop", + "bufftype": "waterdpsdrop", + "type": 2, + "undefined": "受到水系伤害降低", + "ani": "", + "img": "zd_buff_waterdpsdrop", + "isshow": 1 + }, + "chongsheng": { + "id": "chongsheng", + "bufftype": "chongsheng", + "type": 1, + "undefined": "重生", + "ani": "", + "isshow": 0 + }, + "ranshao": { + "id": "ranshao", + "bufftype": "ranshao", + "type": 2, + "undefined": "燃烧", + "ani": "", + "img": "zd_buff_rans", + "isshow": 1 + }, + "shuimian": { + "id": "shuimian", + "bufftype": "shuimian", + "type": 3, + "undefined": "睡眠", + "ani": "", + "img": "zd_buff_shuim", + "isshow": 1 + }, + "kongju": { + "id": "kongju", + "bufftype": "kongju", + "type": 3, + "undefined": "恐惧", + "ani": "buff_kongju", + "anitype": 1, + "img": "zd_buff_kongj", + "isshow": 1 + }, + "atkpro": { + "id": "atkpro", + "bufftype": "atkpro", + "type": 1, + "undefined": "攻击百分比增加", + "ani": "", + "anitype": "", + "img": "zd_buff_jiagongj", + "isshow": 1 + }, + "atkdrop": { + "id": "atkdrop", + "bufftype": "atkdrop", + "type": 2, + "undefined": "攻击百分比降低", + "anitype": 1, + "img": "zd_buff_atkdrop", + "isshow": 1 + }, + "addxixue": { + "id": "addxixue", + "bufftype": "addxixue", + "type": 1, + "undefined": "吸取当次造成伤害百分比的生命", + "ani": "buff_huixue", + "anitype": 2, + "img": "zd_buff_xixuepro", + "isshow": 1 + }, + "mingzhongdrop": { + "id": "mingzhongdrop", + "bufftype": "mingzhongdrop", + "type": 2, + "undefined": "命中降低", + "ani": "", + "img": "zd_buff_mingzdrop", + "isshow": 1 + }, + "baojipro": { + "id": "baojipro", + "bufftype": "baojipro", + "type": 1, + "undefined": "暴击值百分比增加", + "ani": "", + "anitype": "", + "img": "zd_buff_baojpro", + "isshow": 1 + }, + "maxdu": { + "id": "maxdu", + "bufftype": "maxdu", + "type": 2, + "undefined": "最大生命值的毒", + "ani": "buff_du", + "anitype": 1, + "img": "zd_buff_zhongd", + "isshow": 1 + }, + "wangque": { + "id": "wangque", + "bufftype": "wangque", + "type": 2, + "undefined": "忘却", + "ani": "", + "img": "zd_buff_wangq", + "isshow": 1 + }, + "magdpsdrop": { + "id": "magdpsdrop", + "bufftype": "magdpsdrop", + "type": 1, + "undefined": "受到混乱(魔法)伤害降低", + "ani": "", + "img": "zd_buff_magdpsdrop", + "isshow": 1 + }, + "xixuepro": { + "id": "xixuepro", + "bufftype": "xixuepro", + "type": 1, + "undefined": "吸血百分比提升", + "ani": "", + "img": "zd_buff_addxix", + "isshow": 1 + }, + "dpsdrop": { + "id": "dpsdrop", + "bufftype": "dpsdrop", + "type": 2, + "undefined": "伤害百分比降低", + "ani": "", + "img": "zd_buff_dpsdrop", + "isshow": 1 + }, + "defpro": { + "id": "defpro", + "bufftype": "defpro", + "type": 1, + "undefined": "防御百分比增加", + "ani": "", + "anitype": "", + "img": "zd_buff_defpro", + "isshow": 1 + }, + "baonu": { + "id": "baonu", + "bufftype": "baonu", + "type": 1, + "undefined": "暴怒,必定暴击", + "ani": "", + "img": "zd_buff_baon", + "isshow": 1 + }, + "disearth": { + "id": "disearth", + "bufftype": "disearth", + "type": 1, + "undefined": "穿透(地)系伤害免疫", + "ani": "", + "img": "zd_buff_disearth", + "isshow": 1 + }, + "dpspro": { + "id": "dpspro", + "bufftype": "dpspro", + "type": 1, + "undefined": "伤害百分比增加", + "ani": "", + "img": "zd_buff_dpspro", + "isshow": 1 + }, + "undpspro": { + "id": "undpspro", + "bufftype": "undpspro", + "type": 1, + "undefined": "受到伤害百分比降低", + "ani": "", + "anitype": "", + "img": "zd_buff_jiafy", + "isshow": 1 + }, + "disfire": { + "id": "disfire", + "bufftype": "disfire", + "type": 1, + "undefined": "破甲(火)系伤害免疫", + "ani": "", + "img": "zd_buff_pojia", + "isshow": 1 + }, + "hudun": { + "id": "hudun", + "bufftype": "hudun", + "type": 1, + "undefined": "护盾", + "ani": "", + "img": "zd_buff_hudun", + "isshow": 1 + }, + "diswater": { + "id": "diswater", + "bufftype": "diswater", + "type": 1, + "undefined": "震荡(水)系伤害免疫", + "ani": "", + "img": "zd_buff_diswater", + "isshow": 1 + }, + "diswind": { + "id": "diswind", + "bufftype": "diswind", + "type": 1, + "undefined": "冲击(风)系伤害免疫", + "ani": "", + "img": "zd_buff_diswind", + "isshow": 1 + }, + "liuxue": { + "id": "liuxue", + "bufftype": "liuxue", + "type": 2, + "undefined": "流血", + "ani": "buff_liuxue", + "anitype": 1, + "img": "zd_buff_diaox", + "isshow": 1 + }, + "wsdefpro": { + "id": "wsdefpro", + "bufftype": "wsdefpro", + "type": 1, + "undefined": "无视对手百分比防御", + "ani": "", + "img": "zd_buff_wsdefpro", + "isshow": 1 + } +} \ No newline at end of file diff --git a/src/json/chongzhi.json5 b/src/json/chongzhi.json5 new file mode 100644 index 0000000..bf4645c --- /dev/null +++ b/src/json/chongzhi.json5 @@ -0,0 +1,313 @@ +{ + //firstPayPrize 为首次充值额外奖励 + payCom: [ + { payId: 'zuanshi_6', firstPayPrize: [{ a: 'attr', t: 'rmbmoney', n: 60 }] }, + { payId: 'zuanshi_30', firstPayPrize: [{ a: 'attr', t: 'rmbmoney', n: 300 }] }, + { payId: 'zuanshi_68', firstPayPrize: [{ a: 'attr', t: 'rmbmoney', n: 680 }] }, + { payId: 'zuanshi_128', firstPayPrize: [{ a: 'attr', t: 'rmbmoney', n: 1280 }] }, + { payId: 'zuanshi_328', firstPayPrize: [{ a: 'attr', t: 'rmbmoney', n: 3280 }] }, + { payId: 'zuanshi_648', firstPayPrize: [{ a: 'attr', t: 'rmbmoney', n: 6480 }] }, + ], + //特权礼包 + tequan: { + '0': { + gift: { buyNum: 1, sale: 1, need: [{ a: 'attr', t: 'rmbmoney', n: 880 }], prize: [{"a":"attr","t":"jinbi","n":100000},{"a":"item","t":"12","n":50},{"a":"item","t":"2","n":50}] }, + "tip": "intr_viplibao_title_0", + "tq": { + '1': { tip: ['intr_viplibao_intr_1', 0], isnew: true}, + } + + }, + '1': { + gift: { buyNum: 1, sale: 1, need: [{ a: 'attr', t: 'rmbmoney', n: 1080 }], prize: [{"a":"attr","t":"jinbi","n":200000},{"a":"equip","t":"1003","n":1},{"a":"item","t":"12","n":200},{"a":"item","t":"6","n":5}] }, + "tip": "intr_viplibao_title_1", + "tq": { + '1': { tip: ['intr_viplibao_intr_1', 1], isnew: true}, + '2': { tip: ['intr_viplibao_intr_2', 5], isnew: true}, + '3': { tip: ['intr_viplibao_intr_3', 5], isnew: true}, + '4': { tip: ['intr_viplibao_intr_4', 3], isnew: true}, + '5': { tip: ['intr_viplibao_intr_5', 15], isnew: true}, + '6': { tip: ['intr_viplibao_intr_6', 5], isnew: true}, + '7': { tip: ['intr_viplibao_intr_7', 3], isnew: true}, + '8': { tip: ['intr_viplibao_intr_13', 0], isnew: false} + } + + }, + '2': { + gift: { buyNum: 1, sale: 1, need: [{ a: 'attr', t: 'rmbmoney', n: 1280 }], prize: [{"a":"attr","t":"jinbi","n":500000},{"a":"equip","t":"4006","n":1},{"a":"item","t":"2","n":200},{"a":"item","t":"6","n":5}] }, + "tip": "intr_viplibao_title_2", + "tq": { + '1': { tip: ['intr_viplibao_intr_1', 2], isnew: true}, + '2': { tip: ['intr_viplibao_intr_2', 7], isnew: false}, + '3': { tip: ['intr_viplibao_intr_3', 10], isnew: false}, + '4': { tip: ['intr_viplibao_intr_4', 4], isnew: false}, + '5': { tip: ['intr_viplibao_intr_5', 20], isnew: false}, + '6': { tip: ['intr_viplibao_intr_6', 7], isnew: false}, + '7': { tip: ['intr_viplibao_intr_7', 4], isnew: false}, + '8': { tip: ['intr_viplibao_intr_13', 1], isnew: false} + } + + }, + '3': { + gift: { buyNum: 1, sale: 1, need: [{ a: 'attr', t: 'rmbmoney', n: 2280 }], prize: [{"a":"attr","t":"jinbi","n":1000000},{"a":"equip","t":"3008","n":1},{"a":"item","t":"12","n":300},{"a":"item","t":"6","n":5}] }, + "tip": "intr_viplibao_title_3", + "tq": { + '1': { tip: ['intr_viplibao_intr_15'], isnew: true}, + '2': { tip: ['intr_viplibao_intr_17', 9], isnew: true}, + '3': { tip: ['intr_viplibao_intr_8', 3], isnew: true}, + '4': { tip: ['intr_viplibao_intr_1', 3], isnew: true}, + '5': { tip: ['intr_viplibao_intr_19'], isnew: true}, + '6': { tip: ['intr_viplibao_intr_2', 9], isnew: false}, + '7': { tip: ['intr_viplibao_intr_3', 20], isnew: false}, + '8': { tip: ['intr_viplibao_intr_4', 5], isnew: false}, + '9': { tip: ['intr_viplibao_intr_5', 25], isnew: false}, + '10': { tip: ['intr_viplibao_intr_6', 9], isnew: false}, + '11': { tip: ['intr_viplibao_intr_7', 6], isnew: false}, + '12': { tip: ['intr_viplibao_intr_13', 2], isnew: false} + } + + }, + '4': { + gift: { buyNum: 1, sale: 1, need: [{ a: 'attr', t: 'rmbmoney', n: 3280 }], prize: [{"a":"attr","t":"jinbi","n":1500000},{"a":"equip","t":"4009","n":1},{"a":"item","t":"2","n":400},{"a":"item","t":"6","n":5},{"a":"item","t":"24","n":10}] }, + "tip": "intr_viplibao_title_4", + "tq": { + '1': { tip: ['intr_viplibao_intr_11', 4], isnew: true}, + '2': { tip: ['intr_viplibao_intr_1', 4], isnew: true}, + '3': { tip: ['intr_viplibao_intr_2', 12], isnew: false}, + '4': { tip: ['intr_viplibao_intr_3', 30], isnew: false}, + '5': { tip: ['intr_viplibao_intr_4', 6], isnew: false}, + '6': { tip: ['intr_viplibao_intr_5', 30], isnew: false}, + '7': { tip: ['intr_viplibao_intr_6', 12], isnew: false}, + '8': { tip: ['intr_viplibao_intr_7', 9], isnew: false}, + '9': { tip: ['intr_viplibao_intr_8', 4], isnew: false}, + '10': { tip: ['intr_viplibao_intr_13', 3], isnew: false} + } + + }, + '5': { + gift: { buyNum: 1, sale: 1, need: [{ a: 'attr', t: 'rmbmoney', n: 4280 }], prize: [{"a":"attr","t":"jinbi","n":2000000},{"a":"equip","t":"2008","n":1},{"a":"item","t":"12","n":500},{"a":"item","t":"26","n":5},{"a":"item","t":"24","n":10}] }, + "tip": "intr_viplibao_title_5", + "tq": { + '1': { tip: ['intr_viplibao_intr_16'], isnew: true}, + '2': { tip: ['intr_viplibao_intr_17', 10], isnew: true}, + '3': { tip: ['intr_viplibao_intr_1', 5], isnew: true}, + '4': { tip: ['intr_viplibao_intr_2', 15], isnew: false}, + '5': { tip: ['intr_viplibao_intr_3', 40], isnew: false}, + '6': { tip: ['intr_viplibao_intr_4', 7], isnew: false}, + '7': { tip: ['intr_viplibao_intr_5', 35], isnew: false}, + '8': { tip: ['intr_viplibao_intr_6', 15], isnew: false}, + '9': { tip: ['intr_viplibao_intr_7', 12], isnew: false}, + '10': { tip: ['intr_viplibao_intr_8', 5], isnew: false}, + '11': { tip: ['intr_viplibao_intr_13', 4], isnew: false} + } + + }, + '6': { + gift: { buyNum: 1, sale: 1, need: [{ a: 'attr', t: 'rmbmoney', n: 5880 }], prize: [{"a":"attr","t":"jinbi","n":2500000},{"a":"equip","t":"2006","n":1},{"a":"item","t":"30","n":10},{"a":"item","t":"2","n":500},{"a":"item","t":"25","n":5},{"a":"item","t":"24","n":10}] }, + "tip": "intr_viplibao_title_6", + "tq": { + '1': { tip: ['intr_viplibao_intr_1', 6], isnew: true}, + '2': { tip: ['intr_viplibao_intr_2', 18], isnew: false}, + '3': { tip: ['intr_viplibao_intr_3', 50], isnew: false}, + '4': { tip: ['intr_viplibao_intr_4', 8], isnew: false}, + '5': { tip: ['intr_viplibao_intr_5', 40], isnew: false}, + '6': { tip: ['intr_viplibao_intr_6', 18], isnew: false}, + '7': { tip: ['intr_viplibao_intr_7', 15], isnew: false}, + '8': { tip: ['intr_viplibao_intr_8', 6], isnew: false}, + '9': { tip: ['intr_viplibao_intr_13', 5], isnew: false}, + } + + }, + '7': { + gift: { buyNum: 1, sale: 1, need: [{ a: 'attr', t: 'rmbmoney', n: 8280 }], prize: [{"a":"attr","t":"jinbi","n":3000000},{"a":"equip","t":"4008","n":1},{"a":"item","t":"6","n":10},{"a":"item","t":"18","n":100},{"a":"item","t":"26","n":5},{"a":"item","t":"24","n":10}] }, + "tip": "intr_viplibao_title_7", + "tq": { + '1': { tip: ['intr_viplibao_intr_1', 7], isnew: true}, + '2': { tip: ['intr_viplibao_intr_2', 21], isnew: false}, + '3': { tip: ['intr_viplibao_intr_3', 60], isnew: false}, + '4': { tip: ['intr_viplibao_intr_4', 9], isnew: false}, + '5': { tip: ['intr_viplibao_intr_5', 45], isnew: false}, + '6': { tip: ['intr_viplibao_intr_6', 21], isnew: false}, + '7': { tip: ['intr_viplibao_intr_7', 18], isnew: false}, + '8': { tip: ['intr_viplibao_intr_8', 7], isnew: false}, + '9': { tip: ['intr_viplibao_intr_13', 6], isnew: false} + } + + }, + '8': { + gift: { buyNum: 1, sale: 1, need: [{ a: 'attr', t: 'rmbmoney', n: 11280 }], prize: [{"a":"attr","t":"jinbi","n":4000000},{"a":"equip","t":"3009","n":1},{"a":"item","t":"6","n":20},{"a":"item","t":"20","n":50},{"a":"item","t":"9","n":500},{"a":"item","t":"24","n":10}] }, + "tip": "intr_viplibao_title_8", + "tq": { + '1': { tip: ['intr_viplibao_intr_9', 2], isnew: true}, + '2': { tip: ['intr_viplibao_intr_1', 8], isnew: true}, + '3': { tip: ['intr_viplibao_intr_2', 24], isnew: false}, + '4': { tip: ['intr_viplibao_intr_3', 80], isnew: false}, + '5': { tip: ['intr_viplibao_intr_4', 10], isnew: false}, + '6': { tip: ['intr_viplibao_intr_5', 50], isnew: false}, + '7': { tip: ['intr_viplibao_intr_6', 24], isnew: false}, + '8': { tip: ['intr_viplibao_intr_7', 22], isnew: false}, + '9': { tip: ['intr_viplibao_intr_11', 5], isnew: false}, + '10': { tip: ['intr_viplibao_intr_8', 8], isnew: false}, + '11': { tip: ['intr_viplibao_intr_13', 7], isnew: false} + } + + }, + '9': { + gift: { buyNum: 1, sale: 1, need: [{ a: 'attr', t: 'rmbmoney', n: 15880 }], prize: [{"a":"attr","t":"jinbi","n":5000000},{"a":"equip","t":"2009","n":1},{"a":"item","t":"18","n":150},{"a":"item","t":"10","n":80},{"a":"item","t":"24","n":10}] }, + "tip": "intr_viplibao_title_9", + "tq": { + '1': { tip: ['intr_viplibao_intr_1', 9], isnew: true}, + '2': { tip: ['intr_viplibao_intr_2', 27], isnew: false}, + '3': { tip: ['intr_viplibao_intr_3', 100], isnew: false}, + '4': { tip: ['intr_viplibao_intr_4', 11], isnew: false}, + '5': { tip: ['intr_viplibao_intr_5', 55], isnew: false}, + '6': { tip: ['intr_viplibao_intr_6', 27], isnew: false}, + '7': { tip: ['intr_viplibao_intr_7', 27], isnew: false}, + '8': { tip: ['intr_viplibao_intr_8', 9], isnew: false}, + '9': { tip: ['intr_viplibao_intr_13', 8], isnew: false} + } + + }, + '10': { + gift: { buyNum: 1, sale: 1, need: [{ a: 'attr', t: 'rmbmoney', n: 21280 }], prize: [{"a":"attr","t":"jinbi","n":10000000},{"a":"equip","t":"1009","n":1},{"a":"item","t":"20","n":80},{"a":"item","t":"9","n":500},{"a":"item","t":"24","n":10}] }, + "tip": "intr_viplibao_title_10", + "tq": { + '1': { tip: ['intr_viplibao_intr_1', 10], isnew: true}, + '2': { tip: ['intr_viplibao_intr_2', 30], isnew: false}, + '3': { tip: ['intr_viplibao_intr_3', 120], isnew: false}, + '4': { tip: ['intr_viplibao_intr_4', 12], isnew: false}, + '5': { tip: ['intr_viplibao_intr_5', 60], isnew: false}, + '6': { tip: ['intr_viplibao_intr_6', 30], isnew: false}, + '7': { tip: ['intr_viplibao_intr_7', 33], isnew: false}, + '8': { tip: ['intr_viplibao_intr_8', 10], isnew: false}, + '9': { tip: ['intr_viplibao_intr_13', 9], isnew: false} + } + + }, + '11': { + gift: { buyNum: 1, sale: 1, need: [{ a: 'attr', t: 'rmbmoney', n: 28880 }], prize: [{"a":"attr","t":"jinbi","n":15000000},{"a":"item","t":"609","n":1},{"a":"item","t":"18","n":200},{"a":"item","t":"24","n":10},{"a":"item","t":"10","n":80}] }, + "tip": "intr_viplibao_title_11", + "tq": { + '1': { tip: ['intr_viplibao_intr_9', 4], isnew: true}, + '2': { tip: ['intr_viplibao_intr_1', 11], isnew: true}, + '3': { tip: ['intr_viplibao_intr_2', 33], isnew: false}, + '4': { tip: ['intr_viplibao_intr_3', 140], isnew: false}, + '5': { tip: ['intr_viplibao_intr_4', 14], isnew: false}, + '6': { tip: ['intr_viplibao_intr_5', 65], isnew: false}, + '7': { tip: ['intr_viplibao_intr_6', 33], isnew: false}, + '8': { tip: ['intr_viplibao_intr_7', 40], isnew: false}, + '9': { tip: ['intr_viplibao_intr_8', 11], isnew: false}, + '10': { tip: ['intr_viplibao_intr_13', 10], isnew: false} + } + + }, + '12': { + gift: { buyNum: 1, sale: 1, need: [{ a: 'attr', t: 'rmbmoney', n: 36880 }], prize: [{"a":"attr","t":"jinbi","n":20000000},{"a":"item","t":"609","n":1},{"a":"item","t":"20","n":100},{"a":"item","t":"9","n":1000},{"a":"item","t":"10","n":80}] }, + "tip": "intr_viplibao_title_12", + "tq": { + '1': { tip: ['intr_viplibao_intr_1', 12], isnew: true}, + '2': { tip: ['intr_viplibao_intr_2', 35], isnew: false}, + '3': { tip: ['intr_viplibao_intr_3', 170], isnew: false}, + '4': { tip: ['intr_viplibao_intr_4', 16], isnew: false}, + '5': { tip: ['intr_viplibao_intr_5', 70], isnew: false}, + '6': { tip: ['intr_viplibao_intr_6', 40], isnew: false}, + '7': { tip: ['intr_viplibao_intr_7', 48], isnew: false}, + '8': { tip: ['intr_viplibao_intr_11', 6], isnew: false}, + '9': { tip: ['intr_viplibao_intr_8', 12], isnew: false}, + '10': { tip: ['intr_viplibao_intr_13', 11], isnew: false} + } + + }, + '13': { + gift: { buyNum: 1, sale: 1, need: [{ a: 'attr', t: 'rmbmoney', n: 48880 }], prize: [{"a":"attr","t":"jinbi","n":25000000},{"a":"item","t":"609","n":1},{"a":"item","t":"619","n":1},{"a":"item","t":"18","n":500},{"a":"item","t":"606","n":2},{"a":"item","t":"10","n":80}] }, + "tip": "intr_viplibao_title_13", + "tq": { + '1': { tip: ['intr_viplibao_intr_18', 1], isnew: true}, + '2': { tip: ['intr_viplibao_intr_9', 6], isnew: true}, + '3': { tip: ['intr_viplibao_intr_1', 13], isnew: true}, + '4': { tip: ['intr_viplibao_intr_2', 36], isnew: false}, + '5': { tip: ['intr_viplibao_intr_3', 200], isnew: false}, + '6': { tip: ['intr_viplibao_intr_4', 18], isnew: false}, + '7': { tip: ['intr_viplibao_intr_5', 75], isnew: false}, + '8': { tip: ['intr_viplibao_intr_6', 60], isnew: false}, + '9': { tip: ['intr_viplibao_intr_7', 57], isnew: false}, + '10': { tip: ['intr_viplibao_intr_8', 14], isnew: false}, + '11': { tip: ['intr_viplibao_intr_13', 12], isnew: false} + } + + }, + '14': { + gift: { buyNum: 1, sale: 1, need: [{ a: 'attr', t: 'rmbmoney', n: 68880 }], prize: [{"a":"attr","t":"jinbi","n":30000000},{"a":"item","t":"619","n":1},{"a":"item","t":"20","n":150},{"a":"item","t":"9","n":2000},{"a":"item","t":"10","n":80}] }, + "tip": "intr_viplibao_title_14", + "tq": { + '1': { tip: ['intr_viplibao_intr_18', 2], isnew: true}, + '2': { tip: ['intr_viplibao_intr_9', 8], isnew: true}, + '3': { tip: ['intr_viplibao_intr_1', 14], isnew: true}, + '4': { tip: ['intr_viplibao_intr_2', 38], isnew: false}, + '5': { tip: ['intr_viplibao_intr_3', 300], isnew: false}, + '6': { tip: ['intr_viplibao_intr_4', 20], isnew: false}, + '7': { tip: ['intr_viplibao_intr_5', 80], isnew: false}, + '8': { tip: ['intr_viplibao_intr_6', 80], isnew: false}, + '9': { tip: ['intr_viplibao_intr_7', 67], isnew: false}, + '10': { tip: ['intr_viplibao_intr_8', 16], isnew: false}, + '11': { tip: ['intr_viplibao_intr_13', 13], isnew: false} + } + + }, + '15': { + gift: { buyNum: 1, sale: 1, need: [{ a: 'attr', t: 'rmbmoney', n: 98880 }], prize: [{"a":"attr","t":"jinbi","n":50000000},{"a":"item","t":"619","n":1},{"a":"item","t":"18","n":800},{"a":"item","t":"606","n":3},{"a":"item","t":"606","n":3},{"a":"item","t":"10","n":80}] }, + "tip": "intr_viplibao_title_15", + "tq": { + '1': { tip: ['intr_viplibao_intr_18', 3], isnew: true}, + '2': { tip: ['intr_viplibao_intr_9', 12], isnew: true}, + '3': { tip: ['intr_viplibao_intr_1', 15], isnew: true}, + '4': { tip: ['intr_viplibao_intr_2', 40], isnew: false}, + '5': { tip: ['intr_viplibao_intr_3', 400], isnew: false}, + '6': { tip: ['intr_viplibao_intr_4', 22], isnew: false}, + '7': { tip: ['intr_viplibao_intr_5', 85], isnew: false}, + '8': { tip: ['intr_viplibao_intr_6', 100], isnew: false}, + '9': { tip: ['intr_viplibao_intr_7', 82], isnew: false}, + '10': { tip: ['intr_viplibao_intr_11', 7], isnew: false}, + '11': { tip: ['intr_viplibao_intr_8', 18], isnew: false}, + '12': { tip: ['intr_viplibao_intr_13', 14], isnew: false} + } + + }, + '16': { + gift: { buyNum: 1, sale: 1, need: [{ a: 'attr', t: 'rmbmoney', n: 168000 }], prize: [{"a":"attr","t":"jinbi","n":70000000},{"a":"item","t":"619","n":2},{"a":"item","t":"611","n":1},{"a":"item","t":"20","n":300},{"a":"item","t":"9","n":5000}] }, + "tip": "intr_viplibao_title_16", + "tq": { + '1': { tip: ['intr_viplibao_intr_18', 4], isnew: true}, + '2': { tip: ['intr_viplibao_intr_9', 14], isnew: true}, + '3': { tip: ['intr_viplibao_intr_1', 16], isnew: true}, + '4': { tip: ['intr_viplibao_intr_2', 42], isnew: false}, + '5': { tip: ['intr_viplibao_intr_3', 500], isnew: false}, + '6': { tip: ['intr_viplibao_intr_4', 24], isnew: false}, + '7': { tip: ['intr_viplibao_intr_5', 90], isnew: false}, + '8': { tip: ['intr_viplibao_intr_6', 120], isnew: false}, + '9': { tip: ['intr_viplibao_intr_7', 102], isnew: false}, + '10': { tip: ['intr_viplibao_intr_8', 22], isnew: false}, + '11': { tip: ['intr_viplibao_intr_13', 15], isnew: false} + } + + }, + '17': { + gift: { buyNum: 1, sale: 1, need: [{ a: 'attr', t: 'rmbmoney', n: 198000 }], prize: [{"a":"attr","t":"jinbi","n":100000000},{"a":"item","t":"619","n":2},{"a":"item","t":"611","n":1},{"a":"item","t":"20","n":500},{"a":"item","t":"9","n":10000},{"a":"item","t":"10","n":500}] }, + "tip": "intr_viplibao_title_17", + "tq": { + '1': { tip: ['intr_viplibao_intr_18', 5], isnew: true}, + '2': { tip: ['intr_viplibao_intr_9', 20], isnew: true}, + '3': { tip: ['intr_viplibao_intr_1', 17], isnew: true}, + '4': { tip: ['intr_viplibao_intr_2', 50], isnew: false}, + '5': { tip: ['intr_viplibao_intr_3', 800], isnew: false}, + '6': { tip: ['intr_viplibao_intr_4', 26], isnew: false}, + '7': { tip: ['intr_viplibao_intr_5', 100], isnew: false}, + '8': { tip: ['intr_viplibao_intr_6', 140], isnew: false}, + '9': { tip: ['intr_viplibao_intr_7', 127], isnew: false}, + '10': { tip: ['intr_viplibao_intr_8', 30], isnew: false}, + '11': { tip: ['intr_viplibao_intr_13', 16], isnew: false} + } + + }, + } +} \ No newline at end of file diff --git a/src/json/choujiang.json5 b/src/json/choujiang.json5 new file mode 100644 index 0000000..b6a5dd9 --- /dev/null +++ b/src/json/choujiang.json5 @@ -0,0 +1,181 @@ +{ + "base": { + "need1": "道具消耗,优先判断", + "need2": "钻石消耗", + "free": "每日免费次数,0点重置", + "firstdiaoluo": "第一次的掉落组", + "diaoluo": "后续掉落组", + "replace": { + "num": "第N次没有出下面品质的奖励,则替换掉落组", + "colour": "品质", + "diaoluo": "替换的掉落组" + } + }, + "jiaotang": { + "1": { + "name": "教堂单抽", + "need1": { + "a": "item", + "t": 3, + "n": 1 + }, + "need2": { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + "free": 1, + "firstdiaoluo": 110002, + "diaoluo": 110001, + "replace": { + "num": 10, + "colour": 3, + "diaoluo": 110002 + } + }, + "2": { + "name": "教堂十连", + "need1": { + "a": "item", + "t": 3, + "n": 10 + }, + "need2": { + "a": "attr", + "t": "rmbmoney", + "n": 300 + }, + "firstdiaoluo": [ + 110001, + 110001, + 110001, + 110001, + 110001, + 110001, + 110001, + 110001, + 110001, + 110002 + ], + "diaoluo": [ + 110001, + 110001, + 110001, + 110001, + 110001, + 110001, + 110001, + 110001, + 110001, + 110002 + ] + }, + //界面对话库 + "dialog": { + "dialog1": "jiuguan_tips_1", + "dialog2": "jiuguan_tips_2", + "dialog3": "jiuguan_tips_3", + "dialog4": "jiuguan_tips_4" + } + }, + "jiuba": { + "1": { + "name": "酒馆单抽", + "need1": { + "a": "item", + "t": 4, + "n": 1 + }, + "need2": { + "a": "attr", + "t": "rmbmoney", + "n": 300 + }, + "free": 1, + "firstdiaoluo": 10020, + "diaoluo": [ + 10001, + 10002, + 10003, + 10004, + 10005, + 10006, + 10007, + 10008, + 10009, + 10010 + ], + "replace": { + "num": 10, + "colour": [ + 3, + 4 + ], + "diaoluo": 10013 + } + }, + "2": { + "name": "酒吧十连", + "need1": { + "a": "item", + "t": 4, + "n": 10 + }, + "need2": { + "a": "attr", + "t": "rmbmoney", + "n": 2700 + }, + "firstdiaoluo": [ + 10021, + 10002, + 10003, + 10004, + 10005, + 10006, + 10007, + 10008, + 10009, + 10010 + ], + "diaoluo": [ + 10001, + 10002, + 10003, + 10004, + 10005, + 10006, + 10007, + 10008, + 10009, + 10010 + ] + } + }, + "jiubabaodi": { + "numbd": { + "50": [10011], + "250": [10012], + "550": [10011], + "1000": [10011], + "1500": [10011], + "2000": [10011], + "2500": [10011], + "3000": [10011], + "3500": [10011], + "4000": [10011], + "4500": [10011], + "5000": [10011], + "5500": [10011], + "6000": [10011], + "6500": [10011], + "7000": [10011], + "7500": [10011], + "8000": [10011], + "8500": [10011], + "9000": [10011], + "9500": [10011], + "10000": [10011] + } + } +} \ No newline at end of file diff --git a/src/json/chuanshuozhilu.json5 b/src/json/chuanshuozhilu.json5 new file mode 100644 index 0000000..ca92e25 --- /dev/null +++ b/src/json/chuanshuozhilu.json5 @@ -0,0 +1,65 @@ +[ + { + //干部id + hid: '5001', + //持续时间 + time: 2592000, + //任务 + task: [ + { idx: 0,total: 3, type: 'jieji', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1'}, + { idx: 1,total: 50, type: 'lv', prize: [{a: 'item', t: '12', n: 500}], des:'intr_cszl_des_2' }, + { idx: 2,total: 4, type: 'jieji', prize: [{a: 'item', t: '1', n: 5000000}], des:'intr_cszl_des_1' }, + { idx: 3,total: 100, type: 'lv', prize: [{a: 'item', t: '12', n: 1000}], des:'intr_cszl_des_2' }, + { idx: 4,total: 5, type: 'jieji', prize: [{a: 'item', t: '1', n: 8000000}], des:'intr_cszl_des_1' }, + { idx: 5,total: 150, type: 'lv', prize: [{a: 'item', t: '12', n: 1500}], des:'intr_cszl_des_2' }, + { idx: 6,total: 6, type: 'jieji', prize: [{a: 'item', t: '1', n: 12000000}], des:'intr_cszl_des_1' }, + { idx: 7,total: 200, type: 'lv', prize: [{a: 'item', t: '12', n: 2000}], des:'intr_cszl_des_2' }, + { idx: 8,total: 7, type: 'jieji', prize: [{a: 'item', t: '1', n: 20000000}], des:'intr_cszl_des_1' }, + { idx: 9,total: 250, type: 'lv', prize: [{a: 'item', t: '5001', n: 20}], des:'intr_cszl_des_2' } + ], + //宝箱 + box: { total: 10, prize: [{a: 'item', t: '610', n: 1}] } + }, + { + //干部id + hid: '5002', + //持续时间 + time: 5184000, + //任务 + task: [ + { idx: 0,total: 3, type: 'jieji', prize: [{a: 'item', t: '1', n: 5000000}], des:'intr_cszl_des_1'}, + { idx: 1,total: 50, type: 'lv', prize: [{a: 'item', t: '12', n: 1000}], des:'intr_cszl_des_2' }, + { idx: 2,total: 4, type: 'jieji', prize: [{a: 'item', t: '1', n: 8000000}], des:'intr_cszl_des_1' }, + { idx: 3,total: 100, type: 'lv', prize: [{a: 'item', t: '12', n: 1500}], des:'intr_cszl_des_2' }, + { idx: 4,total: 5, type: 'jieji', prize: [{a: 'item', t: '1', n: 12000000}], des:'intr_cszl_des_1' }, + { idx: 5,total: 150, type: 'lv', prize: [{a: 'item', t: '12', n: 2000}], des:'intr_cszl_des_2' }, + { idx: 6,total: 6, type: 'jieji', prize: [{a: 'item', t: '1', n: 20000000}], des:'intr_cszl_des_1' }, + { idx: 7,total: 200, type: 'lv', prize: [{a: 'item', t: '5002', n: 20}], des:'intr_cszl_des_2' }, + { idx: 8,total: 7, type: 'jieji', prize: [{a: 'item', t: '1', n: 50000000}], des:'intr_cszl_des_1' }, + { idx: 9,total: 250, type: 'lv', prize: [{a: 'item', t: '5002', n: 20}], des:'intr_cszl_des_2' } + ], + //宝箱 + box: { total: 10, prize: [{a: 'item', t: '610', n: 1}] } + }, + { + //干部id + hid: '5004', + //持续时间 + time: 7776000, + //任务 + task: [ + { idx: 0,total: 3, type: 'jieji', prize: [{a: 'item', t: '1', n: 5000000}], des:'intr_cszl_des_1'}, + { idx: 1,total: 50, type: 'lv', prize: [{a: 'item', t: '12', n: 1500}], des:'intr_cszl_des_2' }, + { idx: 2,total: 4, type: 'jieji', prize: [{a: 'item', t: '1', n: 8000000}], des:'intr_cszl_des_1' }, + { idx: 3,total: 100, type: 'lv', prize: [{a: 'item', t: '12', n: 2000}], des:'intr_cszl_des_2' }, + { idx: 4,total: 5, type: 'jieji', prize: [{a: 'item', t: '1', n: 12000000}], des:'intr_cszl_des_1' }, + { idx: 5,total: 150, type: 'lv', prize: [{a: 'item', t: '12', n: 3000}], des:'intr_cszl_des_2' }, + { idx: 6,total: 6, type: 'jieji', prize: [{a: 'item', t: '1', n: 20000000}], des:'intr_cszl_des_1' }, + { idx: 7,total: 200, type: 'lv', prize: [{a: 'item', t: '5004', n: 20}], des:'intr_cszl_des_2' }, + { idx: 8,total: 7, type: 'jieji', prize: [{a: 'item', t: '1', n: 50000000}], des:'intr_cszl_des_1' }, + { idx: 9,total: 250, type: 'lv', prize: [{a: 'item', t: '5004', n: 20}], des:'intr_cszl_des_2' } + ], + //宝箱 + box: { total: 10, prize: [{a: 'item', t: '610', n: 1}] } + }, +] \ No newline at end of file diff --git a/src/json/clsl_com.json5 b/src/json/clsl_com.json5 new file mode 100644 index 0000000..3ab8c74 --- /dev/null +++ b/src/json/clsl_com.json5 @@ -0,0 +1,60 @@ +{ + //赛区划分 + divide: [ + { day: [1, 30], group: 0 }, + { day: [31, 60], group: 1 }, + { day: [61, 120], group: 2 }, + { day: [121, 210], group: 3 }, + { day: [211, 99999999], group: 4 }, + ], + //赛区划分时间 + divideTime: 0, + //挑战时间 + fightTime: [28800, 511200], + //发奖时间 + prizeTime: 598200, + //胜场奖励 + fightWinPrize: [ + { total: 5, prize: [{ a: 'item', t: '37', n: 1 }], star: 0 }, + { total: 12, prize: [{ a: 'item', t: '37', n: 3 },{ a: 'item', t: '630', n: 3 }], star: 0 } + ], + //每日挑战次数 + fightNum: 9, + //vip对应购买挑战次数 + vipBuyFightNum: [3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,7,7,7], + //挑战次数购买消耗 + buyFightNumNeed: [{ a: 'attr', t: 'rmbmoney', n:50 },{ a: 'attr', t: 'rmbmoney', n:50 },{ a: 'attr', t: 'rmbmoney', n:50 },{ a: 'attr', t: 'rmbmoney', n:100 },{ a: 'attr', t: 'rmbmoney', n:150 },{ a: 'attr', t: 'rmbmoney', n:200 },{ a: 'attr', t: 'rmbmoney', n:200 }], + //王者排名奖励 + rankPrize: [ + { rank: [1, 1], prize: [{ a: 'item', t: '631', n: 30 },{ a: 'item', t: '601', n: 30 }],title:'intr_clsl_rankPrize1' }, + { rank: [2, 2], prize: [{ a: 'item', t: '631', n: 25 },{ a: 'item', t: '601', n: 25 }] ,title:'intr_clsl_rankPrize2'}, + { rank: [3, 3], prize: [{ a: 'item', t: '631', n: 20 },{ a: 'item', t: '601', n: 20 }] ,title:'intr_clsl_rankPrize3'}, + { rank: [4, 4], prize: [{ a: 'item', t: '631', n: 18 },{ a: 'item', t: '601', n: 18 }] ,title:'intr_clsl_rankPrize4'}, + { rank: [5, 5], prize: [{ a: 'item', t: '631', n: 16 },{ a: 'item', t: '601', n: 16 }] ,title:'intr_clsl_rankPrize5'}, + { rank: [6, 6], prize: [{ a: 'item', t: '631', n: 14 },{ a: 'item', t: '601', n: 14 }] ,title:'intr_clsl_rankPrize6'}, + { rank: [7, 7], prize: [{ a: 'item', t: '631', n: 13 },{ a: 'item', t: '601', n: 13 }] ,title:'intr_clsl_rankPrize7'}, + { rank: [8, 8], prize: [{ a: 'item', t: '631', n: 12 },{ a: 'item', t: '601', n: 12 }] ,title:'intr_clsl_rankPrize8'}, + { rank: [9, 9], prize: [{ a: 'item', t: '631', n: 11 },{ a: 'item', t: '601', n: 11 }] ,title:'intr_clsl_rankPrize9'}, + { rank: [10, 10], prize: [{ a: 'item', t: '631', n: 10 },{ a: 'item', t: '601', n: 10 }] ,title:'intr_clsl_rankPrize10'} + ], + //段位奖励 + danPrize: [ + { star: [49, 49], prize: [{ a: 'item', t: '605', n:3 },{ a: 'item', t: '29', n:10 },{ a: 'item', t: '38', n:3 },{ a: 'item', t: '40', n:1 }] }, + { star: [39, 48], prize: [{ a: 'item', t: '605', n:2 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '38', n:2 }] }, + { star: [29, 38], prize: [{ a: 'item', t: '606', n:3 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '38', n:1 }] }, + { star: [21, 28], prize: [{ a: 'item', t: '606', n:2 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '39', n:1000 }] }, + { star: [13, 20], prize: [{ a: 'item', t: '606', n:1 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '39', n:800 }] }, + { star: [7, 12], prize: [{ a: 'item', t: '29', n:10 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '39', n:600 }] }, + { star: [0, 6], prize: [{ a: 'item', t: '29', n:5 },{ a: 'item', t: '29', n:5 },{ a: 'item', t: '39', n:400 }] } + ], + //王者排名邮件信息 + email_rank: { + title: 'email_title_clls_rank', + content: 'email_content_clls_rank' + }, + //段位奖励邮件 + email_dan: { + title: 'email_title_clls_dan', + content: 'email_content_clls_dan' + } +} \ No newline at end of file diff --git a/src/json/clsl_dan.json b/src/json/clsl_dan.json new file mode 100644 index 0000000..6978a0d --- /dev/null +++ b/src/json/clsl_dan.json @@ -0,0 +1,1052 @@ +{ + "0": { + "allStar": 0, + "dan": 1, + "danName": "intr_clsl_danName_1", + "jieji": 1, + "star": 0, + "failCut": 0, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 30 + }, + "1": { + "allStar": 1, + "dan": 1, + "danName": "intr_clsl_danName_2", + "jieji": 1, + "star": 1, + "failCut": 0, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 30 + }, + "2": { + "allStar": 2, + "dan": 1, + "danName": "intr_clsl_danName_3", + "jieji": 1, + "star": 2, + "failCut": 0, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 30 + }, + "3": { + "allStar": 3, + "dan": 1, + "danName": "intr_clsl_danName_4", + "jieji": 1, + "star": 3, + "failCut": 0, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 30 + }, + "4": { + "allStar": 4, + "dan": 1, + "danName": "intr_clsl_danName_5", + "jieji": 2, + "star": 1, + "failCut": 0, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 31 + }, + "5": { + "allStar": 5, + "dan": 1, + "danName": "intr_clsl_danName_6", + "jieji": 2, + "star": 2, + "failCut": 0, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 31 + }, + "6": { + "allStar": 6, + "dan": 1, + "danName": "intr_clsl_danName_7", + "jieji": 2, + "star": 3, + "failCut": 0, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 31 + }, + "7": { + "allStar": 7, + "dan": 2, + "danName": "intr_clsl_danName_8", + "jieji": 1, + "star": 1, + "failCut": 0, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 31 + }, + "8": { + "allStar": 8, + "dan": 2, + "danName": "intr_clsl_danName_9", + "jieji": 1, + "star": 2, + "failCut": 0, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 32 + }, + "9": { + "allStar": 9, + "dan": 2, + "danName": "intr_clsl_danName_10", + "jieji": 1, + "star": 3, + "failCut": 0, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 32 + }, + "10": { + "allStar": 10, + "dan": 2, + "danName": "intr_clsl_danName_11", + "jieji": 2, + "star": 1, + "failCut": 0, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 32 + }, + "11": { + "allStar": 11, + "dan": 2, + "danName": "intr_clsl_danName_12", + "jieji": 2, + "star": 2, + "failCut": 0, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 32 + }, + "12": { + "allStar": 12, + "dan": 2, + "danName": "intr_clsl_danName_13", + "jieji": 2, + "star": 3, + "failCut": 0, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 33 + }, + "13": { + "allStar": 13, + "dan": 3, + "danName": "intr_clsl_danName_14", + "jieji": 1, + "star": 1, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 33 + }, + "14": { + "allStar": 14, + "dan": 3, + "danName": "intr_clsl_danName_15", + "jieji": 1, + "star": 2, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 33 + }, + "15": { + "allStar": 15, + "dan": 3, + "danName": "intr_clsl_danName_16", + "jieji": 1, + "star": 3, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 33 + }, + "16": { + "allStar": 16, + "dan": 3, + "danName": "intr_clsl_danName_17", + "jieji": 1, + "star": 4, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 34 + }, + "17": { + "allStar": 17, + "dan": 3, + "danName": "intr_clsl_danName_18", + "jieji": 2, + "star": 1, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 34 + }, + "18": { + "allStar": 18, + "dan": 3, + "danName": "intr_clsl_danName_19", + "jieji": 2, + "star": 2, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 34 + }, + "19": { + "allStar": 19, + "dan": 3, + "danName": "intr_clsl_danName_20", + "jieji": 2, + "star": 3, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 34 + }, + "20": { + "allStar": 20, + "dan": 3, + "danName": "intr_clsl_danName_21", + "jieji": 2, + "star": 4, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 35 + }, + "21": { + "allStar": 21, + "dan": 4, + "danName": "intr_clsl_danName_22", + "jieji": 1, + "star": 1, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 35 + }, + "22": { + "allStar": 22, + "dan": 4, + "danName": "intr_clsl_danName_23", + "jieji": 1, + "star": 2, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 35 + }, + "23": { + "allStar": 23, + "dan": 4, + "danName": "intr_clsl_danName_24", + "jieji": 1, + "star": 3, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 35 + }, + "24": { + "allStar": 24, + "dan": 4, + "danName": "intr_clsl_danName_25", + "jieji": 1, + "star": 4, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 36 + }, + "25": { + "allStar": 25, + "dan": 4, + "danName": "intr_clsl_danName_26", + "jieji": 2, + "star": 1, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 36 + }, + "26": { + "allStar": 26, + "dan": 4, + "danName": "intr_clsl_danName_27", + "jieji": 2, + "star": 2, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 36 + }, + "27": { + "allStar": 27, + "dan": 4, + "danName": "intr_clsl_danName_28", + "jieji": 2, + "star": 3, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 36 + }, + "28": { + "allStar": 28, + "dan": 4, + "danName": "intr_clsl_danName_29", + "jieji": 2, + "star": 4, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 37 + }, + "29": { + "allStar": 29, + "dan": 5, + "danName": "intr_clsl_danName_30", + "jieji": 1, + "star": 1, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 37 + }, + "30": { + "allStar": 30, + "dan": 5, + "danName": "intr_clsl_danName_31", + "jieji": 1, + "star": 2, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 37 + }, + "31": { + "allStar": 31, + "dan": 5, + "danName": "intr_clsl_danName_32", + "jieji": 1, + "star": 3, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 37 + }, + "32": { + "allStar": 32, + "dan": 5, + "danName": "intr_clsl_danName_33", + "jieji": 1, + "star": 4, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 38 + }, + "33": { + "allStar": 33, + "dan": 5, + "danName": "intr_clsl_danName_34", + "jieji": 1, + "star": 5, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 38 + }, + "34": { + "allStar": 34, + "dan": 5, + "danName": "intr_clsl_danName_35", + "jieji": 2, + "star": 1, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 38 + }, + "35": { + "allStar": 35, + "dan": 5, + "danName": "intr_clsl_danName_36", + "jieji": 2, + "star": 2, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 38 + }, + "36": { + "allStar": 36, + "dan": 5, + "danName": "intr_clsl_danName_37", + "jieji": 2, + "star": 3, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 39 + }, + "37": { + "allStar": 37, + "dan": 5, + "danName": "intr_clsl_danName_38", + "jieji": 2, + "star": 4, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 39 + }, + "38": { + "allStar": 38, + "dan": 5, + "danName": "intr_clsl_danName_39", + "jieji": 2, + "star": 5, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 39 + }, + "39": { + "allStar": 39, + "dan": 6, + "danName": "intr_clsl_danName_40", + "jieji": 1, + "star": 1, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 39 + }, + "40": { + "allStar": 40, + "dan": 6, + "danName": "intr_clsl_danName_41", + "jieji": 1, + "star": 2, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 40 + }, + "41": { + "allStar": 41, + "dan": 6, + "danName": "intr_clsl_danName_42", + "jieji": 1, + "star": 3, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 40 + }, + "42": { + "allStar": 42, + "dan": 6, + "danName": "intr_clsl_danName_43", + "jieji": 1, + "star": 4, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 40 + }, + "43": { + "allStar": 43, + "dan": 6, + "danName": "intr_clsl_danName_44", + "jieji": 1, + "star": 5, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 40 + }, + "44": { + "allStar": 44, + "dan": 6, + "danName": "intr_clsl_danName_45", + "jieji": 2, + "star": 1, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 41 + }, + "45": { + "allStar": 45, + "dan": 6, + "danName": "intr_clsl_danName_46", + "jieji": 2, + "star": 2, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 41 + }, + "46": { + "allStar": 46, + "dan": 6, + "danName": "intr_clsl_danName_47", + "jieji": 2, + "star": 3, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 41 + }, + "47": { + "allStar": 47, + "dan": 6, + "danName": "intr_clsl_danName_48", + "jieji": 2, + "star": 4, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 41 + }, + "48": { + "allStar": 48, + "dan": 6, + "danName": "intr_clsl_danName_49", + "jieji": 2, + "star": 5, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 41 + }, + "49": { + "allStar": 49, + "dan": 7, + "danName": "intr_clsl_danName_50", + "jieji": 1, + "star": 1, + "failCut": 1, + "fightPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "39", + "n": 100 + } + ], + "npc": 42 + } +} \ No newline at end of file diff --git a/src/json/com.json b/src/json/com.json new file mode 100644 index 0000000..ff7edf1 --- /dev/null +++ b/src/json/com.json @@ -0,0 +1,215 @@ +{ + "TerritoryFight_MaxTime": { + "id": "TerritoryFight_MaxTime", + "type": "int", + "value": 480, + "text": "【地盘争夺】最长可控制建筑时间/分钟" + }, + "TerritoryFight_InvincibleTime": { + "id": "TerritoryFight_InvincibleTime", + "type": "int", + "value": 10, + "text": "【地盘争夺】无敌时间" + }, + "TerritoryFight_ChallengesNum": { + "id": "TerritoryFight_ChallengesNum", + "type": "int", + "value": 1, + "text": "【地盘争夺】每日挑战次数" + }, + "TerritoryFight_PurchaseNum": { + "id": "TerritoryFight_PurchaseNum", + "type": "int", + "value": 10, + "text": "【地盘争夺】每日可购买挑战次数" + }, + "TerritoryFight_PurchasePrice": { + "id": "TerritoryFight_PurchasePrice", + "type": "atn", + "value": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + } + ], + "text": "【地盘争夺】购买挑战次数价格" + }, + "GuildDraw_Cos": { + "id": "GuildDraw_Cos", + "type": "atn", + "value": [ + { + "a": "item", + "t": "17", + "n": 1 + } + ], + "text": "【势力抽奖】单次消耗" + }, + "GuildDraw_Fall": { + "id": "GuildDraw_Fall", + "type": "int", + "value": 3001, + "text": "【势力抽奖】掉落组" + }, + "GuildDraw_display": { + "id": "GuildDraw_display", + "type": "list,int", + "value": [ + 1, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 1, + 1 + ], + "text": "【势力抽奖】展示哪些抽奖结果" + }, + "GuildFight_RewardMultiple": { + "id": "GuildFight_RewardMultiple", + "type": "list,int", + "value": [ + 1.5, + 1.3, + 1 + ], + "text": "【势力争夺】会长/管理/成员分别获得1.5/1.3/1倍奖励" + }, + "GuildFight_LuckReward": { + "id": "GuildFight_LuckReward", + "type": "int", + "value": 2500, + "text": "【势力争夺】幸运奖积分门槛" + }, + "GuildFight_JoinReward": { + "id": "GuildFight_JoinReward", + "type": "int", + "value": 1500, + "text": "【势力争夺】参与奖积分门槛" + }, + "PiratesFight_ChallengesNum": { + "id": "PiratesFight_ChallengesNum", + "type": "int", + "value": 15, + "text": "【讨伐海盗】每日可讨伐次数" + }, + "Guild_CD": { + "id": "Guild_CD", + "type": "int", + "value": 1440, + "text": "退出公会重加CD/分钟" + }, + "zjcz_atk": { + "id": "zjcz_atk", + "type": "string", + "value": "(lv-1)*1+10", + "text": "主角攻击值提升公式" + }, + "zjcz_def": { + "id": "zjcz_def", + "type": "string", + "value": "(lv-1)*1+10", + "text": "主角防御值提升公式" + }, + "zjcz_liliang": { + "id": "zjcz_liliang", + "type": "string", + "value": "(lv-1)*1+10", + "text": "主角力量值提升公式" + }, + "zjcz_zhishi": { + "id": "zjcz_zhishi", + "type": "string", + "value": "(lv-1)*1+10", + "text": "主角知识值提升公式" + }, + "zj_mofa": { + "id": "zj_mofa", + "type": "int", + "value": 300, + "text": "主角初始魔法值" + }, + "zjcz_mofa": { + "id": "zjcz_mofa", + "type": "string", + "value": "zjzs", + "text": "主角魔法值提升公式" + }, + "dxqz_crit_2": { + "id": "dxqz_crit_2", + "type": "float", + "value": 0.3, + "text": "地下钱庄2倍暴击概率" + }, + "dxqz_crit_3": { + "id": "dxqz_crit_3", + "type": "float", + "value": 0.15, + "text": "地下钱庄3倍暴击概率" + }, + "dxqz_gs": { + "id": "dxqz_gs", + "type": "string", + "value": "(Math.pow(lv,0.7)*10000+500)*2", + "text": "地下钱庄兑换公式" + }, + "dxqz_dh_sx": { + "id": "dxqz_dh_sx", + "type": "int", + "value": 400000, + "text": "地下钱庄单倍兑换上限" + }, + "pata_saodang": { + "id": "pata_saodang", + "type": "int", + "value": 5, + "text": "斩草除根单日扫荡次数" + }, + "dpzd_time": { + "id": "dpzd_time", + "type": "atn", + "value": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + } + ], + "text": "地盘争夺延长时间的消耗" + }, + "zccg_kstz": { + "id": "zccg_kstz", + "type": "int", + "value": 3, + "text": "斩草除根快速挑战循环动画持续秒数" + }, + "xuanshang_onekey": { + "id": "xuanshang_onekey", + "type": "int", + "value": 40, + "text": "一键悬赏需要完成悬赏任务数量" + }, + "dpzd_quyu_num": { + "id": "dpzd_quyu_num", + "type": "int", + "value": 2, + "text": "地盘争夺每个区域最多占领X个坑" + }, + "zccg_reward_show": { + "id": "zccg_reward_show", + "type": "int", + "value": 20, + "text": "黑暗塔奖励最多显示X档" + }, + "speed_shiwu_lvmax": { + "id": "speed_shiwu_lvmax", + "type": "int", + "value": 100, + "text": "速度饰品最高等级" + } +} \ No newline at end of file diff --git a/src/json/common.json b/src/json/common.json new file mode 100644 index 0000000..ccd5c32 --- /dev/null +++ b/src/json/common.json @@ -0,0 +1,53 @@ +{ + "base": { + "patacom": { + "patamax": "爬塔功能: 每日爬塔限制次数;-1则不限制" + }, + "gbtxcom": { + "gbtxadd": "干部特训功能:挑战胜利增加的幸运值" + }, + "usercom": { + "changename": "改名消耗" + } + }, + "patacom": { + "patamax": -1 + }, + "gbtxcom": { + "gbtxadd": 1 + }, + "usercom": { + "changename": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 0 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 150 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + } + ] + } +} \ No newline at end of file diff --git a/src/json/diaoluo.json b/src/json/diaoluo.json new file mode 100644 index 0000000..58a251b --- /dev/null +++ b/src/json/diaoluo.json @@ -0,0 +1,32170 @@ +{ + "1": [ + { + "id": 1, + "a": "attr", + "t": "nexp", + "n": 100, + "p": 1 + } + ], + "2": [ + { + "id": 2, + "a": "hero", + "t": 5001, + "n": 1, + "p": 1 + }, + { + "id": 2, + "a": "hero", + "t": 5002, + "n": 1, + "p": 1 + }, + { + "id": 2, + "a": "hero", + "t": 5003, + "n": 1, + "p": 1 + }, + { + "id": 2, + "a": "hero", + "t": 5004, + "n": 1, + "p": 1 + }, + { + "id": 2, + "a": "hero", + "t": 5005, + "n": 1, + "p": 1 + }, + { + "id": 2, + "a": "hero", + "t": 4001, + "n": 1, + "p": 1 + }, + { + "id": 2, + "a": "hero", + "t": 4002, + "n": 1, + "p": 1 + }, + { + "id": 2, + "a": "hero", + "t": 3001, + "n": 1, + "p": 1 + }, + { + "id": 2, + "a": "hero", + "t": 3006, + "n": 1, + "p": 1 + }, + { + "id": 2, + "a": "hero", + "t": 4007, + "n": 1, + "p": 1 + }, + { + "id": 2, + "a": "hero", + "t": 4006, + "n": 1, + "p": 1 + }, + { + "id": 2, + "a": "item", + "t": 5001, + "n": 1, + "p": 9 + }, + { + "id": 2, + "a": "item", + "t": 5002, + "n": 1, + "p": 9 + }, + { + "id": 2, + "a": "item", + "t": 5003, + "n": 1, + "p": 9 + }, + { + "id": 2, + "a": "item", + "t": 5004, + "n": 1, + "p": 9 + }, + { + "id": 2, + "a": "item", + "t": 5005, + "n": 1, + "p": 9 + }, + { + "id": 2, + "a": "item", + "t": 3001, + "n": 1, + "p": 9 + } + ], + "3": [ + { + "id": 3, + "a": "equip", + "t": 1001, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "equip", + "t": 2001, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "equip", + "t": 3001, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "equip", + "t": 4001, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "equip", + "t": 1002, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "equip", + "t": 2002, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "equip", + "t": 3002, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "equip", + "t": 4002, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "equip", + "t": 1003, + "n": 1, + "p": 20 + }, + { + "id": 3, + "a": "equip", + "t": 2003, + "n": 1, + "p": 20 + }, + { + "id": 3, + "a": "equip", + "t": 3003, + "n": 1, + "p": 20 + }, + { + "id": 3, + "a": "equip", + "t": 4003, + "n": 1, + "p": 20 + }, + { + "id": 3, + "a": "equip", + "t": 1004, + "n": 1, + "p": 10 + }, + { + "id": 3, + "a": "equip", + "t": 2004, + "n": 1, + "p": 10 + }, + { + "id": 3, + "a": "equip", + "t": 3004, + "n": 1, + "p": 10 + }, + { + "id": 3, + "a": "equip", + "t": 4004, + "n": 1, + "p": 10 + }, + { + "id": 3, + "a": "equip", + "t": 1005, + "n": 1, + "p": 1 + }, + { + "id": 3, + "a": "equip", + "t": 2005, + "n": 1, + "p": 1 + }, + { + "id": 3, + "a": "equip", + "t": 3005, + "n": 1, + "p": 1 + }, + { + "id": 3, + "a": "equip", + "t": 4005, + "n": 1, + "p": 1 + }, + { + "id": 3, + "a": "item", + "t": 10001, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "item", + "t": 20001, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "item", + "t": 30001, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "item", + "t": 40001, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "item", + "t": 10002, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "item", + "t": 20002, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "item", + "t": 30002, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "item", + "t": 40002, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "item", + "t": 10003, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "item", + "t": 20003, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "item", + "t": 30003, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "item", + "t": 40003, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "item", + "t": 10004, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "item", + "t": 20004, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "item", + "t": 30004, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "item", + "t": 40004, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "item", + "t": 10005, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "item", + "t": 20005, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "item", + "t": 30005, + "n": 1, + "p": 100 + }, + { + "id": 3, + "a": "item", + "t": 40005, + "n": 1, + "p": 100 + } + ], + "4": [ + { + "id": 4, + "a": "hero", + "t": 5001, + "n": 1, + "p": 1 + }, + { + "id": 4, + "a": "hero", + "t": 5002, + "n": 1, + "p": 1 + }, + { + "id": 4, + "a": "hero", + "t": 5003, + "n": 1, + "p": 1 + }, + { + "id": 4, + "a": "hero", + "t": 5004, + "n": 1, + "p": 1 + }, + { + "id": 4, + "a": "hero", + "t": 5005, + "n": 1, + "p": 1 + } + ], + "5": [ + { + "id": 5, + "a": "item", + "t": 10001, + "n": 1, + "p": 1 + }, + { + "id": 5, + "a": "item", + "t": 20001, + "n": 1, + "p": 1 + }, + { + "id": 5, + "a": "item", + "t": 30001, + "n": 1, + "p": 1 + }, + { + "id": 5, + "a": "item", + "t": 40001, + "n": 1, + "p": 1 + }, + { + "id": 5, + "a": "item", + "t": 2001, + "n": 1, + "p": 10 + }, + { + "id": 5, + "a": "item", + "t": 2002, + "n": 1, + "p": 10 + }, + { + "id": 5, + "a": "item", + "t": 3001, + "n": 1, + "p": 1 + }, + { + "id": 5, + "a": "item", + "t": 3002, + "n": 1, + "p": 1 + }, + { + "id": 5, + "a": "item", + "t": 3003, + "n": 1, + "p": 1 + }, + { + "id": 5, + "a": "item", + "t": 3004, + "n": 1, + "p": 1 + }, + { + "id": 5, + "a": "item", + "t": 3005, + "n": 1, + "p": 1 + }, + { + "id": 5, + "a": "item", + "t": 3006, + "n": 1, + "p": 1 + }, + { + "id": 5, + "a": "item", + "t": 3007, + "n": 1, + "p": 1 + }, + { + "id": 5, + "a": "item", + "t": 3008, + "n": 1, + "p": 1 + }, + { + "id": 5, + "a": "item", + "t": 3009, + "n": 1, + "p": 1 + }, + { + "id": 5, + "a": "item", + "t": 3010, + "n": 1, + "p": 1 + }, + { + "id": 5, + "a": "item", + "t": 3011, + "n": 1, + "p": 1 + }, + { + "id": 5, + "a": "item", + "t": 3012, + "n": 1, + "p": 1 + }, + { + "id": 5, + "a": "item", + "t": 3013, + "n": 1, + "p": 1 + }, + { + "id": 5, + "a": "item", + "t": 3014, + "n": 1, + "p": 1 + }, + { + "id": 5, + "a": "item", + "t": 3015, + "n": 1, + "p": 1 + }, + { + "id": 5, + "a": "item", + "t": 2, + "n": 1, + "p": 321 + } + ], + "6": [ + { + "id": 6, + "a": "item", + "t": 10002, + "n": 1, + "p": 1 + }, + { + "id": 6, + "a": "item", + "t": 20002, + "n": 1, + "p": 1 + }, + { + "id": 6, + "a": "item", + "t": 30002, + "n": 1, + "p": 1 + }, + { + "id": 6, + "a": "item", + "t": 40002, + "n": 1, + "p": 1 + }, + { + "id": 6, + "a": "item", + "t": 2001, + "n": 1, + "p": 10 + }, + { + "id": 6, + "a": "item", + "t": 2002, + "n": 1, + "p": 10 + }, + { + "id": 6, + "a": "item", + "t": 3001, + "n": 1, + "p": 5 + }, + { + "id": 6, + "a": "item", + "t": 3002, + "n": 1, + "p": 5 + }, + { + "id": 6, + "a": "item", + "t": 3003, + "n": 1, + "p": 5 + }, + { + "id": 6, + "a": "item", + "t": 3004, + "n": 1, + "p": 5 + }, + { + "id": 6, + "a": "item", + "t": 3005, + "n": 1, + "p": 5 + }, + { + "id": 6, + "a": "item", + "t": 3006, + "n": 1, + "p": 5 + }, + { + "id": 6, + "a": "item", + "t": 3007, + "n": 1, + "p": 5 + }, + { + "id": 6, + "a": "item", + "t": 3008, + "n": 1, + "p": 5 + }, + { + "id": 6, + "a": "item", + "t": 3009, + "n": 1, + "p": 5 + }, + { + "id": 6, + "a": "item", + "t": 3010, + "n": 1, + "p": 5 + }, + { + "id": 6, + "a": "item", + "t": 3011, + "n": 1, + "p": 5 + }, + { + "id": 6, + "a": "item", + "t": 3012, + "n": 1, + "p": 5 + }, + { + "id": 6, + "a": "item", + "t": 3013, + "n": 1, + "p": 5 + }, + { + "id": 6, + "a": "item", + "t": 3014, + "n": 1, + "p": 5 + }, + { + "id": 6, + "a": "item", + "t": 3015, + "n": 1, + "p": 5 + }, + { + "id": 6, + "a": "item", + "t": 4001, + "n": 1, + "p": 1 + }, + { + "id": 6, + "a": "item", + "t": 4002, + "n": 1, + "p": 1 + }, + { + "id": 6, + "a": "item", + "t": 4003, + "n": 1, + "p": 1 + }, + { + "id": 6, + "a": "item", + "t": 4004, + "n": 1, + "p": 1 + }, + { + "id": 6, + "a": "item", + "t": 4005, + "n": 1, + "p": 1 + }, + { + "id": 6, + "a": "item", + "t": 4006, + "n": 1, + "p": 1 + }, + { + "id": 6, + "a": "item", + "t": 4007, + "n": 1, + "p": 1 + }, + { + "id": 6, + "a": "item", + "t": 4008, + "n": 1, + "p": 1 + }, + { + "id": 6, + "a": "item", + "t": 4009, + "n": 1, + "p": 1 + }, + { + "id": 6, + "a": "item", + "t": 4010, + "n": 1, + "p": 1 + }, + { + "id": 6, + "a": "item", + "t": 4011, + "n": 1, + "p": 1 + }, + { + "id": 6, + "a": "item", + "t": 4012, + "n": 1, + "p": 1 + }, + { + "id": 6, + "a": "item", + "t": 4013, + "n": 1, + "p": 1 + }, + { + "id": 6, + "a": "item", + "t": 4014, + "n": 1, + "p": 1 + }, + { + "id": 6, + "a": "item", + "t": 4015, + "n": 1, + "p": 1 + }, + { + "id": 6, + "a": "item", + "t": 2, + "n": 1, + "p": 246 + } + ], + "7": [ + { + "id": 7, + "a": "item", + "t": 10003, + "n": 1, + "p": 1 + }, + { + "id": 7, + "a": "item", + "t": 20003, + "n": 1, + "p": 1 + }, + { + "id": 7, + "a": "item", + "t": 30003, + "n": 1, + "p": 1 + }, + { + "id": 7, + "a": "item", + "t": 40003, + "n": 1, + "p": 1 + }, + { + "id": 7, + "a": "item", + "t": 3001, + "n": 1, + "p": 5 + }, + { + "id": 7, + "a": "item", + "t": 3002, + "n": 1, + "p": 5 + }, + { + "id": 7, + "a": "item", + "t": 3003, + "n": 1, + "p": 5 + }, + { + "id": 7, + "a": "item", + "t": 3004, + "n": 1, + "p": 5 + }, + { + "id": 7, + "a": "item", + "t": 3005, + "n": 1, + "p": 5 + }, + { + "id": 7, + "a": "item", + "t": 3006, + "n": 1, + "p": 5 + }, + { + "id": 7, + "a": "item", + "t": 3007, + "n": 1, + "p": 5 + }, + { + "id": 7, + "a": "item", + "t": 3008, + "n": 1, + "p": 5 + }, + { + "id": 7, + "a": "item", + "t": 3009, + "n": 1, + "p": 5 + }, + { + "id": 7, + "a": "item", + "t": 3010, + "n": 1, + "p": 5 + }, + { + "id": 7, + "a": "item", + "t": 3011, + "n": 1, + "p": 5 + }, + { + "id": 7, + "a": "item", + "t": 3012, + "n": 1, + "p": 5 + }, + { + "id": 7, + "a": "item", + "t": 3013, + "n": 1, + "p": 5 + }, + { + "id": 7, + "a": "item", + "t": 3014, + "n": 1, + "p": 5 + }, + { + "id": 7, + "a": "item", + "t": 3015, + "n": 1, + "p": 5 + }, + { + "id": 7, + "a": "item", + "t": 4001, + "n": 1, + "p": 2 + }, + { + "id": 7, + "a": "item", + "t": 4002, + "n": 1, + "p": 2 + }, + { + "id": 7, + "a": "item", + "t": 4003, + "n": 1, + "p": 2 + }, + { + "id": 7, + "a": "item", + "t": 4004, + "n": 1, + "p": 2 + }, + { + "id": 7, + "a": "item", + "t": 4005, + "n": 1, + "p": 2 + }, + { + "id": 7, + "a": "item", + "t": 4006, + "n": 1, + "p": 2 + }, + { + "id": 7, + "a": "item", + "t": 4007, + "n": 1, + "p": 2 + }, + { + "id": 7, + "a": "item", + "t": 4008, + "n": 1, + "p": 2 + }, + { + "id": 7, + "a": "item", + "t": 4009, + "n": 1, + "p": 2 + }, + { + "id": 7, + "a": "item", + "t": 4010, + "n": 1, + "p": 2 + }, + { + "id": 7, + "a": "item", + "t": 4011, + "n": 1, + "p": 2 + }, + { + "id": 7, + "a": "item", + "t": 4012, + "n": 1, + "p": 2 + }, + { + "id": 7, + "a": "item", + "t": 4013, + "n": 1, + "p": 2 + }, + { + "id": 7, + "a": "item", + "t": 4014, + "n": 1, + "p": 2 + }, + { + "id": 7, + "a": "item", + "t": 4015, + "n": 1, + "p": 2 + }, + { + "id": 7, + "a": "item", + "t": 2, + "n": 1, + "p": 251 + } + ], + "8": [ + { + "id": 8, + "a": "item", + "t": 10004, + "n": 1, + "p": 1 + }, + { + "id": 8, + "a": "item", + "t": 20004, + "n": 1, + "p": 1 + }, + { + "id": 8, + "a": "item", + "t": 30004, + "n": 1, + "p": 1 + }, + { + "id": 8, + "a": "item", + "t": 40004, + "n": 1, + "p": 1 + }, + { + "id": 8, + "a": "item", + "t": 3001, + "n": 1, + "p": 5 + }, + { + "id": 8, + "a": "item", + "t": 3002, + "n": 1, + "p": 5 + }, + { + "id": 8, + "a": "item", + "t": 3003, + "n": 1, + "p": 5 + }, + { + "id": 8, + "a": "item", + "t": 3004, + "n": 1, + "p": 5 + }, + { + "id": 8, + "a": "item", + "t": 3005, + "n": 1, + "p": 5 + }, + { + "id": 8, + "a": "item", + "t": 3006, + "n": 1, + "p": 5 + }, + { + "id": 8, + "a": "item", + "t": 3007, + "n": 1, + "p": 5 + }, + { + "id": 8, + "a": "item", + "t": 3008, + "n": 1, + "p": 5 + }, + { + "id": 8, + "a": "item", + "t": 3009, + "n": 1, + "p": 5 + }, + { + "id": 8, + "a": "item", + "t": 3010, + "n": 1, + "p": 5 + }, + { + "id": 8, + "a": "item", + "t": 3011, + "n": 1, + "p": 5 + }, + { + "id": 8, + "a": "item", + "t": 3012, + "n": 1, + "p": 5 + }, + { + "id": 8, + "a": "item", + "t": 3013, + "n": 1, + "p": 5 + }, + { + "id": 8, + "a": "item", + "t": 3014, + "n": 1, + "p": 5 + }, + { + "id": 8, + "a": "item", + "t": 3015, + "n": 1, + "p": 5 + }, + { + "id": 8, + "a": "item", + "t": 4001, + "n": 1, + "p": 3 + }, + { + "id": 8, + "a": "item", + "t": 4002, + "n": 1, + "p": 3 + }, + { + "id": 8, + "a": "item", + "t": 4003, + "n": 1, + "p": 3 + }, + { + "id": 8, + "a": "item", + "t": 4004, + "n": 1, + "p": 3 + }, + { + "id": 8, + "a": "item", + "t": 4005, + "n": 1, + "p": 3 + }, + { + "id": 8, + "a": "item", + "t": 4006, + "n": 1, + "p": 3 + }, + { + "id": 8, + "a": "item", + "t": 4007, + "n": 1, + "p": 3 + }, + { + "id": 8, + "a": "item", + "t": 4008, + "n": 1, + "p": 3 + }, + { + "id": 8, + "a": "item", + "t": 4009, + "n": 1, + "p": 3 + }, + { + "id": 8, + "a": "item", + "t": 4010, + "n": 1, + "p": 3 + }, + { + "id": 8, + "a": "item", + "t": 4011, + "n": 1, + "p": 3 + }, + { + "id": 8, + "a": "item", + "t": 4012, + "n": 1, + "p": 3 + }, + { + "id": 8, + "a": "item", + "t": 4013, + "n": 1, + "p": 3 + }, + { + "id": 8, + "a": "item", + "t": 4014, + "n": 1, + "p": 3 + }, + { + "id": 8, + "a": "item", + "t": 4015, + "n": 1, + "p": 3 + }, + { + "id": 8, + "a": "item", + "t": 2, + "n": 1, + "p": 236 + } + ], + "9": [ + { + "id": 9, + "a": "item", + "t": 1001, + "n": 1, + "p": 4 + }, + { + "id": 9, + "a": "item", + "t": 1002, + "n": 1, + "p": 4 + }, + { + "id": 9, + "a": "item", + "t": 2001, + "n": 1, + "p": 4 + }, + { + "id": 9, + "a": "item", + "t": 2002, + "n": 1, + "p": 4 + }, + { + "id": 9, + "a": "item", + "t": 3001, + "n": 1, + "p": 3 + }, + { + "id": 9, + "a": "item", + "t": 3002, + "n": 1, + "p": 3 + }, + { + "id": 9, + "a": "item", + "t": 3003, + "n": 1, + "p": 3 + }, + { + "id": 9, + "a": "item", + "t": 3004, + "n": 1, + "p": 3 + }, + { + "id": 9, + "a": "item", + "t": 3005, + "n": 1, + "p": 3 + }, + { + "id": 9, + "a": "item", + "t": 3006, + "n": 1, + "p": 3 + }, + { + "id": 9, + "a": "item", + "t": 3007, + "n": 1, + "p": 3 + }, + { + "id": 9, + "a": "item", + "t": 3008, + "n": 1, + "p": 3 + }, + { + "id": 9, + "a": "item", + "t": 3009, + "n": 1, + "p": 3 + }, + { + "id": 9, + "a": "item", + "t": 3010, + "n": 1, + "p": 3 + }, + { + "id": 9, + "a": "item", + "t": 3011, + "n": 1, + "p": 3 + }, + { + "id": 9, + "a": "item", + "t": 3012, + "n": 1, + "p": 3 + }, + { + "id": 9, + "a": "item", + "t": 3013, + "n": 1, + "p": 3 + }, + { + "id": 9, + "a": "item", + "t": 3014, + "n": 1, + "p": 3 + }, + { + "id": 9, + "a": "item", + "t": 3015, + "n": 1, + "p": 3 + }, + { + "id": 9, + "a": "item", + "t": 4001, + "n": 1, + "p": 4 + }, + { + "id": 9, + "a": "item", + "t": 4002, + "n": 1, + "p": 4 + }, + { + "id": 9, + "a": "item", + "t": 4003, + "n": 1, + "p": 4 + }, + { + "id": 9, + "a": "item", + "t": 4004, + "n": 1, + "p": 4 + }, + { + "id": 9, + "a": "item", + "t": 4005, + "n": 1, + "p": 4 + }, + { + "id": 9, + "a": "item", + "t": 4006, + "n": 1, + "p": 4 + }, + { + "id": 9, + "a": "item", + "t": 4007, + "n": 1, + "p": 4 + }, + { + "id": 9, + "a": "item", + "t": 4008, + "n": 1, + "p": 4 + }, + { + "id": 9, + "a": "item", + "t": 4009, + "n": 1, + "p": 4 + }, + { + "id": 9, + "a": "item", + "t": 4010, + "n": 1, + "p": 4 + }, + { + "id": 9, + "a": "item", + "t": 4011, + "n": 1, + "p": 4 + }, + { + "id": 9, + "a": "item", + "t": 4012, + "n": 1, + "p": 4 + }, + { + "id": 9, + "a": "item", + "t": 4013, + "n": 1, + "p": 4 + }, + { + "id": 9, + "a": "item", + "t": 4014, + "n": 1, + "p": 4 + }, + { + "id": 9, + "a": "item", + "t": 4015, + "n": 1, + "p": 4 + } + ], + "10": [ + { + "id": 10, + "a": "item", + "t": 2, + "n": 10, + "p": 2 + }, + { + "id": 10, + "a": "item", + "t": 12, + "n": 6, + "p": 2 + }, + { + "id": 10, + "a": "attr", + "t": "jinbi", + "n": 10000, + "p": 2 + }, + { + "id": 10, + "a": "attr", + "t": "rmbmoney", + "n": 10, + "p": 2 + }, + { + "id": 10, + "a": "item", + "t": 21, + "n": 2, + "p": 2 + } + ], + "11": [ + { + "id": 11, + "a": "attr", + "t": "jinbi", + "n": 5000, + "p": 1 + } + ], + "12": [ + { + "id": 12, + "a": "item", + "t": 15, + "n": 10, + "p": 1 + } + ], + "13": [ + { + "id": 13, + "a": "attr", + "t": "jinbi", + "n": 0, + "p": 1 + } + ], + "101": [ + { + "id": 101, + "a": "item", + "t": 25, + "n": 1, + "p": 15 + }, + { + "id": 101, + "a": "item", + "t": 26, + "n": 1, + "p": 10 + }, + { + "id": 101, + "a": "item", + "t": 2, + "n": 50, + "p": 15 + }, + { + "id": 101, + "a": "item", + "t": 12, + "n": 30, + "p": 15 + }, + { + "id": 101, + "a": "item", + "t": 35, + "n": 1, + "p": 15 + }, + { + "id": 101, + "a": "item", + "t": 24, + "n": 1, + "p": 5 + }, + { + "id": 101, + "a": "item", + "t": 36, + "n": 1, + "p": 10 + }, + { + "id": 101, + "a": "item", + "t": 4, + "n": 1, + "p": 5 + } + ], + "102": [ + { + "id": 102, + "a": "attr", + "t": "jinbi", + "n": 50000, + "p": 1 + } + ], + "103": [ + { + "id": 103, + "a": "item", + "t": 3007, + "n": 20, + "p": 100 + } + ], + "104": [ + { + "id": 104, + "a": "attr", + "t": "rmbmoney", + "n": 50, + "p": 1 + } + ], + "105": [ + { + "id": 105, + "a": "item", + "t": 12, + "n": 20, + "p": 1 + } + ], + "106": [ + { + "id": 106, + "a": "item", + "t": 2, + "n": 100, + "p": 1 + } + ], + "107": [ + { + "id": 107, + "a": "item", + "t": 1, + "n": 5000, + "p": 1 + } + ], + "108": [ + { + "id": 108, + "a": "item", + "t": 4, + "n": 2, + "p": 1 + } + ], + "109": [ + { + "id": 109, + "a": "item", + "t": 1, + "n": 10000, + "p": 1 + } + ], + "110": [ + { + "id": 110, + "a": "item", + "t": 1, + "n": 20000, + "p": 1 + } + ], + "111": [ + { + "id": 111, + "a": "item", + "t": 1, + "n": 40000, + "p": 1 + } + ], + "112": [ + { + "id": 112, + "a": "item", + "t": 1, + "n": 60000, + "p": 1 + } + ], + "113": [ + { + "id": 113, + "a": "item", + "t": 1, + "n": 400000, + "p": 1 + } + ], + "114": [ + { + "id": 114, + "a": "item", + "t": 4, + "n": 3, + "p": 1 + } + ], + "115": [ + { + "id": 115, + "a": "item", + "t": 12, + "n": 100, + "p": 1 + } + ], + "1001": [ + { + "id": 1001, + "a": "hero", + "t": 5001, + "n": 1, + "p": 65 + }, + { + "id": 1001, + "a": "attr", + "t": "rmbmoney", + "n": 50, + "p": 914 + }, + { + "id": 1001, + "a": "attr", + "t": "rmbmoney", + "n": 80, + "p": 913 + }, + { + "id": 1001, + "a": "item", + "t": 5001, + "n": 1, + "p": 220 + }, + { + "id": 1001, + "a": "item", + "t": 5001, + "n": 3, + "p": 220 + }, + { + "id": 1001, + "a": "item", + "t": 5001, + "n": 5, + "p": 220 + }, + { + "id": 1001, + "a": "item", + "t": 4001, + "n": 1, + "p": 313 + }, + { + "id": 1001, + "a": "item", + "t": 10, + "n": 1, + "p": 625 + }, + { + "id": 1001, + "a": "item", + "t": 10, + "n": 3, + "p": 625 + }, + { + "id": 1001, + "a": "item", + "t": 10, + "n": 5, + "p": 625 + }, + { + "id": 1001, + "a": "item", + "t": 10, + "n": 7, + "p": 625 + }, + { + "id": 1001, + "a": "item", + "t": 10, + "n": 10, + "p": 625 + }, + { + "id": 1001, + "a": "attr", + "t": "jinbi", + "n": 30000, + "p": 1403 + }, + { + "id": 1001, + "a": "item", + "t": 12, + "n": 100, + "p": 802 + }, + { + "id": 1001, + "a": "item", + "t": 4, + "n": 1, + "p": 201 + }, + { + "id": 1001, + "a": "item", + "t": 3, + "n": 1, + "p": 201 + }, + { + "id": 1001, + "a": "item", + "t": 1, + "n": 5000, + "p": 1403 + } + ], + "2001": [ + { + "id": 2001, + "a": "item", + "t": 13, + "n": 10, + "p": 20 + }, + { + "id": 2001, + "a": "item", + "t": 18, + "n": 5, + "p": 10 + }, + { + "id": 2001, + "a": "item", + "t": 12, + "n": 10, + "p": 35 + }, + { + "id": 2001, + "a": "item", + "t": 2, + "n": 20, + "p": 35 + }, + { + "id": 2001, + "a": "item", + "t": 18, + "n": 1, + "p": 10 + } + ], + "2002": [ + { + "id": 2002, + "a": "item", + "t": 13, + "n": 10, + "p": 20 + }, + { + "id": 2002, + "a": "item", + "t": 18, + "n": 5, + "p": 10 + }, + { + "id": 2002, + "a": "item", + "t": 12, + "n": 10, + "p": 35 + }, + { + "id": 2002, + "a": "item", + "t": 2, + "n": 20, + "p": 35 + }, + { + "id": 2002, + "a": "item", + "t": 18, + "n": 1, + "p": 10 + } + ], + "2003": [ + { + "id": 2003, + "a": "item", + "t": 13, + "n": 10, + "p": 20 + }, + { + "id": 2003, + "a": "item", + "t": 18, + "n": 5, + "p": 10 + }, + { + "id": 2003, + "a": "item", + "t": 12, + "n": 10, + "p": 35 + }, + { + "id": 2003, + "a": "item", + "t": 2, + "n": 20, + "p": 35 + }, + { + "id": 2003, + "a": "item", + "t": 18, + "n": 1, + "p": 10 + } + ], + "2004": [ + { + "id": 2004, + "a": "item", + "t": 13, + "n": 10, + "p": 20 + }, + { + "id": 2004, + "a": "item", + "t": 18, + "n": 5, + "p": 10 + }, + { + "id": 2004, + "a": "item", + "t": 12, + "n": 10, + "p": 35 + }, + { + "id": 2004, + "a": "item", + "t": 2, + "n": 20, + "p": 35 + }, + { + "id": 2004, + "a": "item", + "t": 18, + "n": 1, + "p": 10 + } + ], + "2005": [ + { + "id": 2005, + "a": "item", + "t": 13, + "n": 10, + "p": 20 + }, + { + "id": 2005, + "a": "item", + "t": 18, + "n": 5, + "p": 10 + }, + { + "id": 2005, + "a": "item", + "t": 12, + "n": 10, + "p": 35 + }, + { + "id": 2005, + "a": "item", + "t": 2, + "n": 20, + "p": 35 + }, + { + "id": 2005, + "a": "item", + "t": 18, + "n": 1, + "p": 10 + } + ], + "2006": [ + { + "id": 2006, + "a": "item", + "t": 13, + "n": 10, + "p": 20 + }, + { + "id": 2006, + "a": "item", + "t": 18, + "n": 5, + "p": 10 + }, + { + "id": 2006, + "a": "item", + "t": 12, + "n": 10, + "p": 35 + }, + { + "id": 2006, + "a": "item", + "t": 2, + "n": 20, + "p": 35 + }, + { + "id": 2006, + "a": "item", + "t": 18, + "n": 1, + "p": 10 + } + ], + "2101": [ + { + "id": 2101, + "a": "attr", + "t": "jinbi", + "n": 50000, + "p": 100 + } + ], + "2102": [ + { + "id": 2102, + "a": "item", + "t": 19, + "n": 5, + "p": 100 + } + ], + "2103": [ + { + "id": 2103, + "a": "attr", + "t": "jinbi", + "n": 70000, + "p": 100 + } + ], + "2104": [ + { + "id": 2104, + "a": "attr", + "t": "jinbi", + "n": 90000, + "p": 100 + } + ], + "2105": [ + { + "id": 2105, + "a": "attr", + "t": "jinbi", + "n": 110000, + "p": 100 + } + ], + "2106": [ + { + "id": 2106, + "a": "attr", + "t": "jinbi", + "n": 130000, + "p": 100 + } + ], + "2107": [ + { + "id": 2107, + "a": "attr", + "t": "jinbi", + "n": 150000, + "p": 100 + } + ], + "2108": [ + { + "id": 2108, + "a": "item", + "t": 13, + "n": 10, + "p": 100 + } + ], + "2109": [ + { + "id": 2109, + "a": "item", + "t": 13, + "n": 12, + "p": 100 + } + ], + "2110": [ + { + "id": 2110, + "a": "item", + "t": 13, + "n": 15, + "p": 100 + } + ], + "2111": [ + { + "id": 2111, + "a": "item", + "t": 18, + "n": 5, + "p": 10 + }, + { + "id": 2111, + "a": "item", + "t": 19, + "n": 10, + "p": 10 + } + ], + "2112": [ + { + "id": 2112, + "a": "item", + "t": 18, + "n": 5, + "p": 10 + }, + { + "id": 2112, + "a": "item", + "t": 19, + "n": 15, + "p": 10 + } + ], + "2113": [ + { + "id": 2113, + "a": "item", + "t": 18, + "n": 5, + "p": 10 + }, + { + "id": 2113, + "a": "item", + "t": 19, + "n": 20, + "p": 10 + } + ], + "2114": [ + { + "id": 2114, + "a": "item", + "t": 13, + "n": 10, + "p": 10 + }, + { + "id": 2114, + "a": "item", + "t": 19, + "n": 25, + "p": 10 + } + ], + "2115": [ + { + "id": 2115, + "a": "item", + "t": 13, + "n": 20, + "p": 10 + }, + { + "id": 2115, + "a": "item", + "t": 19, + "n": 30, + "p": 10 + } + ], + "2116": [ + { + "id": 2116, + "a": "item", + "t": 13, + "n": 20, + "p": 10 + }, + { + "id": 2116, + "a": "item", + "t": 19, + "n": 35, + "p": 10 + } + ], + "2117": [ + { + "id": 2117, + "a": "attr", + "t": "jinbi", + "n": 100000, + "p": 100 + } + ], + "2118": [ + { + "id": 2118, + "a": "attr", + "t": "jinbi", + "n": 140000, + "p": 100 + } + ], + "2119": [ + { + "id": 2119, + "a": "attr", + "t": "jinbi", + "n": 180000, + "p": 100 + } + ], + "2120": [ + { + "id": 2120, + "a": "attr", + "t": "jinbi", + "n": 220000, + "p": 100 + } + ], + "2121": [ + { + "id": 2121, + "a": "attr", + "t": "jinbi", + "n": 260000, + "p": 100 + } + ], + "2122": [ + { + "id": 2122, + "a": "attr", + "t": "jinbi", + "n": 300000, + "p": 100 + } + ], + "2123": [ + { + "id": 2123, + "a": "item", + "t": 13, + "n": 20, + "p": 100 + } + ], + "2124": [ + { + "id": 2124, + "a": "item", + "t": 13, + "n": 24, + "p": 100 + } + ], + "2125": [ + { + "id": 2125, + "a": "item", + "t": 13, + "n": 30, + "p": 100 + } + ], + "2126": [ + { + "id": 2126, + "a": "item", + "t": 18, + "n": 10, + "p": 10 + }, + { + "id": 2126, + "a": "item", + "t": 19, + "n": 20, + "p": 10 + } + ], + "2127": [ + { + "id": 2127, + "a": "item", + "t": 18, + "n": 10, + "p": 10 + }, + { + "id": 2127, + "a": "item", + "t": 19, + "n": 30, + "p": 10 + } + ], + "2128": [ + { + "id": 2128, + "a": "item", + "t": 18, + "n": 10, + "p": 10 + }, + { + "id": 2128, + "a": "item", + "t": 19, + "n": 40, + "p": 10 + } + ], + "2129": [ + { + "id": 2129, + "a": "item", + "t": 13, + "n": 20, + "p": 10 + }, + { + "id": 2129, + "a": "item", + "t": 19, + "n": 50, + "p": 10 + } + ], + "2130": [ + { + "id": 2130, + "a": "item", + "t": 13, + "n": 40, + "p": 10 + }, + { + "id": 2130, + "a": "item", + "t": 19, + "n": 60, + "p": 10 + } + ], + "2131": [ + { + "id": 2131, + "a": "item", + "t": 13, + "n": 40, + "p": 10 + }, + { + "id": 2131, + "a": "item", + "t": 19, + "n": 70, + "p": 10 + } + ], + "3001": [ + { + "id": 3001, + "a": "item", + "t": 10, + "n": 5, + "p": 1200 + }, + { + "id": 3001, + "a": "item", + "t": 18, + "n": 5, + "p": 1000 + }, + { + "id": 3001, + "a": "item", + "t": 5001, + "n": 1, + "p": 300 + }, + { + "id": 3001, + "a": "item", + "t": 15, + "n": 200, + "p": 1000 + }, + { + "id": 3001, + "a": "item", + "t": 12, + "n": 30, + "p": 3000 + }, + { + "id": 3001, + "a": "item", + "t": 5003, + "n": 1, + "p": 300 + }, + { + "id": 3001, + "a": "item", + "t": 2, + "n": 50, + "p": 4500 + }, + { + "id": 3001, + "a": "item", + "t": 9, + "n": 50, + "p": 4000 + }, + { + "id": 3001, + "a": "item", + "t": 5005, + "n": 1, + "p": 300 + }, + { + "id": 3001, + "a": "item", + "t": 21, + "n": 50, + "p": 3000 + } + ], + "4001": [ + { + "id": 4001, + "a": "peijian", + "t": 1001, + "n": 1, + "p": 3 + }, + { + "id": 4001, + "a": "peijian", + "t": 1002, + "n": 1, + "p": 3 + }, + { + "id": 4001, + "a": "peijian", + "t": 1003, + "n": 1, + "p": 3 + }, + { + "id": 4001, + "a": "peijian", + "t": 1004, + "n": 1, + "p": 3 + }, + { + "id": 4001, + "a": "peijian", + "t": 2001, + "n": 1, + "p": 1 + }, + { + "id": 4001, + "a": "peijian", + "t": 2002, + "n": 1, + "p": 1 + }, + { + "id": 4001, + "a": "peijian", + "t": 2003, + "n": 1, + "p": 1 + }, + { + "id": 4001, + "a": "peijian", + "t": 2004, + "n": 1, + "p": 1 + }, + { + "id": 4001, + "a": "peijian", + "t": 2005, + "n": 1, + "p": 1 + }, + { + "id": 4001, + "a": "peijian", + "t": 2006, + "n": 1, + "p": 1 + } + ], + "4002": [ + { + "id": 4002, + "a": "peijian", + "t": 1001, + "n": 1, + "p": 1 + }, + { + "id": 4002, + "a": "peijian", + "t": 1002, + "n": 1, + "p": 1 + }, + { + "id": 4002, + "a": "peijian", + "t": 1003, + "n": 1, + "p": 1 + }, + { + "id": 4002, + "a": "peijian", + "t": 1004, + "n": 1, + "p": 3 + }, + { + "id": 4002, + "a": "peijian", + "t": 2001, + "n": 1, + "p": 1 + }, + { + "id": 4002, + "a": "peijian", + "t": 2002, + "n": 1, + "p": 1 + }, + { + "id": 4002, + "a": "peijian", + "t": 2003, + "n": 1, + "p": 1 + }, + { + "id": 4002, + "a": "peijian", + "t": 2004, + "n": 1, + "p": 1 + }, + { + "id": 4002, + "a": "peijian", + "t": 2005, + "n": 1, + "p": 1 + }, + { + "id": 4002, + "a": "peijian", + "t": 2006, + "n": 1, + "p": 1 + } + ], + "4003": [ + { + "id": 4003, + "a": "item", + "t": 28, + "n": 1, + "p": 6 + }, + { + "id": 4003, + "a": "peijian", + "t": 2001, + "n": 1, + "p": 1 + }, + { + "id": 4003, + "a": "peijian", + "t": 2002, + "n": 1, + "p": 1 + }, + { + "id": 4003, + "a": "peijian", + "t": 2003, + "n": 1, + "p": 1 + }, + { + "id": 4003, + "a": "peijian", + "t": 2004, + "n": 1, + "p": 1 + }, + { + "id": 4003, + "a": "peijian", + "t": 2005, + "n": 1, + "p": 1 + }, + { + "id": 4003, + "a": "peijian", + "t": 2006, + "n": 1, + "p": 1 + }, + { + "id": 4003, + "a": "peijian", + "t": 3001, + "n": 1, + "p": 1 + }, + { + "id": 4003, + "a": "peijian", + "t": 3002, + "n": 1, + "p": 1 + }, + { + "id": 4003, + "a": "peijian", + "t": 3003, + "n": 1, + "p": 1 + }, + { + "id": 4003, + "a": "peijian", + "t": 3004, + "n": 1, + "p": 1 + }, + { + "id": 4003, + "a": "peijian", + "t": 3005, + "n": 1, + "p": 1 + }, + { + "id": 4003, + "a": "peijian", + "t": 3006, + "n": 1, + "p": 1 + } + ], + "4004": [ + { + "id": 4004, + "a": "item", + "t": 28, + "n": 100, + "p": 18 + }, + { + "id": 4004, + "a": "item", + "t": 29, + "n": 2, + "p": 18 + }, + { + "id": 4004, + "a": "peijian", + "t": 3001, + "n": 1, + "p": 6 + }, + { + "id": 4004, + "a": "peijian", + "t": 3002, + "n": 1, + "p": 6 + }, + { + "id": 4004, + "a": "peijian", + "t": 3003, + "n": 1, + "p": 6 + }, + { + "id": 4004, + "a": "peijian", + "t": 3004, + "n": 1, + "p": 6 + }, + { + "id": 4004, + "a": "peijian", + "t": 3005, + "n": 1, + "p": 6 + }, + { + "id": 4004, + "a": "peijian", + "t": 3006, + "n": 1, + "p": 6 + }, + { + "id": 4004, + "a": "peijian", + "t": 4001, + "n": 1, + "p": 1 + }, + { + "id": 4004, + "a": "peijian", + "t": 4002, + "n": 1, + "p": 1 + }, + { + "id": 4004, + "a": "peijian", + "t": 4003, + "n": 1, + "p": 1 + }, + { + "id": 4004, + "a": "peijian", + "t": 4004, + "n": 1, + "p": 1 + }, + { + "id": 4004, + "a": "peijian", + "t": 4005, + "n": 1, + "p": 1 + }, + { + "id": 4004, + "a": "peijian", + "t": 4006, + "n": 1, + "p": 1 + }, + { + "id": 4004, + "a": "peijian", + "t": 4007, + "n": 1, + "p": 1 + }, + { + "id": 4004, + "a": "peijian", + "t": 4008, + "n": 1, + "p": 1 + }, + { + "id": 4004, + "a": "peijian", + "t": 4009, + "n": 1, + "p": 1 + }, + { + "id": 4004, + "a": "peijian", + "t": 4010, + "n": 1, + "p": 1 + }, + { + "id": 4004, + "a": "peijian", + "t": 4011, + "n": 1, + "p": 1 + }, + { + "id": 4004, + "a": "peijian", + "t": 4012, + "n": 1, + "p": 1 + }, + { + "id": 4004, + "a": "peijian", + "t": 4013, + "n": 1, + "p": 1 + }, + { + "id": 4004, + "a": "peijian", + "t": 4014, + "n": 1, + "p": 1 + }, + { + "id": 4004, + "a": "peijian", + "t": 4015, + "n": 1, + "p": 1 + }, + { + "id": 4004, + "a": "peijian", + "t": 4016, + "n": 1, + "p": 1 + }, + { + "id": 4004, + "a": "peijian", + "t": 4017, + "n": 1, + "p": 1 + }, + { + "id": 4004, + "a": "peijian", + "t": 4018, + "n": 1, + "p": 1 + }, + { + "id": 4004, + "a": "peijian", + "t": 4019, + "n": 1, + "p": 1 + }, + { + "id": 4004, + "a": "peijian", + "t": 4020, + "n": 1, + "p": 1 + }, + { + "id": 4004, + "a": "peijian", + "t": 4021, + "n": 1, + "p": 1 + }, + { + "id": 4004, + "a": "peijian", + "t": 4022, + "n": 1, + "p": 1 + }, + { + "id": 4004, + "a": "peijian", + "t": 4023, + "n": 1, + "p": 1 + }, + { + "id": 4004, + "a": "peijian", + "t": 4024, + "n": 1, + "p": 1 + } + ], + "4005": [ + { + "id": 4005, + "a": "peijian", + "t": 4025, + "n": 1, + "p": 1 + }, + { + "id": 4005, + "a": "peijian", + "t": 4026, + "n": 1, + "p": 1 + }, + { + "id": 4005, + "a": "peijian", + "t": 4027, + "n": 1, + "p": 1 + }, + { + "id": 4005, + "a": "peijian", + "t": 4028, + "n": 1, + "p": 1 + }, + { + "id": 4005, + "a": "peijian", + "t": 4029, + "n": 1, + "p": 1 + }, + { + "id": 4005, + "a": "peijian", + "t": 4030, + "n": 1, + "p": 1 + }, + { + "id": 4005, + "a": "peijian", + "t": 4031, + "n": 1, + "p": 1 + }, + { + "id": 4005, + "a": "peijian", + "t": 4032, + "n": 1, + "p": 1 + }, + { + "id": 4005, + "a": "peijian", + "t": 4033, + "n": 1, + "p": 1 + }, + { + "id": 4005, + "a": "peijian", + "t": 4034, + "n": 1, + "p": 1 + }, + { + "id": 4005, + "a": "peijian", + "t": 4035, + "n": 1, + "p": 1 + }, + { + "id": 4005, + "a": "peijian", + "t": 4036, + "n": 1, + "p": 1 + } + ], + "10001": [ + { + "id": 10001, + "a": "hero", + "t": 4001, + "n": 1, + "p": 2000 + }, + { + "id": 10001, + "a": "hero", + "t": 4002, + "n": 1, + "p": 2000 + }, + { + "id": 10001, + "a": "hero", + "t": 4003, + "n": 1, + "p": 2000 + }, + { + "id": 10001, + "a": "hero", + "t": 4004, + "n": 1, + "p": 2000 + }, + { + "id": 10001, + "a": "hero", + "t": 4005, + "n": 1, + "p": 2000 + }, + { + "id": 10001, + "a": "hero", + "t": 4006, + "n": 1, + "p": 2000 + }, + { + "id": 10001, + "a": "hero", + "t": 4007, + "n": 1, + "p": 2000 + }, + { + "id": 10001, + "a": "hero", + "t": 4008, + "n": 1, + "p": 2000 + }, + { + "id": 10001, + "a": "hero", + "t": 4009, + "n": 1, + "p": 2000 + }, + { + "id": 10001, + "a": "hero", + "t": 4010, + "n": 1, + "p": 2000 + }, + { + "id": 10001, + "a": "hero", + "t": 4011, + "n": 1, + "p": 2000 + }, + { + "id": 10001, + "a": "hero", + "t": 4012, + "n": 1, + "p": 2000 + }, + { + "id": 10001, + "a": "hero", + "t": 4013, + "n": 1, + "p": 2000 + }, + { + "id": 10001, + "a": "hero", + "t": 4014, + "n": 1, + "p": 2000 + }, + { + "id": 10001, + "a": "hero", + "t": 4015, + "n": 1, + "p": 2000 + }, + { + "id": 10001, + "a": "hero", + "t": 5001, + "n": 1, + "p": 200 + }, + { + "id": 10001, + "a": "hero", + "t": 5003, + "n": 1, + "p": 200 + }, + { + "id": 10001, + "a": "hero", + "t": 5005, + "n": 1, + "p": 200 + } + ], + "10002": [ + { + "id": 10002, + "a": "hero", + "t": 4001, + "n": 1, + "p": 250 + }, + { + "id": 10002, + "a": "hero", + "t": 4002, + "n": 1, + "p": 250 + }, + { + "id": 10002, + "a": "hero", + "t": 4003, + "n": 1, + "p": 250 + }, + { + "id": 10002, + "a": "hero", + "t": 4004, + "n": 1, + "p": 250 + }, + { + "id": 10002, + "a": "hero", + "t": 4005, + "n": 1, + "p": 250 + }, + { + "id": 10002, + "a": "hero", + "t": 4006, + "n": 1, + "p": 250 + }, + { + "id": 10002, + "a": "hero", + "t": 4007, + "n": 1, + "p": 250 + }, + { + "id": 10002, + "a": "hero", + "t": 4008, + "n": 1, + "p": 250 + }, + { + "id": 10002, + "a": "hero", + "t": 4009, + "n": 1, + "p": 250 + }, + { + "id": 10002, + "a": "hero", + "t": 4010, + "n": 1, + "p": 250 + }, + { + "id": 10002, + "a": "hero", + "t": 4011, + "n": 1, + "p": 250 + }, + { + "id": 10002, + "a": "hero", + "t": 4012, + "n": 1, + "p": 250 + }, + { + "id": 10002, + "a": "hero", + "t": 4013, + "n": 1, + "p": 250 + }, + { + "id": 10002, + "a": "hero", + "t": 4014, + "n": 1, + "p": 250 + }, + { + "id": 10002, + "a": "hero", + "t": 4015, + "n": 1, + "p": 250 + }, + { + "id": 10002, + "a": "item", + "t": 27, + "n": 100, + "p": 60000 + }, + { + "id": 10002, + "a": "hero", + "t": 3001, + "n": 1, + "p": 750 + }, + { + "id": 10002, + "a": "hero", + "t": 3002, + "n": 1, + "p": 750 + }, + { + "id": 10002, + "a": "hero", + "t": 3003, + "n": 1, + "p": 750 + }, + { + "id": 10002, + "a": "hero", + "t": 3004, + "n": 1, + "p": 750 + }, + { + "id": 10002, + "a": "hero", + "t": 3005, + "n": 1, + "p": 750 + }, + { + "id": 10002, + "a": "hero", + "t": 3006, + "n": 1, + "p": 750 + }, + { + "id": 10002, + "a": "hero", + "t": 3007, + "n": 1, + "p": 750 + }, + { + "id": 10002, + "a": "hero", + "t": 3008, + "n": 1, + "p": 750 + }, + { + "id": 10002, + "a": "hero", + "t": 3009, + "n": 1, + "p": 750 + }, + { + "id": 10002, + "a": "hero", + "t": 3010, + "n": 1, + "p": 750 + }, + { + "id": 10002, + "a": "hero", + "t": 3011, + "n": 1, + "p": 750 + }, + { + "id": 10002, + "a": "hero", + "t": 3012, + "n": 1, + "p": 750 + }, + { + "id": 10002, + "a": "hero", + "t": 3013, + "n": 1, + "p": 750 + }, + { + "id": 10002, + "a": "hero", + "t": 3014, + "n": 1, + "p": 750 + }, + { + "id": 10002, + "a": "hero", + "t": 3015, + "n": 1, + "p": 750 + } + ], + "10003": [ + { + "id": 10003, + "a": "hero", + "t": 4001, + "n": 1, + "p": 100 + }, + { + "id": 10003, + "a": "hero", + "t": 4002, + "n": 1, + "p": 100 + }, + { + "id": 10003, + "a": "hero", + "t": 4003, + "n": 1, + "p": 100 + }, + { + "id": 10003, + "a": "hero", + "t": 4004, + "n": 1, + "p": 100 + }, + { + "id": 10003, + "a": "hero", + "t": 4005, + "n": 1, + "p": 100 + }, + { + "id": 10003, + "a": "hero", + "t": 4006, + "n": 1, + "p": 100 + }, + { + "id": 10003, + "a": "hero", + "t": 4007, + "n": 1, + "p": 100 + }, + { + "id": 10003, + "a": "hero", + "t": 4008, + "n": 1, + "p": 100 + }, + { + "id": 10003, + "a": "hero", + "t": 4009, + "n": 1, + "p": 100 + }, + { + "id": 10003, + "a": "hero", + "t": 4010, + "n": 1, + "p": 100 + }, + { + "id": 10003, + "a": "hero", + "t": 4011, + "n": 1, + "p": 100 + }, + { + "id": 10003, + "a": "hero", + "t": 4012, + "n": 1, + "p": 100 + }, + { + "id": 10003, + "a": "hero", + "t": 4013, + "n": 1, + "p": 100 + }, + { + "id": 10003, + "a": "hero", + "t": 4014, + "n": 1, + "p": 100 + }, + { + "id": 10003, + "a": "hero", + "t": 4015, + "n": 1, + "p": 100 + }, + { + "id": 10003, + "a": "item", + "t": 27, + "n": 100, + "p": 57500 + }, + { + "id": 10003, + "a": "hero", + "t": 3001, + "n": 1, + "p": 1050 + }, + { + "id": 10003, + "a": "hero", + "t": 3002, + "n": 1, + "p": 1050 + }, + { + "id": 10003, + "a": "hero", + "t": 3003, + "n": 1, + "p": 1050 + }, + { + "id": 10003, + "a": "hero", + "t": 3004, + "n": 1, + "p": 1050 + }, + { + "id": 10003, + "a": "hero", + "t": 3005, + "n": 1, + "p": 1050 + }, + { + "id": 10003, + "a": "hero", + "t": 3006, + "n": 1, + "p": 1050 + }, + { + "id": 10003, + "a": "hero", + "t": 3007, + "n": 1, + "p": 1050 + }, + { + "id": 10003, + "a": "hero", + "t": 3008, + "n": 1, + "p": 1050 + }, + { + "id": 10003, + "a": "hero", + "t": 3009, + "n": 1, + "p": 1050 + }, + { + "id": 10003, + "a": "hero", + "t": 3010, + "n": 1, + "p": 1050 + }, + { + "id": 10003, + "a": "hero", + "t": 3011, + "n": 1, + "p": 1050 + }, + { + "id": 10003, + "a": "hero", + "t": 3012, + "n": 1, + "p": 1050 + }, + { + "id": 10003, + "a": "hero", + "t": 3013, + "n": 1, + "p": 1050 + }, + { + "id": 10003, + "a": "hero", + "t": 3014, + "n": 1, + "p": 1050 + }, + { + "id": 10003, + "a": "hero", + "t": 3015, + "n": 1, + "p": 1050 + } + ], + "10004": [ + { + "id": 10004, + "a": "item", + "t": 4001, + "n": 1, + "p": 1 + }, + { + "id": 10004, + "a": "item", + "t": 4002, + "n": 1, + "p": 1 + }, + { + "id": 10004, + "a": "item", + "t": 4003, + "n": 1, + "p": 1 + }, + { + "id": 10004, + "a": "item", + "t": 4004, + "n": 1, + "p": 1 + }, + { + "id": 10004, + "a": "item", + "t": 4005, + "n": 1, + "p": 1 + }, + { + "id": 10004, + "a": "item", + "t": 4006, + "n": 1, + "p": 1 + }, + { + "id": 10004, + "a": "item", + "t": 4007, + "n": 1, + "p": 1 + }, + { + "id": 10004, + "a": "item", + "t": 4008, + "n": 1, + "p": 1 + }, + { + "id": 10004, + "a": "item", + "t": 4009, + "n": 1, + "p": 1 + }, + { + "id": 10004, + "a": "item", + "t": 4010, + "n": 1, + "p": 1 + }, + { + "id": 10004, + "a": "item", + "t": 4011, + "n": 1, + "p": 1 + }, + { + "id": 10004, + "a": "item", + "t": 4012, + "n": 1, + "p": 1 + }, + { + "id": 10004, + "a": "item", + "t": 4013, + "n": 1, + "p": 1 + }, + { + "id": 10004, + "a": "item", + "t": 4014, + "n": 1, + "p": 1 + }, + { + "id": 10004, + "a": "item", + "t": 4015, + "n": 1, + "p": 1 + } + ], + "10005": [ + { + "id": 10005, + "a": "item", + "t": 4001, + "n": 1, + "p": 1 + }, + { + "id": 10005, + "a": "item", + "t": 4002, + "n": 1, + "p": 1 + }, + { + "id": 10005, + "a": "item", + "t": 4003, + "n": 1, + "p": 1 + }, + { + "id": 10005, + "a": "item", + "t": 4004, + "n": 1, + "p": 1 + }, + { + "id": 10005, + "a": "item", + "t": 4005, + "n": 1, + "p": 1 + }, + { + "id": 10005, + "a": "item", + "t": 4006, + "n": 1, + "p": 1 + }, + { + "id": 10005, + "a": "item", + "t": 4007, + "n": 1, + "p": 1 + }, + { + "id": 10005, + "a": "item", + "t": 4008, + "n": 1, + "p": 1 + }, + { + "id": 10005, + "a": "item", + "t": 4009, + "n": 1, + "p": 1 + }, + { + "id": 10005, + "a": "item", + "t": 4010, + "n": 1, + "p": 1 + }, + { + "id": 10005, + "a": "item", + "t": 4011, + "n": 1, + "p": 1 + }, + { + "id": 10005, + "a": "item", + "t": 4012, + "n": 1, + "p": 1 + }, + { + "id": 10005, + "a": "item", + "t": 4013, + "n": 1, + "p": 1 + }, + { + "id": 10005, + "a": "item", + "t": 4014, + "n": 1, + "p": 1 + }, + { + "id": 10005, + "a": "item", + "t": 4015, + "n": 1, + "p": 1 + } + ], + "10006": [ + { + "id": 10006, + "a": "item", + "t": 3001, + "n": 1, + "p": 1 + }, + { + "id": 10006, + "a": "item", + "t": 3002, + "n": 1, + "p": 1 + }, + { + "id": 10006, + "a": "item", + "t": 3003, + "n": 1, + "p": 1 + }, + { + "id": 10006, + "a": "item", + "t": 3004, + "n": 1, + "p": 1 + }, + { + "id": 10006, + "a": "item", + "t": 3005, + "n": 1, + "p": 1 + }, + { + "id": 10006, + "a": "item", + "t": 3006, + "n": 1, + "p": 1 + }, + { + "id": 10006, + "a": "item", + "t": 3007, + "n": 1, + "p": 1 + }, + { + "id": 10006, + "a": "item", + "t": 3008, + "n": 1, + "p": 1 + }, + { + "id": 10006, + "a": "item", + "t": 3009, + "n": 1, + "p": 1 + }, + { + "id": 10006, + "a": "item", + "t": 3010, + "n": 1, + "p": 1 + }, + { + "id": 10006, + "a": "item", + "t": 3011, + "n": 1, + "p": 1 + }, + { + "id": 10006, + "a": "item", + "t": 3012, + "n": 1, + "p": 1 + }, + { + "id": 10006, + "a": "item", + "t": 3013, + "n": 1, + "p": 1 + }, + { + "id": 10006, + "a": "item", + "t": 3014, + "n": 1, + "p": 1 + }, + { + "id": 10006, + "a": "item", + "t": 3015, + "n": 1, + "p": 1 + } + ], + "10007": [ + { + "id": 10007, + "a": "item", + "t": 3001, + "n": 1, + "p": 1 + }, + { + "id": 10007, + "a": "item", + "t": 3002, + "n": 1, + "p": 1 + }, + { + "id": 10007, + "a": "item", + "t": 3003, + "n": 1, + "p": 1 + }, + { + "id": 10007, + "a": "item", + "t": 3004, + "n": 1, + "p": 1 + }, + { + "id": 10007, + "a": "item", + "t": 3005, + "n": 1, + "p": 1 + }, + { + "id": 10007, + "a": "item", + "t": 3006, + "n": 1, + "p": 1 + }, + { + "id": 10007, + "a": "item", + "t": 3007, + "n": 1, + "p": 1 + }, + { + "id": 10007, + "a": "item", + "t": 3008, + "n": 1, + "p": 1 + }, + { + "id": 10007, + "a": "item", + "t": 3009, + "n": 1, + "p": 1 + }, + { + "id": 10007, + "a": "item", + "t": 3010, + "n": 1, + "p": 1 + }, + { + "id": 10007, + "a": "item", + "t": 3011, + "n": 1, + "p": 1 + }, + { + "id": 10007, + "a": "item", + "t": 3012, + "n": 1, + "p": 1 + }, + { + "id": 10007, + "a": "item", + "t": 3013, + "n": 1, + "p": 1 + }, + { + "id": 10007, + "a": "item", + "t": 3014, + "n": 1, + "p": 1 + }, + { + "id": 10007, + "a": "item", + "t": 3015, + "n": 1, + "p": 1 + } + ], + "10008": [ + { + "id": 10008, + "a": "item", + "t": 27, + "n": 100, + "p": 1 + }, + { + "id": 10008, + "a": "hero", + "t": 1001, + "n": 1, + "p": 1 + }, + { + "id": 10008, + "a": "hero", + "t": 1002, + "n": 1, + "p": 1 + } + ], + "10009": [ + { + "id": 10009, + "a": "item", + "t": 27, + "n": 100, + "p": 1 + }, + { + "id": 10009, + "a": "hero", + "t": 2001, + "n": 1, + "p": 5 + }, + { + "id": 10009, + "a": "hero", + "t": 2002, + "n": 1, + "p": 5 + } + ], + "10010": [ + { + "id": 10010, + "a": "item", + "t": 27, + "n": 100, + "p": 1 + }, + { + "id": 10010, + "a": "hero", + "t": 1001, + "n": 1, + "p": 3 + }, + { + "id": 10010, + "a": "hero", + "t": 1002, + "n": 1, + "p": 3 + }, + { + "id": 10010, + "a": "hero", + "t": 2001, + "n": 1, + "p": 3 + }, + { + "id": 10010, + "a": "hero", + "t": 2002, + "n": 1, + "p": 3 + } + ], + "10011": [ + { + "id": 10011, + "a": "hero", + "t": 5001, + "n": 1, + "p": 1 + }, + { + "id": 10011, + "a": "hero", + "t": 5003, + "n": 1, + "p": 1 + }, + { + "id": 10011, + "a": "hero", + "t": 5005, + "n": 1, + "p": 1 + } + ], + "10012": [ + { + "id": 10012, + "a": "hero", + "t": 5001, + "n": 1, + "p": 1 + } + ], + "10013": [ + { + "id": 10013, + "a": "item", + "t": 4001, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 4002, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 4003, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 4004, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 4005, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 4006, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 4007, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 4008, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 4009, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 4010, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 4011, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 4012, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 4013, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 4014, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 4015, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 3001, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 3002, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 3003, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 3004, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 3005, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 3006, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 3007, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 3008, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 3009, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 3010, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 3011, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 3012, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 3013, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 3014, + "n": 1, + "p": 1 + }, + { + "id": 10013, + "a": "item", + "t": 3015, + "n": 1, + "p": 1 + } + ], + "10020": [ + { + "id": 10020, + "a": "hero", + "t": 4013, + "n": 1, + "p": 1 + } + ], + "10021": [ + { + "id": 10021, + "a": "hero", + "t": 4001, + "n": 1, + "p": 20 + }, + { + "id": 10021, + "a": "hero", + "t": 4002, + "n": 1, + "p": 20 + }, + { + "id": 10021, + "a": "hero", + "t": 4003, + "n": 1, + "p": 20 + }, + { + "id": 10021, + "a": "hero", + "t": 4004, + "n": 1, + "p": 20 + }, + { + "id": 10021, + "a": "hero", + "t": 4005, + "n": 1, + "p": 20 + }, + { + "id": 10021, + "a": "hero", + "t": 4007, + "n": 1, + "p": 20 + }, + { + "id": 10021, + "a": "hero", + "t": 4009, + "n": 1, + "p": 20 + }, + { + "id": 10021, + "a": "hero", + "t": 4011, + "n": 1, + "p": 20 + }, + { + "id": 10021, + "a": "hero", + "t": 4012, + "n": 1, + "p": 20 + }, + { + "id": 10021, + "a": "hero", + "t": 4014, + "n": 1, + "p": 20 + }, + { + "id": 10021, + "a": "hero", + "t": 4015, + "n": 1, + "p": 20 + } + ], + "20001": [ + { + "id": 20001, + "a": "shiwu", + "t": 1, + "n": 1, + "p": 100 + }, + { + "id": 20001, + "a": "shiwu", + "t": 17, + "n": 1, + "p": 100 + }, + { + "id": 20001, + "a": "shiwu", + "t": 32, + "n": 1, + "p": 100 + }, + { + "id": 20001, + "a": "shiwu", + "t": 48, + "n": 1, + "p": 100 + }, + { + "id": 20001, + "a": "shiwu", + "t": 64, + "n": 1, + "p": 100 + } + ], + "20002": [ + { + "id": 20002, + "a": "shiwu", + "t": 2, + "n": 1, + "p": 100 + }, + { + "id": 20002, + "a": "shiwu", + "t": 18, + "n": 1, + "p": 100 + }, + { + "id": 20002, + "a": "shiwu", + "t": 33, + "n": 1, + "p": 100 + }, + { + "id": 20002, + "a": "shiwu", + "t": 49, + "n": 1, + "p": 100 + }, + { + "id": 20002, + "a": "shiwu", + "t": 65, + "n": 1, + "p": 100 + } + ], + "20003": [ + { + "id": 20003, + "a": "shiwu", + "t": 3, + "n": 1, + "p": 100 + }, + { + "id": 20003, + "a": "shiwu", + "t": 19, + "n": 1, + "p": 100 + }, + { + "id": 20003, + "a": "shiwu", + "t": 34, + "n": 1, + "p": 100 + }, + { + "id": 20003, + "a": "shiwu", + "t": 50, + "n": 1, + "p": 100 + }, + { + "id": 20003, + "a": "shiwu", + "t": 66, + "n": 1, + "p": 100 + } + ], + "20004": [ + { + "id": 20004, + "a": "shiwu", + "t": 4, + "n": 1, + "p": 100 + }, + { + "id": 20004, + "a": "shiwu", + "t": 20, + "n": 1, + "p": 100 + }, + { + "id": 20004, + "a": "shiwu", + "t": 35, + "n": 1, + "p": 100 + }, + { + "id": 20004, + "a": "shiwu", + "t": 51, + "n": 1, + "p": 100 + }, + { + "id": 20004, + "a": "shiwu", + "t": 67, + "n": 1, + "p": 100 + } + ], + "20005": [ + { + "id": 20005, + "a": "shiwu", + "t": 5, + "n": 1, + "p": 100 + }, + { + "id": 20005, + "a": "shiwu", + "t": 21, + "n": 1, + "p": 100 + }, + { + "id": 20005, + "a": "shiwu", + "t": 36, + "n": 1, + "p": 100 + }, + { + "id": 20005, + "a": "shiwu", + "t": 52, + "n": 1, + "p": 100 + }, + { + "id": 20005, + "a": "shiwu", + "t": 68, + "n": 1, + "p": 100 + } + ], + "20006": [ + { + "id": 20006, + "a": "shiwu", + "t": 6, + "n": 1, + "p": 100 + }, + { + "id": 20006, + "a": "shiwu", + "t": 22, + "n": 1, + "p": 100 + }, + { + "id": 20006, + "a": "shiwu", + "t": 37, + "n": 1, + "p": 100 + }, + { + "id": 20006, + "a": "shiwu", + "t": 53, + "n": 1, + "p": 100 + }, + { + "id": 20006, + "a": "shiwu", + "t": 69, + "n": 1, + "p": 100 + } + ], + "20007": [ + { + "id": 20007, + "a": "shiwu", + "t": 7, + "n": 1, + "p": 100 + }, + { + "id": 20007, + "a": "shiwu", + "t": 23, + "n": 1, + "p": 100 + }, + { + "id": 20007, + "a": "shiwu", + "t": 38, + "n": 1, + "p": 100 + }, + { + "id": 20007, + "a": "shiwu", + "t": 54, + "n": 1, + "p": 100 + }, + { + "id": 20007, + "a": "shiwu", + "t": 70, + "n": 1, + "p": 100 + } + ], + "20008": [ + { + "id": 20008, + "a": "shiwu", + "t": 8, + "n": 1, + "p": 100 + }, + { + "id": 20008, + "a": "shiwu", + "t": 24, + "n": 1, + "p": 100 + }, + { + "id": 20008, + "a": "shiwu", + "t": 39, + "n": 1, + "p": 100 + }, + { + "id": 20008, + "a": "shiwu", + "t": 55, + "n": 1, + "p": 100 + }, + { + "id": 20008, + "a": "shiwu", + "t": 71, + "n": 1, + "p": 100 + } + ], + "20009": [ + { + "id": 20009, + "a": "shiwu", + "t": 9, + "n": 1, + "p": 100 + }, + { + "id": 20009, + "a": "shiwu", + "t": 25, + "n": 1, + "p": 100 + }, + { + "id": 20009, + "a": "shiwu", + "t": 40, + "n": 1, + "p": 100 + }, + { + "id": 20009, + "a": "shiwu", + "t": 56, + "n": 1, + "p": 100 + }, + { + "id": 20009, + "a": "shiwu", + "t": 72, + "n": 1, + "p": 100 + } + ], + "20010": [ + { + "id": 20010, + "a": "shiwu", + "t": 10, + "n": 1, + "p": 100 + }, + { + "id": 20010, + "a": "shiwu", + "t": 26, + "n": 1, + "p": 100 + }, + { + "id": 20010, + "a": "shiwu", + "t": 41, + "n": 1, + "p": 100 + }, + { + "id": 20010, + "a": "shiwu", + "t": 57, + "n": 1, + "p": 100 + }, + { + "id": 20010, + "a": "shiwu", + "t": 73, + "n": 1, + "p": 100 + } + ], + "20011": [ + { + "id": 20011, + "a": "shiwu", + "t": 11, + "n": 1, + "p": 100 + }, + { + "id": 20011, + "a": "shiwu", + "t": 27, + "n": 1, + "p": 100 + }, + { + "id": 20011, + "a": "shiwu", + "t": 42, + "n": 1, + "p": 100 + }, + { + "id": 20011, + "a": "shiwu", + "t": 58, + "n": 1, + "p": 100 + }, + { + "id": 20011, + "a": "shiwu", + "t": 74, + "n": 1, + "p": 100 + } + ], + "20012": [ + { + "id": 20012, + "a": "shiwu", + "t": 12, + "n": 1, + "p": 100 + }, + { + "id": 20012, + "a": "shiwu", + "t": 28, + "n": 1, + "p": 100 + }, + { + "id": 20012, + "a": "shiwu", + "t": 43, + "n": 1, + "p": 100 + }, + { + "id": 20012, + "a": "shiwu", + "t": 59, + "n": 1, + "p": 100 + }, + { + "id": 20012, + "a": "shiwu", + "t": 75, + "n": 1, + "p": 100 + } + ], + "20013": [ + { + "id": 20013, + "a": "shiwu", + "t": 13, + "n": 1, + "p": 100 + }, + { + "id": 20013, + "a": "shiwu", + "t": 29, + "n": 1, + "p": 100 + }, + { + "id": 20013, + "a": "shiwu", + "t": 44, + "n": 1, + "p": 100 + }, + { + "id": 20013, + "a": "shiwu", + "t": 60, + "n": 1, + "p": 100 + }, + { + "id": 20013, + "a": "shiwu", + "t": 76, + "n": 1, + "p": 100 + } + ], + "20014": [ + { + "id": 20014, + "a": "shiwu", + "t": 14, + "n": 1, + "p": 100 + }, + { + "id": 20014, + "a": "shiwu", + "t": 30, + "n": 1, + "p": 100 + }, + { + "id": 20014, + "a": "shiwu", + "t": 45, + "n": 1, + "p": 100 + }, + { + "id": 20014, + "a": "shiwu", + "t": 61, + "n": 1, + "p": 100 + }, + { + "id": 20014, + "a": "shiwu", + "t": 77, + "n": 1, + "p": 100 + } + ], + "20015": [ + { + "id": 20015, + "a": "shiwu", + "t": 15, + "n": 1, + "p": 100 + }, + { + "id": 20015, + "a": "shiwu", + "t": 31, + "n": 1, + "p": 100 + }, + { + "id": 20015, + "a": "shiwu", + "t": 46, + "n": 1, + "p": 100 + }, + { + "id": 20015, + "a": "shiwu", + "t": 62, + "n": 1, + "p": 100 + }, + { + "id": 20015, + "a": "shiwu", + "t": 78, + "n": 1, + "p": 100 + } + ], + "20016": [ + { + "id": 20016, + "a": "shiwu", + "t": 16, + "n": 1, + "p": 100 + }, + { + "id": 20016, + "a": "shiwu", + "t": 31, + "n": 1, + "p": 100 + }, + { + "id": 20016, + "a": "shiwu", + "t": 47, + "n": 1, + "p": 100 + }, + { + "id": 20016, + "a": "shiwu", + "t": 63, + "n": 1, + "p": 100 + }, + { + "id": 20016, + "a": "shiwu", + "t": 78, + "n": 1, + "p": 100 + } + ], + "30001": [ + { + "id": 30001, + "a": "item", + "t": 2, + "n": 60, + "p": 2 + }, + { + "id": 30001, + "a": "item", + "t": 12, + "n": 40, + "p": 2 + }, + { + "id": 30001, + "a": "item", + "t": 18, + "n": 5, + "p": 2 + }, + { + "id": 30001, + "a": "attr", + "t": "jinbi", + "n": 200000, + "p": 1 + }, + { + "id": 30001, + "a": "attr", + "t": "rmbmoney", + "n": 50, + "p": 2 + }, + { + "id": 30001, + "a": "item", + "t": 13, + "n": 60, + "p": 5 + } + ], + "50001": [ + { + "id": 50001, + "a": "attr", + "t": "rmbmoney", + "n": 150, + "p": 50 + }, + { + "id": 50001, + "a": "attr", + "t": "jinbi", + "n": 50000, + "p": 30 + }, + { + "id": 50001, + "a": "item", + "t": 2, + "n": 100, + "p": 50 + }, + { + "id": 50001, + "a": "item", + "t": 12, + "n": 50, + "p": 50 + }, + { + "id": 50001, + "a": "item", + "t": 30, + "n": 1, + "p": 10 + }, + { + "id": 50001, + "a": "item", + "t": 31, + "n": 1, + "p": 10 + }, + { + "id": 50001, + "a": "item", + "t": 32, + "n": 1, + "p": 10 + }, + { + "id": 50001, + "a": "item", + "t": 18, + "n": 40, + "p": 3 + }, + { + "id": 50001, + "a": "item", + "t": 18, + "n": 20, + "p": 10 + }, + { + "id": 50001, + "a": "item", + "t": 6, + "n": 4, + "p": 3 + }, + { + "id": 50001, + "a": "item", + "t": 6, + "n": 1, + "p": 10 + }, + { + "id": 50001, + "a": "item", + "t": 603, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "item", + "t": 613, + "n": 4, + "p": 3 + }, + { + "id": 50001, + "a": "item", + "t": 613, + "n": 2, + "p": 10 + }, + { + "id": 50001, + "a": "equip", + "t": 1003, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 1004, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 1005, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 1006, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 1007, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 1008, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 1009, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 2003, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 2004, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 2005, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 2006, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 2007, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 2008, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 2009, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 3003, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 3004, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 3005, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 3006, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 3007, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 3008, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 3009, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 4003, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 4004, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 4005, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 4006, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 4007, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 4008, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "equip", + "t": 4009, + "n": 1, + "p": 3 + }, + { + "id": 50001, + "a": "item", + "t": 10003, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 10004, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 10005, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 10006, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 10007, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 10008, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 10009, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 20003, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 20004, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 20005, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 20006, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 20007, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 20008, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 20009, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 30003, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 30004, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 30005, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 30006, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 30007, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 30008, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 30009, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 40003, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 40004, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 40005, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 40006, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 40007, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 40008, + "n": 1, + "p": 15 + }, + { + "id": 50001, + "a": "item", + "t": 40009, + "n": 1, + "p": 15 + } + ], + "50002": [ + { + "id": 50002, + "a": "hero", + "t": 5001, + "n": 1, + "p": 1 + }, + { + "id": 50002, + "a": "hero", + "t": 5002, + "n": 1, + "p": 1 + }, + { + "id": 50002, + "a": "hero", + "t": 5003, + "n": 1, + "p": 1 + }, + { + "id": 50002, + "a": "hero", + "t": 5004, + "n": 1, + "p": 1 + }, + { + "id": 50002, + "a": "hero", + "t": 5005, + "n": 1, + "p": 1 + } + ], + "50003": [ + { + "id": 50003, + "a": "attr", + "t": "rmbmoney", + "n": 100, + "p": 30 + }, + { + "id": 50003, + "a": "attr", + "t": "jinbi", + "n": 30000, + "p": 30 + }, + { + "id": 50003, + "a": "item", + "t": 26, + "n": 1, + "p": 10 + }, + { + "id": 50003, + "a": "item", + "t": 25, + "n": 1, + "p": 10 + }, + { + "id": 50003, + "a": "item", + "t": 2, + "n": 50, + "p": 30 + }, + { + "id": 50003, + "a": "item", + "t": 12, + "n": 30, + "p": 30 + }, + { + "id": 50003, + "a": "item", + "t": 18, + "n": 20, + "p": 3 + }, + { + "id": 50003, + "a": "item", + "t": 18, + "n": 10, + "p": 10 + }, + { + "id": 50003, + "a": "item", + "t": 6, + "n": 2, + "p": 3 + }, + { + "id": 50003, + "a": "item", + "t": 613, + "n": 2, + "p": 10 + }, + { + "id": 50003, + "a": "item", + "t": 10003, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 10004, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 10005, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 10006, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 10007, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 10008, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 10009, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 20003, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 20004, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 20005, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 20006, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 20007, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 20008, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 20009, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 30003, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 30004, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 30005, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 30006, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 30007, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 30008, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 30009, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 40003, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 40004, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 40005, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 40006, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 40007, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 40008, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "item", + "t": 40009, + "n": 1, + "p": 5 + }, + { + "id": 50003, + "a": "equip", + "t": 1002, + "n": 1, + "p": 10 + }, + { + "id": 50003, + "a": "equip", + "t": 2002, + "n": 1, + "p": 10 + }, + { + "id": 50003, + "a": "equip", + "t": 3002, + "n": 1, + "p": 10 + }, + { + "id": 50003, + "a": "equip", + "t": 4002, + "n": 1, + "p": 10 + } + ], + "50004": [ + { + "id": 50004, + "a": "attr", + "t": "jinbi", + "n": 1000000, + "p": 1 + } + ], + "50005": [ + { + "id": 50005, + "a": "attr", + "t": "rmbmoney", + "n": 50, + "p": 30 + }, + { + "id": 50005, + "a": "attr", + "t": "jinbi", + "n": 10000, + "p": 30 + }, + { + "id": 50005, + "a": "item", + "t": 36, + "n": 1, + "p": 10 + }, + { + "id": 50005, + "a": "item", + "t": 35, + "n": 1, + "p": 10 + }, + { + "id": 50005, + "a": "item", + "t": 2, + "n": 30, + "p": 25 + }, + { + "id": 50005, + "a": "item", + "t": 12, + "n": 15, + "p": 25 + }, + { + "id": 50005, + "a": "item", + "t": 18, + "n": 10, + "p": 3 + }, + { + "id": 50005, + "a": "item", + "t": 613, + "n": 1, + "p": 10 + }, + { + "id": 50005, + "a": "item", + "t": 10002, + "n": 1, + "p": 5 + }, + { + "id": 50005, + "a": "item", + "t": 20002, + "n": 1, + "p": 5 + }, + { + "id": 50005, + "a": "item", + "t": 30002, + "n": 1, + "p": 5 + }, + { + "id": 50005, + "a": "item", + "t": 40002, + "n": 1, + "p": 5 + }, + { + "id": 50005, + "a": "equip", + "t": 1001, + "n": 1, + "p": 3 + }, + { + "id": 50005, + "a": "equip", + "t": 2001, + "n": 1, + "p": 3 + }, + { + "id": 50005, + "a": "equip", + "t": 3001, + "n": 1, + "p": 3 + }, + { + "id": 50005, + "a": "equip", + "t": 4001, + "n": 1, + "p": 3 + } + ], + "50006": [ + { + "id": 50006, + "a": "item", + "t": 5001, + "n": 1, + "p": 1 + } + ], + "50007": [ + { + "id": 50007, + "a": "item", + "t": 5003, + "n": 1, + "p": 1 + } + ], + "50008": [ + { + "id": 50008, + "a": "item", + "t": 5005, + "n": 1, + "p": 1 + } + ], + "50009": [ + { + "id": 50009, + "a": "item", + "t": 1010, + "n": 1, + "p": 1 + } + ], + "50010": [ + { + "id": 50010, + "a": "item", + "t": 2010, + "n": 1, + "p": 1 + } + ], + "50011": [ + { + "id": 50011, + "a": "item", + "t": 3010, + "n": 1, + "p": 1 + } + ], + "50012": [ + { + "id": 50012, + "a": "item", + "t": 4010, + "n": 1, + "p": 1 + } + ], + "50013": [ + { + "id": 50013, + "a": "peijian", + "t": 4001, + "n": 1, + "p": 1 + }, + { + "id": 50013, + "a": "peijian", + "t": 4002, + "n": 1, + "p": 1 + }, + { + "id": 50013, + "a": "peijian", + "t": 4003, + "n": 1, + "p": 1 + }, + { + "id": 50013, + "a": "peijian", + "t": 4004, + "n": 1, + "p": 1 + }, + { + "id": 50013, + "a": "peijian", + "t": 4005, + "n": 1, + "p": 1 + }, + { + "id": 50013, + "a": "peijian", + "t": 4006, + "n": 1, + "p": 1 + }, + { + "id": 50013, + "a": "peijian", + "t": 4007, + "n": 1, + "p": 1 + }, + { + "id": 50013, + "a": "peijian", + "t": 4008, + "n": 1, + "p": 1 + }, + { + "id": 50013, + "a": "peijian", + "t": 4009, + "n": 1, + "p": 1 + }, + { + "id": 50013, + "a": "peijian", + "t": 4010, + "n": 1, + "p": 1 + }, + { + "id": 50013, + "a": "peijian", + "t": 4011, + "n": 1, + "p": 1 + }, + { + "id": 50013, + "a": "peijian", + "t": 4012, + "n": 1, + "p": 1 + }, + { + "id": 50013, + "a": "peijian", + "t": 4013, + "n": 1, + "p": 1 + }, + { + "id": 50013, + "a": "peijian", + "t": 4014, + "n": 1, + "p": 1 + }, + { + "id": 50013, + "a": "peijian", + "t": 4015, + "n": 1, + "p": 1 + }, + { + "id": 50013, + "a": "peijian", + "t": 4016, + "n": 1, + "p": 1 + }, + { + "id": 50013, + "a": "peijian", + "t": 4017, + "n": 1, + "p": 1 + }, + { + "id": 50013, + "a": "peijian", + "t": 4018, + "n": 1, + "p": 1 + }, + { + "id": 50013, + "a": "peijian", + "t": 4019, + "n": 1, + "p": 1 + }, + { + "id": 50013, + "a": "peijian", + "t": 4020, + "n": 1, + "p": 1 + }, + { + "id": 50013, + "a": "peijian", + "t": 4021, + "n": 1, + "p": 1 + }, + { + "id": 50013, + "a": "peijian", + "t": 4022, + "n": 1, + "p": 1 + }, + { + "id": 50013, + "a": "peijian", + "t": 4023, + "n": 1, + "p": 1 + }, + { + "id": 50013, + "a": "peijian", + "t": 4024, + "n": 1, + "p": 1 + } + ], + "50014": [ + { + "id": 50014, + "a": "item", + "t": 3001, + "n": 1, + "p": 1 + }, + { + "id": 50014, + "a": "item", + "t": 3002, + "n": 1, + "p": 1 + }, + { + "id": 50014, + "a": "item", + "t": 3003, + "n": 1, + "p": 1 + }, + { + "id": 50014, + "a": "item", + "t": 3004, + "n": 1, + "p": 1 + }, + { + "id": 50014, + "a": "item", + "t": 3005, + "n": 1, + "p": 1 + }, + { + "id": 50014, + "a": "item", + "t": 3006, + "n": 1, + "p": 1 + }, + { + "id": 50014, + "a": "item", + "t": 3007, + "n": 1, + "p": 1 + }, + { + "id": 50014, + "a": "item", + "t": 3008, + "n": 1, + "p": 1 + }, + { + "id": 50014, + "a": "item", + "t": 3009, + "n": 1, + "p": 1 + }, + { + "id": 50014, + "a": "item", + "t": 3010, + "n": 1, + "p": 1 + }, + { + "id": 50014, + "a": "item", + "t": 3011, + "n": 1, + "p": 1 + }, + { + "id": 50014, + "a": "item", + "t": 3012, + "n": 1, + "p": 1 + }, + { + "id": 50014, + "a": "item", + "t": 3013, + "n": 1, + "p": 1 + }, + { + "id": 50014, + "a": "item", + "t": 3014, + "n": 1, + "p": 1 + }, + { + "id": 50014, + "a": "item", + "t": 3015, + "n": 1, + "p": 1 + } + ], + "50015": [ + { + "id": 50015, + "a": "item", + "t": 12, + "n": 80, + "p": 1 + } + ], + "50016": [ + { + "id": 50016, + "a": "item", + "t": 2, + "n": 125, + "p": 1 + } + ], + "50017": [ + { + "id": 50017, + "a": "item", + "t": 13, + "n": 30, + "p": 1 + } + ], + "50018": [ + { + "id": 50018, + "a": "item", + "t": 21, + "n": 20, + "p": 1 + } + ], + "50019": [ + { + "id": 50019, + "a": "peijian", + "t": 4025, + "n": 1, + "p": 1 + }, + { + "id": 50019, + "a": "peijian", + "t": 4026, + "n": 1, + "p": 1 + }, + { + "id": 50019, + "a": "peijian", + "t": 4027, + "n": 1, + "p": 1 + }, + { + "id": 50019, + "a": "peijian", + "t": 4028, + "n": 1, + "p": 1 + }, + { + "id": 50019, + "a": "peijian", + "t": 4029, + "n": 1, + "p": 1 + }, + { + "id": 50019, + "a": "peijian", + "t": 4030, + "n": 1, + "p": 1 + }, + { + "id": 50019, + "a": "peijian", + "t": 4031, + "n": 1, + "p": 1 + }, + { + "id": 50019, + "a": "peijian", + "t": 4032, + "n": 1, + "p": 1 + }, + { + "id": 50019, + "a": "peijian", + "t": 4033, + "n": 1, + "p": 1 + }, + { + "id": 50019, + "a": "peijian", + "t": 4034, + "n": 1, + "p": 1 + }, + { + "id": 50019, + "a": "peijian", + "t": 4035, + "n": 1, + "p": 1 + }, + { + "id": 50019, + "a": "peijian", + "t": 4036, + "n": 1, + "p": 1 + } + ], + "50020": [ + { + "id": 50020, + "a": "peijian", + "t": 4037, + "n": 1, + "p": 1 + }, + { + "id": 50020, + "a": "peijian", + "t": 4038, + "n": 1, + "p": 1 + }, + { + "id": 50020, + "a": "peijian", + "t": 4039, + "n": 1, + "p": 1 + }, + { + "id": 50020, + "a": "peijian", + "t": 4040, + "n": 1, + "p": 1 + }, + { + "id": 50020, + "a": "peijian", + "t": 4041, + "n": 1, + "p": 1 + }, + { + "id": 50020, + "a": "peijian", + "t": 4042, + "n": 1, + "p": 1 + }, + { + "id": 50020, + "a": "peijian", + "t": 4043, + "n": 1, + "p": 1 + }, + { + "id": 50020, + "a": "peijian", + "t": 4044, + "n": 1, + "p": 1 + }, + { + "id": 50020, + "a": "peijian", + "t": 4045, + "n": 1, + "p": 1 + }, + { + "id": 50020, + "a": "peijian", + "t": 4046, + "n": 1, + "p": 1 + }, + { + "id": 50020, + "a": "peijian", + "t": 4047, + "n": 1, + "p": 1 + }, + { + "id": 50020, + "a": "peijian", + "t": 4048, + "n": 1, + "p": 1 + } + ], + "50021": [ + { + "id": 50021, + "a": "item", + "t": 4005, + "n": 1, + "p": 1 + }, + { + "id": 50021, + "a": "item", + "t": 4010, + "n": 1, + "p": 1 + }, + { + "id": 50021, + "a": "item", + "t": 4013, + "n": 1, + "p": 1 + } + ], + "50022": [ + { + "id": 50022, + "a": "item", + "t": 3002, + "n": 1, + "p": 1 + }, + { + "id": 50022, + "a": "item", + "t": 3006, + "n": 1, + "p": 1 + }, + { + "id": 50022, + "a": "item", + "t": 3009, + "n": 1, + "p": 1 + }, + { + "id": 50022, + "a": "item", + "t": 3011, + "n": 1, + "p": 1 + }, + { + "id": 50022, + "a": "item", + "t": 3015, + "n": 1, + "p": 1 + } + ], + "50023": [ + { + "id": 50023, + "a": "equip", + "t": 1009, + "n": 1, + "p": 1 + } + ], + "50024": [ + { + "id": 50024, + "a": "equip", + "t": 2009, + "n": 1, + "p": 1 + } + ], + "50025": [ + { + "id": 50025, + "a": "equip", + "t": 3009, + "n": 1, + "p": 1 + } + ], + "50026": [ + { + "id": 50026, + "a": "equip", + "t": 4009, + "n": 1, + "p": 1 + } + ], + "50027": [ + { + "id": 50027, + "a": "shiwu", + "t": 82, + "n": 1, + "p": 1 + } + ], + "50028": [ + { + "id": 50028, + "a": "equip", + "t": 1010, + "n": 1, + "p": 1 + } + ], + "50029": [ + { + "id": 50029, + "a": "equip", + "t": 2010, + "n": 1, + "p": 1 + } + ], + "50030": [ + { + "id": 50030, + "a": "equip", + "t": 3010, + "n": 1, + "p": 1 + } + ], + "50031": [ + { + "id": 50031, + "a": "equip", + "t": 4010, + "n": 1, + "p": 1 + } + ], + "50032": [ + { + "id": 50032, + "a": "item", + "t": 28, + "n": 3000, + "p": 1 + } + ], + "50033": [ + { + "id": 50033, + "a": "item", + "t": 20, + "n": 30, + "p": 1 + } + ], + "50034": [ + { + "id": 50034, + "a": "item", + "t": 4001, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 4002, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 4003, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 4004, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 4005, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 4006, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 4007, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 4008, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 4009, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 4010, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 4011, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 4012, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 4013, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 4014, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 4015, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 3001, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 3002, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 3003, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 3004, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 3005, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 3006, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 3007, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 3008, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 3009, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 3010, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 3011, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 3012, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 3013, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 3014, + "n": 1, + "p": 1 + }, + { + "id": 50034, + "a": "item", + "t": 3015, + "n": 1, + "p": 1 + } + ], + "50035": [ + { + "id": 50035, + "a": "hero", + "t": 3001, + "n": 1, + "p": 1 + }, + { + "id": 50035, + "a": "hero", + "t": 3002, + "n": 1, + "p": 1 + }, + { + "id": 50035, + "a": "hero", + "t": 3003, + "n": 1, + "p": 1 + }, + { + "id": 50035, + "a": "hero", + "t": 3004, + "n": 1, + "p": 1 + }, + { + "id": 50035, + "a": "hero", + "t": 3005, + "n": 1, + "p": 1 + }, + { + "id": 50035, + "a": "hero", + "t": 3006, + "n": 1, + "p": 1 + }, + { + "id": 50035, + "a": "hero", + "t": 3007, + "n": 1, + "p": 1 + }, + { + "id": 50035, + "a": "hero", + "t": 3008, + "n": 1, + "p": 1 + }, + { + "id": 50035, + "a": "hero", + "t": 3009, + "n": 1, + "p": 1 + }, + { + "id": 50035, + "a": "hero", + "t": 3010, + "n": 1, + "p": 1 + }, + { + "id": 50035, + "a": "hero", + "t": 3011, + "n": 1, + "p": 1 + }, + { + "id": 50035, + "a": "hero", + "t": 3012, + "n": 1, + "p": 1 + }, + { + "id": 50035, + "a": "hero", + "t": 3013, + "n": 1, + "p": 1 + }, + { + "id": 50035, + "a": "hero", + "t": 3014, + "n": 1, + "p": 1 + }, + { + "id": 50035, + "a": "hero", + "t": 3015, + "n": 1, + "p": 1 + } + ], + "50036": [ + { + "id": 50036, + "a": "equip", + "t": 1003, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 1004, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 1005, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 1006, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 1007, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 1008, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 1009, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 2003, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 2004, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 2005, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 2006, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 2007, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 2008, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 2009, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 3003, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 3004, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 3005, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 3006, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 3007, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 3008, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 3009, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 4003, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 4004, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 4005, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 4006, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 4007, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 4008, + "n": 1, + "p": 1 + }, + { + "id": 50036, + "a": "equip", + "t": 4009, + "n": 1, + "p": 1 + } + ], + "50037": [ + { + "id": 50037, + "a": "hero", + "t": 4001, + "n": 1, + "p": 1 + }, + { + "id": 50037, + "a": "hero", + "t": 4002, + "n": 1, + "p": 1 + }, + { + "id": 50037, + "a": "hero", + "t": 4003, + "n": 1, + "p": 1 + }, + { + "id": 50037, + "a": "hero", + "t": 4004, + "n": 1, + "p": 1 + }, + { + "id": 50037, + "a": "hero", + "t": 4005, + "n": 1, + "p": 1 + }, + { + "id": 50037, + "a": "hero", + "t": 4006, + "n": 1, + "p": 1 + }, + { + "id": 50037, + "a": "hero", + "t": 4007, + "n": 1, + "p": 1 + }, + { + "id": 50037, + "a": "hero", + "t": 4008, + "n": 1, + "p": 1 + }, + { + "id": 50037, + "a": "hero", + "t": 4009, + "n": 1, + "p": 1 + }, + { + "id": 50037, + "a": "hero", + "t": 4010, + "n": 1, + "p": 1 + }, + { + "id": 50037, + "a": "hero", + "t": 4011, + "n": 1, + "p": 1 + }, + { + "id": 50037, + "a": "hero", + "t": 4012, + "n": 1, + "p": 1 + }, + { + "id": 50037, + "a": "hero", + "t": 4013, + "n": 1, + "p": 1 + }, + { + "id": 50037, + "a": "hero", + "t": 4014, + "n": 1, + "p": 1 + }, + { + "id": 50037, + "a": "hero", + "t": 4015, + "n": 1, + "p": 1 + } + ], + "50038": [ + { + "id": 50038, + "a": "item", + "t": 5001, + "n": 1, + "p": 1 + }, + { + "id": 50038, + "a": "item", + "t": 5002, + "n": 1, + "p": 1 + }, + { + "id": 50038, + "a": "item", + "t": 5003, + "n": 1, + "p": 1 + }, + { + "id": 50038, + "a": "item", + "t": 5004, + "n": 1, + "p": 1 + }, + { + "id": 50038, + "a": "item", + "t": 5005, + "n": 1, + "p": 1 + } + ], + "50039": [ + { + "id": 50039, + "a": "item", + "t": 10010, + "n": 1, + "p": 1 + }, + { + "id": 50039, + "a": "item", + "t": 20010, + "n": 1, + "p": 1 + }, + { + "id": 50039, + "a": "item", + "t": 30010, + "n": 1, + "p": 1 + }, + { + "id": 50039, + "a": "item", + "t": 40010, + "n": 1, + "p": 1 + } + ], + "50040": [ + { + "id": 50040, + "a": "item", + "t": 60103, + "n": 1, + "p": 1 + } + ], + "50041": [ + { + "id": 50041, + "a": "item", + "t": 60203, + "n": 1, + "p": 1 + } + ], + "50042": [ + { + "id": 50042, + "a": "item", + "t": 60303, + "n": 1, + "p": 1 + } + ], + "50043": [ + { + "id": 50043, + "a": "item", + "t": 60403, + "n": 1, + "p": 1 + } + ], + "50044": [ + { + "id": 50044, + "a": "item", + "t": 60503, + "n": 1, + "p": 1 + } + ], + "50045": [ + { + "id": 50045, + "a": "item", + "t": 60603, + "n": 1, + "p": 1 + } + ], + "50046": [ + { + "id": 50046, + "a": "item", + "t": 60703, + "n": 1, + "p": 1 + } + ], + "50047": [ + { + "id": 50047, + "a": "item", + "t": 60803, + "n": 1, + "p": 1 + } + ], + "50048": [ + { + "id": 50048, + "a": "item", + "t": 60903, + "n": 1, + "p": 1 + } + ], + "50049": [ + { + "id": 50049, + "a": "item", + "t": 61003, + "n": 1, + "p": 1 + } + ], + "50050": [ + { + "id": 50050, + "a": "equip", + "t": 1010, + "n": 1, + "p": 1 + }, + { + "id": 50050, + "a": "equip", + "t": 2010, + "n": 1, + "p": 1 + }, + { + "id": 50050, + "a": "equip", + "t": 3010, + "n": 1, + "p": 1 + }, + { + "id": 50050, + "a": "equip", + "t": 4010, + "n": 1, + "p": 1 + } + ], + "50051": [ + { + "id": 50051, + "a": "equip", + "t": 1009, + "n": 1, + "p": 1 + }, + { + "id": 50051, + "a": "equip", + "t": 2009, + "n": 1, + "p": 1 + }, + { + "id": 50051, + "a": "equip", + "t": 3009, + "n": 1, + "p": 1 + }, + { + "id": 50051, + "a": "equip", + "t": 4009, + "n": 1, + "p": 1 + } + ], + "50052": [ + { + "id": 50052, + "a": "item", + "t": 10009, + "n": 1, + "p": 1 + }, + { + "id": 50052, + "a": "item", + "t": 20009, + "n": 1, + "p": 1 + }, + { + "id": 50052, + "a": "item", + "t": 30009, + "n": 1, + "p": 1 + }, + { + "id": 50052, + "a": "item", + "t": 40009, + "n": 1, + "p": 1 + } + ], + "50053": [ + { + "id": 50053, + "a": "item", + "t": 5001, + "n": 1, + "p": 1 + }, + { + "id": 50053, + "a": "item", + "t": 5003, + "n": 1, + "p": 1 + }, + { + "id": 50053, + "a": "item", + "t": 5005, + "n": 1, + "p": 1 + } + ], + "50054": [ + { + "id": 50054, + "a": "item", + "t": 1, + "n": 500, + "p": 1 + } + ], + "50055": [ + { + "id": 50055, + "a": "attr", + "t": "jinbi", + "n": 500, + "p": 1 + } + ], + "50056": [ + { + "id": 50056, + "a": "hero", + "t": 1001, + "n": 1, + "p": 2 + }, + { + "id": 50056, + "a": "hero", + "t": 1002, + "n": 1, + "p": 2 + }, + { + "id": 50056, + "a": "hero", + "t": 2001, + "n": 1, + "p": 1 + }, + { + "id": 50056, + "a": "hero", + "t": 2002, + "n": 1, + "p": 1 + }, + { + "id": 50056, + "a": "hero", + "t": 2002, + "n": 0, + "p": 30 + } + ], + "50057": [ + { + "id": 50057, + "a": "equip", + "t": 1001, + "n": 1, + "p": 2 + }, + { + "id": 50057, + "a": "equip", + "t": 2001, + "n": 1, + "p": 2 + }, + { + "id": 50057, + "a": "equip", + "t": 3001, + "n": 1, + "p": 2 + }, + { + "id": 50057, + "a": "equip", + "t": 4001, + "n": 1, + "p": 2 + }, + { + "id": 50057, + "a": "equip", + "t": 1002, + "n": 1, + "p": 1 + }, + { + "id": 50057, + "a": "equip", + "t": 2002, + "n": 1, + "p": 1 + }, + { + "id": 50057, + "a": "equip", + "t": 3002, + "n": 1, + "p": 1 + }, + { + "id": 50057, + "a": "equip", + "t": 4002, + "n": 1, + "p": 1 + }, + { + "id": 50057, + "a": "equip", + "t": 4002, + "n": 0, + "p": 80 + } + ], + "50058": [ + { + "id": 50058, + "a": "item", + "t": 18, + "n": 1, + "p": 1 + } + ], + "50059": [ + { + "id": 50059, + "a": "item", + "t": 4001, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 4002, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 4003, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 4004, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 4005, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 4006, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 4007, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 4008, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 4009, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 4010, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 4011, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 4012, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 4013, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 4014, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 4015, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 3001, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 3002, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 3003, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 3004, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 3005, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 3006, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 3007, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 3008, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 3009, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 3010, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 3011, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 3012, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 3013, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 3014, + "n": 1, + "p": 1 + }, + { + "id": 50059, + "a": "item", + "t": 3015, + "n": 1, + "p": 1 + } + ], + "50060": [ + { + "id": 50060, + "a": "item", + "t": 10003, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 10004, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 10005, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 10006, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 10007, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 10008, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 10009, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 10010, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 20003, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 20004, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 20005, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 20006, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 20007, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 20008, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 20009, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 20010, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 30003, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 30004, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 30005, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 30006, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 30007, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 30008, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 30009, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 30010, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 40003, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 40004, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 40005, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 40006, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 40007, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 40008, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 40009, + "n": 1, + "p": 1 + }, + { + "id": 50060, + "a": "item", + "t": 40010, + "n": 1, + "p": 1 + } + ], + "50061": [ + { + "id": 50061, + "a": "item", + "t": 3001, + "n": 1, + "p": 3 + }, + { + "id": 50061, + "a": "item", + "t": 3002, + "n": 1, + "p": 3 + }, + { + "id": 50061, + "a": "item", + "t": 3003, + "n": 1, + "p": 3 + }, + { + "id": 50061, + "a": "item", + "t": 3004, + "n": 1, + "p": 3 + }, + { + "id": 50061, + "a": "item", + "t": 3005, + "n": 1, + "p": 3 + }, + { + "id": 50061, + "a": "item", + "t": 3006, + "n": 1, + "p": 3 + }, + { + "id": 50061, + "a": "item", + "t": 3007, + "n": 1, + "p": 3 + }, + { + "id": 50061, + "a": "item", + "t": 3008, + "n": 1, + "p": 3 + }, + { + "id": 50061, + "a": "item", + "t": 3009, + "n": 1, + "p": 3 + }, + { + "id": 50061, + "a": "item", + "t": 3010, + "n": 1, + "p": 3 + }, + { + "id": 50061, + "a": "item", + "t": 3011, + "n": 1, + "p": 3 + }, + { + "id": 50061, + "a": "item", + "t": 3012, + "n": 1, + "p": 3 + }, + { + "id": 50061, + "a": "item", + "t": 3013, + "n": 1, + "p": 3 + }, + { + "id": 50061, + "a": "item", + "t": 3014, + "n": 1, + "p": 3 + }, + { + "id": 50061, + "a": "item", + "t": 3015, + "n": 1, + "p": 3 + }, + { + "id": 50061, + "a": "item", + "t": 4001, + "n": 1, + "p": 2 + }, + { + "id": 50061, + "a": "item", + "t": 4002, + "n": 1, + "p": 2 + }, + { + "id": 50061, + "a": "item", + "t": 4003, + "n": 1, + "p": 2 + }, + { + "id": 50061, + "a": "item", + "t": 4004, + "n": 1, + "p": 2 + }, + { + "id": 50061, + "a": "item", + "t": 4005, + "n": 1, + "p": 2 + }, + { + "id": 50061, + "a": "item", + "t": 4006, + "n": 1, + "p": 2 + }, + { + "id": 50061, + "a": "item", + "t": 4007, + "n": 1, + "p": 2 + }, + { + "id": 50061, + "a": "item", + "t": 4008, + "n": 1, + "p": 2 + }, + { + "id": 50061, + "a": "item", + "t": 4009, + "n": 1, + "p": 2 + }, + { + "id": 50061, + "a": "item", + "t": 4010, + "n": 1, + "p": 2 + }, + { + "id": 50061, + "a": "item", + "t": 4011, + "n": 1, + "p": 2 + }, + { + "id": 50061, + "a": "item", + "t": 4012, + "n": 1, + "p": 2 + }, + { + "id": 50061, + "a": "item", + "t": 4013, + "n": 1, + "p": 2 + }, + { + "id": 50061, + "a": "item", + "t": 4014, + "n": 1, + "p": 2 + }, + { + "id": 50061, + "a": "item", + "t": 4015, + "n": 1, + "p": 2 + }, + { + "id": 50061, + "a": "item", + "t": 5001, + "n": 1, + "p": 1 + }, + { + "id": 50061, + "a": "item", + "t": 5003, + "n": 1, + "p": 1 + }, + { + "id": 50061, + "a": "item", + "t": 5005, + "n": 1, + "p": 1 + } + ], + "60001": [ + { + "id": 60001, + "a": "item", + "t": 60201, + "n": 1, + "p": 100 + } + ], + "60002": [ + { + "id": 60002, + "a": "item", + "t": 60202, + "n": 1, + "p": 100 + } + ], + "60003": [ + { + "id": 60003, + "a": "item", + "t": 60203, + "n": 1, + "p": 100 + } + ], + "60004": [ + { + "id": 60004, + "a": "item", + "t": 60204, + "n": 1, + "p": 100 + } + ], + "60005": [ + { + "id": 60005, + "a": "item", + "t": 60205, + "n": 1, + "p": 100 + } + ], + "60006": [ + { + "id": 60006, + "a": "item", + "t": 60301, + "n": 1, + "p": 100 + } + ], + "60007": [ + { + "id": 60007, + "a": "item", + "t": 60302, + "n": 1, + "p": 100 + } + ], + "60008": [ + { + "id": 60008, + "a": "item", + "t": 60303, + "n": 1, + "p": 100 + } + ], + "60009": [ + { + "id": 60009, + "a": "item", + "t": 60304, + "n": 1, + "p": 100 + } + ], + "60010": [ + { + "id": 60010, + "a": "item", + "t": 60305, + "n": 1, + "p": 100 + } + ], + "60011": [ + { + "id": 60011, + "a": "item", + "t": 60401, + "n": 1, + "p": 100 + } + ], + "60012": [ + { + "id": 60012, + "a": "item", + "t": 60402, + "n": 1, + "p": 100 + } + ], + "60013": [ + { + "id": 60013, + "a": "item", + "t": 60403, + "n": 1, + "p": 100 + } + ], + "60014": [ + { + "id": 60014, + "a": "item", + "t": 60404, + "n": 1, + "p": 100 + } + ], + "60015": [ + { + "id": 60015, + "a": "item", + "t": 60405, + "n": 1, + "p": 100 + } + ], + "60016": [ + { + "id": 60016, + "a": "item", + "t": 60501, + "n": 1, + "p": 100 + } + ], + "60017": [ + { + "id": 60017, + "a": "item", + "t": 60502, + "n": 1, + "p": 100 + } + ], + "60018": [ + { + "id": 60018, + "a": "item", + "t": 60503, + "n": 1, + "p": 100 + } + ], + "60019": [ + { + "id": 60019, + "a": "item", + "t": 60504, + "n": 1, + "p": 100 + } + ], + "60020": [ + { + "id": 60020, + "a": "item", + "t": 60505, + "n": 1, + "p": 100 + } + ], + "60021": [ + { + "id": 60021, + "a": "item", + "t": 60601, + "n": 1, + "p": 100 + } + ], + "60022": [ + { + "id": 60022, + "a": "item", + "t": 60602, + "n": 1, + "p": 100 + } + ], + "60023": [ + { + "id": 60023, + "a": "item", + "t": 60603, + "n": 1, + "p": 100 + } + ], + "60024": [ + { + "id": 60024, + "a": "item", + "t": 60604, + "n": 1, + "p": 100 + } + ], + "60025": [ + { + "id": 60025, + "a": "item", + "t": 60605, + "n": 1, + "p": 100 + } + ], + "60026": [ + { + "id": 60026, + "a": "item", + "t": 60701, + "n": 1, + "p": 100 + } + ], + "60027": [ + { + "id": 60027, + "a": "item", + "t": 60702, + "n": 1, + "p": 100 + } + ], + "60028": [ + { + "id": 60028, + "a": "item", + "t": 60703, + "n": 1, + "p": 100 + } + ], + "60029": [ + { + "id": 60029, + "a": "item", + "t": 60704, + "n": 1, + "p": 100 + } + ], + "60030": [ + { + "id": 60030, + "a": "item", + "t": 60705, + "n": 1, + "p": 100 + } + ], + "60031": [ + { + "id": 60031, + "a": "item", + "t": 60801, + "n": 1, + "p": 100 + } + ], + "60032": [ + { + "id": 60032, + "a": "item", + "t": 60802, + "n": 1, + "p": 100 + } + ], + "60033": [ + { + "id": 60033, + "a": "item", + "t": 60803, + "n": 1, + "p": 100 + } + ], + "60034": [ + { + "id": 60034, + "a": "item", + "t": 60804, + "n": 1, + "p": 100 + } + ], + "60035": [ + { + "id": 60035, + "a": "item", + "t": 60805, + "n": 1, + "p": 100 + } + ], + "60036": [ + { + "id": 60036, + "a": "item", + "t": 60901, + "n": 1, + "p": 100 + } + ], + "60037": [ + { + "id": 60037, + "a": "item", + "t": 60902, + "n": 1, + "p": 100 + } + ], + "60038": [ + { + "id": 60038, + "a": "item", + "t": 60903, + "n": 1, + "p": 100 + } + ], + "60039": [ + { + "id": 60039, + "a": "item", + "t": 60904, + "n": 1, + "p": 100 + } + ], + "60040": [ + { + "id": 60040, + "a": "item", + "t": 60905, + "n": 1, + "p": 100 + } + ], + "60041": [ + { + "id": 60041, + "a": "item", + "t": 61001, + "n": 1, + "p": 100 + } + ], + "60042": [ + { + "id": 60042, + "a": "item", + "t": 61002, + "n": 1, + "p": 100 + } + ], + "60043": [ + { + "id": 60043, + "a": "item", + "t": 61003, + "n": 1, + "p": 100 + } + ], + "60044": [ + { + "id": 60044, + "a": "item", + "t": 61004, + "n": 1, + "p": 100 + } + ], + "60045": [ + { + "id": 60045, + "a": "item", + "t": 61005, + "n": 1, + "p": 100 + } + ], + "60046": [ + { + "id": 60046, + "a": "item", + "t": 61201, + "n": 1, + "p": 100 + } + ], + "60047": [ + { + "id": 60047, + "a": "item", + "t": 61202, + "n": 1, + "p": 100 + } + ], + "60048": [ + { + "id": 60048, + "a": "item", + "t": 61203, + "n": 1, + "p": 100 + } + ], + "60049": [ + { + "id": 60049, + "a": "item", + "t": 61204, + "n": 1, + "p": 100 + } + ], + "60050": [ + { + "id": 60050, + "a": "item", + "t": 61205, + "n": 1, + "p": 100 + } + ], + "60051": [ + { + "id": 60051, + "a": "item", + "t": 61301, + "n": 1, + "p": 100 + } + ], + "60052": [ + { + "id": 60052, + "a": "item", + "t": 61302, + "n": 1, + "p": 100 + } + ], + "60053": [ + { + "id": 60053, + "a": "item", + "t": 61303, + "n": 1, + "p": 100 + } + ], + "60054": [ + { + "id": 60054, + "a": "item", + "t": 61304, + "n": 1, + "p": 100 + } + ], + "60055": [ + { + "id": 60055, + "a": "item", + "t": 61305, + "n": 1, + "p": 100 + } + ], + "60056": [ + { + "id": 60056, + "a": "item", + "t": 61401, + "n": 1, + "p": 100 + } + ], + "60057": [ + { + "id": 60057, + "a": "item", + "t": 61402, + "n": 1, + "p": 100 + } + ], + "60058": [ + { + "id": 60058, + "a": "item", + "t": 61403, + "n": 1, + "p": 100 + } + ], + "60059": [ + { + "id": 60059, + "a": "item", + "t": 61404, + "n": 1, + "p": 100 + } + ], + "60060": [ + { + "id": 60060, + "a": "item", + "t": 61405, + "n": 1, + "p": 100 + } + ], + "60061": [ + { + "id": 60061, + "a": "item", + "t": 61501, + "n": 1, + "p": 100 + } + ], + "60062": [ + { + "id": 60062, + "a": "item", + "t": 61502, + "n": 1, + "p": 100 + } + ], + "60063": [ + { + "id": 60063, + "a": "item", + "t": 61503, + "n": 1, + "p": 100 + } + ], + "60064": [ + { + "id": 60064, + "a": "item", + "t": 61504, + "n": 1, + "p": 100 + } + ], + "60065": [ + { + "id": 60065, + "a": "item", + "t": 61505, + "n": 1, + "p": 100 + } + ], + "60066": [ + { + "id": 60066, + "a": "item", + "t": 61601, + "n": 1, + "p": 100 + } + ], + "60067": [ + { + "id": 60067, + "a": "item", + "t": 61602, + "n": 1, + "p": 100 + } + ], + "60068": [ + { + "id": 60068, + "a": "item", + "t": 61603, + "n": 1, + "p": 100 + } + ], + "60069": [ + { + "id": 60069, + "a": "item", + "t": 61604, + "n": 1, + "p": 100 + } + ], + "60070": [ + { + "id": 60070, + "a": "item", + "t": 61605, + "n": 1, + "p": 100 + } + ], + "60071": [ + { + "id": 60071, + "a": "item", + "t": 61701, + "n": 1, + "p": 100 + } + ], + "60072": [ + { + "id": 60072, + "a": "item", + "t": 61702, + "n": 1, + "p": 100 + } + ], + "60073": [ + { + "id": 60073, + "a": "item", + "t": 61703, + "n": 1, + "p": 100 + } + ], + "60074": [ + { + "id": 60074, + "a": "item", + "t": 61704, + "n": 1, + "p": 100 + } + ], + "60075": [ + { + "id": 60075, + "a": "item", + "t": 61705, + "n": 1, + "p": 100 + } + ], + "60076": [ + { + "id": 60076, + "a": "item", + "t": 61801, + "n": 1, + "p": 100 + } + ], + "60077": [ + { + "id": 60077, + "a": "item", + "t": 61802, + "n": 1, + "p": 100 + } + ], + "60078": [ + { + "id": 60078, + "a": "item", + "t": 61803, + "n": 1, + "p": 100 + } + ], + "60079": [ + { + "id": 60079, + "a": "item", + "t": 61804, + "n": 1, + "p": 100 + } + ], + "60080": [ + { + "id": 60080, + "a": "item", + "t": 61805, + "n": 1, + "p": 100 + } + ], + "60081": [ + { + "id": 60081, + "a": "item", + "t": 61901, + "n": 1, + "p": 100 + } + ], + "60082": [ + { + "id": 60082, + "a": "item", + "t": 61902, + "n": 1, + "p": 100 + } + ], + "60083": [ + { + "id": 60083, + "a": "item", + "t": 61903, + "n": 1, + "p": 100 + } + ], + "60084": [ + { + "id": 60084, + "a": "item", + "t": 61904, + "n": 1, + "p": 100 + } + ], + "60085": [ + { + "id": 60085, + "a": "item", + "t": 61905, + "n": 1, + "p": 100 + } + ], + "60086": [ + { + "id": 60086, + "a": "item", + "t": 62001, + "n": 1, + "p": 100 + } + ], + "60087": [ + { + "id": 60087, + "a": "item", + "t": 62002, + "n": 1, + "p": 100 + } + ], + "60088": [ + { + "id": 60088, + "a": "item", + "t": 62003, + "n": 1, + "p": 100 + } + ], + "60089": [ + { + "id": 60089, + "a": "item", + "t": 62004, + "n": 1, + "p": 100 + } + ], + "60090": [ + { + "id": 60090, + "a": "item", + "t": 62005, + "n": 1, + "p": 100 + } + ], + "60101": [ + { + "id": 60101, + "a": "item", + "t": 60101, + "n": 1, + "p": 240 + }, + { + "id": 60101, + "a": "item", + "t": 60102, + "n": 1, + "p": 240 + }, + { + "id": 60101, + "a": "item", + "t": 60103, + "n": 1, + "p": 40 + }, + { + "id": 60101, + "a": "item", + "t": 60104, + "n": 1, + "p": 240 + }, + { + "id": 60101, + "a": "item", + "t": 60105, + "n": 1, + "p": 240 + } + ], + "60102": [ + { + "id": 60102, + "a": "item", + "t": 60201, + "n": 1, + "p": 239 + }, + { + "id": 60102, + "a": "item", + "t": 60202, + "n": 1, + "p": 239 + }, + { + "id": 60102, + "a": "item", + "t": 60203, + "n": 1, + "p": 44 + }, + { + "id": 60102, + "a": "item", + "t": 60204, + "n": 1, + "p": 239 + }, + { + "id": 60102, + "a": "item", + "t": 60205, + "n": 1, + "p": 239 + } + ], + "60103": [ + { + "id": 60103, + "a": "item", + "t": 60301, + "n": 1, + "p": 238 + }, + { + "id": 60103, + "a": "item", + "t": 60302, + "n": 1, + "p": 238 + }, + { + "id": 60103, + "a": "item", + "t": 60303, + "n": 1, + "p": 48 + }, + { + "id": 60103, + "a": "item", + "t": 60304, + "n": 1, + "p": 238 + }, + { + "id": 60103, + "a": "item", + "t": 60305, + "n": 1, + "p": 238 + } + ], + "60104": [ + { + "id": 60104, + "a": "item", + "t": 60401, + "n": 1, + "p": 237 + }, + { + "id": 60104, + "a": "item", + "t": 60402, + "n": 1, + "p": 237 + }, + { + "id": 60104, + "a": "item", + "t": 60403, + "n": 1, + "p": 52 + }, + { + "id": 60104, + "a": "item", + "t": 60404, + "n": 1, + "p": 237 + }, + { + "id": 60104, + "a": "item", + "t": 60405, + "n": 1, + "p": 237 + } + ], + "60105": [ + { + "id": 60105, + "a": "item", + "t": 60501, + "n": 1, + "p": 236 + }, + { + "id": 60105, + "a": "item", + "t": 60502, + "n": 1, + "p": 236 + }, + { + "id": 60105, + "a": "item", + "t": 60503, + "n": 1, + "p": 56 + }, + { + "id": 60105, + "a": "item", + "t": 60504, + "n": 1, + "p": 236 + }, + { + "id": 60105, + "a": "item", + "t": 60505, + "n": 1, + "p": 236 + } + ], + "60106": [ + { + "id": 60106, + "a": "item", + "t": 60601, + "n": 1, + "p": 235 + }, + { + "id": 60106, + "a": "item", + "t": 60602, + "n": 1, + "p": 235 + }, + { + "id": 60106, + "a": "item", + "t": 60603, + "n": 1, + "p": 60 + }, + { + "id": 60106, + "a": "item", + "t": 60604, + "n": 1, + "p": 235 + }, + { + "id": 60106, + "a": "item", + "t": 60605, + "n": 1, + "p": 235 + } + ], + "60107": [ + { + "id": 60107, + "a": "item", + "t": 60701, + "n": 1, + "p": 234 + }, + { + "id": 60107, + "a": "item", + "t": 60702, + "n": 1, + "p": 234 + }, + { + "id": 60107, + "a": "item", + "t": 60703, + "n": 1, + "p": 64 + }, + { + "id": 60107, + "a": "item", + "t": 60704, + "n": 1, + "p": 234 + }, + { + "id": 60107, + "a": "item", + "t": 60705, + "n": 1, + "p": 234 + } + ], + "60108": [ + { + "id": 60108, + "a": "item", + "t": 60801, + "n": 1, + "p": 233 + }, + { + "id": 60108, + "a": "item", + "t": 60802, + "n": 1, + "p": 233 + }, + { + "id": 60108, + "a": "item", + "t": 60803, + "n": 1, + "p": 68 + }, + { + "id": 60108, + "a": "item", + "t": 60804, + "n": 1, + "p": 233 + }, + { + "id": 60108, + "a": "item", + "t": 60805, + "n": 1, + "p": 233 + } + ], + "60109": [ + { + "id": 60109, + "a": "item", + "t": 60901, + "n": 1, + "p": 232 + }, + { + "id": 60109, + "a": "item", + "t": 60902, + "n": 1, + "p": 232 + }, + { + "id": 60109, + "a": "item", + "t": 60903, + "n": 1, + "p": 72 + }, + { + "id": 60109, + "a": "item", + "t": 60904, + "n": 1, + "p": 232 + }, + { + "id": 60109, + "a": "item", + "t": 60905, + "n": 1, + "p": 232 + } + ], + "60110": [ + { + "id": 60110, + "a": "item", + "t": 61001, + "n": 1, + "p": 231 + }, + { + "id": 60110, + "a": "item", + "t": 61002, + "n": 1, + "p": 231 + }, + { + "id": 60110, + "a": "item", + "t": 61003, + "n": 1, + "p": 76 + }, + { + "id": 60110, + "a": "item", + "t": 61004, + "n": 1, + "p": 231 + }, + { + "id": 60110, + "a": "item", + "t": 61005, + "n": 1, + "p": 231 + } + ], + "60200": [ + { + "id": 60200, + "a": "item", + "t": 22, + "n": 50, + "p": 100 + } + ], + "70001": [ + { + "id": 70001, + "a": "item", + "t": 61101, + "n": 1, + "p": 30 + }, + { + "id": 70001, + "a": "item", + "t": 61102, + "n": 1, + "p": 30 + }, + { + "id": 70001, + "a": "item", + "t": 61103, + "n": 1, + "p": 1 + }, + { + "id": 70001, + "a": "item", + "t": 61104, + "n": 1, + "p": 30 + }, + { + "id": 70001, + "a": "item", + "t": 61105, + "n": 1, + "p": 30 + } + ], + "70002": [ + { + "id": 70002, + "a": "item", + "t": 61201, + "n": 1, + "p": 30 + }, + { + "id": 70002, + "a": "item", + "t": 61202, + "n": 1, + "p": 30 + }, + { + "id": 70002, + "a": "item", + "t": 61203, + "n": 1, + "p": 1 + }, + { + "id": 70002, + "a": "item", + "t": 61204, + "n": 1, + "p": 30 + }, + { + "id": 70002, + "a": "item", + "t": 61205, + "n": 1, + "p": 30 + } + ], + "70003": [ + { + "id": 70003, + "a": "item", + "t": 61301, + "n": 1, + "p": 30 + }, + { + "id": 70003, + "a": "item", + "t": 61302, + "n": 1, + "p": 30 + }, + { + "id": 70003, + "a": "item", + "t": 61303, + "n": 1, + "p": 1 + }, + { + "id": 70003, + "a": "item", + "t": 61304, + "n": 1, + "p": 30 + }, + { + "id": 70003, + "a": "item", + "t": 61305, + "n": 1, + "p": 30 + } + ], + "70004": [ + { + "id": 70004, + "a": "item", + "t": 61401, + "n": 1, + "p": 30 + }, + { + "id": 70004, + "a": "item", + "t": 61402, + "n": 1, + "p": 30 + }, + { + "id": 70004, + "a": "item", + "t": 61403, + "n": 1, + "p": 1 + }, + { + "id": 70004, + "a": "item", + "t": 61404, + "n": 1, + "p": 30 + }, + { + "id": 70004, + "a": "item", + "t": 61405, + "n": 1, + "p": 30 + } + ], + "70005": [ + { + "id": 70005, + "a": "item", + "t": 61501, + "n": 1, + "p": 30 + }, + { + "id": 70005, + "a": "item", + "t": 61502, + "n": 1, + "p": 30 + }, + { + "id": 70005, + "a": "item", + "t": 61503, + "n": 1, + "p": 1 + }, + { + "id": 70005, + "a": "item", + "t": 61504, + "n": 1, + "p": 30 + }, + { + "id": 70005, + "a": "item", + "t": 61505, + "n": 1, + "p": 30 + } + ], + "70006": [ + { + "id": 70006, + "a": "item", + "t": 61601, + "n": 1, + "p": 30 + }, + { + "id": 70006, + "a": "item", + "t": 61602, + "n": 1, + "p": 30 + }, + { + "id": 70006, + "a": "item", + "t": 61603, + "n": 1, + "p": 1 + }, + { + "id": 70006, + "a": "item", + "t": 61604, + "n": 1, + "p": 30 + }, + { + "id": 70006, + "a": "item", + "t": 61605, + "n": 1, + "p": 30 + } + ], + "70007": [ + { + "id": 70007, + "a": "item", + "t": 61701, + "n": 1, + "p": 30 + }, + { + "id": 70007, + "a": "item", + "t": 61702, + "n": 1, + "p": 30 + }, + { + "id": 70007, + "a": "item", + "t": 61703, + "n": 1, + "p": 1 + }, + { + "id": 70007, + "a": "item", + "t": 61704, + "n": 1, + "p": 30 + }, + { + "id": 70007, + "a": "item", + "t": 61705, + "n": 1, + "p": 30 + } + ], + "70008": [ + { + "id": 70008, + "a": "item", + "t": 61801, + "n": 1, + "p": 30 + }, + { + "id": 70008, + "a": "item", + "t": 61802, + "n": 1, + "p": 30 + }, + { + "id": 70008, + "a": "item", + "t": 61803, + "n": 1, + "p": 1 + }, + { + "id": 70008, + "a": "item", + "t": 61804, + "n": 1, + "p": 30 + }, + { + "id": 70008, + "a": "item", + "t": 61805, + "n": 1, + "p": 30 + } + ], + "70009": [ + { + "id": 70009, + "a": "item", + "t": 61901, + "n": 1, + "p": 30 + }, + { + "id": 70009, + "a": "item", + "t": 61902, + "n": 1, + "p": 30 + }, + { + "id": 70009, + "a": "item", + "t": 61903, + "n": 1, + "p": 1 + }, + { + "id": 70009, + "a": "item", + "t": 61904, + "n": 1, + "p": 30 + }, + { + "id": 70009, + "a": "item", + "t": 61905, + "n": 1, + "p": 30 + } + ], + "70010": [ + { + "id": 70010, + "a": "item", + "t": 62001, + "n": 1, + "p": 30 + }, + { + "id": 70010, + "a": "item", + "t": 62002, + "n": 1, + "p": 30 + }, + { + "id": 70010, + "a": "item", + "t": 62003, + "n": 1, + "p": 1 + }, + { + "id": 70010, + "a": "item", + "t": 62004, + "n": 1, + "p": 30 + }, + { + "id": 70010, + "a": "item", + "t": 62005, + "n": 1, + "p": 30 + } + ], + "80001": [ + { + "id": 80001, + "a": "item", + "t": 4, + "n": 1, + "p": 3 + }, + { + "id": 80001, + "a": "attr", + "t": "rmbmoney", + "n": 20, + "p": 3 + }, + { + "id": 80001, + "a": "item", + "t": 2, + "n": 50, + "p": 3 + }, + { + "id": 80001, + "a": "item", + "t": 1, + "n": 20000, + "p": 4 + } + ], + "110001": [ + { + "id": 110001, + "a": "item", + "t": 10001, + "n": 1, + "p": 2 + }, + { + "id": 110001, + "a": "item", + "t": 20001, + "n": 1, + "p": 2 + }, + { + "id": 110001, + "a": "item", + "t": 30001, + "n": 1, + "p": 2 + }, + { + "id": 110001, + "a": "item", + "t": 40001, + "n": 1, + "p": 2 + }, + { + "id": 110001, + "a": "item", + "t": 10002, + "n": 1, + "p": 1 + }, + { + "id": 110001, + "a": "item", + "t": 20002, + "n": 1, + "p": 1 + }, + { + "id": 110001, + "a": "item", + "t": 30002, + "n": 1, + "p": 1 + }, + { + "id": 110001, + "a": "item", + "t": 40002, + "n": 1, + "p": 1 + } + ], + "110002": [ + { + "id": 110002, + "a": "item", + "t": 10001, + "n": 1, + "p": 100 + }, + { + "id": 110002, + "a": "item", + "t": 10002, + "n": 1, + "p": 100 + }, + { + "id": 110002, + "a": "item", + "t": 10003, + "n": 1, + "p": 100 + }, + { + "id": 110002, + "a": "item", + "t": 10004, + "n": 1, + "p": 100 + }, + { + "id": 110002, + "a": "item", + "t": 10002, + "n": 1, + "p": 100 + }, + { + "id": 110002, + "a": "item", + "t": 20002, + "n": 1, + "p": 100 + }, + { + "id": 110002, + "a": "item", + "t": 30002, + "n": 1, + "p": 100 + }, + { + "id": 110002, + "a": "item", + "t": 40002, + "n": 1, + "p": 100 + }, + { + "id": 110002, + "a": "item", + "t": 10003, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 10004, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 10005, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 10006, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 10007, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 10008, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 20001, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 20002, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 20003, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 20004, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 20005, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 20006, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 20007, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 20008, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 30001, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 30002, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 30003, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 30004, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 30005, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 30006, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 30007, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 30008, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 40001, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 40002, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 40003, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 40004, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 40005, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 40006, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 40007, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 40008, + "n": 1, + "p": 5 + }, + { + "id": 110002, + "a": "item", + "t": 10009, + "n": 1, + "p": 3 + }, + { + "id": 110002, + "a": "item", + "t": 20009, + "n": 1, + "p": 3 + }, + { + "id": 110002, + "a": "item", + "t": 30009, + "n": 1, + "p": 3 + }, + { + "id": 110002, + "a": "item", + "t": 40009, + "n": 1, + "p": 3 + }, + { + "id": 110002, + "a": "equip", + "t": 1001, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 1002, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 1003, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 1004, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 1005, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 1006, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 1007, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 1008, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 2001, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 2002, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 2003, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 2004, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 2005, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 2006, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 2007, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 2008, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 3001, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 3002, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 3003, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 3004, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 3005, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 3006, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 3007, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 3008, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 4001, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 4002, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 4003, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 4004, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 4005, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 4006, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 4007, + "n": 1, + "p": 1 + }, + { + "id": 110002, + "a": "equip", + "t": 4008, + "n": 1, + "p": 1 + } + ], + "110003": [ + { + "id": 110003, + "a": "item", + "t": 10003, + "n": 1, + "p": 504 + }, + { + "id": 110003, + "a": "item", + "t": 10004, + "n": 1, + "p": 504 + }, + { + "id": 110003, + "a": "item", + "t": 10005, + "n": 1, + "p": 504 + }, + { + "id": 110003, + "a": "item", + "t": 10006, + "n": 1, + "p": 504 + }, + { + "id": 110003, + "a": "item", + "t": 10007, + "n": 1, + "p": 504 + }, + { + "id": 110003, + "a": "item", + "t": 10008, + "n": 1, + "p": 504 + }, + { + "id": 110003, + "a": "item", + "t": 10009, + "n": 1, + "p": 252 + }, + { + "id": 110003, + "a": "item", + "t": 20003, + "n": 1, + "p": 504 + }, + { + "id": 110003, + "a": "item", + "t": 20004, + "n": 1, + "p": 504 + }, + { + "id": 110003, + "a": "item", + "t": 20005, + "n": 1, + "p": 504 + }, + { + "id": 110003, + "a": "item", + "t": 20006, + "n": 1, + "p": 504 + }, + { + "id": 110003, + "a": "item", + "t": 20007, + "n": 1, + "p": 504 + }, + { + "id": 110003, + "a": "item", + "t": 20008, + "n": 1, + "p": 504 + }, + { + "id": 110003, + "a": "item", + "t": 20009, + "n": 1, + "p": 252 + }, + { + "id": 110003, + "a": "item", + "t": 30003, + "n": 1, + "p": 504 + }, + { + "id": 110003, + "a": "item", + "t": 30004, + "n": 1, + "p": 504 + }, + { + "id": 110003, + "a": "item", + "t": 30005, + "n": 1, + "p": 504 + }, + { + "id": 110003, + "a": "item", + "t": 30006, + "n": 1, + "p": 504 + }, + { + "id": 110003, + "a": "item", + "t": 30007, + "n": 1, + "p": 504 + }, + { + "id": 110003, + "a": "item", + "t": 30008, + "n": 1, + "p": 504 + }, + { + "id": 110003, + "a": "item", + "t": 30009, + "n": 1, + "p": 252 + }, + { + "id": 110003, + "a": "item", + "t": 40003, + "n": 1, + "p": 504 + }, + { + "id": 110003, + "a": "item", + "t": 40004, + "n": 1, + "p": 504 + }, + { + "id": 110003, + "a": "item", + "t": 40005, + "n": 1, + "p": 504 + }, + { + "id": 110003, + "a": "item", + "t": 40006, + "n": 1, + "p": 504 + }, + { + "id": 110003, + "a": "item", + "t": 40007, + "n": 1, + "p": 504 + }, + { + "id": 110003, + "a": "item", + "t": 40008, + "n": 1, + "p": 504 + }, + { + "id": 110003, + "a": "item", + "t": 40009, + "n": 1, + "p": 252 + }, + { + "id": 110003, + "a": "equip", + "t": 1003, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 1004, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 1005, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 1006, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 1007, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 1008, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 1009, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 2003, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 2004, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 2005, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 2006, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 2007, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 2008, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 2009, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 3003, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 3004, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 3005, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 3006, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 3007, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 3008, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 3009, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 4003, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 4004, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 4005, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 4006, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 4007, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 4008, + "n": 1, + "p": 52 + }, + { + "id": 110003, + "a": "equip", + "t": 4009, + "n": 1, + "p": 52 + } + ], + "210001": [ + { + "id": 210001, + "a": "attr", + "t": "nexp", + "n": 3, + "p": 1 + } + ], + "210002": [ + { + "id": 210002, + "a": "attr", + "t": "nexp", + "n": 3, + "p": 1 + } + ], + "210003": [ + { + "id": 210003, + "a": "attr", + "t": "nexp", + "n": 4, + "p": 1 + } + ], + "210004": [ + { + "id": 210004, + "a": "attr", + "t": "nexp", + "n": 5, + "p": 1 + } + ], + "210005": [ + { + "id": 210005, + "a": "attr", + "t": "nexp", + "n": 5, + "p": 1 + } + ], + "210006": [ + { + "id": 210006, + "a": "attr", + "t": "nexp", + "n": 10, + "p": 1 + } + ], + "210007": [ + { + "id": 210007, + "a": "attr", + "t": "nexp", + "n": 10, + "p": 1 + } + ], + "210008": [ + { + "id": 210008, + "a": "attr", + "t": "nexp", + "n": 11, + "p": 1 + } + ], + "210009": [ + { + "id": 210009, + "a": "attr", + "t": "nexp", + "n": 12, + "p": 1 + } + ], + "210010": [ + { + "id": 210010, + "a": "attr", + "t": "nexp", + "n": 13, + "p": 1 + } + ], + "210011": [ + { + "id": 210011, + "a": "attr", + "t": "nexp", + "n": 14, + "p": 1 + } + ], + "210012": [ + { + "id": 210012, + "a": "attr", + "t": "nexp", + "n": 15, + "p": 1 + } + ], + "210013": [ + { + "id": 210013, + "a": "attr", + "t": "nexp", + "n": 16, + "p": 1 + } + ], + "210014": [ + { + "id": 210014, + "a": "attr", + "t": "nexp", + "n": 17, + "p": 1 + } + ], + "210015": [ + { + "id": 210015, + "a": "attr", + "t": "nexp", + "n": 18, + "p": 1 + } + ], + "210016": [ + { + "id": 210016, + "a": "attr", + "t": "nexp", + "n": 19, + "p": 1 + } + ], + "210017": [ + { + "id": 210017, + "a": "attr", + "t": "nexp", + "n": 20, + "p": 1 + } + ], + "210018": [ + { + "id": 210018, + "a": "attr", + "t": "nexp", + "n": 21, + "p": 1 + } + ], + "210019": [ + { + "id": 210019, + "a": "attr", + "t": "nexp", + "n": 22, + "p": 1 + } + ], + "210020": [ + { + "id": 210020, + "a": "attr", + "t": "nexp", + "n": 23, + "p": 1 + } + ], + "210021": [ + { + "id": 210021, + "a": "attr", + "t": "nexp", + "n": 29, + "p": 1 + } + ], + "210022": [ + { + "id": 210022, + "a": "attr", + "t": "nexp", + "n": 36, + "p": 1 + } + ], + "210023": [ + { + "id": 210023, + "a": "attr", + "t": "nexp", + "n": 45, + "p": 1 + } + ], + "210024": [ + { + "id": 210024, + "a": "attr", + "t": "nexp", + "n": 53, + "p": 1 + } + ], + "210025": [ + { + "id": 210025, + "a": "attr", + "t": "nexp", + "n": 62, + "p": 1 + } + ], + "210026": [ + { + "id": 210026, + "a": "attr", + "t": "nexp", + "n": 72, + "p": 1 + } + ], + "210027": [ + { + "id": 210027, + "a": "attr", + "t": "nexp", + "n": 80, + "p": 1 + } + ], + "210028": [ + { + "id": 210028, + "a": "attr", + "t": "nexp", + "n": 88, + "p": 1 + } + ], + "210029": [ + { + "id": 210029, + "a": "attr", + "t": "nexp", + "n": 90, + "p": 1 + } + ], + "210030": [ + { + "id": 210030, + "a": "attr", + "t": "nexp", + "n": 130, + "p": 1 + } + ], + "210031": [ + { + "id": 210031, + "a": "attr", + "t": "nexp", + "n": 145, + "p": 1 + } + ], + "210032": [ + { + "id": 210032, + "a": "attr", + "t": "nexp", + "n": 150, + "p": 1 + } + ], + "210033": [ + { + "id": 210033, + "a": "attr", + "t": "nexp", + "n": 155, + "p": 1 + } + ], + "210034": [ + { + "id": 210034, + "a": "attr", + "t": "nexp", + "n": 160, + "p": 1 + } + ], + "210035": [ + { + "id": 210035, + "a": "attr", + "t": "nexp", + "n": 165, + "p": 1 + } + ], + "210036": [ + { + "id": 210036, + "a": "attr", + "t": "nexp", + "n": 175, + "p": 1 + } + ], + "210037": [ + { + "id": 210037, + "a": "attr", + "t": "nexp", + "n": 185, + "p": 1 + } + ], + "210038": [ + { + "id": 210038, + "a": "attr", + "t": "nexp", + "n": 195, + "p": 1 + } + ], + "210039": [ + { + "id": 210039, + "a": "attr", + "t": "nexp", + "n": 205, + "p": 1 + } + ], + "210040": [ + { + "id": 210040, + "a": "attr", + "t": "nexp", + "n": 220, + "p": 1 + } + ], + "210041": [ + { + "id": 210041, + "a": "attr", + "t": "nexp", + "n": 230, + "p": 1 + } + ], + "210042": [ + { + "id": 210042, + "a": "attr", + "t": "nexp", + "n": 245, + "p": 1 + } + ], + "210043": [ + { + "id": 210043, + "a": "attr", + "t": "nexp", + "n": 255, + "p": 1 + } + ], + "210044": [ + { + "id": 210044, + "a": "attr", + "t": "nexp", + "n": 270, + "p": 1 + } + ], + "210045": [ + { + "id": 210045, + "a": "attr", + "t": "nexp", + "n": 280, + "p": 1 + } + ], + "210046": [ + { + "id": 210046, + "a": "attr", + "t": "nexp", + "n": 295, + "p": 1 + } + ], + "210047": [ + { + "id": 210047, + "a": "attr", + "t": "nexp", + "n": 310, + "p": 1 + } + ], + "210048": [ + { + "id": 210048, + "a": "attr", + "t": "nexp", + "n": 320, + "p": 1 + } + ], + "210049": [ + { + "id": 210049, + "a": "attr", + "t": "nexp", + "n": 335, + "p": 1 + } + ], + "210050": [ + { + "id": 210050, + "a": "attr", + "t": "nexp", + "n": 350, + "p": 1 + } + ], + "210051": [ + { + "id": 210051, + "a": "attr", + "t": "nexp", + "n": 360, + "p": 1 + } + ], + "210052": [ + { + "id": 210052, + "a": "attr", + "t": "nexp", + "n": 370, + "p": 1 + } + ], + "210053": [ + { + "id": 210053, + "a": "attr", + "t": "nexp", + "n": 380, + "p": 1 + } + ], + "210054": [ + { + "id": 210054, + "a": "attr", + "t": "nexp", + "n": 390, + "p": 1 + } + ], + "210055": [ + { + "id": 210055, + "a": "attr", + "t": "nexp", + "n": 400, + "p": 1 + } + ], + "210056": [ + { + "id": 210056, + "a": "attr", + "t": "nexp", + "n": 410, + "p": 1 + } + ], + "210057": [ + { + "id": 210057, + "a": "attr", + "t": "nexp", + "n": 420, + "p": 1 + } + ], + "210058": [ + { + "id": 210058, + "a": "attr", + "t": "nexp", + "n": 430, + "p": 1 + } + ], + "210059": [ + { + "id": 210059, + "a": "attr", + "t": "nexp", + "n": 440, + "p": 1 + } + ], + "210060": [ + { + "id": 210060, + "a": "attr", + "t": "nexp", + "n": 450, + "p": 1 + } + ], + "210061": [ + { + "id": 210061, + "a": "attr", + "t": "nexp", + "n": 460, + "p": 1 + } + ], + "210062": [ + { + "id": 210062, + "a": "attr", + "t": "nexp", + "n": 470, + "p": 1 + } + ], + "210063": [ + { + "id": 210063, + "a": "attr", + "t": "nexp", + "n": 480, + "p": 1 + } + ], + "210064": [ + { + "id": 210064, + "a": "attr", + "t": "nexp", + "n": 490, + "p": 1 + } + ], + "210065": [ + { + "id": 210065, + "a": "attr", + "t": "nexp", + "n": 500, + "p": 1 + } + ], + "210066": [ + { + "id": 210066, + "a": "attr", + "t": "nexp", + "n": 510, + "p": 1 + } + ], + "210067": [ + { + "id": 210067, + "a": "attr", + "t": "nexp", + "n": 520, + "p": 1 + } + ], + "210068": [ + { + "id": 210068, + "a": "attr", + "t": "nexp", + "n": 530, + "p": 1 + } + ], + "210069": [ + { + "id": 210069, + "a": "attr", + "t": "nexp", + "n": 540, + "p": 1 + } + ], + "210070": [ + { + "id": 210070, + "a": "attr", + "t": "nexp", + "n": 550, + "p": 1 + } + ], + "210071": [ + { + "id": 210071, + "a": "attr", + "t": "nexp", + "n": 560, + "p": 1 + } + ], + "210072": [ + { + "id": 210072, + "a": "attr", + "t": "nexp", + "n": 570, + "p": 1 + } + ], + "210073": [ + { + "id": 210073, + "a": "attr", + "t": "nexp", + "n": 580, + "p": 1 + } + ], + "210074": [ + { + "id": 210074, + "a": "attr", + "t": "nexp", + "n": 590, + "p": 1 + } + ], + "210075": [ + { + "id": 210075, + "a": "attr", + "t": "nexp", + "n": 600, + "p": 1 + } + ], + "210076": [ + { + "id": 210076, + "a": "attr", + "t": "nexp", + "n": 610, + "p": 1 + } + ], + "210077": [ + { + "id": 210077, + "a": "attr", + "t": "nexp", + "n": 620, + "p": 1 + } + ], + "210078": [ + { + "id": 210078, + "a": "attr", + "t": "nexp", + "n": 630, + "p": 1 + } + ], + "210079": [ + { + "id": 210079, + "a": "attr", + "t": "nexp", + "n": 640, + "p": 1 + } + ], + "210080": [ + { + "id": 210080, + "a": "attr", + "t": "nexp", + "n": 650, + "p": 1 + } + ], + "210081": [ + { + "id": 210081, + "a": "attr", + "t": "nexp", + "n": 660, + "p": 1 + } + ], + "210082": [ + { + "id": 210082, + "a": "attr", + "t": "nexp", + "n": 670, + "p": 1 + } + ], + "210083": [ + { + "id": 210083, + "a": "attr", + "t": "nexp", + "n": 680, + "p": 1 + } + ], + "210084": [ + { + "id": 210084, + "a": "attr", + "t": "nexp", + "n": 690, + "p": 1 + } + ], + "210085": [ + { + "id": 210085, + "a": "attr", + "t": "nexp", + "n": 700, + "p": 1 + } + ], + "210086": [ + { + "id": 210086, + "a": "attr", + "t": "nexp", + "n": 710, + "p": 1 + } + ], + "210087": [ + { + "id": 210087, + "a": "attr", + "t": "nexp", + "n": 720, + "p": 1 + } + ], + "210088": [ + { + "id": 210088, + "a": "attr", + "t": "nexp", + "n": 730, + "p": 1 + } + ], + "210089": [ + { + "id": 210089, + "a": "attr", + "t": "nexp", + "n": 740, + "p": 1 + } + ], + "210090": [ + { + "id": 210090, + "a": "attr", + "t": "nexp", + "n": 750, + "p": 1 + } + ], + "210091": [ + { + "id": 210091, + "a": "attr", + "t": "nexp", + "n": 760, + "p": 1 + } + ], + "210092": [ + { + "id": 210092, + "a": "attr", + "t": "nexp", + "n": 770, + "p": 1 + } + ], + "210093": [ + { + "id": 210093, + "a": "attr", + "t": "nexp", + "n": 780, + "p": 1 + } + ], + "210094": [ + { + "id": 210094, + "a": "attr", + "t": "nexp", + "n": 790, + "p": 1 + } + ], + "210095": [ + { + "id": 210095, + "a": "attr", + "t": "nexp", + "n": 800, + "p": 1 + } + ], + "210096": [ + { + "id": 210096, + "a": "attr", + "t": "nexp", + "n": 810, + "p": 1 + } + ], + "210097": [ + { + "id": 210097, + "a": "attr", + "t": "nexp", + "n": 820, + "p": 1 + } + ], + "210098": [ + { + "id": 210098, + "a": "attr", + "t": "nexp", + "n": 830, + "p": 1 + } + ], + "210099": [ + { + "id": 210099, + "a": "attr", + "t": "nexp", + "n": 840, + "p": 1 + } + ], + "210100": [ + { + "id": 210100, + "a": "attr", + "t": "nexp", + "n": 850, + "p": 1 + } + ], + "210101": [ + { + "id": 210101, + "a": "attr", + "t": "nexp", + "n": 860, + "p": 1 + } + ], + "210102": [ + { + "id": 210102, + "a": "attr", + "t": "nexp", + "n": 870, + "p": 1 + } + ], + "210103": [ + { + "id": 210103, + "a": "attr", + "t": "nexp", + "n": 880, + "p": 1 + } + ], + "210104": [ + { + "id": 210104, + "a": "attr", + "t": "nexp", + "n": 890, + "p": 1 + } + ], + "210105": [ + { + "id": 210105, + "a": "attr", + "t": "nexp", + "n": 895, + "p": 1 + } + ], + "210106": [ + { + "id": 210106, + "a": "attr", + "t": "nexp", + "n": 900, + "p": 1 + } + ], + "210107": [ + { + "id": 210107, + "a": "attr", + "t": "nexp", + "n": 905, + "p": 1 + } + ], + "210108": [ + { + "id": 210108, + "a": "attr", + "t": "nexp", + "n": 910, + "p": 1 + } + ], + "210109": [ + { + "id": 210109, + "a": "attr", + "t": "nexp", + "n": 915, + "p": 1 + } + ], + "210110": [ + { + "id": 210110, + "a": "attr", + "t": "nexp", + "n": 920, + "p": 1 + } + ], + "210111": [ + { + "id": 210111, + "a": "attr", + "t": "nexp", + "n": 925, + "p": 1 + } + ], + "210112": [ + { + "id": 210112, + "a": "attr", + "t": "nexp", + "n": 930, + "p": 1 + } + ], + "210113": [ + { + "id": 210113, + "a": "attr", + "t": "nexp", + "n": 935, + "p": 1 + } + ], + "210114": [ + { + "id": 210114, + "a": "attr", + "t": "nexp", + "n": 940, + "p": 1 + } + ], + "210115": [ + { + "id": 210115, + "a": "attr", + "t": "nexp", + "n": 945, + "p": 1 + } + ], + "210116": [ + { + "id": 210116, + "a": "attr", + "t": "nexp", + "n": 950, + "p": 1 + } + ], + "210117": [ + { + "id": 210117, + "a": "attr", + "t": "nexp", + "n": 955, + "p": 1 + } + ], + "210118": [ + { + "id": 210118, + "a": "attr", + "t": "nexp", + "n": 960, + "p": 1 + } + ], + "210119": [ + { + "id": 210119, + "a": "attr", + "t": "nexp", + "n": 965, + "p": 1 + } + ], + "210120": [ + { + "id": 210120, + "a": "attr", + "t": "nexp", + "n": 970, + "p": 1 + } + ], + "210121": [ + { + "id": 210121, + "a": "attr", + "t": "nexp", + "n": 975, + "p": 1 + } + ], + "210122": [ + { + "id": 210122, + "a": "attr", + "t": "nexp", + "n": 980, + "p": 1 + } + ], + "210123": [ + { + "id": 210123, + "a": "attr", + "t": "nexp", + "n": 985, + "p": 1 + } + ], + "210124": [ + { + "id": 210124, + "a": "attr", + "t": "nexp", + "n": 990, + "p": 1 + } + ], + "210125": [ + { + "id": 210125, + "a": "attr", + "t": "nexp", + "n": 995, + "p": 1 + } + ], + "210126": [ + { + "id": 210126, + "a": "attr", + "t": "nexp", + "n": 1000, + "p": 1 + } + ], + "210127": [ + { + "id": 210127, + "a": "attr", + "t": "nexp", + "n": 1005, + "p": 1 + } + ], + "210128": [ + { + "id": 210128, + "a": "attr", + "t": "nexp", + "n": 1010, + "p": 1 + } + ], + "210129": [ + { + "id": 210129, + "a": "attr", + "t": "nexp", + "n": 1015, + "p": 1 + } + ], + "210130": [ + { + "id": 210130, + "a": "attr", + "t": "nexp", + "n": 1020, + "p": 1 + } + ], + "210131": [ + { + "id": 210131, + "a": "attr", + "t": "nexp", + "n": 1025, + "p": 1 + } + ], + "210132": [ + { + "id": 210132, + "a": "attr", + "t": "nexp", + "n": 1030, + "p": 1 + } + ], + "210133": [ + { + "id": 210133, + "a": "attr", + "t": "nexp", + "n": 1035, + "p": 1 + } + ], + "210134": [ + { + "id": 210134, + "a": "attr", + "t": "nexp", + "n": 1040, + "p": 1 + } + ], + "210135": [ + { + "id": 210135, + "a": "attr", + "t": "nexp", + "n": 1045, + "p": 1 + } + ], + "210136": [ + { + "id": 210136, + "a": "attr", + "t": "nexp", + "n": 1050, + "p": 1 + } + ], + "210137": [ + { + "id": 210137, + "a": "attr", + "t": "nexp", + "n": 1055, + "p": 1 + } + ], + "210138": [ + { + "id": 210138, + "a": "attr", + "t": "nexp", + "n": 1060, + "p": 1 + } + ], + "210139": [ + { + "id": 210139, + "a": "attr", + "t": "nexp", + "n": 1065, + "p": 1 + } + ], + "210140": [ + { + "id": 210140, + "a": "attr", + "t": "nexp", + "n": 1070, + "p": 1 + } + ], + "210141": [ + { + "id": 210141, + "a": "attr", + "t": "nexp", + "n": 1075, + "p": 1 + } + ], + "210142": [ + { + "id": 210142, + "a": "attr", + "t": "nexp", + "n": 1080, + "p": 1 + } + ], + "210143": [ + { + "id": 210143, + "a": "attr", + "t": "nexp", + "n": 1085, + "p": 1 + } + ], + "210144": [ + { + "id": 210144, + "a": "attr", + "t": "nexp", + "n": 1090, + "p": 1 + } + ], + "210145": [ + { + "id": 210145, + "a": "attr", + "t": "nexp", + "n": 1095, + "p": 1 + } + ], + "210146": [ + { + "id": 210146, + "a": "attr", + "t": "nexp", + "n": 1100, + "p": 1 + } + ], + "210147": [ + { + "id": 210147, + "a": "attr", + "t": "nexp", + "n": 1105, + "p": 1 + } + ], + "210148": [ + { + "id": 210148, + "a": "attr", + "t": "nexp", + "n": 1110, + "p": 1 + } + ], + "210149": [ + { + "id": 210149, + "a": "attr", + "t": "nexp", + "n": 1115, + "p": 1 + } + ], + "210150": [ + { + "id": 210150, + "a": "attr", + "t": "nexp", + "n": 1120, + "p": 1 + } + ], + "210151": [ + { + "id": 210151, + "a": "attr", + "t": "nexp", + "n": 1125, + "p": 1 + } + ], + "210152": [ + { + "id": 210152, + "a": "attr", + "t": "nexp", + "n": 1130, + "p": 1 + } + ], + "210153": [ + { + "id": 210153, + "a": "attr", + "t": "nexp", + "n": 1135, + "p": 1 + } + ], + "210154": [ + { + "id": 210154, + "a": "attr", + "t": "nexp", + "n": 1140, + "p": 1 + } + ], + "210155": [ + { + "id": 210155, + "a": "attr", + "t": "nexp", + "n": 1145, + "p": 1 + } + ], + "210156": [ + { + "id": 210156, + "a": "attr", + "t": "nexp", + "n": 1150, + "p": 1 + } + ], + "210157": [ + { + "id": 210157, + "a": "attr", + "t": "nexp", + "n": 1155, + "p": 1 + } + ], + "210158": [ + { + "id": 210158, + "a": "attr", + "t": "nexp", + "n": 1160, + "p": 1 + } + ], + "210159": [ + { + "id": 210159, + "a": "attr", + "t": "nexp", + "n": 1165, + "p": 1 + } + ], + "210160": [ + { + "id": 210160, + "a": "attr", + "t": "nexp", + "n": 1170, + "p": 1 + } + ], + "210161": [ + { + "id": 210161, + "a": "attr", + "t": "nexp", + "n": 1175, + "p": 1 + } + ], + "210162": [ + { + "id": 210162, + "a": "attr", + "t": "nexp", + "n": 1180, + "p": 1 + } + ], + "210163": [ + { + "id": 210163, + "a": "attr", + "t": "nexp", + "n": 1185, + "p": 1 + } + ], + "210164": [ + { + "id": 210164, + "a": "attr", + "t": "nexp", + "n": 1190, + "p": 1 + } + ], + "210165": [ + { + "id": 210165, + "a": "attr", + "t": "nexp", + "n": 1195, + "p": 1 + } + ], + "210166": [ + { + "id": 210166, + "a": "attr", + "t": "nexp", + "n": 1200, + "p": 1 + } + ], + "210167": [ + { + "id": 210167, + "a": "attr", + "t": "nexp", + "n": 1205, + "p": 1 + } + ], + "210168": [ + { + "id": 210168, + "a": "attr", + "t": "nexp", + "n": 1210, + "p": 1 + } + ], + "210169": [ + { + "id": 210169, + "a": "attr", + "t": "nexp", + "n": 1215, + "p": 1 + } + ], + "210170": [ + { + "id": 210170, + "a": "attr", + "t": "nexp", + "n": 1220, + "p": 1 + } + ], + "210171": [ + { + "id": 210171, + "a": "attr", + "t": "nexp", + "n": 1225, + "p": 1 + } + ], + "210172": [ + { + "id": 210172, + "a": "attr", + "t": "nexp", + "n": 1230, + "p": 1 + } + ], + "210173": [ + { + "id": 210173, + "a": "attr", + "t": "nexp", + "n": 1235, + "p": 1 + } + ], + "210174": [ + { + "id": 210174, + "a": "attr", + "t": "nexp", + "n": 1240, + "p": 1 + } + ], + "210175": [ + { + "id": 210175, + "a": "attr", + "t": "nexp", + "n": 1245, + "p": 1 + } + ], + "210176": [ + { + "id": 210176, + "a": "attr", + "t": "nexp", + "n": 1250, + "p": 1 + } + ], + "210177": [ + { + "id": 210177, + "a": "attr", + "t": "nexp", + "n": 1255, + "p": 1 + } + ], + "210178": [ + { + "id": 210178, + "a": "attr", + "t": "nexp", + "n": 1260, + "p": 1 + } + ], + "210179": [ + { + "id": 210179, + "a": "attr", + "t": "nexp", + "n": 1265, + "p": 1 + } + ], + "210180": [ + { + "id": 210180, + "a": "attr", + "t": "nexp", + "n": 1270, + "p": 1 + } + ], + "210181": [ + { + "id": 210181, + "a": "attr", + "t": "nexp", + "n": 1275, + "p": 1 + } + ], + "210182": [ + { + "id": 210182, + "a": "attr", + "t": "nexp", + "n": 1280, + "p": 1 + } + ], + "210183": [ + { + "id": 210183, + "a": "attr", + "t": "nexp", + "n": 1285, + "p": 1 + } + ], + "210184": [ + { + "id": 210184, + "a": "attr", + "t": "nexp", + "n": 1290, + "p": 1 + } + ], + "210185": [ + { + "id": 210185, + "a": "attr", + "t": "nexp", + "n": 1295, + "p": 1 + } + ], + "210186": [ + { + "id": 210186, + "a": "attr", + "t": "nexp", + "n": 1300, + "p": 1 + } + ], + "210187": [ + { + "id": 210187, + "a": "attr", + "t": "nexp", + "n": 1305, + "p": 1 + } + ], + "210188": [ + { + "id": 210188, + "a": "attr", + "t": "nexp", + "n": 1310, + "p": 1 + } + ], + "210189": [ + { + "id": 210189, + "a": "attr", + "t": "nexp", + "n": 1315, + "p": 1 + } + ], + "210190": [ + { + "id": 210190, + "a": "attr", + "t": "nexp", + "n": 1320, + "p": 1 + } + ], + "210191": [ + { + "id": 210191, + "a": "attr", + "t": "nexp", + "n": 1325, + "p": 1 + } + ], + "210192": [ + { + "id": 210192, + "a": "attr", + "t": "nexp", + "n": 1330, + "p": 1 + } + ], + "210193": [ + { + "id": 210193, + "a": "attr", + "t": "nexp", + "n": 1335, + "p": 1 + } + ], + "210194": [ + { + "id": 210194, + "a": "attr", + "t": "nexp", + "n": 1340, + "p": 1 + } + ], + "210195": [ + { + "id": 210195, + "a": "attr", + "t": "nexp", + "n": 1345, + "p": 1 + } + ], + "210196": [ + { + "id": 210196, + "a": "attr", + "t": "nexp", + "n": 1350, + "p": 1 + } + ], + "210197": [ + { + "id": 210197, + "a": "attr", + "t": "nexp", + "n": 1355, + "p": 1 + } + ], + "210198": [ + { + "id": 210198, + "a": "attr", + "t": "nexp", + "n": 1360, + "p": 1 + } + ], + "210199": [ + { + "id": 210199, + "a": "attr", + "t": "nexp", + "n": 1365, + "p": 1 + } + ], + "210200": [ + { + "id": 210200, + "a": "attr", + "t": "nexp", + "n": 1370, + "p": 1 + } + ], + "210201": [ + { + "id": 210201, + "a": "attr", + "t": "nexp", + "n": 1375, + "p": 1 + } + ], + "210202": [ + { + "id": 210202, + "a": "attr", + "t": "nexp", + "n": 1380, + "p": 1 + } + ], + "210203": [ + { + "id": 210203, + "a": "attr", + "t": "nexp", + "n": 1385, + "p": 1 + } + ], + "210204": [ + { + "id": 210204, + "a": "attr", + "t": "nexp", + "n": 1390, + "p": 1 + } + ], + "210205": [ + { + "id": 210205, + "a": "attr", + "t": "nexp", + "n": 1395, + "p": 1 + } + ], + "210206": [ + { + "id": 210206, + "a": "attr", + "t": "nexp", + "n": 1400, + "p": 1 + } + ], + "210207": [ + { + "id": 210207, + "a": "attr", + "t": "nexp", + "n": 1405, + "p": 1 + } + ], + "210208": [ + { + "id": 210208, + "a": "attr", + "t": "nexp", + "n": 1410, + "p": 1 + } + ], + "210209": [ + { + "id": 210209, + "a": "attr", + "t": "nexp", + "n": 1415, + "p": 1 + } + ], + "210210": [ + { + "id": 210210, + "a": "attr", + "t": "nexp", + "n": 1420, + "p": 1 + } + ], + "210211": [ + { + "id": 210211, + "a": "attr", + "t": "nexp", + "n": 1425, + "p": 1 + } + ], + "210212": [ + { + "id": 210212, + "a": "attr", + "t": "nexp", + "n": 1430, + "p": 1 + } + ], + "210213": [ + { + "id": 210213, + "a": "attr", + "t": "nexp", + "n": 1435, + "p": 1 + } + ], + "210214": [ + { + "id": 210214, + "a": "attr", + "t": "nexp", + "n": 1440, + "p": 1 + } + ], + "210215": [ + { + "id": 210215, + "a": "attr", + "t": "nexp", + "n": 1445, + "p": 1 + } + ], + "210216": [ + { + "id": 210216, + "a": "attr", + "t": "nexp", + "n": 1450, + "p": 1 + } + ], + "210217": [ + { + "id": 210217, + "a": "attr", + "t": "nexp", + "n": 1455, + "p": 1 + } + ], + "210218": [ + { + "id": 210218, + "a": "attr", + "t": "nexp", + "n": 1460, + "p": 1 + } + ], + "210219": [ + { + "id": 210219, + "a": "attr", + "t": "nexp", + "n": 1465, + "p": 1 + } + ], + "210220": [ + { + "id": 210220, + "a": "attr", + "t": "nexp", + "n": 1470, + "p": 1 + } + ], + "210221": [ + { + "id": 210221, + "a": "attr", + "t": "nexp", + "n": 1475, + "p": 1 + } + ], + "210222": [ + { + "id": 210222, + "a": "attr", + "t": "nexp", + "n": 1480, + "p": 1 + } + ], + "210223": [ + { + "id": 210223, + "a": "attr", + "t": "nexp", + "n": 1485, + "p": 1 + } + ], + "210224": [ + { + "id": 210224, + "a": "attr", + "t": "nexp", + "n": 1490, + "p": 1 + } + ], + "210225": [ + { + "id": 210225, + "a": "attr", + "t": "nexp", + "n": 1495, + "p": 1 + } + ], + "210226": [ + { + "id": 210226, + "a": "attr", + "t": "nexp", + "n": 1500, + "p": 1 + } + ], + "210227": [ + { + "id": 210227, + "a": "attr", + "t": "nexp", + "n": 1505, + "p": 1 + } + ], + "210228": [ + { + "id": 210228, + "a": "attr", + "t": "nexp", + "n": 1510, + "p": 1 + } + ], + "210229": [ + { + "id": 210229, + "a": "attr", + "t": "nexp", + "n": 1515, + "p": 1 + } + ], + "210230": [ + { + "id": 210230, + "a": "attr", + "t": "nexp", + "n": 1520, + "p": 1 + } + ], + "210231": [ + { + "id": 210231, + "a": "attr", + "t": "nexp", + "n": 1525, + "p": 1 + } + ], + "210232": [ + { + "id": 210232, + "a": "attr", + "t": "nexp", + "n": 1530, + "p": 1 + } + ], + "210233": [ + { + "id": 210233, + "a": "attr", + "t": "nexp", + "n": 1535, + "p": 1 + } + ], + "210234": [ + { + "id": 210234, + "a": "attr", + "t": "nexp", + "n": 1540, + "p": 1 + } + ], + "210235": [ + { + "id": 210235, + "a": "attr", + "t": "nexp", + "n": 1545, + "p": 1 + } + ], + "210236": [ + { + "id": 210236, + "a": "attr", + "t": "nexp", + "n": 1550, + "p": 1 + } + ], + "210237": [ + { + "id": 210237, + "a": "attr", + "t": "nexp", + "n": 1555, + "p": 1 + } + ], + "210238": [ + { + "id": 210238, + "a": "attr", + "t": "nexp", + "n": 1560, + "p": 1 + } + ], + "210239": [ + { + "id": 210239, + "a": "attr", + "t": "nexp", + "n": 1565, + "p": 1 + } + ], + "210240": [ + { + "id": 210240, + "a": "attr", + "t": "nexp", + "n": 1570, + "p": 1 + } + ], + "210241": [ + { + "id": 210241, + "a": "attr", + "t": "nexp", + "n": 1575, + "p": 1 + } + ], + "210242": [ + { + "id": 210242, + "a": "attr", + "t": "nexp", + "n": 1580, + "p": 1 + } + ], + "210243": [ + { + "id": 210243, + "a": "attr", + "t": "nexp", + "n": 1585, + "p": 1 + } + ], + "210244": [ + { + "id": 210244, + "a": "attr", + "t": "nexp", + "n": 1590, + "p": 1 + } + ], + "210245": [ + { + "id": 210245, + "a": "attr", + "t": "nexp", + "n": 1595, + "p": 1 + } + ], + "210246": [ + { + "id": 210246, + "a": "attr", + "t": "nexp", + "n": 1600, + "p": 1 + } + ], + "210247": [ + { + "id": 210247, + "a": "attr", + "t": "nexp", + "n": 1605, + "p": 1 + } + ], + "210248": [ + { + "id": 210248, + "a": "attr", + "t": "nexp", + "n": 1610, + "p": 1 + } + ], + "210249": [ + { + "id": 210249, + "a": "attr", + "t": "nexp", + "n": 1615, + "p": 1 + } + ], + "210250": [ + { + "id": 210250, + "a": "attr", + "t": "nexp", + "n": 1620, + "p": 1 + } + ], + "210251": [ + { + "id": 210251, + "a": "attr", + "t": "nexp", + "n": 1625, + "p": 1 + } + ], + "210252": [ + { + "id": 210252, + "a": "attr", + "t": "nexp", + "n": 1630, + "p": 1 + } + ], + "210253": [ + { + "id": 210253, + "a": "attr", + "t": "nexp", + "n": 1635, + "p": 1 + } + ], + "210254": [ + { + "id": 210254, + "a": "attr", + "t": "nexp", + "n": 1640, + "p": 1 + } + ], + "210255": [ + { + "id": 210255, + "a": "attr", + "t": "nexp", + "n": 1645, + "p": 1 + } + ], + "210256": [ + { + "id": 210256, + "a": "attr", + "t": "nexp", + "n": 1650, + "p": 1 + } + ], + "210257": [ + { + "id": 210257, + "a": "attr", + "t": "nexp", + "n": 1655, + "p": 1 + } + ], + "210258": [ + { + "id": 210258, + "a": "attr", + "t": "nexp", + "n": 1660, + "p": 1 + } + ], + "210259": [ + { + "id": 210259, + "a": "attr", + "t": "nexp", + "n": 1665, + "p": 1 + } + ], + "210260": [ + { + "id": 210260, + "a": "attr", + "t": "nexp", + "n": 1670, + "p": 1 + } + ], + "210261": [ + { + "id": 210261, + "a": "attr", + "t": "nexp", + "n": 1675, + "p": 1 + } + ], + "210262": [ + { + "id": 210262, + "a": "attr", + "t": "nexp", + "n": 1680, + "p": 1 + } + ], + "210263": [ + { + "id": 210263, + "a": "attr", + "t": "nexp", + "n": 1685, + "p": 1 + } + ], + "210264": [ + { + "id": 210264, + "a": "attr", + "t": "nexp", + "n": 1690, + "p": 1 + } + ], + "210265": [ + { + "id": 210265, + "a": "attr", + "t": "nexp", + "n": 1695, + "p": 1 + } + ], + "210266": [ + { + "id": 210266, + "a": "attr", + "t": "nexp", + "n": 1700, + "p": 1 + } + ], + "210267": [ + { + "id": 210267, + "a": "attr", + "t": "nexp", + "n": 1705, + "p": 1 + } + ], + "210268": [ + { + "id": 210268, + "a": "attr", + "t": "nexp", + "n": 1710, + "p": 1 + } + ], + "210269": [ + { + "id": 210269, + "a": "attr", + "t": "nexp", + "n": 1715, + "p": 1 + } + ], + "210270": [ + { + "id": 210270, + "a": "attr", + "t": "nexp", + "n": 1720, + "p": 1 + } + ], + "210271": [ + { + "id": 210271, + "a": "attr", + "t": "nexp", + "n": 1725, + "p": 1 + } + ], + "210272": [ + { + "id": 210272, + "a": "attr", + "t": "nexp", + "n": 1730, + "p": 1 + } + ], + "210273": [ + { + "id": 210273, + "a": "attr", + "t": "nexp", + "n": 1735, + "p": 1 + } + ], + "210274": [ + { + "id": 210274, + "a": "attr", + "t": "nexp", + "n": 1740, + "p": 1 + } + ], + "210275": [ + { + "id": 210275, + "a": "attr", + "t": "nexp", + "n": 1745, + "p": 1 + } + ], + "210276": [ + { + "id": 210276, + "a": "attr", + "t": "nexp", + "n": 1750, + "p": 1 + } + ], + "210277": [ + { + "id": 210277, + "a": "attr", + "t": "nexp", + "n": 1755, + "p": 1 + } + ], + "210278": [ + { + "id": 210278, + "a": "attr", + "t": "nexp", + "n": 1760, + "p": 1 + } + ], + "210279": [ + { + "id": 210279, + "a": "attr", + "t": "nexp", + "n": 1765, + "p": 1 + } + ], + "210280": [ + { + "id": 210280, + "a": "attr", + "t": "nexp", + "n": 1770, + "p": 1 + } + ], + "210281": [ + { + "id": 210281, + "a": "attr", + "t": "nexp", + "n": 1775, + "p": 1 + } + ], + "210282": [ + { + "id": 210282, + "a": "attr", + "t": "nexp", + "n": 1780, + "p": 1 + } + ], + "210283": [ + { + "id": 210283, + "a": "attr", + "t": "nexp", + "n": 1785, + "p": 1 + } + ], + "210284": [ + { + "id": 210284, + "a": "attr", + "t": "nexp", + "n": 1790, + "p": 1 + } + ], + "210285": [ + { + "id": 210285, + "a": "attr", + "t": "nexp", + "n": 1795, + "p": 1 + } + ], + "210286": [ + { + "id": 210286, + "a": "attr", + "t": "nexp", + "n": 1800, + "p": 1 + } + ], + "210287": [ + { + "id": 210287, + "a": "attr", + "t": "nexp", + "n": 1805, + "p": 1 + } + ], + "210288": [ + { + "id": 210288, + "a": "attr", + "t": "nexp", + "n": 1810, + "p": 1 + } + ], + "210289": [ + { + "id": 210289, + "a": "attr", + "t": "nexp", + "n": 1815, + "p": 1 + } + ], + "210290": [ + { + "id": 210290, + "a": "attr", + "t": "nexp", + "n": 1820, + "p": 1 + } + ], + "210291": [ + { + "id": 210291, + "a": "attr", + "t": "nexp", + "n": 1825, + "p": 1 + } + ], + "210292": [ + { + "id": 210292, + "a": "attr", + "t": "nexp", + "n": 1830, + "p": 1 + } + ], + "210293": [ + { + "id": 210293, + "a": "attr", + "t": "nexp", + "n": 1835, + "p": 1 + } + ], + "210294": [ + { + "id": 210294, + "a": "attr", + "t": "nexp", + "n": 1840, + "p": 1 + } + ], + "210295": [ + { + "id": 210295, + "a": "attr", + "t": "nexp", + "n": 1845, + "p": 1 + } + ], + "210296": [ + { + "id": 210296, + "a": "attr", + "t": "nexp", + "n": 1850, + "p": 1 + } + ], + "210297": [ + { + "id": 210297, + "a": "attr", + "t": "nexp", + "n": 1855, + "p": 1 + } + ], + "210298": [ + { + "id": 210298, + "a": "attr", + "t": "nexp", + "n": 1860, + "p": 1 + } + ], + "210299": [ + { + "id": 210299, + "a": "attr", + "t": "nexp", + "n": 1865, + "p": 1 + } + ], + "210300": [ + { + "id": 210300, + "a": "attr", + "t": "nexp", + "n": 1870, + "p": 1 + } + ], + "210301": [ + { + "id": 210301, + "a": "attr", + "t": "nexp", + "n": 1875, + "p": 1 + } + ], + "210302": [ + { + "id": 210302, + "a": "attr", + "t": "nexp", + "n": 1880, + "p": 1 + } + ], + "210303": [ + { + "id": 210303, + "a": "attr", + "t": "nexp", + "n": 1885, + "p": 1 + } + ], + "210304": [ + { + "id": 210304, + "a": "attr", + "t": "nexp", + "n": 1890, + "p": 1 + } + ], + "210305": [ + { + "id": 210305, + "a": "attr", + "t": "nexp", + "n": 1895, + "p": 1 + } + ], + "210306": [ + { + "id": 210306, + "a": "attr", + "t": "nexp", + "n": 1900, + "p": 1 + } + ], + "210307": [ + { + "id": 210307, + "a": "attr", + "t": "nexp", + "n": 1905, + "p": 1 + } + ], + "210308": [ + { + "id": 210308, + "a": "attr", + "t": "nexp", + "n": 1910, + "p": 1 + } + ], + "210309": [ + { + "id": 210309, + "a": "attr", + "t": "nexp", + "n": 1915, + "p": 1 + } + ], + "210310": [ + { + "id": 210310, + "a": "attr", + "t": "nexp", + "n": 1920, + "p": 1 + } + ], + "210311": [ + { + "id": 210311, + "a": "attr", + "t": "nexp", + "n": 1925, + "p": 1 + } + ], + "210312": [ + { + "id": 210312, + "a": "attr", + "t": "nexp", + "n": 1930, + "p": 1 + } + ], + "210313": [ + { + "id": 210313, + "a": "attr", + "t": "nexp", + "n": 1935, + "p": 1 + } + ], + "210314": [ + { + "id": 210314, + "a": "attr", + "t": "nexp", + "n": 1940, + "p": 1 + } + ], + "210315": [ + { + "id": 210315, + "a": "attr", + "t": "nexp", + "n": 1945, + "p": 1 + } + ], + "210316": [ + { + "id": 210316, + "a": "attr", + "t": "nexp", + "n": 1950, + "p": 1 + } + ], + "210317": [ + { + "id": 210317, + "a": "attr", + "t": "nexp", + "n": 1955, + "p": 1 + } + ], + "210318": [ + { + "id": 210318, + "a": "attr", + "t": "nexp", + "n": 1960, + "p": 1 + } + ], + "210319": [ + { + "id": 210319, + "a": "attr", + "t": "nexp", + "n": 1965, + "p": 1 + } + ], + "210320": [ + { + "id": 210320, + "a": "attr", + "t": "nexp", + "n": 1970, + "p": 1 + } + ], + "210321": [ + { + "id": 210321, + "a": "attr", + "t": "nexp", + "n": 1975, + "p": 1 + } + ], + "210322": [ + { + "id": 210322, + "a": "attr", + "t": "nexp", + "n": 1980, + "p": 1 + } + ], + "210323": [ + { + "id": 210323, + "a": "attr", + "t": "nexp", + "n": 1985, + "p": 1 + } + ], + "210324": [ + { + "id": 210324, + "a": "attr", + "t": "nexp", + "n": 1990, + "p": 1 + } + ], + "210325": [ + { + "id": 210325, + "a": "attr", + "t": "nexp", + "n": 1995, + "p": 1 + } + ], + "210326": [ + { + "id": 210326, + "a": "attr", + "t": "nexp", + "n": 2000, + "p": 1 + } + ], + "210327": [ + { + "id": 210327, + "a": "attr", + "t": "nexp", + "n": 2005, + "p": 1 + } + ], + "210328": [ + { + "id": 210328, + "a": "attr", + "t": "nexp", + "n": 2010, + "p": 1 + } + ], + "210329": [ + { + "id": 210329, + "a": "attr", + "t": "nexp", + "n": 2015, + "p": 1 + } + ], + "210330": [ + { + "id": 210330, + "a": "attr", + "t": "nexp", + "n": 2020, + "p": 1 + } + ], + "210331": [ + { + "id": 210331, + "a": "attr", + "t": "nexp", + "n": 2025, + "p": 1 + } + ], + "210332": [ + { + "id": 210332, + "a": "attr", + "t": "nexp", + "n": 2030, + "p": 1 + } + ], + "210333": [ + { + "id": 210333, + "a": "attr", + "t": "nexp", + "n": 2035, + "p": 1 + } + ], + "210334": [ + { + "id": 210334, + "a": "attr", + "t": "nexp", + "n": 2040, + "p": 1 + } + ], + "210335": [ + { + "id": 210335, + "a": "attr", + "t": "nexp", + "n": 2045, + "p": 1 + } + ], + "210336": [ + { + "id": 210336, + "a": "attr", + "t": "nexp", + "n": 2050, + "p": 1 + } + ], + "210337": [ + { + "id": 210337, + "a": "attr", + "t": "nexp", + "n": 2055, + "p": 1 + } + ], + "210338": [ + { + "id": 210338, + "a": "attr", + "t": "nexp", + "n": 2060, + "p": 1 + } + ], + "210339": [ + { + "id": 210339, + "a": "attr", + "t": "nexp", + "n": 2065, + "p": 1 + } + ], + "210340": [ + { + "id": 210340, + "a": "attr", + "t": "nexp", + "n": 2070, + "p": 1 + } + ], + "210341": [ + { + "id": 210341, + "a": "attr", + "t": "nexp", + "n": 2075, + "p": 1 + } + ], + "210342": [ + { + "id": 210342, + "a": "attr", + "t": "nexp", + "n": 2080, + "p": 1 + } + ], + "210343": [ + { + "id": 210343, + "a": "attr", + "t": "nexp", + "n": 2085, + "p": 1 + } + ], + "210344": [ + { + "id": 210344, + "a": "attr", + "t": "nexp", + "n": 2090, + "p": 1 + } + ], + "210345": [ + { + "id": 210345, + "a": "attr", + "t": "nexp", + "n": 2095, + "p": 1 + } + ], + "210346": [ + { + "id": 210346, + "a": "attr", + "t": "nexp", + "n": 2100, + "p": 1 + } + ], + "210347": [ + { + "id": 210347, + "a": "attr", + "t": "nexp", + "n": 2105, + "p": 1 + } + ], + "210348": [ + { + "id": 210348, + "a": "attr", + "t": "nexp", + "n": 2110, + "p": 1 + } + ], + "210349": [ + { + "id": 210349, + "a": "attr", + "t": "nexp", + "n": 2115, + "p": 1 + } + ], + "210350": [ + { + "id": 210350, + "a": "attr", + "t": "nexp", + "n": 2120, + "p": 1 + } + ], + "210351": [ + { + "id": 210351, + "a": "attr", + "t": "nexp", + "n": 2125, + "p": 1 + } + ], + "210352": [ + { + "id": 210352, + "a": "attr", + "t": "nexp", + "n": 2130, + "p": 1 + } + ], + "210353": [ + { + "id": 210353, + "a": "attr", + "t": "nexp", + "n": 2135, + "p": 1 + } + ], + "210354": [ + { + "id": 210354, + "a": "attr", + "t": "nexp", + "n": 2140, + "p": 1 + } + ], + "210355": [ + { + "id": 210355, + "a": "attr", + "t": "nexp", + "n": 2145, + "p": 1 + } + ], + "210356": [ + { + "id": 210356, + "a": "attr", + "t": "nexp", + "n": 2150, + "p": 1 + } + ], + "210357": [ + { + "id": 210357, + "a": "attr", + "t": "nexp", + "n": 2155, + "p": 1 + } + ], + "210358": [ + { + "id": 210358, + "a": "attr", + "t": "nexp", + "n": 2160, + "p": 1 + } + ], + "210359": [ + { + "id": 210359, + "a": "attr", + "t": "nexp", + "n": 2165, + "p": 1 + } + ], + "210360": [ + { + "id": 210360, + "a": "attr", + "t": "nexp", + "n": 2170, + "p": 1 + } + ], + "210361": [ + { + "id": 210361, + "a": "attr", + "t": "nexp", + "n": 2175, + "p": 1 + } + ], + "210362": [ + { + "id": 210362, + "a": "attr", + "t": "nexp", + "n": 2180, + "p": 1 + } + ], + "210363": [ + { + "id": 210363, + "a": "attr", + "t": "nexp", + "n": 2185, + "p": 1 + } + ], + "210364": [ + { + "id": 210364, + "a": "attr", + "t": "nexp", + "n": 2190, + "p": 1 + } + ], + "210365": [ + { + "id": 210365, + "a": "attr", + "t": "nexp", + "n": 2195, + "p": 1 + } + ], + "210366": [ + { + "id": 210366, + "a": "attr", + "t": "nexp", + "n": 2200, + "p": 1 + } + ], + "210367": [ + { + "id": 210367, + "a": "attr", + "t": "nexp", + "n": 2205, + "p": 1 + } + ], + "210368": [ + { + "id": 210368, + "a": "attr", + "t": "nexp", + "n": 2210, + "p": 1 + } + ], + "210369": [ + { + "id": 210369, + "a": "attr", + "t": "nexp", + "n": 2215, + "p": 1 + } + ], + "210370": [ + { + "id": 210370, + "a": "attr", + "t": "nexp", + "n": 2220, + "p": 1 + } + ], + "210371": [ + { + "id": 210371, + "a": "attr", + "t": "nexp", + "n": 2225, + "p": 1 + } + ], + "210372": [ + { + "id": 210372, + "a": "attr", + "t": "nexp", + "n": 2230, + "p": 1 + } + ], + "210373": [ + { + "id": 210373, + "a": "attr", + "t": "nexp", + "n": 2235, + "p": 1 + } + ], + "210374": [ + { + "id": 210374, + "a": "attr", + "t": "nexp", + "n": 2240, + "p": 1 + } + ], + "210375": [ + { + "id": 210375, + "a": "attr", + "t": "nexp", + "n": 2245, + "p": 1 + } + ], + "210376": [ + { + "id": 210376, + "a": "attr", + "t": "nexp", + "n": 2250, + "p": 1 + } + ], + "210377": [ + { + "id": 210377, + "a": "attr", + "t": "nexp", + "n": 2255, + "p": 1 + } + ], + "210378": [ + { + "id": 210378, + "a": "attr", + "t": "nexp", + "n": 2260, + "p": 1 + } + ], + "210379": [ + { + "id": 210379, + "a": "attr", + "t": "nexp", + "n": 2265, + "p": 1 + } + ], + "210380": [ + { + "id": 210380, + "a": "attr", + "t": "nexp", + "n": 2270, + "p": 1 + } + ], + "210381": [ + { + "id": 210381, + "a": "attr", + "t": "nexp", + "n": 2275, + "p": 1 + } + ], + "210382": [ + { + "id": 210382, + "a": "attr", + "t": "nexp", + "n": 2280, + "p": 1 + } + ], + "210383": [ + { + "id": 210383, + "a": "attr", + "t": "nexp", + "n": 2285, + "p": 1 + } + ], + "210384": [ + { + "id": 210384, + "a": "attr", + "t": "nexp", + "n": 2290, + "p": 1 + } + ], + "210385": [ + { + "id": 210385, + "a": "attr", + "t": "nexp", + "n": 2295, + "p": 1 + } + ], + "210386": [ + { + "id": 210386, + "a": "attr", + "t": "nexp", + "n": 2300, + "p": 1 + } + ], + "210387": [ + { + "id": 210387, + "a": "attr", + "t": "nexp", + "n": 2305, + "p": 1 + } + ], + "210388": [ + { + "id": 210388, + "a": "attr", + "t": "nexp", + "n": 2310, + "p": 1 + } + ], + "210389": [ + { + "id": 210389, + "a": "attr", + "t": "nexp", + "n": 2315, + "p": 1 + } + ], + "210390": [ + { + "id": 210390, + "a": "attr", + "t": "nexp", + "n": 2320, + "p": 1 + } + ], + "210391": [ + { + "id": 210391, + "a": "attr", + "t": "nexp", + "n": 2325, + "p": 1 + } + ], + "210392": [ + { + "id": 210392, + "a": "attr", + "t": "nexp", + "n": 2330, + "p": 1 + } + ], + "210393": [ + { + "id": 210393, + "a": "attr", + "t": "nexp", + "n": 2335, + "p": 1 + } + ], + "210394": [ + { + "id": 210394, + "a": "attr", + "t": "nexp", + "n": 2340, + "p": 1 + } + ], + "210395": [ + { + "id": 210395, + "a": "attr", + "t": "nexp", + "n": 2345, + "p": 1 + } + ], + "210396": [ + { + "id": 210396, + "a": "attr", + "t": "nexp", + "n": 2350, + "p": 1 + } + ], + "210397": [ + { + "id": 210397, + "a": "attr", + "t": "nexp", + "n": 2355, + "p": 1 + } + ], + "210398": [ + { + "id": 210398, + "a": "attr", + "t": "nexp", + "n": 2360, + "p": 1 + } + ], + "210399": [ + { + "id": 210399, + "a": "attr", + "t": "nexp", + "n": 2365, + "p": 1 + } + ], + "210400": [ + { + "id": 210400, + "a": "attr", + "t": "nexp", + "n": 2370, + "p": 1 + } + ], + "210401": [ + { + "id": 210401, + "a": "attr", + "t": "nexp", + "n": 2375, + "p": 1 + } + ], + "210402": [ + { + "id": 210402, + "a": "attr", + "t": "nexp", + "n": 2380, + "p": 1 + } + ], + "210403": [ + { + "id": 210403, + "a": "attr", + "t": "nexp", + "n": 2385, + "p": 1 + } + ], + "210404": [ + { + "id": 210404, + "a": "attr", + "t": "nexp", + "n": 2390, + "p": 1 + } + ], + "210405": [ + { + "id": 210405, + "a": "attr", + "t": "nexp", + "n": 2395, + "p": 1 + } + ], + "210406": [ + { + "id": 210406, + "a": "attr", + "t": "nexp", + "n": 2400, + "p": 1 + } + ], + "210407": [ + { + "id": 210407, + "a": "attr", + "t": "nexp", + "n": 2405, + "p": 1 + } + ], + "210408": [ + { + "id": 210408, + "a": "attr", + "t": "nexp", + "n": 2410, + "p": 1 + } + ], + "210409": [ + { + "id": 210409, + "a": "attr", + "t": "nexp", + "n": 2415, + "p": 1 + } + ], + "210410": [ + { + "id": 210410, + "a": "attr", + "t": "nexp", + "n": 2420, + "p": 1 + } + ], + "210411": [ + { + "id": 210411, + "a": "attr", + "t": "nexp", + "n": 2425, + "p": 1 + } + ], + "210412": [ + { + "id": 210412, + "a": "attr", + "t": "nexp", + "n": 2430, + "p": 1 + } + ], + "210413": [ + { + "id": 210413, + "a": "attr", + "t": "nexp", + "n": 2435, + "p": 1 + } + ], + "210414": [ + { + "id": 210414, + "a": "attr", + "t": "nexp", + "n": 2440, + "p": 1 + } + ], + "210415": [ + { + "id": 210415, + "a": "attr", + "t": "nexp", + "n": 2445, + "p": 1 + } + ], + "210416": [ + { + "id": 210416, + "a": "attr", + "t": "nexp", + "n": 2450, + "p": 1 + } + ], + "210417": [ + { + "id": 210417, + "a": "attr", + "t": "nexp", + "n": 2455, + "p": 1 + } + ], + "210418": [ + { + "id": 210418, + "a": "attr", + "t": "nexp", + "n": 2460, + "p": 1 + } + ], + "210419": [ + { + "id": 210419, + "a": "attr", + "t": "nexp", + "n": 2465, + "p": 1 + } + ], + "210420": [ + { + "id": 210420, + "a": "attr", + "t": "nexp", + "n": 2470, + "p": 1 + } + ], + "210421": [ + { + "id": 210421, + "a": "attr", + "t": "nexp", + "n": 2475, + "p": 1 + } + ], + "210422": [ + { + "id": 210422, + "a": "attr", + "t": "nexp", + "n": 2480, + "p": 1 + } + ], + "210423": [ + { + "id": 210423, + "a": "attr", + "t": "nexp", + "n": 2485, + "p": 1 + } + ], + "210424": [ + { + "id": 210424, + "a": "attr", + "t": "nexp", + "n": 2490, + "p": 1 + } + ], + "210425": [ + { + "id": 210425, + "a": "attr", + "t": "nexp", + "n": 2495, + "p": 1 + } + ], + "210426": [ + { + "id": 210426, + "a": "attr", + "t": "nexp", + "n": 2500, + "p": 1 + } + ], + "210427": [ + { + "id": 210427, + "a": "attr", + "t": "nexp", + "n": 2505, + "p": 1 + } + ], + "210428": [ + { + "id": 210428, + "a": "attr", + "t": "nexp", + "n": 2510, + "p": 1 + } + ], + "210429": [ + { + "id": 210429, + "a": "attr", + "t": "nexp", + "n": 2515, + "p": 1 + } + ], + "210430": [ + { + "id": 210430, + "a": "attr", + "t": "nexp", + "n": 2520, + "p": 1 + } + ], + "210431": [ + { + "id": 210431, + "a": "attr", + "t": "nexp", + "n": 2525, + "p": 1 + } + ], + "210432": [ + { + "id": 210432, + "a": "attr", + "t": "nexp", + "n": 2530, + "p": 1 + } + ], + "210433": [ + { + "id": 210433, + "a": "attr", + "t": "nexp", + "n": 2535, + "p": 1 + } + ], + "210434": [ + { + "id": 210434, + "a": "attr", + "t": "nexp", + "n": 2540, + "p": 1 + } + ], + "210435": [ + { + "id": 210435, + "a": "attr", + "t": "nexp", + "n": 2545, + "p": 1 + } + ], + "210436": [ + { + "id": 210436, + "a": "attr", + "t": "nexp", + "n": 2550, + "p": 1 + } + ], + "210437": [ + { + "id": 210437, + "a": "attr", + "t": "nexp", + "n": 2555, + "p": 1 + } + ], + "210438": [ + { + "id": 210438, + "a": "attr", + "t": "nexp", + "n": 2560, + "p": 1 + } + ], + "210439": [ + { + "id": 210439, + "a": "attr", + "t": "nexp", + "n": 2565, + "p": 1 + } + ], + "210440": [ + { + "id": 210440, + "a": "attr", + "t": "nexp", + "n": 2570, + "p": 1 + } + ], + "210441": [ + { + "id": 210441, + "a": "attr", + "t": "nexp", + "n": 2575, + "p": 1 + } + ], + "210442": [ + { + "id": 210442, + "a": "attr", + "t": "nexp", + "n": 2580, + "p": 1 + } + ], + "210443": [ + { + "id": 210443, + "a": "attr", + "t": "nexp", + "n": 2585, + "p": 1 + } + ], + "210444": [ + { + "id": 210444, + "a": "attr", + "t": "nexp", + "n": 2590, + "p": 1 + } + ], + "210445": [ + { + "id": 210445, + "a": "attr", + "t": "nexp", + "n": 2595, + "p": 1 + } + ], + "210446": [ + { + "id": 210446, + "a": "attr", + "t": "nexp", + "n": 2600, + "p": 1 + } + ], + "210447": [ + { + "id": 210447, + "a": "attr", + "t": "nexp", + "n": 2605, + "p": 1 + } + ], + "210448": [ + { + "id": 210448, + "a": "attr", + "t": "nexp", + "n": 2610, + "p": 1 + } + ], + "210449": [ + { + "id": 210449, + "a": "attr", + "t": "nexp", + "n": 2615, + "p": 1 + } + ], + "210450": [ + { + "id": 210450, + "a": "attr", + "t": "nexp", + "n": 2620, + "p": 1 + } + ], + "210451": [ + { + "id": 210451, + "a": "attr", + "t": "nexp", + "n": 2625, + "p": 1 + } + ], + "210452": [ + { + "id": 210452, + "a": "attr", + "t": "nexp", + "n": 2630, + "p": 1 + } + ], + "210453": [ + { + "id": 210453, + "a": "attr", + "t": "nexp", + "n": 2635, + "p": 1 + } + ], + "210454": [ + { + "id": 210454, + "a": "attr", + "t": "nexp", + "n": 2640, + "p": 1 + } + ], + "210455": [ + { + "id": 210455, + "a": "attr", + "t": "nexp", + "n": 2645, + "p": 1 + } + ], + "210456": [ + { + "id": 210456, + "a": "attr", + "t": "nexp", + "n": 2650, + "p": 1 + } + ], + "210457": [ + { + "id": 210457, + "a": "attr", + "t": "nexp", + "n": 2655, + "p": 1 + } + ], + "210458": [ + { + "id": 210458, + "a": "attr", + "t": "nexp", + "n": 2660, + "p": 1 + } + ], + "210459": [ + { + "id": 210459, + "a": "attr", + "t": "nexp", + "n": 2665, + "p": 1 + } + ], + "210460": [ + { + "id": 210460, + "a": "attr", + "t": "nexp", + "n": 2670, + "p": 1 + } + ], + "210461": [ + { + "id": 210461, + "a": "attr", + "t": "nexp", + "n": 2675, + "p": 1 + } + ], + "210462": [ + { + "id": 210462, + "a": "attr", + "t": "nexp", + "n": 2680, + "p": 1 + } + ], + "210463": [ + { + "id": 210463, + "a": "attr", + "t": "nexp", + "n": 2685, + "p": 1 + } + ], + "210464": [ + { + "id": 210464, + "a": "attr", + "t": "nexp", + "n": 2690, + "p": 1 + } + ], + "210465": [ + { + "id": 210465, + "a": "attr", + "t": "nexp", + "n": 2695, + "p": 1 + } + ], + "210466": [ + { + "id": 210466, + "a": "attr", + "t": "nexp", + "n": 2700, + "p": 1 + } + ], + "210467": [ + { + "id": 210467, + "a": "attr", + "t": "nexp", + "n": 2705, + "p": 1 + } + ], + "210468": [ + { + "id": 210468, + "a": "attr", + "t": "nexp", + "n": 2710, + "p": 1 + } + ], + "210469": [ + { + "id": 210469, + "a": "attr", + "t": "nexp", + "n": 2715, + "p": 1 + } + ], + "210470": [ + { + "id": 210470, + "a": "attr", + "t": "nexp", + "n": 2720, + "p": 1 + } + ], + "210471": [ + { + "id": 210471, + "a": "attr", + "t": "nexp", + "n": 2725, + "p": 1 + } + ], + "210472": [ + { + "id": 210472, + "a": "attr", + "t": "nexp", + "n": 2730, + "p": 1 + } + ], + "210473": [ + { + "id": 210473, + "a": "attr", + "t": "nexp", + "n": 2735, + "p": 1 + } + ], + "210474": [ + { + "id": 210474, + "a": "attr", + "t": "nexp", + "n": 2740, + "p": 1 + } + ], + "210475": [ + { + "id": 210475, + "a": "attr", + "t": "nexp", + "n": 2745, + "p": 1 + } + ], + "210476": [ + { + "id": 210476, + "a": "attr", + "t": "nexp", + "n": 2750, + "p": 1 + } + ], + "210477": [ + { + "id": 210477, + "a": "attr", + "t": "nexp", + "n": 2755, + "p": 1 + } + ], + "210478": [ + { + "id": 210478, + "a": "attr", + "t": "nexp", + "n": 2760, + "p": 1 + } + ], + "210479": [ + { + "id": 210479, + "a": "attr", + "t": "nexp", + "n": 2765, + "p": 1 + } + ], + "210480": [ + { + "id": 210480, + "a": "attr", + "t": "nexp", + "n": 2770, + "p": 1 + } + ], + "210481": [ + { + "id": 210481, + "a": "attr", + "t": "nexp", + "n": 2775, + "p": 1 + } + ], + "210482": [ + { + "id": 210482, + "a": "attr", + "t": "nexp", + "n": 2780, + "p": 1 + } + ], + "210483": [ + { + "id": 210483, + "a": "attr", + "t": "nexp", + "n": 2785, + "p": 1 + } + ], + "210484": [ + { + "id": 210484, + "a": "attr", + "t": "nexp", + "n": 2790, + "p": 1 + } + ], + "210485": [ + { + "id": 210485, + "a": "attr", + "t": "nexp", + "n": 2795, + "p": 1 + } + ], + "210486": [ + { + "id": 210486, + "a": "attr", + "t": "nexp", + "n": 2800, + "p": 1 + } + ], + "210487": [ + { + "id": 210487, + "a": "attr", + "t": "nexp", + "n": 2805, + "p": 1 + } + ], + "210488": [ + { + "id": 210488, + "a": "attr", + "t": "nexp", + "n": 2810, + "p": 1 + } + ], + "210489": [ + { + "id": 210489, + "a": "attr", + "t": "nexp", + "n": 2815, + "p": 1 + } + ], + "210490": [ + { + "id": 210490, + "a": "attr", + "t": "nexp", + "n": 2820, + "p": 1 + } + ], + "210491": [ + { + "id": 210491, + "a": "attr", + "t": "nexp", + "n": 2825, + "p": 1 + } + ], + "210492": [ + { + "id": 210492, + "a": "attr", + "t": "nexp", + "n": 2830, + "p": 1 + } + ], + "210493": [ + { + "id": 210493, + "a": "attr", + "t": "nexp", + "n": 2835, + "p": 1 + } + ], + "210494": [ + { + "id": 210494, + "a": "attr", + "t": "nexp", + "n": 2840, + "p": 1 + } + ], + "210495": [ + { + "id": 210495, + "a": "attr", + "t": "nexp", + "n": 2845, + "p": 1 + } + ], + "210496": [ + { + "id": 210496, + "a": "attr", + "t": "nexp", + "n": 2850, + "p": 1 + } + ], + "210497": [ + { + "id": 210497, + "a": "attr", + "t": "nexp", + "n": 2855, + "p": 1 + } + ], + "210498": [ + { + "id": 210498, + "a": "attr", + "t": "nexp", + "n": 2860, + "p": 1 + } + ], + "210499": [ + { + "id": 210499, + "a": "attr", + "t": "nexp", + "n": 2865, + "p": 1 + } + ], + "210500": [ + { + "id": 210500, + "a": "attr", + "t": "nexp", + "n": 2870, + "p": 1 + } + ], + "210501": [ + { + "id": 210501, + "a": "attr", + "t": "nexp", + "n": 2875, + "p": 1 + } + ], + "210502": [ + { + "id": 210502, + "a": "attr", + "t": "nexp", + "n": 2880, + "p": 1 + } + ], + "210503": [ + { + "id": 210503, + "a": "attr", + "t": "nexp", + "n": 2885, + "p": 1 + } + ], + "210504": [ + { + "id": 210504, + "a": "attr", + "t": "nexp", + "n": 2890, + "p": 1 + } + ], + "210505": [ + { + "id": 210505, + "a": "attr", + "t": "nexp", + "n": 2895, + "p": 1 + } + ], + "210506": [ + { + "id": 210506, + "a": "attr", + "t": "nexp", + "n": 2900, + "p": 1 + } + ], + "210507": [ + { + "id": 210507, + "a": "attr", + "t": "nexp", + "n": 2905, + "p": 1 + } + ], + "210508": [ + { + "id": 210508, + "a": "attr", + "t": "nexp", + "n": 2910, + "p": 1 + } + ], + "210509": [ + { + "id": 210509, + "a": "attr", + "t": "nexp", + "n": 2915, + "p": 1 + } + ], + "210510": [ + { + "id": 210510, + "a": "attr", + "t": "nexp", + "n": 2920, + "p": 1 + } + ], + "210511": [ + { + "id": 210511, + "a": "attr", + "t": "nexp", + "n": 2925, + "p": 1 + } + ], + "210512": [ + { + "id": 210512, + "a": "attr", + "t": "nexp", + "n": 2930, + "p": 1 + } + ], + "210513": [ + { + "id": 210513, + "a": "attr", + "t": "nexp", + "n": 2935, + "p": 1 + } + ], + "210514": [ + { + "id": 210514, + "a": "attr", + "t": "nexp", + "n": 2940, + "p": 1 + } + ], + "210515": [ + { + "id": 210515, + "a": "attr", + "t": "nexp", + "n": 2945, + "p": 1 + } + ], + "210516": [ + { + "id": 210516, + "a": "attr", + "t": "nexp", + "n": 2950, + "p": 1 + } + ], + "210517": [ + { + "id": 210517, + "a": "attr", + "t": "nexp", + "n": 2955, + "p": 1 + } + ], + "210518": [ + { + "id": 210518, + "a": "attr", + "t": "nexp", + "n": 2960, + "p": 1 + } + ], + "210519": [ + { + "id": 210519, + "a": "attr", + "t": "nexp", + "n": 2965, + "p": 1 + } + ], + "210520": [ + { + "id": 210520, + "a": "attr", + "t": "nexp", + "n": 2970, + "p": 1 + } + ], + "210521": [ + { + "id": 210521, + "a": "attr", + "t": "nexp", + "n": 2975, + "p": 1 + } + ], + "210522": [ + { + "id": 210522, + "a": "attr", + "t": "nexp", + "n": 2980, + "p": 1 + } + ], + "210523": [ + { + "id": 210523, + "a": "attr", + "t": "nexp", + "n": 2985, + "p": 1 + } + ], + "210524": [ + { + "id": 210524, + "a": "attr", + "t": "nexp", + "n": 2990, + "p": 1 + } + ], + "210525": [ + { + "id": 210525, + "a": "attr", + "t": "nexp", + "n": 2995, + "p": 1 + } + ], + "210526": [ + { + "id": 210526, + "a": "attr", + "t": "nexp", + "n": 3000, + "p": 1 + } + ], + "210527": [ + { + "id": 210527, + "a": "attr", + "t": "nexp", + "n": 3005, + "p": 1 + } + ], + "210528": [ + { + "id": 210528, + "a": "attr", + "t": "nexp", + "n": 3010, + "p": 1 + } + ], + "210529": [ + { + "id": 210529, + "a": "attr", + "t": "nexp", + "n": 3015, + "p": 1 + } + ], + "210530": [ + { + "id": 210530, + "a": "attr", + "t": "nexp", + "n": 3020, + "p": 1 + } + ], + "210531": [ + { + "id": 210531, + "a": "attr", + "t": "nexp", + "n": 3025, + "p": 1 + } + ], + "210532": [ + { + "id": 210532, + "a": "attr", + "t": "nexp", + "n": 3030, + "p": 1 + } + ], + "210533": [ + { + "id": 210533, + "a": "attr", + "t": "nexp", + "n": 3035, + "p": 1 + } + ], + "210534": [ + { + "id": 210534, + "a": "attr", + "t": "nexp", + "n": 3040, + "p": 1 + } + ], + "210535": [ + { + "id": 210535, + "a": "attr", + "t": "nexp", + "n": 3045, + "p": 1 + } + ], + "210536": [ + { + "id": 210536, + "a": "attr", + "t": "nexp", + "n": 3050, + "p": 1 + } + ], + "210537": [ + { + "id": 210537, + "a": "attr", + "t": "nexp", + "n": 3055, + "p": 1 + } + ], + "210538": [ + { + "id": 210538, + "a": "attr", + "t": "nexp", + "n": 3060, + "p": 1 + } + ], + "210539": [ + { + "id": 210539, + "a": "attr", + "t": "nexp", + "n": 3065, + "p": 1 + } + ], + "210540": [ + { + "id": 210540, + "a": "attr", + "t": "nexp", + "n": 3070, + "p": 1 + } + ], + "210541": [ + { + "id": 210541, + "a": "attr", + "t": "nexp", + "n": 3075, + "p": 1 + } + ], + "210542": [ + { + "id": 210542, + "a": "attr", + "t": "nexp", + "n": 3080, + "p": 1 + } + ], + "210543": [ + { + "id": 210543, + "a": "attr", + "t": "nexp", + "n": 3085, + "p": 1 + } + ], + "210544": [ + { + "id": 210544, + "a": "attr", + "t": "nexp", + "n": 3090, + "p": 1 + } + ], + "210545": [ + { + "id": 210545, + "a": "attr", + "t": "nexp", + "n": 3095, + "p": 1 + } + ], + "210546": [ + { + "id": 210546, + "a": "attr", + "t": "nexp", + "n": 3100, + "p": 1 + } + ], + "210547": [ + { + "id": 210547, + "a": "attr", + "t": "nexp", + "n": 3105, + "p": 1 + } + ], + "210548": [ + { + "id": 210548, + "a": "attr", + "t": "nexp", + "n": 3110, + "p": 1 + } + ], + "210549": [ + { + "id": 210549, + "a": "attr", + "t": "nexp", + "n": 3115, + "p": 1 + } + ], + "210550": [ + { + "id": 210550, + "a": "attr", + "t": "nexp", + "n": 3120, + "p": 1 + } + ], + "210551": [ + { + "id": 210551, + "a": "attr", + "t": "nexp", + "n": 3125, + "p": 1 + } + ], + "210552": [ + { + "id": 210552, + "a": "attr", + "t": "nexp", + "n": 3130, + "p": 1 + } + ], + "210553": [ + { + "id": 210553, + "a": "attr", + "t": "nexp", + "n": 3135, + "p": 1 + } + ], + "210554": [ + { + "id": 210554, + "a": "attr", + "t": "nexp", + "n": 3140, + "p": 1 + } + ], + "210555": [ + { + "id": 210555, + "a": "attr", + "t": "nexp", + "n": 3145, + "p": 1 + } + ], + "210556": [ + { + "id": 210556, + "a": "attr", + "t": "nexp", + "n": 3150, + "p": 1 + } + ], + "210557": [ + { + "id": 210557, + "a": "attr", + "t": "nexp", + "n": 3155, + "p": 1 + } + ], + "210558": [ + { + "id": 210558, + "a": "attr", + "t": "nexp", + "n": 3160, + "p": 1 + } + ], + "210559": [ + { + "id": 210559, + "a": "attr", + "t": "nexp", + "n": 3165, + "p": 1 + } + ], + "210560": [ + { + "id": 210560, + "a": "attr", + "t": "nexp", + "n": 3170, + "p": 1 + } + ], + "210561": [ + { + "id": 210561, + "a": "attr", + "t": "nexp", + "n": 3175, + "p": 1 + } + ], + "210562": [ + { + "id": 210562, + "a": "attr", + "t": "nexp", + "n": 3180, + "p": 1 + } + ], + "210563": [ + { + "id": 210563, + "a": "attr", + "t": "nexp", + "n": 3185, + "p": 1 + } + ], + "210564": [ + { + "id": 210564, + "a": "attr", + "t": "nexp", + "n": 3190, + "p": 1 + } + ], + "210565": [ + { + "id": 210565, + "a": "attr", + "t": "nexp", + "n": 3195, + "p": 1 + } + ], + "210566": [ + { + "id": 210566, + "a": "attr", + "t": "nexp", + "n": 3200, + "p": 1 + } + ], + "210567": [ + { + "id": 210567, + "a": "attr", + "t": "nexp", + "n": 3205, + "p": 1 + } + ], + "210568": [ + { + "id": 210568, + "a": "attr", + "t": "nexp", + "n": 3210, + "p": 1 + } + ], + "210569": [ + { + "id": 210569, + "a": "attr", + "t": "nexp", + "n": 3215, + "p": 1 + } + ], + "210570": [ + { + "id": 210570, + "a": "attr", + "t": "nexp", + "n": 3220, + "p": 1 + } + ], + "210571": [ + { + "id": 210571, + "a": "attr", + "t": "nexp", + "n": 3225, + "p": 1 + } + ], + "210572": [ + { + "id": 210572, + "a": "attr", + "t": "nexp", + "n": 3230, + "p": 1 + } + ], + "210573": [ + { + "id": 210573, + "a": "attr", + "t": "nexp", + "n": 3235, + "p": 1 + } + ], + "210574": [ + { + "id": 210574, + "a": "attr", + "t": "nexp", + "n": 3240, + "p": 1 + } + ], + "210575": [ + { + "id": 210575, + "a": "attr", + "t": "nexp", + "n": 3245, + "p": 1 + } + ], + "210576": [ + { + "id": 210576, + "a": "attr", + "t": "nexp", + "n": 3250, + "p": 1 + } + ], + "210577": [ + { + "id": 210577, + "a": "attr", + "t": "nexp", + "n": 3255, + "p": 1 + } + ], + "210578": [ + { + "id": 210578, + "a": "attr", + "t": "nexp", + "n": 3260, + "p": 1 + } + ], + "210579": [ + { + "id": 210579, + "a": "attr", + "t": "nexp", + "n": 3265, + "p": 1 + } + ], + "210580": [ + { + "id": 210580, + "a": "attr", + "t": "nexp", + "n": 3270, + "p": 1 + } + ], + "210581": [ + { + "id": 210581, + "a": "attr", + "t": "nexp", + "n": 3275, + "p": 1 + } + ], + "210582": [ + { + "id": 210582, + "a": "attr", + "t": "nexp", + "n": 3280, + "p": 1 + } + ], + "210583": [ + { + "id": 210583, + "a": "attr", + "t": "nexp", + "n": 3285, + "p": 1 + } + ], + "210584": [ + { + "id": 210584, + "a": "attr", + "t": "nexp", + "n": 3290, + "p": 1 + } + ], + "210585": [ + { + "id": 210585, + "a": "attr", + "t": "nexp", + "n": 3295, + "p": 1 + } + ], + "210586": [ + { + "id": 210586, + "a": "attr", + "t": "nexp", + "n": 3300, + "p": 1 + } + ], + "210587": [ + { + "id": 210587, + "a": "attr", + "t": "nexp", + "n": 3305, + "p": 1 + } + ], + "210588": [ + { + "id": 210588, + "a": "attr", + "t": "nexp", + "n": 3310, + "p": 1 + } + ], + "210589": [ + { + "id": 210589, + "a": "attr", + "t": "nexp", + "n": 3315, + "p": 1 + } + ], + "210590": [ + { + "id": 210590, + "a": "attr", + "t": "nexp", + "n": 3320, + "p": 1 + } + ], + "210591": [ + { + "id": 210591, + "a": "attr", + "t": "nexp", + "n": 3325, + "p": 1 + } + ], + "210592": [ + { + "id": 210592, + "a": "attr", + "t": "nexp", + "n": 3330, + "p": 1 + } + ], + "210593": [ + { + "id": 210593, + "a": "attr", + "t": "nexp", + "n": 3335, + "p": 1 + } + ], + "210594": [ + { + "id": 210594, + "a": "attr", + "t": "nexp", + "n": 3340, + "p": 1 + } + ], + "210595": [ + { + "id": 210595, + "a": "attr", + "t": "nexp", + "n": 3345, + "p": 1 + } + ], + "210596": [ + { + "id": 210596, + "a": "attr", + "t": "nexp", + "n": 3350, + "p": 1 + } + ], + "210597": [ + { + "id": 210597, + "a": "attr", + "t": "nexp", + "n": 3355, + "p": 1 + } + ], + "210598": [ + { + "id": 210598, + "a": "attr", + "t": "nexp", + "n": 3360, + "p": 1 + } + ], + "210599": [ + { + "id": 210599, + "a": "attr", + "t": "nexp", + "n": 3365, + "p": 1 + } + ], + "210600": [ + { + "id": 210600, + "a": "attr", + "t": "nexp", + "n": 3370, + "p": 1 + } + ], + "210601": [ + { + "id": 210601, + "a": "attr", + "t": "nexp", + "n": 3375, + "p": 1 + } + ], + "210602": [ + { + "id": 210602, + "a": "attr", + "t": "nexp", + "n": 3380, + "p": 1 + } + ], + "210603": [ + { + "id": 210603, + "a": "attr", + "t": "nexp", + "n": 3385, + "p": 1 + } + ], + "210604": [ + { + "id": 210604, + "a": "attr", + "t": "nexp", + "n": 3390, + "p": 1 + } + ], + "210605": [ + { + "id": 210605, + "a": "attr", + "t": "nexp", + "n": 3395, + "p": 1 + } + ], + "210606": [ + { + "id": 210606, + "a": "attr", + "t": "nexp", + "n": 3400, + "p": 1 + } + ], + "210607": [ + { + "id": 210607, + "a": "attr", + "t": "nexp", + "n": 3405, + "p": 1 + } + ], + "210608": [ + { + "id": 210608, + "a": "attr", + "t": "nexp", + "n": 3410, + "p": 1 + } + ], + "210609": [ + { + "id": 210609, + "a": "attr", + "t": "nexp", + "n": 3415, + "p": 1 + } + ], + "210610": [ + { + "id": 210610, + "a": "attr", + "t": "nexp", + "n": 3420, + "p": 1 + } + ], + "210611": [ + { + "id": 210611, + "a": "attr", + "t": "nexp", + "n": 3425, + "p": 1 + } + ], + "210612": [ + { + "id": 210612, + "a": "attr", + "t": "nexp", + "n": 3430, + "p": 1 + } + ], + "210613": [ + { + "id": 210613, + "a": "attr", + "t": "nexp", + "n": 3435, + "p": 1 + } + ], + "210614": [ + { + "id": 210614, + "a": "attr", + "t": "nexp", + "n": 3440, + "p": 1 + } + ], + "210615": [ + { + "id": 210615, + "a": "attr", + "t": "nexp", + "n": 3445, + "p": 1 + } + ], + "210616": [ + { + "id": 210616, + "a": "attr", + "t": "nexp", + "n": 3450, + "p": 1 + } + ], + "210617": [ + { + "id": 210617, + "a": "attr", + "t": "nexp", + "n": 3455, + "p": 1 + } + ], + "210618": [ + { + "id": 210618, + "a": "attr", + "t": "nexp", + "n": 3460, + "p": 1 + } + ], + "210619": [ + { + "id": 210619, + "a": "attr", + "t": "nexp", + "n": 3465, + "p": 1 + } + ], + "210620": [ + { + "id": 210620, + "a": "attr", + "t": "nexp", + "n": 3470, + "p": 1 + } + ], + "210621": [ + { + "id": 210621, + "a": "attr", + "t": "nexp", + "n": 3475, + "p": 1 + } + ], + "210622": [ + { + "id": 210622, + "a": "attr", + "t": "nexp", + "n": 3480, + "p": 1 + } + ], + "210623": [ + { + "id": 210623, + "a": "attr", + "t": "nexp", + "n": 3485, + "p": 1 + } + ], + "210624": [ + { + "id": 210624, + "a": "attr", + "t": "nexp", + "n": 3490, + "p": 1 + } + ], + "210625": [ + { + "id": 210625, + "a": "attr", + "t": "nexp", + "n": 3495, + "p": 1 + } + ], + "210626": [ + { + "id": 210626, + "a": "attr", + "t": "nexp", + "n": 3500, + "p": 1 + } + ], + "210627": [ + { + "id": 210627, + "a": "attr", + "t": "nexp", + "n": 3505, + "p": 1 + } + ], + "210628": [ + { + "id": 210628, + "a": "attr", + "t": "nexp", + "n": 3510, + "p": 1 + } + ], + "210629": [ + { + "id": 210629, + "a": "attr", + "t": "nexp", + "n": 3515, + "p": 1 + } + ], + "210630": [ + { + "id": 210630, + "a": "attr", + "t": "nexp", + "n": 3520, + "p": 1 + } + ], + "210631": [ + { + "id": 210631, + "a": "attr", + "t": "nexp", + "n": 3525, + "p": 1 + } + ], + "210632": [ + { + "id": 210632, + "a": "attr", + "t": "nexp", + "n": 3530, + "p": 1 + } + ], + "210633": [ + { + "id": 210633, + "a": "attr", + "t": "nexp", + "n": 3535, + "p": 1 + } + ], + "210634": [ + { + "id": 210634, + "a": "attr", + "t": "nexp", + "n": 3540, + "p": 1 + } + ], + "210635": [ + { + "id": 210635, + "a": "attr", + "t": "nexp", + "n": 3545, + "p": 1 + } + ], + "210636": [ + { + "id": 210636, + "a": "attr", + "t": "nexp", + "n": 3550, + "p": 1 + } + ], + "210637": [ + { + "id": 210637, + "a": "attr", + "t": "nexp", + "n": 3555, + "p": 1 + } + ], + "210638": [ + { + "id": 210638, + "a": "attr", + "t": "nexp", + "n": 3560, + "p": 1 + } + ], + "210639": [ + { + "id": 210639, + "a": "attr", + "t": "nexp", + "n": 3565, + "p": 1 + } + ], + "210640": [ + { + "id": 210640, + "a": "attr", + "t": "nexp", + "n": 3570, + "p": 1 + } + ], + "210641": [ + { + "id": 210641, + "a": "attr", + "t": "nexp", + "n": 3575, + "p": 1 + } + ], + "210642": [ + { + "id": 210642, + "a": "attr", + "t": "nexp", + "n": 3580, + "p": 1 + } + ], + "210643": [ + { + "id": 210643, + "a": "attr", + "t": "nexp", + "n": 3585, + "p": 1 + } + ], + "210644": [ + { + "id": 210644, + "a": "attr", + "t": "nexp", + "n": 3590, + "p": 1 + } + ], + "210645": [ + { + "id": 210645, + "a": "attr", + "t": "nexp", + "n": 3595, + "p": 1 + } + ], + "210646": [ + { + "id": 210646, + "a": "attr", + "t": "nexp", + "n": 3600, + "p": 1 + } + ], + "210647": [ + { + "id": 210647, + "a": "attr", + "t": "nexp", + "n": 3605, + "p": 1 + } + ], + "210648": [ + { + "id": 210648, + "a": "attr", + "t": "nexp", + "n": 3610, + "p": 1 + } + ], + "210649": [ + { + "id": 210649, + "a": "attr", + "t": "nexp", + "n": 3615, + "p": 1 + } + ], + "210650": [ + { + "id": 210650, + "a": "attr", + "t": "nexp", + "n": 3620, + "p": 1 + } + ], + "210651": [ + { + "id": 210651, + "a": "attr", + "t": "nexp", + "n": 3625, + "p": 1 + } + ], + "210652": [ + { + "id": 210652, + "a": "attr", + "t": "nexp", + "n": 3630, + "p": 1 + } + ], + "210653": [ + { + "id": 210653, + "a": "attr", + "t": "nexp", + "n": 3635, + "p": 1 + } + ], + "210654": [ + { + "id": 210654, + "a": "attr", + "t": "nexp", + "n": 3640, + "p": 1 + } + ], + "210655": [ + { + "id": 210655, + "a": "attr", + "t": "nexp", + "n": 3645, + "p": 1 + } + ], + "210656": [ + { + "id": 210656, + "a": "attr", + "t": "nexp", + "n": 3650, + "p": 1 + } + ], + "210657": [ + { + "id": 210657, + "a": "attr", + "t": "nexp", + "n": 3655, + "p": 1 + } + ], + "210658": [ + { + "id": 210658, + "a": "attr", + "t": "nexp", + "n": 3660, + "p": 1 + } + ], + "210659": [ + { + "id": 210659, + "a": "attr", + "t": "nexp", + "n": 3665, + "p": 1 + } + ], + "210660": [ + { + "id": 210660, + "a": "attr", + "t": "nexp", + "n": 3670, + "p": 1 + } + ], + "210661": [ + { + "id": 210661, + "a": "attr", + "t": "nexp", + "n": 3675, + "p": 1 + } + ], + "210662": [ + { + "id": 210662, + "a": "attr", + "t": "nexp", + "n": 3680, + "p": 1 + } + ], + "210663": [ + { + "id": 210663, + "a": "attr", + "t": "nexp", + "n": 3685, + "p": 1 + } + ], + "210664": [ + { + "id": 210664, + "a": "attr", + "t": "nexp", + "n": 3690, + "p": 1 + } + ], + "210665": [ + { + "id": 210665, + "a": "attr", + "t": "nexp", + "n": 3695, + "p": 1 + } + ], + "210666": [ + { + "id": 210666, + "a": "attr", + "t": "nexp", + "n": 3700, + "p": 1 + } + ], + "210667": [ + { + "id": 210667, + "a": "attr", + "t": "nexp", + "n": 3705, + "p": 1 + } + ], + "210668": [ + { + "id": 210668, + "a": "attr", + "t": "nexp", + "n": 3710, + "p": 1 + } + ], + "210669": [ + { + "id": 210669, + "a": "attr", + "t": "nexp", + "n": 3715, + "p": 1 + } + ], + "210670": [ + { + "id": 210670, + "a": "attr", + "t": "nexp", + "n": 3720, + "p": 1 + } + ], + "210671": [ + { + "id": 210671, + "a": "attr", + "t": "nexp", + "n": 3725, + "p": 1 + } + ], + "210672": [ + { + "id": 210672, + "a": "attr", + "t": "nexp", + "n": 3730, + "p": 1 + } + ], + "210673": [ + { + "id": 210673, + "a": "attr", + "t": "nexp", + "n": 3735, + "p": 1 + } + ], + "210674": [ + { + "id": 210674, + "a": "attr", + "t": "nexp", + "n": 3740, + "p": 1 + } + ], + "210675": [ + { + "id": 210675, + "a": "attr", + "t": "nexp", + "n": 3745, + "p": 1 + } + ], + "210676": [ + { + "id": 210676, + "a": "attr", + "t": "nexp", + "n": 3750, + "p": 1 + } + ], + "210677": [ + { + "id": 210677, + "a": "attr", + "t": "nexp", + "n": 3755, + "p": 1 + } + ], + "210678": [ + { + "id": 210678, + "a": "attr", + "t": "nexp", + "n": 3760, + "p": 1 + } + ], + "210679": [ + { + "id": 210679, + "a": "attr", + "t": "nexp", + "n": 3765, + "p": 1 + } + ], + "210680": [ + { + "id": 210680, + "a": "attr", + "t": "nexp", + "n": 3770, + "p": 1 + } + ], + "210681": [ + { + "id": 210681, + "a": "attr", + "t": "nexp", + "n": 3775, + "p": 1 + } + ], + "210682": [ + { + "id": 210682, + "a": "attr", + "t": "nexp", + "n": 3780, + "p": 1 + } + ], + "210683": [ + { + "id": 210683, + "a": "attr", + "t": "nexp", + "n": 3785, + "p": 1 + } + ], + "210684": [ + { + "id": 210684, + "a": "attr", + "t": "nexp", + "n": 3790, + "p": 1 + } + ], + "210685": [ + { + "id": 210685, + "a": "attr", + "t": "nexp", + "n": 3795, + "p": 1 + } + ], + "210686": [ + { + "id": 210686, + "a": "attr", + "t": "nexp", + "n": 3800, + "p": 1 + } + ], + "210687": [ + { + "id": 210687, + "a": "attr", + "t": "nexp", + "n": 3805, + "p": 1 + } + ], + "210688": [ + { + "id": 210688, + "a": "attr", + "t": "nexp", + "n": 3810, + "p": 1 + } + ], + "210689": [ + { + "id": 210689, + "a": "attr", + "t": "nexp", + "n": 3815, + "p": 1 + } + ], + "210690": [ + { + "id": 210690, + "a": "attr", + "t": "nexp", + "n": 3820, + "p": 1 + } + ], + "210691": [ + { + "id": 210691, + "a": "attr", + "t": "nexp", + "n": 3825, + "p": 1 + } + ], + "210692": [ + { + "id": 210692, + "a": "attr", + "t": "nexp", + "n": 3830, + "p": 1 + } + ], + "210693": [ + { + "id": 210693, + "a": "attr", + "t": "nexp", + "n": 3835, + "p": 1 + } + ], + "210694": [ + { + "id": 210694, + "a": "attr", + "t": "nexp", + "n": 3840, + "p": 1 + } + ], + "210695": [ + { + "id": 210695, + "a": "attr", + "t": "nexp", + "n": 3845, + "p": 1 + } + ], + "210696": [ + { + "id": 210696, + "a": "attr", + "t": "nexp", + "n": 3850, + "p": 1 + } + ], + "210697": [ + { + "id": 210697, + "a": "attr", + "t": "nexp", + "n": 3855, + "p": 1 + } + ], + "210698": [ + { + "id": 210698, + "a": "attr", + "t": "nexp", + "n": 3860, + "p": 1 + } + ], + "210699": [ + { + "id": 210699, + "a": "attr", + "t": "nexp", + "n": 3865, + "p": 1 + } + ], + "210700": [ + { + "id": 210700, + "a": "attr", + "t": "nexp", + "n": 3870, + "p": 1 + } + ], + "210701": [ + { + "id": 210701, + "a": "attr", + "t": "nexp", + "n": 3875, + "p": 1 + } + ], + "210702": [ + { + "id": 210702, + "a": "attr", + "t": "nexp", + "n": 3880, + "p": 1 + } + ], + "210703": [ + { + "id": 210703, + "a": "attr", + "t": "nexp", + "n": 3885, + "p": 1 + } + ], + "210704": [ + { + "id": 210704, + "a": "attr", + "t": "nexp", + "n": 3890, + "p": 1 + } + ], + "210705": [ + { + "id": 210705, + "a": "attr", + "t": "nexp", + "n": 3895, + "p": 1 + } + ], + "210706": [ + { + "id": 210706, + "a": "attr", + "t": "nexp", + "n": 3900, + "p": 1 + } + ], + "210707": [ + { + "id": 210707, + "a": "attr", + "t": "nexp", + "n": 3905, + "p": 1 + } + ], + "210708": [ + { + "id": 210708, + "a": "attr", + "t": "nexp", + "n": 3910, + "p": 1 + } + ], + "210709": [ + { + "id": 210709, + "a": "attr", + "t": "nexp", + "n": 3915, + "p": 1 + } + ], + "210710": [ + { + "id": 210710, + "a": "attr", + "t": "nexp", + "n": 3920, + "p": 1 + } + ], + "210711": [ + { + "id": 210711, + "a": "attr", + "t": "nexp", + "n": 3925, + "p": 1 + } + ], + "210712": [ + { + "id": 210712, + "a": "attr", + "t": "nexp", + "n": 3930, + "p": 1 + } + ], + "210713": [ + { + "id": 210713, + "a": "attr", + "t": "nexp", + "n": 3935, + "p": 1 + } + ], + "210714": [ + { + "id": 210714, + "a": "attr", + "t": "nexp", + "n": 3940, + "p": 1 + } + ], + "210715": [ + { + "id": 210715, + "a": "attr", + "t": "nexp", + "n": 3945, + "p": 1 + } + ], + "210716": [ + { + "id": 210716, + "a": "attr", + "t": "nexp", + "n": 3950, + "p": 1 + } + ], + "210717": [ + { + "id": 210717, + "a": "attr", + "t": "nexp", + "n": 3955, + "p": 1 + } + ], + "210718": [ + { + "id": 210718, + "a": "attr", + "t": "nexp", + "n": 3960, + "p": 1 + } + ], + "210719": [ + { + "id": 210719, + "a": "attr", + "t": "nexp", + "n": 3965, + "p": 1 + } + ], + "210720": [ + { + "id": 210720, + "a": "attr", + "t": "nexp", + "n": 3970, + "p": 1 + } + ], + "210721": [ + { + "id": 210721, + "a": "attr", + "t": "nexp", + "n": 3975, + "p": 1 + } + ], + "210722": [ + { + "id": 210722, + "a": "attr", + "t": "nexp", + "n": 3980, + "p": 1 + } + ], + "210723": [ + { + "id": 210723, + "a": "attr", + "t": "nexp", + "n": 3985, + "p": 1 + } + ], + "210724": [ + { + "id": 210724, + "a": "attr", + "t": "nexp", + "n": 3990, + "p": 1 + } + ], + "210725": [ + { + "id": 210725, + "a": "attr", + "t": "nexp", + "n": 3995, + "p": 1 + } + ], + "210726": [ + { + "id": 210726, + "a": "attr", + "t": "nexp", + "n": 4000, + "p": 1 + } + ], + "210727": [ + { + "id": 210727, + "a": "attr", + "t": "nexp", + "n": 4005, + "p": 1 + } + ], + "210728": [ + { + "id": 210728, + "a": "attr", + "t": "nexp", + "n": 4010, + "p": 1 + } + ], + "210729": [ + { + "id": 210729, + "a": "attr", + "t": "nexp", + "n": 4015, + "p": 1 + } + ], + "210730": [ + { + "id": 210730, + "a": "attr", + "t": "nexp", + "n": 4020, + "p": 1 + } + ], + "210731": [ + { + "id": 210731, + "a": "attr", + "t": "nexp", + "n": 4025, + "p": 1 + } + ], + "210732": [ + { + "id": 210732, + "a": "attr", + "t": "nexp", + "n": 4030, + "p": 1 + } + ], + "210733": [ + { + "id": 210733, + "a": "attr", + "t": "nexp", + "n": 4035, + "p": 1 + } + ], + "210734": [ + { + "id": 210734, + "a": "attr", + "t": "nexp", + "n": 4040, + "p": 1 + } + ], + "210735": [ + { + "id": 210735, + "a": "attr", + "t": "nexp", + "n": 4045, + "p": 1 + } + ], + "210736": [ + { + "id": 210736, + "a": "attr", + "t": "nexp", + "n": 4050, + "p": 1 + } + ], + "210737": [ + { + "id": 210737, + "a": "attr", + "t": "nexp", + "n": 4055, + "p": 1 + } + ], + "210738": [ + { + "id": 210738, + "a": "attr", + "t": "nexp", + "n": 4060, + "p": 1 + } + ], + "210739": [ + { + "id": 210739, + "a": "attr", + "t": "nexp", + "n": 4065, + "p": 1 + } + ], + "210740": [ + { + "id": 210740, + "a": "attr", + "t": "nexp", + "n": 4070, + "p": 1 + } + ], + "210741": [ + { + "id": 210741, + "a": "attr", + "t": "nexp", + "n": 4075, + "p": 1 + } + ], + "210742": [ + { + "id": 210742, + "a": "attr", + "t": "nexp", + "n": 4080, + "p": 1 + } + ], + "210743": [ + { + "id": 210743, + "a": "attr", + "t": "nexp", + "n": 4085, + "p": 1 + } + ], + "210744": [ + { + "id": 210744, + "a": "attr", + "t": "nexp", + "n": 4090, + "p": 1 + } + ], + "210745": [ + { + "id": 210745, + "a": "attr", + "t": "nexp", + "n": 4095, + "p": 1 + } + ], + "210746": [ + { + "id": 210746, + "a": "attr", + "t": "nexp", + "n": 4100, + "p": 1 + } + ], + "210747": [ + { + "id": 210747, + "a": "attr", + "t": "nexp", + "n": 4105, + "p": 1 + } + ], + "210748": [ + { + "id": 210748, + "a": "attr", + "t": "nexp", + "n": 4110, + "p": 1 + } + ], + "210749": [ + { + "id": 210749, + "a": "attr", + "t": "nexp", + "n": 4115, + "p": 1 + } + ], + "210750": [ + { + "id": 210750, + "a": "attr", + "t": "nexp", + "n": 4120, + "p": 1 + } + ], + "210751": [ + { + "id": 210751, + "a": "attr", + "t": "nexp", + "n": 4125, + "p": 1 + } + ], + "210752": [ + { + "id": 210752, + "a": "attr", + "t": "nexp", + "n": 4130, + "p": 1 + } + ], + "210753": [ + { + "id": 210753, + "a": "attr", + "t": "nexp", + "n": 4135, + "p": 1 + } + ], + "210754": [ + { + "id": 210754, + "a": "attr", + "t": "nexp", + "n": 4140, + "p": 1 + } + ], + "210755": [ + { + "id": 210755, + "a": "attr", + "t": "nexp", + "n": 4145, + "p": 1 + } + ], + "210756": [ + { + "id": 210756, + "a": "attr", + "t": "nexp", + "n": 4150, + "p": 1 + } + ], + "210757": [ + { + "id": 210757, + "a": "attr", + "t": "nexp", + "n": 4155, + "p": 1 + } + ], + "210758": [ + { + "id": 210758, + "a": "attr", + "t": "nexp", + "n": 4160, + "p": 1 + } + ], + "210759": [ + { + "id": 210759, + "a": "attr", + "t": "nexp", + "n": 4165, + "p": 1 + } + ], + "210760": [ + { + "id": 210760, + "a": "attr", + "t": "nexp", + "n": 4170, + "p": 1 + } + ], + "210761": [ + { + "id": 210761, + "a": "attr", + "t": "nexp", + "n": 4175, + "p": 1 + } + ], + "210762": [ + { + "id": 210762, + "a": "attr", + "t": "nexp", + "n": 4180, + "p": 1 + } + ], + "210763": [ + { + "id": 210763, + "a": "attr", + "t": "nexp", + "n": 4185, + "p": 1 + } + ], + "210764": [ + { + "id": 210764, + "a": "attr", + "t": "nexp", + "n": 4190, + "p": 1 + } + ], + "210765": [ + { + "id": 210765, + "a": "attr", + "t": "nexp", + "n": 4195, + "p": 1 + } + ], + "210766": [ + { + "id": 210766, + "a": "attr", + "t": "nexp", + "n": 4200, + "p": 1 + } + ], + "210767": [ + { + "id": 210767, + "a": "attr", + "t": "nexp", + "n": 4205, + "p": 1 + } + ], + "210768": [ + { + "id": 210768, + "a": "attr", + "t": "nexp", + "n": 4210, + "p": 1 + } + ], + "210769": [ + { + "id": 210769, + "a": "attr", + "t": "nexp", + "n": 4215, + "p": 1 + } + ], + "210770": [ + { + "id": 210770, + "a": "attr", + "t": "nexp", + "n": 4220, + "p": 1 + } + ], + "210771": [ + { + "id": 210771, + "a": "attr", + "t": "nexp", + "n": 4225, + "p": 1 + } + ], + "210772": [ + { + "id": 210772, + "a": "attr", + "t": "nexp", + "n": 4230, + "p": 1 + } + ], + "210773": [ + { + "id": 210773, + "a": "attr", + "t": "nexp", + "n": 4235, + "p": 1 + } + ], + "210774": [ + { + "id": 210774, + "a": "attr", + "t": "nexp", + "n": 4240, + "p": 1 + } + ], + "210775": [ + { + "id": 210775, + "a": "attr", + "t": "nexp", + "n": 4245, + "p": 1 + } + ], + "210776": [ + { + "id": 210776, + "a": "attr", + "t": "nexp", + "n": 4250, + "p": 1 + } + ], + "210777": [ + { + "id": 210777, + "a": "attr", + "t": "nexp", + "n": 4255, + "p": 1 + } + ], + "210778": [ + { + "id": 210778, + "a": "attr", + "t": "nexp", + "n": 4260, + "p": 1 + } + ], + "210779": [ + { + "id": 210779, + "a": "attr", + "t": "nexp", + "n": 4265, + "p": 1 + } + ], + "210780": [ + { + "id": 210780, + "a": "attr", + "t": "nexp", + "n": 4270, + "p": 1 + } + ], + "210781": [ + { + "id": 210781, + "a": "attr", + "t": "nexp", + "n": 4275, + "p": 1 + } + ], + "210782": [ + { + "id": 210782, + "a": "attr", + "t": "nexp", + "n": 4280, + "p": 1 + } + ], + "210783": [ + { + "id": 210783, + "a": "attr", + "t": "nexp", + "n": 4285, + "p": 1 + } + ], + "210784": [ + { + "id": 210784, + "a": "attr", + "t": "nexp", + "n": 4290, + "p": 1 + } + ], + "210785": [ + { + "id": 210785, + "a": "attr", + "t": "nexp", + "n": 4295, + "p": 1 + } + ], + "210786": [ + { + "id": 210786, + "a": "attr", + "t": "nexp", + "n": 4300, + "p": 1 + } + ], + "210787": [ + { + "id": 210787, + "a": "attr", + "t": "nexp", + "n": 4305, + "p": 1 + } + ], + "210788": [ + { + "id": 210788, + "a": "attr", + "t": "nexp", + "n": 4310, + "p": 1 + } + ], + "210789": [ + { + "id": 210789, + "a": "attr", + "t": "nexp", + "n": 4315, + "p": 1 + } + ], + "210790": [ + { + "id": 210790, + "a": "attr", + "t": "nexp", + "n": 4320, + "p": 1 + } + ], + "210791": [ + { + "id": 210791, + "a": "attr", + "t": "nexp", + "n": 4325, + "p": 1 + } + ], + "210792": [ + { + "id": 210792, + "a": "attr", + "t": "nexp", + "n": 4330, + "p": 1 + } + ], + "210793": [ + { + "id": 210793, + "a": "attr", + "t": "nexp", + "n": 4335, + "p": 1 + } + ], + "210794": [ + { + "id": 210794, + "a": "attr", + "t": "nexp", + "n": 4340, + "p": 1 + } + ], + "210795": [ + { + "id": 210795, + "a": "attr", + "t": "nexp", + "n": 4345, + "p": 1 + } + ], + "210796": [ + { + "id": 210796, + "a": "attr", + "t": "nexp", + "n": 4350, + "p": 1 + } + ], + "210797": [ + { + "id": 210797, + "a": "attr", + "t": "nexp", + "n": 4355, + "p": 1 + } + ], + "210798": [ + { + "id": 210798, + "a": "attr", + "t": "nexp", + "n": 4360, + "p": 1 + } + ], + "210799": [ + { + "id": 210799, + "a": "attr", + "t": "nexp", + "n": 4365, + "p": 1 + } + ], + "210800": [ + { + "id": 210800, + "a": "attr", + "t": "nexp", + "n": 4370, + "p": 1 + } + ], + "210801": [ + { + "id": 210801, + "a": "attr", + "t": "nexp", + "n": 4375, + "p": 1 + } + ], + "210802": [ + { + "id": 210802, + "a": "attr", + "t": "nexp", + "n": 4380, + "p": 1 + } + ], + "210803": [ + { + "id": 210803, + "a": "attr", + "t": "nexp", + "n": 4385, + "p": 1 + } + ], + "210804": [ + { + "id": 210804, + "a": "attr", + "t": "nexp", + "n": 4390, + "p": 1 + } + ], + "210805": [ + { + "id": 210805, + "a": "attr", + "t": "nexp", + "n": 4395, + "p": 1 + } + ], + "210806": [ + { + "id": 210806, + "a": "attr", + "t": "nexp", + "n": 4400, + "p": 1 + } + ], + "210807": [ + { + "id": 210807, + "a": "attr", + "t": "nexp", + "n": 4405, + "p": 1 + } + ], + "210808": [ + { + "id": 210808, + "a": "attr", + "t": "nexp", + "n": 4410, + "p": 1 + } + ], + "210809": [ + { + "id": 210809, + "a": "attr", + "t": "nexp", + "n": 4415, + "p": 1 + } + ], + "210810": [ + { + "id": 210810, + "a": "attr", + "t": "nexp", + "n": 4420, + "p": 1 + } + ], + "210811": [ + { + "id": 210811, + "a": "attr", + "t": "nexp", + "n": 4425, + "p": 1 + } + ], + "210812": [ + { + "id": 210812, + "a": "attr", + "t": "nexp", + "n": 4430, + "p": 1 + } + ], + "210813": [ + { + "id": 210813, + "a": "attr", + "t": "nexp", + "n": 4435, + "p": 1 + } + ], + "210814": [ + { + "id": 210814, + "a": "attr", + "t": "nexp", + "n": 4440, + "p": 1 + } + ], + "210815": [ + { + "id": 210815, + "a": "attr", + "t": "nexp", + "n": 4445, + "p": 1 + } + ], + "210816": [ + { + "id": 210816, + "a": "attr", + "t": "nexp", + "n": 4450, + "p": 1 + } + ], + "210817": [ + { + "id": 210817, + "a": "attr", + "t": "nexp", + "n": 4455, + "p": 1 + } + ], + "210818": [ + { + "id": 210818, + "a": "attr", + "t": "nexp", + "n": 4460, + "p": 1 + } + ], + "210819": [ + { + "id": 210819, + "a": "attr", + "t": "nexp", + "n": 4465, + "p": 1 + } + ], + "210820": [ + { + "id": 210820, + "a": "attr", + "t": "nexp", + "n": 4470, + "p": 1 + } + ], + "210821": [ + { + "id": 210821, + "a": "attr", + "t": "nexp", + "n": 4475, + "p": 1 + } + ], + "210822": [ + { + "id": 210822, + "a": "attr", + "t": "nexp", + "n": 4480, + "p": 1 + } + ], + "210823": [ + { + "id": 210823, + "a": "attr", + "t": "nexp", + "n": 4485, + "p": 1 + } + ], + "210824": [ + { + "id": 210824, + "a": "attr", + "t": "nexp", + "n": 4490, + "p": 1 + } + ], + "210825": [ + { + "id": 210825, + "a": "attr", + "t": "nexp", + "n": 4495, + "p": 1 + } + ], + "210826": [ + { + "id": 210826, + "a": "attr", + "t": "nexp", + "n": 4500, + "p": 1 + } + ], + "210827": [ + { + "id": 210827, + "a": "attr", + "t": "nexp", + "n": 4505, + "p": 1 + } + ], + "210828": [ + { + "id": 210828, + "a": "attr", + "t": "nexp", + "n": 4510, + "p": 1 + } + ], + "210829": [ + { + "id": 210829, + "a": "attr", + "t": "nexp", + "n": 4515, + "p": 1 + } + ], + "210830": [ + { + "id": 210830, + "a": "attr", + "t": "nexp", + "n": 4520, + "p": 1 + } + ], + "210831": [ + { + "id": 210831, + "a": "attr", + "t": "nexp", + "n": 4525, + "p": 1 + } + ], + "210832": [ + { + "id": 210832, + "a": "attr", + "t": "nexp", + "n": 4530, + "p": 1 + } + ], + "210833": [ + { + "id": 210833, + "a": "attr", + "t": "nexp", + "n": 4535, + "p": 1 + } + ], + "210834": [ + { + "id": 210834, + "a": "attr", + "t": "nexp", + "n": 4540, + "p": 1 + } + ], + "210835": [ + { + "id": 210835, + "a": "attr", + "t": "nexp", + "n": 4545, + "p": 1 + } + ], + "210836": [ + { + "id": 210836, + "a": "attr", + "t": "nexp", + "n": 4550, + "p": 1 + } + ], + "210837": [ + { + "id": 210837, + "a": "attr", + "t": "nexp", + "n": 4555, + "p": 1 + } + ], + "210838": [ + { + "id": 210838, + "a": "attr", + "t": "nexp", + "n": 4560, + "p": 1 + } + ], + "210839": [ + { + "id": 210839, + "a": "attr", + "t": "nexp", + "n": 4565, + "p": 1 + } + ], + "210840": [ + { + "id": 210840, + "a": "attr", + "t": "nexp", + "n": 4570, + "p": 1 + } + ], + "210841": [ + { + "id": 210841, + "a": "attr", + "t": "nexp", + "n": 4575, + "p": 1 + } + ], + "210842": [ + { + "id": 210842, + "a": "attr", + "t": "nexp", + "n": 4580, + "p": 1 + } + ], + "210843": [ + { + "id": 210843, + "a": "attr", + "t": "nexp", + "n": 4585, + "p": 1 + } + ], + "210844": [ + { + "id": 210844, + "a": "attr", + "t": "nexp", + "n": 4590, + "p": 1 + } + ], + "210845": [ + { + "id": 210845, + "a": "attr", + "t": "nexp", + "n": 4595, + "p": 1 + } + ], + "210846": [ + { + "id": 210846, + "a": "attr", + "t": "nexp", + "n": 4600, + "p": 1 + } + ], + "210847": [ + { + "id": 210847, + "a": "attr", + "t": "nexp", + "n": 4605, + "p": 1 + } + ], + "210848": [ + { + "id": 210848, + "a": "attr", + "t": "nexp", + "n": 4610, + "p": 1 + } + ], + "210849": [ + { + "id": 210849, + "a": "attr", + "t": "nexp", + "n": 4615, + "p": 1 + } + ], + "210850": [ + { + "id": 210850, + "a": "attr", + "t": "nexp", + "n": 4620, + "p": 1 + } + ], + "210851": [ + { + "id": 210851, + "a": "attr", + "t": "nexp", + "n": 4625, + "p": 1 + } + ], + "210852": [ + { + "id": 210852, + "a": "attr", + "t": "nexp", + "n": 4630, + "p": 1 + } + ], + "210853": [ + { + "id": 210853, + "a": "attr", + "t": "nexp", + "n": 4635, + "p": 1 + } + ], + "210854": [ + { + "id": 210854, + "a": "attr", + "t": "nexp", + "n": 4640, + "p": 1 + } + ], + "210855": [ + { + "id": 210855, + "a": "attr", + "t": "nexp", + "n": 4645, + "p": 1 + } + ], + "210856": [ + { + "id": 210856, + "a": "attr", + "t": "nexp", + "n": 4650, + "p": 1 + } + ], + "210857": [ + { + "id": 210857, + "a": "attr", + "t": "nexp", + "n": 4655, + "p": 1 + } + ], + "210858": [ + { + "id": 210858, + "a": "attr", + "t": "nexp", + "n": 4660, + "p": 1 + } + ], + "210859": [ + { + "id": 210859, + "a": "attr", + "t": "nexp", + "n": 4665, + "p": 1 + } + ], + "210860": [ + { + "id": 210860, + "a": "attr", + "t": "nexp", + "n": 4670, + "p": 1 + } + ], + "210861": [ + { + "id": 210861, + "a": "attr", + "t": "nexp", + "n": 4675, + "p": 1 + } + ], + "210862": [ + { + "id": 210862, + "a": "attr", + "t": "nexp", + "n": 4680, + "p": 1 + } + ], + "210863": [ + { + "id": 210863, + "a": "attr", + "t": "nexp", + "n": 4685, + "p": 1 + } + ], + "210864": [ + { + "id": 210864, + "a": "attr", + "t": "nexp", + "n": 4690, + "p": 1 + } + ], + "210865": [ + { + "id": 210865, + "a": "attr", + "t": "nexp", + "n": 4695, + "p": 1 + } + ], + "210866": [ + { + "id": 210866, + "a": "attr", + "t": "nexp", + "n": 4700, + "p": 1 + } + ], + "210867": [ + { + "id": 210867, + "a": "attr", + "t": "nexp", + "n": 4705, + "p": 1 + } + ], + "210868": [ + { + "id": 210868, + "a": "attr", + "t": "nexp", + "n": 4710, + "p": 1 + } + ], + "210869": [ + { + "id": 210869, + "a": "attr", + "t": "nexp", + "n": 4715, + "p": 1 + } + ], + "210870": [ + { + "id": 210870, + "a": "attr", + "t": "nexp", + "n": 4720, + "p": 1 + } + ], + "210871": [ + { + "id": 210871, + "a": "attr", + "t": "nexp", + "n": 4725, + "p": 1 + } + ], + "210872": [ + { + "id": 210872, + "a": "attr", + "t": "nexp", + "n": 4730, + "p": 1 + } + ], + "210873": [ + { + "id": 210873, + "a": "attr", + "t": "nexp", + "n": 4735, + "p": 1 + } + ], + "210874": [ + { + "id": 210874, + "a": "attr", + "t": "nexp", + "n": 4740, + "p": 1 + } + ], + "210875": [ + { + "id": 210875, + "a": "attr", + "t": "nexp", + "n": 4745, + "p": 1 + } + ], + "210876": [ + { + "id": 210876, + "a": "attr", + "t": "nexp", + "n": 4750, + "p": 1 + } + ], + "210877": [ + { + "id": 210877, + "a": "attr", + "t": "nexp", + "n": 4755, + "p": 1 + } + ], + "210878": [ + { + "id": 210878, + "a": "attr", + "t": "nexp", + "n": 4760, + "p": 1 + } + ], + "210879": [ + { + "id": 210879, + "a": "attr", + "t": "nexp", + "n": 4765, + "p": 1 + } + ], + "210880": [ + { + "id": 210880, + "a": "attr", + "t": "nexp", + "n": 4770, + "p": 1 + } + ], + "210881": [ + { + "id": 210881, + "a": "attr", + "t": "nexp", + "n": 4775, + "p": 1 + } + ], + "210882": [ + { + "id": 210882, + "a": "attr", + "t": "nexp", + "n": 4780, + "p": 1 + } + ], + "210883": [ + { + "id": 210883, + "a": "attr", + "t": "nexp", + "n": 4785, + "p": 1 + } + ], + "210884": [ + { + "id": 210884, + "a": "attr", + "t": "nexp", + "n": 4790, + "p": 1 + } + ], + "210885": [ + { + "id": 210885, + "a": "attr", + "t": "nexp", + "n": 4795, + "p": 1 + } + ], + "210886": [ + { + "id": 210886, + "a": "attr", + "t": "nexp", + "n": 4800, + "p": 1 + } + ], + "210887": [ + { + "id": 210887, + "a": "attr", + "t": "nexp", + "n": 4805, + "p": 1 + } + ], + "210888": [ + { + "id": 210888, + "a": "attr", + "t": "nexp", + "n": 4810, + "p": 1 + } + ], + "210889": [ + { + "id": 210889, + "a": "attr", + "t": "nexp", + "n": 4815, + "p": 1 + } + ], + "210890": [ + { + "id": 210890, + "a": "attr", + "t": "nexp", + "n": 4820, + "p": 1 + } + ], + "210891": [ + { + "id": 210891, + "a": "attr", + "t": "nexp", + "n": 4825, + "p": 1 + } + ], + "210892": [ + { + "id": 210892, + "a": "attr", + "t": "nexp", + "n": 4830, + "p": 1 + } + ], + "210893": [ + { + "id": 210893, + "a": "attr", + "t": "nexp", + "n": 4835, + "p": 1 + } + ], + "210894": [ + { + "id": 210894, + "a": "attr", + "t": "nexp", + "n": 4840, + "p": 1 + } + ], + "210895": [ + { + "id": 210895, + "a": "attr", + "t": "nexp", + "n": 4845, + "p": 1 + } + ], + "210896": [ + { + "id": 210896, + "a": "attr", + "t": "nexp", + "n": 4850, + "p": 1 + } + ], + "210897": [ + { + "id": 210897, + "a": "attr", + "t": "nexp", + "n": 4855, + "p": 1 + } + ], + "210898": [ + { + "id": 210898, + "a": "attr", + "t": "nexp", + "n": 4860, + "p": 1 + } + ], + "210899": [ + { + "id": 210899, + "a": "attr", + "t": "nexp", + "n": 4865, + "p": 1 + } + ], + "210900": [ + { + "id": 210900, + "a": "attr", + "t": "nexp", + "n": 4870, + "p": 1 + } + ], + "210901": [ + { + "id": 210901, + "a": "attr", + "t": "nexp", + "n": 4875, + "p": 1 + } + ], + "210902": [ + { + "id": 210902, + "a": "attr", + "t": "nexp", + "n": 4880, + "p": 1 + } + ], + "210903": [ + { + "id": 210903, + "a": "attr", + "t": "nexp", + "n": 4885, + "p": 1 + } + ], + "210904": [ + { + "id": 210904, + "a": "attr", + "t": "nexp", + "n": 4890, + "p": 1 + } + ], + "210905": [ + { + "id": 210905, + "a": "attr", + "t": "nexp", + "n": 4895, + "p": 1 + } + ], + "210906": [ + { + "id": 210906, + "a": "attr", + "t": "nexp", + "n": 4900, + "p": 1 + } + ], + "210907": [ + { + "id": 210907, + "a": "attr", + "t": "nexp", + "n": 4905, + "p": 1 + } + ], + "210908": [ + { + "id": 210908, + "a": "attr", + "t": "nexp", + "n": 4910, + "p": 1 + } + ], + "210909": [ + { + "id": 210909, + "a": "attr", + "t": "nexp", + "n": 4915, + "p": 1 + } + ], + "210910": [ + { + "id": 210910, + "a": "attr", + "t": "nexp", + "n": 4920, + "p": 1 + } + ], + "210911": [ + { + "id": 210911, + "a": "attr", + "t": "nexp", + "n": 4925, + "p": 1 + } + ], + "210912": [ + { + "id": 210912, + "a": "attr", + "t": "nexp", + "n": 4930, + "p": 1 + } + ], + "210913": [ + { + "id": 210913, + "a": "attr", + "t": "nexp", + "n": 4935, + "p": 1 + } + ], + "210914": [ + { + "id": 210914, + "a": "attr", + "t": "nexp", + "n": 4940, + "p": 1 + } + ], + "210915": [ + { + "id": 210915, + "a": "attr", + "t": "nexp", + "n": 4945, + "p": 1 + } + ], + "210916": [ + { + "id": 210916, + "a": "attr", + "t": "nexp", + "n": 4950, + "p": 1 + } + ], + "210917": [ + { + "id": 210917, + "a": "attr", + "t": "nexp", + "n": 4955, + "p": 1 + } + ], + "210918": [ + { + "id": 210918, + "a": "attr", + "t": "nexp", + "n": 4960, + "p": 1 + } + ], + "210919": [ + { + "id": 210919, + "a": "attr", + "t": "nexp", + "n": 4965, + "p": 1 + } + ], + "210920": [ + { + "id": 210920, + "a": "attr", + "t": "nexp", + "n": 4970, + "p": 1 + } + ], + "210921": [ + { + "id": 210921, + "a": "attr", + "t": "nexp", + "n": 4975, + "p": 1 + } + ], + "210922": [ + { + "id": 210922, + "a": "attr", + "t": "nexp", + "n": 4980, + "p": 1 + } + ], + "210923": [ + { + "id": 210923, + "a": "attr", + "t": "nexp", + "n": 4985, + "p": 1 + } + ], + "210924": [ + { + "id": 210924, + "a": "attr", + "t": "nexp", + "n": 4990, + "p": 1 + } + ], + "210925": [ + { + "id": 210925, + "a": "attr", + "t": "nexp", + "n": 4995, + "p": 1 + } + ], + "210926": [ + { + "id": 210926, + "a": "attr", + "t": "nexp", + "n": 5000, + "p": 1 + } + ], + "210927": [ + { + "id": 210927, + "a": "attr", + "t": "nexp", + "n": 5005, + "p": 1 + } + ], + "210928": [ + { + "id": 210928, + "a": "attr", + "t": "nexp", + "n": 5010, + "p": 1 + } + ], + "210929": [ + { + "id": 210929, + "a": "attr", + "t": "nexp", + "n": 5015, + "p": 1 + } + ], + "210930": [ + { + "id": 210930, + "a": "attr", + "t": "nexp", + "n": 5020, + "p": 1 + } + ], + "210931": [ + { + "id": 210931, + "a": "attr", + "t": "nexp", + "n": 5025, + "p": 1 + } + ], + "210932": [ + { + "id": 210932, + "a": "attr", + "t": "nexp", + "n": 5030, + "p": 1 + } + ], + "210933": [ + { + "id": 210933, + "a": "attr", + "t": "nexp", + "n": 5035, + "p": 1 + } + ], + "210934": [ + { + "id": 210934, + "a": "attr", + "t": "nexp", + "n": 5040, + "p": 1 + } + ], + "210935": [ + { + "id": 210935, + "a": "attr", + "t": "nexp", + "n": 5045, + "p": 1 + } + ], + "210936": [ + { + "id": 210936, + "a": "attr", + "t": "nexp", + "n": 5050, + "p": 1 + } + ], + "210937": [ + { + "id": 210937, + "a": "attr", + "t": "nexp", + "n": 5055, + "p": 1 + } + ], + "210938": [ + { + "id": 210938, + "a": "attr", + "t": "nexp", + "n": 5060, + "p": 1 + } + ], + "210939": [ + { + "id": 210939, + "a": "attr", + "t": "nexp", + "n": 5065, + "p": 1 + } + ], + "210940": [ + { + "id": 210940, + "a": "attr", + "t": "nexp", + "n": 5070, + "p": 1 + } + ], + "210941": [ + { + "id": 210941, + "a": "attr", + "t": "nexp", + "n": 5075, + "p": 1 + } + ], + "210942": [ + { + "id": 210942, + "a": "attr", + "t": "nexp", + "n": 5080, + "p": 1 + } + ], + "210943": [ + { + "id": 210943, + "a": "attr", + "t": "nexp", + "n": 5085, + "p": 1 + } + ], + "210944": [ + { + "id": 210944, + "a": "attr", + "t": "nexp", + "n": 5090, + "p": 1 + } + ], + "210945": [ + { + "id": 210945, + "a": "attr", + "t": "nexp", + "n": 5095, + "p": 1 + } + ], + "210946": [ + { + "id": 210946, + "a": "attr", + "t": "nexp", + "n": 5100, + "p": 1 + } + ], + "210947": [ + { + "id": 210947, + "a": "attr", + "t": "nexp", + "n": 5105, + "p": 1 + } + ], + "210948": [ + { + "id": 210948, + "a": "attr", + "t": "nexp", + "n": 5110, + "p": 1 + } + ], + "210949": [ + { + "id": 210949, + "a": "attr", + "t": "nexp", + "n": 5115, + "p": 1 + } + ], + "210950": [ + { + "id": 210950, + "a": "attr", + "t": "nexp", + "n": 5120, + "p": 1 + } + ], + "210951": [ + { + "id": 210951, + "a": "attr", + "t": "nexp", + "n": 5125, + "p": 1 + } + ], + "210952": [ + { + "id": 210952, + "a": "attr", + "t": "nexp", + "n": 5130, + "p": 1 + } + ], + "210953": [ + { + "id": 210953, + "a": "attr", + "t": "nexp", + "n": 5135, + "p": 1 + } + ], + "210954": [ + { + "id": 210954, + "a": "attr", + "t": "nexp", + "n": 5140, + "p": 1 + } + ], + "210955": [ + { + "id": 210955, + "a": "attr", + "t": "nexp", + "n": 5145, + "p": 1 + } + ], + "210956": [ + { + "id": 210956, + "a": "attr", + "t": "nexp", + "n": 5150, + "p": 1 + } + ], + "210957": [ + { + "id": 210957, + "a": "attr", + "t": "nexp", + "n": 5155, + "p": 1 + } + ], + "210958": [ + { + "id": 210958, + "a": "attr", + "t": "nexp", + "n": 5160, + "p": 1 + } + ], + "210959": [ + { + "id": 210959, + "a": "attr", + "t": "nexp", + "n": 5165, + "p": 1 + } + ], + "210960": [ + { + "id": 210960, + "a": "attr", + "t": "nexp", + "n": 5170, + "p": 1 + } + ], + "210961": [ + { + "id": 210961, + "a": "attr", + "t": "nexp", + "n": 5175, + "p": 1 + } + ], + "210962": [ + { + "id": 210962, + "a": "attr", + "t": "nexp", + "n": 5180, + "p": 1 + } + ], + "210963": [ + { + "id": 210963, + "a": "attr", + "t": "nexp", + "n": 5185, + "p": 1 + } + ], + "210964": [ + { + "id": 210964, + "a": "attr", + "t": "nexp", + "n": 5190, + "p": 1 + } + ], + "210965": [ + { + "id": 210965, + "a": "attr", + "t": "nexp", + "n": 5195, + "p": 1 + } + ], + "210966": [ + { + "id": 210966, + "a": "attr", + "t": "nexp", + "n": 5200, + "p": 1 + } + ], + "210967": [ + { + "id": 210967, + "a": "attr", + "t": "nexp", + "n": 5205, + "p": 1 + } + ], + "210968": [ + { + "id": 210968, + "a": "attr", + "t": "nexp", + "n": 5210, + "p": 1 + } + ], + "210969": [ + { + "id": 210969, + "a": "attr", + "t": "nexp", + "n": 5215, + "p": 1 + } + ], + "210970": [ + { + "id": 210970, + "a": "attr", + "t": "nexp", + "n": 5220, + "p": 1 + } + ], + "210971": [ + { + "id": 210971, + "a": "attr", + "t": "nexp", + "n": 5225, + "p": 1 + } + ], + "210972": [ + { + "id": 210972, + "a": "attr", + "t": "nexp", + "n": 5230, + "p": 1 + } + ], + "210973": [ + { + "id": 210973, + "a": "attr", + "t": "nexp", + "n": 5235, + "p": 1 + } + ], + "210974": [ + { + "id": 210974, + "a": "attr", + "t": "nexp", + "n": 5240, + "p": 1 + } + ], + "210975": [ + { + "id": 210975, + "a": "attr", + "t": "nexp", + "n": 5245, + "p": 1 + } + ], + "210976": [ + { + "id": 210976, + "a": "attr", + "t": "nexp", + "n": 5250, + "p": 1 + } + ], + "210977": [ + { + "id": 210977, + "a": "attr", + "t": "nexp", + "n": 5255, + "p": 1 + } + ], + "210978": [ + { + "id": 210978, + "a": "attr", + "t": "nexp", + "n": 5260, + "p": 1 + } + ], + "210979": [ + { + "id": 210979, + "a": "attr", + "t": "nexp", + "n": 5265, + "p": 1 + } + ], + "210980": [ + { + "id": 210980, + "a": "attr", + "t": "nexp", + "n": 5270, + "p": 1 + } + ], + "210981": [ + { + "id": 210981, + "a": "attr", + "t": "nexp", + "n": 5275, + "p": 1 + } + ], + "210982": [ + { + "id": 210982, + "a": "attr", + "t": "nexp", + "n": 5280, + "p": 1 + } + ], + "210983": [ + { + "id": 210983, + "a": "attr", + "t": "nexp", + "n": 5285, + "p": 1 + } + ], + "210984": [ + { + "id": 210984, + "a": "attr", + "t": "nexp", + "n": 5290, + "p": 1 + } + ], + "210985": [ + { + "id": 210985, + "a": "attr", + "t": "nexp", + "n": 5295, + "p": 1 + } + ], + "210986": [ + { + "id": 210986, + "a": "attr", + "t": "nexp", + "n": 5300, + "p": 1 + } + ], + "210987": [ + { + "id": 210987, + "a": "attr", + "t": "nexp", + "n": 5305, + "p": 1 + } + ], + "210988": [ + { + "id": 210988, + "a": "attr", + "t": "nexp", + "n": 5310, + "p": 1 + } + ], + "210989": [ + { + "id": 210989, + "a": "attr", + "t": "nexp", + "n": 5315, + "p": 1 + } + ], + "210990": [ + { + "id": 210990, + "a": "attr", + "t": "nexp", + "n": 5320, + "p": 1 + } + ], + "210991": [ + { + "id": 210991, + "a": "attr", + "t": "nexp", + "n": 5325, + "p": 1 + } + ], + "210992": [ + { + "id": 210992, + "a": "attr", + "t": "nexp", + "n": 5330, + "p": 1 + } + ], + "210993": [ + { + "id": 210993, + "a": "attr", + "t": "nexp", + "n": 5335, + "p": 1 + } + ], + "210994": [ + { + "id": 210994, + "a": "attr", + "t": "nexp", + "n": 5340, + "p": 1 + } + ], + "210995": [ + { + "id": 210995, + "a": "attr", + "t": "nexp", + "n": 5345, + "p": 1 + } + ], + "210996": [ + { + "id": 210996, + "a": "attr", + "t": "nexp", + "n": 5350, + "p": 1 + } + ], + "210997": [ + { + "id": 210997, + "a": "attr", + "t": "nexp", + "n": 5355, + "p": 1 + } + ], + "210998": [ + { + "id": 210998, + "a": "attr", + "t": "nexp", + "n": 5360, + "p": 1 + } + ], + "210999": [ + { + "id": 210999, + "a": "attr", + "t": "nexp", + "n": 5365, + "p": 1 + } + ], + "211000": [ + { + "id": 211000, + "a": "attr", + "t": "nexp", + "n": 5370, + "p": 1 + } + ], + "220001": [ + { + "id": 220001, + "a": "item", + "t": 2, + "n": 1, + "p": 2 + }, + { + "id": 220001, + "a": "item", + "t": 2, + "n": 0, + "p": 98 + } + ], + "220002": [ + { + "id": 220002, + "a": "item", + "t": 2, + "n": 1, + "p": 4 + }, + { + "id": 220002, + "a": "item", + "t": 2, + "n": 0, + "p": 96 + } + ], + "220003": [ + { + "id": 220003, + "a": "item", + "t": 2, + "n": 1, + "p": 6 + }, + { + "id": 220003, + "a": "item", + "t": 2, + "n": 0, + "p": 94 + } + ], + "220004": [ + { + "id": 220004, + "a": "item", + "t": 2, + "n": 1, + "p": 8 + }, + { + "id": 220004, + "a": "item", + "t": 2, + "n": 0, + "p": 92 + } + ], + "220005": [ + { + "id": 220005, + "a": "item", + "t": 2, + "n": 1, + "p": 10 + }, + { + "id": 220005, + "a": "item", + "t": 2, + "n": 0, + "p": 90 + } + ], + "220006": [ + { + "id": 220006, + "a": "item", + "t": 2, + "n": 1, + "p": 12 + }, + { + "id": 220006, + "a": "item", + "t": 2, + "n": 0, + "p": 88 + } + ], + "220007": [ + { + "id": 220007, + "a": "item", + "t": 2, + "n": 1, + "p": 14 + }, + { + "id": 220007, + "a": "item", + "t": 2, + "n": 0, + "p": 86 + } + ], + "220008": [ + { + "id": 220008, + "a": "item", + "t": 2, + "n": 1, + "p": 16 + }, + { + "id": 220008, + "a": "item", + "t": 2, + "n": 0, + "p": 84 + } + ], + "220009": [ + { + "id": 220009, + "a": "item", + "t": 2, + "n": 1, + "p": 18 + }, + { + "id": 220009, + "a": "item", + "t": 2, + "n": 0, + "p": 82 + } + ], + "220010": [ + { + "id": 220010, + "a": "item", + "t": 2, + "n": 1, + "p": 20 + }, + { + "id": 220010, + "a": "item", + "t": 2, + "n": 0, + "p": 80 + } + ], + "220011": [ + { + "id": 220011, + "a": "item", + "t": 2, + "n": 1, + "p": 22 + }, + { + "id": 220011, + "a": "item", + "t": 2, + "n": 0, + "p": 78 + } + ], + "220012": [ + { + "id": 220012, + "a": "item", + "t": 2, + "n": 1, + "p": 24 + }, + { + "id": 220012, + "a": "item", + "t": 2, + "n": 0, + "p": 76 + } + ], + "220013": [ + { + "id": 220013, + "a": "item", + "t": 2, + "n": 1, + "p": 26 + }, + { + "id": 220013, + "a": "item", + "t": 2, + "n": 0, + "p": 74 + } + ], + "220014": [ + { + "id": 220014, + "a": "item", + "t": 2, + "n": 1, + "p": 28 + }, + { + "id": 220014, + "a": "item", + "t": 2, + "n": 0, + "p": 72 + } + ], + "220015": [ + { + "id": 220015, + "a": "item", + "t": 2, + "n": 1, + "p": 30 + }, + { + "id": 220015, + "a": "item", + "t": 2, + "n": 0, + "p": 70 + } + ], + "220016": [ + { + "id": 220016, + "a": "item", + "t": 2, + "n": 1, + "p": 32 + }, + { + "id": 220016, + "a": "item", + "t": 2, + "n": 0, + "p": 68 + } + ], + "220017": [ + { + "id": 220017, + "a": "item", + "t": 2, + "n": 1, + "p": 34 + }, + { + "id": 220017, + "a": "item", + "t": 2, + "n": 0, + "p": 66 + } + ], + "220018": [ + { + "id": 220018, + "a": "item", + "t": 2, + "n": 1, + "p": 36 + }, + { + "id": 220018, + "a": "item", + "t": 2, + "n": 0, + "p": 64 + } + ], + "220019": [ + { + "id": 220019, + "a": "item", + "t": 2, + "n": 1, + "p": 38 + }, + { + "id": 220019, + "a": "item", + "t": 2, + "n": 0, + "p": 62 + } + ], + "220020": [ + { + "id": 220020, + "a": "item", + "t": 2, + "n": 1, + "p": 40 + }, + { + "id": 220020, + "a": "item", + "t": 2, + "n": 0, + "p": 60 + } + ], + "220021": [ + { + "id": 220021, + "a": "item", + "t": 2, + "n": 1, + "p": 42 + }, + { + "id": 220021, + "a": "item", + "t": 2, + "n": 0, + "p": 58 + } + ], + "220022": [ + { + "id": 220022, + "a": "item", + "t": 2, + "n": 1, + "p": 44 + }, + { + "id": 220022, + "a": "item", + "t": 2, + "n": 0, + "p": 56 + } + ], + "220023": [ + { + "id": 220023, + "a": "item", + "t": 2, + "n": 1, + "p": 46 + }, + { + "id": 220023, + "a": "item", + "t": 2, + "n": 0, + "p": 54 + } + ], + "220024": [ + { + "id": 220024, + "a": "item", + "t": 2, + "n": 1, + "p": 48 + }, + { + "id": 220024, + "a": "item", + "t": 2, + "n": 0, + "p": 52 + } + ], + "220025": [ + { + "id": 220025, + "a": "item", + "t": 2, + "n": 1, + "p": 50 + }, + { + "id": 220025, + "a": "item", + "t": 2, + "n": 0, + "p": 50 + } + ], + "220026": [ + { + "id": 220026, + "a": "item", + "t": 2, + "n": 1, + "p": 52 + }, + { + "id": 220026, + "a": "item", + "t": 2, + "n": 0, + "p": 48 + } + ], + "220027": [ + { + "id": 220027, + "a": "item", + "t": 2, + "n": 1, + "p": 54 + }, + { + "id": 220027, + "a": "item", + "t": 2, + "n": 0, + "p": 46 + } + ], + "220028": [ + { + "id": 220028, + "a": "item", + "t": 2, + "n": 1, + "p": 56 + }, + { + "id": 220028, + "a": "item", + "t": 2, + "n": 0, + "p": 44 + } + ], + "220029": [ + { + "id": 220029, + "a": "item", + "t": 2, + "n": 1, + "p": 58 + }, + { + "id": 220029, + "a": "item", + "t": 2, + "n": 0, + "p": 42 + } + ], + "220030": [ + { + "id": 220030, + "a": "item", + "t": 2, + "n": 1, + "p": 60 + }, + { + "id": 220030, + "a": "item", + "t": 2, + "n": 0, + "p": 40 + } + ], + "220031": [ + { + "id": 220031, + "a": "item", + "t": 2, + "n": 1, + "p": 62 + }, + { + "id": 220031, + "a": "item", + "t": 2, + "n": 0, + "p": 38 + } + ], + "220032": [ + { + "id": 220032, + "a": "item", + "t": 2, + "n": 1, + "p": 64 + }, + { + "id": 220032, + "a": "item", + "t": 2, + "n": 0, + "p": 36 + } + ], + "220033": [ + { + "id": 220033, + "a": "item", + "t": 2, + "n": 1, + "p": 66 + }, + { + "id": 220033, + "a": "item", + "t": 2, + "n": 0, + "p": 34 + } + ], + "220034": [ + { + "id": 220034, + "a": "item", + "t": 2, + "n": 1, + "p": 68 + }, + { + "id": 220034, + "a": "item", + "t": 2, + "n": 0, + "p": 32 + } + ], + "220035": [ + { + "id": 220035, + "a": "item", + "t": 2, + "n": 1, + "p": 70 + }, + { + "id": 220035, + "a": "item", + "t": 2, + "n": 0, + "p": 30 + } + ], + "220036": [ + { + "id": 220036, + "a": "item", + "t": 2, + "n": 1, + "p": 72 + }, + { + "id": 220036, + "a": "item", + "t": 2, + "n": 0, + "p": 28 + } + ], + "220037": [ + { + "id": 220037, + "a": "item", + "t": 2, + "n": 1, + "p": 74 + }, + { + "id": 220037, + "a": "item", + "t": 2, + "n": 0, + "p": 26 + } + ], + "220038": [ + { + "id": 220038, + "a": "item", + "t": 2, + "n": 1, + "p": 76 + }, + { + "id": 220038, + "a": "item", + "t": 2, + "n": 0, + "p": 24 + } + ], + "220039": [ + { + "id": 220039, + "a": "item", + "t": 2, + "n": 1, + "p": 78 + }, + { + "id": 220039, + "a": "item", + "t": 2, + "n": 0, + "p": 22 + } + ], + "220040": [ + { + "id": 220040, + "a": "item", + "t": 2, + "n": 1, + "p": 80 + }, + { + "id": 220040, + "a": "item", + "t": 2, + "n": 0, + "p": 20 + } + ], + "220041": [ + { + "id": 220041, + "a": "item", + "t": 2, + "n": 1, + "p": 82 + }, + { + "id": 220041, + "a": "item", + "t": 2, + "n": 0, + "p": 18 + } + ], + "220042": [ + { + "id": 220042, + "a": "item", + "t": 2, + "n": 1, + "p": 84 + }, + { + "id": 220042, + "a": "item", + "t": 2, + "n": 0, + "p": 16 + } + ], + "220043": [ + { + "id": 220043, + "a": "item", + "t": 2, + "n": 1, + "p": 86 + }, + { + "id": 220043, + "a": "item", + "t": 2, + "n": 0, + "p": 14 + } + ], + "220044": [ + { + "id": 220044, + "a": "item", + "t": 2, + "n": 1, + "p": 88 + }, + { + "id": 220044, + "a": "item", + "t": 2, + "n": 0, + "p": 12 + } + ], + "220045": [ + { + "id": 220045, + "a": "item", + "t": 2, + "n": 1, + "p": 90 + }, + { + "id": 220045, + "a": "item", + "t": 2, + "n": 0, + "p": 10 + } + ], + "220046": [ + { + "id": 220046, + "a": "item", + "t": 2, + "n": 1, + "p": 92 + }, + { + "id": 220046, + "a": "item", + "t": 2, + "n": 0, + "p": 8 + } + ], + "220047": [ + { + "id": 220047, + "a": "item", + "t": 2, + "n": 1, + "p": 94 + }, + { + "id": 220047, + "a": "item", + "t": 2, + "n": 0, + "p": 6 + } + ], + "220048": [ + { + "id": 220048, + "a": "item", + "t": 2, + "n": 1, + "p": 96 + }, + { + "id": 220048, + "a": "item", + "t": 2, + "n": 0, + "p": 4 + } + ], + "220049": [ + { + "id": 220049, + "a": "item", + "t": 2, + "n": 1, + "p": 98 + }, + { + "id": 220049, + "a": "item", + "t": 2, + "n": 0, + "p": 2 + } + ], + "220050": [ + { + "id": 220050, + "a": "item", + "t": 2, + "n": 2, + "p": 1 + }, + { + "id": 220050, + "a": "item", + "t": 2, + "n": 0, + "p": 1 + } + ], + "220051": [ + { + "id": 220051, + "a": "item", + "t": 2, + "n": 2, + "p": 51 + }, + { + "id": 220051, + "a": "item", + "t": 2, + "n": 0, + "p": 49 + } + ], + "220052": [ + { + "id": 220052, + "a": "item", + "t": 2, + "n": 2, + "p": 52 + }, + { + "id": 220052, + "a": "item", + "t": 2, + "n": 0, + "p": 48 + } + ], + "220053": [ + { + "id": 220053, + "a": "item", + "t": 2, + "n": 2, + "p": 53 + }, + { + "id": 220053, + "a": "item", + "t": 2, + "n": 0, + "p": 47 + } + ], + "220054": [ + { + "id": 220054, + "a": "item", + "t": 2, + "n": 2, + "p": 54 + }, + { + "id": 220054, + "a": "item", + "t": 2, + "n": 0, + "p": 46 + } + ], + "220055": [ + { + "id": 220055, + "a": "item", + "t": 2, + "n": 2, + "p": 55 + }, + { + "id": 220055, + "a": "item", + "t": 2, + "n": 0, + "p": 45 + } + ], + "220056": [ + { + "id": 220056, + "a": "item", + "t": 2, + "n": 2, + "p": 56 + }, + { + "id": 220056, + "a": "item", + "t": 2, + "n": 0, + "p": 44 + } + ], + "220057": [ + { + "id": 220057, + "a": "item", + "t": 2, + "n": 2, + "p": 57 + }, + { + "id": 220057, + "a": "item", + "t": 2, + "n": 0, + "p": 43 + } + ], + "220058": [ + { + "id": 220058, + "a": "item", + "t": 2, + "n": 2, + "p": 58 + }, + { + "id": 220058, + "a": "item", + "t": 2, + "n": 0, + "p": 42 + } + ], + "220059": [ + { + "id": 220059, + "a": "item", + "t": 2, + "n": 2, + "p": 59 + }, + { + "id": 220059, + "a": "item", + "t": 2, + "n": 0, + "p": 41 + } + ], + "220060": [ + { + "id": 220060, + "a": "item", + "t": 2, + "n": 2, + "p": 60 + }, + { + "id": 220060, + "a": "item", + "t": 2, + "n": 0, + "p": 40 + } + ], + "220061": [ + { + "id": 220061, + "a": "item", + "t": 2, + "n": 2, + "p": 61 + }, + { + "id": 220061, + "a": "item", + "t": 2, + "n": 0, + "p": 39 + } + ], + "220062": [ + { + "id": 220062, + "a": "item", + "t": 2, + "n": 2, + "p": 62 + }, + { + "id": 220062, + "a": "item", + "t": 2, + "n": 0, + "p": 38 + } + ], + "220063": [ + { + "id": 220063, + "a": "item", + "t": 2, + "n": 2, + "p": 63 + }, + { + "id": 220063, + "a": "item", + "t": 2, + "n": 0, + "p": 37 + } + ], + "220064": [ + { + "id": 220064, + "a": "item", + "t": 2, + "n": 2, + "p": 64 + }, + { + "id": 220064, + "a": "item", + "t": 2, + "n": 0, + "p": 36 + } + ], + "220065": [ + { + "id": 220065, + "a": "item", + "t": 2, + "n": 2, + "p": 65 + }, + { + "id": 220065, + "a": "item", + "t": 2, + "n": 0, + "p": 35 + } + ], + "220066": [ + { + "id": 220066, + "a": "item", + "t": 2, + "n": 2, + "p": 66 + }, + { + "id": 220066, + "a": "item", + "t": 2, + "n": 0, + "p": 34 + } + ], + "220067": [ + { + "id": 220067, + "a": "item", + "t": 2, + "n": 2, + "p": 67 + }, + { + "id": 220067, + "a": "item", + "t": 2, + "n": 0, + "p": 33 + } + ], + "220068": [ + { + "id": 220068, + "a": "item", + "t": 2, + "n": 2, + "p": 68 + }, + { + "id": 220068, + "a": "item", + "t": 2, + "n": 0, + "p": 32 + } + ], + "220069": [ + { + "id": 220069, + "a": "item", + "t": 2, + "n": 2, + "p": 69 + }, + { + "id": 220069, + "a": "item", + "t": 2, + "n": 0, + "p": 31 + } + ], + "220070": [ + { + "id": 220070, + "a": "item", + "t": 2, + "n": 2, + "p": 70 + }, + { + "id": 220070, + "a": "item", + "t": 2, + "n": 0, + "p": 30 + } + ], + "220071": [ + { + "id": 220071, + "a": "item", + "t": 2, + "n": 2, + "p": 71 + }, + { + "id": 220071, + "a": "item", + "t": 2, + "n": 0, + "p": 29 + } + ], + "220072": [ + { + "id": 220072, + "a": "item", + "t": 2, + "n": 2, + "p": 72 + }, + { + "id": 220072, + "a": "item", + "t": 2, + "n": 0, + "p": 28 + } + ], + "220073": [ + { + "id": 220073, + "a": "item", + "t": 2, + "n": 2, + "p": 73 + }, + { + "id": 220073, + "a": "item", + "t": 2, + "n": 0, + "p": 27 + } + ], + "220074": [ + { + "id": 220074, + "a": "item", + "t": 2, + "n": 2, + "p": 74 + }, + { + "id": 220074, + "a": "item", + "t": 2, + "n": 0, + "p": 26 + } + ], + "220075": [ + { + "id": 220075, + "a": "item", + "t": 2, + "n": 3, + "p": 60 + }, + { + "id": 220075, + "a": "item", + "t": 2, + "n": 0, + "p": 40 + } + ], + "230001": [ + { + "id": 230001, + "a": "item", + "t": 1, + "n": 15000, + "p": 3 + }, + { + "id": 230001, + "a": "item", + "t": 1, + "n": 20000, + "p": 1 + }, + { + "id": 230001, + "a": "item", + "t": 1, + "n": 0, + "p": 65 + } + ], + "240001": [ + { + "id": 240001, + "a": "item", + "t": 10001, + "n": 1, + "p": 8 + }, + { + "id": 240001, + "a": "item", + "t": 10002, + "n": 1, + "p": 8 + }, + { + "id": 240001, + "a": "item", + "t": 20001, + "n": 1, + "p": 8 + }, + { + "id": 240001, + "a": "item", + "t": 20002, + "n": 1, + "p": 8 + }, + { + "id": 240001, + "a": "item", + "t": 30001, + "n": 1, + "p": 4 + }, + { + "id": 240001, + "a": "item", + "t": 30002, + "n": 1, + "p": 4 + }, + { + "id": 240001, + "a": "item", + "t": 40001, + "n": 1, + "p": 4 + }, + { + "id": 240001, + "a": "item", + "t": 40002, + "n": 1, + "p": 4 + }, + { + "id": 240001, + "a": "item", + "t": 36, + "n": 1, + "p": 1 + }, + { + "id": 240001, + "a": "item", + "t": 34, + "n": 1, + "p": 2 + }, + { + "id": 240001, + "a": "item", + "t": 1, + "n": 0, + "p": 350 + } + ], + "250001": [ + { + "id": 250001, + "a": "item", + "t": 6, + "n": 1, + "p": 1 + }, + { + "id": 250001, + "a": "item", + "t": 6, + "n": 0, + "p": 140 + } + ], + "250002": [ + { + "id": 250002, + "a": "item", + "t": 6, + "n": 1, + "p": 1 + }, + { + "id": 250002, + "a": "item", + "t": 6, + "n": 0, + "p": 119 + } + ], + "250003": [ + { + "id": 250003, + "a": "item", + "t": 6, + "n": 1, + "p": 1 + }, + { + "id": 250003, + "a": "item", + "t": 6, + "n": 0, + "p": 77 + } + ], + "260001": [ + { + "id": 260001, + "a": "item", + "t": 12, + "n": 8, + "p": 1 + } + ], + "260002": [ + { + "id": 260002, + "a": "item", + "t": 12, + "n": 9, + "p": 1 + } + ], + "260003": [ + { + "id": 260003, + "a": "item", + "t": 12, + "n": 11, + "p": 1 + } + ], + "260004": [ + { + "id": 260004, + "a": "item", + "t": 12, + "n": 12, + "p": 1 + } + ], + "260005": [ + { + "id": 260005, + "a": "item", + "t": 12, + "n": 13, + "p": 1 + } + ], + "260006": [ + { + "id": 260006, + "a": "item", + "t": 12, + "n": 15, + "p": 1 + } + ], + "260007": [ + { + "id": 260007, + "a": "item", + "t": 12, + "n": 16, + "p": 1 + } + ], + "260008": [ + { + "id": 260008, + "a": "item", + "t": 12, + "n": 17, + "p": 1 + } + ], + "260009": [ + { + "id": 260009, + "a": "item", + "t": 12, + "n": 19, + "p": 1 + } + ], + "260010": [ + { + "id": 260010, + "a": "item", + "t": 12, + "n": 20, + "p": 1 + } + ], + "260011": [ + { + "id": 260011, + "a": "item", + "t": 12, + "n": 21, + "p": 1 + } + ], + "260012": [ + { + "id": 260012, + "a": "item", + "t": 12, + "n": 23, + "p": 1 + } + ], + "260013": [ + { + "id": 260013, + "a": "item", + "t": 12, + "n": 24, + "p": 1 + } + ], + "260014": [ + { + "id": 260014, + "a": "item", + "t": 12, + "n": 25, + "p": 1 + } + ], + "260015": [ + { + "id": 260015, + "a": "item", + "t": 12, + "n": 27, + "p": 1 + } + ], + "260016": [ + { + "id": 260016, + "a": "item", + "t": 12, + "n": 28, + "p": 1 + } + ], + "260017": [ + { + "id": 260017, + "a": "item", + "t": 12, + "n": 29, + "p": 1 + } + ], + "260018": [ + { + "id": 260018, + "a": "item", + "t": 12, + "n": 31, + "p": 1 + } + ], + "260019": [ + { + "id": 260019, + "a": "item", + "t": 12, + "n": 32, + "p": 1 + } + ], + "260020": [ + { + "id": 260020, + "a": "item", + "t": 12, + "n": 33, + "p": 1 + } + ], + "260021": [ + { + "id": 260021, + "a": "item", + "t": 12, + "n": 35, + "p": 1 + } + ], + "260022": [ + { + "id": 260022, + "a": "item", + "t": 12, + "n": 36, + "p": 1 + } + ], + "260023": [ + { + "id": 260023, + "a": "item", + "t": 12, + "n": 37, + "p": 1 + } + ], + "260024": [ + { + "id": 260024, + "a": "item", + "t": 12, + "n": 39, + "p": 1 + } + ], + "260025": [ + { + "id": 260025, + "a": "item", + "t": 12, + "n": 40, + "p": 1 + } + ], + "260026": [ + { + "id": 260026, + "a": "item", + "t": 12, + "n": 41, + "p": 1 + } + ], + "260027": [ + { + "id": 260027, + "a": "item", + "t": 12, + "n": 43, + "p": 1 + } + ], + "260028": [ + { + "id": 260028, + "a": "item", + "t": 12, + "n": 44, + "p": 1 + } + ], + "260029": [ + { + "id": 260029, + "a": "item", + "t": 12, + "n": 45, + "p": 1 + } + ], + "260030": [ + { + "id": 260030, + "a": "item", + "t": 12, + "n": 47, + "p": 1 + } + ], + "260031": [ + { + "id": 260031, + "a": "item", + "t": 12, + "n": 48, + "p": 1 + } + ], + "260032": [ + { + "id": 260032, + "a": "item", + "t": 12, + "n": 49, + "p": 1 + } + ], + "260033": [ + { + "id": 260033, + "a": "item", + "t": 12, + "n": 51, + "p": 1 + } + ], + "260034": [ + { + "id": 260034, + "a": "item", + "t": 12, + "n": 52, + "p": 1 + } + ], + "260035": [ + { + "id": 260035, + "a": "item", + "t": 12, + "n": 53, + "p": 1 + } + ], + "260036": [ + { + "id": 260036, + "a": "item", + "t": 12, + "n": 55, + "p": 1 + } + ], + "260037": [ + { + "id": 260037, + "a": "item", + "t": 12, + "n": 56, + "p": 1 + } + ], + "260038": [ + { + "id": 260038, + "a": "item", + "t": 12, + "n": 57, + "p": 1 + } + ], + "260039": [ + { + "id": 260039, + "a": "item", + "t": 12, + "n": 59, + "p": 1 + } + ], + "260040": [ + { + "id": 260040, + "a": "item", + "t": 12, + "n": 60, + "p": 1 + } + ], + "260041": [ + { + "id": 260041, + "a": "item", + "t": 12, + "n": 61, + "p": 1 + } + ], + "260042": [ + { + "id": 260042, + "a": "item", + "t": 12, + "n": 63, + "p": 1 + } + ], + "260043": [ + { + "id": 260043, + "a": "item", + "t": 12, + "n": 64, + "p": 1 + } + ], + "260044": [ + { + "id": 260044, + "a": "item", + "t": 12, + "n": 65, + "p": 1 + } + ], + "260045": [ + { + "id": 260045, + "a": "item", + "t": 12, + "n": 67, + "p": 1 + } + ], + "260046": [ + { + "id": 260046, + "a": "item", + "t": 12, + "n": 68, + "p": 1 + } + ], + "260047": [ + { + "id": 260047, + "a": "item", + "t": 12, + "n": 69, + "p": 1 + } + ], + "260048": [ + { + "id": 260048, + "a": "item", + "t": 12, + "n": 71, + "p": 1 + } + ], + "260049": [ + { + "id": 260049, + "a": "item", + "t": 12, + "n": 72, + "p": 1 + } + ], + "260050": [ + { + "id": 260050, + "a": "item", + "t": 12, + "n": 73, + "p": 1 + } + ], + "260051": [ + { + "id": 260051, + "a": "item", + "t": 12, + "n": 75, + "p": 1 + } + ], + "260052": [ + { + "id": 260052, + "a": "item", + "t": 12, + "n": 76, + "p": 1 + } + ], + "260053": [ + { + "id": 260053, + "a": "item", + "t": 12, + "n": 77, + "p": 1 + } + ], + "260054": [ + { + "id": 260054, + "a": "item", + "t": 12, + "n": 79, + "p": 1 + } + ], + "260055": [ + { + "id": 260055, + "a": "item", + "t": 12, + "n": 80, + "p": 1 + } + ], + "260056": [ + { + "id": 260056, + "a": "item", + "t": 12, + "n": 81, + "p": 1 + } + ], + "260057": [ + { + "id": 260057, + "a": "item", + "t": 12, + "n": 83, + "p": 1 + } + ], + "260058": [ + { + "id": 260058, + "a": "item", + "t": 12, + "n": 84, + "p": 1 + } + ], + "260059": [ + { + "id": 260059, + "a": "item", + "t": 12, + "n": 85, + "p": 1 + } + ], + "260060": [ + { + "id": 260060, + "a": "item", + "t": 12, + "n": 87, + "p": 1 + } + ], + "260061": [ + { + "id": 260061, + "a": "item", + "t": 12, + "n": 88, + "p": 1 + } + ], + "260062": [ + { + "id": 260062, + "a": "item", + "t": 12, + "n": 89, + "p": 1 + } + ], + "260063": [ + { + "id": 260063, + "a": "item", + "t": 12, + "n": 91, + "p": 1 + } + ], + "260064": [ + { + "id": 260064, + "a": "item", + "t": 12, + "n": 92, + "p": 1 + } + ], + "260065": [ + { + "id": 260065, + "a": "item", + "t": 12, + "n": 93, + "p": 1 + } + ], + "260066": [ + { + "id": 260066, + "a": "item", + "t": 12, + "n": 95, + "p": 1 + } + ], + "260067": [ + { + "id": 260067, + "a": "item", + "t": 12, + "n": 96, + "p": 1 + } + ], + "260068": [ + { + "id": 260068, + "a": "item", + "t": 12, + "n": 97, + "p": 1 + } + ], + "260069": [ + { + "id": 260069, + "a": "item", + "t": 12, + "n": 99, + "p": 1 + } + ], + "260070": [ + { + "id": 260070, + "a": "item", + "t": 12, + "n": 100, + "p": 1 + } + ], + "260071": [ + { + "id": 260071, + "a": "item", + "t": 12, + "n": 101, + "p": 1 + } + ], + "260072": [ + { + "id": 260072, + "a": "item", + "t": 12, + "n": 102, + "p": 1 + } + ], + "260073": [ + { + "id": 260073, + "a": "item", + "t": 12, + "n": 103, + "p": 1 + } + ], + "260074": [ + { + "id": 260074, + "a": "item", + "t": 12, + "n": 104, + "p": 1 + } + ], + "260075": [ + { + "id": 260075, + "a": "item", + "t": 12, + "n": 105, + "p": 1 + } + ], + "260076": [ + { + "id": 260076, + "a": "item", + "t": 12, + "n": 106, + "p": 1 + } + ], + "260077": [ + { + "id": 260077, + "a": "item", + "t": 12, + "n": 107, + "p": 1 + } + ], + "260078": [ + { + "id": 260078, + "a": "item", + "t": 12, + "n": 108, + "p": 1 + } + ], + "260079": [ + { + "id": 260079, + "a": "item", + "t": 12, + "n": 109, + "p": 1 + } + ], + "260080": [ + { + "id": 260080, + "a": "item", + "t": 12, + "n": 110, + "p": 1 + } + ], + "260081": [ + { + "id": 260081, + "a": "item", + "t": 12, + "n": 111, + "p": 1 + } + ], + "260082": [ + { + "id": 260082, + "a": "item", + "t": 12, + "n": 112, + "p": 1 + } + ], + "260083": [ + { + "id": 260083, + "a": "item", + "t": 12, + "n": 113, + "p": 1 + } + ], + "260084": [ + { + "id": 260084, + "a": "item", + "t": 12, + "n": 114, + "p": 1 + } + ], + "260085": [ + { + "id": 260085, + "a": "item", + "t": 12, + "n": 115, + "p": 1 + } + ], + "260086": [ + { + "id": 260086, + "a": "item", + "t": 12, + "n": 116, + "p": 1 + } + ], + "260087": [ + { + "id": 260087, + "a": "item", + "t": 12, + "n": 117, + "p": 1 + } + ], + "260088": [ + { + "id": 260088, + "a": "item", + "t": 12, + "n": 118, + "p": 1 + } + ], + "260089": [ + { + "id": 260089, + "a": "item", + "t": 12, + "n": 119, + "p": 1 + } + ], + "260090": [ + { + "id": 260090, + "a": "item", + "t": 12, + "n": 120, + "p": 1 + } + ], + "270001": [ + { + "id": 270001, + "a": "attr", + "t": "nexp", + "n": 500, + "p": 1 + } + ], + "270002": [ + { + "id": 270002, + "a": "attr", + "t": "nexp", + "n": 800, + "p": 1 + } + ], + "270003": [ + { + "id": 270003, + "a": "attr", + "t": "nexp", + "n": 900, + "p": 1 + } + ], + "270004": [ + { + "id": 270004, + "a": "attr", + "t": "nexp", + "n": 1000, + "p": 1 + } + ], + "270005": [ + { + "id": 270005, + "a": "attr", + "t": "nexp", + "n": 1000, + "p": 1 + } + ], + "270006": [ + { + "id": 270006, + "a": "attr", + "t": "nexp", + "n": 1100, + "p": 1 + } + ], + "270007": [ + { + "id": 270007, + "a": "attr", + "t": "nexp", + "n": 1100, + "p": 1 + } + ], + "270008": [ + { + "id": 270008, + "a": "attr", + "t": "nexp", + "n": 1300, + "p": 1 + } + ], + "270009": [ + { + "id": 270009, + "a": "attr", + "t": "nexp", + "n": 1500, + "p": 1 + } + ], + "270010": [ + { + "id": 270010, + "a": "attr", + "t": "nexp", + "n": 1700, + "p": 1 + } + ], + "270011": [ + { + "id": 270011, + "a": "attr", + "t": "nexp", + "n": 1900, + "p": 1 + } + ], + "270012": [ + { + "id": 270012, + "a": "attr", + "t": "nexp", + "n": 2100, + "p": 1 + } + ], + "270013": [ + { + "id": 270013, + "a": "attr", + "t": "nexp", + "n": 2300, + "p": 1 + } + ], + "270014": [ + { + "id": 270014, + "a": "attr", + "t": "nexp", + "n": 2500, + "p": 1 + } + ], + "270015": [ + { + "id": 270015, + "a": "attr", + "t": "nexp", + "n": 2700, + "p": 1 + } + ], + "270016": [ + { + "id": 270016, + "a": "attr", + "t": "nexp", + "n": 2900, + "p": 1 + } + ], + "270017": [ + { + "id": 270017, + "a": "attr", + "t": "nexp", + "n": 3100, + "p": 1 + } + ], + "270018": [ + { + "id": 270018, + "a": "attr", + "t": "nexp", + "n": 3300, + "p": 1 + } + ], + "270019": [ + { + "id": 270019, + "a": "attr", + "t": "nexp", + "n": 3500, + "p": 1 + } + ], + "270020": [ + { + "id": 270020, + "a": "attr", + "t": "nexp", + "n": 3700, + "p": 1 + } + ], + "270021": [ + { + "id": 270021, + "a": "attr", + "t": "nexp", + "n": 4700, + "p": 1 + } + ], + "270022": [ + { + "id": 270022, + "a": "attr", + "t": "nexp", + "n": 5000, + "p": 1 + } + ], + "270023": [ + { + "id": 270023, + "a": "attr", + "t": "nexp", + "n": 5300, + "p": 1 + } + ], + "270024": [ + { + "id": 270024, + "a": "attr", + "t": "nexp", + "n": 5600, + "p": 1 + } + ], + "270025": [ + { + "id": 270025, + "a": "attr", + "t": "nexp", + "n": 5900, + "p": 1 + } + ], + "270026": [ + { + "id": 270026, + "a": "attr", + "t": "nexp", + "n": 6200, + "p": 1 + } + ], + "270027": [ + { + "id": 270027, + "a": "attr", + "t": "nexp", + "n": 6500, + "p": 1 + } + ], + "270028": [ + { + "id": 270028, + "a": "attr", + "t": "nexp", + "n": 6800, + "p": 1 + } + ], + "270029": [ + { + "id": 270029, + "a": "attr", + "t": "nexp", + "n": 7100, + "p": 1 + } + ], + "270030": [ + { + "id": 270030, + "a": "attr", + "t": "nexp", + "n": 7300, + "p": 1 + } + ], + "270031": [ + { + "id": 270031, + "a": "attr", + "t": "nexp", + "n": 7500, + "p": 1 + } + ], + "270032": [ + { + "id": 270032, + "a": "attr", + "t": "nexp", + "n": 7700, + "p": 1 + } + ], + "270033": [ + { + "id": 270033, + "a": "attr", + "t": "nexp", + "n": 7900, + "p": 1 + } + ], + "270034": [ + { + "id": 270034, + "a": "attr", + "t": "nexp", + "n": 8100, + "p": 1 + } + ], + "270035": [ + { + "id": 270035, + "a": "attr", + "t": "nexp", + "n": 8300, + "p": 1 + } + ], + "270036": [ + { + "id": 270036, + "a": "attr", + "t": "nexp", + "n": 8400, + "p": 1 + } + ], + "270037": [ + { + "id": 270037, + "a": "attr", + "t": "nexp", + "n": 8526, + "p": 1 + } + ], + "270038": [ + { + "id": 270038, + "a": "attr", + "t": "nexp", + "n": 8757, + "p": 1 + } + ], + "270039": [ + { + "id": 270039, + "a": "attr", + "t": "nexp", + "n": 8987, + "p": 1 + } + ], + "270040": [ + { + "id": 270040, + "a": "attr", + "t": "nexp", + "n": 9218, + "p": 1 + } + ], + "270041": [ + { + "id": 270041, + "a": "attr", + "t": "nexp", + "n": 9448, + "p": 1 + } + ], + "270042": [ + { + "id": 270042, + "a": "attr", + "t": "nexp", + "n": 9679, + "p": 1 + } + ], + "270043": [ + { + "id": 270043, + "a": "attr", + "t": "nexp", + "n": 9909, + "p": 1 + } + ], + "270044": [ + { + "id": 270044, + "a": "attr", + "t": "nexp", + "n": 10140, + "p": 1 + } + ], + "270045": [ + { + "id": 270045, + "a": "attr", + "t": "nexp", + "n": 10370, + "p": 1 + } + ], + "270046": [ + { + "id": 270046, + "a": "attr", + "t": "nexp", + "n": 10600, + "p": 1 + } + ], + "270047": [ + { + "id": 270047, + "a": "attr", + "t": "nexp", + "n": 10831, + "p": 1 + } + ], + "270048": [ + { + "id": 270048, + "a": "attr", + "t": "nexp", + "n": 11061, + "p": 1 + } + ], + "270049": [ + { + "id": 270049, + "a": "attr", + "t": "nexp", + "n": 11292, + "p": 1 + } + ], + "270050": [ + { + "id": 270050, + "a": "attr", + "t": "nexp", + "n": 11522, + "p": 1 + } + ], + "270051": [ + { + "id": 270051, + "a": "attr", + "t": "nexp", + "n": 11753, + "p": 1 + } + ], + "270052": [ + { + "id": 270052, + "a": "attr", + "t": "nexp", + "n": 11983, + "p": 1 + } + ], + "270053": [ + { + "id": 270053, + "a": "attr", + "t": "nexp", + "n": 12214, + "p": 1 + } + ], + "270054": [ + { + "id": 270054, + "a": "attr", + "t": "nexp", + "n": 12444, + "p": 1 + } + ], + "270055": [ + { + "id": 270055, + "a": "attr", + "t": "nexp", + "n": 12674, + "p": 1 + } + ], + "270056": [ + { + "id": 270056, + "a": "attr", + "t": "nexp", + "n": 12905, + "p": 1 + } + ], + "270057": [ + { + "id": 270057, + "a": "attr", + "t": "nexp", + "n": 13135, + "p": 1 + } + ], + "270058": [ + { + "id": 270058, + "a": "attr", + "t": "nexp", + "n": 13366, + "p": 1 + } + ], + "270059": [ + { + "id": 270059, + "a": "attr", + "t": "nexp", + "n": 13596, + "p": 1 + } + ], + "270060": [ + { + "id": 270060, + "a": "attr", + "t": "nexp", + "n": 13827, + "p": 1 + } + ], + "270061": [ + { + "id": 270061, + "a": "attr", + "t": "nexp", + "n": 14057, + "p": 1 + } + ], + "270062": [ + { + "id": 270062, + "a": "attr", + "t": "nexp", + "n": 14288, + "p": 1 + } + ], + "270063": [ + { + "id": 270063, + "a": "attr", + "t": "nexp", + "n": 14518, + "p": 1 + } + ], + "270064": [ + { + "id": 270064, + "a": "attr", + "t": "nexp", + "n": 14748, + "p": 1 + } + ], + "270065": [ + { + "id": 270065, + "a": "attr", + "t": "nexp", + "n": 14979, + "p": 1 + } + ], + "270066": [ + { + "id": 270066, + "a": "attr", + "t": "nexp", + "n": 15209, + "p": 1 + } + ], + "270067": [ + { + "id": 270067, + "a": "attr", + "t": "nexp", + "n": 15440, + "p": 1 + } + ], + "270068": [ + { + "id": 270068, + "a": "attr", + "t": "nexp", + "n": 15671, + "p": 1 + } + ], + "270069": [ + { + "id": 270069, + "a": "attr", + "t": "nexp", + "n": 15902, + "p": 1 + } + ], + "270070": [ + { + "id": 270070, + "a": "attr", + "t": "nexp", + "n": 16133, + "p": 1 + } + ], + "270071": [ + { + "id": 270071, + "a": "attr", + "t": "nexp", + "n": 16364, + "p": 1 + } + ], + "270072": [ + { + "id": 270072, + "a": "attr", + "t": "nexp", + "n": 16595, + "p": 1 + } + ], + "270073": [ + { + "id": 270073, + "a": "attr", + "t": "nexp", + "n": 16826, + "p": 1 + } + ], + "270074": [ + { + "id": 270074, + "a": "attr", + "t": "nexp", + "n": 17057, + "p": 1 + } + ], + "270075": [ + { + "id": 270075, + "a": "attr", + "t": "nexp", + "n": 17288, + "p": 1 + } + ], + "270076": [ + { + "id": 270076, + "a": "attr", + "t": "nexp", + "n": 17519, + "p": 1 + } + ], + "270077": [ + { + "id": 270077, + "a": "attr", + "t": "nexp", + "n": 17750, + "p": 1 + } + ], + "270078": [ + { + "id": 270078, + "a": "attr", + "t": "nexp", + "n": 17981, + "p": 1 + } + ], + "270079": [ + { + "id": 270079, + "a": "attr", + "t": "nexp", + "n": 18212, + "p": 1 + } + ], + "270080": [ + { + "id": 270080, + "a": "attr", + "t": "nexp", + "n": 18443, + "p": 1 + } + ], + "270081": [ + { + "id": 270081, + "a": "attr", + "t": "nexp", + "n": 18674, + "p": 1 + } + ], + "270082": [ + { + "id": 270082, + "a": "attr", + "t": "nexp", + "n": 18905, + "p": 1 + } + ], + "270083": [ + { + "id": 270083, + "a": "attr", + "t": "nexp", + "n": 19136, + "p": 1 + } + ], + "270084": [ + { + "id": 270084, + "a": "attr", + "t": "nexp", + "n": 19367, + "p": 1 + } + ], + "270085": [ + { + "id": 270085, + "a": "attr", + "t": "nexp", + "n": 19598, + "p": 1 + } + ], + "270086": [ + { + "id": 270086, + "a": "attr", + "t": "nexp", + "n": 19829, + "p": 1 + } + ], + "270087": [ + { + "id": 270087, + "a": "attr", + "t": "nexp", + "n": 20060, + "p": 1 + } + ], + "270088": [ + { + "id": 270088, + "a": "attr", + "t": "nexp", + "n": 20291, + "p": 1 + } + ], + "270089": [ + { + "id": 270089, + "a": "attr", + "t": "nexp", + "n": 20522, + "p": 1 + } + ], + "270090": [ + { + "id": 270090, + "a": "attr", + "t": "nexp", + "n": 20753, + "p": 1 + } + ], + "270091": [ + { + "id": 270091, + "a": "attr", + "t": "nexp", + "n": 20984, + "p": 1 + } + ], + "270092": [ + { + "id": 270092, + "a": "attr", + "t": "nexp", + "n": 21215, + "p": 1 + } + ], + "270093": [ + { + "id": 270093, + "a": "attr", + "t": "nexp", + "n": 21446, + "p": 1 + } + ], + "270094": [ + { + "id": 270094, + "a": "attr", + "t": "nexp", + "n": 21677, + "p": 1 + } + ], + "270095": [ + { + "id": 270095, + "a": "attr", + "t": "nexp", + "n": 21908, + "p": 1 + } + ], + "270096": [ + { + "id": 270096, + "a": "attr", + "t": "nexp", + "n": 22139, + "p": 1 + } + ], + "270097": [ + { + "id": 270097, + "a": "attr", + "t": "nexp", + "n": 22370, + "p": 1 + } + ], + "270098": [ + { + "id": 270098, + "a": "attr", + "t": "nexp", + "n": 22601, + "p": 1 + } + ], + "270099": [ + { + "id": 270099, + "a": "attr", + "t": "nexp", + "n": 22832, + "p": 1 + } + ], + "270100": [ + { + "id": 270100, + "a": "attr", + "t": "nexp", + "n": 23063, + "p": 1 + } + ], + "270101": [ + { + "id": 270101, + "a": "attr", + "t": "nexp", + "n": 23294, + "p": 1 + } + ], + "270102": [ + { + "id": 270102, + "a": "attr", + "t": "nexp", + "n": 23525, + "p": 1 + } + ], + "270103": [ + { + "id": 270103, + "a": "attr", + "t": "nexp", + "n": 23756, + "p": 1 + } + ], + "270104": [ + { + "id": 270104, + "a": "attr", + "t": "nexp", + "n": 23987, + "p": 1 + } + ], + "270105": [ + { + "id": 270105, + "a": "attr", + "t": "nexp", + "n": 24218, + "p": 1 + } + ], + "270106": [ + { + "id": 270106, + "a": "attr", + "t": "nexp", + "n": 24449, + "p": 1 + } + ], + "270107": [ + { + "id": 270107, + "a": "attr", + "t": "nexp", + "n": 24680, + "p": 1 + } + ], + "270108": [ + { + "id": 270108, + "a": "attr", + "t": "nexp", + "n": 24911, + "p": 1 + } + ], + "270109": [ + { + "id": 270109, + "a": "attr", + "t": "nexp", + "n": 25142, + "p": 1 + } + ], + "270110": [ + { + "id": 270110, + "a": "attr", + "t": "nexp", + "n": 25373, + "p": 1 + } + ], + "270111": [ + { + "id": 270111, + "a": "attr", + "t": "nexp", + "n": 25604, + "p": 1 + } + ], + "270112": [ + { + "id": 270112, + "a": "attr", + "t": "nexp", + "n": 25835, + "p": 1 + } + ], + "270113": [ + { + "id": 270113, + "a": "attr", + "t": "nexp", + "n": 26066, + "p": 1 + } + ], + "270114": [ + { + "id": 270114, + "a": "attr", + "t": "nexp", + "n": 26297, + "p": 1 + } + ], + "270115": [ + { + "id": 270115, + "a": "attr", + "t": "nexp", + "n": 26528, + "p": 1 + } + ], + "270116": [ + { + "id": 270116, + "a": "attr", + "t": "nexp", + "n": 26759, + "p": 1 + } + ], + "270117": [ + { + "id": 270117, + "a": "attr", + "t": "nexp", + "n": 26990, + "p": 1 + } + ], + "270118": [ + { + "id": 270118, + "a": "attr", + "t": "nexp", + "n": 27221, + "p": 1 + } + ], + "270119": [ + { + "id": 270119, + "a": "attr", + "t": "nexp", + "n": 27452, + "p": 1 + } + ], + "270120": [ + { + "id": 270120, + "a": "attr", + "t": "nexp", + "n": 27683, + "p": 1 + } + ], + "270121": [ + { + "id": 270121, + "a": "attr", + "t": "nexp", + "n": 27914, + "p": 1 + } + ], + "270122": [ + { + "id": 270122, + "a": "attr", + "t": "nexp", + "n": 28145, + "p": 1 + } + ], + "270123": [ + { + "id": 270123, + "a": "attr", + "t": "nexp", + "n": 28376, + "p": 1 + } + ], + "270124": [ + { + "id": 270124, + "a": "attr", + "t": "nexp", + "n": 28607, + "p": 1 + } + ], + "270125": [ + { + "id": 270125, + "a": "attr", + "t": "nexp", + "n": 28838, + "p": 1 + } + ], + "270126": [ + { + "id": 270126, + "a": "attr", + "t": "nexp", + "n": 29069, + "p": 1 + } + ], + "270127": [ + { + "id": 270127, + "a": "attr", + "t": "nexp", + "n": 29300, + "p": 1 + } + ], + "270128": [ + { + "id": 270128, + "a": "attr", + "t": "nexp", + "n": 29531, + "p": 1 + } + ], + "270129": [ + { + "id": 270129, + "a": "attr", + "t": "nexp", + "n": 29762, + "p": 1 + } + ], + "270130": [ + { + "id": 270130, + "a": "attr", + "t": "nexp", + "n": 29993, + "p": 1 + } + ], + "270131": [ + { + "id": 270131, + "a": "attr", + "t": "nexp", + "n": 30224, + "p": 1 + } + ], + "270132": [ + { + "id": 270132, + "a": "attr", + "t": "nexp", + "n": 30455, + "p": 1 + } + ], + "270133": [ + { + "id": 270133, + "a": "attr", + "t": "nexp", + "n": 30686, + "p": 1 + } + ], + "270134": [ + { + "id": 270134, + "a": "attr", + "t": "nexp", + "n": 30917, + "p": 1 + } + ], + "270135": [ + { + "id": 270135, + "a": "attr", + "t": "nexp", + "n": 31148, + "p": 1 + } + ], + "270136": [ + { + "id": 270136, + "a": "attr", + "t": "nexp", + "n": 31379, + "p": 1 + } + ], + "270137": [ + { + "id": 270137, + "a": "attr", + "t": "nexp", + "n": 31610, + "p": 1 + } + ], + "270138": [ + { + "id": 270138, + "a": "attr", + "t": "nexp", + "n": 31841, + "p": 1 + } + ], + "270139": [ + { + "id": 270139, + "a": "attr", + "t": "nexp", + "n": 32072, + "p": 1 + } + ], + "270140": [ + { + "id": 270140, + "a": "attr", + "t": "nexp", + "n": 32303, + "p": 1 + } + ], + "270141": [ + { + "id": 270141, + "a": "attr", + "t": "nexp", + "n": 32534, + "p": 1 + } + ], + "270142": [ + { + "id": 270142, + "a": "attr", + "t": "nexp", + "n": 32765, + "p": 1 + } + ], + "270143": [ + { + "id": 270143, + "a": "attr", + "t": "nexp", + "n": 32996, + "p": 1 + } + ], + "270144": [ + { + "id": 270144, + "a": "attr", + "t": "nexp", + "n": 33227, + "p": 1 + } + ], + "270145": [ + { + "id": 270145, + "a": "attr", + "t": "nexp", + "n": 33458, + "p": 1 + } + ], + "270146": [ + { + "id": 270146, + "a": "attr", + "t": "nexp", + "n": 33689, + "p": 1 + } + ], + "270147": [ + { + "id": 270147, + "a": "attr", + "t": "nexp", + "n": 33920, + "p": 1 + } + ], + "270148": [ + { + "id": 270148, + "a": "attr", + "t": "nexp", + "n": 34151, + "p": 1 + } + ], + "270149": [ + { + "id": 270149, + "a": "attr", + "t": "nexp", + "n": 34382, + "p": 1 + } + ], + "270150": [ + { + "id": 270150, + "a": "attr", + "t": "nexp", + "n": 34613, + "p": 1 + } + ], + "270151": [ + { + "id": 270151, + "a": "attr", + "t": "nexp", + "n": 34844, + "p": 1 + } + ], + "270152": [ + { + "id": 270152, + "a": "attr", + "t": "nexp", + "n": 35075, + "p": 1 + } + ], + "270153": [ + { + "id": 270153, + "a": "attr", + "t": "nexp", + "n": 35306, + "p": 1 + } + ], + "270154": [ + { + "id": 270154, + "a": "attr", + "t": "nexp", + "n": 35537, + "p": 1 + } + ], + "270155": [ + { + "id": 270155, + "a": "attr", + "t": "nexp", + "n": 35768, + "p": 1 + } + ], + "270156": [ + { + "id": 270156, + "a": "attr", + "t": "nexp", + "n": 35999, + "p": 1 + } + ], + "270157": [ + { + "id": 270157, + "a": "attr", + "t": "nexp", + "n": 36230, + "p": 1 + } + ], + "270158": [ + { + "id": 270158, + "a": "attr", + "t": "nexp", + "n": 36461, + "p": 1 + } + ], + "270159": [ + { + "id": 270159, + "a": "attr", + "t": "nexp", + "n": 36692, + "p": 1 + } + ], + "270160": [ + { + "id": 270160, + "a": "attr", + "t": "nexp", + "n": 36923, + "p": 1 + } + ], + "270161": [ + { + "id": 270161, + "a": "attr", + "t": "nexp", + "n": 37154, + "p": 1 + } + ], + "270162": [ + { + "id": 270162, + "a": "attr", + "t": "nexp", + "n": 37385, + "p": 1 + } + ], + "270163": [ + { + "id": 270163, + "a": "attr", + "t": "nexp", + "n": 37616, + "p": 1 + } + ], + "270164": [ + { + "id": 270164, + "a": "attr", + "t": "nexp", + "n": 37847, + "p": 1 + } + ], + "270165": [ + { + "id": 270165, + "a": "attr", + "t": "nexp", + "n": 38078, + "p": 1 + } + ], + "270166": [ + { + "id": 270166, + "a": "attr", + "t": "nexp", + "n": 38309, + "p": 1 + } + ], + "270167": [ + { + "id": 270167, + "a": "attr", + "t": "nexp", + "n": 38540, + "p": 1 + } + ], + "270168": [ + { + "id": 270168, + "a": "attr", + "t": "nexp", + "n": 38771, + "p": 1 + } + ], + "270169": [ + { + "id": 270169, + "a": "attr", + "t": "nexp", + "n": 39002, + "p": 1 + } + ], + "270170": [ + { + "id": 270170, + "a": "attr", + "t": "nexp", + "n": 39233, + "p": 1 + } + ], + "270171": [ + { + "id": 270171, + "a": "attr", + "t": "nexp", + "n": 39464, + "p": 1 + } + ], + "270172": [ + { + "id": 270172, + "a": "attr", + "t": "nexp", + "n": 39695, + "p": 1 + } + ], + "270173": [ + { + "id": 270173, + "a": "attr", + "t": "nexp", + "n": 39926, + "p": 1 + } + ], + "270174": [ + { + "id": 270174, + "a": "attr", + "t": "nexp", + "n": 40157, + "p": 1 + } + ], + "270175": [ + { + "id": 270175, + "a": "attr", + "t": "nexp", + "n": 40388, + "p": 1 + } + ], + "270176": [ + { + "id": 270176, + "a": "attr", + "t": "nexp", + "n": 40619, + "p": 1 + } + ], + "270177": [ + { + "id": 270177, + "a": "attr", + "t": "nexp", + "n": 40850, + "p": 1 + } + ], + "270178": [ + { + "id": 270178, + "a": "attr", + "t": "nexp", + "n": 41081, + "p": 1 + } + ], + "270179": [ + { + "id": 270179, + "a": "attr", + "t": "nexp", + "n": 41312, + "p": 1 + } + ], + "270180": [ + { + "id": 270180, + "a": "attr", + "t": "nexp", + "n": 41543, + "p": 1 + } + ], + "270181": [ + { + "id": 270181, + "a": "attr", + "t": "nexp", + "n": 41774, + "p": 1 + } + ], + "270182": [ + { + "id": 270182, + "a": "attr", + "t": "nexp", + "n": 42005, + "p": 1 + } + ], + "270183": [ + { + "id": 270183, + "a": "attr", + "t": "nexp", + "n": 42236, + "p": 1 + } + ], + "270184": [ + { + "id": 270184, + "a": "attr", + "t": "nexp", + "n": 42467, + "p": 1 + } + ], + "270185": [ + { + "id": 270185, + "a": "attr", + "t": "nexp", + "n": 42698, + "p": 1 + } + ], + "270186": [ + { + "id": 270186, + "a": "attr", + "t": "nexp", + "n": 42929, + "p": 1 + } + ], + "270187": [ + { + "id": 270187, + "a": "attr", + "t": "nexp", + "n": 43160, + "p": 1 + } + ], + "270188": [ + { + "id": 270188, + "a": "attr", + "t": "nexp", + "n": 43391, + "p": 1 + } + ], + "270189": [ + { + "id": 270189, + "a": "attr", + "t": "nexp", + "n": 43622, + "p": 1 + } + ], + "270190": [ + { + "id": 270190, + "a": "attr", + "t": "nexp", + "n": 43853, + "p": 1 + } + ], + "270191": [ + { + "id": 270191, + "a": "attr", + "t": "nexp", + "n": 44084, + "p": 1 + } + ], + "270192": [ + { + "id": 270192, + "a": "attr", + "t": "nexp", + "n": 44315, + "p": 1 + } + ], + "270193": [ + { + "id": 270193, + "a": "attr", + "t": "nexp", + "n": 44546, + "p": 1 + } + ], + "270194": [ + { + "id": 270194, + "a": "attr", + "t": "nexp", + "n": 44777, + "p": 1 + } + ], + "270195": [ + { + "id": 270195, + "a": "attr", + "t": "nexp", + "n": 45008, + "p": 1 + } + ], + "270196": [ + { + "id": 270196, + "a": "attr", + "t": "nexp", + "n": 45239, + "p": 1 + } + ], + "270197": [ + { + "id": 270197, + "a": "attr", + "t": "nexp", + "n": 45470, + "p": 1 + } + ], + "270198": [ + { + "id": 270198, + "a": "attr", + "t": "nexp", + "n": 45701, + "p": 1 + } + ], + "270199": [ + { + "id": 270199, + "a": "attr", + "t": "nexp", + "n": 45932, + "p": 1 + } + ], + "270200": [ + { + "id": 270200, + "a": "attr", + "t": "nexp", + "n": 46163, + "p": 1 + } + ], + "270201": [ + { + "id": 270201, + "a": "attr", + "t": "nexp", + "n": 46394, + "p": 1 + } + ], + "270202": [ + { + "id": 270202, + "a": "attr", + "t": "nexp", + "n": 46625, + "p": 1 + } + ], + "270203": [ + { + "id": 270203, + "a": "attr", + "t": "nexp", + "n": 46856, + "p": 1 + } + ], + "270204": [ + { + "id": 270204, + "a": "attr", + "t": "nexp", + "n": 47087, + "p": 1 + } + ], + "270205": [ + { + "id": 270205, + "a": "attr", + "t": "nexp", + "n": 47318, + "p": 1 + } + ], + "270206": [ + { + "id": 270206, + "a": "attr", + "t": "nexp", + "n": 47549, + "p": 1 + } + ], + "270207": [ + { + "id": 270207, + "a": "attr", + "t": "nexp", + "n": 47780, + "p": 1 + } + ], + "270208": [ + { + "id": 270208, + "a": "attr", + "t": "nexp", + "n": 48011, + "p": 1 + } + ], + "270209": [ + { + "id": 270209, + "a": "attr", + "t": "nexp", + "n": 48242, + "p": 1 + } + ], + "270210": [ + { + "id": 270210, + "a": "attr", + "t": "nexp", + "n": 48473, + "p": 1 + } + ], + "270211": [ + { + "id": 270211, + "a": "attr", + "t": "nexp", + "n": 48704, + "p": 1 + } + ], + "270212": [ + { + "id": 270212, + "a": "attr", + "t": "nexp", + "n": 48935, + "p": 1 + } + ], + "270213": [ + { + "id": 270213, + "a": "attr", + "t": "nexp", + "n": 49166, + "p": 1 + } + ], + "270214": [ + { + "id": 270214, + "a": "attr", + "t": "nexp", + "n": 49397, + "p": 1 + } + ], + "270215": [ + { + "id": 270215, + "a": "attr", + "t": "nexp", + "n": 49628, + "p": 1 + } + ], + "270216": [ + { + "id": 270216, + "a": "attr", + "t": "nexp", + "n": 49859, + "p": 1 + } + ], + "270217": [ + { + "id": 270217, + "a": "attr", + "t": "nexp", + "n": 50090, + "p": 1 + } + ], + "270218": [ + { + "id": 270218, + "a": "attr", + "t": "nexp", + "n": 50321, + "p": 1 + } + ], + "270219": [ + { + "id": 270219, + "a": "attr", + "t": "nexp", + "n": 50552, + "p": 1 + } + ], + "270220": [ + { + "id": 270220, + "a": "attr", + "t": "nexp", + "n": 50783, + "p": 1 + } + ], + "270221": [ + { + "id": 270221, + "a": "attr", + "t": "nexp", + "n": 51014, + "p": 1 + } + ], + "270222": [ + { + "id": 270222, + "a": "attr", + "t": "nexp", + "n": 51245, + "p": 1 + } + ], + "270223": [ + { + "id": 270223, + "a": "attr", + "t": "nexp", + "n": 51476, + "p": 1 + } + ], + "270224": [ + { + "id": 270224, + "a": "attr", + "t": "nexp", + "n": 51707, + "p": 1 + } + ], + "270225": [ + { + "id": 270225, + "a": "attr", + "t": "nexp", + "n": 51938, + "p": 1 + } + ], + "270226": [ + { + "id": 270226, + "a": "attr", + "t": "nexp", + "n": 52169, + "p": 1 + } + ], + "270227": [ + { + "id": 270227, + "a": "attr", + "t": "nexp", + "n": 52400, + "p": 1 + } + ], + "270228": [ + { + "id": 270228, + "a": "attr", + "t": "nexp", + "n": 52631, + "p": 1 + } + ], + "270229": [ + { + "id": 270229, + "a": "attr", + "t": "nexp", + "n": 52862, + "p": 1 + } + ], + "270230": [ + { + "id": 270230, + "a": "attr", + "t": "nexp", + "n": 53093, + "p": 1 + } + ], + "270231": [ + { + "id": 270231, + "a": "attr", + "t": "nexp", + "n": 53324, + "p": 1 + } + ], + "270232": [ + { + "id": 270232, + "a": "attr", + "t": "nexp", + "n": 53555, + "p": 1 + } + ], + "270233": [ + { + "id": 270233, + "a": "attr", + "t": "nexp", + "n": 53786, + "p": 1 + } + ], + "270234": [ + { + "id": 270234, + "a": "attr", + "t": "nexp", + "n": 54017, + "p": 1 + } + ], + "270235": [ + { + "id": 270235, + "a": "attr", + "t": "nexp", + "n": 54248, + "p": 1 + } + ], + "270236": [ + { + "id": 270236, + "a": "attr", + "t": "nexp", + "n": 54479, + "p": 1 + } + ], + "270237": [ + { + "id": 270237, + "a": "attr", + "t": "nexp", + "n": 54710, + "p": 1 + } + ], + "270238": [ + { + "id": 270238, + "a": "attr", + "t": "nexp", + "n": 54941, + "p": 1 + } + ], + "270239": [ + { + "id": 270239, + "a": "attr", + "t": "nexp", + "n": 55172, + "p": 1 + } + ], + "270240": [ + { + "id": 270240, + "a": "attr", + "t": "nexp", + "n": 55403, + "p": 1 + } + ], + "270241": [ + { + "id": 270241, + "a": "attr", + "t": "nexp", + "n": 55634, + "p": 1 + } + ], + "270242": [ + { + "id": 270242, + "a": "attr", + "t": "nexp", + "n": 55865, + "p": 1 + } + ], + "270243": [ + { + "id": 270243, + "a": "attr", + "t": "nexp", + "n": 56096, + "p": 1 + } + ], + "270244": [ + { + "id": 270244, + "a": "attr", + "t": "nexp", + "n": 56327, + "p": 1 + } + ], + "270245": [ + { + "id": 270245, + "a": "attr", + "t": "nexp", + "n": 56558, + "p": 1 + } + ], + "270246": [ + { + "id": 270246, + "a": "attr", + "t": "nexp", + "n": 56789, + "p": 1 + } + ], + "270247": [ + { + "id": 270247, + "a": "attr", + "t": "nexp", + "n": 57020, + "p": 1 + } + ], + "270248": [ + { + "id": 270248, + "a": "attr", + "t": "nexp", + "n": 57251, + "p": 1 + } + ], + "270249": [ + { + "id": 270249, + "a": "attr", + "t": "nexp", + "n": 57482, + "p": 1 + } + ], + "270250": [ + { + "id": 270250, + "a": "attr", + "t": "nexp", + "n": 57713, + "p": 1 + } + ], + "270251": [ + { + "id": 270251, + "a": "attr", + "t": "nexp", + "n": 57944, + "p": 1 + } + ], + "270252": [ + { + "id": 270252, + "a": "attr", + "t": "nexp", + "n": 58175, + "p": 1 + } + ], + "270253": [ + { + "id": 270253, + "a": "attr", + "t": "nexp", + "n": 58406, + "p": 1 + } + ], + "270254": [ + { + "id": 270254, + "a": "attr", + "t": "nexp", + "n": 58637, + "p": 1 + } + ], + "270255": [ + { + "id": 270255, + "a": "attr", + "t": "nexp", + "n": 58868, + "p": 1 + } + ], + "270256": [ + { + "id": 270256, + "a": "attr", + "t": "nexp", + "n": 59099, + "p": 1 + } + ], + "270257": [ + { + "id": 270257, + "a": "attr", + "t": "nexp", + "n": 59330, + "p": 1 + } + ], + "270258": [ + { + "id": 270258, + "a": "attr", + "t": "nexp", + "n": 59561, + "p": 1 + } + ], + "270259": [ + { + "id": 270259, + "a": "attr", + "t": "nexp", + "n": 59792, + "p": 1 + } + ], + "270260": [ + { + "id": 270260, + "a": "attr", + "t": "nexp", + "n": 60023, + "p": 1 + } + ], + "270261": [ + { + "id": 270261, + "a": "attr", + "t": "nexp", + "n": 60254, + "p": 1 + } + ], + "270262": [ + { + "id": 270262, + "a": "attr", + "t": "nexp", + "n": 60485, + "p": 1 + } + ], + "270263": [ + { + "id": 270263, + "a": "attr", + "t": "nexp", + "n": 60716, + "p": 1 + } + ], + "270264": [ + { + "id": 270264, + "a": "attr", + "t": "nexp", + "n": 60947, + "p": 1 + } + ], + "270265": [ + { + "id": 270265, + "a": "attr", + "t": "nexp", + "n": 61178, + "p": 1 + } + ], + "270266": [ + { + "id": 270266, + "a": "attr", + "t": "nexp", + "n": 61409, + "p": 1 + } + ], + "270267": [ + { + "id": 270267, + "a": "attr", + "t": "nexp", + "n": 61640, + "p": 1 + } + ], + "270268": [ + { + "id": 270268, + "a": "attr", + "t": "nexp", + "n": 61871, + "p": 1 + } + ], + "270269": [ + { + "id": 270269, + "a": "attr", + "t": "nexp", + "n": 62102, + "p": 1 + } + ], + "270270": [ + { + "id": 270270, + "a": "attr", + "t": "nexp", + "n": 62333, + "p": 1 + } + ], + "270271": [ + { + "id": 270271, + "a": "attr", + "t": "nexp", + "n": 62564, + "p": 1 + } + ], + "270272": [ + { + "id": 270272, + "a": "attr", + "t": "nexp", + "n": 62795, + "p": 1 + } + ], + "270273": [ + { + "id": 270273, + "a": "attr", + "t": "nexp", + "n": 63026, + "p": 1 + } + ], + "270274": [ + { + "id": 270274, + "a": "attr", + "t": "nexp", + "n": 63257, + "p": 1 + } + ], + "270275": [ + { + "id": 270275, + "a": "attr", + "t": "nexp", + "n": 63488, + "p": 1 + } + ], + "270276": [ + { + "id": 270276, + "a": "attr", + "t": "nexp", + "n": 63719, + "p": 1 + } + ], + "270277": [ + { + "id": 270277, + "a": "attr", + "t": "nexp", + "n": 63950, + "p": 1 + } + ], + "270278": [ + { + "id": 270278, + "a": "attr", + "t": "nexp", + "n": 64181, + "p": 1 + } + ], + "270279": [ + { + "id": 270279, + "a": "attr", + "t": "nexp", + "n": 64412, + "p": 1 + } + ], + "270280": [ + { + "id": 270280, + "a": "attr", + "t": "nexp", + "n": 64643, + "p": 1 + } + ], + "270281": [ + { + "id": 270281, + "a": "attr", + "t": "nexp", + "n": 64874, + "p": 1 + } + ], + "270282": [ + { + "id": 270282, + "a": "attr", + "t": "nexp", + "n": 65105, + "p": 1 + } + ], + "270283": [ + { + "id": 270283, + "a": "attr", + "t": "nexp", + "n": 65336, + "p": 1 + } + ], + "270284": [ + { + "id": 270284, + "a": "attr", + "t": "nexp", + "n": 65567, + "p": 1 + } + ], + "270285": [ + { + "id": 270285, + "a": "attr", + "t": "nexp", + "n": 65798, + "p": 1 + } + ], + "270286": [ + { + "id": 270286, + "a": "attr", + "t": "nexp", + "n": 66029, + "p": 1 + } + ], + "270287": [ + { + "id": 270287, + "a": "attr", + "t": "nexp", + "n": 66260, + "p": 1 + } + ], + "270288": [ + { + "id": 270288, + "a": "attr", + "t": "nexp", + "n": 66491, + "p": 1 + } + ], + "270289": [ + { + "id": 270289, + "a": "attr", + "t": "nexp", + "n": 66722, + "p": 1 + } + ], + "270290": [ + { + "id": 270290, + "a": "attr", + "t": "nexp", + "n": 66953, + "p": 1 + } + ], + "270291": [ + { + "id": 270291, + "a": "attr", + "t": "nexp", + "n": 67184, + "p": 1 + } + ], + "270292": [ + { + "id": 270292, + "a": "attr", + "t": "nexp", + "n": 67415, + "p": 1 + } + ], + "270293": [ + { + "id": 270293, + "a": "attr", + "t": "nexp", + "n": 67646, + "p": 1 + } + ], + "270294": [ + { + "id": 270294, + "a": "attr", + "t": "nexp", + "n": 67877, + "p": 1 + } + ], + "270295": [ + { + "id": 270295, + "a": "attr", + "t": "nexp", + "n": 68108, + "p": 1 + } + ], + "270296": [ + { + "id": 270296, + "a": "attr", + "t": "nexp", + "n": 68339, + "p": 1 + } + ], + "270297": [ + { + "id": 270297, + "a": "attr", + "t": "nexp", + "n": 68570, + "p": 1 + } + ], + "270298": [ + { + "id": 270298, + "a": "attr", + "t": "nexp", + "n": 68801, + "p": 1 + } + ], + "270299": [ + { + "id": 270299, + "a": "attr", + "t": "nexp", + "n": 69032, + "p": 1 + } + ], + "270300": [ + { + "id": 270300, + "a": "attr", + "t": "nexp", + "n": 69263, + "p": 1 + } + ], + "270301": [ + { + "id": 270301, + "a": "attr", + "t": "nexp", + "n": 69494, + "p": 1 + } + ], + "270302": [ + { + "id": 270302, + "a": "attr", + "t": "nexp", + "n": 69725, + "p": 1 + } + ], + "270303": [ + { + "id": 270303, + "a": "attr", + "t": "nexp", + "n": 69956, + "p": 1 + } + ], + "270304": [ + { + "id": 270304, + "a": "attr", + "t": "nexp", + "n": 70187, + "p": 1 + } + ], + "270305": [ + { + "id": 270305, + "a": "attr", + "t": "nexp", + "n": 70418, + "p": 1 + } + ], + "270306": [ + { + "id": 270306, + "a": "attr", + "t": "nexp", + "n": 70649, + "p": 1 + } + ], + "270307": [ + { + "id": 270307, + "a": "attr", + "t": "nexp", + "n": 70880, + "p": 1 + } + ], + "270308": [ + { + "id": 270308, + "a": "attr", + "t": "nexp", + "n": 71111, + "p": 1 + } + ], + "270309": [ + { + "id": 270309, + "a": "attr", + "t": "nexp", + "n": 71342, + "p": 1 + } + ], + "270310": [ + { + "id": 270310, + "a": "attr", + "t": "nexp", + "n": 71573, + "p": 1 + } + ], + "270311": [ + { + "id": 270311, + "a": "attr", + "t": "nexp", + "n": 71804, + "p": 1 + } + ], + "270312": [ + { + "id": 270312, + "a": "attr", + "t": "nexp", + "n": 72035, + "p": 1 + } + ], + "270313": [ + { + "id": 270313, + "a": "attr", + "t": "nexp", + "n": 72266, + "p": 1 + } + ], + "270314": [ + { + "id": 270314, + "a": "attr", + "t": "nexp", + "n": 72497, + "p": 1 + } + ], + "270315": [ + { + "id": 270315, + "a": "attr", + "t": "nexp", + "n": 72728, + "p": 1 + } + ], + "270316": [ + { + "id": 270316, + "a": "attr", + "t": "nexp", + "n": 72959, + "p": 1 + } + ], + "270317": [ + { + "id": 270317, + "a": "attr", + "t": "nexp", + "n": 73190, + "p": 1 + } + ], + "270318": [ + { + "id": 270318, + "a": "attr", + "t": "nexp", + "n": 73421, + "p": 1 + } + ], + "270319": [ + { + "id": 270319, + "a": "attr", + "t": "nexp", + "n": 73652, + "p": 1 + } + ], + "270320": [ + { + "id": 270320, + "a": "attr", + "t": "nexp", + "n": 73883, + "p": 1 + } + ], + "270321": [ + { + "id": 270321, + "a": "attr", + "t": "nexp", + "n": 74114, + "p": 1 + } + ], + "270322": [ + { + "id": 270322, + "a": "attr", + "t": "nexp", + "n": 74345, + "p": 1 + } + ], + "270323": [ + { + "id": 270323, + "a": "attr", + "t": "nexp", + "n": 74576, + "p": 1 + } + ], + "270324": [ + { + "id": 270324, + "a": "attr", + "t": "nexp", + "n": 74807, + "p": 1 + } + ], + "270325": [ + { + "id": 270325, + "a": "attr", + "t": "nexp", + "n": 75038, + "p": 1 + } + ], + "270326": [ + { + "id": 270326, + "a": "attr", + "t": "nexp", + "n": 75269, + "p": 1 + } + ], + "270327": [ + { + "id": 270327, + "a": "attr", + "t": "nexp", + "n": 75500, + "p": 1 + } + ], + "270328": [ + { + "id": 270328, + "a": "attr", + "t": "nexp", + "n": 75731, + "p": 1 + } + ], + "270329": [ + { + "id": 270329, + "a": "attr", + "t": "nexp", + "n": 75962, + "p": 1 + } + ], + "270330": [ + { + "id": 270330, + "a": "attr", + "t": "nexp", + "n": 76193, + "p": 1 + } + ], + "270331": [ + { + "id": 270331, + "a": "attr", + "t": "nexp", + "n": 76424, + "p": 1 + } + ], + "270332": [ + { + "id": 270332, + "a": "attr", + "t": "nexp", + "n": 76655, + "p": 1 + } + ], + "270333": [ + { + "id": 270333, + "a": "attr", + "t": "nexp", + "n": 76886, + "p": 1 + } + ], + "270334": [ + { + "id": 270334, + "a": "attr", + "t": "nexp", + "n": 77117, + "p": 1 + } + ], + "270335": [ + { + "id": 270335, + "a": "attr", + "t": "nexp", + "n": 77348, + "p": 1 + } + ], + "270336": [ + { + "id": 270336, + "a": "attr", + "t": "nexp", + "n": 77579, + "p": 1 + } + ], + "270337": [ + { + "id": 270337, + "a": "attr", + "t": "nexp", + "n": 77810, + "p": 1 + } + ], + "270338": [ + { + "id": 270338, + "a": "attr", + "t": "nexp", + "n": 78041, + "p": 1 + } + ], + "270339": [ + { + "id": 270339, + "a": "attr", + "t": "nexp", + "n": 78272, + "p": 1 + } + ], + "270340": [ + { + "id": 270340, + "a": "attr", + "t": "nexp", + "n": 78503, + "p": 1 + } + ], + "270341": [ + { + "id": 270341, + "a": "attr", + "t": "nexp", + "n": 78734, + "p": 1 + } + ], + "270342": [ + { + "id": 270342, + "a": "attr", + "t": "nexp", + "n": 78965, + "p": 1 + } + ], + "270343": [ + { + "id": 270343, + "a": "attr", + "t": "nexp", + "n": 79196, + "p": 1 + } + ], + "270344": [ + { + "id": 270344, + "a": "attr", + "t": "nexp", + "n": 79427, + "p": 1 + } + ], + "270345": [ + { + "id": 270345, + "a": "attr", + "t": "nexp", + "n": 79658, + "p": 1 + } + ], + "270346": [ + { + "id": 270346, + "a": "attr", + "t": "nexp", + "n": 79889, + "p": 1 + } + ], + "270347": [ + { + "id": 270347, + "a": "attr", + "t": "nexp", + "n": 80120, + "p": 1 + } + ], + "270348": [ + { + "id": 270348, + "a": "attr", + "t": "nexp", + "n": 80351, + "p": 1 + } + ], + "270349": [ + { + "id": 270349, + "a": "attr", + "t": "nexp", + "n": 80582, + "p": 1 + } + ], + "270350": [ + { + "id": 270350, + "a": "attr", + "t": "nexp", + "n": 80813, + "p": 1 + } + ], + "270351": [ + { + "id": 270351, + "a": "attr", + "t": "nexp", + "n": 81044, + "p": 1 + } + ], + "270352": [ + { + "id": 270352, + "a": "attr", + "t": "nexp", + "n": 81275, + "p": 1 + } + ], + "270353": [ + { + "id": 270353, + "a": "attr", + "t": "nexp", + "n": 81506, + "p": 1 + } + ], + "270354": [ + { + "id": 270354, + "a": "attr", + "t": "nexp", + "n": 81737, + "p": 1 + } + ], + "270355": [ + { + "id": 270355, + "a": "attr", + "t": "nexp", + "n": 81968, + "p": 1 + } + ], + "270356": [ + { + "id": 270356, + "a": "attr", + "t": "nexp", + "n": 82199, + "p": 1 + } + ], + "270357": [ + { + "id": 270357, + "a": "attr", + "t": "nexp", + "n": 82430, + "p": 1 + } + ], + "270358": [ + { + "id": 270358, + "a": "attr", + "t": "nexp", + "n": 82661, + "p": 1 + } + ], + "270359": [ + { + "id": 270359, + "a": "attr", + "t": "nexp", + "n": 82892, + "p": 1 + } + ], + "270360": [ + { + "id": 270360, + "a": "attr", + "t": "nexp", + "n": 83123, + "p": 1 + } + ], + "270361": [ + { + "id": 270361, + "a": "attr", + "t": "nexp", + "n": 83354, + "p": 1 + } + ], + "270362": [ + { + "id": 270362, + "a": "attr", + "t": "nexp", + "n": 83585, + "p": 1 + } + ], + "270363": [ + { + "id": 270363, + "a": "attr", + "t": "nexp", + "n": 83816, + "p": 1 + } + ], + "270364": [ + { + "id": 270364, + "a": "attr", + "t": "nexp", + "n": 84047, + "p": 1 + } + ], + "270365": [ + { + "id": 270365, + "a": "attr", + "t": "nexp", + "n": 84278, + "p": 1 + } + ], + "270366": [ + { + "id": 270366, + "a": "attr", + "t": "nexp", + "n": 84509, + "p": 1 + } + ], + "270367": [ + { + "id": 270367, + "a": "attr", + "t": "nexp", + "n": 84740, + "p": 1 + } + ], + "270368": [ + { + "id": 270368, + "a": "attr", + "t": "nexp", + "n": 84971, + "p": 1 + } + ], + "270369": [ + { + "id": 270369, + "a": "attr", + "t": "nexp", + "n": 85202, + "p": 1 + } + ], + "270370": [ + { + "id": 270370, + "a": "attr", + "t": "nexp", + "n": 85433, + "p": 1 + } + ], + "270371": [ + { + "id": 270371, + "a": "attr", + "t": "nexp", + "n": 85664, + "p": 1 + } + ], + "270372": [ + { + "id": 270372, + "a": "attr", + "t": "nexp", + "n": 85895, + "p": 1 + } + ], + "270373": [ + { + "id": 270373, + "a": "attr", + "t": "nexp", + "n": 86126, + "p": 1 + } + ], + "270374": [ + { + "id": 270374, + "a": "attr", + "t": "nexp", + "n": 86357, + "p": 1 + } + ], + "270375": [ + { + "id": 270375, + "a": "attr", + "t": "nexp", + "n": 86588, + "p": 1 + } + ], + "270376": [ + { + "id": 270376, + "a": "attr", + "t": "nexp", + "n": 86819, + "p": 1 + } + ], + "270377": [ + { + "id": 270377, + "a": "attr", + "t": "nexp", + "n": 87050, + "p": 1 + } + ], + "270378": [ + { + "id": 270378, + "a": "attr", + "t": "nexp", + "n": 87281, + "p": 1 + } + ], + "270379": [ + { + "id": 270379, + "a": "attr", + "t": "nexp", + "n": 87512, + "p": 1 + } + ], + "270380": [ + { + "id": 270380, + "a": "attr", + "t": "nexp", + "n": 87743, + "p": 1 + } + ], + "270381": [ + { + "id": 270381, + "a": "attr", + "t": "nexp", + "n": 87974, + "p": 1 + } + ], + "270382": [ + { + "id": 270382, + "a": "attr", + "t": "nexp", + "n": 88205, + "p": 1 + } + ], + "270383": [ + { + "id": 270383, + "a": "attr", + "t": "nexp", + "n": 88436, + "p": 1 + } + ], + "270384": [ + { + "id": 270384, + "a": "attr", + "t": "nexp", + "n": 88667, + "p": 1 + } + ], + "270385": [ + { + "id": 270385, + "a": "attr", + "t": "nexp", + "n": 88898, + "p": 1 + } + ], + "270386": [ + { + "id": 270386, + "a": "attr", + "t": "nexp", + "n": 89129, + "p": 1 + } + ], + "270387": [ + { + "id": 270387, + "a": "attr", + "t": "nexp", + "n": 89360, + "p": 1 + } + ], + "270388": [ + { + "id": 270388, + "a": "attr", + "t": "nexp", + "n": 89591, + "p": 1 + } + ], + "270389": [ + { + "id": 270389, + "a": "attr", + "t": "nexp", + "n": 89822, + "p": 1 + } + ], + "270390": [ + { + "id": 270390, + "a": "attr", + "t": "nexp", + "n": 90053, + "p": 1 + } + ], + "270391": [ + { + "id": 270391, + "a": "attr", + "t": "nexp", + "n": 90284, + "p": 1 + } + ], + "270392": [ + { + "id": 270392, + "a": "attr", + "t": "nexp", + "n": 90515, + "p": 1 + } + ], + "270393": [ + { + "id": 270393, + "a": "attr", + "t": "nexp", + "n": 90746, + "p": 1 + } + ], + "270394": [ + { + "id": 270394, + "a": "attr", + "t": "nexp", + "n": 90977, + "p": 1 + } + ], + "270395": [ + { + "id": 270395, + "a": "attr", + "t": "nexp", + "n": 91208, + "p": 1 + } + ], + "270396": [ + { + "id": 270396, + "a": "attr", + "t": "nexp", + "n": 91439, + "p": 1 + } + ], + "270397": [ + { + "id": 270397, + "a": "attr", + "t": "nexp", + "n": 91670, + "p": 1 + } + ], + "270398": [ + { + "id": 270398, + "a": "attr", + "t": "nexp", + "n": 91901, + "p": 1 + } + ], + "270399": [ + { + "id": 270399, + "a": "attr", + "t": "nexp", + "n": 92132, + "p": 1 + } + ], + "270400": [ + { + "id": 270400, + "a": "attr", + "t": "nexp", + "n": 92363, + "p": 1 + } + ], + "270401": [ + { + "id": 270401, + "a": "attr", + "t": "nexp", + "n": 92594, + "p": 1 + } + ], + "270402": [ + { + "id": 270402, + "a": "attr", + "t": "nexp", + "n": 92825, + "p": 1 + } + ], + "270403": [ + { + "id": 270403, + "a": "attr", + "t": "nexp", + "n": 93056, + "p": 1 + } + ], + "270404": [ + { + "id": 270404, + "a": "attr", + "t": "nexp", + "n": 93287, + "p": 1 + } + ], + "270405": [ + { + "id": 270405, + "a": "attr", + "t": "nexp", + "n": 93518, + "p": 1 + } + ], + "270406": [ + { + "id": 270406, + "a": "attr", + "t": "nexp", + "n": 93749, + "p": 1 + } + ], + "270407": [ + { + "id": 270407, + "a": "attr", + "t": "nexp", + "n": 93980, + "p": 1 + } + ], + "270408": [ + { + "id": 270408, + "a": "attr", + "t": "nexp", + "n": 94211, + "p": 1 + } + ], + "270409": [ + { + "id": 270409, + "a": "attr", + "t": "nexp", + "n": 94442, + "p": 1 + } + ], + "270410": [ + { + "id": 270410, + "a": "attr", + "t": "nexp", + "n": 94673, + "p": 1 + } + ], + "270411": [ + { + "id": 270411, + "a": "attr", + "t": "nexp", + "n": 94904, + "p": 1 + } + ], + "270412": [ + { + "id": 270412, + "a": "attr", + "t": "nexp", + "n": 95135, + "p": 1 + } + ], + "270413": [ + { + "id": 270413, + "a": "attr", + "t": "nexp", + "n": 95366, + "p": 1 + } + ], + "270414": [ + { + "id": 270414, + "a": "attr", + "t": "nexp", + "n": 95597, + "p": 1 + } + ], + "270415": [ + { + "id": 270415, + "a": "attr", + "t": "nexp", + "n": 95828, + "p": 1 + } + ], + "270416": [ + { + "id": 270416, + "a": "attr", + "t": "nexp", + "n": 96059, + "p": 1 + } + ], + "270417": [ + { + "id": 270417, + "a": "attr", + "t": "nexp", + "n": 96290, + "p": 1 + } + ], + "270418": [ + { + "id": 270418, + "a": "attr", + "t": "nexp", + "n": 96521, + "p": 1 + } + ], + "270419": [ + { + "id": 270419, + "a": "attr", + "t": "nexp", + "n": 96752, + "p": 1 + } + ], + "270420": [ + { + "id": 270420, + "a": "attr", + "t": "nexp", + "n": 96983, + "p": 1 + } + ], + "270421": [ + { + "id": 270421, + "a": "attr", + "t": "nexp", + "n": 97214, + "p": 1 + } + ], + "270422": [ + { + "id": 270422, + "a": "attr", + "t": "nexp", + "n": 97445, + "p": 1 + } + ], + "270423": [ + { + "id": 270423, + "a": "attr", + "t": "nexp", + "n": 97676, + "p": 1 + } + ], + "270424": [ + { + "id": 270424, + "a": "attr", + "t": "nexp", + "n": 97907, + "p": 1 + } + ], + "270425": [ + { + "id": 270425, + "a": "attr", + "t": "nexp", + "n": 98138, + "p": 1 + } + ], + "270426": [ + { + "id": 270426, + "a": "attr", + "t": "nexp", + "n": 98369, + "p": 1 + } + ], + "270427": [ + { + "id": 270427, + "a": "attr", + "t": "nexp", + "n": 98600, + "p": 1 + } + ], + "270428": [ + { + "id": 270428, + "a": "attr", + "t": "nexp", + "n": 98831, + "p": 1 + } + ], + "270429": [ + { + "id": 270429, + "a": "attr", + "t": "nexp", + "n": 99062, + "p": 1 + } + ], + "270430": [ + { + "id": 270430, + "a": "attr", + "t": "nexp", + "n": 99293, + "p": 1 + } + ], + "270431": [ + { + "id": 270431, + "a": "attr", + "t": "nexp", + "n": 99524, + "p": 1 + } + ], + "270432": [ + { + "id": 270432, + "a": "attr", + "t": "nexp", + "n": 99755, + "p": 1 + } + ], + "270433": [ + { + "id": 270433, + "a": "attr", + "t": "nexp", + "n": 99986, + "p": 1 + } + ], + "270434": [ + { + "id": 270434, + "a": "attr", + "t": "nexp", + "n": 100217, + "p": 1 + } + ], + "270435": [ + { + "id": 270435, + "a": "attr", + "t": "nexp", + "n": 100448, + "p": 1 + } + ], + "270436": [ + { + "id": 270436, + "a": "attr", + "t": "nexp", + "n": 100679, + "p": 1 + } + ], + "270437": [ + { + "id": 270437, + "a": "attr", + "t": "nexp", + "n": 100910, + "p": 1 + } + ], + "270438": [ + { + "id": 270438, + "a": "attr", + "t": "nexp", + "n": 101141, + "p": 1 + } + ], + "270439": [ + { + "id": 270439, + "a": "attr", + "t": "nexp", + "n": 101372, + "p": 1 + } + ], + "270440": [ + { + "id": 270440, + "a": "attr", + "t": "nexp", + "n": 101603, + "p": 1 + } + ], + "270441": [ + { + "id": 270441, + "a": "attr", + "t": "nexp", + "n": 101834, + "p": 1 + } + ], + "270442": [ + { + "id": 270442, + "a": "attr", + "t": "nexp", + "n": 102065, + "p": 1 + } + ], + "270443": [ + { + "id": 270443, + "a": "attr", + "t": "nexp", + "n": 102296, + "p": 1 + } + ], + "270444": [ + { + "id": 270444, + "a": "attr", + "t": "nexp", + "n": 102527, + "p": 1 + } + ], + "270445": [ + { + "id": 270445, + "a": "attr", + "t": "nexp", + "n": 102758, + "p": 1 + } + ], + "270446": [ + { + "id": 270446, + "a": "attr", + "t": "nexp", + "n": 102989, + "p": 1 + } + ], + "270447": [ + { + "id": 270447, + "a": "attr", + "t": "nexp", + "n": 103220, + "p": 1 + } + ], + "270448": [ + { + "id": 270448, + "a": "attr", + "t": "nexp", + "n": 103451, + "p": 1 + } + ], + "270449": [ + { + "id": 270449, + "a": "attr", + "t": "nexp", + "n": 103682, + "p": 1 + } + ], + "270450": [ + { + "id": 270450, + "a": "attr", + "t": "nexp", + "n": 103913, + "p": 1 + } + ], + "270451": [ + { + "id": 270451, + "a": "attr", + "t": "nexp", + "n": 104144, + "p": 1 + } + ], + "270452": [ + { + "id": 270452, + "a": "attr", + "t": "nexp", + "n": 104375, + "p": 1 + } + ], + "270453": [ + { + "id": 270453, + "a": "attr", + "t": "nexp", + "n": 104606, + "p": 1 + } + ], + "270454": [ + { + "id": 270454, + "a": "attr", + "t": "nexp", + "n": 104837, + "p": 1 + } + ], + "270455": [ + { + "id": 270455, + "a": "attr", + "t": "nexp", + "n": 105068, + "p": 1 + } + ], + "270456": [ + { + "id": 270456, + "a": "attr", + "t": "nexp", + "n": 105299, + "p": 1 + } + ], + "270457": [ + { + "id": 270457, + "a": "attr", + "t": "nexp", + "n": 105530, + "p": 1 + } + ], + "270458": [ + { + "id": 270458, + "a": "attr", + "t": "nexp", + "n": 105761, + "p": 1 + } + ], + "270459": [ + { + "id": 270459, + "a": "attr", + "t": "nexp", + "n": 105992, + "p": 1 + } + ], + "270460": [ + { + "id": 270460, + "a": "attr", + "t": "nexp", + "n": 106223, + "p": 1 + } + ], + "270461": [ + { + "id": 270461, + "a": "attr", + "t": "nexp", + "n": 106454, + "p": 1 + } + ], + "270462": [ + { + "id": 270462, + "a": "attr", + "t": "nexp", + "n": 106685, + "p": 1 + } + ], + "270463": [ + { + "id": 270463, + "a": "attr", + "t": "nexp", + "n": 106916, + "p": 1 + } + ], + "270464": [ + { + "id": 270464, + "a": "attr", + "t": "nexp", + "n": 107147, + "p": 1 + } + ], + "270465": [ + { + "id": 270465, + "a": "attr", + "t": "nexp", + "n": 107378, + "p": 1 + } + ], + "270466": [ + { + "id": 270466, + "a": "attr", + "t": "nexp", + "n": 107609, + "p": 1 + } + ], + "270467": [ + { + "id": 270467, + "a": "attr", + "t": "nexp", + "n": 107840, + "p": 1 + } + ], + "270468": [ + { + "id": 270468, + "a": "attr", + "t": "nexp", + "n": 108071, + "p": 1 + } + ], + "270469": [ + { + "id": 270469, + "a": "attr", + "t": "nexp", + "n": 108302, + "p": 1 + } + ], + "270470": [ + { + "id": 270470, + "a": "attr", + "t": "nexp", + "n": 108533, + "p": 1 + } + ], + "270471": [ + { + "id": 270471, + "a": "attr", + "t": "nexp", + "n": 108764, + "p": 1 + } + ], + "270472": [ + { + "id": 270472, + "a": "attr", + "t": "nexp", + "n": 108995, + "p": 1 + } + ], + "270473": [ + { + "id": 270473, + "a": "attr", + "t": "nexp", + "n": 109226, + "p": 1 + } + ], + "270474": [ + { + "id": 270474, + "a": "attr", + "t": "nexp", + "n": 109457, + "p": 1 + } + ], + "270475": [ + { + "id": 270475, + "a": "attr", + "t": "nexp", + "n": 109688, + "p": 1 + } + ], + "270476": [ + { + "id": 270476, + "a": "attr", + "t": "nexp", + "n": 109919, + "p": 1 + } + ], + "270477": [ + { + "id": 270477, + "a": "attr", + "t": "nexp", + "n": 110150, + "p": 1 + } + ], + "270478": [ + { + "id": 270478, + "a": "attr", + "t": "nexp", + "n": 110381, + "p": 1 + } + ], + "270479": [ + { + "id": 270479, + "a": "attr", + "t": "nexp", + "n": 110612, + "p": 1 + } + ], + "270480": [ + { + "id": 270480, + "a": "attr", + "t": "nexp", + "n": 110843, + "p": 1 + } + ], + "270481": [ + { + "id": 270481, + "a": "attr", + "t": "nexp", + "n": 111074, + "p": 1 + } + ], + "270482": [ + { + "id": 270482, + "a": "attr", + "t": "nexp", + "n": 111305, + "p": 1 + } + ], + "270483": [ + { + "id": 270483, + "a": "attr", + "t": "nexp", + "n": 111536, + "p": 1 + } + ], + "270484": [ + { + "id": 270484, + "a": "attr", + "t": "nexp", + "n": 111767, + "p": 1 + } + ], + "270485": [ + { + "id": 270485, + "a": "attr", + "t": "nexp", + "n": 111998, + "p": 1 + } + ], + "270486": [ + { + "id": 270486, + "a": "attr", + "t": "nexp", + "n": 112229, + "p": 1 + } + ], + "270487": [ + { + "id": 270487, + "a": "attr", + "t": "nexp", + "n": 112460, + "p": 1 + } + ], + "270488": [ + { + "id": 270488, + "a": "attr", + "t": "nexp", + "n": 112691, + "p": 1 + } + ], + "270489": [ + { + "id": 270489, + "a": "attr", + "t": "nexp", + "n": 112922, + "p": 1 + } + ], + "270490": [ + { + "id": 270490, + "a": "attr", + "t": "nexp", + "n": 113153, + "p": 1 + } + ], + "270491": [ + { + "id": 270491, + "a": "attr", + "t": "nexp", + "n": 113384, + "p": 1 + } + ], + "270492": [ + { + "id": 270492, + "a": "attr", + "t": "nexp", + "n": 113615, + "p": 1 + } + ], + "270493": [ + { + "id": 270493, + "a": "attr", + "t": "nexp", + "n": 113846, + "p": 1 + } + ], + "270494": [ + { + "id": 270494, + "a": "attr", + "t": "nexp", + "n": 114077, + "p": 1 + } + ], + "270495": [ + { + "id": 270495, + "a": "attr", + "t": "nexp", + "n": 114308, + "p": 1 + } + ], + "270496": [ + { + "id": 270496, + "a": "attr", + "t": "nexp", + "n": 114539, + "p": 1 + } + ], + "270497": [ + { + "id": 270497, + "a": "attr", + "t": "nexp", + "n": 114770, + "p": 1 + } + ], + "270498": [ + { + "id": 270498, + "a": "attr", + "t": "nexp", + "n": 115001, + "p": 1 + } + ], + "270499": [ + { + "id": 270499, + "a": "attr", + "t": "nexp", + "n": 115232, + "p": 1 + } + ], + "270500": [ + { + "id": 270500, + "a": "attr", + "t": "nexp", + "n": 115463, + "p": 1 + } + ], + "270501": [ + { + "id": 270501, + "a": "attr", + "t": "nexp", + "n": 115694, + "p": 1 + } + ], + "270502": [ + { + "id": 270502, + "a": "attr", + "t": "nexp", + "n": 115925, + "p": 1 + } + ], + "270503": [ + { + "id": 270503, + "a": "attr", + "t": "nexp", + "n": 116156, + "p": 1 + } + ], + "270504": [ + { + "id": 270504, + "a": "attr", + "t": "nexp", + "n": 116387, + "p": 1 + } + ], + "270505": [ + { + "id": 270505, + "a": "attr", + "t": "nexp", + "n": 116618, + "p": 1 + } + ], + "270506": [ + { + "id": 270506, + "a": "attr", + "t": "nexp", + "n": 116849, + "p": 1 + } + ], + "270507": [ + { + "id": 270507, + "a": "attr", + "t": "nexp", + "n": 117080, + "p": 1 + } + ], + "270508": [ + { + "id": 270508, + "a": "attr", + "t": "nexp", + "n": 117311, + "p": 1 + } + ], + "270509": [ + { + "id": 270509, + "a": "attr", + "t": "nexp", + "n": 117542, + "p": 1 + } + ], + "270510": [ + { + "id": 270510, + "a": "attr", + "t": "nexp", + "n": 117773, + "p": 1 + } + ], + "270511": [ + { + "id": 270511, + "a": "attr", + "t": "nexp", + "n": 118004, + "p": 1 + } + ], + "270512": [ + { + "id": 270512, + "a": "attr", + "t": "nexp", + "n": 118235, + "p": 1 + } + ], + "270513": [ + { + "id": 270513, + "a": "attr", + "t": "nexp", + "n": 118466, + "p": 1 + } + ], + "270514": [ + { + "id": 270514, + "a": "attr", + "t": "nexp", + "n": 118697, + "p": 1 + } + ], + "270515": [ + { + "id": 270515, + "a": "attr", + "t": "nexp", + "n": 118928, + "p": 1 + } + ], + "270516": [ + { + "id": 270516, + "a": "attr", + "t": "nexp", + "n": 119159, + "p": 1 + } + ], + "270517": [ + { + "id": 270517, + "a": "attr", + "t": "nexp", + "n": 119390, + "p": 1 + } + ], + "270518": [ + { + "id": 270518, + "a": "attr", + "t": "nexp", + "n": 119621, + "p": 1 + } + ], + "270519": [ + { + "id": 270519, + "a": "attr", + "t": "nexp", + "n": 119852, + "p": 1 + } + ], + "270520": [ + { + "id": 270520, + "a": "attr", + "t": "nexp", + "n": 120083, + "p": 1 + } + ], + "270521": [ + { + "id": 270521, + "a": "attr", + "t": "nexp", + "n": 120314, + "p": 1 + } + ], + "270522": [ + { + "id": 270522, + "a": "attr", + "t": "nexp", + "n": 120545, + "p": 1 + } + ], + "270523": [ + { + "id": 270523, + "a": "attr", + "t": "nexp", + "n": 120776, + "p": 1 + } + ], + "270524": [ + { + "id": 270524, + "a": "attr", + "t": "nexp", + "n": 121007, + "p": 1 + } + ], + "270525": [ + { + "id": 270525, + "a": "attr", + "t": "nexp", + "n": 121238, + "p": 1 + } + ], + "270526": [ + { + "id": 270526, + "a": "attr", + "t": "nexp", + "n": 121469, + "p": 1 + } + ], + "270527": [ + { + "id": 270527, + "a": "attr", + "t": "nexp", + "n": 121700, + "p": 1 + } + ], + "270528": [ + { + "id": 270528, + "a": "attr", + "t": "nexp", + "n": 121931, + "p": 1 + } + ], + "270529": [ + { + "id": 270529, + "a": "attr", + "t": "nexp", + "n": 122162, + "p": 1 + } + ], + "270530": [ + { + "id": 270530, + "a": "attr", + "t": "nexp", + "n": 122393, + "p": 1 + } + ], + "270531": [ + { + "id": 270531, + "a": "attr", + "t": "nexp", + "n": 122624, + "p": 1 + } + ], + "270532": [ + { + "id": 270532, + "a": "attr", + "t": "nexp", + "n": 122855, + "p": 1 + } + ], + "270533": [ + { + "id": 270533, + "a": "attr", + "t": "nexp", + "n": 123086, + "p": 1 + } + ], + "270534": [ + { + "id": 270534, + "a": "attr", + "t": "nexp", + "n": 123317, + "p": 1 + } + ], + "270535": [ + { + "id": 270535, + "a": "attr", + "t": "nexp", + "n": 123548, + "p": 1 + } + ], + "270536": [ + { + "id": 270536, + "a": "attr", + "t": "nexp", + "n": 123779, + "p": 1 + } + ], + "270537": [ + { + "id": 270537, + "a": "attr", + "t": "nexp", + "n": 124010, + "p": 1 + } + ], + "270538": [ + { + "id": 270538, + "a": "attr", + "t": "nexp", + "n": 124241, + "p": 1 + } + ], + "270539": [ + { + "id": 270539, + "a": "attr", + "t": "nexp", + "n": 124472, + "p": 1 + } + ], + "270540": [ + { + "id": 270540, + "a": "attr", + "t": "nexp", + "n": 124703, + "p": 1 + } + ], + "270541": [ + { + "id": 270541, + "a": "attr", + "t": "nexp", + "n": 124934, + "p": 1 + } + ], + "270542": [ + { + "id": 270542, + "a": "attr", + "t": "nexp", + "n": 125165, + "p": 1 + } + ], + "270543": [ + { + "id": 270543, + "a": "attr", + "t": "nexp", + "n": 125396, + "p": 1 + } + ], + "270544": [ + { + "id": 270544, + "a": "attr", + "t": "nexp", + "n": 125627, + "p": 1 + } + ], + "270545": [ + { + "id": 270545, + "a": "attr", + "t": "nexp", + "n": 125858, + "p": 1 + } + ], + "270546": [ + { + "id": 270546, + "a": "attr", + "t": "nexp", + "n": 126089, + "p": 1 + } + ], + "270547": [ + { + "id": 270547, + "a": "attr", + "t": "nexp", + "n": 126320, + "p": 1 + } + ], + "270548": [ + { + "id": 270548, + "a": "attr", + "t": "nexp", + "n": 126551, + "p": 1 + } + ], + "270549": [ + { + "id": 270549, + "a": "attr", + "t": "nexp", + "n": 126782, + "p": 1 + } + ], + "270550": [ + { + "id": 270550, + "a": "attr", + "t": "nexp", + "n": 127013, + "p": 1 + } + ], + "270551": [ + { + "id": 270551, + "a": "attr", + "t": "nexp", + "n": 127244, + "p": 1 + } + ], + "270552": [ + { + "id": 270552, + "a": "attr", + "t": "nexp", + "n": 127475, + "p": 1 + } + ], + "270553": [ + { + "id": 270553, + "a": "attr", + "t": "nexp", + "n": 127706, + "p": 1 + } + ], + "270554": [ + { + "id": 270554, + "a": "attr", + "t": "nexp", + "n": 127937, + "p": 1 + } + ], + "270555": [ + { + "id": 270555, + "a": "attr", + "t": "nexp", + "n": 128168, + "p": 1 + } + ], + "270556": [ + { + "id": 270556, + "a": "attr", + "t": "nexp", + "n": 128399, + "p": 1 + } + ], + "270557": [ + { + "id": 270557, + "a": "attr", + "t": "nexp", + "n": 128630, + "p": 1 + } + ], + "270558": [ + { + "id": 270558, + "a": "attr", + "t": "nexp", + "n": 128861, + "p": 1 + } + ], + "270559": [ + { + "id": 270559, + "a": "attr", + "t": "nexp", + "n": 129092, + "p": 1 + } + ], + "270560": [ + { + "id": 270560, + "a": "attr", + "t": "nexp", + "n": 129323, + "p": 1 + } + ], + "270561": [ + { + "id": 270561, + "a": "attr", + "t": "nexp", + "n": 129554, + "p": 1 + } + ], + "270562": [ + { + "id": 270562, + "a": "attr", + "t": "nexp", + "n": 129785, + "p": 1 + } + ], + "270563": [ + { + "id": 270563, + "a": "attr", + "t": "nexp", + "n": 130016, + "p": 1 + } + ], + "270564": [ + { + "id": 270564, + "a": "attr", + "t": "nexp", + "n": 130247, + "p": 1 + } + ], + "270565": [ + { + "id": 270565, + "a": "attr", + "t": "nexp", + "n": 130478, + "p": 1 + } + ], + "270566": [ + { + "id": 270566, + "a": "attr", + "t": "nexp", + "n": 130709, + "p": 1 + } + ], + "270567": [ + { + "id": 270567, + "a": "attr", + "t": "nexp", + "n": 130940, + "p": 1 + } + ], + "270568": [ + { + "id": 270568, + "a": "attr", + "t": "nexp", + "n": 131171, + "p": 1 + } + ], + "270569": [ + { + "id": 270569, + "a": "attr", + "t": "nexp", + "n": 131402, + "p": 1 + } + ], + "270570": [ + { + "id": 270570, + "a": "attr", + "t": "nexp", + "n": 131633, + "p": 1 + } + ], + "270571": [ + { + "id": 270571, + "a": "attr", + "t": "nexp", + "n": 131864, + "p": 1 + } + ], + "270572": [ + { + "id": 270572, + "a": "attr", + "t": "nexp", + "n": 132095, + "p": 1 + } + ], + "270573": [ + { + "id": 270573, + "a": "attr", + "t": "nexp", + "n": 132326, + "p": 1 + } + ], + "270574": [ + { + "id": 270574, + "a": "attr", + "t": "nexp", + "n": 132557, + "p": 1 + } + ], + "270575": [ + { + "id": 270575, + "a": "attr", + "t": "nexp", + "n": 132788, + "p": 1 + } + ], + "270576": [ + { + "id": 270576, + "a": "attr", + "t": "nexp", + "n": 133019, + "p": 1 + } + ], + "270577": [ + { + "id": 270577, + "a": "attr", + "t": "nexp", + "n": 133250, + "p": 1 + } + ], + "270578": [ + { + "id": 270578, + "a": "attr", + "t": "nexp", + "n": 133481, + "p": 1 + } + ], + "270579": [ + { + "id": 270579, + "a": "attr", + "t": "nexp", + "n": 133712, + "p": 1 + } + ], + "270580": [ + { + "id": 270580, + "a": "attr", + "t": "nexp", + "n": 133943, + "p": 1 + } + ], + "270581": [ + { + "id": 270581, + "a": "attr", + "t": "nexp", + "n": 134174, + "p": 1 + } + ], + "270582": [ + { + "id": 270582, + "a": "attr", + "t": "nexp", + "n": 134405, + "p": 1 + } + ], + "270583": [ + { + "id": 270583, + "a": "attr", + "t": "nexp", + "n": 134636, + "p": 1 + } + ], + "270584": [ + { + "id": 270584, + "a": "attr", + "t": "nexp", + "n": 134867, + "p": 1 + } + ], + "270585": [ + { + "id": 270585, + "a": "attr", + "t": "nexp", + "n": 135098, + "p": 1 + } + ], + "270586": [ + { + "id": 270586, + "a": "attr", + "t": "nexp", + "n": 135329, + "p": 1 + } + ], + "270587": [ + { + "id": 270587, + "a": "attr", + "t": "nexp", + "n": 135560, + "p": 1 + } + ], + "270588": [ + { + "id": 270588, + "a": "attr", + "t": "nexp", + "n": 135791, + "p": 1 + } + ], + "270589": [ + { + "id": 270589, + "a": "attr", + "t": "nexp", + "n": 136022, + "p": 1 + } + ], + "270590": [ + { + "id": 270590, + "a": "attr", + "t": "nexp", + "n": 136253, + "p": 1 + } + ], + "270591": [ + { + "id": 270591, + "a": "attr", + "t": "nexp", + "n": 136484, + "p": 1 + } + ], + "270592": [ + { + "id": 270592, + "a": "attr", + "t": "nexp", + "n": 136715, + "p": 1 + } + ], + "270593": [ + { + "id": 270593, + "a": "attr", + "t": "nexp", + "n": 136946, + "p": 1 + } + ], + "270594": [ + { + "id": 270594, + "a": "attr", + "t": "nexp", + "n": 137177, + "p": 1 + } + ], + "270595": [ + { + "id": 270595, + "a": "attr", + "t": "nexp", + "n": 137408, + "p": 1 + } + ], + "270596": [ + { + "id": 270596, + "a": "attr", + "t": "nexp", + "n": 137639, + "p": 1 + } + ], + "270597": [ + { + "id": 270597, + "a": "attr", + "t": "nexp", + "n": 137870, + "p": 1 + } + ], + "270598": [ + { + "id": 270598, + "a": "attr", + "t": "nexp", + "n": 138101, + "p": 1 + } + ], + "270599": [ + { + "id": 270599, + "a": "attr", + "t": "nexp", + "n": 138332, + "p": 1 + } + ], + "270600": [ + { + "id": 270600, + "a": "attr", + "t": "nexp", + "n": 138563, + "p": 1 + } + ], + "270601": [ + { + "id": 270601, + "a": "attr", + "t": "nexp", + "n": 138794, + "p": 1 + } + ], + "270602": [ + { + "id": 270602, + "a": "attr", + "t": "nexp", + "n": 139025, + "p": 1 + } + ], + "270603": [ + { + "id": 270603, + "a": "attr", + "t": "nexp", + "n": 139256, + "p": 1 + } + ], + "270604": [ + { + "id": 270604, + "a": "attr", + "t": "nexp", + "n": 139487, + "p": 1 + } + ], + "270605": [ + { + "id": 270605, + "a": "attr", + "t": "nexp", + "n": 139718, + "p": 1 + } + ], + "270606": [ + { + "id": 270606, + "a": "attr", + "t": "nexp", + "n": 139949, + "p": 1 + } + ], + "270607": [ + { + "id": 270607, + "a": "attr", + "t": "nexp", + "n": 140180, + "p": 1 + } + ], + "270608": [ + { + "id": 270608, + "a": "attr", + "t": "nexp", + "n": 140411, + "p": 1 + } + ], + "270609": [ + { + "id": 270609, + "a": "attr", + "t": "nexp", + "n": 140642, + "p": 1 + } + ], + "270610": [ + { + "id": 270610, + "a": "attr", + "t": "nexp", + "n": 140873, + "p": 1 + } + ], + "270611": [ + { + "id": 270611, + "a": "attr", + "t": "nexp", + "n": 141104, + "p": 1 + } + ], + "270612": [ + { + "id": 270612, + "a": "attr", + "t": "nexp", + "n": 141335, + "p": 1 + } + ], + "270613": [ + { + "id": 270613, + "a": "attr", + "t": "nexp", + "n": 141566, + "p": 1 + } + ], + "270614": [ + { + "id": 270614, + "a": "attr", + "t": "nexp", + "n": 141797, + "p": 1 + } + ], + "270615": [ + { + "id": 270615, + "a": "attr", + "t": "nexp", + "n": 142028, + "p": 1 + } + ], + "270616": [ + { + "id": 270616, + "a": "attr", + "t": "nexp", + "n": 142259, + "p": 1 + } + ], + "270617": [ + { + "id": 270617, + "a": "attr", + "t": "nexp", + "n": 142490, + "p": 1 + } + ], + "270618": [ + { + "id": 270618, + "a": "attr", + "t": "nexp", + "n": 142721, + "p": 1 + } + ], + "270619": [ + { + "id": 270619, + "a": "attr", + "t": "nexp", + "n": 142952, + "p": 1 + } + ], + "270620": [ + { + "id": 270620, + "a": "attr", + "t": "nexp", + "n": 143183, + "p": 1 + } + ], + "270621": [ + { + "id": 270621, + "a": "attr", + "t": "nexp", + "n": 143414, + "p": 1 + } + ], + "270622": [ + { + "id": 270622, + "a": "attr", + "t": "nexp", + "n": 143645, + "p": 1 + } + ], + "270623": [ + { + "id": 270623, + "a": "attr", + "t": "nexp", + "n": 143876, + "p": 1 + } + ], + "270624": [ + { + "id": 270624, + "a": "attr", + "t": "nexp", + "n": 144107, + "p": 1 + } + ], + "270625": [ + { + "id": 270625, + "a": "attr", + "t": "nexp", + "n": 144338, + "p": 1 + } + ], + "270626": [ + { + "id": 270626, + "a": "attr", + "t": "nexp", + "n": 144569, + "p": 1 + } + ], + "270627": [ + { + "id": 270627, + "a": "attr", + "t": "nexp", + "n": 144800, + "p": 1 + } + ], + "270628": [ + { + "id": 270628, + "a": "attr", + "t": "nexp", + "n": 145031, + "p": 1 + } + ], + "270629": [ + { + "id": 270629, + "a": "attr", + "t": "nexp", + "n": 145262, + "p": 1 + } + ], + "270630": [ + { + "id": 270630, + "a": "attr", + "t": "nexp", + "n": 145493, + "p": 1 + } + ], + "270631": [ + { + "id": 270631, + "a": "attr", + "t": "nexp", + "n": 145724, + "p": 1 + } + ], + "270632": [ + { + "id": 270632, + "a": "attr", + "t": "nexp", + "n": 145955, + "p": 1 + } + ], + "270633": [ + { + "id": 270633, + "a": "attr", + "t": "nexp", + "n": 146186, + "p": 1 + } + ], + "270634": [ + { + "id": 270634, + "a": "attr", + "t": "nexp", + "n": 146417, + "p": 1 + } + ], + "270635": [ + { + "id": 270635, + "a": "attr", + "t": "nexp", + "n": 146648, + "p": 1 + } + ], + "270636": [ + { + "id": 270636, + "a": "attr", + "t": "nexp", + "n": 146879, + "p": 1 + } + ], + "270637": [ + { + "id": 270637, + "a": "attr", + "t": "nexp", + "n": 147110, + "p": 1 + } + ], + "270638": [ + { + "id": 270638, + "a": "attr", + "t": "nexp", + "n": 147341, + "p": 1 + } + ], + "270639": [ + { + "id": 270639, + "a": "attr", + "t": "nexp", + "n": 147572, + "p": 1 + } + ], + "270640": [ + { + "id": 270640, + "a": "attr", + "t": "nexp", + "n": 147803, + "p": 1 + } + ], + "270641": [ + { + "id": 270641, + "a": "attr", + "t": "nexp", + "n": 148034, + "p": 1 + } + ], + "270642": [ + { + "id": 270642, + "a": "attr", + "t": "nexp", + "n": 148265, + "p": 1 + } + ], + "270643": [ + { + "id": 270643, + "a": "attr", + "t": "nexp", + "n": 148496, + "p": 1 + } + ], + "270644": [ + { + "id": 270644, + "a": "attr", + "t": "nexp", + "n": 148727, + "p": 1 + } + ], + "270645": [ + { + "id": 270645, + "a": "attr", + "t": "nexp", + "n": 148958, + "p": 1 + } + ], + "270646": [ + { + "id": 270646, + "a": "attr", + "t": "nexp", + "n": 149189, + "p": 1 + } + ], + "270647": [ + { + "id": 270647, + "a": "attr", + "t": "nexp", + "n": 149420, + "p": 1 + } + ], + "270648": [ + { + "id": 270648, + "a": "attr", + "t": "nexp", + "n": 149651, + "p": 1 + } + ], + "270649": [ + { + "id": 270649, + "a": "attr", + "t": "nexp", + "n": 149882, + "p": 1 + } + ], + "270650": [ + { + "id": 270650, + "a": "attr", + "t": "nexp", + "n": 150113, + "p": 1 + } + ], + "270651": [ + { + "id": 270651, + "a": "attr", + "t": "nexp", + "n": 150344, + "p": 1 + } + ], + "270652": [ + { + "id": 270652, + "a": "attr", + "t": "nexp", + "n": 150575, + "p": 1 + } + ], + "270653": [ + { + "id": 270653, + "a": "attr", + "t": "nexp", + "n": 150806, + "p": 1 + } + ], + "270654": [ + { + "id": 270654, + "a": "attr", + "t": "nexp", + "n": 151037, + "p": 1 + } + ], + "270655": [ + { + "id": 270655, + "a": "attr", + "t": "nexp", + "n": 151268, + "p": 1 + } + ], + "270656": [ + { + "id": 270656, + "a": "attr", + "t": "nexp", + "n": 151499, + "p": 1 + } + ], + "270657": [ + { + "id": 270657, + "a": "attr", + "t": "nexp", + "n": 151730, + "p": 1 + } + ], + "270658": [ + { + "id": 270658, + "a": "attr", + "t": "nexp", + "n": 151961, + "p": 1 + } + ], + "270659": [ + { + "id": 270659, + "a": "attr", + "t": "nexp", + "n": 152192, + "p": 1 + } + ], + "270660": [ + { + "id": 270660, + "a": "attr", + "t": "nexp", + "n": 152423, + "p": 1 + } + ], + "270661": [ + { + "id": 270661, + "a": "attr", + "t": "nexp", + "n": 152654, + "p": 1 + } + ], + "270662": [ + { + "id": 270662, + "a": "attr", + "t": "nexp", + "n": 152885, + "p": 1 + } + ], + "270663": [ + { + "id": 270663, + "a": "attr", + "t": "nexp", + "n": 153116, + "p": 1 + } + ], + "270664": [ + { + "id": 270664, + "a": "attr", + "t": "nexp", + "n": 153347, + "p": 1 + } + ], + "270665": [ + { + "id": 270665, + "a": "attr", + "t": "nexp", + "n": 153578, + "p": 1 + } + ], + "270666": [ + { + "id": 270666, + "a": "attr", + "t": "nexp", + "n": 153809, + "p": 1 + } + ], + "270667": [ + { + "id": 270667, + "a": "attr", + "t": "nexp", + "n": 154040, + "p": 1 + } + ], + "270668": [ + { + "id": 270668, + "a": "attr", + "t": "nexp", + "n": 154271, + "p": 1 + } + ], + "270669": [ + { + "id": 270669, + "a": "attr", + "t": "nexp", + "n": 154502, + "p": 1 + } + ], + "270670": [ + { + "id": 270670, + "a": "attr", + "t": "nexp", + "n": 154733, + "p": 1 + } + ], + "270671": [ + { + "id": 270671, + "a": "attr", + "t": "nexp", + "n": 154964, + "p": 1 + } + ], + "270672": [ + { + "id": 270672, + "a": "attr", + "t": "nexp", + "n": 155195, + "p": 1 + } + ], + "270673": [ + { + "id": 270673, + "a": "attr", + "t": "nexp", + "n": 155426, + "p": 1 + } + ], + "270674": [ + { + "id": 270674, + "a": "attr", + "t": "nexp", + "n": 155657, + "p": 1 + } + ], + "270675": [ + { + "id": 270675, + "a": "attr", + "t": "nexp", + "n": 155888, + "p": 1 + } + ], + "270676": [ + { + "id": 270676, + "a": "attr", + "t": "nexp", + "n": 156119, + "p": 1 + } + ], + "270677": [ + { + "id": 270677, + "a": "attr", + "t": "nexp", + "n": 156350, + "p": 1 + } + ], + "270678": [ + { + "id": 270678, + "a": "attr", + "t": "nexp", + "n": 156581, + "p": 1 + } + ], + "270679": [ + { + "id": 270679, + "a": "attr", + "t": "nexp", + "n": 156812, + "p": 1 + } + ], + "270680": [ + { + "id": 270680, + "a": "attr", + "t": "nexp", + "n": 157043, + "p": 1 + } + ], + "270681": [ + { + "id": 270681, + "a": "attr", + "t": "nexp", + "n": 157274, + "p": 1 + } + ], + "270682": [ + { + "id": 270682, + "a": "attr", + "t": "nexp", + "n": 157505, + "p": 1 + } + ], + "270683": [ + { + "id": 270683, + "a": "attr", + "t": "nexp", + "n": 157736, + "p": 1 + } + ], + "270684": [ + { + "id": 270684, + "a": "attr", + "t": "nexp", + "n": 157967, + "p": 1 + } + ], + "270685": [ + { + "id": 270685, + "a": "attr", + "t": "nexp", + "n": 158198, + "p": 1 + } + ], + "270686": [ + { + "id": 270686, + "a": "attr", + "t": "nexp", + "n": 158429, + "p": 1 + } + ], + "270687": [ + { + "id": 270687, + "a": "attr", + "t": "nexp", + "n": 158660, + "p": 1 + } + ], + "270688": [ + { + "id": 270688, + "a": "attr", + "t": "nexp", + "n": 158891, + "p": 1 + } + ], + "270689": [ + { + "id": 270689, + "a": "attr", + "t": "nexp", + "n": 159122, + "p": 1 + } + ], + "270690": [ + { + "id": 270690, + "a": "attr", + "t": "nexp", + "n": 159353, + "p": 1 + } + ], + "270691": [ + { + "id": 270691, + "a": "attr", + "t": "nexp", + "n": 159584, + "p": 1 + } + ], + "270692": [ + { + "id": 270692, + "a": "attr", + "t": "nexp", + "n": 159815, + "p": 1 + } + ], + "270693": [ + { + "id": 270693, + "a": "attr", + "t": "nexp", + "n": 160046, + "p": 1 + } + ], + "270694": [ + { + "id": 270694, + "a": "attr", + "t": "nexp", + "n": 160277, + "p": 1 + } + ], + "270695": [ + { + "id": 270695, + "a": "attr", + "t": "nexp", + "n": 160508, + "p": 1 + } + ], + "270696": [ + { + "id": 270696, + "a": "attr", + "t": "nexp", + "n": 160739, + "p": 1 + } + ], + "270697": [ + { + "id": 270697, + "a": "attr", + "t": "nexp", + "n": 160970, + "p": 1 + } + ], + "270698": [ + { + "id": 270698, + "a": "attr", + "t": "nexp", + "n": 161201, + "p": 1 + } + ], + "270699": [ + { + "id": 270699, + "a": "attr", + "t": "nexp", + "n": 161432, + "p": 1 + } + ], + "270700": [ + { + "id": 270700, + "a": "attr", + "t": "nexp", + "n": 161663, + "p": 1 + } + ], + "270701": [ + { + "id": 270701, + "a": "attr", + "t": "nexp", + "n": 161894, + "p": 1 + } + ], + "270702": [ + { + "id": 270702, + "a": "attr", + "t": "nexp", + "n": 162125, + "p": 1 + } + ], + "270703": [ + { + "id": 270703, + "a": "attr", + "t": "nexp", + "n": 162356, + "p": 1 + } + ], + "270704": [ + { + "id": 270704, + "a": "attr", + "t": "nexp", + "n": 162587, + "p": 1 + } + ], + "270705": [ + { + "id": 270705, + "a": "attr", + "t": "nexp", + "n": 162818, + "p": 1 + } + ], + "270706": [ + { + "id": 270706, + "a": "attr", + "t": "nexp", + "n": 163049, + "p": 1 + } + ], + "270707": [ + { + "id": 270707, + "a": "attr", + "t": "nexp", + "n": 163280, + "p": 1 + } + ], + "270708": [ + { + "id": 270708, + "a": "attr", + "t": "nexp", + "n": 163511, + "p": 1 + } + ], + "270709": [ + { + "id": 270709, + "a": "attr", + "t": "nexp", + "n": 163742, + "p": 1 + } + ], + "270710": [ + { + "id": 270710, + "a": "attr", + "t": "nexp", + "n": 163973, + "p": 1 + } + ], + "270711": [ + { + "id": 270711, + "a": "attr", + "t": "nexp", + "n": 164204, + "p": 1 + } + ], + "270712": [ + { + "id": 270712, + "a": "attr", + "t": "nexp", + "n": 164435, + "p": 1 + } + ], + "270713": [ + { + "id": 270713, + "a": "attr", + "t": "nexp", + "n": 164666, + "p": 1 + } + ], + "270714": [ + { + "id": 270714, + "a": "attr", + "t": "nexp", + "n": 164897, + "p": 1 + } + ], + "270715": [ + { + "id": 270715, + "a": "attr", + "t": "nexp", + "n": 165128, + "p": 1 + } + ], + "270716": [ + { + "id": 270716, + "a": "attr", + "t": "nexp", + "n": 165359, + "p": 1 + } + ], + "270717": [ + { + "id": 270717, + "a": "attr", + "t": "nexp", + "n": 165590, + "p": 1 + } + ], + "270718": [ + { + "id": 270718, + "a": "attr", + "t": "nexp", + "n": 165821, + "p": 1 + } + ], + "270719": [ + { + "id": 270719, + "a": "attr", + "t": "nexp", + "n": 166052, + "p": 1 + } + ], + "270720": [ + { + "id": 270720, + "a": "attr", + "t": "nexp", + "n": 166283, + "p": 1 + } + ], + "270721": [ + { + "id": 270721, + "a": "attr", + "t": "nexp", + "n": 166514, + "p": 1 + } + ], + "270722": [ + { + "id": 270722, + "a": "attr", + "t": "nexp", + "n": 166745, + "p": 1 + } + ], + "270723": [ + { + "id": 270723, + "a": "attr", + "t": "nexp", + "n": 166976, + "p": 1 + } + ], + "270724": [ + { + "id": 270724, + "a": "attr", + "t": "nexp", + "n": 167207, + "p": 1 + } + ], + "270725": [ + { + "id": 270725, + "a": "attr", + "t": "nexp", + "n": 167438, + "p": 1 + } + ], + "270726": [ + { + "id": 270726, + "a": "attr", + "t": "nexp", + "n": 167669, + "p": 1 + } + ], + "270727": [ + { + "id": 270727, + "a": "attr", + "t": "nexp", + "n": 167900, + "p": 1 + } + ], + "270728": [ + { + "id": 270728, + "a": "attr", + "t": "nexp", + "n": 168131, + "p": 1 + } + ], + "270729": [ + { + "id": 270729, + "a": "attr", + "t": "nexp", + "n": 168362, + "p": 1 + } + ], + "270730": [ + { + "id": 270730, + "a": "attr", + "t": "nexp", + "n": 168593, + "p": 1 + } + ], + "270731": [ + { + "id": 270731, + "a": "attr", + "t": "nexp", + "n": 168824, + "p": 1 + } + ], + "270732": [ + { + "id": 270732, + "a": "attr", + "t": "nexp", + "n": 169055, + "p": 1 + } + ], + "270733": [ + { + "id": 270733, + "a": "attr", + "t": "nexp", + "n": 169286, + "p": 1 + } + ], + "270734": [ + { + "id": 270734, + "a": "attr", + "t": "nexp", + "n": 169517, + "p": 1 + } + ], + "270735": [ + { + "id": 270735, + "a": "attr", + "t": "nexp", + "n": 169748, + "p": 1 + } + ], + "270736": [ + { + "id": 270736, + "a": "attr", + "t": "nexp", + "n": 169979, + "p": 1 + } + ], + "270737": [ + { + "id": 270737, + "a": "attr", + "t": "nexp", + "n": 170210, + "p": 1 + } + ], + "270738": [ + { + "id": 270738, + "a": "attr", + "t": "nexp", + "n": 170441, + "p": 1 + } + ], + "270739": [ + { + "id": 270739, + "a": "attr", + "t": "nexp", + "n": 170672, + "p": 1 + } + ], + "270740": [ + { + "id": 270740, + "a": "attr", + "t": "nexp", + "n": 170903, + "p": 1 + } + ], + "270741": [ + { + "id": 270741, + "a": "attr", + "t": "nexp", + "n": 171134, + "p": 1 + } + ], + "270742": [ + { + "id": 270742, + "a": "attr", + "t": "nexp", + "n": 171365, + "p": 1 + } + ], + "270743": [ + { + "id": 270743, + "a": "attr", + "t": "nexp", + "n": 171596, + "p": 1 + } + ], + "270744": [ + { + "id": 270744, + "a": "attr", + "t": "nexp", + "n": 171827, + "p": 1 + } + ], + "270745": [ + { + "id": 270745, + "a": "attr", + "t": "nexp", + "n": 172058, + "p": 1 + } + ], + "270746": [ + { + "id": 270746, + "a": "attr", + "t": "nexp", + "n": 172289, + "p": 1 + } + ], + "270747": [ + { + "id": 270747, + "a": "attr", + "t": "nexp", + "n": 172520, + "p": 1 + } + ], + "270748": [ + { + "id": 270748, + "a": "attr", + "t": "nexp", + "n": 172751, + "p": 1 + } + ], + "270749": [ + { + "id": 270749, + "a": "attr", + "t": "nexp", + "n": 172982, + "p": 1 + } + ], + "270750": [ + { + "id": 270750, + "a": "attr", + "t": "nexp", + "n": 173213, + "p": 1 + } + ], + "270751": [ + { + "id": 270751, + "a": "attr", + "t": "nexp", + "n": 173444, + "p": 1 + } + ], + "270752": [ + { + "id": 270752, + "a": "attr", + "t": "nexp", + "n": 173675, + "p": 1 + } + ], + "270753": [ + { + "id": 270753, + "a": "attr", + "t": "nexp", + "n": 173906, + "p": 1 + } + ], + "270754": [ + { + "id": 270754, + "a": "attr", + "t": "nexp", + "n": 174137, + "p": 1 + } + ], + "270755": [ + { + "id": 270755, + "a": "attr", + "t": "nexp", + "n": 174368, + "p": 1 + } + ], + "270756": [ + { + "id": 270756, + "a": "attr", + "t": "nexp", + "n": 174599, + "p": 1 + } + ], + "270757": [ + { + "id": 270757, + "a": "attr", + "t": "nexp", + "n": 174830, + "p": 1 + } + ], + "270758": [ + { + "id": 270758, + "a": "attr", + "t": "nexp", + "n": 175061, + "p": 1 + } + ], + "270759": [ + { + "id": 270759, + "a": "attr", + "t": "nexp", + "n": 175292, + "p": 1 + } + ], + "270760": [ + { + "id": 270760, + "a": "attr", + "t": "nexp", + "n": 175523, + "p": 1 + } + ], + "270761": [ + { + "id": 270761, + "a": "attr", + "t": "nexp", + "n": 175754, + "p": 1 + } + ], + "270762": [ + { + "id": 270762, + "a": "attr", + "t": "nexp", + "n": 175985, + "p": 1 + } + ], + "270763": [ + { + "id": 270763, + "a": "attr", + "t": "nexp", + "n": 176216, + "p": 1 + } + ], + "270764": [ + { + "id": 270764, + "a": "attr", + "t": "nexp", + "n": 176447, + "p": 1 + } + ], + "270765": [ + { + "id": 270765, + "a": "attr", + "t": "nexp", + "n": 176678, + "p": 1 + } + ], + "270766": [ + { + "id": 270766, + "a": "attr", + "t": "nexp", + "n": 176909, + "p": 1 + } + ], + "270767": [ + { + "id": 270767, + "a": "attr", + "t": "nexp", + "n": 177140, + "p": 1 + } + ], + "270768": [ + { + "id": 270768, + "a": "attr", + "t": "nexp", + "n": 177371, + "p": 1 + } + ], + "270769": [ + { + "id": 270769, + "a": "attr", + "t": "nexp", + "n": 177602, + "p": 1 + } + ], + "270770": [ + { + "id": 270770, + "a": "attr", + "t": "nexp", + "n": 177833, + "p": 1 + } + ], + "270771": [ + { + "id": 270771, + "a": "attr", + "t": "nexp", + "n": 178064, + "p": 1 + } + ], + "270772": [ + { + "id": 270772, + "a": "attr", + "t": "nexp", + "n": 178295, + "p": 1 + } + ], + "270773": [ + { + "id": 270773, + "a": "attr", + "t": "nexp", + "n": 178526, + "p": 1 + } + ], + "270774": [ + { + "id": 270774, + "a": "attr", + "t": "nexp", + "n": 178757, + "p": 1 + } + ], + "270775": [ + { + "id": 270775, + "a": "attr", + "t": "nexp", + "n": 178988, + "p": 1 + } + ], + "270776": [ + { + "id": 270776, + "a": "attr", + "t": "nexp", + "n": 179219, + "p": 1 + } + ], + "270777": [ + { + "id": 270777, + "a": "attr", + "t": "nexp", + "n": 179450, + "p": 1 + } + ], + "270778": [ + { + "id": 270778, + "a": "attr", + "t": "nexp", + "n": 179681, + "p": 1 + } + ], + "270779": [ + { + "id": 270779, + "a": "attr", + "t": "nexp", + "n": 179912, + "p": 1 + } + ], + "270780": [ + { + "id": 270780, + "a": "attr", + "t": "nexp", + "n": 180143, + "p": 1 + } + ], + "270781": [ + { + "id": 270781, + "a": "attr", + "t": "nexp", + "n": 180374, + "p": 1 + } + ], + "270782": [ + { + "id": 270782, + "a": "attr", + "t": "nexp", + "n": 180605, + "p": 1 + } + ], + "270783": [ + { + "id": 270783, + "a": "attr", + "t": "nexp", + "n": 180836, + "p": 1 + } + ], + "270784": [ + { + "id": 270784, + "a": "attr", + "t": "nexp", + "n": 181067, + "p": 1 + } + ], + "270785": [ + { + "id": 270785, + "a": "attr", + "t": "nexp", + "n": 181298, + "p": 1 + } + ], + "270786": [ + { + "id": 270786, + "a": "attr", + "t": "nexp", + "n": 181529, + "p": 1 + } + ], + "270787": [ + { + "id": 270787, + "a": "attr", + "t": "nexp", + "n": 181760, + "p": 1 + } + ], + "270788": [ + { + "id": 270788, + "a": "attr", + "t": "nexp", + "n": 181991, + "p": 1 + } + ], + "270789": [ + { + "id": 270789, + "a": "attr", + "t": "nexp", + "n": 182222, + "p": 1 + } + ], + "270790": [ + { + "id": 270790, + "a": "attr", + "t": "nexp", + "n": 182453, + "p": 1 + } + ], + "270791": [ + { + "id": 270791, + "a": "attr", + "t": "nexp", + "n": 182684, + "p": 1 + } + ], + "270792": [ + { + "id": 270792, + "a": "attr", + "t": "nexp", + "n": 182915, + "p": 1 + } + ], + "270793": [ + { + "id": 270793, + "a": "attr", + "t": "nexp", + "n": 183146, + "p": 1 + } + ], + "270794": [ + { + "id": 270794, + "a": "attr", + "t": "nexp", + "n": 183377, + "p": 1 + } + ], + "270795": [ + { + "id": 270795, + "a": "attr", + "t": "nexp", + "n": 183608, + "p": 1 + } + ], + "270796": [ + { + "id": 270796, + "a": "attr", + "t": "nexp", + "n": 183839, + "p": 1 + } + ], + "270797": [ + { + "id": 270797, + "a": "attr", + "t": "nexp", + "n": 184070, + "p": 1 + } + ], + "270798": [ + { + "id": 270798, + "a": "attr", + "t": "nexp", + "n": 184301, + "p": 1 + } + ], + "270799": [ + { + "id": 270799, + "a": "attr", + "t": "nexp", + "n": 184532, + "p": 1 + } + ], + "270800": [ + { + "id": 270800, + "a": "attr", + "t": "nexp", + "n": 184763, + "p": 1 + } + ], + "270801": [ + { + "id": 270801, + "a": "attr", + "t": "nexp", + "n": 184994, + "p": 1 + } + ], + "270802": [ + { + "id": 270802, + "a": "attr", + "t": "nexp", + "n": 185225, + "p": 1 + } + ], + "270803": [ + { + "id": 270803, + "a": "attr", + "t": "nexp", + "n": 185456, + "p": 1 + } + ], + "270804": [ + { + "id": 270804, + "a": "attr", + "t": "nexp", + "n": 185687, + "p": 1 + } + ], + "270805": [ + { + "id": 270805, + "a": "attr", + "t": "nexp", + "n": 185918, + "p": 1 + } + ], + "270806": [ + { + "id": 270806, + "a": "attr", + "t": "nexp", + "n": 186149, + "p": 1 + } + ], + "270807": [ + { + "id": 270807, + "a": "attr", + "t": "nexp", + "n": 186380, + "p": 1 + } + ], + "270808": [ + { + "id": 270808, + "a": "attr", + "t": "nexp", + "n": 186611, + "p": 1 + } + ], + "270809": [ + { + "id": 270809, + "a": "attr", + "t": "nexp", + "n": 186842, + "p": 1 + } + ], + "270810": [ + { + "id": 270810, + "a": "attr", + "t": "nexp", + "n": 187073, + "p": 1 + } + ], + "270811": [ + { + "id": 270811, + "a": "attr", + "t": "nexp", + "n": 187304, + "p": 1 + } + ], + "270812": [ + { + "id": 270812, + "a": "attr", + "t": "nexp", + "n": 187535, + "p": 1 + } + ], + "270813": [ + { + "id": 270813, + "a": "attr", + "t": "nexp", + "n": 187766, + "p": 1 + } + ], + "270814": [ + { + "id": 270814, + "a": "attr", + "t": "nexp", + "n": 187997, + "p": 1 + } + ], + "270815": [ + { + "id": 270815, + "a": "attr", + "t": "nexp", + "n": 188228, + "p": 1 + } + ], + "270816": [ + { + "id": 270816, + "a": "attr", + "t": "nexp", + "n": 188459, + "p": 1 + } + ], + "270817": [ + { + "id": 270817, + "a": "attr", + "t": "nexp", + "n": 188690, + "p": 1 + } + ], + "270818": [ + { + "id": 270818, + "a": "attr", + "t": "nexp", + "n": 188921, + "p": 1 + } + ], + "270819": [ + { + "id": 270819, + "a": "attr", + "t": "nexp", + "n": 189152, + "p": 1 + } + ], + "270820": [ + { + "id": 270820, + "a": "attr", + "t": "nexp", + "n": 189383, + "p": 1 + } + ], + "270821": [ + { + "id": 270821, + "a": "attr", + "t": "nexp", + "n": 189614, + "p": 1 + } + ], + "270822": [ + { + "id": 270822, + "a": "attr", + "t": "nexp", + "n": 189845, + "p": 1 + } + ], + "270823": [ + { + "id": 270823, + "a": "attr", + "t": "nexp", + "n": 190076, + "p": 1 + } + ], + "270824": [ + { + "id": 270824, + "a": "attr", + "t": "nexp", + "n": 190307, + "p": 1 + } + ], + "270825": [ + { + "id": 270825, + "a": "attr", + "t": "nexp", + "n": 190538, + "p": 1 + } + ], + "270826": [ + { + "id": 270826, + "a": "attr", + "t": "nexp", + "n": 190769, + "p": 1 + } + ], + "270827": [ + { + "id": 270827, + "a": "attr", + "t": "nexp", + "n": 191000, + "p": 1 + } + ], + "270828": [ + { + "id": 270828, + "a": "attr", + "t": "nexp", + "n": 191231, + "p": 1 + } + ], + "270829": [ + { + "id": 270829, + "a": "attr", + "t": "nexp", + "n": 191462, + "p": 1 + } + ], + "270830": [ + { + "id": 270830, + "a": "attr", + "t": "nexp", + "n": 191693, + "p": 1 + } + ], + "270831": [ + { + "id": 270831, + "a": "attr", + "t": "nexp", + "n": 191924, + "p": 1 + } + ], + "270832": [ + { + "id": 270832, + "a": "attr", + "t": "nexp", + "n": 192155, + "p": 1 + } + ], + "270833": [ + { + "id": 270833, + "a": "attr", + "t": "nexp", + "n": 192386, + "p": 1 + } + ], + "270834": [ + { + "id": 270834, + "a": "attr", + "t": "nexp", + "n": 192617, + "p": 1 + } + ], + "270835": [ + { + "id": 270835, + "a": "attr", + "t": "nexp", + "n": 192848, + "p": 1 + } + ], + "270836": [ + { + "id": 270836, + "a": "attr", + "t": "nexp", + "n": 193079, + "p": 1 + } + ], + "270837": [ + { + "id": 270837, + "a": "attr", + "t": "nexp", + "n": 193310, + "p": 1 + } + ], + "270838": [ + { + "id": 270838, + "a": "attr", + "t": "nexp", + "n": 193541, + "p": 1 + } + ], + "270839": [ + { + "id": 270839, + "a": "attr", + "t": "nexp", + "n": 193772, + "p": 1 + } + ], + "270840": [ + { + "id": 270840, + "a": "attr", + "t": "nexp", + "n": 194003, + "p": 1 + } + ], + "270841": [ + { + "id": 270841, + "a": "attr", + "t": "nexp", + "n": 194234, + "p": 1 + } + ], + "270842": [ + { + "id": 270842, + "a": "attr", + "t": "nexp", + "n": 194465, + "p": 1 + } + ], + "270843": [ + { + "id": 270843, + "a": "attr", + "t": "nexp", + "n": 194696, + "p": 1 + } + ], + "270844": [ + { + "id": 270844, + "a": "attr", + "t": "nexp", + "n": 194927, + "p": 1 + } + ], + "270845": [ + { + "id": 270845, + "a": "attr", + "t": "nexp", + "n": 195158, + "p": 1 + } + ], + "270846": [ + { + "id": 270846, + "a": "attr", + "t": "nexp", + "n": 195389, + "p": 1 + } + ], + "270847": [ + { + "id": 270847, + "a": "attr", + "t": "nexp", + "n": 195620, + "p": 1 + } + ], + "270848": [ + { + "id": 270848, + "a": "attr", + "t": "nexp", + "n": 195851, + "p": 1 + } + ], + "270849": [ + { + "id": 270849, + "a": "attr", + "t": "nexp", + "n": 196082, + "p": 1 + } + ], + "270850": [ + { + "id": 270850, + "a": "attr", + "t": "nexp", + "n": 196313, + "p": 1 + } + ], + "270851": [ + { + "id": 270851, + "a": "attr", + "t": "nexp", + "n": 196544, + "p": 1 + } + ], + "270852": [ + { + "id": 270852, + "a": "attr", + "t": "nexp", + "n": 196775, + "p": 1 + } + ], + "270853": [ + { + "id": 270853, + "a": "attr", + "t": "nexp", + "n": 197006, + "p": 1 + } + ], + "270854": [ + { + "id": 270854, + "a": "attr", + "t": "nexp", + "n": 197237, + "p": 1 + } + ], + "270855": [ + { + "id": 270855, + "a": "attr", + "t": "nexp", + "n": 197468, + "p": 1 + } + ], + "270856": [ + { + "id": 270856, + "a": "attr", + "t": "nexp", + "n": 197699, + "p": 1 + } + ], + "270857": [ + { + "id": 270857, + "a": "attr", + "t": "nexp", + "n": 197930, + "p": 1 + } + ], + "270858": [ + { + "id": 270858, + "a": "attr", + "t": "nexp", + "n": 198161, + "p": 1 + } + ], + "270859": [ + { + "id": 270859, + "a": "attr", + "t": "nexp", + "n": 198392, + "p": 1 + } + ], + "270860": [ + { + "id": 270860, + "a": "attr", + "t": "nexp", + "n": 198623, + "p": 1 + } + ], + "270861": [ + { + "id": 270861, + "a": "attr", + "t": "nexp", + "n": 198854, + "p": 1 + } + ], + "270862": [ + { + "id": 270862, + "a": "attr", + "t": "nexp", + "n": 199085, + "p": 1 + } + ], + "270863": [ + { + "id": 270863, + "a": "attr", + "t": "nexp", + "n": 199316, + "p": 1 + } + ], + "270864": [ + { + "id": 270864, + "a": "attr", + "t": "nexp", + "n": 199547, + "p": 1 + } + ], + "270865": [ + { + "id": 270865, + "a": "attr", + "t": "nexp", + "n": 199778, + "p": 1 + } + ], + "270866": [ + { + "id": 270866, + "a": "attr", + "t": "nexp", + "n": 200009, + "p": 1 + } + ], + "270867": [ + { + "id": 270867, + "a": "attr", + "t": "nexp", + "n": 200240, + "p": 1 + } + ], + "270868": [ + { + "id": 270868, + "a": "attr", + "t": "nexp", + "n": 200471, + "p": 1 + } + ], + "270869": [ + { + "id": 270869, + "a": "attr", + "t": "nexp", + "n": 200702, + "p": 1 + } + ], + "270870": [ + { + "id": 270870, + "a": "attr", + "t": "nexp", + "n": 200933, + "p": 1 + } + ], + "270871": [ + { + "id": 270871, + "a": "attr", + "t": "nexp", + "n": 201164, + "p": 1 + } + ], + "270872": [ + { + "id": 270872, + "a": "attr", + "t": "nexp", + "n": 201395, + "p": 1 + } + ], + "270873": [ + { + "id": 270873, + "a": "attr", + "t": "nexp", + "n": 201626, + "p": 1 + } + ], + "270874": [ + { + "id": 270874, + "a": "attr", + "t": "nexp", + "n": 201857, + "p": 1 + } + ], + "270875": [ + { + "id": 270875, + "a": "attr", + "t": "nexp", + "n": 202088, + "p": 1 + } + ], + "270876": [ + { + "id": 270876, + "a": "attr", + "t": "nexp", + "n": 202319, + "p": 1 + } + ], + "270877": [ + { + "id": 270877, + "a": "attr", + "t": "nexp", + "n": 202550, + "p": 1 + } + ], + "270878": [ + { + "id": 270878, + "a": "attr", + "t": "nexp", + "n": 202781, + "p": 1 + } + ], + "270879": [ + { + "id": 270879, + "a": "attr", + "t": "nexp", + "n": 203012, + "p": 1 + } + ], + "270880": [ + { + "id": 270880, + "a": "attr", + "t": "nexp", + "n": 203243, + "p": 1 + } + ], + "270881": [ + { + "id": 270881, + "a": "attr", + "t": "nexp", + "n": 203474, + "p": 1 + } + ], + "270882": [ + { + "id": 270882, + "a": "attr", + "t": "nexp", + "n": 203705, + "p": 1 + } + ], + "270883": [ + { + "id": 270883, + "a": "attr", + "t": "nexp", + "n": 203936, + "p": 1 + } + ], + "270884": [ + { + "id": 270884, + "a": "attr", + "t": "nexp", + "n": 204167, + "p": 1 + } + ], + "270885": [ + { + "id": 270885, + "a": "attr", + "t": "nexp", + "n": 204398, + "p": 1 + } + ], + "270886": [ + { + "id": 270886, + "a": "attr", + "t": "nexp", + "n": 204629, + "p": 1 + } + ], + "270887": [ + { + "id": 270887, + "a": "attr", + "t": "nexp", + "n": 204860, + "p": 1 + } + ], + "270888": [ + { + "id": 270888, + "a": "attr", + "t": "nexp", + "n": 205091, + "p": 1 + } + ], + "270889": [ + { + "id": 270889, + "a": "attr", + "t": "nexp", + "n": 205322, + "p": 1 + } + ], + "270890": [ + { + "id": 270890, + "a": "attr", + "t": "nexp", + "n": 205553, + "p": 1 + } + ], + "270891": [ + { + "id": 270891, + "a": "attr", + "t": "nexp", + "n": 205784, + "p": 1 + } + ], + "270892": [ + { + "id": 270892, + "a": "attr", + "t": "nexp", + "n": 206015, + "p": 1 + } + ], + "270893": [ + { + "id": 270893, + "a": "attr", + "t": "nexp", + "n": 206246, + "p": 1 + } + ], + "270894": [ + { + "id": 270894, + "a": "attr", + "t": "nexp", + "n": 206477, + "p": 1 + } + ], + "270895": [ + { + "id": 270895, + "a": "attr", + "t": "nexp", + "n": 206708, + "p": 1 + } + ], + "270896": [ + { + "id": 270896, + "a": "attr", + "t": "nexp", + "n": 206939, + "p": 1 + } + ], + "270897": [ + { + "id": 270897, + "a": "attr", + "t": "nexp", + "n": 207170, + "p": 1 + } + ], + "270898": [ + { + "id": 270898, + "a": "attr", + "t": "nexp", + "n": 207401, + "p": 1 + } + ], + "270899": [ + { + "id": 270899, + "a": "attr", + "t": "nexp", + "n": 207632, + "p": 1 + } + ], + "270900": [ + { + "id": 270900, + "a": "attr", + "t": "nexp", + "n": 207863, + "p": 1 + } + ], + "270901": [ + { + "id": 270901, + "a": "attr", + "t": "nexp", + "n": 208094, + "p": 1 + } + ], + "270902": [ + { + "id": 270902, + "a": "attr", + "t": "nexp", + "n": 208325, + "p": 1 + } + ], + "270903": [ + { + "id": 270903, + "a": "attr", + "t": "nexp", + "n": 208556, + "p": 1 + } + ], + "270904": [ + { + "id": 270904, + "a": "attr", + "t": "nexp", + "n": 208787, + "p": 1 + } + ], + "270905": [ + { + "id": 270905, + "a": "attr", + "t": "nexp", + "n": 209018, + "p": 1 + } + ], + "270906": [ + { + "id": 270906, + "a": "attr", + "t": "nexp", + "n": 209249, + "p": 1 + } + ], + "270907": [ + { + "id": 270907, + "a": "attr", + "t": "nexp", + "n": 209480, + "p": 1 + } + ], + "270908": [ + { + "id": 270908, + "a": "attr", + "t": "nexp", + "n": 209711, + "p": 1 + } + ], + "270909": [ + { + "id": 270909, + "a": "attr", + "t": "nexp", + "n": 209942, + "p": 1 + } + ], + "270910": [ + { + "id": 270910, + "a": "attr", + "t": "nexp", + "n": 210173, + "p": 1 + } + ], + "270911": [ + { + "id": 270911, + "a": "attr", + "t": "nexp", + "n": 210404, + "p": 1 + } + ], + "270912": [ + { + "id": 270912, + "a": "attr", + "t": "nexp", + "n": 210635, + "p": 1 + } + ], + "270913": [ + { + "id": 270913, + "a": "attr", + "t": "nexp", + "n": 210866, + "p": 1 + } + ], + "270914": [ + { + "id": 270914, + "a": "attr", + "t": "nexp", + "n": 211097, + "p": 1 + } + ], + "270915": [ + { + "id": 270915, + "a": "attr", + "t": "nexp", + "n": 211328, + "p": 1 + } + ], + "270916": [ + { + "id": 270916, + "a": "attr", + "t": "nexp", + "n": 211559, + "p": 1 + } + ], + "270917": [ + { + "id": 270917, + "a": "attr", + "t": "nexp", + "n": 211790, + "p": 1 + } + ], + "270918": [ + { + "id": 270918, + "a": "attr", + "t": "nexp", + "n": 212021, + "p": 1 + } + ], + "270919": [ + { + "id": 270919, + "a": "attr", + "t": "nexp", + "n": 212252, + "p": 1 + } + ], + "270920": [ + { + "id": 270920, + "a": "attr", + "t": "nexp", + "n": 212483, + "p": 1 + } + ], + "270921": [ + { + "id": 270921, + "a": "attr", + "t": "nexp", + "n": 212714, + "p": 1 + } + ], + "270922": [ + { + "id": 270922, + "a": "attr", + "t": "nexp", + "n": 212945, + "p": 1 + } + ], + "270923": [ + { + "id": 270923, + "a": "attr", + "t": "nexp", + "n": 213176, + "p": 1 + } + ], + "270924": [ + { + "id": 270924, + "a": "attr", + "t": "nexp", + "n": 213407, + "p": 1 + } + ], + "270925": [ + { + "id": 270925, + "a": "attr", + "t": "nexp", + "n": 213638, + "p": 1 + } + ], + "270926": [ + { + "id": 270926, + "a": "attr", + "t": "nexp", + "n": 213869, + "p": 1 + } + ], + "270927": [ + { + "id": 270927, + "a": "attr", + "t": "nexp", + "n": 214100, + "p": 1 + } + ], + "270928": [ + { + "id": 270928, + "a": "attr", + "t": "nexp", + "n": 214331, + "p": 1 + } + ], + "270929": [ + { + "id": 270929, + "a": "attr", + "t": "nexp", + "n": 214562, + "p": 1 + } + ], + "270930": [ + { + "id": 270930, + "a": "attr", + "t": "nexp", + "n": 214793, + "p": 1 + } + ], + "270931": [ + { + "id": 270931, + "a": "attr", + "t": "nexp", + "n": 215024, + "p": 1 + } + ], + "270932": [ + { + "id": 270932, + "a": "attr", + "t": "nexp", + "n": 215255, + "p": 1 + } + ], + "270933": [ + { + "id": 270933, + "a": "attr", + "t": "nexp", + "n": 215486, + "p": 1 + } + ], + "270934": [ + { + "id": 270934, + "a": "attr", + "t": "nexp", + "n": 215717, + "p": 1 + } + ], + "270935": [ + { + "id": 270935, + "a": "attr", + "t": "nexp", + "n": 215948, + "p": 1 + } + ], + "270936": [ + { + "id": 270936, + "a": "attr", + "t": "nexp", + "n": 216179, + "p": 1 + } + ], + "270937": [ + { + "id": 270937, + "a": "attr", + "t": "nexp", + "n": 216410, + "p": 1 + } + ], + "270938": [ + { + "id": 270938, + "a": "attr", + "t": "nexp", + "n": 216641, + "p": 1 + } + ], + "270939": [ + { + "id": 270939, + "a": "attr", + "t": "nexp", + "n": 216872, + "p": 1 + } + ], + "270940": [ + { + "id": 270940, + "a": "attr", + "t": "nexp", + "n": 217103, + "p": 1 + } + ], + "270941": [ + { + "id": 270941, + "a": "attr", + "t": "nexp", + "n": 217334, + "p": 1 + } + ], + "270942": [ + { + "id": 270942, + "a": "attr", + "t": "nexp", + "n": 217565, + "p": 1 + } + ], + "270943": [ + { + "id": 270943, + "a": "attr", + "t": "nexp", + "n": 217796, + "p": 1 + } + ], + "270944": [ + { + "id": 270944, + "a": "attr", + "t": "nexp", + "n": 218027, + "p": 1 + } + ], + "270945": [ + { + "id": 270945, + "a": "attr", + "t": "nexp", + "n": 218258, + "p": 1 + } + ], + "270946": [ + { + "id": 270946, + "a": "attr", + "t": "nexp", + "n": 218489, + "p": 1 + } + ], + "270947": [ + { + "id": 270947, + "a": "attr", + "t": "nexp", + "n": 218720, + "p": 1 + } + ], + "270948": [ + { + "id": 270948, + "a": "attr", + "t": "nexp", + "n": 218951, + "p": 1 + } + ], + "270949": [ + { + "id": 270949, + "a": "attr", + "t": "nexp", + "n": 219182, + "p": 1 + } + ], + "270950": [ + { + "id": 270950, + "a": "attr", + "t": "nexp", + "n": 219413, + "p": 1 + } + ], + "270951": [ + { + "id": 270951, + "a": "attr", + "t": "nexp", + "n": 219644, + "p": 1 + } + ], + "270952": [ + { + "id": 270952, + "a": "attr", + "t": "nexp", + "n": 219875, + "p": 1 + } + ], + "270953": [ + { + "id": 270953, + "a": "attr", + "t": "nexp", + "n": 220106, + "p": 1 + } + ], + "270954": [ + { + "id": 270954, + "a": "attr", + "t": "nexp", + "n": 220337, + "p": 1 + } + ], + "270955": [ + { + "id": 270955, + "a": "attr", + "t": "nexp", + "n": 220568, + "p": 1 + } + ], + "270956": [ + { + "id": 270956, + "a": "attr", + "t": "nexp", + "n": 220799, + "p": 1 + } + ], + "270957": [ + { + "id": 270957, + "a": "attr", + "t": "nexp", + "n": 221030, + "p": 1 + } + ], + "270958": [ + { + "id": 270958, + "a": "attr", + "t": "nexp", + "n": 221261, + "p": 1 + } + ], + "270959": [ + { + "id": 270959, + "a": "attr", + "t": "nexp", + "n": 221492, + "p": 1 + } + ], + "270960": [ + { + "id": 270960, + "a": "attr", + "t": "nexp", + "n": 221723, + "p": 1 + } + ], + "270961": [ + { + "id": 270961, + "a": "attr", + "t": "nexp", + "n": 221954, + "p": 1 + } + ], + "270962": [ + { + "id": 270962, + "a": "attr", + "t": "nexp", + "n": 222185, + "p": 1 + } + ], + "270963": [ + { + "id": 270963, + "a": "attr", + "t": "nexp", + "n": 222416, + "p": 1 + } + ], + "270964": [ + { + "id": 270964, + "a": "attr", + "t": "nexp", + "n": 222647, + "p": 1 + } + ], + "270965": [ + { + "id": 270965, + "a": "attr", + "t": "nexp", + "n": 222878, + "p": 1 + } + ], + "270966": [ + { + "id": 270966, + "a": "attr", + "t": "nexp", + "n": 223109, + "p": 1 + } + ], + "270967": [ + { + "id": 270967, + "a": "attr", + "t": "nexp", + "n": 223340, + "p": 1 + } + ], + "270968": [ + { + "id": 270968, + "a": "attr", + "t": "nexp", + "n": 223571, + "p": 1 + } + ], + "270969": [ + { + "id": 270969, + "a": "attr", + "t": "nexp", + "n": 223802, + "p": 1 + } + ], + "270970": [ + { + "id": 270970, + "a": "attr", + "t": "nexp", + "n": 224033, + "p": 1 + } + ], + "270971": [ + { + "id": 270971, + "a": "attr", + "t": "nexp", + "n": 224264, + "p": 1 + } + ], + "270972": [ + { + "id": 270972, + "a": "attr", + "t": "nexp", + "n": 224495, + "p": 1 + } + ], + "270973": [ + { + "id": 270973, + "a": "attr", + "t": "nexp", + "n": 224726, + "p": 1 + } + ], + "270974": [ + { + "id": 270974, + "a": "attr", + "t": "nexp", + "n": 224957, + "p": 1 + } + ], + "270975": [ + { + "id": 270975, + "a": "attr", + "t": "nexp", + "n": 225188, + "p": 1 + } + ], + "270976": [ + { + "id": 270976, + "a": "attr", + "t": "nexp", + "n": 225419, + "p": 1 + } + ], + "270977": [ + { + "id": 270977, + "a": "attr", + "t": "nexp", + "n": 225650, + "p": 1 + } + ], + "270978": [ + { + "id": 270978, + "a": "attr", + "t": "nexp", + "n": 225881, + "p": 1 + } + ], + "270979": [ + { + "id": 270979, + "a": "attr", + "t": "nexp", + "n": 226112, + "p": 1 + } + ], + "270980": [ + { + "id": 270980, + "a": "attr", + "t": "nexp", + "n": 226343, + "p": 1 + } + ], + "270981": [ + { + "id": 270981, + "a": "attr", + "t": "nexp", + "n": 226574, + "p": 1 + } + ], + "270982": [ + { + "id": 270982, + "a": "attr", + "t": "nexp", + "n": 226805, + "p": 1 + } + ], + "270983": [ + { + "id": 270983, + "a": "attr", + "t": "nexp", + "n": 227036, + "p": 1 + } + ], + "270984": [ + { + "id": 270984, + "a": "attr", + "t": "nexp", + "n": 227267, + "p": 1 + } + ], + "270985": [ + { + "id": 270985, + "a": "attr", + "t": "nexp", + "n": 227498, + "p": 1 + } + ], + "270986": [ + { + "id": 270986, + "a": "attr", + "t": "nexp", + "n": 227729, + "p": 1 + } + ], + "270987": [ + { + "id": 270987, + "a": "attr", + "t": "nexp", + "n": 227960, + "p": 1 + } + ], + "270988": [ + { + "id": 270988, + "a": "attr", + "t": "nexp", + "n": 228191, + "p": 1 + } + ], + "270989": [ + { + "id": 270989, + "a": "attr", + "t": "nexp", + "n": 228422, + "p": 1 + } + ], + "270990": [ + { + "id": 270990, + "a": "attr", + "t": "nexp", + "n": 228653, + "p": 1 + } + ], + "270991": [ + { + "id": 270991, + "a": "attr", + "t": "nexp", + "n": 228884, + "p": 1 + } + ], + "270992": [ + { + "id": 270992, + "a": "attr", + "t": "nexp", + "n": 229115, + "p": 1 + } + ], + "270993": [ + { + "id": 270993, + "a": "attr", + "t": "nexp", + "n": 229346, + "p": 1 + } + ], + "270994": [ + { + "id": 270994, + "a": "attr", + "t": "nexp", + "n": 229577, + "p": 1 + } + ], + "270995": [ + { + "id": 270995, + "a": "attr", + "t": "nexp", + "n": 229808, + "p": 1 + } + ], + "270996": [ + { + "id": 270996, + "a": "attr", + "t": "nexp", + "n": 230039, + "p": 1 + } + ], + "270997": [ + { + "id": 270997, + "a": "attr", + "t": "nexp", + "n": 230270, + "p": 1 + } + ], + "270998": [ + { + "id": 270998, + "a": "attr", + "t": "nexp", + "n": 230501, + "p": 1 + } + ], + "270999": [ + { + "id": 270999, + "a": "attr", + "t": "nexp", + "n": 230732, + "p": 1 + } + ], + "271000": [ + { + "id": 271000, + "a": "attr", + "t": "nexp", + "n": 230963, + "p": 1 + } + ], + "280001": [ + { + "id": 280001, + "a": "item", + "t": 1, + "n": 5000, + "p": 5 + }, + { + "id": 280001, + "a": "item", + "t": 1, + "n": 20000, + "p": 1 + }, + { + "id": 280001, + "a": "item", + "t": 1001, + "n": 1, + "p": 3 + }, + { + "id": 280001, + "a": "item", + "t": 1002, + "n": 1, + "p": 3 + }, + { + "id": 280001, + "a": "item", + "t": 1, + "n": 0, + "p": 30 + } + ], + "280002": [ + { + "id": 280002, + "a": "equip", + "t": 1001, + "n": 1, + "p": 8 + }, + { + "id": 280002, + "a": "equip", + "t": 2001, + "n": 1, + "p": 8 + }, + { + "id": 280002, + "a": "equip", + "t": 3001, + "n": 1, + "p": 8 + }, + { + "id": 280002, + "a": "equip", + "t": 4001, + "n": 1, + "p": 8 + }, + { + "id": 280002, + "a": "item", + "t": 10001, + "n": 1, + "p": 4 + }, + { + "id": 280002, + "a": "item", + "t": 20001, + "n": 1, + "p": 4 + }, + { + "id": 280002, + "a": "item", + "t": 30001, + "n": 1, + "p": 4 + }, + { + "id": 280002, + "a": "item", + "t": 40001, + "n": 1, + "p": 4 + }, + { + "id": 280002, + "a": "item", + "t": 26, + "n": 1, + "p": 1 + }, + { + "id": 280002, + "a": "item", + "t": 36, + "n": 1, + "p": 2 + }, + { + "id": 280002, + "a": "item", + "t": 1, + "n": 1, + "p": 80 + } + ], + "280003": [ + { + "id": 280003, + "a": "item", + "t": 70017, + "n": 1, + "p": 2 + }, + { + "id": 280003, + "a": "item", + "t": 70017, + "n": 0, + "p": 1 + } + ], + "280004": [ + { + "id": 280004, + "a": "item", + "t": 70018, + "n": 1, + "p": 2 + }, + { + "id": 280004, + "a": "item", + "t": 70018, + "n": 0, + "p": 1 + } + ], + "280005": [ + { + "id": 280005, + "a": "item", + "t": 70019, + "n": 1, + "p": 2 + }, + { + "id": 280005, + "a": "item", + "t": 70019, + "n": 0, + "p": 1 + } + ], + "280006": [ + { + "id": 280006, + "a": "item", + "t": 70020, + "n": 1, + "p": 1 + }, + { + "id": 280006, + "a": "item", + "t": 70020, + "n": 0, + "p": 1 + } + ], + "280007": [ + { + "id": 280007, + "a": "item", + "t": 70021, + "n": 1, + "p": 1 + }, + { + "id": 280007, + "a": "item", + "t": 70021, + "n": 0, + "p": 1 + } + ], + "280008": [ + { + "id": 280008, + "a": "item", + "t": 70022, + "n": 1, + "p": 1 + }, + { + "id": 280008, + "a": "item", + "t": 70022, + "n": 0, + "p": 1 + } + ], + "280009": [ + { + "id": 280009, + "a": "item", + "t": 70023, + "n": 1, + "p": 1 + }, + { + "id": 280009, + "a": "item", + "t": 70023, + "n": 0, + "p": 1 + } + ], + "280010": [ + { + "id": 280010, + "a": "item", + "t": 70024, + "n": 1, + "p": 1 + }, + { + "id": 280010, + "a": "item", + "t": 70024, + "n": 0, + "p": 1 + } + ], + "280011": [ + { + "id": 280011, + "a": "item", + "t": 70025, + "n": 1, + "p": 1 + }, + { + "id": 280011, + "a": "item", + "t": 70025, + "n": 0, + "p": 1 + } + ], + "280012": [ + { + "id": 280012, + "a": "item", + "t": 70026, + "n": 1, + "p": 1 + }, + { + "id": 280012, + "a": "item", + "t": 70026, + "n": 0, + "p": 1 + } + ], + "280013": [ + { + "id": 280013, + "a": "equip", + "t": 1001, + "n": 1, + "p": 1 + } + ], + "280014": [ + { + "id": 280014, + "a": "equip", + "t": 2001, + "n": 1, + "p": 1 + } + ], + "280015": [ + { + "id": 280015, + "a": "equip", + "t": 3001, + "n": 1, + "p": 1 + } + ], + "280016": [ + { + "id": 280016, + "a": "equip", + "t": 4001, + "n": 1, + "p": 1 + } + ], + "280017": [ + { + "id": 280017, + "a": "attr", + "t": "jinbi", + "n": 0, + "p": 1 + } + ], + "290001": [ + { + "id": 290001, + "a": "item", + "t": 614, + "n": 1, + "p": 1 + } + ], + "300001": [ + { + "id": 300001, + "a": "item", + "t": 1, + "n": 0, + "p": 8680 + }, + { + "id": 300001, + "a": "item", + "t": 70001, + "n": 1, + "p": 72 + }, + { + "id": 300001, + "a": "item", + "t": 70017, + "n": 1, + "p": 120 + }, + { + "id": 300001, + "a": "item", + "t": 70033, + "n": 1, + "p": 310 + }, + { + "id": 300001, + "a": "item", + "t": 70049, + "n": 1, + "p": 288 + }, + { + "id": 300001, + "a": "item", + "t": 70002, + "n": 1, + "p": 48 + }, + { + "id": 300001, + "a": "item", + "t": 70018, + "n": 1, + "p": 80 + }, + { + "id": 300001, + "a": "item", + "t": 70034, + "n": 1, + "p": 210 + }, + { + "id": 300001, + "a": "item", + "t": 70050, + "n": 1, + "p": 192 + } + ], + "300002": [ + { + "id": 300002, + "a": "item", + "t": 1, + "n": 0, + "p": 8300 + }, + { + "id": 300002, + "a": "item", + "t": 70002, + "n": 1, + "p": 120 + }, + { + "id": 300002, + "a": "item", + "t": 70018, + "n": 1, + "p": 180 + }, + { + "id": 300002, + "a": "item", + "t": 70034, + "n": 1, + "p": 360 + }, + { + "id": 300002, + "a": "item", + "t": 70050, + "n": 1, + "p": 360 + }, + { + "id": 300002, + "a": "item", + "t": 70003, + "n": 1, + "p": 80 + }, + { + "id": 300002, + "a": "item", + "t": 70019, + "n": 1, + "p": 120 + }, + { + "id": 300002, + "a": "item", + "t": 70035, + "n": 1, + "p": 240 + }, + { + "id": 300002, + "a": "item", + "t": 70051, + "n": 1, + "p": 240 + } + ], + "300003": [ + { + "id": 300003, + "a": "item", + "t": 1, + "n": 0, + "p": 8300 + }, + { + "id": 300003, + "a": "item", + "t": 70003, + "n": 1, + "p": 120 + }, + { + "id": 300003, + "a": "item", + "t": 70019, + "n": 1, + "p": 180 + }, + { + "id": 300003, + "a": "item", + "t": 70035, + "n": 1, + "p": 360 + }, + { + "id": 300003, + "a": "item", + "t": 70051, + "n": 1, + "p": 360 + }, + { + "id": 300003, + "a": "item", + "t": 70004, + "n": 1, + "p": 80 + }, + { + "id": 300003, + "a": "item", + "t": 70020, + "n": 1, + "p": 120 + }, + { + "id": 300003, + "a": "item", + "t": 70036, + "n": 1, + "p": 240 + }, + { + "id": 300003, + "a": "item", + "t": 70052, + "n": 1, + "p": 240 + } + ], + "300004": [ + { + "id": 300004, + "a": "item", + "t": 1, + "n": 0, + "p": 8300 + }, + { + "id": 300004, + "a": "item", + "t": 70004, + "n": 1, + "p": 120 + }, + { + "id": 300004, + "a": "item", + "t": 70020, + "n": 1, + "p": 180 + }, + { + "id": 300004, + "a": "item", + "t": 70036, + "n": 1, + "p": 360 + }, + { + "id": 300004, + "a": "item", + "t": 70052, + "n": 1, + "p": 360 + }, + { + "id": 300004, + "a": "item", + "t": 70005, + "n": 1, + "p": 80 + }, + { + "id": 300004, + "a": "item", + "t": 70021, + "n": 1, + "p": 120 + }, + { + "id": 300004, + "a": "item", + "t": 70037, + "n": 1, + "p": 240 + }, + { + "id": 300004, + "a": "item", + "t": 70053, + "n": 1, + "p": 240 + } + ], + "300005": [ + { + "id": 300005, + "a": "item", + "t": 1, + "n": 0, + "p": 8300 + }, + { + "id": 300005, + "a": "item", + "t": 70005, + "n": 1, + "p": 120 + }, + { + "id": 300005, + "a": "item", + "t": 70021, + "n": 1, + "p": 180 + }, + { + "id": 300005, + "a": "item", + "t": 70037, + "n": 1, + "p": 360 + }, + { + "id": 300005, + "a": "item", + "t": 70053, + "n": 1, + "p": 360 + }, + { + "id": 300005, + "a": "item", + "t": 70006, + "n": 1, + "p": 80 + }, + { + "id": 300005, + "a": "item", + "t": 70022, + "n": 1, + "p": 120 + }, + { + "id": 300005, + "a": "item", + "t": 70038, + "n": 1, + "p": 240 + }, + { + "id": 300005, + "a": "item", + "t": 70054, + "n": 1, + "p": 240 + } + ], + "300006": [ + { + "id": 300006, + "a": "item", + "t": 1, + "n": 0, + "p": 8270 + }, + { + "id": 300006, + "a": "item", + "t": 70006, + "n": 1, + "p": 175 + }, + { + "id": 300006, + "a": "item", + "t": 70022, + "n": 1, + "p": 210 + }, + { + "id": 300006, + "a": "item", + "t": 70038, + "n": 1, + "p": 406 + }, + { + "id": 300006, + "a": "item", + "t": 70054, + "n": 1, + "p": 420 + }, + { + "id": 300006, + "a": "item", + "t": 70007, + "n": 1, + "p": 75 + }, + { + "id": 300006, + "a": "item", + "t": 70023, + "n": 1, + "p": 90 + }, + { + "id": 300006, + "a": "item", + "t": 70039, + "n": 1, + "p": 174 + }, + { + "id": 300006, + "a": "item", + "t": 70055, + "n": 1, + "p": 180 + } + ], + "300007": [ + { + "id": 300007, + "a": "item", + "t": 1, + "n": 0, + "p": 8270 + }, + { + "id": 300007, + "a": "item", + "t": 70007, + "n": 1, + "p": 175 + }, + { + "id": 300007, + "a": "item", + "t": 70023, + "n": 1, + "p": 210 + }, + { + "id": 300007, + "a": "item", + "t": 70039, + "n": 1, + "p": 406 + }, + { + "id": 300007, + "a": "item", + "t": 70055, + "n": 1, + "p": 420 + }, + { + "id": 300007, + "a": "item", + "t": 70008, + "n": 1, + "p": 75 + }, + { + "id": 300007, + "a": "item", + "t": 70024, + "n": 1, + "p": 90 + }, + { + "id": 300007, + "a": "item", + "t": 70040, + "n": 1, + "p": 174 + }, + { + "id": 300007, + "a": "item", + "t": 70056, + "n": 1, + "p": 180 + } + ], + "300008": [ + { + "id": 300008, + "a": "item", + "t": 1, + "n": 0, + "p": 8270 + }, + { + "id": 300008, + "a": "item", + "t": 70008, + "n": 1, + "p": 175 + }, + { + "id": 300008, + "a": "item", + "t": 70024, + "n": 1, + "p": 210 + }, + { + "id": 300008, + "a": "item", + "t": 70040, + "n": 1, + "p": 406 + }, + { + "id": 300008, + "a": "item", + "t": 70056, + "n": 1, + "p": 420 + }, + { + "id": 300008, + "a": "item", + "t": 70009, + "n": 1, + "p": 50 + }, + { + "id": 300008, + "a": "item", + "t": 70025, + "n": 1, + "p": 60 + }, + { + "id": 300008, + "a": "item", + "t": 70041, + "n": 1, + "p": 116 + }, + { + "id": 300008, + "a": "item", + "t": 70057, + "n": 1, + "p": 120 + }, + { + "id": 300008, + "a": "item", + "t": 70010, + "n": 1, + "p": 25 + }, + { + "id": 300008, + "a": "item", + "t": 70026, + "n": 1, + "p": 30 + }, + { + "id": 300008, + "a": "item", + "t": 70042, + "n": 1, + "p": 58 + }, + { + "id": 300008, + "a": "item", + "t": 70058, + "n": 1, + "p": 60 + } + ] +} \ No newline at end of file diff --git a/src/json/diaoluoduihuan.json5 b/src/json/diaoluoduihuan.json5 new file mode 100644 index 0000000..7e67088 --- /dev/null +++ b/src/json/diaoluoduihuan.json5 @@ -0,0 +1,51 @@ +{ + //对应mfm 14701 + diaoluo: [ + //掉落的物品 + { + a: 'item', + t: '49', + n: 6, + p: 10, + s: 3600 + } + + ], + tiaozhuan: 3, + event: { + time: 604800, + itemId: '49', + duihuan: [ + { need: [{a: 'item', t: '49', n: 6000}], prize: [{a: 'item', t: '610', n: 1}], num: 2 }, + { need: [{a: 'item', t: '49', n: 3500}], prize: [{a: 'item', t: '600', n: 80},{a: 'item', t: '12', n: 20000}], num: 4 }, + { need: [{a: 'item', t: '49', n: 1200}], prize: [{a: 'item', t: '600', n: 20},{a: 'item', t: '609', n: 1},{a: 'item', t: '4', n: 20}], num: 1 }, + { need: [{a: 'item', t: '49', n: 1500}], prize: [{a: 'item', t: '611', n: 1},{a: 'item', t: '624', n: 50}], num: 1 }, + { need: [{a: 'item', t: '49', n: 350}], prize: [{a: 'item', t: '607', n: 20}], num: 1 }, + { need: [{a: 'item', t: '49', n: 350}], prize: [{a: 'item', t: '600', n: 5}], num: 1 }, + { need: [{a: 'item', t: '49', n: 100}], prize: [{a: 'item', t: '4', n: 1}], num: 99 }, + { need: [{a: 'item', t: '49', n: 10}], prize: [{a: 'item', t: '12', n: 25}], num: 99 }, + { need: [{a: 'item', t: '49', n: 2}], prize: [{a: 'item', t: '2', n: 10}], num: 99 }, + ], + shop: [ + { need: [{a: 'attr', t: 'rmbmoney', n: 0}], prize: [{a: 'attr', t: 'rmbmoney', n: 500}], num: 1 }, + { need: [{a: 'attr', t: 'rmbmoney', n: 800}], prize: [{a: 'item', t: '4', n: 5},{a: 'item', t: '2', n: 1000}], num: 1 }, + { need: [{a: 'attr', t: 'rmbmoney', n: 2250}], prize: [{a: 'item', t: '4', n: 10},{a: 'item', t: '12', n: 2000}], num: 1 }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '12', n: 6000}], num: 1 }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '2', n: 12000}], num: 3 }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '9', n: 6000}], num: 3 }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '10', n: 300}], num: 3 }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '612', n: 20}], num: 3 }, + { need: [{a: 'attr', t: 'rmbmoney', n: 20000}], prize: [{a: 'item', t: '607', n: 40},{a: 'item', t: '617', n: 2}], num: 4 }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '624', n: 20}], num: 3 }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '629', n: 20}], num: 3 }, + ], + gift: [ + { payId: '', num: 1, prize: [{a: 'item', t: '49', n: 20}, {a: 'attr', t: 'rmbmoney', n: 200}] }, + { payId: 'duihuan_1_1', prize: [{a: 'item', t: '49', n: 50}, {a: 'attr', t: 'rmbmoney', n: 600}] }, + { payId: 'duihuan_1_2', prize: [{a: 'item', t: '49', n: 100}, {a: 'attr', t: 'rmbmoney', n: 1360}] }, + { payId: 'duihuan_1_3', prize: [{a: 'item', t: '49', n: 200}, {a: 'attr', t: 'rmbmoney', n: 2560}] }, + { payId: 'duihuan_1_4', prize: [{a: 'item', t: '49', n: 600}, {a: 'attr', t: 'rmbmoney', n: 6560}] }, + { payId: 'duihuan_1_5', prize: [{a: 'item', t: '49', n: 1200}, {a: 'attr', t: 'rmbmoney', n: 12960}] }, + ] + } +} \ No newline at end of file diff --git a/src/json/dixiaheishi.json5 b/src/json/dixiaheishi.json5 new file mode 100644 index 0000000..83751f3 --- /dev/null +++ b/src/json/dixiaheishi.json5 @@ -0,0 +1,42 @@ +{ + //特权月卡 + tqyk: { + qingbaotequan: { payId: 'qingbaotequan', title: 'intr_dixiaheishi_title_1' }, + zuozhantequan: { payId: 'zuozhantequan', title: 'intr_dixiaheishi_title_2' }, + caifutequan: { payId: 'caifutequan', title: 'intr_dixiaheishi_title_3'}, + jiubatequan: { payId: 'jiubatequan', title: 'intr_dixiaheishi_title_4'} + }, + //终身卡 + zsk: { + payId: 'zhongshenka', + }, + //月卡 + yueka: [ + { payId: 'chaozhiyueka' }, + { payId: 'zhizunyueka' }, + ], + //周礼包 + zhoulibao: { + time: 604800, + pays: [ + { payId: 'zhoulibao1' }, + { payId: 'zhoulibao2' }, + { payId: 'zhoulibao3' }, + { payId: 'zhoulibao4' }, + { payId: 'zhoulibao5' }, + { payId: 'zhoulibao6' }, + { payId: 'zhoulibao7' }, + { payId: 'zhoulibao8' }, + { payId: 'zhoulibao9' }, + { payId: 'zhoulibao10' } + ] + }, + //136礼包 + '136Gift': [ + { payId: '136Gift1', prize: [] }, + { prize: [{"a": "attr", "t": "rmbmoney", "n": 10},{"a": "item", "t": "12", "n": 10},{"a": "attr", "t": "jinbi", "n": 10000}] }, + { payId: '136Gift2', prize: [] }, + { payId: '136Gift3', prize: [] }, + { payId: '136Gift4', prize: [] }, + ], +} \ No newline at end of file diff --git a/src/json/dixiaqianzhuang.json b/src/json/dixiaqianzhuang.json new file mode 100644 index 0000000..2a73a64 --- /dev/null +++ b/src/json/dixiaqianzhuang.json @@ -0,0 +1,173 @@ +{ + "1": { + "id": 1, + "cs": [ + 1, + 1 + ], + "need": 0, + "needVIP": 0 + }, + "2": { + "id": 2, + "cs": [ + 2, + 3 + ], + "need": 5, + "needVIP": 0 + }, + "3": { + "id": 3, + "cs": [ + 4, + 5 + ], + "need": 5, + "needVIP": 1 + }, + "4": { + "id": 4, + "cs": [ + 6, + 10 + ], + "need": 10, + "needVIP": 2 + }, + "5": { + "id": 5, + "cs": [ + 11, + 20 + ], + "need": 15, + "needVIP": 3 + }, + "6": { + "id": 6, + "cs": [ + 21, + 30 + ], + "need": 20, + "needVIP": 4 + }, + "7": { + "id": 7, + "cs": [ + 31, + 40 + ], + "need": 20, + "needVIP": 5 + }, + "8": { + "id": 8, + "cs": [ + 41, + 50 + ], + "need": 20, + "needVIP": 6 + }, + "9": { + "id": 9, + "cs": [ + 51, + 60 + ], + "need": 20, + "needVIP": 7 + }, + "10": { + "id": 10, + "cs": [ + 61, + 80 + ], + "need": 20, + "needVIP": 8 + }, + "11": { + "id": 11, + "cs": [ + 81, + 100 + ], + "need": 20, + "needVIP": 9 + }, + "12": { + "id": 12, + "cs": [ + 101, + 120 + ], + "need": 20, + "needVIP": 10 + }, + "13": { + "id": 13, + "cs": [ + 121, + 140 + ], + "need": 20, + "needVIP": 11 + }, + "14": { + "id": 14, + "cs": [ + 141, + 170 + ], + "need": 20, + "needVIP": 12 + }, + "15": { + "id": 15, + "cs": [ + 171, + 200 + ], + "need": 20, + "needVIP": 13 + }, + "16": { + "id": 16, + "cs": [ + 201, + 300 + ], + "need": 20, + "needVIP": 14 + }, + "17": { + "id": 17, + "cs": [ + 301, + 400 + ], + "need": 20, + "needVIP": 15 + }, + "18": { + "id": 18, + "cs": [ + 401, + 500 + ], + "need": 20, + "needVIP": 16 + }, + "19": { + "id": 19, + "cs": [ + 501, + 800 + ], + "need": 20, + "needVIP": 17 + } +} \ No newline at end of file diff --git a/src/json/dxlt_com.json5 b/src/json/dxlt_com.json5 new file mode 100644 index 0000000..ee8add6 --- /dev/null +++ b/src/json/dxlt_com.json5 @@ -0,0 +1,68 @@ +{ + //开放时间周一至周日秒数区间 + open: [0, 604800], + //需要上阵的干部数量 + heroNum: [1, 6], + //每日最大挑战层数 + dayFightLayer: 12, + //x次手动战斗后开启快速战斗 + fastFightNeedNum: 5, + //累计x个密宝可领取一次奖励 + getPrizeByMiBaoNum: 6, + //每天重置后回退的层数 + dayResetBackLayer: 6, + //每周重置后回退的层数 + weekResetBackLayer: 0, + //战斗奖励 + fightPrize: { + //概率 + random: [ + { type: 'item', rd: [{id: '1', p: 40},{id: '2', p: 40},{id: '3', p: 40}], p: 120}, + { type: 'buff', rd: [{id: '1', p: 90},{id: '2', p: 90},{id: '3', p: 90}], p: 270}, + { type: 'prize', rd: [], p: 300}, + { type: 'shop', p: 80} + ], + //道具 + item: { + '1': { name: 'intr_dxlt_com_name_1', val: 0.5, intr: 'intr_dxlt_com_intr_1' }, + '2': { name: 'intr_dxlt_com_name_2', val: 1, intr: 'intr_dxlt_com_intr_2' }, + '3': { name: 'intr_dxlt_com_name_3', val: 1, intr: 'intr_dxlt_com_intr_3' }, + }, + //buff加成 + buff: { + '1': { name: 'intr_dxlt_com_name_4', buff: { dpspro: 0.03 }, intr: 'intr_dxlt_com_intr_4' }, + '2': { name: 'intr_dxlt_com_name_5', buff: { atkpro: 0.03 }, intr: 'intr_dxlt_com_intr_5' }, + '3': { name: 'intr_dxlt_com_name_6', buff: { hppro: 0.03 }, intr: 'intr_dxlt_com_intr_6' }, + }, + //物品奖励 在掉落组表配置即可 + prizeDlz: 13 + }, + //守卫长战斗奖励 + fightPrizeBoss: { + random: [ + { p: 50, dlz: 30001 }, + { p: 15, mibaoNum: 1 }, + { p: 60 } + ] + }, + //探索奖励 + killPrize: [ + { need: 1, prize: [{a: 'attr', t: 'jinbi', n: 100000},{a: 'item', t: '13', n: 10}] }, + { need: 2, prize: [{a: 'attr', t: 'jinbi', n: 150000},{a: 'item', t: '13', n: 15}] }, + { need: 3, prize: [{a: 'attr', t: 'jinbi', n: 200000},{a: 'item', t: '13', n: 20}] }, + { need: 4, prize: [{a: 'attr', t: 'jinbi', n: 250000},{a: 'item', t: '13', n: 25}] }, + { need: 5, prize: [{a: 'attr', t: 'jinbi', n: 300000},{a: 'item', t: '13', n: 35}] }, + { need: 6, prize: [{a: 'attr', t: 'jinbi', n: 350000},{a: 'item', t: '13', n: 40}] }, + ], + //通关奖励 + passPrize: [ + { need: 5, prize: [{a: 'attr', t: 'jinbi', n: 1000}] }, + { need: 10, prize: [{a: 'attr', t: 'jinbi', n: 1000}] }, + { need: 15, prize: [{a: 'attr', t: 'jinbi', n: 1000}] }, + { need: 20, prize: [{a: 'attr', t: 'jinbi', n: 1000}] }, + { need: 25, prize: [{a: 'attr', t: 'jinbi', n: 1000}] }, + { need: 30, prize: [{a: 'attr', t: 'jinbi', n: 1000}] }, + { need: 35, prize: [{a: 'attr', t: 'jinbi', n: 1000}] }, + { need: 40, prize: [{a: 'attr', t: 'jinbi', n: 1000}] }, + ] +} \ No newline at end of file diff --git a/src/json/dxlt_layer.json b/src/json/dxlt_layer.json new file mode 100644 index 0000000..a3df43e --- /dev/null +++ b/src/json/dxlt_layer.json @@ -0,0 +1,8002 @@ +{ + "1": { + "id": 1, + "type": 1, + "npcId": 40000, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 1, + "guan": 1 + }, + "2": { + "id": 2, + "type": 1, + "npcId": 40001, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 1, + "guan": 2 + }, + "3": { + "id": 3, + "type": 1, + "npcId": 40002, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 1, + "guan": 3 + }, + "4": { + "id": 4, + "type": 1, + "npcId": 40003, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 1, + "guan": 4 + }, + "5": { + "id": 5, + "type": 1, + "npcId": 40004, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 5 + } + ], + "isBoss": 1, + "ceng": 1, + "guan": 5 + }, + "6": { + "id": 6, + "type": 1, + "npcId": 40005, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 2, + "guan": 1 + }, + "7": { + "id": 7, + "type": 1, + "npcId": 40006, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 2, + "guan": 2 + }, + "8": { + "id": 8, + "type": 1, + "npcId": 40007, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 2, + "guan": 3 + }, + "9": { + "id": 9, + "type": 1, + "npcId": 40008, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 2, + "guan": 4 + }, + "10": { + "id": 10, + "type": 1, + "npcId": 40009, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 5 + } + ], + "isBoss": 1, + "ceng": 2, + "guan": 5 + }, + "11": { + "id": 11, + "type": 1, + "npcId": 40010, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 3, + "guan": 1 + }, + "12": { + "id": 12, + "type": 1, + "npcId": 40011, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 3, + "guan": 2 + }, + "13": { + "id": 13, + "type": 1, + "npcId": 40012, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 3, + "guan": 3 + }, + "14": { + "id": 14, + "type": 1, + "npcId": 40013, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 3, + "guan": 4 + }, + "15": { + "id": 15, + "type": 1, + "npcId": 40014, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 10 + } + ], + "isBoss": 1, + "ceng": 3, + "guan": 5 + }, + "16": { + "id": 16, + "type": 1, + "npcId": 40015, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 4, + "guan": 1 + }, + "17": { + "id": 17, + "type": 1, + "npcId": 40016, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 4, + "guan": 2 + }, + "18": { + "id": 18, + "type": 1, + "npcId": 40017, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 4, + "guan": 3 + }, + "19": { + "id": 19, + "type": 1, + "npcId": 40018, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 4, + "guan": 4 + }, + "20": { + "id": 20, + "type": 1, + "npcId": 40019, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 10 + } + ], + "isBoss": 1, + "ceng": 4, + "guan": 5 + }, + "21": { + "id": 21, + "type": 1, + "npcId": 40020, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 5, + "guan": 1 + }, + "22": { + "id": 22, + "type": 1, + "npcId": 40021, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 5, + "guan": 2 + }, + "23": { + "id": 23, + "type": 1, + "npcId": 40022, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 5, + "guan": 3 + }, + "24": { + "id": 24, + "type": 1, + "npcId": 40023, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 5, + "guan": 4 + }, + "25": { + "id": 25, + "type": 1, + "npcId": 40024, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 15 + } + ], + "isBoss": 1, + "ceng": 5, + "guan": 5 + }, + "26": { + "id": 26, + "type": 1, + "npcId": 40025, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 6, + "guan": 1 + }, + "27": { + "id": 27, + "type": 1, + "npcId": 40026, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 6, + "guan": 2 + }, + "28": { + "id": 28, + "type": 1, + "npcId": 40027, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 6, + "guan": 3 + }, + "29": { + "id": 29, + "type": 1, + "npcId": 40028, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 6, + "guan": 4 + }, + "30": { + "id": 30, + "type": 1, + "npcId": 40029, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 15 + } + ], + "isBoss": 1, + "ceng": 6, + "guan": 5 + }, + "31": { + "id": 31, + "type": 1, + "npcId": 40030, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 7, + "guan": 1 + }, + "32": { + "id": 32, + "type": 1, + "npcId": 40031, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 7, + "guan": 2 + }, + "33": { + "id": 33, + "type": 1, + "npcId": 40032, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 7, + "guan": 3 + }, + "34": { + "id": 34, + "type": 1, + "npcId": 40033, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 7, + "guan": 4 + }, + "35": { + "id": 35, + "type": 1, + "npcId": 40034, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 7, + "guan": 5 + }, + "36": { + "id": 36, + "type": 1, + "npcId": 40035, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 8, + "guan": 1 + }, + "37": { + "id": 37, + "type": 1, + "npcId": 40036, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 8, + "guan": 2 + }, + "38": { + "id": 38, + "type": 1, + "npcId": 40037, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 8, + "guan": 3 + }, + "39": { + "id": 39, + "type": 1, + "npcId": 40038, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 8, + "guan": 4 + }, + "40": { + "id": 40, + "type": 1, + "npcId": 40039, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 8, + "guan": 5 + }, + "41": { + "id": 41, + "type": 1, + "npcId": 40040, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 9, + "guan": 1 + }, + "42": { + "id": 42, + "type": 1, + "npcId": 40041, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 9, + "guan": 2 + }, + "43": { + "id": 43, + "type": 1, + "npcId": 40042, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 9, + "guan": 3 + }, + "44": { + "id": 44, + "type": 1, + "npcId": 40043, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 9, + "guan": 4 + }, + "45": { + "id": 45, + "type": 1, + "npcId": 40044, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 9, + "guan": 5 + }, + "46": { + "id": 46, + "type": 1, + "npcId": 40045, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 10, + "guan": 1 + }, + "47": { + "id": 47, + "type": 1, + "npcId": 40046, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 10, + "guan": 2 + }, + "48": { + "id": 48, + "type": 1, + "npcId": 40047, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 10, + "guan": 3 + }, + "49": { + "id": 49, + "type": 1, + "npcId": 40048, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 10, + "guan": 4 + }, + "50": { + "id": 50, + "type": 1, + "npcId": 40049, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 10, + "guan": 5 + }, + "51": { + "id": 51, + "type": 1, + "npcId": 40050, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 11, + "guan": 1 + }, + "52": { + "id": 52, + "type": 1, + "npcId": 40051, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 11, + "guan": 2 + }, + "53": { + "id": 53, + "type": 1, + "npcId": 40052, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 11, + "guan": 3 + }, + "54": { + "id": 54, + "type": 1, + "npcId": 40053, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 11, + "guan": 4 + }, + "55": { + "id": 55, + "type": 1, + "npcId": 40054, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 11, + "guan": 5 + }, + "56": { + "id": 56, + "type": 1, + "npcId": 40055, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 12, + "guan": 1 + }, + "57": { + "id": 57, + "type": 1, + "npcId": 40056, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 12, + "guan": 2 + }, + "58": { + "id": 58, + "type": 1, + "npcId": 40057, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 12, + "guan": 3 + }, + "59": { + "id": 59, + "type": 1, + "npcId": 40058, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 12, + "guan": 4 + }, + "60": { + "id": 60, + "type": 1, + "npcId": 40059, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 12, + "guan": 5 + }, + "61": { + "id": 61, + "type": 1, + "npcId": 40060, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 13, + "guan": 1 + }, + "62": { + "id": 62, + "type": 1, + "npcId": 40061, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 13, + "guan": 2 + }, + "63": { + "id": 63, + "type": 1, + "npcId": 40062, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 13, + "guan": 3 + }, + "64": { + "id": 64, + "type": 1, + "npcId": 40063, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 13, + "guan": 4 + }, + "65": { + "id": 65, + "type": 1, + "npcId": 40064, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 13, + "guan": 5 + }, + "66": { + "id": 66, + "type": 1, + "npcId": 40065, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 14, + "guan": 1 + }, + "67": { + "id": 67, + "type": 1, + "npcId": 40066, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 14, + "guan": 2 + }, + "68": { + "id": 68, + "type": 1, + "npcId": 40067, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 14, + "guan": 3 + }, + "69": { + "id": 69, + "type": 1, + "npcId": 40068, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 14, + "guan": 4 + }, + "70": { + "id": 70, + "type": 1, + "npcId": 40069, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 14, + "guan": 5 + }, + "71": { + "id": 71, + "type": 1, + "npcId": 40070, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 15, + "guan": 1 + }, + "72": { + "id": 72, + "type": 1, + "npcId": 40071, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 15, + "guan": 2 + }, + "73": { + "id": 73, + "type": 1, + "npcId": 40072, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 15, + "guan": 3 + }, + "74": { + "id": 74, + "type": 1, + "npcId": 40073, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 15, + "guan": 4 + }, + "75": { + "id": 75, + "type": 1, + "npcId": 40074, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 15, + "guan": 5 + }, + "76": { + "id": 76, + "type": 1, + "npcId": 40075, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 16, + "guan": 1 + }, + "77": { + "id": 77, + "type": 1, + "npcId": 40076, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 16, + "guan": 2 + }, + "78": { + "id": 78, + "type": 1, + "npcId": 40077, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 16, + "guan": 3 + }, + "79": { + "id": 79, + "type": 1, + "npcId": 40078, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 16, + "guan": 4 + }, + "80": { + "id": 80, + "type": 1, + "npcId": 40079, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 16, + "guan": 5 + }, + "81": { + "id": 81, + "type": 1, + "npcId": 40080, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 17, + "guan": 1 + }, + "82": { + "id": 82, + "type": 1, + "npcId": 40081, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 17, + "guan": 2 + }, + "83": { + "id": 83, + "type": 1, + "npcId": 40082, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 17, + "guan": 3 + }, + "84": { + "id": 84, + "type": 1, + "npcId": 40083, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 17, + "guan": 4 + }, + "85": { + "id": 85, + "type": 1, + "npcId": 40084, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 17, + "guan": 5 + }, + "86": { + "id": 86, + "type": 1, + "npcId": 40085, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 18, + "guan": 1 + }, + "87": { + "id": 87, + "type": 1, + "npcId": 40086, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 18, + "guan": 2 + }, + "88": { + "id": 88, + "type": 1, + "npcId": 40087, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 18, + "guan": 3 + }, + "89": { + "id": 89, + "type": 1, + "npcId": 40088, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 18, + "guan": 4 + }, + "90": { + "id": 90, + "type": 1, + "npcId": 40089, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 18, + "guan": 5 + }, + "91": { + "id": 91, + "type": 1, + "npcId": 40090, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 19, + "guan": 1 + }, + "92": { + "id": 92, + "type": 1, + "npcId": 40091, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 19, + "guan": 2 + }, + "93": { + "id": 93, + "type": 1, + "npcId": 40092, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 19, + "guan": 3 + }, + "94": { + "id": 94, + "type": 1, + "npcId": 40093, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 19, + "guan": 4 + }, + "95": { + "id": 95, + "type": 1, + "npcId": 40094, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 19, + "guan": 5 + }, + "96": { + "id": 96, + "type": 1, + "npcId": 40095, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 20, + "guan": 1 + }, + "97": { + "id": 97, + "type": 1, + "npcId": 40096, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 20, + "guan": 2 + }, + "98": { + "id": 98, + "type": 1, + "npcId": 40097, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 20, + "guan": 3 + }, + "99": { + "id": 99, + "type": 1, + "npcId": 40098, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 20, + "guan": 4 + }, + "100": { + "id": 100, + "type": 1, + "npcId": 40099, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 20, + "guan": 5 + }, + "101": { + "id": 101, + "type": 1, + "npcId": 40100, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 21, + "guan": 1 + }, + "102": { + "id": 102, + "type": 1, + "npcId": 40101, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 21, + "guan": 2 + }, + "103": { + "id": 103, + "type": 1, + "npcId": 40102, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 21, + "guan": 3 + }, + "104": { + "id": 104, + "type": 1, + "npcId": 40103, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 21, + "guan": 4 + }, + "105": { + "id": 105, + "type": 1, + "npcId": 40104, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 21, + "guan": 5 + }, + "106": { + "id": 106, + "type": 1, + "npcId": 40105, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 22, + "guan": 1 + }, + "107": { + "id": 107, + "type": 1, + "npcId": 40106, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 22, + "guan": 2 + }, + "108": { + "id": 108, + "type": 1, + "npcId": 40107, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 22, + "guan": 3 + }, + "109": { + "id": 109, + "type": 1, + "npcId": 40108, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 22, + "guan": 4 + }, + "110": { + "id": 110, + "type": 1, + "npcId": 40109, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 22, + "guan": 5 + }, + "111": { + "id": 111, + "type": 1, + "npcId": 40110, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 23, + "guan": 1 + }, + "112": { + "id": 112, + "type": 1, + "npcId": 40111, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 23, + "guan": 2 + }, + "113": { + "id": 113, + "type": 1, + "npcId": 40112, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 23, + "guan": 3 + }, + "114": { + "id": 114, + "type": 1, + "npcId": 40113, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 23, + "guan": 4 + }, + "115": { + "id": 115, + "type": 1, + "npcId": 40114, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 23, + "guan": 5 + }, + "116": { + "id": 116, + "type": 1, + "npcId": 40115, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 24, + "guan": 1 + }, + "117": { + "id": 117, + "type": 1, + "npcId": 40116, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 24, + "guan": 2 + }, + "118": { + "id": 118, + "type": 1, + "npcId": 40117, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 24, + "guan": 3 + }, + "119": { + "id": 119, + "type": 1, + "npcId": 40118, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 24, + "guan": 4 + }, + "120": { + "id": 120, + "type": 1, + "npcId": 40119, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 24, + "guan": 5 + }, + "121": { + "id": 121, + "type": 1, + "npcId": 40120, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 25, + "guan": 1 + }, + "122": { + "id": 122, + "type": 1, + "npcId": 40121, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 25, + "guan": 2 + }, + "123": { + "id": 123, + "type": 1, + "npcId": 40122, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 25, + "guan": 3 + }, + "124": { + "id": 124, + "type": 1, + "npcId": 40123, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 25, + "guan": 4 + }, + "125": { + "id": 125, + "type": 1, + "npcId": 40124, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 25, + "guan": 5 + }, + "126": { + "id": 126, + "type": 1, + "npcId": 40125, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 26, + "guan": 1 + }, + "127": { + "id": 127, + "type": 1, + "npcId": 40126, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 26, + "guan": 2 + }, + "128": { + "id": 128, + "type": 1, + "npcId": 40127, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 26, + "guan": 3 + }, + "129": { + "id": 129, + "type": 1, + "npcId": 40128, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 26, + "guan": 4 + }, + "130": { + "id": 130, + "type": 1, + "npcId": 40129, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 26, + "guan": 5 + }, + "131": { + "id": 131, + "type": 1, + "npcId": 40130, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 27, + "guan": 1 + }, + "132": { + "id": 132, + "type": 1, + "npcId": 40131, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 27, + "guan": 2 + }, + "133": { + "id": 133, + "type": 1, + "npcId": 40132, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 27, + "guan": 3 + }, + "134": { + "id": 134, + "type": 1, + "npcId": 40133, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 27, + "guan": 4 + }, + "135": { + "id": 135, + "type": 1, + "npcId": 40134, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 27, + "guan": 5 + }, + "136": { + "id": 136, + "type": 1, + "npcId": 40135, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 28, + "guan": 1 + }, + "137": { + "id": 137, + "type": 1, + "npcId": 40136, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 28, + "guan": 2 + }, + "138": { + "id": 138, + "type": 1, + "npcId": 40137, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 28, + "guan": 3 + }, + "139": { + "id": 139, + "type": 1, + "npcId": 40138, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 28, + "guan": 4 + }, + "140": { + "id": 140, + "type": 1, + "npcId": 40139, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 28, + "guan": 5 + }, + "141": { + "id": 141, + "type": 1, + "npcId": 40140, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 29, + "guan": 1 + }, + "142": { + "id": 142, + "type": 1, + "npcId": 40141, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 29, + "guan": 2 + }, + "143": { + "id": 143, + "type": 1, + "npcId": 40142, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 29, + "guan": 3 + }, + "144": { + "id": 144, + "type": 1, + "npcId": 40143, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 29, + "guan": 4 + }, + "145": { + "id": 145, + "type": 1, + "npcId": 40144, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 29, + "guan": 5 + }, + "146": { + "id": 146, + "type": 1, + "npcId": 40145, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 30, + "guan": 1 + }, + "147": { + "id": 147, + "type": 1, + "npcId": 40146, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 30, + "guan": 2 + }, + "148": { + "id": 148, + "type": 1, + "npcId": 40147, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 30, + "guan": 3 + }, + "149": { + "id": 149, + "type": 1, + "npcId": 40148, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 30, + "guan": 4 + }, + "150": { + "id": 150, + "type": 1, + "npcId": 40149, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 30, + "guan": 5 + }, + "151": { + "id": 151, + "type": 1, + "npcId": 40150, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 31, + "guan": 1 + }, + "152": { + "id": 152, + "type": 1, + "npcId": 40151, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 31, + "guan": 2 + }, + "153": { + "id": 153, + "type": 1, + "npcId": 40152, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 31, + "guan": 3 + }, + "154": { + "id": 154, + "type": 1, + "npcId": 40153, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 31, + "guan": 4 + }, + "155": { + "id": 155, + "type": 1, + "npcId": 40154, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 31, + "guan": 5 + }, + "156": { + "id": 156, + "type": 1, + "npcId": 40155, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 32, + "guan": 1 + }, + "157": { + "id": 157, + "type": 1, + "npcId": 40156, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 32, + "guan": 2 + }, + "158": { + "id": 158, + "type": 1, + "npcId": 40157, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 32, + "guan": 3 + }, + "159": { + "id": 159, + "type": 1, + "npcId": 40158, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 32, + "guan": 4 + }, + "160": { + "id": 160, + "type": 1, + "npcId": 40159, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 32, + "guan": 5 + }, + "161": { + "id": 161, + "type": 1, + "npcId": 40160, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 33, + "guan": 1 + }, + "162": { + "id": 162, + "type": 1, + "npcId": 40161, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 33, + "guan": 2 + }, + "163": { + "id": 163, + "type": 1, + "npcId": 40162, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 33, + "guan": 3 + }, + "164": { + "id": 164, + "type": 1, + "npcId": 40163, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 33, + "guan": 4 + }, + "165": { + "id": 165, + "type": 1, + "npcId": 40164, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 33, + "guan": 5 + }, + "166": { + "id": 166, + "type": 1, + "npcId": 40165, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 34, + "guan": 1 + }, + "167": { + "id": 167, + "type": 1, + "npcId": 40166, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 34, + "guan": 2 + }, + "168": { + "id": 168, + "type": 1, + "npcId": 40167, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 34, + "guan": 3 + }, + "169": { + "id": 169, + "type": 1, + "npcId": 40168, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 34, + "guan": 4 + }, + "170": { + "id": 170, + "type": 1, + "npcId": 40169, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 34, + "guan": 5 + }, + "171": { + "id": 171, + "type": 1, + "npcId": 40170, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 35, + "guan": 1 + }, + "172": { + "id": 172, + "type": 1, + "npcId": 40171, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 35, + "guan": 2 + }, + "173": { + "id": 173, + "type": 1, + "npcId": 40172, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 35, + "guan": 3 + }, + "174": { + "id": 174, + "type": 1, + "npcId": 40173, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 35, + "guan": 4 + }, + "175": { + "id": 175, + "type": 1, + "npcId": 40174, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 35, + "guan": 5 + }, + "176": { + "id": 176, + "type": 1, + "npcId": 40175, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 36, + "guan": 1 + }, + "177": { + "id": 177, + "type": 1, + "npcId": 40176, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 36, + "guan": 2 + }, + "178": { + "id": 178, + "type": 1, + "npcId": 40177, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 36, + "guan": 3 + }, + "179": { + "id": 179, + "type": 1, + "npcId": 40178, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 36, + "guan": 4 + }, + "180": { + "id": 180, + "type": 1, + "npcId": 40179, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 36, + "guan": 5 + }, + "181": { + "id": 181, + "type": 1, + "npcId": 40180, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 37, + "guan": 1 + }, + "182": { + "id": 182, + "type": 1, + "npcId": 40181, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 37, + "guan": 2 + }, + "183": { + "id": 183, + "type": 1, + "npcId": 40182, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 37, + "guan": 3 + }, + "184": { + "id": 184, + "type": 1, + "npcId": 40183, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 37, + "guan": 4 + }, + "185": { + "id": 185, + "type": 1, + "npcId": 40184, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 37, + "guan": 5 + }, + "186": { + "id": 186, + "type": 1, + "npcId": 40185, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 38, + "guan": 1 + }, + "187": { + "id": 187, + "type": 1, + "npcId": 40186, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 38, + "guan": 2 + }, + "188": { + "id": 188, + "type": 1, + "npcId": 40187, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 38, + "guan": 3 + }, + "189": { + "id": 189, + "type": 1, + "npcId": 40188, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 38, + "guan": 4 + }, + "190": { + "id": 190, + "type": 1, + "npcId": 40189, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 38, + "guan": 5 + }, + "191": { + "id": 191, + "type": 1, + "npcId": 40190, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 39, + "guan": 1 + }, + "192": { + "id": 192, + "type": 1, + "npcId": 40191, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 39, + "guan": 2 + }, + "193": { + "id": 193, + "type": 1, + "npcId": 40192, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 39, + "guan": 3 + }, + "194": { + "id": 194, + "type": 1, + "npcId": 40193, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 39, + "guan": 4 + }, + "195": { + "id": 195, + "type": 1, + "npcId": 40194, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 39, + "guan": 5 + }, + "196": { + "id": 196, + "type": 1, + "npcId": 40195, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 40, + "guan": 1 + }, + "197": { + "id": 197, + "type": 1, + "npcId": 40196, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 40, + "guan": 2 + }, + "198": { + "id": 198, + "type": 1, + "npcId": 40197, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 40, + "guan": 3 + }, + "199": { + "id": 199, + "type": 1, + "npcId": 40198, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 40, + "guan": 4 + }, + "200": { + "id": 200, + "type": 1, + "npcId": 40199, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 40, + "guan": 5 + }, + "201": { + "id": 201, + "type": 1, + "npcId": 40200, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 41, + "guan": 1 + }, + "202": { + "id": 202, + "type": 1, + "npcId": 40201, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 41, + "guan": 2 + }, + "203": { + "id": 203, + "type": 1, + "npcId": 40202, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 41, + "guan": 3 + }, + "204": { + "id": 204, + "type": 1, + "npcId": 40203, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 41, + "guan": 4 + }, + "205": { + "id": 205, + "type": 1, + "npcId": 40204, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 41, + "guan": 5 + }, + "206": { + "id": 206, + "type": 1, + "npcId": 40205, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 42, + "guan": 1 + }, + "207": { + "id": 207, + "type": 1, + "npcId": 40206, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 42, + "guan": 2 + }, + "208": { + "id": 208, + "type": 1, + "npcId": 40207, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 42, + "guan": 3 + }, + "209": { + "id": 209, + "type": 1, + "npcId": 40208, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 42, + "guan": 4 + }, + "210": { + "id": 210, + "type": 1, + "npcId": 40209, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 42, + "guan": 5 + }, + "211": { + "id": 211, + "type": 1, + "npcId": 40210, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 43, + "guan": 1 + }, + "212": { + "id": 212, + "type": 1, + "npcId": 40211, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 43, + "guan": 2 + }, + "213": { + "id": 213, + "type": 1, + "npcId": 40212, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 43, + "guan": 3 + }, + "214": { + "id": 214, + "type": 1, + "npcId": 40213, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 43, + "guan": 4 + }, + "215": { + "id": 215, + "type": 1, + "npcId": 40214, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 43, + "guan": 5 + }, + "216": { + "id": 216, + "type": 1, + "npcId": 40215, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 44, + "guan": 1 + }, + "217": { + "id": 217, + "type": 1, + "npcId": 40216, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 44, + "guan": 2 + }, + "218": { + "id": 218, + "type": 1, + "npcId": 40217, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 44, + "guan": 3 + }, + "219": { + "id": 219, + "type": 1, + "npcId": 40218, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 44, + "guan": 4 + }, + "220": { + "id": 220, + "type": 1, + "npcId": 40219, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 44, + "guan": 5 + }, + "221": { + "id": 221, + "type": 1, + "npcId": 40220, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 45, + "guan": 1 + }, + "222": { + "id": 222, + "type": 1, + "npcId": 40221, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 45, + "guan": 2 + }, + "223": { + "id": 223, + "type": 1, + "npcId": 40222, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 45, + "guan": 3 + }, + "224": { + "id": 224, + "type": 1, + "npcId": 40223, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 45, + "guan": 4 + }, + "225": { + "id": 225, + "type": 1, + "npcId": 40224, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 45, + "guan": 5 + }, + "226": { + "id": 226, + "type": 1, + "npcId": 40225, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 46, + "guan": 1 + }, + "227": { + "id": 227, + "type": 1, + "npcId": 40226, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 46, + "guan": 2 + }, + "228": { + "id": 228, + "type": 1, + "npcId": 40227, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 46, + "guan": 3 + }, + "229": { + "id": 229, + "type": 1, + "npcId": 40228, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 46, + "guan": 4 + }, + "230": { + "id": 230, + "type": 1, + "npcId": 40229, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 46, + "guan": 5 + }, + "231": { + "id": 231, + "type": 1, + "npcId": 40230, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 47, + "guan": 1 + }, + "232": { + "id": 232, + "type": 1, + "npcId": 40231, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 47, + "guan": 2 + }, + "233": { + "id": 233, + "type": 1, + "npcId": 40232, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 47, + "guan": 3 + }, + "234": { + "id": 234, + "type": 1, + "npcId": 40233, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 47, + "guan": 4 + }, + "235": { + "id": 235, + "type": 1, + "npcId": 40234, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 47, + "guan": 5 + }, + "236": { + "id": 236, + "type": 1, + "npcId": 40235, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 48, + "guan": 1 + }, + "237": { + "id": 237, + "type": 1, + "npcId": 40236, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 48, + "guan": 2 + }, + "238": { + "id": 238, + "type": 1, + "npcId": 40237, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 48, + "guan": 3 + }, + "239": { + "id": 239, + "type": 1, + "npcId": 40238, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 48, + "guan": 4 + }, + "240": { + "id": 240, + "type": 1, + "npcId": 40239, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 48, + "guan": 5 + }, + "241": { + "id": 241, + "type": 1, + "npcId": 40240, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 49, + "guan": 1 + }, + "242": { + "id": 242, + "type": 1, + "npcId": 40241, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 49, + "guan": 2 + }, + "243": { + "id": 243, + "type": 1, + "npcId": 40242, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 49, + "guan": 3 + }, + "244": { + "id": 244, + "type": 1, + "npcId": 40243, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 49, + "guan": 4 + }, + "245": { + "id": 245, + "type": 1, + "npcId": 40244, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 49, + "guan": 5 + }, + "246": { + "id": 246, + "type": 1, + "npcId": 40245, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 50, + "guan": 1 + }, + "247": { + "id": 247, + "type": 1, + "npcId": 40246, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 50, + "guan": 2 + }, + "248": { + "id": 248, + "type": 1, + "npcId": 40247, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 50, + "guan": 3 + }, + "249": { + "id": 249, + "type": 1, + "npcId": 40248, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 50, + "guan": 4 + }, + "250": { + "id": 250, + "type": 1, + "npcId": 40249, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 50, + "guan": 5 + }, + "251": { + "id": 251, + "type": 1, + "npcId": 40250, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 51, + "guan": 1 + }, + "252": { + "id": 252, + "type": 1, + "npcId": 40251, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 51, + "guan": 2 + }, + "253": { + "id": 253, + "type": 1, + "npcId": 40252, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 51, + "guan": 3 + }, + "254": { + "id": 254, + "type": 1, + "npcId": 40253, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 51, + "guan": 4 + }, + "255": { + "id": 255, + "type": 1, + "npcId": 40254, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 51, + "guan": 5 + }, + "256": { + "id": 256, + "type": 1, + "npcId": 40255, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 52, + "guan": 1 + }, + "257": { + "id": 257, + "type": 1, + "npcId": 40256, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 52, + "guan": 2 + }, + "258": { + "id": 258, + "type": 1, + "npcId": 40257, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 52, + "guan": 3 + }, + "259": { + "id": 259, + "type": 1, + "npcId": 40258, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 52, + "guan": 4 + }, + "260": { + "id": 260, + "type": 1, + "npcId": 40259, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 52, + "guan": 5 + }, + "261": { + "id": 261, + "type": 1, + "npcId": 40260, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 53, + "guan": 1 + }, + "262": { + "id": 262, + "type": 1, + "npcId": 40261, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 53, + "guan": 2 + }, + "263": { + "id": 263, + "type": 1, + "npcId": 40262, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 53, + "guan": 3 + }, + "264": { + "id": 264, + "type": 1, + "npcId": 40263, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 53, + "guan": 4 + }, + "265": { + "id": 265, + "type": 1, + "npcId": 40264, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 53, + "guan": 5 + }, + "266": { + "id": 266, + "type": 1, + "npcId": 40265, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 54, + "guan": 1 + }, + "267": { + "id": 267, + "type": 1, + "npcId": 40266, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 54, + "guan": 2 + }, + "268": { + "id": 268, + "type": 1, + "npcId": 40267, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 54, + "guan": 3 + }, + "269": { + "id": 269, + "type": 1, + "npcId": 40268, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 54, + "guan": 4 + }, + "270": { + "id": 270, + "type": 1, + "npcId": 40269, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 54, + "guan": 5 + }, + "271": { + "id": 271, + "type": 1, + "npcId": 40270, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 55, + "guan": 1 + }, + "272": { + "id": 272, + "type": 1, + "npcId": 40271, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 55, + "guan": 2 + }, + "273": { + "id": 273, + "type": 1, + "npcId": 40272, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 55, + "guan": 3 + }, + "274": { + "id": 274, + "type": 1, + "npcId": 40273, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 55, + "guan": 4 + }, + "275": { + "id": 275, + "type": 1, + "npcId": 40274, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 55, + "guan": 5 + }, + "276": { + "id": 276, + "type": 1, + "npcId": 40275, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 56, + "guan": 1 + }, + "277": { + "id": 277, + "type": 1, + "npcId": 40276, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 56, + "guan": 2 + }, + "278": { + "id": 278, + "type": 1, + "npcId": 40277, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 56, + "guan": 3 + }, + "279": { + "id": 279, + "type": 1, + "npcId": 40278, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 56, + "guan": 4 + }, + "280": { + "id": 280, + "type": 1, + "npcId": 40279, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 56, + "guan": 5 + }, + "281": { + "id": 281, + "type": 1, + "npcId": 40280, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 57, + "guan": 1 + }, + "282": { + "id": 282, + "type": 1, + "npcId": 40281, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 57, + "guan": 2 + }, + "283": { + "id": 283, + "type": 1, + "npcId": 40282, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 57, + "guan": 3 + }, + "284": { + "id": 284, + "type": 1, + "npcId": 40283, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 57, + "guan": 4 + }, + "285": { + "id": 285, + "type": 1, + "npcId": 40284, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 57, + "guan": 5 + }, + "286": { + "id": 286, + "type": 1, + "npcId": 40285, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 58, + "guan": 1 + }, + "287": { + "id": 287, + "type": 1, + "npcId": 40286, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 58, + "guan": 2 + }, + "288": { + "id": 288, + "type": 1, + "npcId": 40287, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 58, + "guan": 3 + }, + "289": { + "id": 289, + "type": 1, + "npcId": 40288, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 58, + "guan": 4 + }, + "290": { + "id": 290, + "type": 1, + "npcId": 40289, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 58, + "guan": 5 + }, + "291": { + "id": 291, + "type": 1, + "npcId": 40290, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 59, + "guan": 1 + }, + "292": { + "id": 292, + "type": 1, + "npcId": 40291, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 59, + "guan": 2 + }, + "293": { + "id": 293, + "type": 1, + "npcId": 40292, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 59, + "guan": 3 + }, + "294": { + "id": 294, + "type": 1, + "npcId": 40293, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 59, + "guan": 4 + }, + "295": { + "id": 295, + "type": 1, + "npcId": 40294, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 59, + "guan": 5 + }, + "296": { + "id": 296, + "type": 1, + "npcId": 40295, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 60, + "guan": 1 + }, + "297": { + "id": 297, + "type": 1, + "npcId": 40296, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 60, + "guan": 2 + }, + "298": { + "id": 298, + "type": 1, + "npcId": 40297, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 60, + "guan": 3 + }, + "299": { + "id": 299, + "type": 1, + "npcId": 40298, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 60, + "guan": 4 + }, + "300": { + "id": 300, + "type": 1, + "npcId": 40299, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 60, + "guan": 5 + }, + "301": { + "id": 301, + "type": 1, + "npcId": 40300, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 61, + "guan": 1 + }, + "302": { + "id": 302, + "type": 1, + "npcId": 40301, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 61, + "guan": 2 + }, + "303": { + "id": 303, + "type": 1, + "npcId": 40302, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 61, + "guan": 3 + }, + "304": { + "id": 304, + "type": 1, + "npcId": 40303, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 61, + "guan": 4 + }, + "305": { + "id": 305, + "type": 1, + "npcId": 40304, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 61, + "guan": 5 + }, + "306": { + "id": 306, + "type": 1, + "npcId": 40305, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 62, + "guan": 1 + }, + "307": { + "id": 307, + "type": 1, + "npcId": 40306, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 62, + "guan": 2 + }, + "308": { + "id": 308, + "type": 1, + "npcId": 40307, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 62, + "guan": 3 + }, + "309": { + "id": 309, + "type": 1, + "npcId": 40308, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 62, + "guan": 4 + }, + "310": { + "id": 310, + "type": 1, + "npcId": 40309, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 62, + "guan": 5 + }, + "311": { + "id": 311, + "type": 1, + "npcId": 40310, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 63, + "guan": 1 + }, + "312": { + "id": 312, + "type": 1, + "npcId": 40311, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 63, + "guan": 2 + }, + "313": { + "id": 313, + "type": 1, + "npcId": 40312, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 63, + "guan": 3 + }, + "314": { + "id": 314, + "type": 1, + "npcId": 40313, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 63, + "guan": 4 + }, + "315": { + "id": 315, + "type": 1, + "npcId": 40314, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 63, + "guan": 5 + }, + "316": { + "id": 316, + "type": 1, + "npcId": 40315, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 64, + "guan": 1 + }, + "317": { + "id": 317, + "type": 1, + "npcId": 40316, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 64, + "guan": 2 + }, + "318": { + "id": 318, + "type": 1, + "npcId": 40317, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 64, + "guan": 3 + }, + "319": { + "id": 319, + "type": 1, + "npcId": 40318, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 64, + "guan": 4 + }, + "320": { + "id": 320, + "type": 1, + "npcId": 40319, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 64, + "guan": 5 + }, + "321": { + "id": 321, + "type": 1, + "npcId": 40320, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 65, + "guan": 1 + }, + "322": { + "id": 322, + "type": 1, + "npcId": 40321, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 65, + "guan": 2 + }, + "323": { + "id": 323, + "type": 1, + "npcId": 40322, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 65, + "guan": 3 + }, + "324": { + "id": 324, + "type": 1, + "npcId": 40323, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 65, + "guan": 4 + }, + "325": { + "id": 325, + "type": 1, + "npcId": 40324, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 65, + "guan": 5 + }, + "326": { + "id": 326, + "type": 1, + "npcId": 40325, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 66, + "guan": 1 + }, + "327": { + "id": 327, + "type": 1, + "npcId": 40326, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 66, + "guan": 2 + }, + "328": { + "id": 328, + "type": 1, + "npcId": 40327, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 66, + "guan": 3 + }, + "329": { + "id": 329, + "type": 1, + "npcId": 40328, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 66, + "guan": 4 + }, + "330": { + "id": 330, + "type": 1, + "npcId": 40329, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 66, + "guan": 5 + }, + "331": { + "id": 331, + "type": 1, + "npcId": 40330, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 67, + "guan": 1 + }, + "332": { + "id": 332, + "type": 1, + "npcId": 40331, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 67, + "guan": 2 + }, + "333": { + "id": 333, + "type": 1, + "npcId": 40332, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 67, + "guan": 3 + }, + "334": { + "id": 334, + "type": 1, + "npcId": 40333, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 67, + "guan": 4 + }, + "335": { + "id": 335, + "type": 1, + "npcId": 40334, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 67, + "guan": 5 + }, + "336": { + "id": 336, + "type": 1, + "npcId": 40335, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 68, + "guan": 1 + }, + "337": { + "id": 337, + "type": 1, + "npcId": 40336, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 68, + "guan": 2 + }, + "338": { + "id": 338, + "type": 1, + "npcId": 40337, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 68, + "guan": 3 + }, + "339": { + "id": 339, + "type": 1, + "npcId": 40338, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 68, + "guan": 4 + }, + "340": { + "id": 340, + "type": 1, + "npcId": 40339, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 68, + "guan": 5 + }, + "341": { + "id": 341, + "type": 1, + "npcId": 40340, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 69, + "guan": 1 + }, + "342": { + "id": 342, + "type": 1, + "npcId": 40341, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 69, + "guan": 2 + }, + "343": { + "id": 343, + "type": 1, + "npcId": 40342, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 69, + "guan": 3 + }, + "344": { + "id": 344, + "type": 1, + "npcId": 40343, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 69, + "guan": 4 + }, + "345": { + "id": 345, + "type": 1, + "npcId": 40344, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 69, + "guan": 5 + }, + "346": { + "id": 346, + "type": 1, + "npcId": 40345, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 70, + "guan": 1 + }, + "347": { + "id": 347, + "type": 1, + "npcId": 40346, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 70, + "guan": 2 + }, + "348": { + "id": 348, + "type": 1, + "npcId": 40347, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 70, + "guan": 3 + }, + "349": { + "id": 349, + "type": 1, + "npcId": 40348, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 70, + "guan": 4 + }, + "350": { + "id": 350, + "type": 1, + "npcId": 40349, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 70, + "guan": 5 + }, + "351": { + "id": 351, + "type": 1, + "npcId": 40350, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 71, + "guan": 1 + }, + "352": { + "id": 352, + "type": 1, + "npcId": 40351, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 71, + "guan": 2 + }, + "353": { + "id": 353, + "type": 1, + "npcId": 40352, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 71, + "guan": 3 + }, + "354": { + "id": 354, + "type": 1, + "npcId": 40353, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 71, + "guan": 4 + }, + "355": { + "id": 355, + "type": 1, + "npcId": 40354, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 71, + "guan": 5 + }, + "356": { + "id": 356, + "type": 1, + "npcId": 40355, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 72, + "guan": 1 + }, + "357": { + "id": 357, + "type": 1, + "npcId": 40356, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 72, + "guan": 2 + }, + "358": { + "id": 358, + "type": 1, + "npcId": 40357, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 72, + "guan": 3 + }, + "359": { + "id": 359, + "type": 1, + "npcId": 40358, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 72, + "guan": 4 + }, + "360": { + "id": 360, + "type": 1, + "npcId": 40359, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 72, + "guan": 5 + }, + "361": { + "id": 361, + "type": 1, + "npcId": 40360, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 73, + "guan": 1 + }, + "362": { + "id": 362, + "type": 1, + "npcId": 40361, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 73, + "guan": 2 + }, + "363": { + "id": 363, + "type": 1, + "npcId": 40362, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 73, + "guan": 3 + }, + "364": { + "id": 364, + "type": 1, + "npcId": 40363, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 73, + "guan": 4 + }, + "365": { + "id": 365, + "type": 1, + "npcId": 40364, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 73, + "guan": 5 + }, + "366": { + "id": 366, + "type": 1, + "npcId": 40365, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 74, + "guan": 1 + }, + "367": { + "id": 367, + "type": 1, + "npcId": 40366, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 74, + "guan": 2 + }, + "368": { + "id": 368, + "type": 1, + "npcId": 40367, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 74, + "guan": 3 + }, + "369": { + "id": 369, + "type": 1, + "npcId": 40368, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 74, + "guan": 4 + }, + "370": { + "id": 370, + "type": 1, + "npcId": 40369, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 74, + "guan": 5 + }, + "371": { + "id": 371, + "type": 1, + "npcId": 40370, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 75, + "guan": 1 + }, + "372": { + "id": 372, + "type": 1, + "npcId": 40371, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 75, + "guan": 2 + }, + "373": { + "id": 373, + "type": 1, + "npcId": 40372, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 75, + "guan": 3 + }, + "374": { + "id": 374, + "type": 1, + "npcId": 40373, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 75, + "guan": 4 + }, + "375": { + "id": 375, + "type": 1, + "npcId": 40374, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 75, + "guan": 5 + }, + "376": { + "id": 376, + "type": 1, + "npcId": 40375, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 76, + "guan": 1 + }, + "377": { + "id": 377, + "type": 1, + "npcId": 40376, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 76, + "guan": 2 + }, + "378": { + "id": 378, + "type": 1, + "npcId": 40377, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 76, + "guan": 3 + }, + "379": { + "id": 379, + "type": 1, + "npcId": 40378, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 76, + "guan": 4 + }, + "380": { + "id": 380, + "type": 1, + "npcId": 40379, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 76, + "guan": 5 + }, + "381": { + "id": 381, + "type": 1, + "npcId": 40380, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 77, + "guan": 1 + }, + "382": { + "id": 382, + "type": 1, + "npcId": 40381, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 77, + "guan": 2 + }, + "383": { + "id": 383, + "type": 1, + "npcId": 40382, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 77, + "guan": 3 + }, + "384": { + "id": 384, + "type": 1, + "npcId": 40383, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 77, + "guan": 4 + }, + "385": { + "id": 385, + "type": 1, + "npcId": 40384, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 77, + "guan": 5 + }, + "386": { + "id": 386, + "type": 1, + "npcId": 40385, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 78, + "guan": 1 + }, + "387": { + "id": 387, + "type": 1, + "npcId": 40386, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 78, + "guan": 2 + }, + "388": { + "id": 388, + "type": 1, + "npcId": 40387, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 78, + "guan": 3 + }, + "389": { + "id": 389, + "type": 1, + "npcId": 40388, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 78, + "guan": 4 + }, + "390": { + "id": 390, + "type": 1, + "npcId": 40389, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 78, + "guan": 5 + }, + "391": { + "id": 391, + "type": 1, + "npcId": 40390, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 79, + "guan": 1 + }, + "392": { + "id": 392, + "type": 1, + "npcId": 40391, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 79, + "guan": 2 + }, + "393": { + "id": 393, + "type": 1, + "npcId": 40392, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 79, + "guan": 3 + }, + "394": { + "id": 394, + "type": 1, + "npcId": 40393, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 79, + "guan": 4 + }, + "395": { + "id": 395, + "type": 1, + "npcId": 40394, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 79, + "guan": 5 + }, + "396": { + "id": 396, + "type": 1, + "npcId": 40395, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 80, + "guan": 1 + }, + "397": { + "id": 397, + "type": 1, + "npcId": 40396, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 80, + "guan": 2 + }, + "398": { + "id": 398, + "type": 1, + "npcId": 40397, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 80, + "guan": 3 + }, + "399": { + "id": 399, + "type": 1, + "npcId": 40398, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 80, + "guan": 4 + }, + "400": { + "id": 400, + "type": 1, + "npcId": 40399, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 80, + "guan": 5 + }, + "401": { + "id": 401, + "type": 1, + "npcId": 40400, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 81, + "guan": 1 + }, + "402": { + "id": 402, + "type": 1, + "npcId": 40401, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 81, + "guan": 2 + }, + "403": { + "id": 403, + "type": 1, + "npcId": 40402, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 81, + "guan": 3 + }, + "404": { + "id": 404, + "type": 1, + "npcId": 40403, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 81, + "guan": 4 + }, + "405": { + "id": 405, + "type": 1, + "npcId": 40404, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 81, + "guan": 5 + }, + "406": { + "id": 406, + "type": 1, + "npcId": 40405, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 82, + "guan": 1 + }, + "407": { + "id": 407, + "type": 1, + "npcId": 40406, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 82, + "guan": 2 + }, + "408": { + "id": 408, + "type": 1, + "npcId": 40407, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 82, + "guan": 3 + }, + "409": { + "id": 409, + "type": 1, + "npcId": 40408, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 82, + "guan": 4 + }, + "410": { + "id": 410, + "type": 1, + "npcId": 40409, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 82, + "guan": 5 + }, + "411": { + "id": 411, + "type": 1, + "npcId": 40410, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 83, + "guan": 1 + }, + "412": { + "id": 412, + "type": 1, + "npcId": 40411, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 83, + "guan": 2 + }, + "413": { + "id": 413, + "type": 1, + "npcId": 40412, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 83, + "guan": 3 + }, + "414": { + "id": 414, + "type": 1, + "npcId": 40413, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 83, + "guan": 4 + }, + "415": { + "id": 415, + "type": 1, + "npcId": 40414, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 83, + "guan": 5 + }, + "416": { + "id": 416, + "type": 1, + "npcId": 40415, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 84, + "guan": 1 + }, + "417": { + "id": 417, + "type": 1, + "npcId": 40416, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 84, + "guan": 2 + }, + "418": { + "id": 418, + "type": 1, + "npcId": 40417, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 84, + "guan": 3 + }, + "419": { + "id": 419, + "type": 1, + "npcId": 40418, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 84, + "guan": 4 + }, + "420": { + "id": 420, + "type": 1, + "npcId": 40419, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 84, + "guan": 5 + }, + "421": { + "id": 421, + "type": 1, + "npcId": 40420, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 85, + "guan": 1 + }, + "422": { + "id": 422, + "type": 1, + "npcId": 40421, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 85, + "guan": 2 + }, + "423": { + "id": 423, + "type": 1, + "npcId": 40422, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 85, + "guan": 3 + }, + "424": { + "id": 424, + "type": 1, + "npcId": 40423, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 85, + "guan": 4 + }, + "425": { + "id": 425, + "type": 1, + "npcId": 40424, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 85, + "guan": 5 + }, + "426": { + "id": 426, + "type": 1, + "npcId": 40425, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 86, + "guan": 1 + }, + "427": { + "id": 427, + "type": 1, + "npcId": 40426, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 86, + "guan": 2 + }, + "428": { + "id": 428, + "type": 1, + "npcId": 40427, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 86, + "guan": 3 + }, + "429": { + "id": 429, + "type": 1, + "npcId": 40428, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 86, + "guan": 4 + }, + "430": { + "id": 430, + "type": 1, + "npcId": 40429, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 86, + "guan": 5 + }, + "431": { + "id": 431, + "type": 1, + "npcId": 40430, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 87, + "guan": 1 + }, + "432": { + "id": 432, + "type": 1, + "npcId": 40431, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 87, + "guan": 2 + }, + "433": { + "id": 433, + "type": 1, + "npcId": 40432, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 87, + "guan": 3 + }, + "434": { + "id": 434, + "type": 1, + "npcId": 40433, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 87, + "guan": 4 + }, + "435": { + "id": 435, + "type": 1, + "npcId": 40434, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 87, + "guan": 5 + }, + "436": { + "id": 436, + "type": 1, + "npcId": 40435, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 88, + "guan": 1 + }, + "437": { + "id": 437, + "type": 1, + "npcId": 40436, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 88, + "guan": 2 + }, + "438": { + "id": 438, + "type": 1, + "npcId": 40437, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 88, + "guan": 3 + }, + "439": { + "id": 439, + "type": 1, + "npcId": 40438, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 88, + "guan": 4 + }, + "440": { + "id": 440, + "type": 1, + "npcId": 40439, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 88, + "guan": 5 + }, + "441": { + "id": 441, + "type": 1, + "npcId": 40440, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 89, + "guan": 1 + }, + "442": { + "id": 442, + "type": 1, + "npcId": 40441, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 89, + "guan": 2 + }, + "443": { + "id": 443, + "type": 1, + "npcId": 40442, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 89, + "guan": 3 + }, + "444": { + "id": 444, + "type": 1, + "npcId": 40443, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 89, + "guan": 4 + }, + "445": { + "id": 445, + "type": 1, + "npcId": 40444, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 89, + "guan": 5 + }, + "446": { + "id": 446, + "type": 1, + "npcId": 40445, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 90, + "guan": 1 + }, + "447": { + "id": 447, + "type": 1, + "npcId": 40446, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 90, + "guan": 2 + }, + "448": { + "id": 448, + "type": 1, + "npcId": 40447, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 90, + "guan": 3 + }, + "449": { + "id": 449, + "type": 1, + "npcId": 40448, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 90, + "guan": 4 + }, + "450": { + "id": 450, + "type": 1, + "npcId": 40449, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 90, + "guan": 5 + }, + "451": { + "id": 451, + "type": 1, + "npcId": 40450, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 91, + "guan": 1 + }, + "452": { + "id": 452, + "type": 1, + "npcId": 40451, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 91, + "guan": 2 + }, + "453": { + "id": 453, + "type": 1, + "npcId": 40452, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 91, + "guan": 3 + }, + "454": { + "id": 454, + "type": 1, + "npcId": 40453, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 91, + "guan": 4 + }, + "455": { + "id": 455, + "type": 1, + "npcId": 40454, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 91, + "guan": 5 + }, + "456": { + "id": 456, + "type": 1, + "npcId": 40455, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 92, + "guan": 1 + }, + "457": { + "id": 457, + "type": 1, + "npcId": 40456, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 92, + "guan": 2 + }, + "458": { + "id": 458, + "type": 1, + "npcId": 40457, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 92, + "guan": 3 + }, + "459": { + "id": 459, + "type": 1, + "npcId": 40458, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 92, + "guan": 4 + }, + "460": { + "id": 460, + "type": 1, + "npcId": 40459, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 92, + "guan": 5 + }, + "461": { + "id": 461, + "type": 1, + "npcId": 40460, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 93, + "guan": 1 + }, + "462": { + "id": 462, + "type": 1, + "npcId": 40461, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 93, + "guan": 2 + }, + "463": { + "id": 463, + "type": 1, + "npcId": 40462, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 93, + "guan": 3 + }, + "464": { + "id": 464, + "type": 1, + "npcId": 40463, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 93, + "guan": 4 + }, + "465": { + "id": 465, + "type": 1, + "npcId": 40464, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 93, + "guan": 5 + }, + "466": { + "id": 466, + "type": 1, + "npcId": 40465, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 94, + "guan": 1 + }, + "467": { + "id": 467, + "type": 1, + "npcId": 40466, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 94, + "guan": 2 + }, + "468": { + "id": 468, + "type": 1, + "npcId": 40467, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 94, + "guan": 3 + }, + "469": { + "id": 469, + "type": 1, + "npcId": 40468, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 94, + "guan": 4 + }, + "470": { + "id": 470, + "type": 1, + "npcId": 40469, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 94, + "guan": 5 + }, + "471": { + "id": 471, + "type": 1, + "npcId": 40470, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 95, + "guan": 1 + }, + "472": { + "id": 472, + "type": 1, + "npcId": 40471, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 95, + "guan": 2 + }, + "473": { + "id": 473, + "type": 1, + "npcId": 40472, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 95, + "guan": 3 + }, + "474": { + "id": 474, + "type": 1, + "npcId": 40473, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 95, + "guan": 4 + }, + "475": { + "id": 475, + "type": 1, + "npcId": 40474, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 95, + "guan": 5 + }, + "476": { + "id": 476, + "type": 1, + "npcId": 40475, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 96, + "guan": 1 + }, + "477": { + "id": 477, + "type": 1, + "npcId": 40476, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 96, + "guan": 2 + }, + "478": { + "id": 478, + "type": 1, + "npcId": 40477, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 96, + "guan": 3 + }, + "479": { + "id": 479, + "type": 1, + "npcId": 40478, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 96, + "guan": 4 + }, + "480": { + "id": 480, + "type": 1, + "npcId": 40479, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 96, + "guan": 5 + }, + "481": { + "id": 481, + "type": 1, + "npcId": 40480, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 97, + "guan": 1 + }, + "482": { + "id": 482, + "type": 1, + "npcId": 40481, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 97, + "guan": 2 + }, + "483": { + "id": 483, + "type": 1, + "npcId": 40482, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 97, + "guan": 3 + }, + "484": { + "id": 484, + "type": 1, + "npcId": 40483, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 97, + "guan": 4 + }, + "485": { + "id": 485, + "type": 1, + "npcId": 40484, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 97, + "guan": 5 + }, + "486": { + "id": 486, + "type": 1, + "npcId": 40485, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 98, + "guan": 1 + }, + "487": { + "id": 487, + "type": 1, + "npcId": 40486, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 98, + "guan": 2 + }, + "488": { + "id": 488, + "type": 1, + "npcId": 40487, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 98, + "guan": 3 + }, + "489": { + "id": 489, + "type": 1, + "npcId": 40488, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 98, + "guan": 4 + }, + "490": { + "id": 490, + "type": 1, + "npcId": 40489, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 98, + "guan": 5 + }, + "491": { + "id": 491, + "type": 1, + "npcId": 40490, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 99, + "guan": 1 + }, + "492": { + "id": 492, + "type": 1, + "npcId": 40491, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 99, + "guan": 2 + }, + "493": { + "id": 493, + "type": 1, + "npcId": 40492, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 99, + "guan": 3 + }, + "494": { + "id": 494, + "type": 1, + "npcId": 40493, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 99, + "guan": 4 + }, + "495": { + "id": 495, + "type": 1, + "npcId": 40494, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 99, + "guan": 5 + }, + "496": { + "id": 496, + "type": 1, + "npcId": 40495, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 100, + "guan": 1 + }, + "497": { + "id": 497, + "type": 1, + "npcId": 40496, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 100, + "guan": 2 + }, + "498": { + "id": 498, + "type": 1, + "npcId": 40497, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 100, + "guan": 3 + }, + "499": { + "id": 499, + "type": 1, + "npcId": 40498, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "isBoss": 0, + "ceng": 100, + "guan": 4 + }, + "500": { + "id": 500, + "type": 1, + "npcId": 40499, + "price": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "13", + "n": 20 + } + ], + "isBoss": 1, + "ceng": 100, + "guan": 5 + } +} \ No newline at end of file diff --git a/src/json/dxlt_mb.json b/src/json/dxlt_mb.json new file mode 100644 index 0000000..75d58bb --- /dev/null +++ b/src/json/dxlt_mb.json @@ -0,0 +1,52 @@ +{ + "1": { + "id": 1, + "mibao": [ + { + "a": "item", + "t": "13", + "n": 150 + } + ] + }, + "2": { + "id": 2, + "mibao": [ + { + "a": "equip", + "t": "1009", + "n": 1 + } + ] + }, + "3": { + "id": 3, + "mibao": [ + { + "a": "equip", + "t": "2009", + "n": 1 + } + ] + }, + "4": { + "id": 4, + "mibao": [ + { + "a": "equip", + "t": "3009", + "n": 1 + } + ] + }, + "5": { + "id": 5, + "mibao": [ + { + "a": "equip", + "t": "4009", + "n": 1 + } + ] + } +} \ No newline at end of file diff --git a/src/json/dxlt_shop.json b/src/json/dxlt_shop.json new file mode 100644 index 0000000..111d6ad --- /dev/null +++ b/src/json/dxlt_shop.json @@ -0,0 +1,682 @@ +{ + "1": { + "id": 1, + "name": "intr_dixialeitai_name_1", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 160 + } + ], + "prize": [ + { + "a": "item", + "t": "5001", + "n": 1 + } + ], + "p": 10 + }, + "2": { + "id": 2, + "name": "intr_dixialeitai_name_2", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 160 + } + ], + "prize": [ + { + "a": "item", + "t": "5003", + "n": 1 + } + ], + "p": 10 + }, + "3": { + "id": 3, + "name": "intr_dixialeitai_name_3", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 160 + } + ], + "prize": [ + { + "a": "item", + "t": "5005", + "n": 1 + } + ], + "p": 10 + }, + "4": { + "id": 4, + "name": "intr_dixialeitai_name_4", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "prize": [ + { + "a": "item", + "t": "4001", + "n": 1 + } + ], + "p": 8 + }, + "5": { + "id": 5, + "name": "intr_dixialeitai_name_5", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "prize": [ + { + "a": "item", + "t": "4002", + "n": 1 + } + ], + "p": 8 + }, + "6": { + "id": 6, + "name": "intr_dixialeitai_name_6", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "prize": [ + { + "a": "item", + "t": "4003", + "n": 1 + } + ], + "p": 8 + }, + "7": { + "id": 7, + "name": "intr_dixialeitai_name_7", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "prize": [ + { + "a": "item", + "t": "4004", + "n": 1 + } + ], + "p": 8 + }, + "8": { + "id": 8, + "name": "intr_dixialeitai_name_8", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "prize": [ + { + "a": "item", + "t": "4005", + "n": 1 + } + ], + "p": 8 + }, + "9": { + "id": 9, + "name": "intr_dixialeitai_name_9", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "prize": [ + { + "a": "item", + "t": "4006", + "n": 1 + } + ], + "p": 8 + }, + "10": { + "id": 10, + "name": "intr_dixialeitai_name_10", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "prize": [ + { + "a": "item", + "t": "4007", + "n": 1 + } + ], + "p": 8 + }, + "11": { + "id": 11, + "name": "intr_dixialeitai_name_11", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "prize": [ + { + "a": "item", + "t": "4008", + "n": 1 + } + ], + "p": 8 + }, + "12": { + "id": 12, + "name": "intr_dixialeitai_name_12", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "prize": [ + { + "a": "item", + "t": "4009", + "n": 1 + } + ], + "p": 8 + }, + "13": { + "id": 13, + "name": "intr_dixialeitai_name_13", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "prize": [ + { + "a": "item", + "t": "4010", + "n": 1 + } + ], + "p": 8 + }, + "14": { + "id": 14, + "name": "intr_dixialeitai_name_14", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "prize": [ + { + "a": "item", + "t": "4011", + "n": 1 + } + ], + "p": 8 + }, + "15": { + "id": 15, + "name": "intr_dixialeitai_name_15", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "prize": [ + { + "a": "item", + "t": "4012", + "n": 1 + } + ], + "p": 8 + }, + "16": { + "id": 16, + "name": "intr_dixialeitai_name_16", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "prize": [ + { + "a": "item", + "t": "4013", + "n": 1 + } + ], + "p": 8 + }, + "17": { + "id": 17, + "name": "intr_dixialeitai_name_17", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "prize": [ + { + "a": "item", + "t": "4014", + "n": 1 + } + ], + "p": 8 + }, + "18": { + "id": 18, + "name": "intr_dixialeitai_name_18", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "prize": [ + { + "a": "item", + "t": "4015", + "n": 1 + } + ], + "p": 8 + }, + "19": { + "id": 19, + "name": "intr_dixialeitai_name_19", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 80 + } + ], + "prize": [ + { + "a": "item", + "t": "3001", + "n": 1 + } + ], + "p": 6 + }, + "20": { + "id": 20, + "name": "intr_dixialeitai_name_20", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 80 + } + ], + "prize": [ + { + "a": "item", + "t": "3002", + "n": 1 + } + ], + "p": 6 + }, + "21": { + "id": 21, + "name": "intr_dixialeitai_name_21", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 80 + } + ], + "prize": [ + { + "a": "item", + "t": "3003", + "n": 1 + } + ], + "p": 6 + }, + "22": { + "id": 22, + "name": "intr_dixialeitai_name_22", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 80 + } + ], + "prize": [ + { + "a": "item", + "t": "3004", + "n": 1 + } + ], + "p": 6 + }, + "23": { + "id": 23, + "name": "intr_dixialeitai_name_23", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 80 + } + ], + "prize": [ + { + "a": "item", + "t": "3005", + "n": 1 + } + ], + "p": 6 + }, + "24": { + "id": 24, + "name": "intr_dixialeitai_name_24", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 80 + } + ], + "prize": [ + { + "a": "item", + "t": "3006", + "n": 1 + } + ], + "p": 6 + }, + "25": { + "id": 25, + "name": "intr_dixialeitai_name_25", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 80 + } + ], + "prize": [ + { + "a": "item", + "t": "3007", + "n": 1 + } + ], + "p": 6 + }, + "26": { + "id": 26, + "name": "intr_dixialeitai_name_26", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 80 + } + ], + "prize": [ + { + "a": "item", + "t": "3008", + "n": 1 + } + ], + "p": 6 + }, + "27": { + "id": 27, + "name": "intr_dixialeitai_name_27", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 80 + } + ], + "prize": [ + { + "a": "item", + "t": "3009", + "n": 1 + } + ], + "p": 6 + }, + "28": { + "id": 28, + "name": "intr_dixialeitai_name_28", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 80 + } + ], + "prize": [ + { + "a": "item", + "t": "3010", + "n": 1 + } + ], + "p": 6 + }, + "29": { + "id": 29, + "name": "intr_dixialeitai_name_29", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 80 + } + ], + "prize": [ + { + "a": "item", + "t": "3011", + "n": 1 + } + ], + "p": 6 + }, + "30": { + "id": 30, + "name": "intr_dixialeitai_name_30", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 80 + } + ], + "prize": [ + { + "a": "item", + "t": "3012", + "n": 1 + } + ], + "p": 6 + }, + "31": { + "id": 31, + "name": "intr_dixialeitai_name_31", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 80 + } + ], + "prize": [ + { + "a": "item", + "t": "3013", + "n": 1 + } + ], + "p": 6 + }, + "32": { + "id": 32, + "name": "intr_dixialeitai_name_32", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 80 + } + ], + "prize": [ + { + "a": "item", + "t": "3014", + "n": 1 + } + ], + "p": 6 + }, + "33": { + "id": 33, + "name": "intr_dixialeitai_name_33", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 80 + } + ], + "prize": [ + { + "a": "item", + "t": "3015", + "n": 1 + } + ], + "p": 6 + }, + "34": { + "id": 34, + "name": "intr_item_name_13", + "buyNum": 1, + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + } + ], + "prize": [ + { + "a": "item", + "t": "13", + "n": 10 + } + ], + "p": 100 + } +} \ No newline at end of file diff --git a/src/json/equip.json b/src/json/equip.json new file mode 100644 index 0000000..936ed41 --- /dev/null +++ b/src/json/equip.json @@ -0,0 +1,802 @@ +{ + "1001": { + "id": 1001, + "name": "intr_equip_name_1001", + "undefined": "活力剑", + "type": 1, + "colour": 2, + "icon": "equip_1101", + "buff": { + "mindps": 17, + "maxdps": 22 + }, + "qh": { + "mindps": "qhlv*3.6+qhlv^1.65+(qhlv/5)*10", + "maxdps": "qhlv*7.1+qhlv^1.71+(qhlv/5)*15" + }, + "tzid": 1, + "des": "intr_equip_des_1001", + "advancedEffects": "" + }, + "1002": { + "id": 1002, + "name": "intr_equip_name_1002", + "undefined": "圣徒长剑", + "type": 1, + "colour": 3, + "icon": "equip_1102", + "buff": { + "mindps": 24, + "maxdps": 30 + }, + "qh": { + "mindps": "qhlv*4.7+qhlv^1.68+(qhlv/5)*20", + "maxdps": "qhlv*7.3+qhlv^1.74+(qhlv/5)*20" + }, + "tzid": 2, + "des": "intr_equip_des_1002", + "advancedEffects": "" + }, + "1003": { + "id": 1003, + "name": "intr_equip_name_1003", + "undefined": "奇迹大剑", + "type": 1, + "colour": 4, + "icon": "equip_1103", + "buff": { + "mindps": 70, + "maxdps": 84 + }, + "qh": { + "mindps": "qhlv*7.1+qhlv^1.7+(qhlv/5)*17.2", + "maxdps": "qhlv*9.1+qhlv^1.77+(qhlv/5)*20.7" + }, + "tzid": 3, + "des": "intr_equip_des_1003", + "advancedEffects": "" + }, + "1004": { + "id": 1004, + "name": "intr_equip_name_1004", + "undefined": "天使剑", + "type": 1, + "colour": 4, + "icon": "equip_1104", + "buff": { + "mindps": 70, + "maxdps": 84 + }, + "qh": { + "mindps": "qhlv*7.1+qhlv^1.7+(qhlv/5)*17.2", + "maxdps": "qhlv*9.1+qhlv^1.77+(qhlv/5)*20.7" + }, + "tzid": 4, + "des": "intr_equip_des_1004", + "advancedEffects": "" + }, + "1005": { + "id": 1005, + "name": "intr_equip_name_1005", + "undefined": "勇气之刃", + "type": 1, + "colour": 4, + "icon": "equip_1105", + "buff": { + "mindps": 70, + "maxdps": 84 + }, + "qh": { + "mindps": "qhlv*7.1+qhlv^1.7+(qhlv/5)*17.2", + "maxdps": "qhlv*9.1+qhlv^1.77+(qhlv/5)*20.7" + }, + "tzid": 5, + "des": "intr_equip_des_1005", + "advancedEffects": "" + }, + "1006": { + "id": 1006, + "name": "intr_equip_name_1006", + "undefined": "诅咒血刃", + "type": 1, + "colour": 4, + "icon": "equip_1106", + "buff": { + "mindps": 60, + "maxdps": 98 + }, + "qh": { + "mindps": "qhlv*6.6+qhlv^1.7+(qhlv/5)*20", + "maxdps": "qhlv*8.4+qhlv^1.77+(qhlv/5)*24.3" + }, + "tzid": 6, + "des": "intr_equip_des_1006", + "advancedEffects": "" + }, + "1007": { + "id": 1007, + "name": "intr_equip_name_1007", + "undefined": "泰坦巨剑", + "type": 1, + "colour": 4, + "icon": "equip_1107", + "buff": { + "mindps": 60, + "maxdps": 98 + }, + "qh": { + "mindps": "qhlv*6.6+qhlv^1.7+(qhlv/5)*20", + "maxdps": "qhlv*8.4+qhlv^1.77+(qhlv/5)*24.3" + }, + "tzid": 7, + "des": "intr_equip_des_1007", + "advancedEffects": "" + }, + "1008": { + "id": 1008, + "name": "intr_equip_name_1008", + "undefined": "审判者", + "type": 1, + "colour": 4, + "icon": "equip_1108", + "buff": { + "mindps": 60, + "maxdps": 98 + }, + "qh": { + "mindps": "qhlv*6.6+qhlv^1.7+(qhlv/5)*20", + "maxdps": "qhlv*8.4+qhlv^1.77+(qhlv/5)*24.3" + }, + "tzid": 8, + "des": "intr_equip_des_1008", + "advancedEffects": "" + }, + "1009": { + "id": 1009, + "name": "intr_equip_name_1009", + "undefined": "黑暗幽灵", + "type": 1, + "colour": 4, + "icon": "equip_1109", + "buff": { + "mindps": 60, + "maxdps": 98 + }, + "qh": { + "mindps": "qhlv*6.6+qhlv^1.7+(qhlv/5)*20", + "maxdps": "qhlv*8.4+qhlv^1.77+(qhlv/5)*24.3" + }, + "tzid": 9, + "des": "intr_equip_des_1009", + "advancedEffects": "" + }, + "1010": { + "id": 1010, + "name": "intr_equip_name_1010", + "undefined": "磷火之噬", + "type": 1, + "colour": 5, + "icon": "equip_1110", + "buff": { + "mindps": 318, + "maxdps": 519 + }, + "qh": { + "mindps": "qhlv*6.6+qhlv^1.7+(qhlv/5)*20", + "maxdps": "qhlv*8.4+qhlv^1.77+(qhlv/5)*24.3" + }, + "tzid": 10, + "des": "intr_equip_des_1010", + "advancedEffects": "ani_xiangzikuang" + }, + "2001": { + "id": 2001, + "name": "intr_equip_name_2001", + "undefined": "活力头盔", + "type": 2, + "colour": 2, + "icon": "equip_2101", + "buff": { + "mindps": 6, + "maxdps": 7, + "def": 16 + }, + "qh": { + "mindps": "qhlv*3.54+qhlv^0.8+(qhlv/5)*10.3", + "maxdps": "qhlv*4.85+qhlv^0.8+(qhlv/5)*10.3", + "def": "qhlv*3.35+qhlv^1.6+(qhlv/5)*10" + }, + "tzid": 1, + "des": "intr_equip_des_2001", + "advancedEffects": "" + }, + "2002": { + "id": 2002, + "name": "intr_equip_name_2002", + "undefined": "圣徒头盔", + "type": 2, + "colour": 3, + "icon": "equip_2102", + "buff": { + "mindps": 7, + "maxdps": 9, + "def": 24 + }, + "qh": { + "mindps": "qhlv*3.54+qhlv^0.8+(qhlv/5)*10.3", + "maxdps": "qhlv*7.07+qhlv^0.8+(qhlv/5)*10.3", + "def": "qhlv*8.95+qhlv^1.6+(qhlv/5)*10" + }, + "tzid": 2, + "des": "intr_equip_des_2002", + "advancedEffects": "" + }, + "2003": { + "id": 2003, + "name": "intr_equip_name_2003", + "undefined": "奇迹头盔", + "type": 2, + "colour": 4, + "icon": "equip_2103", + "buff": { + "mindps": 16, + "maxdps": 24, + "def": 72 + }, + "qh": { + "mindps": "qhlv*6+qhlv^1+(qhlv/5)*11", + "maxdps": "qhlv*8+qhlv^1+(qhlv/5)*11", + "def": "qhlv*20.23+qhlv^1.5+(qhlv/5)*11" + }, + "tzid": 3, + "des": "intr_equip_des_2003", + "advancedEffects": "" + }, + "2004": { + "id": 2004, + "name": "intr_equip_name_2004", + "undefined": "天使头盔", + "type": 2, + "colour": 4, + "icon": "equip_2104", + "buff": { + "mindps": 16, + "maxdps": 24, + "def": 72 + }, + "qh": { + "mindps": "qhlv*6+qhlv^1+(qhlv/5)*11", + "maxdps": "qhlv*8+qhlv^1+(qhlv/5)*11", + "def": "qhlv*20.23+qhlv^1.5+(qhlv/5)*11" + }, + "tzid": 4, + "des": "intr_equip_des_2004", + "advancedEffects": "" + }, + "2005": { + "id": 2005, + "name": "intr_equip_name_2005", + "undefined": "勇气头盔", + "type": 2, + "colour": 4, + "icon": "equip_2105", + "buff": { + "mindps": 16, + "maxdps": 24, + "def": 72 + }, + "qh": { + "mindps": "qhlv*6+qhlv^1+(qhlv/5)*11", + "maxdps": "qhlv*8+qhlv^1+(qhlv/5)*11", + "def": "qhlv*20.23+qhlv^1.5+(qhlv/5)*11" + }, + "tzid": 5, + "des": "intr_equip_des_2005", + "advancedEffects": "" + }, + "2006": { + "id": 2006, + "name": "intr_equip_name_2006", + "undefined": "诅咒头盔", + "type": 2, + "colour": 4, + "icon": "equip_2106", + "buff": { + "mindps": 12, + "maxdps": 14, + "def": 80 + }, + "qh": { + "mindps": "qhlv*5+qhlv^1+(qhlv/5)*16.1", + "maxdps": "qhlv*7+qhlv^1+(qhlv/5)*16.2", + "def": "qhlv*19.27+qhlv^1.5+(qhlv/5)*16.2" + }, + "tzid": 6, + "des": "intr_equip_des_2006", + "advancedEffects": "" + }, + "2007": { + "id": 2007, + "name": "intr_equip_name_2007", + "undefined": "泰坦头盔", + "type": 2, + "colour": 4, + "icon": "equip_2107", + "buff": { + "mindps": 12, + "maxdps": 14, + "def": 80 + }, + "qh": { + "mindps": "qhlv*5+qhlv^1+(qhlv/5)*16.1", + "maxdps": "qhlv*7+qhlv^1+(qhlv/5)*16.2", + "def": "qhlv*19.27+qhlv^1.5+(qhlv/5)*16.2" + }, + "tzid": 7, + "des": "intr_equip_des_2007", + "advancedEffects": "" + }, + "2008": { + "id": 2008, + "name": "intr_equip_name_2008", + "undefined": "审判头盔", + "type": 2, + "colour": 4, + "icon": "equip_2108", + "buff": { + "mindps": 12, + "maxdps": 14, + "def": 80 + }, + "qh": { + "mindps": "qhlv*5+qhlv^1+(qhlv/5)*16.1", + "maxdps": "qhlv*7+qhlv^1+(qhlv/5)*16.2", + "def": "qhlv*19.27+qhlv^1.5+(qhlv/5)*16.2" + }, + "tzid": 8, + "des": "intr_equip_des_2008", + "advancedEffects": "" + }, + "2009": { + "id": 2009, + "name": "intr_equip_name_2009", + "undefined": "黑暗头盔", + "type": 2, + "colour": 4, + "icon": "equip_2109", + "buff": { + "mindps": 12, + "maxdps": 14, + "def": 80 + }, + "qh": { + "mindps": "qhlv*5+qhlv^1+(qhlv/5)*16.1", + "maxdps": "qhlv*7+qhlv^1+(qhlv/5)*16.2", + "def": "qhlv*19.27+qhlv^1.5+(qhlv/5)*16.2" + }, + "tzid": 9, + "des": "intr_equip_des_2009", + "advancedEffects": "" + }, + "2010": { + "id": 2010, + "name": "intr_equip_name_2010", + "undefined": "磷火头盔", + "type": 2, + "colour": 5, + "icon": "equip_2110", + "buff": { + "mindps": 63, + "maxdps": 74, + "def": 424 + }, + "qh": { + "mindps": "qhlv*5+qhlv^1+(qhlv/5)*16.1", + "maxdps": "qhlv*7+qhlv^1+(qhlv/5)*16.2", + "def": "qhlv*19.27+qhlv^1.5+(qhlv/5)*16.2" + }, + "tzid": 10, + "des": "intr_equip_des_2010", + "advancedEffects": "ani_xiangzikuang" + }, + "3001": { + "id": 3001, + "name": "intr_equip_name_3001", + "undefined": "活力胸甲", + "type": 3, + "colour": 2, + "icon": "equip_3101", + "buff": { + "mindps": 6, + "maxdps": 8, + "hp": 160 + }, + "qh": { + "mindps": "qhlv*3.54+qhlv^0.8+(qhlv/5)*10.3", + "maxdps": "qhlv*4.85+qhlv^0.8+(qhlv/5)*10.3", + "hp": "qhlv*154+qhlv^2+(qhlv/5)*50" + }, + "tzid": 1, + "des": "intr_equip_des_3001", + "advancedEffects": "" + }, + "3002": { + "id": 3002, + "name": "intr_equip_name_3002", + "undefined": "圣徒胸甲", + "type": 3, + "colour": 3, + "icon": "equip_3102", + "buff": { + "mindps": 7, + "maxdps": 10, + "hp": 240 + }, + "qh": { + "mindps": "qhlv*5.35+qhlv^0.8+(qhlv/5)*10.3", + "maxdps": "qhlv*7.07+qhlv^0.8+(qhlv/5)*10.3", + "hp": "qhlv*239+qhlv^2+(qhlv/5)*28.3" + }, + "tzid": 2, + "des": "intr_equip_des_3002", + "advancedEffects": "" + }, + "3003": { + "id": 3003, + "name": "intr_equip_name_3003", + "undefined": "奇迹胸甲", + "type": 3, + "colour": 4, + "icon": "equip_3103", + "buff": { + "mindps": 16, + "maxdps": 24, + "hp": 740 + }, + "qh": { + "mindps": "qhlv*6+qhlv^1+(qhlv/5)*11", + "maxdps": "qhlv*8+qhlv^1+(qhlv/5)*11", + "hp": "qhlv*240+qhlv^2.1+(qhlv/5)*38" + }, + "tzid": 3, + "des": "intr_equip_des_3003", + "advancedEffects": "" + }, + "3004": { + "id": 3004, + "name": "intr_equip_name_3004", + "undefined": "天使胸甲", + "type": 3, + "colour": 4, + "icon": "equip_3104", + "buff": { + "mindps": 16, + "maxdps": 24, + "hp": 740 + }, + "qh": { + "mindps": "qhlv*6+qhlv^1+(qhlv/5)*11", + "maxdps": "qhlv*8+qhlv^1+(qhlv/5)*11", + "hp": "qhlv*240+qhlv^2.1+(qhlv/5)*38" + }, + "tzid": 4, + "des": "intr_equip_des_3004", + "advancedEffects": "" + }, + "3005": { + "id": 3005, + "name": "intr_equip_name_3005", + "undefined": "勇气胸甲", + "type": 3, + "colour": 4, + "icon": "equip_3105", + "buff": { + "mindps": 16, + "maxdps": 24, + "hp": 740 + }, + "qh": { + "mindps": "qhlv*6+qhlv^1+(qhlv/5)*11", + "maxdps": "qhlv*8+qhlv^1+(qhlv/5)*11", + "hp": "qhlv*240+qhlv^2.1+(qhlv/5)*38" + }, + "tzid": 5, + "des": "intr_equip_des_3005", + "advancedEffects": "" + }, + "3006": { + "id": 3006, + "name": "intr_equip_name_3006", + "undefined": "诅咒胸甲", + "type": 3, + "colour": 4, + "icon": "equip_3106", + "buff": { + "mindps": 20, + "maxdps": 30, + "hp": 680 + }, + "qh": { + "mindps": "qhlv*5+qhlv^1+(qhlv/5)*16.1", + "maxdps": "qhlv*7+qhlv^1+(qhlv/5)*16.2", + "hp": "qhlv*245.37+qhlv^2.1+(qhlv/5)*10" + }, + "tzid": 6, + "des": "intr_equip_des_3006", + "advancedEffects": "" + }, + "3007": { + "id": 3007, + "name": "intr_equip_name_3007", + "undefined": "泰坦胸甲", + "type": 3, + "colour": 4, + "icon": "equip_3107", + "buff": { + "mindps": 20, + "maxdps": 30, + "hp": 680 + }, + "qh": { + "mindps": "qhlv*5+qhlv^1+(qhlv/5)*16.1", + "maxdps": "qhlv*7+qhlv^1+(qhlv/5)*16.2", + "hp": "qhlv*245.37+qhlv^2.1+(qhlv/5)*10" + }, + "tzid": 7, + "des": "intr_equip_des_3007", + "advancedEffects": "" + }, + "3008": { + "id": 3008, + "name": "intr_equip_name_3008", + "undefined": "审判胸甲", + "type": 3, + "colour": 4, + "icon": "equip_3108", + "buff": { + "mindps": 20, + "maxdps": 30, + "hp": 680 + }, + "qh": { + "mindps": "qhlv*5+qhlv^1+(qhlv/5)*16.1", + "maxdps": "qhlv*7+qhlv^1+(qhlv/5)*16.2", + "hp": "qhlv*245.37+qhlv^2.1+(qhlv/5)*10" + }, + "tzid": 8, + "des": "intr_equip_des_3008", + "advancedEffects": "" + }, + "3009": { + "id": 3009, + "name": "intr_equip_name_3009", + "undefined": "黑暗胸甲", + "type": 3, + "colour": 4, + "icon": "equip_3109", + "buff": { + "mindps": 20, + "maxdps": 30, + "hp": 680 + }, + "qh": { + "mindps": "qhlv*5+qhlv^1+(qhlv/5)*16.1", + "maxdps": "qhlv*7+qhlv^1+(qhlv/5)*16.2", + "hp": "qhlv*245.37+qhlv^2.1+(qhlv/5)*10" + }, + "tzid": 9, + "des": "intr_equip_des_3009", + "advancedEffects": "" + }, + "3010": { + "id": 3010, + "name": "intr_equip_name_3010", + "undefined": "磷火胸甲", + "type": 3, + "colour": 5, + "icon": "equip_3110", + "buff": { + "mindps": 106, + "maxdps": 159, + "hp": 3604 + }, + "qh": { + "mindps": "qhlv*5+qhlv^1+(qhlv/5)*16.1", + "maxdps": "qhlv*7+qhlv^1+(qhlv/5)*16.2", + "hp": "qhlv*245.37+qhlv^2.1+(qhlv/5)*10" + }, + "tzid": 10, + "des": "intr_equip_des_3010", + "advancedEffects": "ani_xiangzikuang" + }, + "4001": { + "id": 4001, + "name": "intr_equip_name_4001", + "undefined": "活力之戒", + "type": 4, + "colour": 2, + "icon": "equip_4101", + "buff": { + "hp": 100, + "atk": 20 + }, + "qh": { + "atk": "qhlv*3+qhlv^1.2+(qhlv/5)*5.5", + "hp": "qhlv*86.06+qhlv^1.8+(qhlv/5)*30" + }, + "tzid": 1, + "des": "intr_equip_des_4001", + "advancedEffects": "" + }, + "4002": { + "id": 4002, + "name": "intr_equip_name_4002", + "undefined": "圣徒之戒", + "type": 4, + "colour": 3, + "icon": "equip_4102", + "buff": { + "hp": 150, + "atk": 26 + }, + "qh": { + "atk": "qhlv*6+qhlv^1.2+(qhlv/5)*0.4", + "hp": "qhlv*129+qhlv^1.8+(qhlv/5)*17" + }, + "tzid": 2, + "des": "intr_equip_des_4002", + "advancedEffects": "" + }, + "4003": { + "id": 4003, + "name": "intr_equip_name_4003", + "undefined": "奇迹之戒", + "type": 4, + "colour": 4, + "icon": "equip_4103", + "buff": { + "hp": 440, + "atk": 74 + }, + "qh": { + "atk": "qhlv*6+qhlv^1.3+(qhlv/5)*0.7", + "hp": "qhlv*184+qhlv^1.6+(qhlv/5)*12" + }, + "tzid": 3, + "des": "intr_equip_des_4003", + "advancedEffects": "" + }, + "4004": { + "id": 4004, + "name": "intr_equip_name_4004", + "undefined": "天使之戒", + "type": 4, + "colour": 4, + "icon": "equip_4104", + "buff": { + "hp": 440, + "atk": 74 + }, + "qh": { + "atk": "qhlv*6+qhlv^1.3+(qhlv/5)*0.7", + "hp": "qhlv*184+qhlv^1.6+(qhlv/5)*12" + }, + "tzid": 4, + "des": "intr_equip_des_4004", + "advancedEffects": "" + }, + "4005": { + "id": 4005, + "name": "intr_equip_name_4005", + "undefined": "勇气之戒", + "type": 4, + "colour": 4, + "icon": "equip_4105", + "buff": { + "hp": 440, + "atk": 74 + }, + "qh": { + "atk": "qhlv*6+qhlv^1.3+(qhlv/5)*0.7", + "hp": "qhlv*184+qhlv^1.6+(qhlv/5)*12" + }, + "tzid": 5, + "des": "intr_equip_des_4005", + "advancedEffects": "" + }, + "4006": { + "id": 4006, + "name": "intr_equip_name_4006", + "undefined": "诅咒之戒", + "type": 4, + "colour": 4, + "icon": "equip_4106", + "buff": { + "hp": 400, + "atk": 82 + }, + "qh": { + "atk": "qhlv*5+qhlv^1.3+(qhlv/5)*6", + "hp": "qhlv*175+qhlv^1.7+(qhlv/5)*11" + }, + "tzid": 6, + "des": "intr_equip_des_4006", + "advancedEffects": "" + }, + "4007": { + "id": 4007, + "name": "intr_equip_name_4007", + "undefined": "泰坦之戒", + "type": 4, + "colour": 4, + "icon": "equip_4107", + "buff": { + "hp": 400, + "atk": 82 + }, + "qh": { + "atk": "qhlv*5+qhlv^1.3+(qhlv/5)*6", + "hp": "qhlv*175+qhlv^1.7+(qhlv/5)*11" + }, + "tzid": 7, + "des": "intr_equip_des_4007", + "advancedEffects": "" + }, + "4008": { + "id": 4008, + "name": "intr_equip_name_4008", + "undefined": "审判之戒", + "type": 4, + "colour": 4, + "icon": "equip_4108", + "buff": { + "hp": 400, + "atk": 82 + }, + "qh": { + "atk": "qhlv*5+qhlv^1.3+(qhlv/5)*6", + "hp": "qhlv*175+qhlv^1.7+(qhlv/5)*11" + }, + "tzid": 8, + "des": "intr_equip_des_4008", + "advancedEffects": "" + }, + "4009": { + "id": 4009, + "name": "intr_equip_name_4009", + "undefined": "黑暗之戒", + "type": 4, + "colour": 4, + "icon": "equip_4109", + "buff": { + "hp": 400, + "atk": 82 + }, + "qh": { + "atk": "qhlv*5+qhlv^1.3+(qhlv/5)*6", + "hp": "qhlv*175+qhlv^1.7+(qhlv/5)*11" + }, + "tzid": 9, + "des": "intr_equip_des_4009", + "advancedEffects": "" + }, + "4010": { + "id": 4010, + "name": "intr_equip_name_4010", + "undefined": "磷火之戒", + "type": 4, + "colour": 5, + "icon": "equip_4110", + "buff": { + "hp": 2120, + "atk": 434 + }, + "qh": { + "atk": "qhlv*5+qhlv^1.3+(qhlv/5)*6", + "hp": "qhlv*175+qhlv^1.7+(qhlv/5)*11" + }, + "tzid": 10, + "des": "intr_equip_des_4010", + "advancedEffects": "ani_xiangzikuang" + } +} \ No newline at end of file diff --git a/src/json/equipAdjusting.json b/src/json/equipAdjusting.json new file mode 100644 index 0000000..368c08b --- /dev/null +++ b/src/json/equipAdjusting.json @@ -0,0 +1,1602 @@ +{ + "1": { + "lv": 1, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "19", + "n": 10 + } + ], + "percent": 0.01 + }, + "2": { + "lv": 2, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "19", + "n": 10 + } + ], + "percent": 0.02 + }, + "3": { + "lv": 3, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "19", + "n": 10 + } + ], + "percent": 0.03 + }, + "4": { + "lv": 4, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "19", + "n": 11 + } + ], + "percent": 0.04 + }, + "5": { + "lv": 5, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "19", + "n": 11 + } + ], + "percent": 0.05 + }, + "6": { + "lv": 6, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 150000 + }, + { + "a": "item", + "t": "19", + "n": 11 + } + ], + "percent": 0.06 + }, + "7": { + "lv": 7, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 200000 + }, + { + "a": "item", + "t": "19", + "n": 12 + } + ], + "percent": 0.07 + }, + "8": { + "lv": 8, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 200000 + }, + { + "a": "item", + "t": "19", + "n": 12 + } + ], + "percent": 0.08 + }, + "9": { + "lv": 9, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 200000 + }, + { + "a": "item", + "t": "19", + "n": 12 + } + ], + "percent": 0.09 + }, + "10": { + "lv": 10, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 250000 + }, + { + "a": "item", + "t": "19", + "n": 13 + } + ], + "percent": 0.1 + }, + "11": { + "lv": 11, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 250000 + }, + { + "a": "item", + "t": "19", + "n": 13 + } + ], + "percent": 0.11 + }, + "12": { + "lv": 12, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 250000 + }, + { + "a": "item", + "t": "19", + "n": 13 + } + ], + "percent": 0.12 + }, + "13": { + "lv": 13, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + }, + { + "a": "item", + "t": "19", + "n": 13 + } + ], + "percent": 0.13 + }, + "14": { + "lv": 14, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + }, + { + "a": "item", + "t": "19", + "n": 13 + } + ], + "percent": 0.14 + }, + "15": { + "lv": 15, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + }, + { + "a": "item", + "t": "19", + "n": 13 + } + ], + "percent": 0.15 + }, + "16": { + "lv": 16, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 350000 + }, + { + "a": "item", + "t": "19", + "n": 14 + } + ], + "percent": 0.16 + }, + "17": { + "lv": 17, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 350000 + }, + { + "a": "item", + "t": "19", + "n": 14 + } + ], + "percent": 0.17 + }, + "18": { + "lv": 18, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 350000 + }, + { + "a": "item", + "t": "19", + "n": 14 + } + ], + "percent": 0.18 + }, + "19": { + "lv": 19, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 400000 + }, + { + "a": "item", + "t": "19", + "n": 15 + } + ], + "percent": 0.19 + }, + "20": { + "lv": 20, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 400000 + }, + { + "a": "item", + "t": "19", + "n": 15 + } + ], + "percent": 0.2 + }, + "21": { + "lv": 21, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 400000 + }, + { + "a": "item", + "t": "19", + "n": 15 + } + ], + "percent": 0.21 + }, + "22": { + "lv": 22, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 450000 + }, + { + "a": "item", + "t": "19", + "n": 16 + } + ], + "percent": 0.22 + }, + "23": { + "lv": 23, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 450000 + }, + { + "a": "item", + "t": "19", + "n": 16 + } + ], + "percent": 0.23 + }, + "24": { + "lv": 24, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 450000 + }, + { + "a": "item", + "t": "19", + "n": 16 + } + ], + "percent": 0.24 + }, + "25": { + "lv": 25, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "19", + "n": 17 + } + ], + "percent": 0.25 + }, + "26": { + "lv": 26, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "19", + "n": 17 + } + ], + "percent": 0.26 + }, + "27": { + "lv": 27, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "19", + "n": 17 + } + ], + "percent": 0.27 + }, + "28": { + "lv": 28, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 550000 + }, + { + "a": "item", + "t": "19", + "n": 18 + } + ], + "percent": 0.28 + }, + "29": { + "lv": 29, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 550000 + }, + { + "a": "item", + "t": "19", + "n": 18 + } + ], + "percent": 0.29 + }, + "30": { + "lv": 30, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 550000 + }, + { + "a": "item", + "t": "19", + "n": 18 + } + ], + "percent": 0.3 + }, + "31": { + "lv": 31, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 600000 + }, + { + "a": "item", + "t": "19", + "n": 18 + } + ], + "percent": 0.31 + }, + "32": { + "lv": 32, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 600000 + }, + { + "a": "item", + "t": "19", + "n": 18 + } + ], + "percent": 0.32 + }, + "33": { + "lv": 33, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 600000 + }, + { + "a": "item", + "t": "19", + "n": 18 + } + ], + "percent": 0.33 + }, + "34": { + "lv": 34, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 650000 + }, + { + "a": "item", + "t": "19", + "n": 19 + } + ], + "percent": 0.34 + }, + "35": { + "lv": 35, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 650000 + }, + { + "a": "item", + "t": "19", + "n": 19 + } + ], + "percent": 0.35 + }, + "36": { + "lv": 36, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 650000 + }, + { + "a": "item", + "t": "19", + "n": 19 + } + ], + "percent": 0.36 + }, + "37": { + "lv": 37, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 700000 + }, + { + "a": "item", + "t": "19", + "n": 20 + } + ], + "percent": 0.37 + }, + "38": { + "lv": 38, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 700000 + }, + { + "a": "item", + "t": "19", + "n": 20 + } + ], + "percent": 0.38 + }, + "39": { + "lv": 39, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 700000 + }, + { + "a": "item", + "t": "19", + "n": 20 + } + ], + "percent": 0.39 + }, + "40": { + "lv": 40, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 750000 + }, + { + "a": "item", + "t": "19", + "n": 21 + } + ], + "percent": 0.4 + }, + "41": { + "lv": 41, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 750000 + }, + { + "a": "item", + "t": "19", + "n": 21 + } + ], + "percent": 0.41 + }, + "42": { + "lv": 42, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 750000 + }, + { + "a": "item", + "t": "19", + "n": 21 + } + ], + "percent": 0.42 + }, + "43": { + "lv": 43, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 800000 + }, + { + "a": "item", + "t": "19", + "n": 22 + } + ], + "percent": 0.43 + }, + "44": { + "lv": 44, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 800000 + }, + { + "a": "item", + "t": "19", + "n": 22 + } + ], + "percent": 0.44 + }, + "45": { + "lv": 45, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 800000 + }, + { + "a": "item", + "t": "19", + "n": 22 + } + ], + "percent": 0.45 + }, + "46": { + "lv": 46, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 850000 + }, + { + "a": "item", + "t": "19", + "n": 23 + } + ], + "percent": 0.46 + }, + "47": { + "lv": 47, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 850000 + }, + { + "a": "item", + "t": "19", + "n": 23 + } + ], + "percent": 0.47 + }, + "48": { + "lv": 48, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 850000 + }, + { + "a": "item", + "t": "19", + "n": 23 + } + ], + "percent": 0.48 + }, + "49": { + "lv": 49, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 900000 + }, + { + "a": "item", + "t": "19", + "n": 23 + } + ], + "percent": 0.49 + }, + "50": { + "lv": 50, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 900000 + }, + { + "a": "item", + "t": "19", + "n": 23 + } + ], + "percent": 0.5 + }, + "51": { + "lv": 51, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 900000 + }, + { + "a": "item", + "t": "19", + "n": 23 + } + ], + "percent": 0.51 + }, + "52": { + "lv": 52, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 950000 + }, + { + "a": "item", + "t": "19", + "n": 24 + } + ], + "percent": 0.52 + }, + "53": { + "lv": 53, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 950000 + }, + { + "a": "item", + "t": "19", + "n": 24 + } + ], + "percent": 0.53 + }, + "54": { + "lv": 54, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 950000 + }, + { + "a": "item", + "t": "19", + "n": 24 + } + ], + "percent": 0.54 + }, + "55": { + "lv": 55, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + }, + { + "a": "item", + "t": "19", + "n": 25 + } + ], + "percent": 0.55 + }, + "56": { + "lv": 56, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + }, + { + "a": "item", + "t": "19", + "n": 25 + } + ], + "percent": 0.56 + }, + "57": { + "lv": 57, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + }, + { + "a": "item", + "t": "19", + "n": 25 + } + ], + "percent": 0.57 + }, + "58": { + "lv": 58, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1050000 + }, + { + "a": "item", + "t": "19", + "n": 26 + } + ], + "percent": 0.58 + }, + "59": { + "lv": 59, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1050000 + }, + { + "a": "item", + "t": "19", + "n": 26 + } + ], + "percent": 0.59 + }, + "60": { + "lv": 60, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1050000 + }, + { + "a": "item", + "t": "19", + "n": 26 + } + ], + "percent": 0.6 + }, + "61": { + "lv": 61, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1100000 + }, + { + "a": "item", + "t": "19", + "n": 27 + } + ], + "percent": 0.61 + }, + "62": { + "lv": 62, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1100000 + }, + { + "a": "item", + "t": "19", + "n": 27 + } + ], + "percent": 0.62 + }, + "63": { + "lv": 63, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1100000 + }, + { + "a": "item", + "t": "19", + "n": 27 + } + ], + "percent": 0.63 + }, + "64": { + "lv": 64, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1150000 + }, + { + "a": "item", + "t": "19", + "n": 28 + } + ], + "percent": 0.64 + }, + "65": { + "lv": 65, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1150000 + }, + { + "a": "item", + "t": "19", + "n": 28 + } + ], + "percent": 0.65 + }, + "66": { + "lv": 66, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1150000 + }, + { + "a": "item", + "t": "19", + "n": 28 + } + ], + "percent": 0.66 + }, + "67": { + "lv": 67, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + }, + { + "a": "item", + "t": "19", + "n": 28 + } + ], + "percent": 0.67 + }, + "68": { + "lv": 68, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + }, + { + "a": "item", + "t": "19", + "n": 28 + } + ], + "percent": 0.68 + }, + "69": { + "lv": 69, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + }, + { + "a": "item", + "t": "19", + "n": 28 + } + ], + "percent": 0.69 + }, + "70": { + "lv": 70, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1250000 + }, + { + "a": "item", + "t": "19", + "n": 29 + } + ], + "percent": 0.7 + }, + "71": { + "lv": 71, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1250000 + }, + { + "a": "item", + "t": "19", + "n": 29 + } + ], + "percent": 0.71 + }, + "72": { + "lv": 72, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1250000 + }, + { + "a": "item", + "t": "19", + "n": 29 + } + ], + "percent": 0.72 + }, + "73": { + "lv": 73, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1300000 + }, + { + "a": "item", + "t": "19", + "n": 30 + } + ], + "percent": 0.73 + }, + "74": { + "lv": 74, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1300000 + }, + { + "a": "item", + "t": "19", + "n": 30 + } + ], + "percent": 0.74 + }, + "75": { + "lv": 75, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1300000 + }, + { + "a": "item", + "t": "19", + "n": 30 + } + ], + "percent": 0.75 + }, + "76": { + "lv": 76, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1350000 + }, + { + "a": "item", + "t": "19", + "n": 31 + } + ], + "percent": 0.76 + }, + "77": { + "lv": 77, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1350000 + }, + { + "a": "item", + "t": "19", + "n": 31 + } + ], + "percent": 0.77 + }, + "78": { + "lv": 78, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1350000 + }, + { + "a": "item", + "t": "19", + "n": 31 + } + ], + "percent": 0.78 + }, + "79": { + "lv": 79, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1400000 + }, + { + "a": "item", + "t": "19", + "n": 32 + } + ], + "percent": 0.79 + }, + "80": { + "lv": 80, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1400000 + }, + { + "a": "item", + "t": "19", + "n": 32 + } + ], + "percent": 0.8 + }, + "81": { + "lv": 81, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1400000 + }, + { + "a": "item", + "t": "19", + "n": 32 + } + ], + "percent": 0.81 + }, + "82": { + "lv": 82, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1450000 + }, + { + "a": "item", + "t": "19", + "n": 33 + } + ], + "percent": 0.82 + }, + "83": { + "lv": 83, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1450000 + }, + { + "a": "item", + "t": "19", + "n": 33 + } + ], + "percent": 0.83 + }, + "84": { + "lv": 84, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1450000 + }, + { + "a": "item", + "t": "19", + "n": 33 + } + ], + "percent": 0.84 + }, + "85": { + "lv": 85, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "19", + "n": 33 + } + ], + "percent": 0.85 + }, + "86": { + "lv": 86, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "19", + "n": 33 + } + ], + "percent": 0.86 + }, + "87": { + "lv": 87, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "19", + "n": 33 + } + ], + "percent": 0.87 + }, + "88": { + "lv": 88, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1550000 + }, + { + "a": "item", + "t": "19", + "n": 34 + } + ], + "percent": 0.88 + }, + "89": { + "lv": 89, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1550000 + }, + { + "a": "item", + "t": "19", + "n": 34 + } + ], + "percent": 0.89 + }, + "90": { + "lv": 90, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1550000 + }, + { + "a": "item", + "t": "19", + "n": 34 + } + ], + "percent": 0.9 + }, + "91": { + "lv": 91, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1600000 + }, + { + "a": "item", + "t": "19", + "n": 35 + } + ], + "percent": 0.91 + }, + "92": { + "lv": 92, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1600000 + }, + { + "a": "item", + "t": "19", + "n": 35 + } + ], + "percent": 0.92 + }, + "93": { + "lv": 93, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1600000 + }, + { + "a": "item", + "t": "19", + "n": 35 + } + ], + "percent": 0.93 + }, + "94": { + "lv": 94, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1650000 + }, + { + "a": "item", + "t": "19", + "n": 36 + } + ], + "percent": 0.94 + }, + "95": { + "lv": 95, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1650000 + }, + { + "a": "item", + "t": "19", + "n": 36 + } + ], + "percent": 0.95 + }, + "96": { + "lv": 96, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1650000 + }, + { + "a": "item", + "t": "19", + "n": 36 + } + ], + "percent": 0.96 + }, + "97": { + "lv": 97, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1700000 + }, + { + "a": "item", + "t": "19", + "n": 37 + } + ], + "percent": 0.97 + }, + "98": { + "lv": 98, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1700000 + }, + { + "a": "item", + "t": "19", + "n": 37 + } + ], + "percent": 0.98 + }, + "99": { + "lv": 99, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1700000 + }, + { + "a": "item", + "t": "19", + "n": 37 + } + ], + "percent": 0.99 + }, + "100": { + "lv": 100, + "need": [ + { + "a": "attr", + "t": "jinbi", + "n": 1750000 + }, + { + "a": "item", + "t": "19", + "n": 38 + } + ], + "percent": 1 + } +} \ No newline at end of file diff --git a/src/json/equipMaster.json b/src/json/equipMaster.json new file mode 100644 index 0000000..a2ac8da --- /dev/null +++ b/src/json/equipMaster.json @@ -0,0 +1,454 @@ +{ + "peiyang": [ + { + "type": "peiyang", + "lv": 1, + "aLv": 10, + "buff": { + "atk": 100 + } + }, + { + "type": "peiyang", + "lv": 2, + "aLv": 20, + "buff": { + "atk": 130, + "def": 25 + } + }, + { + "type": "peiyang", + "lv": 3, + "aLv": 30, + "buff": { + "atk": 160, + "def": 50 + } + }, + { + "type": "peiyang", + "lv": 4, + "aLv": 40, + "buff": { + "atk": 190, + "def": 75, + "hp": 900 + } + }, + { + "type": "peiyang", + "lv": 5, + "aLv": 50, + "buff": { + "atk": 220, + "def": 100, + "hp": 1500 + } + }, + { + "type": "peiyang", + "lv": 6, + "aLv": 60, + "buff": { + "atk": 250, + "def": 125, + "hp": 2100 + } + }, + { + "type": "peiyang", + "lv": 7, + "aLv": 70, + "buff": { + "atk": 280, + "def": 150, + "hp": 2700 + } + }, + { + "type": "peiyang", + "lv": 8, + "aLv": 80, + "buff": { + "atk": 310, + "def": 175, + "hp": 3300 + } + }, + { + "type": "peiyang", + "lv": 9, + "aLv": 90, + "buff": { + "atk": 340, + "def": 200, + "hp": 3900 + } + }, + { + "type": "peiyang", + "lv": 10, + "aLv": 100, + "buff": { + "atk": 370, + "def": 225, + "hp": 4500 + } + }, + { + "type": "peiyang", + "lv": 11, + "aLv": 110, + "buff": { + "atk": 400, + "def": 250, + "hp": 5100 + } + }, + { + "type": "peiyang", + "lv": 12, + "aLv": 120, + "buff": { + "atk": 430, + "def": 275, + "hp": 5700 + } + }, + { + "type": "peiyang", + "lv": 13, + "aLv": 130, + "buff": { + "atk": 460, + "def": 300, + "hp": 6300 + } + }, + { + "type": "peiyang", + "lv": 14, + "aLv": 140, + "buff": { + "atk": 490, + "def": 325, + "hp": 6900 + } + }, + { + "type": "peiyang", + "lv": 15, + "aLv": 150, + "buff": { + "atk": 520, + "def": 350, + "hp": 7500 + } + }, + { + "type": "peiyang", + "lv": 16, + "aLv": 160, + "buff": { + "atk": 550, + "def": 375, + "hp": 8100 + } + }, + { + "type": "peiyang", + "lv": 17, + "aLv": 170, + "buff": { + "atk": 580, + "def": 400, + "hp": 8700 + } + }, + { + "type": "peiyang", + "lv": 18, + "aLv": 180, + "buff": { + "atk": 610, + "def": 425, + "hp": 9300 + } + }, + { + "type": "peiyang", + "lv": 19, + "aLv": 190, + "buff": { + "atk": 640, + "def": 450, + "hp": 9900 + } + }, + { + "type": "peiyang", + "lv": 20, + "aLv": 200, + "buff": { + "atk": 670, + "def": 475, + "hp": 10500 + } + } + ], + "shengxing": [ + { + "type": "shengxing", + "lv": 1, + "aLv": 1, + "buff": { + "pvpdpspro": 0.01, + "pvpdpsdrop": 0.01 + } + }, + { + "type": "shengxing", + "lv": 2, + "aLv": 2, + "buff": { + "pvpdpspro": 0.02, + "pvpdpsdrop": 0.02 + } + }, + { + "type": "shengxing", + "lv": 3, + "aLv": 3, + "buff": { + "pvpdpspro": 0.03, + "pvpdpsdrop": 0.03 + } + }, + { + "type": "shengxing", + "lv": 4, + "aLv": 4, + "buff": { + "pvpdpspro": 0.04, + "pvpdpsdrop": 0.04 + } + }, + { + "type": "shengxing", + "lv": 5, + "aLv": 5, + "buff": { + "pvpdpspro": 0.05, + "pvpdpsdrop": 0.05 + } + }, + { + "type": "shengxing", + "lv": 6, + "aLv": 6, + "buff": { + "pvpdpspro": 0.06, + "pvpdpsdrop": 0.06 + } + }, + { + "type": "shengxing", + "lv": 7, + "aLv": 7, + "buff": { + "pvpdpspro": 0.07, + "pvpdpsdrop": 0.07 + } + }, + { + "type": "shengxing", + "lv": 8, + "aLv": 8, + "buff": { + "pvpdpspro": 0.08, + "pvpdpsdrop": 0.08 + } + }, + { + "type": "shengxing", + "lv": 9, + "aLv": 9, + "buff": { + "pvpdpspro": 0.09, + "pvpdpsdrop": 0.09 + } + }, + { + "type": "shengxing", + "lv": 10, + "aLv": 10, + "buff": { + "pvpdpspro": 0.1, + "pvpdpsdrop": 0.1 + } + } + ], + "tiaojiao": [ + { + "type": "tiaojiao", + "lv": 1, + "aLv": 10, + "buff": { + "xixuepro": 0.01 + } + }, + { + "type": "tiaojiao", + "lv": 2, + "aLv": 20, + "buff": { + "xixuepro": 0.02 + } + }, + { + "type": "tiaojiao", + "lv": 3, + "aLv": 30, + "buff": { + "xixuepro": 0.03 + } + }, + { + "type": "tiaojiao", + "lv": 4, + "aLv": 40, + "buff": { + "xixuepro": 0.04 + } + }, + { + "type": "tiaojiao", + "lv": 5, + "aLv": 50, + "buff": { + "xixuepro": 0.05 + } + }, + { + "type": "tiaojiao", + "lv": 6, + "aLv": 60, + "buff": { + "xixuepro": 0.06 + } + }, + { + "type": "tiaojiao", + "lv": 7, + "aLv": 70, + "buff": { + "xixuepro": 0.07 + } + }, + { + "type": "tiaojiao", + "lv": 8, + "aLv": 80, + "buff": { + "xixuepro": 0.08 + } + }, + { + "type": "tiaojiao", + "lv": 9, + "aLv": 90, + "buff": { + "xixuepro": 0.09 + } + }, + { + "type": "tiaojiao", + "lv": 10, + "aLv": 100, + "buff": { + "xixuepro": 0.1 + } + }, + { + "type": "tiaojiao", + "lv": 11, + "aLv": 110, + "buff": { + "xixuepro": 0.11 + } + }, + { + "type": "tiaojiao", + "lv": 12, + "aLv": 120, + "buff": { + "xixuepro": 0.12 + } + }, + { + "type": "tiaojiao", + "lv": 13, + "aLv": 130, + "buff": { + "xixuepro": 0.13 + } + }, + { + "type": "tiaojiao", + "lv": 14, + "aLv": 140, + "buff": { + "xixuepro": 0.14 + } + }, + { + "type": "tiaojiao", + "lv": 15, + "aLv": 150, + "buff": { + "xixuepro": 0.15 + } + }, + { + "type": "tiaojiao", + "lv": 16, + "aLv": 160, + "buff": { + "xixuepro": 0.16 + } + }, + { + "type": "tiaojiao", + "lv": 17, + "aLv": 170, + "buff": { + "xixuepro": 0.17 + } + }, + { + "type": "tiaojiao", + "lv": 18, + "aLv": 180, + "buff": { + "xixuepro": 0.18 + } + }, + { + "type": "tiaojiao", + "lv": 19, + "aLv": 190, + "buff": { + "xixuepro": 0.19 + } + }, + { + "type": "tiaojiao", + "lv": 20, + "aLv": 200, + "buff": { + "xixuepro": 0.2 + } + } + ] +} \ No newline at end of file diff --git a/src/json/equipSuit.json b/src/json/equipSuit.json new file mode 100644 index 0000000..9ee4568 --- /dev/null +++ b/src/json/equipSuit.json @@ -0,0 +1,152 @@ +{ + "1": { + "id": 1, + "name": "intr_equip_suit_name_1", + "buff": { + "2": { + "hp": 500 + }, + "3": { + "atk": 100 + }, + "4": { + "def": 150 + } + } + }, + "2": { + "id": 2, + "name": "intr_equip_suit_name_2", + "buff": { + "2": { + "atk": 150 + }, + "3": { + "hp": 1500 + }, + "4": { + "undpspro": 0.05 + } + } + }, + "3": { + "id": 3, + "name": "intr_equip_suit_name_3", + "buff": { + "2": { + "hp": 2200 + }, + "3": { + "atk": 350 + }, + "4": { + "mingzhongpro": 0.08 + } + } + }, + "4": { + "id": 4, + "name": "intr_equip_suit_name_4", + "buff": { + "2": { + "hp": 3000 + }, + "3": { + "atk": 300 + }, + "4": { + "dpspro": 0.08 + } + } + }, + "5": { + "id": 5, + "name": "intr_equip_suit_name_5", + "buff": { + "2": { + "atk": 300 + }, + "3": { + "hp": 3000 + }, + "4": { + "baoshangpro": 0.2 + } + } + }, + "6": { + "id": 6, + "name": "intr_equip_suit_name_6", + "buff": { + "2": { + "hp": 2750 + }, + "3": { + "atk": 320 + }, + "4": { + "xixuepro": 0.08 + } + } + }, + "7": { + "id": 7, + "name": "intr_equip_suit_name_7", + "buff": { + "2": { + "atk": 350 + }, + "3": { + "def": 300 + }, + "4": { + "undpspro": 0.08 + } + } + }, + "8": { + "id": 8, + "name": "intr_equip_suit_name_8", + "buff": { + "2": { + "atk": 200 + }, + "3": { + "atk": 300 + }, + "4": { + "shanbipro": 0.08 + } + } + }, + "9": { + "id": 9, + "name": "intr_equip_suit_name_9", + "buff": { + "2": { + "atk": 500 + }, + "3": { + "hp": 2500 + }, + "4": { + "undpspro": 0.08 + } + } + }, + "10": { + "id": 10, + "name": "intr_equip_suit_name_10", + "buff": { + "2": { + "hp": 4500 + }, + "3": { + "def": 450 + }, + "4": { + "dpspro": 0.1 + } + } + } +} \ No newline at end of file diff --git a/src/json/equiplvup.json b/src/json/equiplvup.json new file mode 100644 index 0000000..4933eda --- /dev/null +++ b/src/json/equiplvup.json @@ -0,0 +1,3002 @@ +{ + "1": { + "lv": 1, + "need": [ + { + "a": "item", + "t": "2", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600 + } + ] + }, + "2": { + "lv": 2, + "need": [ + { + "a": "item", + "t": "2", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200 + } + ] + }, + "3": { + "lv": 3, + "need": [ + { + "a": "item", + "t": "2", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1800 + } + ] + }, + "4": { + "lv": 4, + "need": [ + { + "a": "item", + "t": "2", + "n": 3 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2400 + } + ] + }, + "5": { + "lv": 5, + "need": [ + { + "a": "item", + "t": "2", + "n": 3 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3000 + } + ] + }, + "6": { + "lv": 6, + "need": [ + { + "a": "item", + "t": "2", + "n": 3 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3600 + } + ] + }, + "7": { + "lv": 7, + "need": [ + { + "a": "item", + "t": "2", + "n": 3 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4200 + } + ] + }, + "8": { + "lv": 8, + "need": [ + { + "a": "item", + "t": "2", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4800 + } + ] + }, + "9": { + "lv": 9, + "need": [ + { + "a": "item", + "t": "2", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5400 + } + ] + }, + "10": { + "lv": 10, + "need": [ + { + "a": "item", + "t": "2", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000 + } + ] + }, + "11": { + "lv": 11, + "need": [ + { + "a": "item", + "t": "2", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6600 + } + ] + }, + "12": { + "lv": 12, + "need": [ + { + "a": "item", + "t": "2", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7200 + } + ] + }, + "13": { + "lv": 13, + "need": [ + { + "a": "item", + "t": "2", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7800 + } + ] + }, + "14": { + "lv": 14, + "need": [ + { + "a": "item", + "t": "2", + "n": 7 + }, + { + "a": "attr", + "t": "jinbi", + "n": 8400 + } + ] + }, + "15": { + "lv": 15, + "need": [ + { + "a": "item", + "t": "2", + "n": 7 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000 + } + ] + }, + "16": { + "lv": 16, + "need": [ + { + "a": "item", + "t": "2", + "n": 7 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9600 + } + ] + }, + "17": { + "lv": 17, + "need": [ + { + "a": "item", + "t": "2", + "n": 7 + }, + { + "a": "attr", + "t": "jinbi", + "n": 10200 + } + ] + }, + "18": { + "lv": 18, + "need": [ + { + "a": "item", + "t": "2", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 10800 + } + ] + }, + "19": { + "lv": 19, + "need": [ + { + "a": "item", + "t": "2", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 11400 + } + ] + }, + "20": { + "lv": 20, + "need": [ + { + "a": "item", + "t": "2", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12000 + } + ] + }, + "21": { + "lv": 21, + "need": [ + { + "a": "item", + "t": "2", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12600 + } + ] + }, + "22": { + "lv": 22, + "need": [ + { + "a": "item", + "t": "2", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 13200 + } + ] + }, + "23": { + "lv": 23, + "need": [ + { + "a": "item", + "t": "2", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 13800 + } + ] + }, + "24": { + "lv": 24, + "need": [ + { + "a": "item", + "t": "2", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 14400 + } + ] + }, + "25": { + "lv": 25, + "need": [ + { + "a": "item", + "t": "2", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 15000 + } + ] + }, + "26": { + "lv": 26, + "need": [ + { + "a": "item", + "t": "2", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 15600 + } + ] + }, + "27": { + "lv": 27, + "need": [ + { + "a": "item", + "t": "2", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16200 + } + ] + }, + "28": { + "lv": 28, + "need": [ + { + "a": "item", + "t": "2", + "n": 13 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16800 + } + ] + }, + "29": { + "lv": 29, + "need": [ + { + "a": "item", + "t": "2", + "n": 13 + }, + { + "a": "attr", + "t": "jinbi", + "n": 17400 + } + ] + }, + "30": { + "lv": 30, + "need": [ + { + "a": "item", + "t": "2", + "n": 13 + }, + { + "a": "attr", + "t": "jinbi", + "n": 18000 + } + ] + }, + "31": { + "lv": 31, + "need": [ + { + "a": "item", + "t": "2", + "n": 30 + }, + { + "a": "attr", + "t": "jinbi", + "n": 18600 + } + ] + }, + "32": { + "lv": 32, + "need": [ + { + "a": "item", + "t": "2", + "n": 30 + }, + { + "a": "attr", + "t": "jinbi", + "n": 19200 + } + ] + }, + "33": { + "lv": 33, + "need": [ + { + "a": "item", + "t": "2", + "n": 30 + }, + { + "a": "attr", + "t": "jinbi", + "n": 19800 + } + ] + }, + "34": { + "lv": 34, + "need": [ + { + "a": "item", + "t": "2", + "n": 33 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20400 + } + ] + }, + "35": { + "lv": 35, + "need": [ + { + "a": "item", + "t": "2", + "n": 33 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000 + } + ] + }, + "36": { + "lv": 36, + "need": [ + { + "a": "item", + "t": "2", + "n": 33 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21600 + } + ] + }, + "37": { + "lv": 37, + "need": [ + { + "a": "item", + "t": "2", + "n": 33 + }, + { + "a": "attr", + "t": "jinbi", + "n": 22200 + } + ] + }, + "38": { + "lv": 38, + "need": [ + { + "a": "item", + "t": "2", + "n": 36 + }, + { + "a": "attr", + "t": "jinbi", + "n": 22800 + } + ] + }, + "39": { + "lv": 39, + "need": [ + { + "a": "item", + "t": "2", + "n": 36 + }, + { + "a": "attr", + "t": "jinbi", + "n": 23400 + } + ] + }, + "40": { + "lv": 40, + "need": [ + { + "a": "item", + "t": "2", + "n": 36 + }, + { + "a": "attr", + "t": "jinbi", + "n": 24000 + } + ] + }, + "41": { + "lv": 41, + "need": [ + { + "a": "item", + "t": "2", + "n": 39 + }, + { + "a": "attr", + "t": "jinbi", + "n": 24600 + } + ] + }, + "42": { + "lv": 42, + "need": [ + { + "a": "item", + "t": "2", + "n": 39 + }, + { + "a": "attr", + "t": "jinbi", + "n": 25200 + } + ] + }, + "43": { + "lv": 43, + "need": [ + { + "a": "item", + "t": "2", + "n": 39 + }, + { + "a": "attr", + "t": "jinbi", + "n": 25800 + } + ] + }, + "44": { + "lv": 44, + "need": [ + { + "a": "item", + "t": "2", + "n": 42 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26400 + } + ] + }, + "45": { + "lv": 45, + "need": [ + { + "a": "item", + "t": "2", + "n": 42 + }, + { + "a": "attr", + "t": "jinbi", + "n": 27000 + } + ] + }, + "46": { + "lv": 46, + "need": [ + { + "a": "item", + "t": "2", + "n": 42 + }, + { + "a": "attr", + "t": "jinbi", + "n": 27600 + } + ] + }, + "47": { + "lv": 47, + "need": [ + { + "a": "item", + "t": "2", + "n": 42 + }, + { + "a": "attr", + "t": "jinbi", + "n": 28200 + } + ] + }, + "48": { + "lv": 48, + "need": [ + { + "a": "item", + "t": "2", + "n": 45 + }, + { + "a": "attr", + "t": "jinbi", + "n": 28800 + } + ] + }, + "49": { + "lv": 49, + "need": [ + { + "a": "item", + "t": "2", + "n": 45 + }, + { + "a": "attr", + "t": "jinbi", + "n": 29400 + } + ] + }, + "50": { + "lv": 50, + "need": [ + { + "a": "item", + "t": "2", + "n": 45 + }, + { + "a": "attr", + "t": "jinbi", + "n": 30000 + } + ] + }, + "51": { + "lv": 51, + "need": [ + { + "a": "item", + "t": "2", + "n": 48 + }, + { + "a": "attr", + "t": "jinbi", + "n": 30600 + } + ] + }, + "52": { + "lv": 52, + "need": [ + { + "a": "item", + "t": "2", + "n": 48 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31200 + } + ] + }, + "53": { + "lv": 53, + "need": [ + { + "a": "item", + "t": "2", + "n": 48 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31800 + } + ] + }, + "54": { + "lv": 54, + "need": [ + { + "a": "item", + "t": "2", + "n": 51 + }, + { + "a": "attr", + "t": "jinbi", + "n": 32400 + } + ] + }, + "55": { + "lv": 55, + "need": [ + { + "a": "item", + "t": "2", + "n": 51 + }, + { + "a": "attr", + "t": "jinbi", + "n": 33000 + } + ] + }, + "56": { + "lv": 56, + "need": [ + { + "a": "item", + "t": "2", + "n": 51 + }, + { + "a": "attr", + "t": "jinbi", + "n": 33600 + } + ] + }, + "57": { + "lv": 57, + "need": [ + { + "a": "item", + "t": "2", + "n": 51 + }, + { + "a": "attr", + "t": "jinbi", + "n": 34200 + } + ] + }, + "58": { + "lv": 58, + "need": [ + { + "a": "item", + "t": "2", + "n": 54 + }, + { + "a": "attr", + "t": "jinbi", + "n": 34800 + } + ] + }, + "59": { + "lv": 59, + "need": [ + { + "a": "item", + "t": "2", + "n": 54 + }, + { + "a": "attr", + "t": "jinbi", + "n": 35400 + } + ] + }, + "60": { + "lv": 60, + "need": [ + { + "a": "item", + "t": "2", + "n": 54 + }, + { + "a": "attr", + "t": "jinbi", + "n": 36000 + } + ] + }, + "61": { + "lv": 61, + "need": [ + { + "a": "item", + "t": "2", + "n": 57 + }, + { + "a": "attr", + "t": "jinbi", + "n": 36600 + } + ] + }, + "62": { + "lv": 62, + "need": [ + { + "a": "item", + "t": "2", + "n": 57 + }, + { + "a": "attr", + "t": "jinbi", + "n": 37200 + } + ] + }, + "63": { + "lv": 63, + "need": [ + { + "a": "item", + "t": "2", + "n": 57 + }, + { + "a": "attr", + "t": "jinbi", + "n": 37800 + } + ] + }, + "64": { + "lv": 64, + "need": [ + { + "a": "item", + "t": "2", + "n": 60 + }, + { + "a": "attr", + "t": "jinbi", + "n": 38400 + } + ] + }, + "65": { + "lv": 65, + "need": [ + { + "a": "item", + "t": "2", + "n": 60 + }, + { + "a": "attr", + "t": "jinbi", + "n": 39000 + } + ] + }, + "66": { + "lv": 66, + "need": [ + { + "a": "item", + "t": "2", + "n": 60 + }, + { + "a": "attr", + "t": "jinbi", + "n": 39600 + } + ] + }, + "67": { + "lv": 67, + "need": [ + { + "a": "item", + "t": "2", + "n": 60 + }, + { + "a": "attr", + "t": "jinbi", + "n": 40200 + } + ] + }, + "68": { + "lv": 68, + "need": [ + { + "a": "item", + "t": "2", + "n": 63 + }, + { + "a": "attr", + "t": "jinbi", + "n": 40800 + } + ] + }, + "69": { + "lv": 69, + "need": [ + { + "a": "item", + "t": "2", + "n": 63 + }, + { + "a": "attr", + "t": "jinbi", + "n": 41400 + } + ] + }, + "70": { + "lv": 70, + "need": [ + { + "a": "item", + "t": "2", + "n": 63 + }, + { + "a": "attr", + "t": "jinbi", + "n": 42000 + } + ] + }, + "71": { + "lv": 71, + "need": [ + { + "a": "item", + "t": "2", + "n": 66 + }, + { + "a": "attr", + "t": "jinbi", + "n": 42600 + } + ] + }, + "72": { + "lv": 72, + "need": [ + { + "a": "item", + "t": "2", + "n": 66 + }, + { + "a": "attr", + "t": "jinbi", + "n": 43200 + } + ] + }, + "73": { + "lv": 73, + "need": [ + { + "a": "item", + "t": "2", + "n": 66 + }, + { + "a": "attr", + "t": "jinbi", + "n": 43800 + } + ] + }, + "74": { + "lv": 74, + "need": [ + { + "a": "item", + "t": "2", + "n": 69 + }, + { + "a": "attr", + "t": "jinbi", + "n": 44400 + } + ] + }, + "75": { + "lv": 75, + "need": [ + { + "a": "item", + "t": "2", + "n": 69 + }, + { + "a": "attr", + "t": "jinbi", + "n": 45000 + } + ] + }, + "76": { + "lv": 76, + "need": [ + { + "a": "item", + "t": "2", + "n": 69 + }, + { + "a": "attr", + "t": "jinbi", + "n": 45600 + } + ] + }, + "77": { + "lv": 77, + "need": [ + { + "a": "item", + "t": "2", + "n": 69 + }, + { + "a": "attr", + "t": "jinbi", + "n": 46200 + } + ] + }, + "78": { + "lv": 78, + "need": [ + { + "a": "item", + "t": "2", + "n": 72 + }, + { + "a": "attr", + "t": "jinbi", + "n": 46800 + } + ] + }, + "79": { + "lv": 79, + "need": [ + { + "a": "item", + "t": "2", + "n": 72 + }, + { + "a": "attr", + "t": "jinbi", + "n": 47400 + } + ] + }, + "80": { + "lv": 80, + "need": [ + { + "a": "item", + "t": "2", + "n": 72 + }, + { + "a": "attr", + "t": "jinbi", + "n": 48000 + } + ] + }, + "81": { + "lv": 81, + "need": [ + { + "a": "item", + "t": "2", + "n": 75 + }, + { + "a": "attr", + "t": "jinbi", + "n": 48600 + } + ] + }, + "82": { + "lv": 82, + "need": [ + { + "a": "item", + "t": "2", + "n": 75 + }, + { + "a": "attr", + "t": "jinbi", + "n": 49200 + } + ] + }, + "83": { + "lv": 83, + "need": [ + { + "a": "item", + "t": "2", + "n": 75 + }, + { + "a": "attr", + "t": "jinbi", + "n": 49800 + } + ] + }, + "84": { + "lv": 84, + "need": [ + { + "a": "item", + "t": "2", + "n": 78 + }, + { + "a": "attr", + "t": "jinbi", + "n": 50400 + } + ] + }, + "85": { + "lv": 85, + "need": [ + { + "a": "item", + "t": "2", + "n": 78 + }, + { + "a": "attr", + "t": "jinbi", + "n": 51000 + } + ] + }, + "86": { + "lv": 86, + "need": [ + { + "a": "item", + "t": "2", + "n": 78 + }, + { + "a": "attr", + "t": "jinbi", + "n": 51600 + } + ] + }, + "87": { + "lv": 87, + "need": [ + { + "a": "item", + "t": "2", + "n": 78 + }, + { + "a": "attr", + "t": "jinbi", + "n": 52200 + } + ] + }, + "88": { + "lv": 88, + "need": [ + { + "a": "item", + "t": "2", + "n": 81 + }, + { + "a": "attr", + "t": "jinbi", + "n": 52800 + } + ] + }, + "89": { + "lv": 89, + "need": [ + { + "a": "item", + "t": "2", + "n": 81 + }, + { + "a": "attr", + "t": "jinbi", + "n": 53400 + } + ] + }, + "90": { + "lv": 90, + "need": [ + { + "a": "item", + "t": "2", + "n": 81 + }, + { + "a": "attr", + "t": "jinbi", + "n": 54000 + } + ] + }, + "91": { + "lv": 91, + "need": [ + { + "a": "item", + "t": "2", + "n": 84 + }, + { + "a": "attr", + "t": "jinbi", + "n": 54600 + } + ] + }, + "92": { + "lv": 92, + "need": [ + { + "a": "item", + "t": "2", + "n": 84 + }, + { + "a": "attr", + "t": "jinbi", + "n": 55200 + } + ] + }, + "93": { + "lv": 93, + "need": [ + { + "a": "item", + "t": "2", + "n": 84 + }, + { + "a": "attr", + "t": "jinbi", + "n": 55800 + } + ] + }, + "94": { + "lv": 94, + "need": [ + { + "a": "item", + "t": "2", + "n": 87 + }, + { + "a": "attr", + "t": "jinbi", + "n": 56400 + } + ] + }, + "95": { + "lv": 95, + "need": [ + { + "a": "item", + "t": "2", + "n": 87 + }, + { + "a": "attr", + "t": "jinbi", + "n": 57000 + } + ] + }, + "96": { + "lv": 96, + "need": [ + { + "a": "item", + "t": "2", + "n": 87 + }, + { + "a": "attr", + "t": "jinbi", + "n": 57600 + } + ] + }, + "97": { + "lv": 97, + "need": [ + { + "a": "item", + "t": "2", + "n": 87 + }, + { + "a": "attr", + "t": "jinbi", + "n": 58200 + } + ] + }, + "98": { + "lv": 98, + "need": [ + { + "a": "item", + "t": "2", + "n": 90 + }, + { + "a": "attr", + "t": "jinbi", + "n": 58800 + } + ] + }, + "99": { + "lv": 99, + "need": [ + { + "a": "item", + "t": "2", + "n": 90 + }, + { + "a": "attr", + "t": "jinbi", + "n": 59400 + } + ] + }, + "100": { + "lv": 100, + "need": [ + { + "a": "item", + "t": "2", + "n": 90 + }, + { + "a": "attr", + "t": "jinbi", + "n": 60000 + } + ] + }, + "101": { + "lv": 101, + "need": [ + { + "a": "item", + "t": "2", + "n": 93 + }, + { + "a": "attr", + "t": "jinbi", + "n": 60600 + } + ] + }, + "102": { + "lv": 102, + "need": [ + { + "a": "item", + "t": "2", + "n": 93 + }, + { + "a": "attr", + "t": "jinbi", + "n": 61200 + } + ] + }, + "103": { + "lv": 103, + "need": [ + { + "a": "item", + "t": "2", + "n": 93 + }, + { + "a": "attr", + "t": "jinbi", + "n": 61800 + } + ] + }, + "104": { + "lv": 104, + "need": [ + { + "a": "item", + "t": "2", + "n": 96 + }, + { + "a": "attr", + "t": "jinbi", + "n": 62400 + } + ] + }, + "105": { + "lv": 105, + "need": [ + { + "a": "item", + "t": "2", + "n": 96 + }, + { + "a": "attr", + "t": "jinbi", + "n": 63000 + } + ] + }, + "106": { + "lv": 106, + "need": [ + { + "a": "item", + "t": "2", + "n": 96 + }, + { + "a": "attr", + "t": "jinbi", + "n": 63600 + } + ] + }, + "107": { + "lv": 107, + "need": [ + { + "a": "item", + "t": "2", + "n": 96 + }, + { + "a": "attr", + "t": "jinbi", + "n": 64200 + } + ] + }, + "108": { + "lv": 108, + "need": [ + { + "a": "item", + "t": "2", + "n": 99 + }, + { + "a": "attr", + "t": "jinbi", + "n": 64800 + } + ] + }, + "109": { + "lv": 109, + "need": [ + { + "a": "item", + "t": "2", + "n": 99 + }, + { + "a": "attr", + "t": "jinbi", + "n": 65400 + } + ] + }, + "110": { + "lv": 110, + "need": [ + { + "a": "item", + "t": "2", + "n": 99 + }, + { + "a": "attr", + "t": "jinbi", + "n": 66000 + } + ] + }, + "111": { + "lv": 111, + "need": [ + { + "a": "item", + "t": "2", + "n": 102 + }, + { + "a": "attr", + "t": "jinbi", + "n": 66600 + } + ] + }, + "112": { + "lv": 112, + "need": [ + { + "a": "item", + "t": "2", + "n": 102 + }, + { + "a": "attr", + "t": "jinbi", + "n": 67200 + } + ] + }, + "113": { + "lv": 113, + "need": [ + { + "a": "item", + "t": "2", + "n": 102 + }, + { + "a": "attr", + "t": "jinbi", + "n": 67800 + } + ] + }, + "114": { + "lv": 114, + "need": [ + { + "a": "item", + "t": "2", + "n": 105 + }, + { + "a": "attr", + "t": "jinbi", + "n": 68400 + } + ] + }, + "115": { + "lv": 115, + "need": [ + { + "a": "item", + "t": "2", + "n": 105 + }, + { + "a": "attr", + "t": "jinbi", + "n": 69000 + } + ] + }, + "116": { + "lv": 116, + "need": [ + { + "a": "item", + "t": "2", + "n": 105 + }, + { + "a": "attr", + "t": "jinbi", + "n": 69600 + } + ] + }, + "117": { + "lv": 117, + "need": [ + { + "a": "item", + "t": "2", + "n": 105 + }, + { + "a": "attr", + "t": "jinbi", + "n": 70200 + } + ] + }, + "118": { + "lv": 118, + "need": [ + { + "a": "item", + "t": "2", + "n": 108 + }, + { + "a": "attr", + "t": "jinbi", + "n": 70800 + } + ] + }, + "119": { + "lv": 119, + "need": [ + { + "a": "item", + "t": "2", + "n": 108 + }, + { + "a": "attr", + "t": "jinbi", + "n": 71400 + } + ] + }, + "120": { + "lv": 120, + "need": [ + { + "a": "item", + "t": "2", + "n": 108 + }, + { + "a": "attr", + "t": "jinbi", + "n": 72000 + } + ] + }, + "121": { + "lv": 121, + "need": [ + { + "a": "item", + "t": "2", + "n": 111 + }, + { + "a": "attr", + "t": "jinbi", + "n": 72600 + } + ] + }, + "122": { + "lv": 122, + "need": [ + { + "a": "item", + "t": "2", + "n": 111 + }, + { + "a": "attr", + "t": "jinbi", + "n": 73200 + } + ] + }, + "123": { + "lv": 123, + "need": [ + { + "a": "item", + "t": "2", + "n": 111 + }, + { + "a": "attr", + "t": "jinbi", + "n": 73800 + } + ] + }, + "124": { + "lv": 124, + "need": [ + { + "a": "item", + "t": "2", + "n": 114 + }, + { + "a": "attr", + "t": "jinbi", + "n": 74400 + } + ] + }, + "125": { + "lv": 125, + "need": [ + { + "a": "item", + "t": "2", + "n": 114 + }, + { + "a": "attr", + "t": "jinbi", + "n": 75000 + } + ] + }, + "126": { + "lv": 126, + "need": [ + { + "a": "item", + "t": "2", + "n": 114 + }, + { + "a": "attr", + "t": "jinbi", + "n": 75600 + } + ] + }, + "127": { + "lv": 127, + "need": [ + { + "a": "item", + "t": "2", + "n": 114 + }, + { + "a": "attr", + "t": "jinbi", + "n": 76200 + } + ] + }, + "128": { + "lv": 128, + "need": [ + { + "a": "item", + "t": "2", + "n": 117 + }, + { + "a": "attr", + "t": "jinbi", + "n": 76800 + } + ] + }, + "129": { + "lv": 129, + "need": [ + { + "a": "item", + "t": "2", + "n": 117 + }, + { + "a": "attr", + "t": "jinbi", + "n": 77400 + } + ] + }, + "130": { + "lv": 130, + "need": [ + { + "a": "item", + "t": "2", + "n": 117 + }, + { + "a": "attr", + "t": "jinbi", + "n": 78000 + } + ] + }, + "131": { + "lv": 131, + "need": [ + { + "a": "item", + "t": "2", + "n": 120 + }, + { + "a": "attr", + "t": "jinbi", + "n": 78600 + } + ] + }, + "132": { + "lv": 132, + "need": [ + { + "a": "item", + "t": "2", + "n": 120 + }, + { + "a": "attr", + "t": "jinbi", + "n": 79200 + } + ] + }, + "133": { + "lv": 133, + "need": [ + { + "a": "item", + "t": "2", + "n": 120 + }, + { + "a": "attr", + "t": "jinbi", + "n": 79800 + } + ] + }, + "134": { + "lv": 134, + "need": [ + { + "a": "item", + "t": "2", + "n": 123 + }, + { + "a": "attr", + "t": "jinbi", + "n": 80400 + } + ] + }, + "135": { + "lv": 135, + "need": [ + { + "a": "item", + "t": "2", + "n": 123 + }, + { + "a": "attr", + "t": "jinbi", + "n": 81000 + } + ] + }, + "136": { + "lv": 136, + "need": [ + { + "a": "item", + "t": "2", + "n": 123 + }, + { + "a": "attr", + "t": "jinbi", + "n": 81600 + } + ] + }, + "137": { + "lv": 137, + "need": [ + { + "a": "item", + "t": "2", + "n": 123 + }, + { + "a": "attr", + "t": "jinbi", + "n": 82200 + } + ] + }, + "138": { + "lv": 138, + "need": [ + { + "a": "item", + "t": "2", + "n": 126 + }, + { + "a": "attr", + "t": "jinbi", + "n": 82800 + } + ] + }, + "139": { + "lv": 139, + "need": [ + { + "a": "item", + "t": "2", + "n": 126 + }, + { + "a": "attr", + "t": "jinbi", + "n": 83400 + } + ] + }, + "140": { + "lv": 140, + "need": [ + { + "a": "item", + "t": "2", + "n": 126 + }, + { + "a": "attr", + "t": "jinbi", + "n": 84000 + } + ] + }, + "141": { + "lv": 141, + "need": [ + { + "a": "item", + "t": "2", + "n": 129 + }, + { + "a": "attr", + "t": "jinbi", + "n": 84600 + } + ] + }, + "142": { + "lv": 142, + "need": [ + { + "a": "item", + "t": "2", + "n": 129 + }, + { + "a": "attr", + "t": "jinbi", + "n": 85200 + } + ] + }, + "143": { + "lv": 143, + "need": [ + { + "a": "item", + "t": "2", + "n": 129 + }, + { + "a": "attr", + "t": "jinbi", + "n": 85800 + } + ] + }, + "144": { + "lv": 144, + "need": [ + { + "a": "item", + "t": "2", + "n": 132 + }, + { + "a": "attr", + "t": "jinbi", + "n": 86400 + } + ] + }, + "145": { + "lv": 145, + "need": [ + { + "a": "item", + "t": "2", + "n": 132 + }, + { + "a": "attr", + "t": "jinbi", + "n": 87000 + } + ] + }, + "146": { + "lv": 146, + "need": [ + { + "a": "item", + "t": "2", + "n": 132 + }, + { + "a": "attr", + "t": "jinbi", + "n": 87600 + } + ] + }, + "147": { + "lv": 147, + "need": [ + { + "a": "item", + "t": "2", + "n": 132 + }, + { + "a": "attr", + "t": "jinbi", + "n": 88200 + } + ] + }, + "148": { + "lv": 148, + "need": [ + { + "a": "item", + "t": "2", + "n": 135 + }, + { + "a": "attr", + "t": "jinbi", + "n": 88800 + } + ] + }, + "149": { + "lv": 149, + "need": [ + { + "a": "item", + "t": "2", + "n": 135 + }, + { + "a": "attr", + "t": "jinbi", + "n": 89400 + } + ] + }, + "150": { + "lv": 150, + "need": [ + { + "a": "item", + "t": "2", + "n": 135 + }, + { + "a": "attr", + "t": "jinbi", + "n": 90000 + } + ] + }, + "151": { + "lv": 151, + "need": [ + { + "a": "item", + "t": "2", + "n": 138 + }, + { + "a": "attr", + "t": "jinbi", + "n": 90600 + } + ] + }, + "152": { + "lv": 152, + "need": [ + { + "a": "item", + "t": "2", + "n": 138 + }, + { + "a": "attr", + "t": "jinbi", + "n": 91200 + } + ] + }, + "153": { + "lv": 153, + "need": [ + { + "a": "item", + "t": "2", + "n": 138 + }, + { + "a": "attr", + "t": "jinbi", + "n": 91800 + } + ] + }, + "154": { + "lv": 154, + "need": [ + { + "a": "item", + "t": "2", + "n": 141 + }, + { + "a": "attr", + "t": "jinbi", + "n": 92400 + } + ] + }, + "155": { + "lv": 155, + "need": [ + { + "a": "item", + "t": "2", + "n": 141 + }, + { + "a": "attr", + "t": "jinbi", + "n": 93000 + } + ] + }, + "156": { + "lv": 156, + "need": [ + { + "a": "item", + "t": "2", + "n": 141 + }, + { + "a": "attr", + "t": "jinbi", + "n": 93600 + } + ] + }, + "157": { + "lv": 157, + "need": [ + { + "a": "item", + "t": "2", + "n": 141 + }, + { + "a": "attr", + "t": "jinbi", + "n": 94200 + } + ] + }, + "158": { + "lv": 158, + "need": [ + { + "a": "item", + "t": "2", + "n": 144 + }, + { + "a": "attr", + "t": "jinbi", + "n": 94800 + } + ] + }, + "159": { + "lv": 159, + "need": [ + { + "a": "item", + "t": "2", + "n": 144 + }, + { + "a": "attr", + "t": "jinbi", + "n": 95400 + } + ] + }, + "160": { + "lv": 160, + "need": [ + { + "a": "item", + "t": "2", + "n": 144 + }, + { + "a": "attr", + "t": "jinbi", + "n": 96000 + } + ] + }, + "161": { + "lv": 161, + "need": [ + { + "a": "item", + "t": "2", + "n": 147 + }, + { + "a": "attr", + "t": "jinbi", + "n": 96600 + } + ] + }, + "162": { + "lv": 162, + "need": [ + { + "a": "item", + "t": "2", + "n": 147 + }, + { + "a": "attr", + "t": "jinbi", + "n": 97200 + } + ] + }, + "163": { + "lv": 163, + "need": [ + { + "a": "item", + "t": "2", + "n": 147 + }, + { + "a": "attr", + "t": "jinbi", + "n": 97800 + } + ] + }, + "164": { + "lv": 164, + "need": [ + { + "a": "item", + "t": "2", + "n": 150 + }, + { + "a": "attr", + "t": "jinbi", + "n": 98400 + } + ] + }, + "165": { + "lv": 165, + "need": [ + { + "a": "item", + "t": "2", + "n": 150 + }, + { + "a": "attr", + "t": "jinbi", + "n": 99000 + } + ] + }, + "166": { + "lv": 166, + "need": [ + { + "a": "item", + "t": "2", + "n": 150 + }, + { + "a": "attr", + "t": "jinbi", + "n": 99600 + } + ] + }, + "167": { + "lv": 167, + "need": [ + { + "a": "item", + "t": "2", + "n": 150 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100200 + } + ] + }, + "168": { + "lv": 168, + "need": [ + { + "a": "item", + "t": "2", + "n": 153 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100800 + } + ] + }, + "169": { + "lv": 169, + "need": [ + { + "a": "item", + "t": "2", + "n": 153 + }, + { + "a": "attr", + "t": "jinbi", + "n": 101400 + } + ] + }, + "170": { + "lv": 170, + "need": [ + { + "a": "item", + "t": "2", + "n": 153 + }, + { + "a": "attr", + "t": "jinbi", + "n": 102000 + } + ] + }, + "171": { + "lv": 171, + "need": [ + { + "a": "item", + "t": "2", + "n": 156 + }, + { + "a": "attr", + "t": "jinbi", + "n": 102600 + } + ] + }, + "172": { + "lv": 172, + "need": [ + { + "a": "item", + "t": "2", + "n": 156 + }, + { + "a": "attr", + "t": "jinbi", + "n": 103200 + } + ] + }, + "173": { + "lv": 173, + "need": [ + { + "a": "item", + "t": "2", + "n": 156 + }, + { + "a": "attr", + "t": "jinbi", + "n": 103800 + } + ] + }, + "174": { + "lv": 174, + "need": [ + { + "a": "item", + "t": "2", + "n": 159 + }, + { + "a": "attr", + "t": "jinbi", + "n": 104400 + } + ] + }, + "175": { + "lv": 175, + "need": [ + { + "a": "item", + "t": "2", + "n": 159 + }, + { + "a": "attr", + "t": "jinbi", + "n": 105000 + } + ] + }, + "176": { + "lv": 176, + "need": [ + { + "a": "item", + "t": "2", + "n": 159 + }, + { + "a": "attr", + "t": "jinbi", + "n": 105600 + } + ] + }, + "177": { + "lv": 177, + "need": [ + { + "a": "item", + "t": "2", + "n": 159 + }, + { + "a": "attr", + "t": "jinbi", + "n": 106200 + } + ] + }, + "178": { + "lv": 178, + "need": [ + { + "a": "item", + "t": "2", + "n": 162 + }, + { + "a": "attr", + "t": "jinbi", + "n": 106800 + } + ] + }, + "179": { + "lv": 179, + "need": [ + { + "a": "item", + "t": "2", + "n": 162 + }, + { + "a": "attr", + "t": "jinbi", + "n": 107400 + } + ] + }, + "180": { + "lv": 180, + "need": [ + { + "a": "item", + "t": "2", + "n": 162 + }, + { + "a": "attr", + "t": "jinbi", + "n": 108000 + } + ] + }, + "181": { + "lv": 181, + "need": [ + { + "a": "item", + "t": "2", + "n": 165 + }, + { + "a": "attr", + "t": "jinbi", + "n": 108600 + } + ] + }, + "182": { + "lv": 182, + "need": [ + { + "a": "item", + "t": "2", + "n": 165 + }, + { + "a": "attr", + "t": "jinbi", + "n": 109200 + } + ] + }, + "183": { + "lv": 183, + "need": [ + { + "a": "item", + "t": "2", + "n": 165 + }, + { + "a": "attr", + "t": "jinbi", + "n": 109800 + } + ] + }, + "184": { + "lv": 184, + "need": [ + { + "a": "item", + "t": "2", + "n": 168 + }, + { + "a": "attr", + "t": "jinbi", + "n": 110400 + } + ] + }, + "185": { + "lv": 185, + "need": [ + { + "a": "item", + "t": "2", + "n": 168 + }, + { + "a": "attr", + "t": "jinbi", + "n": 111000 + } + ] + }, + "186": { + "lv": 186, + "need": [ + { + "a": "item", + "t": "2", + "n": 168 + }, + { + "a": "attr", + "t": "jinbi", + "n": 111600 + } + ] + }, + "187": { + "lv": 187, + "need": [ + { + "a": "item", + "t": "2", + "n": 168 + }, + { + "a": "attr", + "t": "jinbi", + "n": 112200 + } + ] + }, + "188": { + "lv": 188, + "need": [ + { + "a": "item", + "t": "2", + "n": 171 + }, + { + "a": "attr", + "t": "jinbi", + "n": 112800 + } + ] + }, + "189": { + "lv": 189, + "need": [ + { + "a": "item", + "t": "2", + "n": 171 + }, + { + "a": "attr", + "t": "jinbi", + "n": 113400 + } + ] + }, + "190": { + "lv": 190, + "need": [ + { + "a": "item", + "t": "2", + "n": 171 + }, + { + "a": "attr", + "t": "jinbi", + "n": 114000 + } + ] + }, + "191": { + "lv": 191, + "need": [ + { + "a": "item", + "t": "2", + "n": 174 + }, + { + "a": "attr", + "t": "jinbi", + "n": 114600 + } + ] + }, + "192": { + "lv": 192, + "need": [ + { + "a": "item", + "t": "2", + "n": 174 + }, + { + "a": "attr", + "t": "jinbi", + "n": 115200 + } + ] + }, + "193": { + "lv": 193, + "need": [ + { + "a": "item", + "t": "2", + "n": 174 + }, + { + "a": "attr", + "t": "jinbi", + "n": 115800 + } + ] + }, + "194": { + "lv": 194, + "need": [ + { + "a": "item", + "t": "2", + "n": 177 + }, + { + "a": "attr", + "t": "jinbi", + "n": 116400 + } + ] + }, + "195": { + "lv": 195, + "need": [ + { + "a": "item", + "t": "2", + "n": 177 + }, + { + "a": "attr", + "t": "jinbi", + "n": 117000 + } + ] + }, + "196": { + "lv": 196, + "need": [ + { + "a": "item", + "t": "2", + "n": 177 + }, + { + "a": "attr", + "t": "jinbi", + "n": 117600 + } + ] + }, + "197": { + "lv": 197, + "need": [ + { + "a": "item", + "t": "2", + "n": 177 + }, + { + "a": "attr", + "t": "jinbi", + "n": 118200 + } + ] + }, + "198": { + "lv": 198, + "need": [ + { + "a": "item", + "t": "2", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 118800 + } + ] + }, + "199": { + "lv": 199, + "need": [ + { + "a": "item", + "t": "2", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 119400 + } + ] + }, + "200": { + "lv": 200, + "need": [ + { + "a": "item", + "t": "2", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 120000 + } + ] + } +} \ No newline at end of file diff --git a/src/json/equipstar.json b/src/json/equipstar.json new file mode 100644 index 0000000..42b656d --- /dev/null +++ b/src/json/equipstar.json @@ -0,0 +1,8786 @@ +{ + "1003": { + "0": { + "id": 1003, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 1003, + "star": 1, + "qhlv": 0, + "buff": { + "mindps": 380, + "maxdps": 476 + }, + "need": [ + { + "a": "equip", + "t": "1003", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_1003_1" + }, + "2": { + "id": 1003, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "1003", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_1003_2" + }, + "3": { + "id": 1003, + "star": 3, + "qhlv": 0, + "buff": { + "mindps": 886, + "maxdps": 1110 + }, + "need": [ + { + "a": "equip", + "t": "1003", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_1003_3" + }, + "4": { + "id": 1003, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "1003", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_1003_4" + }, + "5": { + "id": 1003, + "star": 5, + "qhlv": 0, + "buff": { + "mingzhongpro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "1003", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_1003_5" + }, + "6": { + "id": 1003, + "star": 6, + "qhlv": 0, + "buff": { + "mindps": 1772, + "maxdps": 2220 + }, + "need": [ + { + "a": "equip", + "t": "1003", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_1003_6" + }, + "7": { + "id": 1003, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "1003", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_1003_7" + }, + "8": { + "id": 1003, + "star": 8, + "qhlv": 0, + "buff": { + "mindps": 2698, + "maxdps": 3330 + }, + "need": [ + { + "a": "equip", + "t": "1003", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_1003_8" + }, + "9": { + "id": 1003, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "1003", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_1003_9" + }, + "10": { + "id": 1003, + "star": 10, + "qhlv": 0, + "buff": { + "mingzhongpro": 0.06 + }, + "need": [ + { + "a": "equip", + "t": "1003", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_1003_10" + } + }, + "1004": { + "0": { + "id": 1004, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 1004, + "star": 1, + "qhlv": 0, + "buff": { + "mindps": 380, + "maxdps": 476 + }, + "need": [ + { + "a": "equip", + "t": "1004", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_1004_1" + }, + "2": { + "id": 1004, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "1004", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_1004_2" + }, + "3": { + "id": 1004, + "star": 3, + "qhlv": 0, + "buff": { + "mindps": 886, + "maxdps": 1110 + }, + "need": [ + { + "a": "equip", + "t": "1004", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_1004_3" + }, + "4": { + "id": 1004, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "1004", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_1004_4" + }, + "5": { + "id": 1004, + "star": 5, + "qhlv": 0, + "buff": { + "dpspro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "1004", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_1004_5" + }, + "6": { + "id": 1004, + "star": 6, + "qhlv": 0, + "buff": { + "mindps": 1772, + "maxdps": 2220 + }, + "need": [ + { + "a": "equip", + "t": "1004", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_1004_6" + }, + "7": { + "id": 1004, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "1004", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_1004_7" + }, + "8": { + "id": 1004, + "star": 8, + "qhlv": 0, + "buff": { + "mindps": 2698, + "maxdps": 3330 + }, + "need": [ + { + "a": "equip", + "t": "1004", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_1004_8" + }, + "9": { + "id": 1004, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "1004", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_1004_9" + }, + "10": { + "id": 1004, + "star": 10, + "qhlv": 0, + "buff": { + "dpspro": 0.06 + }, + "need": [ + { + "a": "equip", + "t": "1004", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_1004_10" + } + }, + "1005": { + "0": { + "id": 1005, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 1005, + "star": 1, + "qhlv": 0, + "buff": { + "mindps": 380, + "maxdps": 476 + }, + "need": [ + { + "a": "equip", + "t": "1005", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_1005_1" + }, + "2": { + "id": 1005, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "1005", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_1005_2" + }, + "3": { + "id": 1005, + "star": 3, + "qhlv": 0, + "buff": { + "mindps": 886, + "maxdps": 1110 + }, + "need": [ + { + "a": "equip", + "t": "1005", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_1005_3" + }, + "4": { + "id": 1005, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "1005", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_1005_4" + }, + "5": { + "id": 1005, + "star": 5, + "qhlv": 0, + "buff": { + "baoshangpro": 0.12 + }, + "need": [ + { + "a": "equip", + "t": "1005", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_1005_5" + }, + "6": { + "id": 1005, + "star": 6, + "qhlv": 0, + "buff": { + "mindps": 1772, + "maxdps": 2220 + }, + "need": [ + { + "a": "equip", + "t": "1005", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_1005_6" + }, + "7": { + "id": 1005, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "1005", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_1005_7" + }, + "8": { + "id": 1005, + "star": 8, + "qhlv": 0, + "buff": { + "mindps": 2698, + "maxdps": 3330 + }, + "need": [ + { + "a": "equip", + "t": "1005", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_1005_8" + }, + "9": { + "id": 1005, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "1005", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_1005_9" + }, + "10": { + "id": 1005, + "star": 10, + "qhlv": 0, + "buff": { + "baoshangpro": 0.15 + }, + "need": [ + { + "a": "equip", + "t": "1005", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_1005_10" + } + }, + "1006": { + "0": { + "id": 1006, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 1006, + "star": 1, + "qhlv": 0, + "buff": { + "mindps": 350, + "maxdps": 506 + }, + "need": [ + { + "a": "equip", + "t": "1006", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_1006_1" + }, + "2": { + "id": 1006, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "1006", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_1006_2" + }, + "3": { + "id": 1006, + "star": 3, + "qhlv": 0, + "buff": { + "mindps": 850, + "maxdps": 1146 + }, + "need": [ + { + "a": "equip", + "t": "1006", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_1006_3" + }, + "4": { + "id": 1006, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "1006", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_1006_4" + }, + "5": { + "id": 1006, + "star": 5, + "qhlv": 0, + "buff": { + "xixuepro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "1006", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_1006_5" + }, + "6": { + "id": 1006, + "star": 6, + "qhlv": 0, + "buff": { + "mindps": 1700, + "maxdps": 2292 + }, + "need": [ + { + "a": "equip", + "t": "1006", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_1006_6" + }, + "7": { + "id": 1006, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "1006", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_1006_7" + }, + "8": { + "id": 1006, + "star": 8, + "qhlv": 0, + "buff": { + "mindps": 2550, + "maxdps": 3438 + }, + "need": [ + { + "a": "equip", + "t": "1006", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_1006_8" + }, + "9": { + "id": 1006, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "1006", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_1006_9" + }, + "10": { + "id": 1006, + "star": 10, + "qhlv": 0, + "buff": { + "xixuepro": 0.06 + }, + "need": [ + { + "a": "equip", + "t": "1006", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_1006_10" + } + }, + "1007": { + "0": { + "id": 1007, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 1007, + "star": 1, + "qhlv": 0, + "buff": { + "mindps": 350, + "maxdps": 506 + }, + "need": [ + { + "a": "equip", + "t": "1007", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_1007_1" + }, + "2": { + "id": 1007, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "1007", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_1007_2" + }, + "3": { + "id": 1007, + "star": 3, + "qhlv": 0, + "buff": { + "mindps": 850, + "maxdps": 1146 + }, + "need": [ + { + "a": "equip", + "t": "1007", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_1007_3" + }, + "4": { + "id": 1007, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "1007", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_1007_4" + }, + "5": { + "id": 1007, + "star": 5, + "qhlv": 0, + "buff": { + "undpspro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "1007", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_1007_5" + }, + "6": { + "id": 1007, + "star": 6, + "qhlv": 0, + "buff": { + "mindps": 1700, + "maxdps": 2292 + }, + "need": [ + { + "a": "equip", + "t": "1007", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_1007_6" + }, + "7": { + "id": 1007, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "1007", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_1007_7" + }, + "8": { + "id": 1007, + "star": 8, + "qhlv": 0, + "buff": { + "mindps": 2550, + "maxdps": 3438 + }, + "need": [ + { + "a": "equip", + "t": "1007", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_1007_8" + }, + "9": { + "id": 1007, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "1007", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_1007_9" + }, + "10": { + "id": 1007, + "star": 10, + "qhlv": 0, + "buff": { + "undpspro": 0.06 + }, + "need": [ + { + "a": "equip", + "t": "1007", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_1007_10" + } + }, + "1008": { + "0": { + "id": 1008, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 1008, + "star": 1, + "qhlv": 0, + "buff": { + "mindps": 350, + "maxdps": 506 + }, + "need": [ + { + "a": "equip", + "t": "1008", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_1008_1" + }, + "2": { + "id": 1008, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "1008", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_1008_2" + }, + "3": { + "id": 1008, + "star": 3, + "qhlv": 0, + "buff": { + "mindps": 850, + "maxdps": 1146 + }, + "need": [ + { + "a": "equip", + "t": "1008", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_1008_3" + }, + "4": { + "id": 1008, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "1008", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_1008_4" + }, + "5": { + "id": 1008, + "star": 5, + "qhlv": 0, + "buff": { + "shanbipro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "1008", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_1008_5" + }, + "6": { + "id": 1008, + "star": 6, + "qhlv": 0, + "buff": { + "mindps": 1700, + "maxdps": 2292 + }, + "need": [ + { + "a": "equip", + "t": "1008", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_1008_6" + }, + "7": { + "id": 1008, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "1008", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_1008_7" + }, + "8": { + "id": 1008, + "star": 8, + "qhlv": 0, + "buff": { + "mindps": 2550, + "maxdps": 3438 + }, + "need": [ + { + "a": "equip", + "t": "1008", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_1008_8" + }, + "9": { + "id": 1008, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "1008", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_1008_9" + }, + "10": { + "id": 1008, + "star": 10, + "qhlv": 0, + "buff": { + "shanbipro": 0.06 + }, + "need": [ + { + "a": "equip", + "t": "1008", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_1008_10" + } + }, + "1009": { + "0": { + "id": 1009, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 1009, + "star": 1, + "qhlv": 0, + "buff": { + "mindps": 350, + "maxdps": 506 + }, + "need": [ + { + "a": "equip", + "t": "1009", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_1009_1" + }, + "2": { + "id": 1009, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "1009", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_1009_2" + }, + "3": { + "id": 1009, + "star": 3, + "qhlv": 0, + "buff": { + "mindps": 850, + "maxdps": 1146 + }, + "need": [ + { + "a": "equip", + "t": "1009", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_1009_3" + }, + "4": { + "id": 1009, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "1009", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_1009_4" + }, + "5": { + "id": 1009, + "star": 5, + "qhlv": 0, + "buff": { + "dpspro": 0.04, + "undpspro": 0.04 + }, + "need": [ + { + "a": "equip", + "t": "1009", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_1009_5" + }, + "6": { + "id": 1009, + "star": 6, + "qhlv": 0, + "buff": { + "mindps": 1700, + "maxdps": 2292 + }, + "need": [ + { + "a": "equip", + "t": "1009", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_1009_6" + }, + "7": { + "id": 1009, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "1009", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_1009_7" + }, + "8": { + "id": 1009, + "star": 8, + "qhlv": 0, + "buff": { + "mindps": 2550, + "maxdps": 3438 + }, + "need": [ + { + "a": "equip", + "t": "1009", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_1009_8" + }, + "9": { + "id": 1009, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "1009", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_1009_9" + }, + "10": { + "id": 1009, + "star": 10, + "qhlv": 0, + "buff": { + "dpspro": 0.05, + "undpspro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "1009", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_1009_10" + } + }, + "1010": { + "0": { + "id": 1010, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 1010, + "star": 1, + "qhlv": 0, + "buff": { + "mindps": 472, + "maxdps": 683 + }, + "need": [ + { + "a": "equip", + "t": "1010", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_1010_1" + }, + "2": { + "id": 1010, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 240 + }, + "need": [ + { + "a": "equip", + "t": "1010", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_1010_2" + }, + "3": { + "id": 1010, + "star": 3, + "qhlv": 0, + "buff": { + "mindps": 1147, + "maxdps": 1547 + }, + "need": [ + { + "a": "equip", + "t": "1010", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_1010_3" + }, + "4": { + "id": 1010, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 360 + }, + "need": [ + { + "a": "equip", + "t": "1010", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_1010_4" + }, + "5": { + "id": 1010, + "star": 5, + "qhlv": 0, + "buff": { + "dpspro": 0.05, + "undpspro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "1010", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_1010_5" + }, + "6": { + "id": 1010, + "star": 6, + "qhlv": 0, + "buff": { + "mindps": 2294, + "maxdps": 3094 + }, + "need": [ + { + "a": "equip", + "t": "1010", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_1010_6" + }, + "7": { + "id": 1010, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 360 + }, + "need": [ + { + "a": "equip", + "t": "1010", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_1010_7" + }, + "8": { + "id": 1010, + "star": 8, + "qhlv": 0, + "buff": { + "mindps": 3441, + "maxdps": 4641 + }, + "need": [ + { + "a": "equip", + "t": "1010", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_1010_8" + }, + "9": { + "id": 1010, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 480 + }, + "need": [ + { + "a": "equip", + "t": "1010", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_1010_9" + }, + "10": { + "id": 1010, + "star": 10, + "qhlv": 0, + "buff": { + "dpspro": 0.07, + "undpspro": 0.07 + }, + "need": [ + { + "a": "equip", + "t": "1010", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_1010_10" + } + }, + "2003": { + "0": { + "id": 2003, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 2003, + "star": 1, + "qhlv": 0, + "buff": { + "def": 255, + "mindps": 120 + }, + "need": [ + { + "a": "equip", + "t": "2003", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_2003_1" + }, + "2": { + "id": 2003, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "2003", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_2003_2" + }, + "3": { + "id": 2003, + "star": 3, + "qhlv": 0, + "buff": { + "def": 600, + "mindps": 360 + }, + "need": [ + { + "a": "equip", + "t": "2003", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_2003_3" + }, + "4": { + "id": 2003, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "2003", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_2003_4" + }, + "5": { + "id": 2003, + "star": 5, + "qhlv": 0, + "buff": { + "mingzhongpro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "2003", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_2003_5" + }, + "6": { + "id": 2003, + "star": 6, + "qhlv": 0, + "buff": { + "def": 1200, + "mindps": 720 + }, + "need": [ + { + "a": "equip", + "t": "2003", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_2003_6" + }, + "7": { + "id": 2003, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "2003", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_2003_7" + }, + "8": { + "id": 2003, + "star": 8, + "qhlv": 0, + "buff": { + "def": 1800, + "mindps": 1080 + }, + "need": [ + { + "a": "equip", + "t": "2003", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_2003_8" + }, + "9": { + "id": 2003, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "2003", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_2003_9" + }, + "10": { + "id": 2003, + "star": 10, + "qhlv": 0, + "buff": { + "mingzhongpro": 0.06 + }, + "need": [ + { + "a": "equip", + "t": "2003", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_2003_10" + } + }, + "2004": { + "0": { + "id": 2004, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 2004, + "star": 1, + "qhlv": 0, + "buff": { + "def": 255, + "mindps": 120 + }, + "need": [ + { + "a": "equip", + "t": "2004", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_2004_1" + }, + "2": { + "id": 2004, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "2004", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_2004_2" + }, + "3": { + "id": 2004, + "star": 3, + "qhlv": 0, + "buff": { + "def": 600, + "mindps": 360 + }, + "need": [ + { + "a": "equip", + "t": "2004", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_2004_3" + }, + "4": { + "id": 2004, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "2004", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_2004_4" + }, + "5": { + "id": 2004, + "star": 5, + "qhlv": 0, + "buff": { + "dpspro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "2004", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_2004_5" + }, + "6": { + "id": 2004, + "star": 6, + "qhlv": 0, + "buff": { + "def": 1200, + "mindps": 720 + }, + "need": [ + { + "a": "equip", + "t": "2004", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_2004_6" + }, + "7": { + "id": 2004, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "2004", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_2004_7" + }, + "8": { + "id": 2004, + "star": 8, + "qhlv": 0, + "buff": { + "def": 1800, + "mindps": 1080 + }, + "need": [ + { + "a": "equip", + "t": "2004", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_2004_8" + }, + "9": { + "id": 2004, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "2004", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_2004_9" + }, + "10": { + "id": 2004, + "star": 10, + "qhlv": 0, + "buff": { + "dpspro": 0.06 + }, + "need": [ + { + "a": "equip", + "t": "2004", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_2004_10" + } + }, + "2005": { + "0": { + "id": 2005, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 2005, + "star": 1, + "qhlv": 0, + "buff": { + "def": 255, + "mindps": 120 + }, + "need": [ + { + "a": "equip", + "t": "2005", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_2005_1" + }, + "2": { + "id": 2005, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "2005", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_2005_2" + }, + "3": { + "id": 2005, + "star": 3, + "qhlv": 0, + "buff": { + "def": 600, + "mindps": 360 + }, + "need": [ + { + "a": "equip", + "t": "2005", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_2005_3" + }, + "4": { + "id": 2005, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "2005", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_2005_4" + }, + "5": { + "id": 2005, + "star": 5, + "qhlv": 0, + "buff": { + "baoshangpro": 0.12 + }, + "need": [ + { + "a": "equip", + "t": "2005", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_2005_5" + }, + "6": { + "id": 2005, + "star": 6, + "qhlv": 0, + "buff": { + "def": 1200, + "mindps": 720 + }, + "need": [ + { + "a": "equip", + "t": "2005", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_2005_6" + }, + "7": { + "id": 2005, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "2005", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_2005_7" + }, + "8": { + "id": 2005, + "star": 8, + "qhlv": 0, + "buff": { + "def": 1800, + "mindps": 1080 + }, + "need": [ + { + "a": "equip", + "t": "2005", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_2005_8" + }, + "9": { + "id": 2005, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "2005", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_2005_9" + }, + "10": { + "id": 2005, + "star": 10, + "qhlv": 0, + "buff": { + "baoshangpro": 0.15 + }, + "need": [ + { + "a": "equip", + "t": "2005", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_2005_10" + } + }, + "2006": { + "0": { + "id": 2006, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 2006, + "star": 1, + "qhlv": 0, + "buff": { + "def": 275, + "mindps": 120 + }, + "need": [ + { + "a": "equip", + "t": "2006", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_2006_1" + }, + "2": { + "id": 2006, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "2006", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_2006_2" + }, + "3": { + "id": 2006, + "star": 3, + "qhlv": 0, + "buff": { + "def": 620, + "mindps": 360 + }, + "need": [ + { + "a": "equip", + "t": "2006", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_2006_3" + }, + "4": { + "id": 2006, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "2006", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_2006_4" + }, + "5": { + "id": 2006, + "star": 5, + "qhlv": 0, + "buff": { + "xixuepro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "2006", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_2006_5" + }, + "6": { + "id": 2006, + "star": 6, + "qhlv": 0, + "buff": { + "def": 1480, + "mindps": 720 + }, + "need": [ + { + "a": "equip", + "t": "2006", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_2006_6" + }, + "7": { + "id": 2006, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "2006", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_2006_7" + }, + "8": { + "id": 2006, + "star": 8, + "qhlv": 0, + "buff": { + "def": 1860, + "mindps": 1080 + }, + "need": [ + { + "a": "equip", + "t": "2006", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_2006_8" + }, + "9": { + "id": 2006, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "2006", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_2006_9" + }, + "10": { + "id": 2006, + "star": 10, + "qhlv": 0, + "buff": { + "xixuepro": 0.06 + }, + "need": [ + { + "a": "equip", + "t": "2006", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_2006_10" + } + }, + "2007": { + "0": { + "id": 2007, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 2007, + "star": 1, + "qhlv": 0, + "buff": { + "def": 275, + "mindps": 120 + }, + "need": [ + { + "a": "equip", + "t": "2007", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_2007_1" + }, + "2": { + "id": 2007, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "2007", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_2007_2" + }, + "3": { + "id": 2007, + "star": 3, + "qhlv": 0, + "buff": { + "def": 620, + "mindps": 360 + }, + "need": [ + { + "a": "equip", + "t": "2007", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_2007_3" + }, + "4": { + "id": 2007, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "2007", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_2007_4" + }, + "5": { + "id": 2007, + "star": 5, + "qhlv": 0, + "buff": { + "undpspro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "2007", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_2007_5" + }, + "6": { + "id": 2007, + "star": 6, + "qhlv": 0, + "buff": { + "def": 1480, + "mindps": 720 + }, + "need": [ + { + "a": "equip", + "t": "2007", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_2007_6" + }, + "7": { + "id": 2007, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "2007", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_2007_7" + }, + "8": { + "id": 2007, + "star": 8, + "qhlv": 0, + "buff": { + "def": 1860, + "mindps": 1080 + }, + "need": [ + { + "a": "equip", + "t": "2007", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_2007_8" + }, + "9": { + "id": 2007, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "2007", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_2007_9" + }, + "10": { + "id": 2007, + "star": 10, + "qhlv": 0, + "buff": { + "undpspro": 0.06 + }, + "need": [ + { + "a": "equip", + "t": "2007", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_2007_10" + } + }, + "2008": { + "0": { + "id": 2008, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 2008, + "star": 1, + "qhlv": 0, + "buff": { + "def": 275, + "mindps": 120 + }, + "need": [ + { + "a": "equip", + "t": "2008", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_2008_1" + }, + "2": { + "id": 2008, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "2008", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_2008_2" + }, + "3": { + "id": 2008, + "star": 3, + "qhlv": 0, + "buff": { + "def": 620, + "mindps": 360 + }, + "need": [ + { + "a": "equip", + "t": "2008", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_2008_3" + }, + "4": { + "id": 2008, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "2008", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_2008_4" + }, + "5": { + "id": 2008, + "star": 5, + "qhlv": 0, + "buff": { + "shanbipro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "2008", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_2008_5" + }, + "6": { + "id": 2008, + "star": 6, + "qhlv": 0, + "buff": { + "def": 1480, + "mindps": 720 + }, + "need": [ + { + "a": "equip", + "t": "2008", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_2008_6" + }, + "7": { + "id": 2008, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "2008", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_2008_7" + }, + "8": { + "id": 2008, + "star": 8, + "qhlv": 0, + "buff": { + "def": 1860, + "mindps": 1080 + }, + "need": [ + { + "a": "equip", + "t": "2008", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_2008_8" + }, + "9": { + "id": 2008, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "2008", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_2008_9" + }, + "10": { + "id": 2008, + "star": 10, + "qhlv": 0, + "buff": { + "shanbipro": 0.06 + }, + "need": [ + { + "a": "equip", + "t": "2008", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_2008_10" + } + }, + "2009": { + "0": { + "id": 2009, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 2009, + "star": 1, + "qhlv": 0, + "buff": { + "def": 275, + "mindps": 120 + }, + "need": [ + { + "a": "equip", + "t": "2009", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_2009_1" + }, + "2": { + "id": 2009, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "2009", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_2009_2" + }, + "3": { + "id": 2009, + "star": 3, + "qhlv": 0, + "buff": { + "def": 620, + "mindps": 360 + }, + "need": [ + { + "a": "equip", + "t": "2009", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_2009_3" + }, + "4": { + "id": 2009, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "2009", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_2009_4" + }, + "5": { + "id": 2009, + "star": 5, + "qhlv": 0, + "buff": { + "dpspro": 0.04, + "undpspro": 0.04 + }, + "need": [ + { + "a": "equip", + "t": "2009", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_2009_5" + }, + "6": { + "id": 2009, + "star": 6, + "qhlv": 0, + "buff": { + "def": 1480, + "mindps": 720 + }, + "need": [ + { + "a": "equip", + "t": "2009", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_2009_6" + }, + "7": { + "id": 2009, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "2009", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_2009_7" + }, + "8": { + "id": 2009, + "star": 8, + "qhlv": 0, + "buff": { + "def": 1860, + "mindps": 1080 + }, + "need": [ + { + "a": "equip", + "t": "2009", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_2009_8" + }, + "9": { + "id": 2009, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "2009", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_2009_9" + }, + "10": { + "id": 2009, + "star": 10, + "qhlv": 0, + "buff": { + "dpspro": 0.05, + "undpspro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "2009", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_2009_10" + } + }, + "2010": { + "0": { + "id": 2010, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 2010, + "star": 1, + "qhlv": 0, + "buff": { + "def": 371, + "mindps": 162 + }, + "need": [ + { + "a": "equip", + "t": "2010", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_2010_1" + }, + "2": { + "id": 2010, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 240 + }, + "need": [ + { + "a": "equip", + "t": "2010", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_2010_2" + }, + "3": { + "id": 2010, + "star": 3, + "qhlv": 0, + "buff": { + "def": 837, + "mindps": 486 + }, + "need": [ + { + "a": "equip", + "t": "2010", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_2010_3" + }, + "4": { + "id": 2010, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 360 + }, + "need": [ + { + "a": "equip", + "t": "2010", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_2010_4" + }, + "5": { + "id": 2010, + "star": 5, + "qhlv": 0, + "buff": { + "dpspro": 0.05, + "undpspro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "2010", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_2010_5" + }, + "6": { + "id": 2010, + "star": 6, + "qhlv": 0, + "buff": { + "def": 1674, + "mindps": 972 + }, + "need": [ + { + "a": "equip", + "t": "2010", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_2010_6" + }, + "7": { + "id": 2010, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 360 + }, + "need": [ + { + "a": "equip", + "t": "2010", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_2010_7" + }, + "8": { + "id": 2010, + "star": 8, + "qhlv": 0, + "buff": { + "def": 2511, + "mindps": 1458 + }, + "need": [ + { + "a": "equip", + "t": "2010", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_2010_8" + }, + "9": { + "id": 2010, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 480 + }, + "need": [ + { + "a": "equip", + "t": "2010", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_2010_9" + }, + "10": { + "id": 2010, + "star": 10, + "qhlv": 0, + "buff": { + "dpspro": 0.07, + "undpspro": 0.07 + }, + "need": [ + { + "a": "equip", + "t": "2010", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_2010_10" + } + }, + "3003": { + "0": { + "id": 3003, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 3003, + "star": 1, + "qhlv": 0, + "buff": { + "hp": 4470, + "maxdps": 150 + }, + "need": [ + { + "a": "equip", + "t": "3003", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_3003_1" + }, + "2": { + "id": 3003, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "3003", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_3003_2" + }, + "3": { + "id": 3003, + "star": 3, + "qhlv": 0, + "buff": { + "hp": 10440, + "maxdps": 450 + }, + "need": [ + { + "a": "equip", + "t": "3003", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_3003_3" + }, + "4": { + "id": 3003, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "3003", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_3003_4" + }, + "5": { + "id": 3003, + "star": 5, + "qhlv": 0, + "buff": { + "mingzhongpro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "3003", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_3003_5" + }, + "6": { + "id": 3003, + "star": 6, + "qhlv": 0, + "buff": { + "hp": 20880, + "maxdps": 900 + }, + "need": [ + { + "a": "equip", + "t": "3003", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_3003_6" + }, + "7": { + "id": 3003, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "3003", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_3003_7" + }, + "8": { + "id": 3003, + "star": 8, + "qhlv": 0, + "buff": { + "hp": 31320, + "maxdps": 1350 + }, + "need": [ + { + "a": "equip", + "t": "3003", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_3003_8" + }, + "9": { + "id": 3003, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "3003", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_3003_9" + }, + "10": { + "id": 3003, + "star": 10, + "qhlv": 0, + "buff": { + "mingzhongpro": 0.06 + }, + "need": [ + { + "a": "equip", + "t": "3003", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_3003_10" + } + }, + "3004": { + "0": { + "id": 3004, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 3004, + "star": 1, + "qhlv": 0, + "buff": { + "hp": 4470, + "maxdps": 150 + }, + "need": [ + { + "a": "equip", + "t": "3004", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_3004_1" + }, + "2": { + "id": 3004, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "3004", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_3004_2" + }, + "3": { + "id": 3004, + "star": 3, + "qhlv": 0, + "buff": { + "hp": 10440, + "maxdps": 450 + }, + "need": [ + { + "a": "equip", + "t": "3004", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_3004_3" + }, + "4": { + "id": 3004, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "3004", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_3004_4" + }, + "5": { + "id": 3004, + "star": 5, + "qhlv": 0, + "buff": { + "dpspro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "3004", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_3004_5" + }, + "6": { + "id": 3004, + "star": 6, + "qhlv": 0, + "buff": { + "hp": 20880, + "maxdps": 900 + }, + "need": [ + { + "a": "equip", + "t": "3004", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_3004_6" + }, + "7": { + "id": 3004, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "3004", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_3004_7" + }, + "8": { + "id": 3004, + "star": 8, + "qhlv": 0, + "buff": { + "hp": 31320, + "maxdps": 1350 + }, + "need": [ + { + "a": "equip", + "t": "3004", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_3004_8" + }, + "9": { + "id": 3004, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "3004", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_3004_9" + }, + "10": { + "id": 3004, + "star": 10, + "qhlv": 0, + "buff": { + "dpspro": 0.06 + }, + "need": [ + { + "a": "equip", + "t": "3004", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_3004_10" + } + }, + "3005": { + "0": { + "id": 3005, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 3005, + "star": 1, + "qhlv": 0, + "buff": { + "hp": 4470, + "maxdps": 150 + }, + "need": [ + { + "a": "equip", + "t": "3005", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_3005_1" + }, + "2": { + "id": 3005, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "3005", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_3005_2" + }, + "3": { + "id": 3005, + "star": 3, + "qhlv": 0, + "buff": { + "hp": 10440, + "maxdps": 450 + }, + "need": [ + { + "a": "equip", + "t": "3005", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_3005_3" + }, + "4": { + "id": 3005, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "3005", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_3005_4" + }, + "5": { + "id": 3005, + "star": 5, + "qhlv": 0, + "buff": { + "baoshangpro": 0.1 + }, + "need": [ + { + "a": "equip", + "t": "3005", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_3005_5" + }, + "6": { + "id": 3005, + "star": 6, + "qhlv": 0, + "buff": { + "hp": 20880, + "maxdps": 900 + }, + "need": [ + { + "a": "equip", + "t": "3005", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_3005_6" + }, + "7": { + "id": 3005, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "3005", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_3005_7" + }, + "8": { + "id": 3005, + "star": 8, + "qhlv": 0, + "buff": { + "hp": 31320, + "maxdps": 1350 + }, + "need": [ + { + "a": "equip", + "t": "3005", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_3005_8" + }, + "9": { + "id": 3005, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "3005", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_3005_9" + }, + "10": { + "id": 3005, + "star": 10, + "qhlv": 0, + "buff": { + "baoshangpro": 0.15 + }, + "need": [ + { + "a": "equip", + "t": "3005", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_3005_10" + } + }, + "3006": { + "0": { + "id": 3006, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 3006, + "star": 1, + "qhlv": 0, + "buff": { + "hp": 4600, + "maxdps": 150 + }, + "need": [ + { + "a": "equip", + "t": "3006", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_3006_1" + }, + "2": { + "id": 3006, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "3006", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_3006_2" + }, + "3": { + "id": 3006, + "star": 3, + "qhlv": 0, + "buff": { + "hp": 10450, + "maxdps": 450 + }, + "need": [ + { + "a": "equip", + "t": "3006", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_3006_3" + }, + "4": { + "id": 3006, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "3006", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_3006_4" + }, + "5": { + "id": 3006, + "star": 5, + "qhlv": 0, + "buff": { + "xixuepro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "3006", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_3006_5" + }, + "6": { + "id": 3006, + "star": 6, + "qhlv": 0, + "buff": { + "hp": 21200, + "maxdps": 900 + }, + "need": [ + { + "a": "equip", + "t": "3006", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_3006_6" + }, + "7": { + "id": 3006, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "3006", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_3006_7" + }, + "8": { + "id": 3006, + "star": 8, + "qhlv": 0, + "buff": { + "hp": 31800, + "maxdps": 1350 + }, + "need": [ + { + "a": "equip", + "t": "3006", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_3006_8" + }, + "9": { + "id": 3006, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "3006", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_3006_9" + }, + "10": { + "id": 3006, + "star": 10, + "qhlv": 0, + "buff": { + "xixuepro": 0.06 + }, + "need": [ + { + "a": "equip", + "t": "3006", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_3006_10" + } + }, + "3007": { + "0": { + "id": 3007, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 3007, + "star": 1, + "qhlv": 0, + "buff": { + "hp": 4600, + "maxdps": 150 + }, + "need": [ + { + "a": "equip", + "t": "3007", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_3007_1" + }, + "2": { + "id": 3007, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "3007", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_3007_2" + }, + "3": { + "id": 3007, + "star": 3, + "qhlv": 0, + "buff": { + "hp": 10450, + "maxdps": 450 + }, + "need": [ + { + "a": "equip", + "t": "3007", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_3007_3" + }, + "4": { + "id": 3007, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "3007", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_3007_4" + }, + "5": { + "id": 3007, + "star": 5, + "qhlv": 0, + "buff": { + "undpspro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "3007", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_3007_5" + }, + "6": { + "id": 3007, + "star": 6, + "qhlv": 0, + "buff": { + "hp": 21200, + "maxdps": 900 + }, + "need": [ + { + "a": "equip", + "t": "3007", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_3007_6" + }, + "7": { + "id": 3007, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "3007", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_3007_7" + }, + "8": { + "id": 3007, + "star": 8, + "qhlv": 0, + "buff": { + "hp": 31800, + "maxdps": 1350 + }, + "need": [ + { + "a": "equip", + "t": "3007", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_3007_8" + }, + "9": { + "id": 3007, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "3007", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_3007_9" + }, + "10": { + "id": 3007, + "star": 10, + "qhlv": 0, + "buff": { + "undpspro": 0.06 + }, + "need": [ + { + "a": "equip", + "t": "3007", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_3007_10" + } + }, + "3008": { + "0": { + "id": 3008, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 3008, + "star": 1, + "qhlv": 0, + "buff": { + "hp": 4600, + "maxdps": 150 + }, + "need": [ + { + "a": "equip", + "t": "3008", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_3008_1" + }, + "2": { + "id": 3008, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "3008", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_3008_2" + }, + "3": { + "id": 3008, + "star": 3, + "qhlv": 0, + "buff": { + "hp": 10450, + "maxdps": 450 + }, + "need": [ + { + "a": "equip", + "t": "3008", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_3008_3" + }, + "4": { + "id": 3008, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "3008", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_3008_4" + }, + "5": { + "id": 3008, + "star": 5, + "qhlv": 0, + "buff": { + "shanbipro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "3008", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_3008_5" + }, + "6": { + "id": 3008, + "star": 6, + "qhlv": 0, + "buff": { + "hp": 21200, + "maxdps": 900 + }, + "need": [ + { + "a": "equip", + "t": "3008", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_3008_6" + }, + "7": { + "id": 3008, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "3008", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_3008_7" + }, + "8": { + "id": 3008, + "star": 8, + "qhlv": 0, + "buff": { + "hp": 31800, + "maxdps": 1350 + }, + "need": [ + { + "a": "equip", + "t": "3008", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_3008_8" + }, + "9": { + "id": 3008, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "3008", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_3008_9" + }, + "10": { + "id": 3008, + "star": 10, + "qhlv": 0, + "buff": { + "shanbipro": 0.06 + }, + "need": [ + { + "a": "equip", + "t": "3008", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_3008_10" + } + }, + "3009": { + "0": { + "id": 3009, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 3009, + "star": 1, + "qhlv": 0, + "buff": { + "hp": 4600, + "maxdps": 150 + }, + "need": [ + { + "a": "equip", + "t": "3009", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_3009_1" + }, + "2": { + "id": 3009, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "3009", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_3009_2" + }, + "3": { + "id": 3009, + "star": 3, + "qhlv": 0, + "buff": { + "hp": 10450, + "maxdps": 450 + }, + "need": [ + { + "a": "equip", + "t": "3009", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_3009_3" + }, + "4": { + "id": 3009, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "3009", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_3009_4" + }, + "5": { + "id": 3009, + "star": 5, + "qhlv": 0, + "buff": { + "dpspro": 0.04, + "undpspro": 0.04 + }, + "need": [ + { + "a": "equip", + "t": "3009", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_3009_5" + }, + "6": { + "id": 3009, + "star": 6, + "qhlv": 0, + "buff": { + "hp": 21200, + "maxdps": 900 + }, + "need": [ + { + "a": "equip", + "t": "3009", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_3009_6" + }, + "7": { + "id": 3009, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "3009", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_3009_7" + }, + "8": { + "id": 3009, + "star": 8, + "qhlv": 0, + "buff": { + "hp": 31800, + "maxdps": 1350 + }, + "need": [ + { + "a": "equip", + "t": "3009", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_3009_8" + }, + "9": { + "id": 3009, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "3009", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_3009_9" + }, + "10": { + "id": 3009, + "star": 10, + "qhlv": 0, + "buff": { + "dpspro": 0.05, + "undpspro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "3009", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_3009_10" + } + }, + "3010": { + "0": { + "id": 3010, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 3010, + "star": 1, + "qhlv": 0, + "buff": { + "hp": 6210, + "maxdps": 202 + }, + "need": [ + { + "a": "equip", + "t": "3010", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_3010_1" + }, + "2": { + "id": 3010, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 240 + }, + "need": [ + { + "a": "equip", + "t": "3010", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_3010_2" + }, + "3": { + "id": 3010, + "star": 3, + "qhlv": 0, + "buff": { + "hp": 14310, + "maxdps": 607 + }, + "need": [ + { + "a": "equip", + "t": "3010", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_3010_3" + }, + "4": { + "id": 3010, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 360 + }, + "need": [ + { + "a": "equip", + "t": "3010", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_3010_4" + }, + "5": { + "id": 3010, + "star": 5, + "qhlv": 0, + "buff": { + "dpspro": 0.05, + "undpspro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "3010", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_3010_5" + }, + "6": { + "id": 3010, + "star": 6, + "qhlv": 0, + "buff": { + "hp": 28620, + "maxdps": 1214 + }, + "need": [ + { + "a": "equip", + "t": "3010", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_3010_6" + }, + "7": { + "id": 3010, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 360 + }, + "need": [ + { + "a": "equip", + "t": "3010", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_3010_7" + }, + "8": { + "id": 3010, + "star": 8, + "qhlv": 0, + "buff": { + "hp": 42930, + "maxdps": 1821 + }, + "need": [ + { + "a": "equip", + "t": "3010", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_3010_8" + }, + "9": { + "id": 3010, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 480 + }, + "need": [ + { + "a": "equip", + "t": "3010", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_3010_9" + }, + "10": { + "id": 3010, + "star": 10, + "qhlv": 0, + "buff": { + "dpspro": 0.07, + "undpspro": 0.07 + }, + "need": [ + { + "a": "equip", + "t": "3010", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_3010_10" + } + }, + "4003": { + "0": { + "id": 4003, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 4003, + "star": 1, + "qhlv": 0, + "buff": { + "atk": 120, + "hp": 1150 + }, + "need": [ + { + "a": "equip", + "t": "4003", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_4003_1" + }, + "2": { + "id": 4003, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "4003", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_4003_2" + }, + "3": { + "id": 4003, + "star": 3, + "qhlv": 0, + "buff": { + "atk": 240, + "hp": 2610 + }, + "need": [ + { + "a": "equip", + "t": "4003", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_4003_3" + }, + "4": { + "id": 4003, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "4003", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_4003_4" + }, + "5": { + "id": 4003, + "star": 5, + "qhlv": 0, + "buff": { + "mingzhongpro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "4003", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_4003_5" + }, + "6": { + "id": 4003, + "star": 6, + "qhlv": 0, + "buff": { + "atk": 480, + "hp": 5220 + }, + "need": [ + { + "a": "equip", + "t": "4003", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_4003_6" + }, + "7": { + "id": 4003, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "4003", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_4003_7" + }, + "8": { + "id": 4003, + "star": 8, + "qhlv": 0, + "buff": { + "atk": 720, + "hp": 7830 + }, + "need": [ + { + "a": "equip", + "t": "4003", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_4003_8" + }, + "9": { + "id": 4003, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "4003", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_4003_9" + }, + "10": { + "id": 4003, + "star": 10, + "qhlv": 0, + "buff": { + "mingzhongpro": 0.06 + }, + "need": [ + { + "a": "equip", + "t": "4003", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_4003_10" + } + }, + "4004": { + "0": { + "id": 4004, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 4004, + "star": 1, + "qhlv": 0, + "buff": { + "atk": 120, + "hp": 1150 + }, + "need": [ + { + "a": "equip", + "t": "4004", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_4004_1" + }, + "2": { + "id": 4004, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "4004", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_4004_2" + }, + "3": { + "id": 4004, + "star": 3, + "qhlv": 0, + "buff": { + "atk": 240, + "hp": 2610 + }, + "need": [ + { + "a": "equip", + "t": "4004", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_4004_3" + }, + "4": { + "id": 4004, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "4004", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_4004_4" + }, + "5": { + "id": 4004, + "star": 5, + "qhlv": 0, + "buff": { + "dpspro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "4004", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_4004_5" + }, + "6": { + "id": 4004, + "star": 6, + "qhlv": 0, + "buff": { + "atk": 480, + "hp": 5220 + }, + "need": [ + { + "a": "equip", + "t": "4004", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_4004_6" + }, + "7": { + "id": 4004, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "4004", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_4004_7" + }, + "8": { + "id": 4004, + "star": 8, + "qhlv": 0, + "buff": { + "atk": 720, + "hp": 7830 + }, + "need": [ + { + "a": "equip", + "t": "4004", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_4004_8" + }, + "9": { + "id": 4004, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "4004", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_4004_9" + }, + "10": { + "id": 4004, + "star": 10, + "qhlv": 0, + "buff": { + "dpspro": 0.06 + }, + "need": [ + { + "a": "equip", + "t": "4004", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_4004_10" + } + }, + "4005": { + "0": { + "id": 4005, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 4005, + "star": 1, + "qhlv": 0, + "buff": { + "atk": 120, + "hp": 1150 + }, + "need": [ + { + "a": "equip", + "t": "4005", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_4005_1" + }, + "2": { + "id": 4005, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "4005", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_4005_2" + }, + "3": { + "id": 4005, + "star": 3, + "qhlv": 0, + "buff": { + "atk": 240, + "hp": 2610 + }, + "need": [ + { + "a": "equip", + "t": "4005", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_4005_3" + }, + "4": { + "id": 4005, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "4005", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_4005_4" + }, + "5": { + "id": 4005, + "star": 5, + "qhlv": 0, + "buff": { + "baoshangpro": 0.12 + }, + "need": [ + { + "a": "equip", + "t": "4005", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_4005_5" + }, + "6": { + "id": 4005, + "star": 6, + "qhlv": 0, + "buff": { + "atk": 480, + "hp": 5220 + }, + "need": [ + { + "a": "equip", + "t": "4005", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_4005_6" + }, + "7": { + "id": 4005, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "4005", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_4005_7" + }, + "8": { + "id": 4005, + "star": 8, + "qhlv": 0, + "buff": { + "atk": 720, + "hp": 7830 + }, + "need": [ + { + "a": "equip", + "t": "4005", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_4005_8" + }, + "9": { + "id": 4005, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "4005", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_4005_9" + }, + "10": { + "id": 4005, + "star": 10, + "qhlv": 0, + "buff": { + "baoshangpro": 0.15 + }, + "need": [ + { + "a": "equip", + "t": "4005", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_4005_10" + } + }, + "4006": { + "0": { + "id": 4006, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 4006, + "star": 1, + "qhlv": 0, + "buff": { + "atk": 150, + "hp": 1150 + }, + "need": [ + { + "a": "equip", + "t": "4006", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_4006_1" + }, + "2": { + "id": 4006, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "4006", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_4006_2" + }, + "3": { + "id": 4006, + "star": 3, + "qhlv": 0, + "buff": { + "atk": 270, + "hp": 2610 + }, + "need": [ + { + "a": "equip", + "t": "4006", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_4006_3" + }, + "4": { + "id": 4006, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "4006", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_4006_4" + }, + "5": { + "id": 4006, + "star": 5, + "qhlv": 0, + "buff": { + "xixuepro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "4006", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_4006_5" + }, + "6": { + "id": 4006, + "star": 6, + "qhlv": 0, + "buff": { + "atk": 540, + "hp": 5220 + }, + "need": [ + { + "a": "equip", + "t": "4006", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_4006_6" + }, + "7": { + "id": 4006, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "4006", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_4006_7" + }, + "8": { + "id": 4006, + "star": 8, + "qhlv": 0, + "buff": { + "atk": 810, + "hp": 7830 + }, + "need": [ + { + "a": "equip", + "t": "4006", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_4006_8" + }, + "9": { + "id": 4006, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "4006", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_4006_9" + }, + "10": { + "id": 4006, + "star": 10, + "qhlv": 0, + "buff": { + "xixuepro": 0.06 + }, + "need": [ + { + "a": "equip", + "t": "4006", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_4006_10" + } + }, + "4007": { + "0": { + "id": 4007, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 4007, + "star": 1, + "qhlv": 0, + "buff": { + "atk": 150, + "hp": 1150 + }, + "need": [ + { + "a": "equip", + "t": "4007", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_4007_1" + }, + "2": { + "id": 4007, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "4007", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_4007_2" + }, + "3": { + "id": 4007, + "star": 3, + "qhlv": 0, + "buff": { + "atk": 270, + "hp": 2610 + }, + "need": [ + { + "a": "equip", + "t": "4007", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_4007_3" + }, + "4": { + "id": 4007, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "4007", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_4007_4" + }, + "5": { + "id": 4007, + "star": 5, + "qhlv": 0, + "buff": { + "undpspro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "4007", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_4007_5" + }, + "6": { + "id": 4007, + "star": 6, + "qhlv": 0, + "buff": { + "atk": 540, + "hp": 5220 + }, + "need": [ + { + "a": "equip", + "t": "4007", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_4007_6" + }, + "7": { + "id": 4007, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "4007", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_4007_7" + }, + "8": { + "id": 4007, + "star": 8, + "qhlv": 0, + "buff": { + "atk": 810, + "hp": 7830 + }, + "need": [ + { + "a": "equip", + "t": "4007", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_4007_8" + }, + "9": { + "id": 4007, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "4007", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_4007_9" + }, + "10": { + "id": 4007, + "star": 10, + "qhlv": 0, + "buff": { + "undpspro": 0.06 + }, + "need": [ + { + "a": "equip", + "t": "4007", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_4007_10" + } + }, + "4008": { + "0": { + "id": 4008, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 4008, + "star": 1, + "qhlv": 0, + "buff": { + "atk": 150, + "hp": 1150 + }, + "need": [ + { + "a": "equip", + "t": "4008", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_4008_1" + }, + "2": { + "id": 4008, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "4008", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_4008_2" + }, + "3": { + "id": 4008, + "star": 3, + "qhlv": 0, + "buff": { + "atk": 270, + "hp": 2610 + }, + "need": [ + { + "a": "equip", + "t": "4008", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_4008_3" + }, + "4": { + "id": 4008, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "4008", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_4008_4" + }, + "5": { + "id": 4008, + "star": 5, + "qhlv": 0, + "buff": { + "shanbipro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "4008", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_4008_5" + }, + "6": { + "id": 4008, + "star": 6, + "qhlv": 0, + "buff": { + "atk": 540, + "hp": 5220 + }, + "need": [ + { + "a": "equip", + "t": "4008", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_4008_6" + }, + "7": { + "id": 4008, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "4008", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_4008_7" + }, + "8": { + "id": 4008, + "star": 8, + "qhlv": 0, + "buff": { + "atk": 810, + "hp": 7830 + }, + "need": [ + { + "a": "equip", + "t": "4008", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_4008_8" + }, + "9": { + "id": 4008, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "4008", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_4008_9" + }, + "10": { + "id": 4008, + "star": 10, + "qhlv": 0, + "buff": { + "shanbipro": 0.06 + }, + "need": [ + { + "a": "equip", + "t": "4008", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_4008_10" + } + }, + "4009": { + "0": { + "id": 4009, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 4009, + "star": 1, + "qhlv": 0, + "buff": { + "atk": 150, + "hp": 1150 + }, + "need": [ + { + "a": "equip", + "t": "4009", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_4009_1" + }, + "2": { + "id": 4009, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 200 + }, + "need": [ + { + "a": "equip", + "t": "4009", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_4009_2" + }, + "3": { + "id": 4009, + "star": 3, + "qhlv": 0, + "buff": { + "atk": 270, + "hp": 2610 + }, + "need": [ + { + "a": "equip", + "t": "4009", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_4009_3" + }, + "4": { + "id": 4009, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 300 + }, + "need": [ + { + "a": "equip", + "t": "4009", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_4009_4" + }, + "5": { + "id": 4009, + "star": 5, + "qhlv": 0, + "buff": { + "dpspro": 0.04, + "undpspro": 0.04 + }, + "need": [ + { + "a": "equip", + "t": "4009", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_4009_5" + }, + "6": { + "id": 4009, + "star": 6, + "qhlv": 0, + "buff": { + "atk": 540, + "hp": 5220 + }, + "need": [ + { + "a": "equip", + "t": "4009", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_4009_6" + }, + "7": { + "id": 4009, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 300 + }, + "need": [ + { + "a": "equip", + "t": "4009", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_4009_7" + }, + "8": { + "id": 4009, + "star": 8, + "qhlv": 0, + "buff": { + "atk": 810, + "hp": 7830 + }, + "need": [ + { + "a": "equip", + "t": "4009", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_4009_8" + }, + "9": { + "id": 4009, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 400 + }, + "need": [ + { + "a": "equip", + "t": "4009", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_4009_9" + }, + "10": { + "id": 4009, + "star": 10, + "qhlv": 0, + "buff": { + "dpspro": 0.05, + "undpspro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "4009", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_4009_10" + } + }, + "4010": { + "0": { + "id": 4010, + "star": 0, + "qhlv": 0, + "buff": {}, + "need": [], + "describe": "" + }, + "1": { + "id": 4010, + "star": 1, + "qhlv": 0, + "buff": { + "atk": 202, + "hp": 1552 + }, + "need": [ + { + "a": "equip", + "t": "4010", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "18", + "n": 100 + } + ], + "describe": "intr_equipstar_describe_4010_1" + }, + "2": { + "id": 4010, + "star": 2, + "qhlv": 0, + "buff": { + "baoji": 240 + }, + "need": [ + { + "a": "equip", + "t": "4010", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "18", + "n": 400 + } + ], + "describe": "intr_equipstar_describe_4010_2" + }, + "3": { + "id": 4010, + "star": 3, + "qhlv": 0, + "buff": { + "atk": 364, + "hp": 3523 + }, + "need": [ + { + "a": "equip", + "t": "4010", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + }, + { + "a": "item", + "t": "18", + "n": 900 + } + ], + "describe": "intr_equipstar_describe_4010_3" + }, + "4": { + "id": 4010, + "star": 4, + "qhlv": 0, + "buff": { + "shiqi": 360 + }, + "need": [ + { + "a": "equip", + "t": "4010", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + }, + { + "a": "item", + "t": "18", + "n": 1600 + } + ], + "describe": "intr_equipstar_describe_4010_4" + }, + "5": { + "id": 4010, + "star": 5, + "qhlv": 0, + "buff": { + "dpspro": 0.05, + "undpspro": 0.05 + }, + "need": [ + { + "a": "equip", + "t": "4010", + "n": 9 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + }, + { + "a": "item", + "t": "18", + "n": 2500 + } + ], + "describe": "intr_equipstar_describe_4010_5" + }, + "6": { + "id": 4010, + "star": 6, + "qhlv": 0, + "buff": { + "atk": 728, + "hp": 7046 + }, + "need": [ + { + "a": "equip", + "t": "4010", + "n": 12 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + }, + { + "a": "item", + "t": "18", + "n": 3600 + } + ], + "describe": "intr_equipstar_describe_4010_6" + }, + "7": { + "id": 4010, + "star": 7, + "qhlv": 0, + "buff": { + "baoji": 360 + }, + "need": [ + { + "a": "equip", + "t": "4010", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16500000 + }, + { + "a": "item", + "t": "18", + "n": 4900 + } + ], + "describe": "intr_equipstar_describe_4010_7" + }, + "8": { + "id": 4010, + "star": 8, + "qhlv": 0, + "buff": { + "atk": 1092, + "hp": 10569 + }, + "need": [ + { + "a": "equip", + "t": "4010", + "n": 18 + }, + { + "a": "attr", + "t": "jinbi", + "n": 21000000 + }, + { + "a": "item", + "t": "18", + "n": 6400 + } + ], + "describe": "intr_equipstar_describe_4010_8" + }, + "9": { + "id": 4010, + "star": 9, + "qhlv": 0, + "buff": { + "shiqi": 480 + }, + "need": [ + { + "a": "equip", + "t": "4010", + "n": 21 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + }, + { + "a": "item", + "t": "18", + "n": 8100 + } + ], + "describe": "intr_equipstar_describe_4010_9" + }, + "10": { + "id": 4010, + "star": 10, + "qhlv": 0, + "buff": { + "dpspro": 0.07, + "undpspro": 0.07 + }, + "need": [ + { + "a": "equip", + "t": "4010", + "n": 25 + }, + { + "a": "attr", + "t": "jinbi", + "n": 31500000 + }, + { + "a": "item", + "t": "18", + "n": 10000 + } + ], + "describe": "intr_equipstar_describe_4010_10" + } + } +} \ No newline at end of file diff --git a/src/json/eventOpen.json5 b/src/json/eventOpen.json5 new file mode 100644 index 0000000..602b1c7 --- /dev/null +++ b/src/json/eventOpen.json5 @@ -0,0 +1,7 @@ +{ + dengjijijin: { day: 1 }, + guanqiajijin: { day: 1 }, + dayjijin: { day: 1 }, + qjzzd: { day: 1 }, + tianshujijin: { day: 1 } +} \ No newline at end of file diff --git a/src/json/exchangeRate.json b/src/json/exchangeRate.json new file mode 100644 index 0000000..b0d7d23 --- /dev/null +++ b/src/json/exchangeRate.json @@ -0,0 +1,93 @@ +{ + "1": { + "CNY": 1, + "JPY": 20, + "USD": 0.19, + "TWD": 5, + "KRW": 220 + }, + "3": { + "CNY": 3, + "JPY": 60, + "USD": 0.59, + "TWD": 15, + "KRW": 640 + }, + "6": { + "CNY": 6, + "JPY": 120, + "USD": 1.09, + "TWD": 30, + "KRW": 1280 + }, + "12": { + "CNY": 12, + "JPY": 240, + "USD": 2.19, + "TWD": 60, + "KRW": 2560 + }, + "18": { + "CNY": 18, + "JPY": 360, + "USD": 3.29, + "TWD": 90, + "KRW": 3840 + }, + "30": { + "CNY": 30, + "JPY": 600, + "USD": 5.49, + "TWD": 150, + "KRW": 6390 + }, + "60": { + "CNY": 60, + "JPY": 1200, + "USD": 10.99, + "TWD": 300, + "KRW": 12780 + }, + "68": { + "CNY": 68, + "JPY": 1360, + "USD": 12.49, + "TWD": 340, + "KRW": 14480 + }, + "98": { + "CNY": 98, + "JPY": 1960, + "USD": 17.99, + "TWD": 480, + "KRW": 20870 + }, + "128": { + "CNY": 128, + "JPY": 2560, + "USD": 23.49, + "TWD": 630, + "KRW": 27250 + }, + "198": { + "CNY": 198, + "JPY": 3960, + "USD": 35.99, + "TWD": 970, + "KRW": 42150 + }, + "328": { + "CNY": 328, + "JPY": 6560, + "USD": 59.99, + "TWD": 1610, + "KRW": 69820 + }, + "648": { + "CNY": 648, + "JPY": 12960, + "USD": 116.99, + "TWD": 3170, + "KRW": 137940 + } +} \ No newline at end of file diff --git a/src/json/fightPlan.json b/src/json/fightPlan.json new file mode 100644 index 0000000..1a69a52 --- /dev/null +++ b/src/json/fightPlan.json @@ -0,0 +1,1661 @@ +{ + "1": { + "0": { + "id": 1, + "type": 1, + "lv": 0, + "need": [], + "buff": [] + }, + "1": { + "id": 2, + "type": 1, + "lv": 1, + "need": [ + { + "a": "item", + "t": "30", + "n": "10" + }, + { + "a": "attr", + "t": "jinbi", + "n": "70000" + } + ], + "buff": [ + { + "atkpro": 0.015 + }, + { + "dpspro": 0.01 + }, + { + "atkpro": 0.015 + }, + { + "dpspro": 0.01 + }, + { + "atkpro": 0.01 + }, + { + "xixue": 0.01 + } + ] + }, + "2": { + "id": 3, + "type": 1, + "lv": 2, + "need": [ + { + "a": "item", + "t": "30", + "n": "20" + }, + { + "a": "attr", + "t": "jinbi", + "n": "130000" + } + ], + "buff": [ + { + "atkpro": 0.03 + }, + { + "dpspro": 0.02 + }, + { + "atkpro": 0.03 + }, + { + "dpspro": 0.02 + }, + { + "atkpro": 0.02 + }, + { + "xixue": 0.02 + } + ] + }, + "3": { + "id": 4, + "type": 1, + "lv": 3, + "need": [ + { + "a": "item", + "t": "30", + "n": "30" + }, + { + "a": "attr", + "t": "jinbi", + "n": "230000" + } + ], + "buff": [ + { + "atkpro": 0.045 + }, + { + "dpspro": 0.03 + }, + { + "atkpro": 0.045 + }, + { + "dpspro": 0.03 + }, + { + "atkpro": 0.03 + }, + { + "xixue": 0.03 + } + ] + }, + "4": { + "id": 5, + "type": 1, + "lv": 4, + "need": [ + { + "a": "item", + "t": "30", + "n": "40" + }, + { + "a": "attr", + "t": "jinbi", + "n": "370000" + } + ], + "buff": [ + { + "atkpro": 0.06 + }, + { + "dpspro": 0.04 + }, + { + "atkpro": 0.06 + }, + { + "dpspro": 0.04 + }, + { + "atkpro": 0.04 + }, + { + "xixue": 0.04 + } + ] + }, + "5": { + "id": 6, + "type": 1, + "lv": 5, + "need": [ + { + "a": "item", + "t": "30", + "n": "50" + }, + { + "a": "attr", + "t": "jinbi", + "n": "550000" + } + ], + "buff": [ + { + "atkpro": 0.075 + }, + { + "dpspro": 0.05 + }, + { + "atkpro": 0.075 + }, + { + "dpspro": 0.05 + }, + { + "atkpro": 0.05 + }, + { + "xixue": 0.05 + } + ] + }, + "6": { + "id": 7, + "type": 1, + "lv": 6, + "need": [ + { + "a": "item", + "t": "30", + "n": "60" + }, + { + "a": "attr", + "t": "jinbi", + "n": "770000" + } + ], + "buff": [ + { + "atkpro": 0.09 + }, + { + "dpspro": 0.06 + }, + { + "atkpro": 0.09 + }, + { + "dpspro": 0.06 + }, + { + "atkpro": 0.06 + }, + { + "xixue": 0.06 + } + ] + }, + "7": { + "id": 8, + "type": 1, + "lv": 7, + "need": [ + { + "a": "item", + "t": "30", + "n": "70" + }, + { + "a": "attr", + "t": "jinbi", + "n": "1030000" + } + ], + "buff": [ + { + "atkpro": 0.105 + }, + { + "dpspro": 0.07 + }, + { + "atkpro": 0.105 + }, + { + "dpspro": 0.07 + }, + { + "atkpro": 0.07 + }, + { + "xixue": 0.07 + } + ] + }, + "8": { + "id": 9, + "type": 1, + "lv": 8, + "need": [ + { + "a": "item", + "t": "30", + "n": "80" + }, + { + "a": "attr", + "t": "jinbi", + "n": "1330000" + } + ], + "buff": [ + { + "atkpro": 0.12 + }, + { + "dpspro": 0.08 + }, + { + "atkpro": 0.12 + }, + { + "dpspro": 0.08 + }, + { + "atkpro": 0.08 + }, + { + "xixue": 0.08 + } + ] + }, + "9": { + "id": 10, + "type": 1, + "lv": 9, + "need": [ + { + "a": "item", + "t": "30", + "n": "90" + }, + { + "a": "attr", + "t": "jinbi", + "n": "1670000" + } + ], + "buff": [ + { + "atkpro": 0.135 + }, + { + "dpspro": 0.09 + }, + { + "atkpro": 0.135 + }, + { + "dpspro": 0.09 + }, + { + "atkpro": 0.09 + }, + { + "xixue": 0.09 + } + ] + }, + "10": { + "id": 11, + "type": 1, + "lv": 10, + "need": [ + { + "a": "item", + "t": "30", + "n": "100" + }, + { + "a": "attr", + "t": "jinbi", + "n": "2050000" + } + ], + "buff": [ + { + "atkpro": 0.15 + }, + { + "dpspro": 0.1 + }, + { + "atkpro": 0.15 + }, + { + "dpspro": 0.1 + }, + { + "atkpro": 0.1 + }, + { + "xixue": 0.1 + } + ] + }, + "11": { + "id": 12, + "type": 1, + "lv": 11, + "need": [ + { + "a": "item", + "t": "30", + "n": "110" + }, + { + "a": "attr", + "t": "jinbi", + "n": "2470000" + } + ], + "buff": [ + { + "atkpro": 0.165 + }, + { + "dpspro": 0.11 + }, + { + "atkpro": 0.165 + }, + { + "dpspro": 0.11 + }, + { + "atkpro": 0.11 + }, + { + "xixue": 0.11 + } + ] + }, + "12": { + "id": 13, + "type": 1, + "lv": 12, + "need": [ + { + "a": "item", + "t": "30", + "n": "120" + }, + { + "a": "attr", + "t": "jinbi", + "n": "2930000" + } + ], + "buff": [ + { + "atkpro": 0.18 + }, + { + "dpspro": 0.12 + }, + { + "atkpro": 0.18 + }, + { + "dpspro": 0.12 + }, + { + "atkpro": 0.12 + }, + { + "xixue": 0.12 + } + ] + }, + "13": { + "id": 14, + "type": 1, + "lv": 13, + "need": [ + { + "a": "item", + "t": "30", + "n": "130" + }, + { + "a": "attr", + "t": "jinbi", + "n": "3430000" + } + ], + "buff": [ + { + "atkpro": 0.195 + }, + { + "dpspro": 0.13 + }, + { + "atkpro": 0.195 + }, + { + "dpspro": 0.13 + }, + { + "atkpro": 0.13 + }, + { + "xixue": 0.13 + } + ] + }, + "14": { + "id": 15, + "type": 1, + "lv": 14, + "need": [ + { + "a": "item", + "t": "30", + "n": "140" + }, + { + "a": "attr", + "t": "jinbi", + "n": "3970000" + } + ], + "buff": [ + { + "atkpro": 0.21 + }, + { + "dpspro": 0.14 + }, + { + "atkpro": 0.21 + }, + { + "dpspro": 0.14 + }, + { + "atkpro": 0.14 + }, + { + "xixue": 0.14 + } + ] + }, + "15": { + "id": 16, + "type": 1, + "lv": 15, + "need": [], + "buff": [ + { + "atkpro": 0.225 + }, + { + "dpspro": 0.15 + }, + { + "atkpro": 0.225 + }, + { + "dpspro": 0.15 + }, + { + "atkpro": 0.15 + }, + { + "xixue": 0.15 + } + ] + } + }, + "2": { + "0": { + "id": 17, + "type": 2, + "lv": 0, + "need": [], + "buff": [] + }, + "1": { + "id": 18, + "type": 2, + "lv": 1, + "need": [ + { + "a": "item", + "t": "31", + "n": "10" + }, + { + "a": "attr", + "t": "jinbi", + "n": "70000" + } + ], + "buff": [ + { + "defpro": 0.025 + }, + { + "shanbipro": 0.005 + }, + { + "hppro": 0.01 + }, + { + "fanshangpro": 0.01 + }, + { + "defpro": 0.005 + }, + { + "dpspro": 0.01 + } + ] + }, + "2": { + "id": 19, + "type": 2, + "lv": 2, + "need": [ + { + "a": "item", + "t": "31", + "n": "20" + }, + { + "a": "attr", + "t": "jinbi", + "n": "130000" + } + ], + "buff": [ + { + "defpro": 0.05 + }, + { + "shanbipro": 0.01 + }, + { + "hppro": 0.02 + }, + { + "fanshangpro": 0.02 + }, + { + "defpro": 0.01 + }, + { + "dpspro": 0.02 + } + ] + }, + "3": { + "id": 20, + "type": 2, + "lv": 3, + "need": [ + { + "a": "item", + "t": "31", + "n": "30" + }, + { + "a": "attr", + "t": "jinbi", + "n": "230000" + } + ], + "buff": [ + { + "defpro": 0.075 + }, + { + "shanbipro": 0.015 + }, + { + "hppro": 0.03 + }, + { + "fanshangpro": 0.03 + }, + { + "defpro": 0.015 + }, + { + "dpspro": 0.03 + } + ] + }, + "4": { + "id": 21, + "type": 2, + "lv": 4, + "need": [ + { + "a": "item", + "t": "31", + "n": "40" + }, + { + "a": "attr", + "t": "jinbi", + "n": "370000" + } + ], + "buff": [ + { + "defpro": 0.1 + }, + { + "shanbipro": 0.02 + }, + { + "hppro": 0.04 + }, + { + "fanshangpro": 0.04 + }, + { + "defpro": 0.02 + }, + { + "dpspro": 0.04 + } + ] + }, + "5": { + "id": 22, + "type": 2, + "lv": 5, + "need": [ + { + "a": "item", + "t": "31", + "n": "50" + }, + { + "a": "attr", + "t": "jinbi", + "n": "550000" + } + ], + "buff": [ + { + "defpro": 0.125 + }, + { + "shanbipro": 0.025 + }, + { + "hppro": 0.05 + }, + { + "fanshangpro": 0.05 + }, + { + "defpro": 0.025 + }, + { + "dpspro": 0.05 + } + ] + }, + "6": { + "id": 23, + "type": 2, + "lv": 6, + "need": [ + { + "a": "item", + "t": "31", + "n": "60" + }, + { + "a": "attr", + "t": "jinbi", + "n": "770000" + } + ], + "buff": [ + { + "defpro": 0.15 + }, + { + "shanbipro": 0.03 + }, + { + "hppro": 0.06 + }, + { + "fanshangpro": 0.06 + }, + { + "defpro": 0.03 + }, + { + "dpspro": 0.06 + } + ] + }, + "7": { + "id": 24, + "type": 2, + "lv": 7, + "need": [ + { + "a": "item", + "t": "31", + "n": "70" + }, + { + "a": "attr", + "t": "jinbi", + "n": "1030000" + } + ], + "buff": [ + { + "defpro": 0.175 + }, + { + "shanbipro": 0.035 + }, + { + "hppro": 0.07 + }, + { + "fanshangpro": 0.07 + }, + { + "defpro": 0.035 + }, + { + "dpspro": 0.07 + } + ] + }, + "8": { + "id": 25, + "type": 2, + "lv": 8, + "need": [ + { + "a": "item", + "t": "31", + "n": "80" + }, + { + "a": "attr", + "t": "jinbi", + "n": "1330000" + } + ], + "buff": [ + { + "defpro": 0.2 + }, + { + "shanbipro": 0.04 + }, + { + "hppro": 0.08 + }, + { + "fanshangpro": 0.08 + }, + { + "defpro": 0.04 + }, + { + "dpspro": 0.08 + } + ] + }, + "9": { + "id": 26, + "type": 2, + "lv": 9, + "need": [ + { + "a": "item", + "t": "31", + "n": "90" + }, + { + "a": "attr", + "t": "jinbi", + "n": "1670000" + } + ], + "buff": [ + { + "defpro": 0.225 + }, + { + "shanbipro": 0.045 + }, + { + "hppro": 0.09 + }, + { + "fanshangpro": 0.09 + }, + { + "defpro": 0.045 + }, + { + "dpspro": 0.09 + } + ] + }, + "10": { + "id": 27, + "type": 2, + "lv": 10, + "need": [ + { + "a": "item", + "t": "31", + "n": "100" + }, + { + "a": "attr", + "t": "jinbi", + "n": "2050000" + } + ], + "buff": [ + { + "defpro": 0.25 + }, + { + "shanbipro": 0.05 + }, + { + "hppro": 0.1 + }, + { + "fanshangpro": 0.1 + }, + { + "defpro": 0.05 + }, + { + "dpspro": 0.1 + } + ] + }, + "11": { + "id": 28, + "type": 2, + "lv": 11, + "need": [ + { + "a": "item", + "t": "31", + "n": "110" + }, + { + "a": "attr", + "t": "jinbi", + "n": "2470000" + } + ], + "buff": [ + { + "defpro": 0.275 + }, + { + "shanbipro": 0.055 + }, + { + "hppro": 0.11 + }, + { + "fanshangpro": 0.11 + }, + { + "defpro": 0.055 + }, + { + "dpspro": 0.11 + } + ] + }, + "12": { + "id": 29, + "type": 2, + "lv": 12, + "need": [ + { + "a": "item", + "t": "31", + "n": "120" + }, + { + "a": "attr", + "t": "jinbi", + "n": "2930000" + } + ], + "buff": [ + { + "defpro": 0.3 + }, + { + "shanbipro": 0.06 + }, + { + "hppro": 0.12 + }, + { + "fanshangpro": 0.12 + }, + { + "defpro": 0.06 + }, + { + "dpspro": 0.12 + } + ] + }, + "13": { + "id": 30, + "type": 2, + "lv": 13, + "need": [ + { + "a": "item", + "t": "31", + "n": "130" + }, + { + "a": "attr", + "t": "jinbi", + "n": "3430000" + } + ], + "buff": [ + { + "defpro": 0.325 + }, + { + "shanbipro": 0.065 + }, + { + "hppro": 0.13 + }, + { + "fanshangpro": 0.13 + }, + { + "defpro": 0.065 + }, + { + "dpspro": 0.13 + } + ] + }, + "14": { + "id": 31, + "type": 2, + "lv": 14, + "need": [ + { + "a": "item", + "t": "31", + "n": "140" + }, + { + "a": "attr", + "t": "jinbi", + "n": "3970000" + } + ], + "buff": [ + { + "defpro": 0.35 + }, + { + "shanbipro": 0.07 + }, + { + "hppro": 0.14 + }, + { + "fanshangpro": 0.14 + }, + { + "defpro": 0.07 + }, + { + "dpspro": 0.14 + } + ] + }, + "15": { + "id": 32, + "type": 2, + "lv": 15, + "need": [], + "buff": [ + { + "defpro": 0.375 + }, + { + "shanbipro": 0.075 + }, + { + "hppro": 0.15 + }, + { + "fanshangpro": 0.15 + }, + { + "defpro": 0.075 + }, + { + "dpspro": 0.15 + } + ] + } + }, + "3": { + "0": { + "id": 33, + "type": 3, + "lv": 0, + "need": [], + "buff": [] + }, + "1": { + "id": 34, + "type": 3, + "lv": 1, + "need": [ + { + "a": "item", + "t": "32", + "n": "10" + }, + { + "a": "attr", + "t": "jinbi", + "n": "70000" + } + ], + "buff": [ + { + "atkpro": 0.015 + }, + { + "dpspro": 0.01 + }, + { + "defpro": 0.025 + }, + { + "hppro": 0.01 + }, + { + "shanbipro": 0.005 + }, + { + "speedpro": 0.01 + } + ] + }, + "2": { + "id": 35, + "type": 3, + "lv": 2, + "need": [ + { + "a": "item", + "t": "32", + "n": "20" + }, + { + "a": "attr", + "t": "jinbi", + "n": "130000" + } + ], + "buff": [ + { + "atkpro": 0.03 + }, + { + "dpspro": 0.02 + }, + { + "defpro": 0.05 + }, + { + "hppro": 0.02 + }, + { + "shanbipro": 0.01 + }, + { + "speedpro": 0.02 + } + ] + }, + "3": { + "id": 36, + "type": 3, + "lv": 3, + "need": [ + { + "a": "item", + "t": "32", + "n": "30" + }, + { + "a": "attr", + "t": "jinbi", + "n": "230000" + } + ], + "buff": [ + { + "atkpro": 0.045 + }, + { + "dpspro": 0.03 + }, + { + "defpro": 0.075 + }, + { + "hppro": 0.03 + }, + { + "shanbipro": 0.015 + }, + { + "speedpro": 0.03 + } + ] + }, + "4": { + "id": 37, + "type": 3, + "lv": 4, + "need": [ + { + "a": "item", + "t": "32", + "n": "40" + }, + { + "a": "attr", + "t": "jinbi", + "n": "370000" + } + ], + "buff": [ + { + "atkpro": 0.06 + }, + { + "dpspro": 0.04 + }, + { + "defpro": 0.1 + }, + { + "hppro": 0.04 + }, + { + "shanbipro": 0.02 + }, + { + "speedpro": 0.04 + } + ] + }, + "5": { + "id": 38, + "type": 3, + "lv": 5, + "need": [ + { + "a": "item", + "t": "32", + "n": "50" + }, + { + "a": "attr", + "t": "jinbi", + "n": "550000" + } + ], + "buff": [ + { + "atkpro": 0.075 + }, + { + "dpspro": 0.05 + }, + { + "defpro": 0.125 + }, + { + "hppro": 0.05 + }, + { + "shanbipro": 0.025 + }, + { + "speedpro": 0.05 + } + ] + }, + "6": { + "id": 39, + "type": 3, + "lv": 6, + "need": [ + { + "a": "item", + "t": "32", + "n": "60" + }, + { + "a": "attr", + "t": "jinbi", + "n": "770000" + } + ], + "buff": [ + { + "atkpro": 0.09 + }, + { + "dpspro": 0.06 + }, + { + "defpro": 0.15 + }, + { + "hppro": 0.06 + }, + { + "shanbipro": 0.03 + }, + { + "speedpro": 0.06 + } + ] + }, + "7": { + "id": 40, + "type": 3, + "lv": 7, + "need": [ + { + "a": "item", + "t": "32", + "n": "70" + }, + { + "a": "attr", + "t": "jinbi", + "n": "1030000" + } + ], + "buff": [ + { + "atkpro": 0.105 + }, + { + "dpspro": 0.07 + }, + { + "defpro": 0.175 + }, + { + "hppro": 0.07 + }, + { + "shanbipro": 0.035 + }, + { + "speedpro": 0.07 + } + ] + }, + "8": { + "id": 41, + "type": 3, + "lv": 8, + "need": [ + { + "a": "item", + "t": "32", + "n": "80" + }, + { + "a": "attr", + "t": "jinbi", + "n": "1330000" + } + ], + "buff": [ + { + "atkpro": 0.12 + }, + { + "dpspro": 0.08 + }, + { + "defpro": 0.2 + }, + { + "hppro": 0.08 + }, + { + "shanbipro": 0.04 + }, + { + "speedpro": 0.08 + } + ] + }, + "9": { + "id": 42, + "type": 3, + "lv": 9, + "need": [ + { + "a": "item", + "t": "32", + "n": "90" + }, + { + "a": "attr", + "t": "jinbi", + "n": "1670000" + } + ], + "buff": [ + { + "atkpro": 0.135 + }, + { + "dpspro": 0.09 + }, + { + "defpro": 0.225 + }, + { + "hppro": 0.09 + }, + { + "shanbipro": 0.045 + }, + { + "speedpro": 0.09 + } + ] + }, + "10": { + "id": 43, + "type": 3, + "lv": 10, + "need": [ + { + "a": "item", + "t": "32", + "n": "100" + }, + { + "a": "attr", + "t": "jinbi", + "n": "2050000" + } + ], + "buff": [ + { + "atkpro": 0.15 + }, + { + "dpspro": 0.1 + }, + { + "defpro": 0.25 + }, + { + "hppro": 0.1 + }, + { + "shanbipro": 0.05 + }, + { + "speedpro": 0.1 + } + ] + }, + "11": { + "id": 44, + "type": 3, + "lv": 11, + "need": [ + { + "a": "item", + "t": "32", + "n": "110" + }, + { + "a": "attr", + "t": "jinbi", + "n": "2470000" + } + ], + "buff": [ + { + "atkpro": 0.165 + }, + { + "dpspro": 0.11 + }, + { + "defpro": 0.275 + }, + { + "hppro": 0.11 + }, + { + "shanbipro": 0.055 + }, + { + "speedpro": 0.11 + } + ] + }, + "12": { + "id": 45, + "type": 3, + "lv": 12, + "need": [ + { + "a": "item", + "t": "32", + "n": "120" + }, + { + "a": "attr", + "t": "jinbi", + "n": "2930000" + } + ], + "buff": [ + { + "atkpro": 0.18 + }, + { + "dpspro": 0.12 + }, + { + "defpro": 0.3 + }, + { + "hppro": 0.12 + }, + { + "shanbipro": 0.06 + }, + { + "speedpro": 0.12 + } + ] + }, + "13": { + "id": 46, + "type": 3, + "lv": 13, + "need": [ + { + "a": "item", + "t": "32", + "n": "130" + }, + { + "a": "attr", + "t": "jinbi", + "n": "3430000" + } + ], + "buff": [ + { + "atkpro": 0.195 + }, + { + "dpspro": 0.13 + }, + { + "defpro": 0.325 + }, + { + "hppro": 0.13 + }, + { + "shanbipro": 0.065 + }, + { + "speedpro": 0.13 + } + ] + }, + "14": { + "id": 47, + "type": 3, + "lv": 14, + "need": [ + { + "a": "item", + "t": "32", + "n": "140" + }, + { + "a": "attr", + "t": "jinbi", + "n": "3970000" + } + ], + "buff": [ + { + "atkpro": 0.21 + }, + { + "dpspro": 0.14 + }, + { + "defpro": 0.35 + }, + { + "hppro": 0.14 + }, + { + "shanbipro": 0.07 + }, + { + "speedpro": 0.14 + } + ] + }, + "15": { + "id": 48, + "type": 3, + "lv": 15, + "need": [], + "buff": [ + { + "atkpro": 0.225 + }, + { + "dpspro": 0.15 + }, + { + "defpro": 0.375 + }, + { + "hppro": 0.15 + }, + { + "shanbipro": 0.075 + }, + { + "speedpro": 0.15 + } + ] + } + } +} \ No newline at end of file diff --git a/src/json/friend.json5 b/src/json/friend.json5 new file mode 100644 index 0000000..942debf --- /dev/null +++ b/src/json/friend.json5 @@ -0,0 +1,12 @@ +{ + //推荐好友显示数量 + tuijianNum: 6, + //最大好友数量 + maxFriendNum: 30, + //每日最大送礼数量 + maxSendGiftNum: 30, + //每日最大收礼数量 + maxGetGiftNum: 30, + //送礼奖励掉落组 + giftPrize: 10 +} \ No newline at end of file diff --git a/src/json/g123item.json b/src/json/g123item.json new file mode 100644 index 0000000..fa23c5d --- /dev/null +++ b/src/json/g123item.json @@ -0,0 +1,6185 @@ +{ + "item^1": { + "itemId": "item^1", + "name": "能量饮料", + "i18nKey": "intr_item_name_1", + "detailI18nKey": "intr_item_describe_1", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": { + "storeDisplayPrice": null, + "storeCategory": "", + "setQuantity": 1, + "purchaseLimit": 0, + "sellMinCp": 100, + "sellMaxCp": 500, + "rarity": 2 + } + }, + "item^2": { + "itemId": "item^2", + "name": "枪油", + "i18nKey": "intr_item_name_2", + "detailI18nKey": "intr_item_describe_2", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^3": { + "itemId": "item^3", + "name": "持枪证", + "i18nKey": "intr_item_name_3", + "detailI18nKey": "intr_item_describe_3", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^4": { + "itemId": "item^4", + "name": "招募卡", + "i18nKey": "intr_item_name_4", + "detailI18nKey": "intr_item_describe_4", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^5": { + "itemId": "item^5", + "name": "新手礼包", + "i18nKey": "intr_item_name_5", + "detailI18nKey": "intr_item_describe_5", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^6": { + "itemId": "item^6", + "name": "特训指南", + "i18nKey": "intr_item_name_6", + "detailI18nKey": "intr_item_describe_6", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^8": { + "itemId": "item^8", + "name": "维修包", + "i18nKey": "intr_item_name_8", + "detailI18nKey": "intr_item_describe_8", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^9": { + "itemId": "item^9", + "name": "专属润滑剂", + "i18nKey": "intr_item_name_9", + "detailI18nKey": "intr_item_describe_9", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^10": { + "itemId": "item^10", + "name": "专属弹夹", + "i18nKey": "intr_item_name_10", + "detailI18nKey": "intr_item_describe_10", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^11": { + "itemId": "item^11", + "name": "威望铭牌", + "i18nKey": "intr_item_name_11", + "detailI18nKey": "intr_item_describe_11", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^12": { + "itemId": "item^12", + "name": "弹壳", + "i18nKey": "intr_item_name_12", + "detailI18nKey": "intr_item_describe_12", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^13": { + "itemId": "item^13", + "name": "营养液", + "i18nKey": "intr_item_name_13", + "detailI18nKey": "intr_item_describe_13", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^14": { + "itemId": "item^14", + "name": "名望会员券", + "i18nKey": "intr_item_name_14", + "detailI18nKey": "intr_item_describe_14", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^15": { + "itemId": "item^15", + "name": "势力贡献", + "i18nKey": "intr_item_name_15", + "detailI18nKey": "intr_item_describe_15", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^16": { + "itemId": "item^16", + "name": "兑换奖券", + "i18nKey": "intr_item_name_16", + "detailI18nKey": "intr_item_describe_16", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^17": { + "itemId": "item^17", + "name": "势力币", + "i18nKey": "intr_item_name_17", + "detailI18nKey": "intr_item_describe_17", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^18": { + "itemId": "item^18", + "name": "装备蓝图", + "i18nKey": "intr_item_name_18", + "detailI18nKey": "intr_item_describe_18", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^19": { + "itemId": "item^19", + "name": "调校合金", + "i18nKey": "intr_item_name_19", + "detailI18nKey": "intr_item_describe_19", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^20": { + "itemId": "item^20", + "name": "配件蓝图", + "i18nKey": "intr_item_name_20", + "detailI18nKey": "intr_item_describe_20", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^21": { + "itemId": "item^21", + "name": "修复胶", + "i18nKey": "intr_item_name_21", + "detailI18nKey": "intr_item_describe_21", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^22": { + "itemId": "item^22", + "name": "零部件蓝图", + "i18nKey": "intr_item_name_22", + "detailI18nKey": "intr_item_describe_22", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^23": { + "itemId": "item^23", + "name": "装备零件", + "i18nKey": "intr_item_name_23", + "detailI18nKey": "intr_item_describe_23", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^24": { + "itemId": "item^24", + "name": "快速探险券", + "i18nKey": "intr_item_name_24", + "detailI18nKey": "intr_item_describe_24", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^25": { + "itemId": "item^25", + "name": "高级宝箱", + "i18nKey": "intr_item_name_25", + "detailI18nKey": "intr_item_describe_25", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^26": { + "itemId": "item^26", + "name": "高级钥匙", + "i18nKey": "intr_item_name_26", + "detailI18nKey": "intr_item_describe_26", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^27": { + "itemId": "item^27", + "name": "人才档案", + "i18nKey": "intr_item_name_27", + "detailI18nKey": "intr_item_describe_27", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^28": { + "itemId": "item^28", + "name": "配件零件", + "i18nKey": "intr_item_name_28", + "detailI18nKey": "intr_item_describe_28", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^29": { + "itemId": "item^29", + "name": "配件核心", + "i18nKey": "intr_item_name_29", + "detailI18nKey": "intr_item_describe_29", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^30": { + "itemId": "item^30", + "name": "进攻部署", + "i18nKey": "intr_item_name_30", + "detailI18nKey": "intr_item_describe_30", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^31": { + "itemId": "item^31", + "name": "警戒部署", + "i18nKey": "intr_item_name_31", + "detailI18nKey": "intr_item_describe_31", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^32": { + "itemId": "item^32", + "name": "探查部署", + "i18nKey": "intr_item_name_32", + "detailI18nKey": "intr_item_describe_32", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^33": { + "itemId": "item^33", + "name": "初级宝箱", + "i18nKey": "intr_item_name_33", + "detailI18nKey": "intr_item_describe_33", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^34": { + "itemId": "item^34", + "name": "初级钥匙", + "i18nKey": "intr_item_name_34", + "detailI18nKey": "intr_item_describe_34", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^35": { + "itemId": "item^35", + "name": "中级宝箱", + "i18nKey": "intr_item_name_35", + "detailI18nKey": "intr_item_describe_35", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^36": { + "itemId": "item^36", + "name": "中级钥匙", + "i18nKey": "intr_item_name_36", + "detailI18nKey": "intr_item_describe_36", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^37": { + "itemId": "item^37", + "name": "百万美金", + "i18nKey": "intr_item_name_37", + "detailI18nKey": "intr_item_describe_37", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^38": { + "itemId": "item^38", + "name": "红色干部随机箱", + "i18nKey": "intr_item_name_38", + "detailI18nKey": "intr_item_describe_38", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^39": { + "itemId": "item^39", + "name": "功绩", + "i18nKey": "intr_item_name_39", + "detailI18nKey": "intr_item_describe_39", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^40": { + "itemId": "item^40", + "name": "霸主头像框", + "i18nKey": "intr_item_name_40", + "detailI18nKey": "intr_item_describe_40", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^41": { + "itemId": "item^41", + "name": "火拼暗号票", + "i18nKey": "intr_item_name_41", + "detailI18nKey": "intr_item_describe_41", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^42": { + "itemId": "item^42", + "name": "名望勋章", + "i18nKey": "intr_item_name_42", + "detailI18nKey": "intr_item_describe_42", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^43": { + "itemId": "item^43", + "name": "战令头像框", + "i18nKey": "intr_item_name_43", + "detailI18nKey": "intr_item_describe_43", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^44": { + "itemId": "item^44", + "name": "进攻部署碎片", + "i18nKey": "intr_item_name_44", + "detailI18nKey": "intr_item_describe_44", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^45": { + "itemId": "item^45", + "name": "警戒部署碎片", + "i18nKey": "intr_item_name_45", + "detailI18nKey": "intr_item_describe_45", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^46": { + "itemId": "item^46", + "name": "探查部署碎片", + "i18nKey": "intr_item_name_46", + "detailI18nKey": "intr_item_describe_46", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^47": { + "itemId": "item^47", + "name": "王者头像框", + "i18nKey": "intr_item_name_47", + "detailI18nKey": "intr_item_describe_47", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^48": { + "itemId": "item^48", + "name": "荣耀头像框", + "i18nKey": "intr_item_name_48", + "detailI18nKey": "intr_item_describe_48", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^49": { + "itemId": "item^49", + "name": "三明治", + "i18nKey": "intr_item_name_49", + "detailI18nKey": "intr_item_describe_49", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^50": { + "itemId": "item^50", + "name": "美酒", + "i18nKey": "intr_item_name_50", + "detailI18nKey": "intr_item_describe_50", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^10001": { + "itemId": "item^10001", + "name": "棉布头盔碎片", + "i18nKey": "intr_item_name_10001", + "detailI18nKey": "intr_item_describe_10001", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^10002": { + "itemId": "item^10002", + "name": "皮头盔碎片", + "i18nKey": "intr_item_name_10002", + "detailI18nKey": "intr_item_describe_10002", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^10003": { + "itemId": "item^10003", + "name": "黑手头盔碎片", + "i18nKey": "intr_item_name_10003", + "detailI18nKey": "intr_item_describe_10003", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^10004": { + "itemId": "item^10004", + "name": "摩托头盔碎片", + "i18nKey": "intr_item_name_10004", + "detailI18nKey": "intr_item_describe_10004", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^10005": { + "itemId": "item^10005", + "name": "奇袭头盔碎片", + "i18nKey": "intr_item_name_10005", + "detailI18nKey": "intr_item_describe_10005", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^10006": { + "itemId": "item^10006", + "name": "防暴头盔碎片", + "i18nKey": "intr_item_name_10006", + "detailI18nKey": "intr_item_describe_10006", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^10007": { + "itemId": "item^10007", + "name": "飞车头盔碎片", + "i18nKey": "intr_item_name_10007", + "detailI18nKey": "intr_item_describe_10007", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^10008": { + "itemId": "item^10008", + "name": "海贼帽碎片", + "i18nKey": "intr_item_name_10008", + "detailI18nKey": "intr_item_describe_10008", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^10009": { + "itemId": "item^10009", + "name": "头目头盔碎片", + "i18nKey": "intr_item_name_10009", + "detailI18nKey": "intr_item_describe_10009", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^10010": { + "itemId": "item^10010", + "name": "夜行帽碎片", + "i18nKey": "intr_item_name_10010", + "detailI18nKey": "intr_item_describe_10010", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^20001": { + "itemId": "item^20001", + "name": "棉布背心碎片", + "i18nKey": "intr_item_name_20001", + "detailI18nKey": "intr_item_describe_20001", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^20002": { + "itemId": "item^20002", + "name": "皮背心碎片", + "i18nKey": "intr_item_name_20002", + "detailI18nKey": "intr_item_describe_20002", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^20003": { + "itemId": "item^20003", + "name": "黑手背心碎片", + "i18nKey": "intr_item_name_20003", + "detailI18nKey": "intr_item_describe_20003", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^20004": { + "itemId": "item^20004", + "name": "摩托背心碎片", + "i18nKey": "intr_item_name_20004", + "detailI18nKey": "intr_item_describe_20004", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^20005": { + "itemId": "item^20005", + "name": "奇袭背心碎片", + "i18nKey": "intr_item_name_20005", + "detailI18nKey": "intr_item_describe_20005", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^20006": { + "itemId": "item^20006", + "name": "防暴背心碎片", + "i18nKey": "intr_item_name_20006", + "detailI18nKey": "intr_item_describe_20006", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^20007": { + "itemId": "item^20007", + "name": "飞车背心碎片", + "i18nKey": "intr_item_name_20007", + "detailI18nKey": "intr_item_describe_20007", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^20008": { + "itemId": "item^20008", + "name": "海贼背心碎片", + "i18nKey": "intr_item_name_20008", + "detailI18nKey": "intr_item_describe_20008", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^20009": { + "itemId": "item^20009", + "name": "头目背心碎片", + "i18nKey": "intr_item_name_20009", + "detailI18nKey": "intr_item_describe_20009", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^20010": { + "itemId": "item^20010", + "name": "夜行背心碎片", + "i18nKey": "intr_item_name_20010", + "detailI18nKey": "intr_item_describe_20010", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^30001": { + "itemId": "item^30001", + "name": "棉布手套碎片", + "i18nKey": "intr_item_name_30001", + "detailI18nKey": "intr_item_describe_30001", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^30002": { + "itemId": "item^30002", + "name": "皮手套碎片", + "i18nKey": "intr_item_name_30002", + "detailI18nKey": "intr_item_describe_30002", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^30003": { + "itemId": "item^30003", + "name": "黑手手套碎片", + "i18nKey": "intr_item_name_30003", + "detailI18nKey": "intr_item_describe_30003", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^30004": { + "itemId": "item^30004", + "name": "摩托手套碎片", + "i18nKey": "intr_item_name_30004", + "detailI18nKey": "intr_item_describe_30004", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^30005": { + "itemId": "item^30005", + "name": "奇袭手套碎片", + "i18nKey": "intr_item_name_30005", + "detailI18nKey": "intr_item_describe_30005", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^30006": { + "itemId": "item^30006", + "name": "防暴手套碎片", + "i18nKey": "intr_item_name_30006", + "detailI18nKey": "intr_item_describe_30006", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^30007": { + "itemId": "item^30007", + "name": "飞车手套碎片", + "i18nKey": "intr_item_name_30007", + "detailI18nKey": "intr_item_describe_30007", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^30008": { + "itemId": "item^30008", + "name": "海贼手套碎片", + "i18nKey": "intr_item_name_30008", + "detailI18nKey": "intr_item_describe_30008", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^30009": { + "itemId": "item^30009", + "name": "头目手套碎片", + "i18nKey": "intr_item_name_30009", + "detailI18nKey": "intr_item_describe_30009", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^30010": { + "itemId": "item^30010", + "name": "夜行手套碎片", + "i18nKey": "intr_item_name_30010", + "detailI18nKey": "intr_item_describe_30010", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^40001": { + "itemId": "item^40001", + "name": "棉布战靴碎片", + "i18nKey": "intr_item_name_40001", + "detailI18nKey": "intr_item_describe_40001", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^40002": { + "itemId": "item^40002", + "name": "皮战靴碎片", + "i18nKey": "intr_item_name_40002", + "detailI18nKey": "intr_item_describe_40002", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^40003": { + "itemId": "item^40003", + "name": "黑手战靴碎片", + "i18nKey": "intr_item_name_40003", + "detailI18nKey": "intr_item_describe_40003", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^40004": { + "itemId": "item^40004", + "name": "摩托战靴碎片", + "i18nKey": "intr_item_name_40004", + "detailI18nKey": "intr_item_describe_40004", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^40005": { + "itemId": "item^40005", + "name": "奇袭战靴碎片", + "i18nKey": "intr_item_name_40005", + "detailI18nKey": "intr_item_describe_40005", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^40006": { + "itemId": "item^40006", + "name": "防暴战靴碎片", + "i18nKey": "intr_item_name_40006", + "detailI18nKey": "intr_item_describe_40006", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^40007": { + "itemId": "item^40007", + "name": "飞车战靴碎片", + "i18nKey": "intr_item_name_40007", + "detailI18nKey": "intr_item_describe_40007", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^40008": { + "itemId": "item^40008", + "name": "海贼战靴碎片", + "i18nKey": "intr_item_name_40008", + "detailI18nKey": "intr_item_describe_40008", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^40009": { + "itemId": "item^40009", + "name": "头目战靴碎片", + "i18nKey": "intr_item_name_40009", + "detailI18nKey": "intr_item_describe_40009", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^40010": { + "itemId": "item^40010", + "name": "夜行战靴碎片", + "i18nKey": "intr_item_name_40010", + "detailI18nKey": "intr_item_describe_40010", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^600": { + "itemId": "item^600", + "name": "红色干部碎片自选箱", + "i18nKey": "intr_item_name_600", + "detailI18nKey": "intr_item_describe_600", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^601": { + "itemId": "item^601", + "name": "橙色装备碎片自选箱", + "i18nKey": "intr_item_name_601", + "detailI18nKey": "intr_item_describe_601", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^602": { + "itemId": "item^602", + "name": "随机配件箱", + "i18nKey": "intr_item_name_602", + "detailI18nKey": "intr_item_describe_602", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^603": { + "itemId": "item^603", + "name": "紫色干部碎片随机箱", + "i18nKey": "intr_item_name_603", + "detailI18nKey": "intr_item_describe_603", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^604": { + "itemId": "item^604", + "name": "干部培养包", + "i18nKey": "intr_item_name_604", + "detailI18nKey": "intr_item_describe_604", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^605": { + "itemId": "item^605", + "name": "神秘配件包", + "i18nKey": "intr_item_name_605", + "detailI18nKey": "intr_item_describe_605", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^606": { + "itemId": "item^606", + "name": "荣耀配件包", + "i18nKey": "intr_item_name_606", + "detailI18nKey": "intr_item_describe_606", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^607": { + "itemId": "item^607", + "name": "橙色干部碎片自选箱", + "i18nKey": "intr_item_name_607", + "detailI18nKey": "intr_item_describe_607", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^608": { + "itemId": "item^608", + "name": "紫色干部碎片自选箱", + "i18nKey": "intr_item_name_608", + "detailI18nKey": "intr_item_describe_608", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^609": { + "itemId": "item^609", + "name": "顶级紫色套装", + "i18nKey": "intr_item_name_609", + "detailI18nKey": "intr_item_describe_609", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^610": { + "itemId": "item^610", + "name": "顶级专属速度箱", + "i18nKey": "intr_item_name_610", + "detailI18nKey": "intr_item_describe_610", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^611": { + "itemId": "item^611", + "name": "橙色套装", + "i18nKey": "intr_item_name_611", + "detailI18nKey": "intr_item_describe_611", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^612": { + "itemId": "item^612", + "name": "配件资源箱", + "i18nKey": "intr_item_name_612", + "detailI18nKey": "intr_item_describe_612", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^613": { + "itemId": "item^613", + "name": "高级干部碎片随机箱", + "i18nKey": "intr_item_name_613", + "detailI18nKey": "intr_item_describe_613", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^614": { + "itemId": "item^614", + "name": "机械动力箱", + "i18nKey": "intr_item_name_614", + "detailI18nKey": "intr_item_describe_614", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^615": { + "itemId": "item^615", + "name": "顶级紫色装备自选箱", + "i18nKey": "intr_item_name_615", + "detailI18nKey": "intr_item_describe_615", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^616": { + "itemId": "item^616", + "name": "顶级紫装碎片自选箱", + "i18nKey": "intr_item_name_616", + "detailI18nKey": "intr_item_describe_616", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^617": { + "itemId": "item^617", + "name": "红色干部自选箱", + "i18nKey": "intr_item_name_617", + "detailI18nKey": "intr_item_describe_617", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^618": { + "itemId": "item^618", + "name": "紫色干部随机箱", + "i18nKey": "intr_item_name_618", + "detailI18nKey": "intr_item_describe_618", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^619": { + "itemId": "item^619", + "name": "顶级红色干部自选箱", + "i18nKey": "intr_item_name_619", + "detailI18nKey": "intr_item_describe_619", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^620": { + "itemId": "item^620", + "name": "紫色装备随机箱", + "i18nKey": "intr_item_name_620", + "detailI18nKey": "intr_item_describe_620", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^621": { + "itemId": "item^621", + "name": "橙色干部随机箱", + "i18nKey": "intr_item_name_621", + "detailI18nKey": "intr_item_describe_621", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^622": { + "itemId": "item^622", + "name": "顶级红色干部碎片随机箱", + "i18nKey": "intr_item_name_622", + "detailI18nKey": "intr_item_describe_622", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^623": { + "itemId": "item^623", + "name": "橙色装备碎片随机箱", + "i18nKey": "intr_item_name_623", + "detailI18nKey": "intr_item_describe_623", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^624": { + "itemId": "item^624", + "name": "装备资源箱", + "i18nKey": "intr_item_name_624", + "detailI18nKey": "intr_item_describe_624", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^625": { + "itemId": "item^625", + "name": "橙色装备随机箱", + "i18nKey": "intr_item_name_625", + "detailI18nKey": "intr_item_describe_625", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^626": { + "itemId": "item^626", + "name": "全橙色干部碎片自选箱", + "i18nKey": "intr_item_name_626", + "detailI18nKey": "intr_item_describe_626", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^627": { + "itemId": "item^627", + "name": "顶级紫色装备随机箱", + "i18nKey": "intr_item_name_627", + "detailI18nKey": "intr_item_describe_627", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^628": { + "itemId": "item^628", + "name": "橙色装备自选箱", + "i18nKey": "intr_item_name_628", + "detailI18nKey": "intr_item_describe_628", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^629": { + "itemId": "item^629", + "name": "专武资源箱", + "i18nKey": "intr_item_name_629", + "detailI18nKey": "intr_item_describe_629", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^630": { + "itemId": "item^630", + "name": "顶级紫色装备碎片随机箱", + "i18nKey": "intr_item_name_630", + "detailI18nKey": "intr_item_describe_630", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^631": { + "itemId": "item^631", + "name": "红色干部碎片随机箱", + "i18nKey": "intr_item_name_631", + "detailI18nKey": "intr_item_describe_631", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^632": { + "itemId": "item^632", + "name": "顶级红色干部碎片自选箱", + "i18nKey": "intr_item_name_632", + "detailI18nKey": "intr_item_describe_632", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^633": { + "itemId": "item^633", + "name": "任务资源箱", + "i18nKey": "intr_item_name_633", + "detailI18nKey": "intr_item_describe_633", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^5001": { + "itemId": "item^5001", + "name": "莱薇碎片", + "i18nKey": "intr_item_name_5001", + "detailI18nKey": "intr_item_describe_5001", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^5002": { + "itemId": "item^5002", + "name": "巴拉莱卡碎片", + "i18nKey": "intr_item_name_5002", + "detailI18nKey": "intr_item_describe_5002", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^5003": { + "itemId": "item^5003", + "name": "张维新碎片", + "i18nKey": "intr_item_name_5003", + "detailI18nKey": "intr_item_describe_5003", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^5004": { + "itemId": "item^5004", + "name": "罗贝尔特碎片", + "i18nKey": "intr_item_name_5004", + "detailI18nKey": "intr_item_describe_5004", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^5005": { + "itemId": "item^5005", + "name": "松崎银次碎片", + "i18nKey": "intr_item_name_5005", + "detailI18nKey": "intr_item_describe_5005", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^4001": { + "itemId": "item^4001", + "name": "洛克碎片", + "i18nKey": "intr_item_name_4001", + "detailI18nKey": "intr_item_describe_4001", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^4002": { + "itemId": "item^4002", + "name": "达奇碎片", + "i18nKey": "intr_item_name_4002", + "detailI18nKey": "intr_item_describe_4002", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^4003": { + "itemId": "item^4003", + "name": "军曹碎片", + "i18nKey": "intr_item_name_4003", + "detailI18nKey": "intr_item_describe_4003", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^4004": { + "itemId": "item^4004", + "name": "尤兰达碎片", + "i18nKey": "intr_item_name_4004", + "detailI18nKey": "intr_item_describe_4004", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^4005": { + "itemId": "item^4005", + "name": "艾达碎片", + "i18nKey": "intr_item_name_4005", + "detailI18nKey": "intr_item_describe_4005", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^4006": { + "itemId": "item^4006", + "name": "仙鹤碎片", + "i18nKey": "intr_item_name_4006", + "detailI18nKey": "intr_item_describe_4006", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^4007": { + "itemId": "item^4007", + "name": "鹫峰雪绪碎片", + "i18nKey": "intr_item_name_4007", + "detailI18nKey": "intr_item_describe_4007", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^4008": { + "itemId": "item^4008", + "name": "坂东次男碎片", + "i18nKey": "intr_item_name_4008", + "detailI18nKey": "intr_item_describe_4008", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^4009": { + "itemId": "item^4009", + "name": "竹中正洋碎片", + "i18nKey": "intr_item_name_4009", + "detailI18nKey": "intr_item_describe_4009", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^4010": { + "itemId": "item^4010", + "name": "加尔西亚碎片", + "i18nKey": "intr_item_name_4010", + "detailI18nKey": "intr_item_describe_4010", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^4011": { + "itemId": "item^4011", + "name": "法贝拉碎片", + "i18nKey": "intr_item_name_4011", + "detailI18nKey": "intr_item_describe_4011", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^4012": { + "itemId": "item^4012", + "name": "汉塞尔碎片", + "i18nKey": "intr_item_name_4012", + "detailI18nKey": "intr_item_describe_4012", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^4013": { + "itemId": "item^4013", + "name": "葛丽特碎片", + "i18nKey": "intr_item_name_4013", + "detailI18nKey": "intr_item_describe_4013", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^4014": { + "itemId": "item^4014", + "name": "索亚碎片", + "i18nKey": "intr_item_name_4014", + "detailI18nKey": "intr_item_describe_4014", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^4015": { + "itemId": "item^4015", + "name": "罗顿碎片", + "i18nKey": "intr_item_name_4015", + "detailI18nKey": "intr_item_describe_4015", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^3001": { + "itemId": "item^3001", + "name": "吉田碎片", + "i18nKey": "intr_item_name_3001", + "detailI18nKey": "intr_item_describe_3001", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^3002": { + "itemId": "item^3002", + "name": "李卡德碎片", + "i18nKey": "intr_item_name_3002", + "detailI18nKey": "intr_item_describe_3002", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^3003": { + "itemId": "item^3003", + "name": "查卡碎片", + "i18nKey": "intr_item_name_3003", + "detailI18nKey": "intr_item_describe_3003", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^3004": { + "itemId": "item^3004", + "name": "珍碎片", + "i18nKey": "intr_item_name_3004", + "detailI18nKey": "intr_item_describe_3004", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^3005": { + "itemId": "item^3005", + "name": "猫王碎片", + "i18nKey": "intr_item_name_3005", + "detailI18nKey": "intr_item_describe_3005", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^3006": { + "itemId": "item^3006", + "name": "韦伯碎片", + "i18nKey": "intr_item_name_3006", + "detailI18nKey": "intr_item_describe_3006", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^3007": { + "itemId": "item^3007", + "name": "裴洛基欧碎片", + "i18nKey": "intr_item_name_3007", + "detailI18nKey": "intr_item_describe_3007", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^3008": { + "itemId": "item^3008", + "name": "罗尼碎片", + "i18nKey": "intr_item_name_3008", + "detailI18nKey": "intr_item_describe_3008", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^3009": { + "itemId": "item^3009", + "name": "阿布莱格碎片", + "i18nKey": "intr_item_name_3009", + "detailI18nKey": "intr_item_describe_3009", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^3010": { + "itemId": "item^3010", + "name": "彪碎片", + "i18nKey": "intr_item_name_3010", + "detailI18nKey": "intr_item_describe_3010", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^3011": { + "itemId": "item^3011", + "name": "雷卡基碎片", + "i18nKey": "intr_item_name_3011", + "detailI18nKey": "intr_item_describe_3011", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^3012": { + "itemId": "item^3012", + "name": "布利茨碎片", + "i18nKey": "intr_item_name_3012", + "detailI18nKey": "intr_item_describe_3012", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^3013": { + "itemId": "item^3013", + "name": "卡克斯顿碎片", + "i18nKey": "intr_item_name_3013", + "detailI18nKey": "intr_item_describe_3013", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^3014": { + "itemId": "item^3014", + "name": "陈碎片", + "i18nKey": "intr_item_name_3014", + "detailI18nKey": "intr_item_describe_3014", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^3015": { + "itemId": "item^3015", + "name": "贝尼碎片", + "i18nKey": "intr_item_name_3015", + "detailI18nKey": "intr_item_describe_3015", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^2001": { + "itemId": "item^2001", + "name": "罗素碎片", + "i18nKey": "intr_item_name_2001", + "detailI18nKey": "intr_item_describe_2001", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^2002": { + "itemId": "item^2002", + "name": "瓦萨普碎片", + "i18nKey": "intr_item_name_2002", + "detailI18nKey": "intr_item_describe_2002", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^1001": { + "itemId": "item^1001", + "name": "保碎片", + "i18nKey": "intr_item_name_1001", + "detailI18nKey": "intr_item_describe_1001", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^1002": { + "itemId": "item^1002", + "name": "罗旺碎片", + "i18nKey": "intr_item_name_1002", + "detailI18nKey": "intr_item_describe_1002", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60101": { + "itemId": "item^60101", + "name": "1阶车身外壳", + "i18nKey": "intr_item_name_60101", + "detailI18nKey": "intr_item_describe_60101", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60102": { + "itemId": "item^60102", + "name": "1阶转向模块", + "i18nKey": "intr_item_name_60102", + "detailI18nKey": "intr_item_describe_60102", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60103": { + "itemId": "item^60103", + "name": "1阶动力模块", + "i18nKey": "intr_item_name_60103", + "detailI18nKey": "intr_item_describe_60103", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60104": { + "itemId": "item^60104", + "name": "1阶车载武器", + "i18nKey": "intr_item_name_60104", + "detailI18nKey": "intr_item_describe_60104", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60105": { + "itemId": "item^60105", + "name": "1阶防弹车轮", + "i18nKey": "intr_item_name_60105", + "detailI18nKey": "intr_item_describe_60105", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60201": { + "itemId": "item^60201", + "name": "2阶车身外壳", + "i18nKey": "intr_item_name_60201", + "detailI18nKey": "intr_item_describe_60101", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60202": { + "itemId": "item^60202", + "name": "2阶转向模块", + "i18nKey": "intr_item_name_60202", + "detailI18nKey": "intr_item_describe_60102", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60203": { + "itemId": "item^60203", + "name": "2阶动力模块", + "i18nKey": "intr_item_name_60203", + "detailI18nKey": "intr_item_describe_60103", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60204": { + "itemId": "item^60204", + "name": "2阶车载武器", + "i18nKey": "intr_item_name_60204", + "detailI18nKey": "intr_item_describe_60104", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60205": { + "itemId": "item^60205", + "name": "2阶防弹车轮", + "i18nKey": "intr_item_name_60205", + "detailI18nKey": "intr_item_describe_60105", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60301": { + "itemId": "item^60301", + "name": "3阶车身外壳", + "i18nKey": "intr_item_name_60301", + "detailI18nKey": "intr_item_describe_60101", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60302": { + "itemId": "item^60302", + "name": "3阶转向模块", + "i18nKey": "intr_item_name_60302", + "detailI18nKey": "intr_item_describe_60102", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60303": { + "itemId": "item^60303", + "name": "3阶动力模块", + "i18nKey": "intr_item_name_60303", + "detailI18nKey": "intr_item_describe_60103", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60304": { + "itemId": "item^60304", + "name": "3阶车载武器", + "i18nKey": "intr_item_name_60304", + "detailI18nKey": "intr_item_describe_60104", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60305": { + "itemId": "item^60305", + "name": "3阶防弹车轮", + "i18nKey": "intr_item_name_60305", + "detailI18nKey": "intr_item_describe_60105", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60401": { + "itemId": "item^60401", + "name": "4阶车身外壳", + "i18nKey": "intr_item_name_60401", + "detailI18nKey": "intr_item_describe_60101", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60402": { + "itemId": "item^60402", + "name": "4阶转向模块", + "i18nKey": "intr_item_name_60402", + "detailI18nKey": "intr_item_describe_60102", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60403": { + "itemId": "item^60403", + "name": "4阶动力模块", + "i18nKey": "intr_item_name_60403", + "detailI18nKey": "intr_item_describe_60103", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60404": { + "itemId": "item^60404", + "name": "4阶车载武器", + "i18nKey": "intr_item_name_60404", + "detailI18nKey": "intr_item_describe_60104", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60405": { + "itemId": "item^60405", + "name": "4阶防弹车轮", + "i18nKey": "intr_item_name_60405", + "detailI18nKey": "intr_item_describe_60105", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60501": { + "itemId": "item^60501", + "name": "5阶车身外壳", + "i18nKey": "intr_item_name_60501", + "detailI18nKey": "intr_item_describe_60101", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60502": { + "itemId": "item^60502", + "name": "5阶转向模块", + "i18nKey": "intr_item_name_60502", + "detailI18nKey": "intr_item_describe_60102", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60503": { + "itemId": "item^60503", + "name": "5阶动力模块", + "i18nKey": "intr_item_name_60503", + "detailI18nKey": "intr_item_describe_60103", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60504": { + "itemId": "item^60504", + "name": "5阶车载武器", + "i18nKey": "intr_item_name_60504", + "detailI18nKey": "intr_item_describe_60104", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60505": { + "itemId": "item^60505", + "name": "5阶防弹车轮", + "i18nKey": "intr_item_name_60505", + "detailI18nKey": "intr_item_describe_60105", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60601": { + "itemId": "item^60601", + "name": "6阶车身外壳", + "i18nKey": "intr_item_name_60601", + "detailI18nKey": "intr_item_describe_60101", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60602": { + "itemId": "item^60602", + "name": "6阶转向模块", + "i18nKey": "intr_item_name_60602", + "detailI18nKey": "intr_item_describe_60102", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60603": { + "itemId": "item^60603", + "name": "6阶动力模块", + "i18nKey": "intr_item_name_60603", + "detailI18nKey": "intr_item_describe_60103", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60604": { + "itemId": "item^60604", + "name": "6阶车载武器", + "i18nKey": "intr_item_name_60604", + "detailI18nKey": "intr_item_describe_60104", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60605": { + "itemId": "item^60605", + "name": "6阶防弹车轮", + "i18nKey": "intr_item_name_60605", + "detailI18nKey": "intr_item_describe_60105", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60701": { + "itemId": "item^60701", + "name": "7阶车身外壳", + "i18nKey": "intr_item_name_60701", + "detailI18nKey": "intr_item_describe_60101", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60702": { + "itemId": "item^60702", + "name": "7阶转向模块", + "i18nKey": "intr_item_name_60702", + "detailI18nKey": "intr_item_describe_60102", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60703": { + "itemId": "item^60703", + "name": "7阶动力模块", + "i18nKey": "intr_item_name_60703", + "detailI18nKey": "intr_item_describe_60103", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60704": { + "itemId": "item^60704", + "name": "7阶车载武器", + "i18nKey": "intr_item_name_60704", + "detailI18nKey": "intr_item_describe_60104", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60705": { + "itemId": "item^60705", + "name": "7阶防弹车轮", + "i18nKey": "intr_item_name_60705", + "detailI18nKey": "intr_item_describe_60105", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60801": { + "itemId": "item^60801", + "name": "8阶车身外壳", + "i18nKey": "intr_item_name_60801", + "detailI18nKey": "intr_item_describe_60101", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60802": { + "itemId": "item^60802", + "name": "8阶转向模块", + "i18nKey": "intr_item_name_60802", + "detailI18nKey": "intr_item_describe_60102", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60803": { + "itemId": "item^60803", + "name": "8阶动力模块", + "i18nKey": "intr_item_name_60803", + "detailI18nKey": "intr_item_describe_60103", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60804": { + "itemId": "item^60804", + "name": "8阶车载武器", + "i18nKey": "intr_item_name_60804", + "detailI18nKey": "intr_item_describe_60104", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60805": { + "itemId": "item^60805", + "name": "8阶防弹车轮", + "i18nKey": "intr_item_name_60805", + "detailI18nKey": "intr_item_describe_60105", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60901": { + "itemId": "item^60901", + "name": "9阶车身外壳", + "i18nKey": "intr_item_name_60901", + "detailI18nKey": "intr_item_describe_60101", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60902": { + "itemId": "item^60902", + "name": "9阶转向模块", + "i18nKey": "intr_item_name_60902", + "detailI18nKey": "intr_item_describe_60102", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60903": { + "itemId": "item^60903", + "name": "9阶动力模块", + "i18nKey": "intr_item_name_60903", + "detailI18nKey": "intr_item_describe_60103", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60904": { + "itemId": "item^60904", + "name": "9阶车载武器", + "i18nKey": "intr_item_name_60904", + "detailI18nKey": "intr_item_describe_60104", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^60905": { + "itemId": "item^60905", + "name": "9阶防弹车轮", + "i18nKey": "intr_item_name_60905", + "detailI18nKey": "intr_item_describe_60105", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61001": { + "itemId": "item^61001", + "name": "10阶车身外壳", + "i18nKey": "intr_item_name_61001", + "detailI18nKey": "intr_item_describe_60101", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61002": { + "itemId": "item^61002", + "name": "10阶转向模块", + "i18nKey": "intr_item_name_61002", + "detailI18nKey": "intr_item_describe_60102", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61003": { + "itemId": "item^61003", + "name": "10阶动力模块", + "i18nKey": "intr_item_name_61003", + "detailI18nKey": "intr_item_describe_60103", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61004": { + "itemId": "item^61004", + "name": "10阶车载武器", + "i18nKey": "intr_item_name_61004", + "detailI18nKey": "intr_item_describe_60104", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61005": { + "itemId": "item^61005", + "name": "10阶防弹车轮", + "i18nKey": "intr_item_name_61005", + "detailI18nKey": "intr_item_describe_60105", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61101": { + "itemId": "item^61101", + "name": "1阶载具合金", + "i18nKey": "intr_item_name_61101", + "detailI18nKey": "intr_item_describe_61101", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61102": { + "itemId": "item^61102", + "name": "1阶载具零件", + "i18nKey": "intr_item_name_61102", + "detailI18nKey": "intr_item_describe_61102", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61103": { + "itemId": "item^61103", + "name": "1阶安装工具", + "i18nKey": "intr_item_name_61103", + "detailI18nKey": "intr_item_describe_61103", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61104": { + "itemId": "item^61104", + "name": "1阶齿轮模组", + "i18nKey": "intr_item_name_61104", + "detailI18nKey": "intr_item_describe_61104", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61105": { + "itemId": "item^61105", + "name": "1阶组装部件", + "i18nKey": "intr_item_name_61105", + "detailI18nKey": "intr_item_describe_61105", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61201": { + "itemId": "item^61201", + "name": "2阶载具合金", + "i18nKey": "intr_item_name_61201", + "detailI18nKey": "intr_item_describe_61101", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61202": { + "itemId": "item^61202", + "name": "2阶载具零件", + "i18nKey": "intr_item_name_61202", + "detailI18nKey": "intr_item_describe_61102", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61203": { + "itemId": "item^61203", + "name": "2阶安装工具", + "i18nKey": "intr_item_name_61203", + "detailI18nKey": "intr_item_describe_61103", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61204": { + "itemId": "item^61204", + "name": "2阶齿轮模组", + "i18nKey": "intr_item_name_61204", + "detailI18nKey": "intr_item_describe_61104", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61205": { + "itemId": "item^61205", + "name": "2阶组装部件", + "i18nKey": "intr_item_name_61205", + "detailI18nKey": "intr_item_describe_61105", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61301": { + "itemId": "item^61301", + "name": "3阶载具合金", + "i18nKey": "intr_item_name_61301", + "detailI18nKey": "intr_item_describe_61101", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61302": { + "itemId": "item^61302", + "name": "3阶载具零件", + "i18nKey": "intr_item_name_61302", + "detailI18nKey": "intr_item_describe_61102", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61303": { + "itemId": "item^61303", + "name": "3阶安装工具", + "i18nKey": "intr_item_name_61303", + "detailI18nKey": "intr_item_describe_61103", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61304": { + "itemId": "item^61304", + "name": "3阶齿轮模组", + "i18nKey": "intr_item_name_61304", + "detailI18nKey": "intr_item_describe_61104", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61305": { + "itemId": "item^61305", + "name": "3阶组装部件", + "i18nKey": "intr_item_name_61305", + "detailI18nKey": "intr_item_describe_61105", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61401": { + "itemId": "item^61401", + "name": "4阶载具合金", + "i18nKey": "intr_item_name_61401", + "detailI18nKey": "intr_item_describe_61101", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61402": { + "itemId": "item^61402", + "name": "4阶载具零件", + "i18nKey": "intr_item_name_61402", + "detailI18nKey": "intr_item_describe_61102", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61403": { + "itemId": "item^61403", + "name": "4阶安装工具", + "i18nKey": "intr_item_name_61403", + "detailI18nKey": "intr_item_describe_61103", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61404": { + "itemId": "item^61404", + "name": "4阶齿轮模组", + "i18nKey": "intr_item_name_61404", + "detailI18nKey": "intr_item_describe_61104", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61405": { + "itemId": "item^61405", + "name": "4阶组装部件", + "i18nKey": "intr_item_name_61405", + "detailI18nKey": "intr_item_describe_61105", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61501": { + "itemId": "item^61501", + "name": "5阶载具合金", + "i18nKey": "intr_item_name_61501", + "detailI18nKey": "intr_item_describe_61101", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61502": { + "itemId": "item^61502", + "name": "5阶载具零件", + "i18nKey": "intr_item_name_61502", + "detailI18nKey": "intr_item_describe_61102", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61503": { + "itemId": "item^61503", + "name": "5阶安装工具", + "i18nKey": "intr_item_name_61503", + "detailI18nKey": "intr_item_describe_61103", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61504": { + "itemId": "item^61504", + "name": "5阶齿轮模组", + "i18nKey": "intr_item_name_61504", + "detailI18nKey": "intr_item_describe_61104", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61505": { + "itemId": "item^61505", + "name": "5阶组装部件", + "i18nKey": "intr_item_name_61505", + "detailI18nKey": "intr_item_describe_61105", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61601": { + "itemId": "item^61601", + "name": "6阶载具合金", + "i18nKey": "intr_item_name_61601", + "detailI18nKey": "intr_item_describe_61101", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61602": { + "itemId": "item^61602", + "name": "6阶载具零件", + "i18nKey": "intr_item_name_61602", + "detailI18nKey": "intr_item_describe_61102", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61603": { + "itemId": "item^61603", + "name": "6阶安装工具", + "i18nKey": "intr_item_name_61603", + "detailI18nKey": "intr_item_describe_61103", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61604": { + "itemId": "item^61604", + "name": "6阶齿轮模组", + "i18nKey": "intr_item_name_61604", + "detailI18nKey": "intr_item_describe_61104", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61605": { + "itemId": "item^61605", + "name": "6阶组装部件", + "i18nKey": "intr_item_name_61605", + "detailI18nKey": "intr_item_describe_61105", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61701": { + "itemId": "item^61701", + "name": "7阶载具合金", + "i18nKey": "intr_item_name_61701", + "detailI18nKey": "intr_item_describe_61101", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61702": { + "itemId": "item^61702", + "name": "7阶载具零件", + "i18nKey": "intr_item_name_61702", + "detailI18nKey": "intr_item_describe_61102", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61703": { + "itemId": "item^61703", + "name": "7阶安装工具", + "i18nKey": "intr_item_name_61703", + "detailI18nKey": "intr_item_describe_61103", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61704": { + "itemId": "item^61704", + "name": "7阶齿轮模组", + "i18nKey": "intr_item_name_61704", + "detailI18nKey": "intr_item_describe_61104", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61705": { + "itemId": "item^61705", + "name": "7阶组装部件", + "i18nKey": "intr_item_name_61705", + "detailI18nKey": "intr_item_describe_61105", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61801": { + "itemId": "item^61801", + "name": "8阶载具合金", + "i18nKey": "intr_item_name_61801", + "detailI18nKey": "intr_item_describe_61101", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61802": { + "itemId": "item^61802", + "name": "8阶载具零件", + "i18nKey": "intr_item_name_61802", + "detailI18nKey": "intr_item_describe_61102", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61803": { + "itemId": "item^61803", + "name": "8阶安装工具", + "i18nKey": "intr_item_name_61803", + "detailI18nKey": "intr_item_describe_61103", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61804": { + "itemId": "item^61804", + "name": "8阶齿轮模组", + "i18nKey": "intr_item_name_61804", + "detailI18nKey": "intr_item_describe_61104", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61805": { + "itemId": "item^61805", + "name": "8阶组装部件", + "i18nKey": "intr_item_name_61805", + "detailI18nKey": "intr_item_describe_61105", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61901": { + "itemId": "item^61901", + "name": "9阶载具合金", + "i18nKey": "intr_item_name_61901", + "detailI18nKey": "intr_item_describe_61101", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61902": { + "itemId": "item^61902", + "name": "9阶载具零件", + "i18nKey": "intr_item_name_61902", + "detailI18nKey": "intr_item_describe_61102", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61903": { + "itemId": "item^61903", + "name": "9阶安装工具", + "i18nKey": "intr_item_name_61903", + "detailI18nKey": "intr_item_describe_61103", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61904": { + "itemId": "item^61904", + "name": "9阶齿轮模组", + "i18nKey": "intr_item_name_61904", + "detailI18nKey": "intr_item_describe_61104", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^61905": { + "itemId": "item^61905", + "name": "9阶组装部件", + "i18nKey": "intr_item_name_61905", + "detailI18nKey": "intr_item_describe_61105", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^62001": { + "itemId": "item^62001", + "name": "10阶载具合金", + "i18nKey": "intr_item_name_62001", + "detailI18nKey": "intr_item_describe_61101", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^62002": { + "itemId": "item^62002", + "name": "10阶载具零件", + "i18nKey": "intr_item_name_62002", + "detailI18nKey": "intr_item_describe_61102", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^62003": { + "itemId": "item^62003", + "name": "10阶安装工具", + "i18nKey": "intr_item_name_62003", + "detailI18nKey": "intr_item_describe_61103", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^62004": { + "itemId": "item^62004", + "name": "10阶齿轮模组", + "i18nKey": "intr_item_name_62004", + "detailI18nKey": "intr_item_describe_61104", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^62005": { + "itemId": "item^62005", + "name": "10阶组装部件", + "i18nKey": "intr_item_name_62005", + "detailI18nKey": "intr_item_describe_61105", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70001": { + "itemId": "item^70001", + "name": "25级橙色饰品箱", + "i18nKey": "intr_item_name_70001", + "detailI18nKey": "intr_item_describe_70001", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70002": { + "itemId": "item^70002", + "name": "30级橙色饰品箱", + "i18nKey": "intr_item_name_70002", + "detailI18nKey": "intr_item_describe_70002", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70003": { + "itemId": "item^70003", + "name": "35级橙色饰品箱", + "i18nKey": "intr_item_name_70003", + "detailI18nKey": "intr_item_describe_70003", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70004": { + "itemId": "item^70004", + "name": "40级橙色饰品箱", + "i18nKey": "intr_item_name_70004", + "detailI18nKey": "intr_item_describe_70004", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70005": { + "itemId": "item^70005", + "name": "45级橙色饰品箱", + "i18nKey": "intr_item_name_70005", + "detailI18nKey": "intr_item_describe_70005", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70006": { + "itemId": "item^70006", + "name": "50级橙色饰品箱", + "i18nKey": "intr_item_name_70006", + "detailI18nKey": "intr_item_describe_70006", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70007": { + "itemId": "item^70007", + "name": "55级橙色饰品箱", + "i18nKey": "intr_item_name_70007", + "detailI18nKey": "intr_item_describe_70007", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70008": { + "itemId": "item^70008", + "name": "60级橙色饰品箱", + "i18nKey": "intr_item_name_70008", + "detailI18nKey": "intr_item_describe_70008", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70009": { + "itemId": "item^70009", + "name": "65级橙色饰品箱", + "i18nKey": "intr_item_name_70009", + "detailI18nKey": "intr_item_describe_70009", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70010": { + "itemId": "item^70010", + "name": "70级橙色饰品箱", + "i18nKey": "intr_item_name_70010", + "detailI18nKey": "intr_item_describe_70010", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70011": { + "itemId": "item^70011", + "name": "75级橙色饰品箱", + "i18nKey": "intr_item_name_70011", + "detailI18nKey": "intr_item_describe_70011", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70012": { + "itemId": "item^70012", + "name": "80级橙色饰品箱", + "i18nKey": "intr_item_name_70012", + "detailI18nKey": "intr_item_describe_70012", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70013": { + "itemId": "item^70013", + "name": "85级橙色饰品箱", + "i18nKey": "intr_item_name_70013", + "detailI18nKey": "intr_item_describe_70013", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70014": { + "itemId": "item^70014", + "name": "90级橙色饰品箱", + "i18nKey": "intr_item_name_70014", + "detailI18nKey": "intr_item_describe_70014", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70015": { + "itemId": "item^70015", + "name": "95级橙色饰品箱", + "i18nKey": "intr_item_name_70015", + "detailI18nKey": "intr_item_describe_70015", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70016": { + "itemId": "item^70016", + "name": "100级橙色饰品箱", + "i18nKey": "intr_item_name_70016", + "detailI18nKey": "intr_item_describe_70016", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70017": { + "itemId": "item^70017", + "name": "25级紫色饰品箱", + "i18nKey": "intr_item_name_70017", + "detailI18nKey": "intr_item_describe_70017", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70018": { + "itemId": "item^70018", + "name": "30级紫色饰品箱", + "i18nKey": "intr_item_name_70018", + "detailI18nKey": "intr_item_describe_70018", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70019": { + "itemId": "item^70019", + "name": "35级紫色饰品箱", + "i18nKey": "intr_item_name_70019", + "detailI18nKey": "intr_item_describe_70019", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70020": { + "itemId": "item^70020", + "name": "40级紫色饰品箱", + "i18nKey": "intr_item_name_70020", + "detailI18nKey": "intr_item_describe_70020", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70021": { + "itemId": "item^70021", + "name": "45级紫色饰品箱", + "i18nKey": "intr_item_name_70021", + "detailI18nKey": "intr_item_describe_70021", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70022": { + "itemId": "item^70022", + "name": "50级紫色饰品箱", + "i18nKey": "intr_item_name_70022", + "detailI18nKey": "intr_item_describe_70022", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70023": { + "itemId": "item^70023", + "name": "55级紫色饰品箱", + "i18nKey": "intr_item_name_70023", + "detailI18nKey": "intr_item_describe_70023", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70024": { + "itemId": "item^70024", + "name": "60级紫色饰品箱", + "i18nKey": "intr_item_name_70024", + "detailI18nKey": "intr_item_describe_70024", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70025": { + "itemId": "item^70025", + "name": "65级紫色饰品箱", + "i18nKey": "intr_item_name_70025", + "detailI18nKey": "intr_item_describe_70025", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70026": { + "itemId": "item^70026", + "name": "70级紫色饰品箱", + "i18nKey": "intr_item_name_70026", + "detailI18nKey": "intr_item_describe_70026", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70027": { + "itemId": "item^70027", + "name": "75级紫色饰品箱", + "i18nKey": "intr_item_name_70027", + "detailI18nKey": "intr_item_describe_70027", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70028": { + "itemId": "item^70028", + "name": "80级紫色饰品箱", + "i18nKey": "intr_item_name_70028", + "detailI18nKey": "intr_item_describe_70028", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70029": { + "itemId": "item^70029", + "name": "85级紫色饰品箱", + "i18nKey": "intr_item_name_70029", + "detailI18nKey": "intr_item_describe_70029", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70030": { + "itemId": "item^70030", + "name": "90级紫色饰品箱", + "i18nKey": "intr_item_name_70030", + "detailI18nKey": "intr_item_describe_70030", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70031": { + "itemId": "item^70031", + "name": "95级紫色饰品箱", + "i18nKey": "intr_item_name_70031", + "detailI18nKey": "intr_item_describe_70031", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70032": { + "itemId": "item^70032", + "name": "100级紫色饰品箱", + "i18nKey": "intr_item_name_70032", + "detailI18nKey": "intr_item_describe_70032", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70033": { + "itemId": "item^70033", + "name": "25级蓝色饰品箱", + "i18nKey": "intr_item_name_70033", + "detailI18nKey": "intr_item_describe_70033", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70034": { + "itemId": "item^70034", + "name": "30级蓝色饰品箱", + "i18nKey": "intr_item_name_70034", + "detailI18nKey": "intr_item_describe_70034", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70035": { + "itemId": "item^70035", + "name": "35级蓝色饰品箱", + "i18nKey": "intr_item_name_70035", + "detailI18nKey": "intr_item_describe_70035", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70036": { + "itemId": "item^70036", + "name": "40级蓝色饰品箱", + "i18nKey": "intr_item_name_70036", + "detailI18nKey": "intr_item_describe_70036", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70037": { + "itemId": "item^70037", + "name": "45级蓝色饰品箱", + "i18nKey": "intr_item_name_70037", + "detailI18nKey": "intr_item_describe_70037", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70038": { + "itemId": "item^70038", + "name": "50级蓝色饰品箱", + "i18nKey": "intr_item_name_70038", + "detailI18nKey": "intr_item_describe_70038", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70039": { + "itemId": "item^70039", + "name": "55级蓝色饰品箱", + "i18nKey": "intr_item_name_70039", + "detailI18nKey": "intr_item_describe_70039", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70040": { + "itemId": "item^70040", + "name": "60级蓝色饰品箱", + "i18nKey": "intr_item_name_70040", + "detailI18nKey": "intr_item_describe_70040", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70041": { + "itemId": "item^70041", + "name": "65级蓝色饰品箱", + "i18nKey": "intr_item_name_70041", + "detailI18nKey": "intr_item_describe_70041", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70042": { + "itemId": "item^70042", + "name": "70级蓝色饰品箱", + "i18nKey": "intr_item_name_70042", + "detailI18nKey": "intr_item_describe_70042", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70043": { + "itemId": "item^70043", + "name": "75级蓝色饰品箱", + "i18nKey": "intr_item_name_70043", + "detailI18nKey": "intr_item_describe_70043", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70044": { + "itemId": "item^70044", + "name": "80级蓝色饰品箱", + "i18nKey": "intr_item_name_70044", + "detailI18nKey": "intr_item_describe_70044", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70045": { + "itemId": "item^70045", + "name": "85级蓝色饰品箱", + "i18nKey": "intr_item_name_70045", + "detailI18nKey": "intr_item_describe_70045", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70046": { + "itemId": "item^70046", + "name": "90级蓝色饰品箱", + "i18nKey": "intr_item_name_70046", + "detailI18nKey": "intr_item_describe_70046", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70047": { + "itemId": "item^70047", + "name": "95级蓝色饰品箱", + "i18nKey": "intr_item_name_70047", + "detailI18nKey": "intr_item_describe_70047", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70048": { + "itemId": "item^70048", + "name": "100级蓝色饰品箱", + "i18nKey": "intr_item_name_70048", + "detailI18nKey": "intr_item_describe_70048", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70049": { + "itemId": "item^70049", + "name": "25级绿色饰品箱", + "i18nKey": "intr_item_name_70049", + "detailI18nKey": "intr_item_describe_70049", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70050": { + "itemId": "item^70050", + "name": "30级绿色饰品箱", + "i18nKey": "intr_item_name_70050", + "detailI18nKey": "intr_item_describe_70050", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70051": { + "itemId": "item^70051", + "name": "35级绿色饰品箱", + "i18nKey": "intr_item_name_70051", + "detailI18nKey": "intr_item_describe_70051", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70052": { + "itemId": "item^70052", + "name": "40级绿色饰品箱", + "i18nKey": "intr_item_name_70052", + "detailI18nKey": "intr_item_describe_70052", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70053": { + "itemId": "item^70053", + "name": "45级绿色饰品箱", + "i18nKey": "intr_item_name_70053", + "detailI18nKey": "intr_item_describe_70053", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70054": { + "itemId": "item^70054", + "name": "50级绿色饰品箱", + "i18nKey": "intr_item_name_70054", + "detailI18nKey": "intr_item_describe_70054", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70055": { + "itemId": "item^70055", + "name": "55级绿色饰品箱", + "i18nKey": "intr_item_name_70055", + "detailI18nKey": "intr_item_describe_70055", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70056": { + "itemId": "item^70056", + "name": "60级绿色饰品箱", + "i18nKey": "intr_item_name_70056", + "detailI18nKey": "intr_item_describe_70056", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70057": { + "itemId": "item^70057", + "name": "65级绿色饰品箱", + "i18nKey": "intr_item_name_70057", + "detailI18nKey": "intr_item_describe_70057", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70058": { + "itemId": "item^70058", + "name": "70级绿色饰品箱", + "i18nKey": "intr_item_name_70058", + "detailI18nKey": "intr_item_describe_70058", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70059": { + "itemId": "item^70059", + "name": "75级绿色饰品箱", + "i18nKey": "intr_item_name_70059", + "detailI18nKey": "intr_item_describe_70059", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70060": { + "itemId": "item^70060", + "name": "80级绿色饰品箱", + "i18nKey": "intr_item_name_70060", + "detailI18nKey": "intr_item_describe_70060", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70061": { + "itemId": "item^70061", + "name": "85级绿色饰品箱", + "i18nKey": "intr_item_name_70061", + "detailI18nKey": "intr_item_describe_70061", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70062": { + "itemId": "item^70062", + "name": "90级绿色饰品箱", + "i18nKey": "intr_item_name_70062", + "detailI18nKey": "intr_item_describe_70062", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70063": { + "itemId": "item^70063", + "name": "95级绿色饰品箱", + "i18nKey": "intr_item_name_70063", + "detailI18nKey": "intr_item_describe_70063", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "item^70064": { + "itemId": "item^70064", + "name": "100级绿色饰品箱", + "i18nKey": "intr_item_name_70064", + "detailI18nKey": "intr_item_describe_70064", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^1001": { + "itemId": "equip^1001", + "name": "棉布头盔", + "i18nKey": "intr_equip_name_1001", + "detailI18nKey": "intr_equip_des_1001", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^1002": { + "itemId": "equip^1002", + "name": "皮头盔", + "i18nKey": "intr_equip_name_1002", + "detailI18nKey": "intr_equip_des_1002", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^1003": { + "itemId": "equip^1003", + "name": "黑手头盔", + "i18nKey": "intr_equip_name_1003", + "detailI18nKey": "intr_equip_des_1003", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^1004": { + "itemId": "equip^1004", + "name": "摩托头盔", + "i18nKey": "intr_equip_name_1004", + "detailI18nKey": "intr_equip_des_1004", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^1005": { + "itemId": "equip^1005", + "name": "奇袭头盔", + "i18nKey": "intr_equip_name_1005", + "detailI18nKey": "intr_equip_des_1005", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^1006": { + "itemId": "equip^1006", + "name": "防暴头盔", + "i18nKey": "intr_equip_name_1006", + "detailI18nKey": "intr_equip_des_1006", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^1007": { + "itemId": "equip^1007", + "name": "飞车头盔", + "i18nKey": "intr_equip_name_1007", + "detailI18nKey": "intr_equip_des_1007", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^1008": { + "itemId": "equip^1008", + "name": "海贼帽", + "i18nKey": "intr_equip_name_1008", + "detailI18nKey": "intr_equip_des_1008", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^1009": { + "itemId": "equip^1009", + "name": "头目头盔", + "i18nKey": "intr_equip_name_1009", + "detailI18nKey": "intr_equip_des_1009", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^1010": { + "itemId": "equip^1010", + "name": "夜行帽", + "i18nKey": "intr_equip_name_1010", + "detailI18nKey": "intr_equip_des_1010", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^2001": { + "itemId": "equip^2001", + "name": "棉布背心", + "i18nKey": "intr_equip_name_2001", + "detailI18nKey": "intr_equip_des_2001", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^2002": { + "itemId": "equip^2002", + "name": "皮背心", + "i18nKey": "intr_equip_name_2002", + "detailI18nKey": "intr_equip_des_2002", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^2003": { + "itemId": "equip^2003", + "name": "黑手背心", + "i18nKey": "intr_equip_name_2003", + "detailI18nKey": "intr_equip_des_2003", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^2004": { + "itemId": "equip^2004", + "name": "摩托背心", + "i18nKey": "intr_equip_name_2004", + "detailI18nKey": "intr_equip_des_2004", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^2005": { + "itemId": "equip^2005", + "name": "奇袭背心", + "i18nKey": "intr_equip_name_2005", + "detailI18nKey": "intr_equip_des_2005", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^2006": { + "itemId": "equip^2006", + "name": "防暴背心", + "i18nKey": "intr_equip_name_2006", + "detailI18nKey": "intr_equip_des_2006", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^2007": { + "itemId": "equip^2007", + "name": "飞车背心", + "i18nKey": "intr_equip_name_2007", + "detailI18nKey": "intr_equip_des_2007", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^2008": { + "itemId": "equip^2008", + "name": "海贼背心", + "i18nKey": "intr_equip_name_2008", + "detailI18nKey": "intr_equip_des_2008", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^2009": { + "itemId": "equip^2009", + "name": "头目背心", + "i18nKey": "intr_equip_name_2009", + "detailI18nKey": "intr_equip_des_2009", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^2010": { + "itemId": "equip^2010", + "name": "夜行背心", + "i18nKey": "intr_equip_name_2010", + "detailI18nKey": "intr_equip_des_2010", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^3001": { + "itemId": "equip^3001", + "name": "棉布手套", + "i18nKey": "intr_equip_name_3001", + "detailI18nKey": "intr_equip_des_3001", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^3002": { + "itemId": "equip^3002", + "name": "皮手套", + "i18nKey": "intr_equip_name_3002", + "detailI18nKey": "intr_equip_des_3002", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^3003": { + "itemId": "equip^3003", + "name": "黑手背心", + "i18nKey": "intr_equip_name_3003", + "detailI18nKey": "intr_equip_des_3003", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^3004": { + "itemId": "equip^3004", + "name": "摩托手套", + "i18nKey": "intr_equip_name_3004", + "detailI18nKey": "intr_equip_des_3004", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^3005": { + "itemId": "equip^3005", + "name": "奇袭手套", + "i18nKey": "intr_equip_name_3005", + "detailI18nKey": "intr_equip_des_3005", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^3006": { + "itemId": "equip^3006", + "name": "防暴手套", + "i18nKey": "intr_equip_name_3006", + "detailI18nKey": "intr_equip_des_3006", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^3007": { + "itemId": "equip^3007", + "name": "飞车手套", + "i18nKey": "intr_equip_name_3007", + "detailI18nKey": "intr_equip_des_3007", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^3008": { + "itemId": "equip^3008", + "name": "海贼手套", + "i18nKey": "intr_equip_name_3008", + "detailI18nKey": "intr_equip_des_3008", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^3009": { + "itemId": "equip^3009", + "name": "头目手套", + "i18nKey": "intr_equip_name_3009", + "detailI18nKey": "intr_equip_des_3009", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^3010": { + "itemId": "equip^3010", + "name": "夜行手套", + "i18nKey": "intr_equip_name_3010", + "detailI18nKey": "intr_equip_des_3010", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^4001": { + "itemId": "equip^4001", + "name": "棉布战靴", + "i18nKey": "intr_equip_name_4001", + "detailI18nKey": "intr_equip_des_4001", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^4002": { + "itemId": "equip^4002", + "name": "皮战靴", + "i18nKey": "intr_equip_name_4002", + "detailI18nKey": "intr_equip_des_4002", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^4003": { + "itemId": "equip^4003", + "name": "黑手战靴", + "i18nKey": "intr_equip_name_4003", + "detailI18nKey": "intr_equip_des_4003", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^4004": { + "itemId": "equip^4004", + "name": "摩托战靴", + "i18nKey": "intr_equip_name_4004", + "detailI18nKey": "intr_equip_des_4004", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^4005": { + "itemId": "equip^4005", + "name": "奇袭战靴", + "i18nKey": "intr_equip_name_4005", + "detailI18nKey": "intr_equip_des_4005", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^4006": { + "itemId": "equip^4006", + "name": "防暴战靴", + "i18nKey": "intr_equip_name_4006", + "detailI18nKey": "intr_equip_des_4006", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^4007": { + "itemId": "equip^4007", + "name": "飞车战靴", + "i18nKey": "intr_equip_name_4007", + "detailI18nKey": "intr_equip_des_4007", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^4008": { + "itemId": "equip^4008", + "name": "海贼战靴", + "i18nKey": "intr_equip_name_4008", + "detailI18nKey": "intr_equip_des_4008", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^4009": { + "itemId": "equip^4009", + "name": "头目战靴", + "i18nKey": "intr_equip_name_4009", + "detailI18nKey": "intr_equip_des_4009", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "equip^4010": { + "itemId": "equip^4010", + "name": "夜行战靴", + "i18nKey": "intr_equip_name_4010", + "detailI18nKey": "intr_equip_des_4010", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "equip", + "typeName": "装备", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^2001": { + "itemId": "peijian^2001", + "name": "廉价的通讯耳机", + "i18nKey": "pj_name_2001", + "detailI18nKey": "pj_des_2001", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^2002": { + "itemId": "peijian^2002", + "name": "廉价的匪战护膝", + "i18nKey": "pj_name_2002", + "detailI18nKey": "pj_des_2002", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^2003": { + "itemId": "peijian^2003", + "name": "廉价的匪战护肘", + "i18nKey": "pj_name_2003", + "detailI18nKey": "pj_des_2003", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^2004": { + "itemId": "peijian^2004", + "name": "廉价的防护面罩", + "i18nKey": "pj_name_2004", + "detailI18nKey": "pj_des_2004", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^2005": { + "itemId": "peijian^2005", + "name": "廉价的巡逻背包", + "i18nKey": "pj_name_2005", + "detailI18nKey": "pj_des_2005", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^2006": { + "itemId": "peijian^2006", + "name": "廉价的通讯护目镜", + "i18nKey": "pj_name_2006", + "detailI18nKey": "pj_des_2006", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^3001": { + "itemId": "peijian^3001", + "name": "优良的通讯耳机", + "i18nKey": "pj_name_3001", + "detailI18nKey": "pj_des_3001", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^3002": { + "itemId": "peijian^3002", + "name": "优良的匪战护膝", + "i18nKey": "pj_name_3002", + "detailI18nKey": "pj_des_3002", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^3003": { + "itemId": "peijian^3003", + "name": "优良的匪战护肘", + "i18nKey": "pj_name_3003", + "detailI18nKey": "pj_des_3003", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^3004": { + "itemId": "peijian^3004", + "name": "优良的防护面罩", + "i18nKey": "pj_name_3004", + "detailI18nKey": "pj_des_3004", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^3005": { + "itemId": "peijian^3005", + "name": "优良的巡逻背包", + "i18nKey": "pj_name_3005", + "detailI18nKey": "pj_des_3005", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^3006": { + "itemId": "peijian^3006", + "name": "优良的通讯护目镜", + "i18nKey": "pj_name_3006", + "detailI18nKey": "pj_des_3006", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4001": { + "itemId": "peijian^4001", + "name": "绿蜥·通讯耳机", + "i18nKey": "pj_name_4001", + "detailI18nKey": "pj_des_4001", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4002": { + "itemId": "peijian^4002", + "name": "绿蜥·匪战护膝", + "i18nKey": "pj_name_4002", + "detailI18nKey": "pj_des_4002", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4003": { + "itemId": "peijian^4003", + "name": "绿蜥·匪战护肘", + "i18nKey": "pj_name_4003", + "detailI18nKey": "pj_des_4003", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4004": { + "itemId": "peijian^4004", + "name": "绿蜥·防护面罩", + "i18nKey": "pj_name_4004", + "detailI18nKey": "pj_des_4004", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4005": { + "itemId": "peijian^4005", + "name": "绿蜥·巡逻背包", + "i18nKey": "pj_name_4005", + "detailI18nKey": "pj_des_4005", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4006": { + "itemId": "peijian^4006", + "name": "绿蜥·通讯护目镜", + "i18nKey": "pj_name_4006", + "detailI18nKey": "pj_des_4006", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4007": { + "itemId": "peijian^4007", + "name": "陆犬·通讯耳机", + "i18nKey": "pj_name_4007", + "detailI18nKey": "pj_des_4007", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4008": { + "itemId": "peijian^4008", + "name": "陆犬·匪战护膝", + "i18nKey": "pj_name_4008", + "detailI18nKey": "pj_des_4008", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4009": { + "itemId": "peijian^4009", + "name": "陆犬·匪战护肘", + "i18nKey": "pj_name_4009", + "detailI18nKey": "pj_des_4009", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4010": { + "itemId": "peijian^4010", + "name": "陆犬·防护面罩", + "i18nKey": "pj_name_4010", + "detailI18nKey": "pj_des_4010", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4011": { + "itemId": "peijian^4011", + "name": "陆犬·巡逻背包", + "i18nKey": "pj_name_4011", + "detailI18nKey": "pj_des_4011", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4012": { + "itemId": "peijian^4012", + "name": "陆犬·通讯护目镜", + "i18nKey": "pj_name_4012", + "detailI18nKey": "pj_des_4012", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4013": { + "itemId": "peijian^4013", + "name": "青鸟·通讯耳机", + "i18nKey": "pj_name_4013", + "detailI18nKey": "pj_des_4013", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4014": { + "itemId": "peijian^4014", + "name": "青鸟·匪战护膝", + "i18nKey": "pj_name_4014", + "detailI18nKey": "pj_des_4014", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4015": { + "itemId": "peijian^4015", + "name": "青鸟·匪战护肘", + "i18nKey": "pj_name_4015", + "detailI18nKey": "pj_des_4015", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4016": { + "itemId": "peijian^4016", + "name": "青鸟·防护面罩", + "i18nKey": "pj_name_4016", + "detailI18nKey": "pj_des_4016", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4017": { + "itemId": "peijian^4017", + "name": "青鸟·巡逻背包", + "i18nKey": "pj_name_4017", + "detailI18nKey": "pj_des_4017", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4018": { + "itemId": "peijian^4018", + "name": "青鸟·通讯护目镜", + "i18nKey": "pj_name_4018", + "detailI18nKey": "pj_des_4018", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4019": { + "itemId": "peijian^4019", + "name": "赤狐·通讯耳机", + "i18nKey": "pj_name_4019", + "detailI18nKey": "pj_des_4019", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4020": { + "itemId": "peijian^4020", + "name": "赤狐·匪战护膝", + "i18nKey": "pj_name_4020", + "detailI18nKey": "pj_des_4020", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4021": { + "itemId": "peijian^4021", + "name": "赤狐·匪战护肘", + "i18nKey": "pj_name_4021", + "detailI18nKey": "pj_des_4021", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4022": { + "itemId": "peijian^4022", + "name": "赤狐·防护面罩", + "i18nKey": "pj_name_4022", + "detailI18nKey": "pj_des_4022", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4023": { + "itemId": "peijian^4023", + "name": "赤狐·巡逻背包", + "i18nKey": "pj_name_4023", + "detailI18nKey": "pj_des_4023", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4024": { + "itemId": "peijian^4024", + "name": "赤狐·通讯护目镜", + "i18nKey": "pj_name_4024", + "detailI18nKey": "pj_des_4024", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4025": { + "itemId": "peijian^4025", + "name": "风蝶·通讯耳机", + "i18nKey": "pj_name_4025", + "detailI18nKey": "pj_des_4025", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4026": { + "itemId": "peijian^4026", + "name": "风蝶·匪战护膝", + "i18nKey": "pj_name_4026", + "detailI18nKey": "pj_des_4026", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4027": { + "itemId": "peijian^4027", + "name": "风蝶·匪战护肘", + "i18nKey": "pj_name_4027", + "detailI18nKey": "pj_des_4027", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4028": { + "itemId": "peijian^4028", + "name": "风蝶·防护面罩", + "i18nKey": "pj_name_4028", + "detailI18nKey": "pj_des_4028", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4029": { + "itemId": "peijian^4029", + "name": "风蝶·巡逻背包", + "i18nKey": "pj_name_4029", + "detailI18nKey": "pj_des_4029", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4030": { + "itemId": "peijian^4030", + "name": "风蝶·通讯护目镜", + "i18nKey": "pj_name_4030", + "detailI18nKey": "pj_des_4030", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4031": { + "itemId": "peijian^4031", + "name": "蓝鲸·通讯耳机", + "i18nKey": "pj_name_4031", + "detailI18nKey": "pj_des_4031", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4032": { + "itemId": "peijian^4032", + "name": "蓝鲸·匪战护膝", + "i18nKey": "pj_name_4032", + "detailI18nKey": "pj_des_4032", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4033": { + "itemId": "peijian^4033", + "name": "蓝鲸·匪战护肘", + "i18nKey": "pj_name_4033", + "detailI18nKey": "pj_des_4033", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4034": { + "itemId": "peijian^4034", + "name": "蓝鲸·防护面罩", + "i18nKey": "pj_name_4034", + "detailI18nKey": "pj_des_4034", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4035": { + "itemId": "peijian^4035", + "name": "蓝鲸·巡逻背包", + "i18nKey": "pj_name_4035", + "detailI18nKey": "pj_des_4035", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4036": { + "itemId": "peijian^4036", + "name": "蓝鲸·通讯护目镜", + "i18nKey": "pj_name_4036", + "detailI18nKey": "pj_des_4036", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4037": { + "itemId": "peijian^4037", + "name": "沙蛇·通讯耳机", + "i18nKey": "pj_name_4037", + "detailI18nKey": "pj_des_4037", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4038": { + "itemId": "peijian^4038", + "name": "沙蛇·匪战护膝", + "i18nKey": "pj_name_4038", + "detailI18nKey": "pj_des_4038", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4039": { + "itemId": "peijian^4039", + "name": "沙蛇·匪战护肘", + "i18nKey": "pj_name_4039", + "detailI18nKey": "pj_des_4039", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4040": { + "itemId": "peijian^4040", + "name": "沙蛇·防护面罩", + "i18nKey": "pj_name_4040", + "detailI18nKey": "pj_des_4040", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4041": { + "itemId": "peijian^4041", + "name": "沙蛇·巡逻背包", + "i18nKey": "pj_name_4041", + "detailI18nKey": "pj_des_4041", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4042": { + "itemId": "peijian^4042", + "name": "沙蛇·通讯护目镜", + "i18nKey": "pj_name_4042", + "detailI18nKey": "pj_des_4042", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4043": { + "itemId": "peijian^4043", + "name": "黑鲨·通讯耳机", + "i18nKey": "pj_name_4043", + "detailI18nKey": "pj_des_4043", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4044": { + "itemId": "peijian^4044", + "name": "黑鲨·匪战护膝", + "i18nKey": "pj_name_4044", + "detailI18nKey": "pj_des_4044", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4045": { + "itemId": "peijian^4045", + "name": "黑鲨·匪战护肘", + "i18nKey": "pj_name_4045", + "detailI18nKey": "pj_des_4045", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4046": { + "itemId": "peijian^4046", + "name": "黑鲨·防护面罩", + "i18nKey": "pj_name_4046", + "detailI18nKey": "pj_des_4046", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4047": { + "itemId": "peijian^4047", + "name": "黑鲨·巡逻背包", + "i18nKey": "pj_name_4047", + "detailI18nKey": "pj_des_4047", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^4048": { + "itemId": "peijian^4048", + "name": "黑鲨·通讯护目镜", + "i18nKey": "pj_name_4048", + "detailI18nKey": "pj_des_4048", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5001": { + "itemId": "peijian^5001", + "name": "绿蜥·通讯耳机", + "i18nKey": "pj_name_5001", + "detailI18nKey": "pj_des_5001", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5002": { + "itemId": "peijian^5002", + "name": "绿蜥·匪战护膝", + "i18nKey": "pj_name_5002", + "detailI18nKey": "pj_des_5002", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5003": { + "itemId": "peijian^5003", + "name": "绿蜥·匪战护肘", + "i18nKey": "pj_name_5003", + "detailI18nKey": "pj_des_5003", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5004": { + "itemId": "peijian^5004", + "name": "绿蜥·防护面罩", + "i18nKey": "pj_name_5004", + "detailI18nKey": "pj_des_5004", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5005": { + "itemId": "peijian^5005", + "name": "绿蜥·巡逻背包", + "i18nKey": "pj_name_5005", + "detailI18nKey": "pj_des_5005", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5006": { + "itemId": "peijian^5006", + "name": "绿蜥·通讯护目镜", + "i18nKey": "pj_name_5006", + "detailI18nKey": "pj_des_5006", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5007": { + "itemId": "peijian^5007", + "name": "陆犬·通讯耳机", + "i18nKey": "pj_name_5007", + "detailI18nKey": "pj_des_5007", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5008": { + "itemId": "peijian^5008", + "name": "陆犬·匪战护膝", + "i18nKey": "pj_name_5008", + "detailI18nKey": "pj_des_5008", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5009": { + "itemId": "peijian^5009", + "name": "陆犬·匪战护肘", + "i18nKey": "pj_name_5009", + "detailI18nKey": "pj_des_5009", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5010": { + "itemId": "peijian^5010", + "name": "陆犬·防护面罩", + "i18nKey": "pj_name_5010", + "detailI18nKey": "pj_des_5010", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5011": { + "itemId": "peijian^5011", + "name": "陆犬·巡逻背包", + "i18nKey": "pj_name_5011", + "detailI18nKey": "pj_des_5011", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5012": { + "itemId": "peijian^5012", + "name": "陆犬·通讯护目镜", + "i18nKey": "pj_name_5012", + "detailI18nKey": "pj_des_5012", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5013": { + "itemId": "peijian^5013", + "name": "青鸟·通讯耳机", + "i18nKey": "pj_name_5013", + "detailI18nKey": "pj_des_5013", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5014": { + "itemId": "peijian^5014", + "name": "青鸟·匪战护膝", + "i18nKey": "pj_name_5014", + "detailI18nKey": "pj_des_5014", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5015": { + "itemId": "peijian^5015", + "name": "青鸟·匪战护肘", + "i18nKey": "pj_name_5015", + "detailI18nKey": "pj_des_5015", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5016": { + "itemId": "peijian^5016", + "name": "青鸟·防护面罩", + "i18nKey": "pj_name_5016", + "detailI18nKey": "pj_des_5016", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5017": { + "itemId": "peijian^5017", + "name": "青鸟·巡逻背包", + "i18nKey": "pj_name_5017", + "detailI18nKey": "pj_des_5017", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5018": { + "itemId": "peijian^5018", + "name": "青鸟·通讯护目镜", + "i18nKey": "pj_name_5018", + "detailI18nKey": "pj_des_5018", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5019": { + "itemId": "peijian^5019", + "name": "赤狐·通讯耳机", + "i18nKey": "pj_name_5019", + "detailI18nKey": "pj_des_5019", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5020": { + "itemId": "peijian^5020", + "name": "赤狐·匪战护膝", + "i18nKey": "pj_name_5020", + "detailI18nKey": "pj_des_5020", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5021": { + "itemId": "peijian^5021", + "name": "赤狐·匪战护肘", + "i18nKey": "pj_name_5021", + "detailI18nKey": "pj_des_5021", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5022": { + "itemId": "peijian^5022", + "name": "赤狐·防护面罩", + "i18nKey": "pj_name_5022", + "detailI18nKey": "pj_des_5022", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5023": { + "itemId": "peijian^5023", + "name": "赤狐·巡逻背包", + "i18nKey": "pj_name_5023", + "detailI18nKey": "pj_des_5023", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5024": { + "itemId": "peijian^5024", + "name": "赤狐·通讯护目镜", + "i18nKey": "pj_name_5024", + "detailI18nKey": "pj_des_5024", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5025": { + "itemId": "peijian^5025", + "name": "风蝶·通讯耳机", + "i18nKey": "pj_name_5025", + "detailI18nKey": "pj_des_5025", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5026": { + "itemId": "peijian^5026", + "name": "风蝶·匪战护膝", + "i18nKey": "pj_name_5026", + "detailI18nKey": "pj_des_5026", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5027": { + "itemId": "peijian^5027", + "name": "风蝶·匪战护肘", + "i18nKey": "pj_name_5027", + "detailI18nKey": "pj_des_5027", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5028": { + "itemId": "peijian^5028", + "name": "风蝶·防护面罩", + "i18nKey": "pj_name_5028", + "detailI18nKey": "pj_des_5028", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5029": { + "itemId": "peijian^5029", + "name": "风蝶·巡逻背包", + "i18nKey": "pj_name_5029", + "detailI18nKey": "pj_des_5029", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5030": { + "itemId": "peijian^5030", + "name": "风蝶·通讯护目镜", + "i18nKey": "pj_name_5030", + "detailI18nKey": "pj_des_5030", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5031": { + "itemId": "peijian^5031", + "name": "蓝鲸·通讯耳机", + "i18nKey": "pj_name_5031", + "detailI18nKey": "pj_des_5031", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5032": { + "itemId": "peijian^5032", + "name": "蓝鲸·匪战护膝", + "i18nKey": "pj_name_5032", + "detailI18nKey": "pj_des_5032", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5033": { + "itemId": "peijian^5033", + "name": "蓝鲸·匪战护肘", + "i18nKey": "pj_name_5033", + "detailI18nKey": "pj_des_5033", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5034": { + "itemId": "peijian^5034", + "name": "蓝鲸·防护面罩", + "i18nKey": "pj_name_5034", + "detailI18nKey": "pj_des_5034", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5035": { + "itemId": "peijian^5035", + "name": "蓝鲸·巡逻背包", + "i18nKey": "pj_name_5035", + "detailI18nKey": "pj_des_5035", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5036": { + "itemId": "peijian^5036", + "name": "蓝鲸·通讯护目镜", + "i18nKey": "pj_name_5036", + "detailI18nKey": "pj_des_5036", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5037": { + "itemId": "peijian^5037", + "name": "沙蛇·通讯耳机", + "i18nKey": "pj_name_5037", + "detailI18nKey": "pj_des_5037", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5038": { + "itemId": "peijian^5038", + "name": "沙蛇·匪战护膝", + "i18nKey": "pj_name_5038", + "detailI18nKey": "pj_des_5038", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5039": { + "itemId": "peijian^5039", + "name": "沙蛇·匪战护肘", + "i18nKey": "pj_name_5039", + "detailI18nKey": "pj_des_5039", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5040": { + "itemId": "peijian^5040", + "name": "沙蛇·防护面罩", + "i18nKey": "pj_name_5040", + "detailI18nKey": "pj_des_5040", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5041": { + "itemId": "peijian^5041", + "name": "沙蛇·巡逻背包", + "i18nKey": "pj_name_5041", + "detailI18nKey": "pj_des_5041", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5042": { + "itemId": "peijian^5042", + "name": "沙蛇·通讯护目镜", + "i18nKey": "pj_name_5042", + "detailI18nKey": "pj_des_5042", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5043": { + "itemId": "peijian^5043", + "name": "黑鲨·通讯耳机", + "i18nKey": "pj_name_5043", + "detailI18nKey": "pj_des_5043", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5044": { + "itemId": "peijian^5044", + "name": "黑鲨·匪战护膝", + "i18nKey": "pj_name_5044", + "detailI18nKey": "pj_des_5044", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5045": { + "itemId": "peijian^5045", + "name": "黑鲨·匪战护肘", + "i18nKey": "pj_name_5045", + "detailI18nKey": "pj_des_5045", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5046": { + "itemId": "peijian^5046", + "name": "黑鲨·防护面罩", + "i18nKey": "pj_name_5046", + "detailI18nKey": "pj_des_5046", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5047": { + "itemId": "peijian^5047", + "name": "黑鲨·巡逻背包", + "i18nKey": "pj_name_5047", + "detailI18nKey": "pj_des_5047", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^5048": { + "itemId": "peijian^5048", + "name": "黑鲨·通讯护目镜", + "i18nKey": "pj_name_5048", + "detailI18nKey": "pj_des_5048", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + }, + "peijian^6001": { + "itemId": "peijian^6001", + "name": "信息软盘", + "i18nKey": "pj_name_6001", + "detailI18nKey": "pj_des_6001", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 500, + "typeId": "peijian", + "typeName": "配件", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": "{\"storeDisplayPrice\": null,\"storeCategory\": \"\",\"setQuantity\":1,\"purchaseLimit\":0,\"sellMinCp\":100,\"sellMaxCp\":500,\"rarity\":2" + } +} \ No newline at end of file diff --git a/src/json/ganbutexun.json b/src/json/ganbutexun.json new file mode 100644 index 0000000..d55310a --- /dev/null +++ b/src/json/ganbutexun.json @@ -0,0 +1,662 @@ +{ + "3001": { + "heroid": 3001, + "cond": { + "mapId": 60 + }, + "need": { + "a": "item", + "t": "6", + "n": 1 + }, + "battle": 501, + "item": 3001, + "prize": [ + { + "a": "item", + "t": "3001", + "n": 1 + } + ] + }, + "3002": { + "heroid": 3002, + "cond": { + "mapId": 60 + }, + "need": { + "a": "item", + "t": "6", + "n": 1 + }, + "battle": 502, + "item": 3002, + "prize": [ + { + "a": "item", + "t": "3002", + "n": 1 + } + ] + }, + "3003": { + "heroid": 3003, + "cond": { + "mapId": 60 + }, + "need": { + "a": "item", + "t": "6", + "n": 1 + }, + "battle": 503, + "item": 3003, + "prize": [ + { + "a": "item", + "t": "3003", + "n": 1 + } + ] + }, + "3004": { + "heroid": 3004, + "cond": { + "mapId": 60 + }, + "need": { + "a": "item", + "t": "6", + "n": 1 + }, + "battle": 504, + "item": 3004, + "prize": [ + { + "a": "item", + "t": "3004", + "n": 1 + } + ] + }, + "3005": { + "heroid": 3005, + "cond": { + "mapId": 60 + }, + "need": { + "a": "item", + "t": "6", + "n": 1 + }, + "battle": 505, + "item": 3005, + "prize": [ + { + "a": "item", + "t": "3005", + "n": 1 + } + ] + }, + "3006": { + "heroid": 3006, + "cond": { + "mapId": 70 + }, + "need": { + "a": "item", + "t": "6", + "n": 1 + }, + "battle": 506, + "item": 3006, + "prize": [ + { + "a": "item", + "t": "3006", + "n": 1 + } + ] + }, + "3007": { + "heroid": 3007, + "cond": { + "mapId": 80 + }, + "need": { + "a": "item", + "t": "6", + "n": 1 + }, + "battle": 507, + "item": 3007, + "prize": [ + { + "a": "item", + "t": "3007", + "n": 1 + } + ] + }, + "3008": { + "heroid": 3008, + "cond": { + "mapId": 90 + }, + "need": { + "a": "item", + "t": "6", + "n": 1 + }, + "battle": 508, + "item": 3008, + "prize": [ + { + "a": "item", + "t": "3008", + "n": 1 + } + ] + }, + "3009": { + "heroid": 3009, + "cond": { + "mapId": 100 + }, + "need": { + "a": "item", + "t": "6", + "n": 1 + }, + "battle": 509, + "item": 3009, + "prize": [ + { + "a": "item", + "t": "3009", + "n": 1 + } + ] + }, + "3010": { + "heroid": 3010, + "cond": { + "mapId": 105 + }, + "need": { + "a": "item", + "t": "6", + "n": 1 + }, + "battle": 510, + "item": 3010, + "prize": [ + { + "a": "item", + "t": "3010", + "n": 1 + } + ] + }, + "3011": { + "heroid": 3011, + "cond": { + "mapId": 110 + }, + "need": { + "a": "item", + "t": "6", + "n": 1 + }, + "battle": 511, + "item": 3011, + "prize": [ + { + "a": "item", + "t": "3011", + "n": 1 + } + ] + }, + "3012": { + "heroid": 3012, + "cond": { + "mapId": 115 + }, + "need": { + "a": "item", + "t": "6", + "n": 1 + }, + "battle": 512, + "item": 3012, + "prize": [ + { + "a": "item", + "t": "3012", + "n": 1 + } + ] + }, + "3013": { + "heroid": 3013, + "cond": { + "mapId": 120 + }, + "need": { + "a": "item", + "t": "6", + "n": 1 + }, + "battle": 513, + "item": 3013, + "prize": [ + { + "a": "item", + "t": "3013", + "n": 1 + } + ] + }, + "3014": { + "heroid": 3014, + "cond": { + "mapId": 125 + }, + "need": { + "a": "item", + "t": "6", + "n": 1 + }, + "battle": 514, + "item": 3014, + "prize": [ + { + "a": "item", + "t": "3014", + "n": 1 + } + ] + }, + "3015": { + "heroid": 3015, + "cond": { + "mapId": 130 + }, + "need": { + "a": "item", + "t": "6", + "n": 1 + }, + "battle": 515, + "item": 3015, + "prize": [ + { + "a": "item", + "t": "3015", + "n": 1 + } + ] + }, + "4001": { + "heroid": 4001, + "cond": { + "mapId": 135 + }, + "need": { + "a": "item", + "t": "6", + "n": 2 + }, + "battle": 516, + "item": 4001, + "prize": [ + { + "a": "item", + "t": "4001", + "n": 1 + } + ] + }, + "4002": { + "heroid": 4002, + "cond": { + "mapId": 140 + }, + "need": { + "a": "item", + "t": "6", + "n": 2 + }, + "battle": 517, + "item": 4002, + "prize": [ + { + "a": "item", + "t": "4002", + "n": 1 + } + ] + }, + "4003": { + "heroid": 4003, + "cond": { + "mapId": 145 + }, + "need": { + "a": "item", + "t": "6", + "n": 2 + }, + "battle": 518, + "item": 4003, + "prize": [ + { + "a": "item", + "t": "4003", + "n": 1 + } + ] + }, + "4004": { + "heroid": 4004, + "cond": { + "mapId": 150 + }, + "need": { + "a": "item", + "t": "6", + "n": 2 + }, + "battle": 519, + "item": 4004, + "prize": [ + { + "a": "item", + "t": "4004", + "n": 1 + } + ] + }, + "4005": { + "heroid": 4005, + "cond": { + "mapId": 155 + }, + "need": { + "a": "item", + "t": "6", + "n": 2 + }, + "battle": 520, + "item": 4005, + "prize": [ + { + "a": "item", + "t": "4005", + "n": 1 + } + ] + }, + "4006": { + "heroid": 4006, + "cond": { + "mapId": 160 + }, + "need": { + "a": "item", + "t": "6", + "n": 2 + }, + "battle": 521, + "item": 4006, + "prize": [ + { + "a": "item", + "t": "4006", + "n": 1 + } + ] + }, + "4007": { + "heroid": 4007, + "cond": { + "mapId": 165 + }, + "need": { + "a": "item", + "t": "6", + "n": 2 + }, + "battle": 522, + "item": 4007, + "prize": [ + { + "a": "item", + "t": "4007", + "n": 1 + } + ] + }, + "4008": { + "heroid": 4008, + "cond": { + "mapId": 170 + }, + "need": { + "a": "item", + "t": "6", + "n": 2 + }, + "battle": 523, + "item": 4008, + "prize": [ + { + "a": "item", + "t": "4008", + "n": 1 + } + ] + }, + "4009": { + "heroid": 4009, + "cond": { + "mapId": 175 + }, + "need": { + "a": "item", + "t": "6", + "n": 2 + }, + "battle": 524, + "item": 4009, + "prize": [ + { + "a": "item", + "t": "4009", + "n": 1 + } + ] + }, + "4010": { + "heroid": 4010, + "cond": { + "mapId": 180 + }, + "need": { + "a": "item", + "t": "6", + "n": 2 + }, + "battle": 525, + "item": 4010, + "prize": [ + { + "a": "item", + "t": "4010", + "n": 1 + } + ] + }, + "4011": { + "heroid": 4011, + "cond": { + "mapId": 185 + }, + "need": { + "a": "item", + "t": "6", + "n": 2 + }, + "battle": 526, + "item": 4011, + "prize": [ + { + "a": "item", + "t": "4011", + "n": 1 + } + ] + }, + "4012": { + "heroid": 4012, + "cond": { + "mapId": 190 + }, + "need": { + "a": "item", + "t": "6", + "n": 2 + }, + "battle": 527, + "item": 4012, + "prize": [ + { + "a": "item", + "t": "4012", + "n": 1 + } + ] + }, + "4013": { + "heroid": 4013, + "cond": { + "mapId": 195 + }, + "need": { + "a": "item", + "t": "6", + "n": 2 + }, + "battle": 528, + "item": 4013, + "prize": [ + { + "a": "item", + "t": "4013", + "n": 1 + } + ] + }, + "4014": { + "heroid": 4014, + "cond": { + "mapId": 200 + }, + "need": { + "a": "item", + "t": "6", + "n": 2 + }, + "battle": 529, + "item": 4014, + "prize": [ + { + "a": "item", + "t": "4014", + "n": 1 + } + ] + }, + "4015": { + "heroid": 4015, + "cond": { + "mapId": 205 + }, + "need": { + "a": "item", + "t": "6", + "n": 2 + }, + "battle": 530, + "item": 4015, + "prize": [ + { + "a": "item", + "t": "4015", + "n": 1 + } + ] + }, + "5001": { + "heroid": 5001, + "cond": { + "mapId": 210 + }, + "need": { + "a": "item", + "t": "6", + "n": 5 + }, + "battle": 531, + "item": 5001, + "prize": [ + { + "a": "item", + "t": "5001", + "n": 1 + } + ] + }, + "5003": { + "heroid": 5003, + "cond": { + "mapId": 210 + }, + "need": { + "a": "item", + "t": "6", + "n": 5 + }, + "battle": 532, + "item": 5003, + "prize": [ + { + "a": "item", + "t": "5003", + "n": 1 + } + ] + }, + "5005": { + "heroid": 5005, + "cond": { + "mapId": 210 + }, + "need": { + "a": "item", + "t": "6", + "n": 5 + }, + "battle": 533, + "item": 5005, + "prize": [ + { + "a": "item", + "t": "5005", + "n": 1 + } + ] + } +} \ No newline at end of file diff --git a/src/json/ganhai.json5 b/src/json/ganhai.json5 new file mode 100644 index 0000000..c65968c --- /dev/null +++ b/src/json/ganhai.json5 @@ -0,0 +1,32 @@ +{ + //船 + ships: [ + { name: 'intr_ganhai_name_1', prize: [{a: 'item', t: '18', n: 5},{a: 'item', t: '12', n: 40},{a: 'item', t: '2', n: 60},{a: 'attr', t: 'jinbi', n: 100000}], ldRatio: 0.3, kshsNeed: [{a: 'attr', t: 'rmbmoney', n: 10}], ldNum: 3, p: 50, time: 120}, + { name: 'intr_ganhai_name_2', prize: [{a: 'item', t: '18', n: 10},{a: 'item', t: '12', n: 60},{a: 'item', t: '2', n: 120},{a: 'attr', t: 'jinbi', n: 200000}], ldRatio: 0.3, kshsNeed: [{a: 'attr', t: 'rmbmoney', n: 20}], ldNum: 3, p: 10, time: 240}, + { name: 'intr_ganhai_name_3', prize: [{a: 'item', t: '18', n: 20},{a: 'item', t: '12', n: 80},{a: 'item', t: '2', n: 190},{a: 'attr', t: 'jinbi', n: 300000}], ldRatio: 0.3, kshsNeed: [{a: 'attr', t: 'rmbmoney', n: 53}], ldNum: 3, p: 2, time: 300}, + { name: 'intr_ganhai_name_4', prize: [{a: 'item', t: '18', n: 30},{a: 'item', t: '12', n: 120},{a: 'item', t: '2', n: 320},{a: 'attr', t: 'jinbi', n: 500000}], ldRatio: 0.3, kshsNeed: [{a: 'attr', t: 'rmbmoney', n: 100}], ldNum: 3, p: 1, time: 360} + ], + //双倍时间 + doubleTime: [ + [36000, 50400], + [64800, 79200] + ], + //每日免费刷新我的商船次数 + refreshNum: 1, + //超过免费次数后的刷新我的商船消耗 + refreshNeed: [{a: 'attr', t: 'rmbmoney', n: 20}], + //最高刷新消耗钻石 + refreshMaxNeed: 100, + //每日掠夺掠夺次数 + fightNum: 5, + //单船被掠夺最大次数 + beBeatenMax: 3, + //每日护送次数 + escortNum: 3, + //每隔x次必定刷顶级船 + num: 5, + //一键最高消耗 + oneClickNeed: [{a: 'attr', t: 'rmbmoney', n: 300}], + //抢夺获得奖励系数 + xishu: 0.3 +} \ No newline at end of file diff --git a/src/json/gonglukuangbiao.json5 b/src/json/gonglukuangbiao.json5 new file mode 100644 index 0000000..ed8d8f2 --- /dev/null +++ b/src/json/gonglukuangbiao.json5 @@ -0,0 +1,75 @@ +{ + config: [ + { + type: 'redName', + need: 71, + killHonor: 0, + round: { + default: 90, + min: 20 + }, + npc: ['30','31','32','33','34','35','36','37','38','39','40','41','42','43','44','45','46','47','48','49','50'] + }, + { + type: 'yellowName', + need: 31, + killHonor: 3, + round: { + default: 50, + min: 10 + }, + npc: ['13','14','15','16','17','18','19','20','21','22','23','24','25','26','27','28','29'] + }, + { + type: 'whiteName', + need: 0, + killHonor: 5, + round: { + default: 20, + min: 5 + }, + npc: ['1','2','3','4','5','6','7','8','9','10','11','12'] + } + ], + //被击败扣除 + killDeduct: 2, + //每天扣除 + timeDeduct: 12, + //碎片掉落组 + drop1: [9], + //普通掉落组 + drop2: [], + //刷新消耗 + refreshNeed: [{a: 'attr', t: 'jinbi', n: 50000}], + //每日初始挑战次数 + fightNum: 3, + //每日vip可购买挑战次数 + vipBuyFightNum: [3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20], + //挑战次数购买消耗 + buyFightNumNeed: [{a: 'attr', t: 'rmbmoney', n: 20},{a: 'attr', t: 'rmbmoney', n: 40},{a: 'attr', t: 'rmbmoney', n: 60},{a: 'attr', t: 'rmbmoney', n: 80},{a: 'attr', t: 'rmbmoney', n: 100},{a: 'attr', t: 'rmbmoney', n: 120},{a: 'attr', t: 'rmbmoney', n: 140},{a: 'attr', t: 'rmbmoney', n: 160},{a: 'attr', t: 'rmbmoney', n: 180},{a: 'attr', t: 'rmbmoney', n: 200},{a: 'attr', t: 'rmbmoney', n: 220},{a: 'attr', t: 'rmbmoney', n: 240},{a: 'attr', t: 'rmbmoney', n: 260},{a: 'attr', t: 'rmbmoney', n: 280},{a: 'attr', t: 'rmbmoney', n: 300},{a: 'attr', t: 'rmbmoney', n: 300},{a: 'attr', t: 'rmbmoney', n: 300},{a: 'attr', t: 'rmbmoney', n: 300},{a: 'attr', t: 'rmbmoney', n: 300},{a: 'attr', t: 'rmbmoney', n: 300}], + //星星数量对应的通缉值范围 + star: { + "1": [0, 20], + "2": [21, 30], + "3": [31, 50], + "4": [51, 70], + "5": [71, 9999], + }, + //通缉值对应的 红白名 + "wanted": { + "0": { "wanted": [0, 30], "addwanted": 5, "spwanted": 10, "jinbi": "lv*200", "index": 0, "fightsppro": [20,10]}, + "1": { "wanted": [31, 70], "addwanted": 3, "spwanted": 5, "jinbi": "lv*400", "index": 1, "fightsppro": [50,15]}, + "2": { "wanted": [71, 9999], "addwanted": 0, "spwanted": 0, "jinbi": "lv*800", "index": 2, "fightsppro": [100,30]} + }, + //可以抢夺玩家的碎片 + "qdusersp": ["3007", "3008", "3009"], + //NPC名称 + npcname: [ + 'jjc_npc_name_1', + 'jjc_npc_name_2', + 'jjc_npc_name_3', + 'jjc_npc_name_4', + 'jjc_npc_name_5', + 'jjc_npc_name_6' + ] +} \ No newline at end of file diff --git a/src/json/group.json b/src/json/group.json new file mode 100644 index 0000000..5d5f0e0 --- /dev/null +++ b/src/json/group.json @@ -0,0 +1,2527 @@ +{ + "hero": [ + { + "id": 1, + "page": 1001, + "group_id": 100101, + "name": "group_group_name_100101", + "member": "1001,1002", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.12 + }, + "describe": "group_group_describe_100101", + "type": "hero" + }, + { + "id": 2, + "page": 1002, + "group_id": 100201, + "name": "group_group_name_100201", + "member": "1002,1001", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.12 + }, + "describe": "group_group_describe_100201", + "type": "hero" + }, + { + "id": 3, + "page": 2001, + "group_id": 200101, + "name": "group_group_name_200101", + "member": "2001,2002", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.12 + }, + "describe": "group_group_describe_200101", + "type": "hero" + }, + { + "id": 4, + "page": 2002, + "group_id": 200201, + "name": "group_group_name_200201", + "member": "2002,2001", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.12 + }, + "describe": "group_group_describe_200201", + "type": "hero" + }, + { + "id": 5, + "page": 3001, + "group_id": 300101, + "name": "group_group_name_300101", + "member": "3001,3005,4015", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_300101", + "type": "hero" + }, + { + "id": 6, + "page": 3001, + "group_id": 300102, + "name": "group_group_name_300102", + "member": "3001,3005,4012", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_300102", + "type": "hero" + }, + { + "id": 7, + "page": 3001, + "group_id": 300103, + "name": "group_group_name_300103", + "member": "3001,3006", + "undefined": "{1}一起上阵,生命+{2}%", + "skill": { + "hppro": 0.17 + }, + "describe": "group_group_describe_300103", + "type": "hero" + }, + { + "id": 8, + "page": 3001, + "group_id": 300104, + "name": "group_group_name_300104", + "member": "3001,4008", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_300104", + "type": "hero" + }, + { + "id": 9, + "page": 3002, + "group_id": 300201, + "name": "group_group_name_300201", + "member": "3002,4009,3010", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_300201", + "type": "hero" + }, + { + "id": 10, + "page": 3002, + "group_id": 300202, + "name": "group_group_name_300202", + "member": "3002,4009,3012", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_300202", + "type": "hero" + }, + { + "id": 11, + "page": 3002, + "group_id": 300203, + "name": "group_group_name_300203", + "member": "3002,3011", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.16 + }, + "describe": "group_group_describe_300203", + "type": "hero" + }, + { + "id": 12, + "page": 3002, + "group_id": 300204, + "name": "group_group_name_300204", + "member": "3002,3014", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.16 + }, + "describe": "group_group_describe_300204", + "type": "hero" + }, + { + "id": 13, + "page": 3003, + "group_id": 300301, + "name": "group_group_name_300301", + "member": "3003,3015,4002", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_300301", + "type": "hero" + }, + { + "id": 14, + "page": 3003, + "group_id": 300302, + "name": "group_group_name_300302", + "member": "3003,4013,4011", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_300302", + "type": "hero" + }, + { + "id": 15, + "page": 3003, + "group_id": 300303, + "name": "group_group_name_300303", + "member": "3003,4005", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.18 + }, + "describe": "group_group_describe_300303", + "type": "hero" + }, + { + "id": 16, + "page": 3003, + "group_id": 300304, + "name": "group_group_name_300304", + "member": "3003,4012", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_300304", + "type": "hero" + }, + { + "id": 17, + "page": 3004, + "group_id": 300401, + "name": "group_group_name_300401", + "member": "3004,4014,4012", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_300401", + "type": "hero" + }, + { + "id": 18, + "page": 3004, + "group_id": 300402, + "name": "group_group_name_300402", + "member": "3004,4007,4002", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_300402", + "type": "hero" + }, + { + "id": 19, + "page": 3004, + "group_id": 300403, + "name": "group_group_name_300403", + "member": "3004,4011", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.18 + }, + "describe": "group_group_describe_300403", + "type": "hero" + }, + { + "id": 20, + "page": 3004, + "group_id": 300404, + "name": "group_group_name_300404", + "member": "3004,4002", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.16 + }, + "describe": "group_group_describe_300404", + "type": "hero" + }, + { + "id": 21, + "page": 3005, + "group_id": 300501, + "name": "group_group_name_300501", + "member": "3005,3001,4015", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_300501", + "type": "hero" + }, + { + "id": 22, + "page": 3005, + "group_id": 300502, + "name": "group_group_name_300502", + "member": "3005,3001,4005", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_300502", + "type": "hero" + }, + { + "id": 23, + "page": 3005, + "group_id": 300503, + "name": "group_group_name_300503", + "member": "3005,3007", + "undefined": "{1}一起上阵,生命+{2}%", + "skill": { + "hppro": 0.17 + }, + "describe": "group_group_describe_300503", + "type": "hero" + }, + { + "id": 24, + "page": 3005, + "group_id": 300504, + "name": "group_group_name_300504", + "member": "3005,4003", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_300504", + "type": "hero" + }, + { + "id": 25, + "page": 3006, + "group_id": 300601, + "name": "group_group_name_300601", + "member": "3006,4008,4001", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_300601", + "type": "hero" + }, + { + "id": 26, + "page": 3006, + "group_id": 300602, + "name": "group_group_name_300602", + "member": "3006,4004,3013", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_300602", + "type": "hero" + }, + { + "id": 27, + "page": 3006, + "group_id": 300603, + "name": "group_group_name_300603", + "member": "3006,4006", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.16 + }, + "describe": "group_group_describe_300603", + "type": "hero" + }, + { + "id": 28, + "page": 3006, + "group_id": 300604, + "name": "group_group_name_300604", + "member": "3006,3001", + "undefined": "{1}一起上阵,生命+{2}%", + "skill": { + "hppro": 0.17 + }, + "describe": "group_group_describe_300604", + "type": "hero" + }, + { + "id": 29, + "page": 3007, + "group_id": 300701, + "name": "group_group_name_300701", + "member": "3007,4003,3010", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_300701", + "type": "hero" + }, + { + "id": 30, + "page": 3007, + "group_id": 300702, + "name": "group_group_name_300702", + "member": "3007,4010,4015", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_300702", + "type": "hero" + }, + { + "id": 31, + "page": 3007, + "group_id": 300703, + "name": "group_group_name_300703", + "member": "3007,3013", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.17 + }, + "describe": "group_group_describe_300703", + "type": "hero" + }, + { + "id": 32, + "page": 3007, + "group_id": 300704, + "name": "group_group_name_300704", + "member": "3007,3005", + "undefined": "{1}一起上阵,生命+{2}%", + "skill": { + "hppro": 0.17 + }, + "describe": "group_group_describe_300704", + "type": "hero" + }, + { + "id": 33, + "page": 3008, + "group_id": 300801, + "name": "group_group_name_300801", + "member": "3008,3011,3012", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_300801", + "type": "hero" + }, + { + "id": 34, + "page": 3008, + "group_id": 300802, + "name": "group_group_name_300802", + "member": "3008,3014,4011", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_300802", + "type": "hero" + }, + { + "id": 35, + "page": 3008, + "group_id": 300803, + "name": "group_group_name_300803", + "member": "3008,3009", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.17 + }, + "describe": "group_group_describe_300803", + "type": "hero" + }, + { + "id": 36, + "page": 3008, + "group_id": 300804, + "name": "group_group_name_300804", + "member": "3008,4015", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_300804", + "type": "hero" + }, + { + "id": 37, + "page": 3009, + "group_id": 300901, + "name": "group_group_name_300901", + "member": "3009,4006,3013", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_300901", + "type": "hero" + }, + { + "id": 38, + "page": 3009, + "group_id": 300902, + "name": "group_group_name_300902", + "member": "3009,4006,4005", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_300902", + "type": "hero" + }, + { + "id": 39, + "page": 3009, + "group_id": 300903, + "name": "group_group_name_300903", + "member": "3009,3008", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.17 + }, + "describe": "group_group_describe_300903", + "type": "hero" + }, + { + "id": 40, + "page": 3009, + "group_id": 300904, + "name": "group_group_name_300904", + "member": "3009,3014", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_300904", + "type": "hero" + }, + { + "id": 41, + "page": 3010, + "group_id": 301001, + "name": "group_group_name_301001", + "member": "3010,4009,3002", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_301001", + "type": "hero" + }, + { + "id": 42, + "page": 3010, + "group_id": 301002, + "name": "group_group_name_301002", + "member": "3010,4009,3012", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_301002", + "type": "hero" + }, + { + "id": 43, + "page": 3010, + "group_id": 301003, + "name": "group_group_name_301003", + "member": "3010,4003", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.18 + }, + "describe": "group_group_describe_301003", + "type": "hero" + }, + { + "id": 44, + "page": 3010, + "group_id": 301004, + "name": "group_group_name_301004", + "member": "3010,4010", + "undefined": "{1}一起上阵,生命+{2}%", + "skill": { + "hppro": 0.17 + }, + "describe": "group_group_describe_301004", + "type": "hero" + }, + { + "id": 45, + "page": 3011, + "group_id": 301101, + "name": "group_group_name_301101", + "member": "3011,3008,3002", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_301101", + "type": "hero" + }, + { + "id": 46, + "page": 3011, + "group_id": 301102, + "name": "group_group_name_301102", + "member": "3011,3014,4011", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_301102", + "type": "hero" + }, + { + "id": 47, + "page": 3011, + "group_id": 301103, + "name": "group_group_name_301103", + "member": "3011,3002", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.16 + }, + "describe": "group_group_describe_301103", + "type": "hero" + }, + { + "id": 48, + "page": 3011, + "group_id": 301104, + "name": "group_group_name_301104", + "member": "3011,4015", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.16 + }, + "describe": "group_group_describe_301104", + "type": "hero" + }, + { + "id": 49, + "page": 3012, + "group_id": 301201, + "name": "group_group_name_301201", + "member": "3012,4009,3010", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_301201", + "type": "hero" + }, + { + "id": 50, + "page": 3012, + "group_id": 301202, + "name": "group_group_name_301202", + "member": "3012,4011,3009", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_301202", + "type": "hero" + }, + { + "id": 51, + "page": 3012, + "group_id": 301203, + "name": "group_group_name_301203", + "member": "3012,3015", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_301203", + "type": "hero" + }, + { + "id": 52, + "page": 3012, + "group_id": 301204, + "name": "group_group_name_301204", + "member": "3012,4013", + "undefined": "{1}一起上阵,生命+{2}%", + "skill": { + "hppro": 0.17 + }, + "describe": "group_group_describe_301204", + "type": "hero" + }, + { + "id": 53, + "page": 3013, + "group_id": 301301, + "name": "group_group_name_301301", + "member": "3013,4006,4005", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_301301", + "type": "hero" + }, + { + "id": 54, + "page": 3013, + "group_id": 301302, + "name": "group_group_name_301302", + "member": "3013,4006,3009", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_301302", + "type": "hero" + }, + { + "id": 55, + "page": 3013, + "group_id": 301303, + "name": "group_group_name_301303", + "member": "3013,3007", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.17 + }, + "describe": "group_group_describe_301303", + "type": "hero" + }, + { + "id": 56, + "page": 3013, + "group_id": 301304, + "name": "group_group_name_301304", + "member": "3013,4010", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_301304", + "type": "hero" + }, + { + "id": 57, + "page": 3014, + "group_id": 301401, + "name": "group_group_name_301401", + "member": "3014,3008,4001", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_301401", + "type": "hero" + }, + { + "id": 58, + "page": 3014, + "group_id": 301402, + "name": "group_group_name_301402", + "member": "3014,3011,3009", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_301402", + "type": "hero" + }, + { + "id": 59, + "page": 3014, + "group_id": 301403, + "name": "group_group_name_301403", + "member": "3014,3002", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.16 + }, + "describe": "group_group_describe_301403", + "type": "hero" + }, + { + "id": 60, + "page": 3014, + "group_id": 301404, + "name": "group_group_name_301404", + "member": "3014,3009", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_301404", + "type": "hero" + }, + { + "id": 61, + "page": 3015, + "group_id": 301501, + "name": "group_group_name_301501", + "member": "3015,3003,4005", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_301501", + "type": "hero" + }, + { + "id": 62, + "page": 3015, + "group_id": 301502, + "name": "group_group_name_301502", + "member": "3015,4013,4012", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_301502", + "type": "hero" + }, + { + "id": 63, + "page": 3015, + "group_id": 301503, + "name": "group_group_name_301503", + "member": "3015,3012", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_301503", + "type": "hero" + }, + { + "id": 64, + "page": 3015, + "group_id": 301504, + "name": "group_group_name_301504", + "member": "3015,4012", + "undefined": "{1}一起上阵,生命+{2}%", + "skill": { + "hppro": 0.17 + }, + "describe": "group_group_describe_301504", + "type": "hero" + }, + { + "id": 65, + "page": 4001, + "group_id": 400101, + "name": "group_group_name_400101", + "member": "4001,4006,3013", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_400101", + "type": "hero" + }, + { + "id": 66, + "page": 4001, + "group_id": 400102, + "name": "group_group_name_400102", + "member": "4001,4005,4015", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_400102", + "type": "hero" + }, + { + "id": 67, + "page": 4001, + "group_id": 400103, + "name": "group_group_name_400103", + "member": "4001,4014", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_400103", + "type": "hero" + }, + { + "id": 68, + "page": 4001, + "group_id": 400104, + "name": "group_group_name_400104", + "member": "4001,4007", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_400104", + "type": "hero" + }, + { + "id": 69, + "page": 4002, + "group_id": 400201, + "name": "group_group_name_400201", + "member": "4002,3001,3005", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_400201", + "type": "hero" + }, + { + "id": 70, + "page": 4002, + "group_id": 400202, + "name": "group_group_name_400202", + "member": "4002,4012,4001", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_400202", + "type": "hero" + }, + { + "id": 71, + "page": 4002, + "group_id": 400203, + "name": "group_group_name_400203", + "member": "4002,4014", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_400203", + "type": "hero" + }, + { + "id": 72, + "page": 4002, + "group_id": 400204, + "name": "group_group_name_400204", + "member": "4002,3004", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.16 + }, + "describe": "group_group_describe_400204", + "type": "hero" + }, + { + "id": 73, + "page": 4003, + "group_id": 400301, + "name": "group_group_name_400301", + "member": "4003,3007,3009", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_400301", + "type": "hero" + }, + { + "id": 74, + "page": 4003, + "group_id": 400302, + "name": "group_group_name_400302", + "member": "4003,4010,4012", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_400302", + "type": "hero" + }, + { + "id": 75, + "page": 4003, + "group_id": 400303, + "name": "group_group_name_400303", + "member": "4003,3010", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.18 + }, + "describe": "group_group_describe_400303", + "type": "hero" + }, + { + "id": 76, + "page": 4003, + "group_id": 400304, + "name": "group_group_name_400304", + "member": "4003,3005", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_400304", + "type": "hero" + }, + { + "id": 77, + "page": 4004, + "group_id": 400401, + "name": "group_group_name_400401", + "member": "4004,3006,3005", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_400401", + "type": "hero" + }, + { + "id": 78, + "page": 4004, + "group_id": 400402, + "name": "group_group_name_400402", + "member": "4004,4008,3001", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_400402", + "type": "hero" + }, + { + "id": 79, + "page": 4004, + "group_id": 400403, + "name": "group_group_name_400403", + "member": "4004,4009", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_400403", + "type": "hero" + }, + { + "id": 80, + "page": 4004, + "group_id": 400404, + "name": "group_group_name_400404", + "member": "4004,4006", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_400404", + "type": "hero" + }, + { + "id": 81, + "page": 4005, + "group_id": 400501, + "name": "group_group_name_400501", + "member": "4005,4006,3013", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_400501", + "type": "hero" + }, + { + "id": 82, + "page": 4005, + "group_id": 400502, + "name": "group_group_name_400502", + "member": "4005,4001,3009", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_400502", + "type": "hero" + }, + { + "id": 83, + "page": 4005, + "group_id": 400503, + "name": "group_group_name_400503", + "member": "4005,3003", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.18 + }, + "describe": "group_group_describe_400503", + "type": "hero" + }, + { + "id": 84, + "page": 4005, + "group_id": 400504, + "name": "group_group_name_400504", + "member": "4005,4013", + "undefined": "{1}一起上阵,生命+{2}%", + "skill": { + "hppro": 0.17 + }, + "describe": "group_group_describe_400504", + "type": "hero" + }, + { + "id": 85, + "page": 4006, + "group_id": 400601, + "name": "group_group_name_400601", + "member": "4006,3013,4005", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_400601", + "type": "hero" + }, + { + "id": 86, + "page": 4006, + "group_id": 400602, + "name": "group_group_name_400602", + "member": "4006,4001,3009", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_400602", + "type": "hero" + }, + { + "id": 87, + "page": 4006, + "group_id": 400603, + "name": "group_group_name_400603", + "member": "4006,3006", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.16 + }, + "describe": "group_group_describe_400603", + "type": "hero" + }, + { + "id": 88, + "page": 4006, + "group_id": 400604, + "name": "group_group_name_400604", + "member": "4006,4004", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_400604", + "type": "hero" + }, + { + "id": 89, + "page": 4007, + "group_id": 400701, + "name": "group_group_name_400701", + "member": "4007,4014,3012", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_400701", + "type": "hero" + }, + { + "id": 90, + "page": 4007, + "group_id": 400702, + "name": "group_group_name_400702", + "member": "4007,3004,4011", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_400702", + "type": "hero" + }, + { + "id": 91, + "page": 4007, + "group_id": 400703, + "name": "group_group_name_400703", + "member": "4007,4011", + "undefined": "{1}一起上阵,生命+{2}%", + "skill": { + "hppro": 0.17 + }, + "describe": "group_group_describe_400703", + "type": "hero" + }, + { + "id": 92, + "page": 4007, + "group_id": 400704, + "name": "group_group_name_400704", + "member": "4007,4001", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_400704", + "type": "hero" + }, + { + "id": 93, + "page": 4008, + "group_id": 400801, + "name": "group_group_name_400801", + "member": "4008,3006,4015", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_400801", + "type": "hero" + }, + { + "id": 94, + "page": 4008, + "group_id": 400802, + "name": "group_group_name_400802", + "member": "4008,4004,4002", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_400802", + "type": "hero" + }, + { + "id": 95, + "page": 4008, + "group_id": 400803, + "name": "group_group_name_400803", + "member": "4008,4009", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_400803", + "type": "hero" + }, + { + "id": 96, + "page": 4008, + "group_id": 400804, + "name": "group_group_name_400804", + "member": "4008,3001", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_400804", + "type": "hero" + }, + { + "id": 97, + "page": 4009, + "group_id": 400901, + "name": "group_group_name_400901", + "member": "4009,3010,3002", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_400901", + "type": "hero" + }, + { + "id": 98, + "page": 4009, + "group_id": 400902, + "name": "group_group_name_400902", + "member": "4009,3010,3002", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_400902", + "type": "hero" + }, + { + "id": 99, + "page": 4009, + "group_id": 400903, + "name": "group_group_name_400903", + "member": "4009,4008", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_400903", + "type": "hero" + }, + { + "id": 100, + "page": 4009, + "group_id": 400904, + "name": "group_group_name_400904", + "member": "4009,4004", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_400904", + "type": "hero" + }, + { + "id": 101, + "page": 4010, + "group_id": 401001, + "name": "group_group_name_401001", + "member": "4010,3007,3012", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_401001", + "type": "hero" + }, + { + "id": 102, + "page": 4010, + "group_id": 401002, + "name": "group_group_name_401002", + "member": "4010,4003,4013", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_401002", + "type": "hero" + }, + { + "id": 103, + "page": 4010, + "group_id": 401003, + "name": "group_group_name_401003", + "member": "4010,3010", + "undefined": "{1}一起上阵,生命+{2}%", + "skill": { + "hppro": 0.17 + }, + "describe": "group_group_describe_401003", + "type": "hero" + }, + { + "id": 104, + "page": 4010, + "group_id": 401004, + "name": "group_group_name_401004", + "member": "4010,3013", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_401004", + "type": "hero" + }, + { + "id": 105, + "page": 4011, + "group_id": 401101, + "name": "group_group_name_401101", + "member": "4011,4009,3010", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_401101", + "type": "hero" + }, + { + "id": 106, + "page": 4011, + "group_id": 401102, + "name": "group_group_name_401102", + "member": "4011,3012,3002", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_401102", + "type": "hero" + }, + { + "id": 107, + "page": 4011, + "group_id": 401103, + "name": "group_group_name_401103", + "member": "4011,3004", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.18 + }, + "describe": "group_group_describe_401103", + "type": "hero" + }, + { + "id": 108, + "page": 4011, + "group_id": 401104, + "name": "group_group_name_401104", + "member": "4011,4007", + "undefined": "{1}一起上阵,生命+{2}%", + "skill": { + "hppro": 0.17 + }, + "describe": "group_group_describe_401104", + "type": "hero" + }, + { + "id": 109, + "page": 4012, + "group_id": 401201, + "name": "group_group_name_401201", + "member": "4012,3001,4009", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_401201", + "type": "hero" + }, + { + "id": 110, + "page": 4012, + "group_id": 401202, + "name": "group_group_name_401202", + "member": "4012,4002,4004", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_401202", + "type": "hero" + }, + { + "id": 111, + "page": 4012, + "group_id": 401203, + "name": "group_group_name_401203", + "member": "4012,3003", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_401203", + "type": "hero" + }, + { + "id": 112, + "page": 4012, + "group_id": 401204, + "name": "group_group_name_401204", + "member": "4012,3015", + "undefined": "{1}一起上阵,生命+{2}%", + "skill": { + "hppro": 0.17 + }, + "describe": "group_group_describe_401204", + "type": "hero" + }, + { + "id": 113, + "page": 4013, + "group_id": 401301, + "name": "group_group_name_401301", + "member": "4013,3003,3014", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_401301", + "type": "hero" + }, + { + "id": 114, + "page": 4013, + "group_id": 401302, + "name": "group_group_name_401302", + "member": "4013,3015,4008", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_401302", + "type": "hero" + }, + { + "id": 115, + "page": 4013, + "group_id": 401303, + "name": "group_group_name_401303", + "member": "4013,3012", + "undefined": "{1}一起上阵,生命+{2}%", + "skill": { + "hppro": 0.17 + }, + "describe": "group_group_describe_401303", + "type": "hero" + }, + { + "id": 116, + "page": 4013, + "group_id": 401304, + "name": "group_group_name_401304", + "member": "4013,4005", + "undefined": "{1}一起上阵,生命+{2}%", + "skill": { + "hppro": 0.17 + }, + "describe": "group_group_describe_401304", + "type": "hero" + }, + { + "id": 117, + "page": 4014, + "group_id": 401401, + "name": "group_group_name_401401", + "member": "4014,3004,3015", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_401401", + "type": "hero" + }, + { + "id": 118, + "page": 4014, + "group_id": 401402, + "name": "group_group_name_401402", + "member": "4014,4007,4009", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_401402", + "type": "hero" + }, + { + "id": 119, + "page": 4014, + "group_id": 401403, + "name": "group_group_name_401403", + "member": "4014,4001", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_401403", + "type": "hero" + }, + { + "id": 120, + "page": 4014, + "group_id": 401404, + "name": "group_group_name_401404", + "member": "4014,4002", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_401404", + "type": "hero" + }, + { + "id": 121, + "page": 4015, + "group_id": 401501, + "name": "group_group_name_401501", + "member": "4015,3001,4002", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_401501", + "type": "hero" + }, + { + "id": 122, + "page": 4015, + "group_id": 401502, + "name": "group_group_name_401502", + "member": "4015,3005,4010", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_401502", + "type": "hero" + }, + { + "id": 123, + "page": 4015, + "group_id": 401503, + "name": "group_group_name_401503", + "member": "4015,3008", + "undefined": "{1}一起上阵,防御+{2}%", + "skill": { + "defpro": 0.18 + }, + "describe": "group_group_describe_401503", + "type": "hero" + }, + { + "id": 124, + "page": 4015, + "group_id": 401504, + "name": "group_group_name_401504", + "member": "4015,3011", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.16 + }, + "describe": "group_group_describe_401504", + "type": "hero" + }, + { + "id": 125, + "page": 5001, + "group_id": 500101, + "name": "group_group_name_500101", + "member": "5001,5003,5005,4015,5002", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.32, + "atkpro": 0.32 + }, + "describe": "group_group_describe_500101", + "type": "hero" + }, + { + "id": 126, + "page": 5001, + "group_id": 500102, + "name": "group_group_name_500102", + "member": "5001,5005,3012,4015", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_500102", + "type": "hero" + }, + { + "id": 127, + "page": 5001, + "group_id": 500103, + "name": "group_group_name_500103", + "member": "5001,5003,4012,4015", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_500103", + "type": "hero" + }, + { + "id": 128, + "page": 5001, + "group_id": 500104, + "name": "group_group_name_500104", + "member": "5001,4002", + "undefined": "{1}一起上阵,生命+{2}%", + "skill": { + "hppro": 0.17 + }, + "describe": "group_group_describe_500104", + "type": "hero" + }, + { + "id": 129, + "page": 5002, + "group_id": 500201, + "name": "group_group_name_500201", + "member": "5002,5003,5005,5001,5004", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.32, + "atkpro": 0.32 + }, + "describe": "group_group_describe_500201", + "type": "hero" + }, + { + "id": 130, + "page": 5002, + "group_id": 500202, + "name": "group_group_name_500202", + "member": "5002,5003,4006,5005", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_500202", + "type": "hero" + }, + { + "id": 131, + "page": 5002, + "group_id": 500203, + "name": "group_group_name_500203", + "member": "5002,5005,4009", + "undefined": "{1}一起上阵,攻击+{2}%,防御+{3}%", + "skill": { + "atkpro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_500203", + "type": "hero" + }, + { + "id": 132, + "page": 5002, + "group_id": 500204, + "name": "group_group_name_500204", + "member": "5002,5001,3001,5005", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_500204", + "type": "hero" + }, + { + "id": 133, + "page": 5003, + "group_id": 500301, + "name": "group_group_name_500301", + "member": "5003,5005,5001,5002,5004", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.32, + "atkpro": 0.32 + }, + "describe": "group_group_describe_500301", + "type": "hero" + }, + { + "id": 134, + "page": 5003, + "group_id": 500302, + "name": "group_group_name_500302", + "member": "5003,5005,4005,3009", + "undefined": "{1}一起上阵,攻击+{2}%,防御+{3}%", + "skill": { + "atkpro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_500302", + "type": "hero" + }, + { + "id": 135, + "page": 5003, + "group_id": 500303, + "name": "group_group_name_500303", + "member": "5003,5001,4012,3009", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_500303", + "type": "hero" + }, + { + "id": 136, + "page": 5003, + "group_id": 500304, + "name": "group_group_name_500304", + "member": "5003,4001", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.18 + }, + "describe": "group_group_describe_500304", + "type": "hero" + }, + { + "id": 137, + "page": 5004, + "group_id": 500401, + "name": "group_group_name_500401", + "member": "5004,5002,5003,5005,5001", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.32, + "atkpro": 0.32 + }, + "describe": "group_group_describe_500401", + "type": "hero" + }, + { + "id": 138, + "page": 5004, + "group_id": 500402, + "name": "group_group_name_500402", + "member": "5004,5002,3009,4015", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_500402", + "type": "hero" + }, + { + "id": 139, + "page": 5004, + "group_id": 500403, + "name": "group_group_name_500403", + "member": "5004,5002,3002,4015", + "undefined": "{1}一起上阵,攻击+{2}%,防御+{3}%", + "skill": { + "atkpro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_500403", + "type": "hero" + }, + { + "id": 140, + "page": 5004, + "group_id": 500404, + "name": "group_group_name_500404", + "member": "5004,5002", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.2, + "atkpro": 0.2 + }, + "describe": "group_group_describe_500404", + "type": "hero" + }, + { + "id": 141, + "page": 5005, + "group_id": 500501, + "name": "group_group_name_500501", + "member": "5005,5003,5001,5002,5004", + "undefined": "{1}一起上阵,生命+{2}%,攻击+{3}%", + "skill": { + "hppro": 0.32, + "atkpro": 0.32 + }, + "describe": "group_group_describe_500501", + "type": "hero" + }, + { + "id": 142, + "page": 5005, + "group_id": 500502, + "name": "group_group_name_500502", + "member": "5005,5003,4005,3012", + "undefined": "{1}一起上阵,攻击+{2}%,防御+{3}%", + "skill": { + "atkpro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_500502", + "type": "hero" + }, + { + "id": 143, + "page": 5005, + "group_id": 500503, + "name": "group_group_name_500503", + "member": "5005,5001,3012", + "undefined": "{1}一起上阵,生命+{2}%,防御+{3}%", + "skill": { + "hppro": 0.2, + "defpro": 0.2 + }, + "describe": "group_group_describe_500503", + "type": "hero" + }, + { + "id": 144, + "page": 5005, + "group_id": 500504, + "name": "group_group_name_500504", + "member": "5005,4011", + "undefined": "{1}一起上阵,攻击+{2}%", + "skill": { + "atkpro": 0.17 + }, + "describe": "group_group_describe_500504", + "type": "hero" + } + ], + "equip": [ + { + "id": 145, + "page": 1001, + "group_id": 100111, + "name": "group_group_name_100111", + "member": 1001, + "undefined": "装备{1}攻击+{2}%", + "skill": { + "atkpro": 0.2 + }, + "describe": "group_group_describe_100111", + "type": "equip" + }, + { + "id": 146, + "page": 1002, + "group_id": 100211, + "name": "group_group_name_100211", + "member": 3001, + "undefined": "装备{1}生命+{2}%", + "skill": { + "hppro": 0.12 + }, + "describe": "group_group_describe_100211", + "type": "equip" + }, + { + "id": 147, + "page": 2001, + "group_id": 200111, + "name": "group_group_name_200111", + "member": 2002, + "undefined": "装备{1}防御+{2}%", + "skill": { + "defpro": 0.2 + }, + "describe": "group_group_describe_200111", + "type": "equip" + }, + { + "id": 148, + "page": 2002, + "group_id": 200211, + "name": "group_group_name_200211", + "member": 1002, + "undefined": "装备{1}攻击+{2}%", + "skill": { + "atkpro": 0.2 + }, + "describe": "group_group_describe_200211", + "type": "equip" + }, + { + "id": 149, + "page": 3001, + "group_id": 300111, + "name": "group_group_name_300111", + "member": 2004, + "undefined": "装备{1}防御+{2}%", + "skill": { + "defpro": 0.2 + }, + "describe": "group_group_describe_300111", + "type": "equip" + }, + { + "id": 150, + "page": 3002, + "group_id": 300211, + "name": "group_group_name_300211", + "member": 2006, + "undefined": "装备{1}防御+{2}%", + "skill": { + "defpro": 0.2 + }, + "describe": "group_group_describe_300211", + "type": "equip" + }, + { + "id": 151, + "page": 3003, + "group_id": 300311, + "name": "group_group_name_300311", + "member": 4007, + "undefined": "装备{1}生命+{2}%", + "skill": { + "hppro": 0.12 + }, + "describe": "group_group_describe_300311", + "type": "equip" + }, + { + "id": 152, + "page": 3004, + "group_id": 300411, + "name": "group_group_name_300411", + "member": 1003, + "undefined": "装备{1}攻击+{2}%", + "skill": { + "atkpro": 0.2 + }, + "describe": "group_group_describe_300411", + "type": "equip" + }, + { + "id": 153, + "page": 3005, + "group_id": 300511, + "name": "group_group_name_300511", + "member": 1003, + "undefined": "装备{1}攻击+{2}%", + "skill": { + "atkpro": 0.2 + }, + "describe": "group_group_describe_300511", + "type": "equip" + }, + { + "id": 154, + "page": 3006, + "group_id": 300611, + "name": "group_group_name_300611", + "member": 3003, + "undefined": "装备{1}生命+{2}%", + "skill": { + "hppro": 0.12 + }, + "describe": "group_group_describe_300611", + "type": "equip" + }, + { + "id": 155, + "page": 3007, + "group_id": 300711, + "name": "group_group_name_300711", + "member": 2009, + "undefined": "装备{1}防御+{2}%", + "skill": { + "defpro": 0.2 + }, + "describe": "group_group_describe_300711", + "type": "equip" + }, + { + "id": 156, + "page": 3008, + "group_id": 300811, + "name": "group_group_name_300811", + "member": 1008, + "undefined": "装备{1}攻击+{2}%", + "skill": { + "atkpro": 0.2 + }, + "describe": "group_group_describe_300811", + "type": "equip" + }, + { + "id": 157, + "page": 3009, + "group_id": 300911, + "name": "group_group_name_300911", + "member": 4003, + "undefined": "装备{1}生命+{2}%", + "skill": { + "hppro": 0.12 + }, + "describe": "group_group_describe_300911", + "type": "equip" + }, + { + "id": 158, + "page": 3010, + "group_id": 301011, + "name": "group_group_name_301011", + "member": 3007, + "undefined": "装备{1}生命+{2}%", + "skill": { + "hppro": 0.12 + }, + "describe": "group_group_describe_301011", + "type": "equip" + }, + { + "id": 159, + "page": 3011, + "group_id": 301111, + "name": "group_group_name_301111", + "member": 3005, + "undefined": "装备{1}生命+{2}%", + "skill": { + "hppro": 0.12 + }, + "describe": "group_group_describe_301111", + "type": "equip" + }, + { + "id": 160, + "page": 3012, + "group_id": 301211, + "name": "group_group_name_301211", + "member": 1005, + "undefined": "装备{1}攻击+{2}%", + "skill": { + "atkpro": 0.2 + }, + "describe": "group_group_describe_301211", + "type": "equip" + }, + { + "id": 161, + "page": 3013, + "group_id": 301311, + "name": "group_group_name_301311", + "member": 1004, + "undefined": "装备{1}攻击+{2}%", + "skill": { + "atkpro": 0.2 + }, + "describe": "group_group_describe_301311", + "type": "equip" + }, + { + "id": 162, + "page": 3014, + "group_id": 301411, + "name": "group_group_name_301411", + "member": 3004, + "undefined": "装备{1}生命+{2}%", + "skill": { + "hppro": 0.12 + }, + "describe": "group_group_describe_301411", + "type": "equip" + }, + { + "id": 163, + "page": 3015, + "group_id": 301511, + "name": "group_group_name_301511", + "member": 2004, + "undefined": "装备{1}防御+{2}%", + "skill": { + "defpro": 0.2 + }, + "describe": "group_group_describe_301511", + "type": "equip" + }, + { + "id": 164, + "page": 4001, + "group_id": 400111, + "name": "group_group_name_400111", + "member": 2008, + "undefined": "装备{1}防御+{2}%", + "skill": { + "defpro": 0.2 + }, + "describe": "group_group_describe_400111", + "type": "equip" + }, + { + "id": 165, + "page": 4002, + "group_id": 400211, + "name": "group_group_name_400211", + "member": 2007, + "undefined": "装备{1}防御+{2}%", + "skill": { + "defpro": 0.2 + }, + "describe": "group_group_describe_400211", + "type": "equip" + }, + { + "id": 166, + "page": 4003, + "group_id": 400311, + "name": "group_group_name_400311", + "member": 4006, + "undefined": "装备{1}生命+{2}%", + "skill": { + "hppro": 0.12 + }, + "describe": "group_group_describe_400311", + "type": "equip" + }, + { + "id": 167, + "page": 4004, + "group_id": 400411, + "name": "group_group_name_400411", + "member": 1006, + "undefined": "装备{1}攻击+{2}%", + "skill": { + "atkpro": 0.2 + }, + "describe": "group_group_describe_400411", + "type": "equip" + }, + { + "id": 168, + "page": 4005, + "group_id": 400511, + "name": "group_group_name_400511", + "member": 3009, + "undefined": "装备{1}生命+{2}%", + "skill": { + "hppro": 0.12 + }, + "describe": "group_group_describe_400511", + "type": "equip" + }, + { + "id": 169, + "page": 4006, + "group_id": 400611, + "name": "group_group_name_400611", + "member": 2005, + "undefined": "装备{1}防御+{2}%", + "skill": { + "defpro": 0.2 + }, + "describe": "group_group_describe_400611", + "type": "equip" + }, + { + "id": 170, + "page": 4007, + "group_id": 400711, + "name": "group_group_name_400711", + "member": 1009, + "undefined": "装备{1}攻击+{2}%", + "skill": { + "atkpro": 0.2 + }, + "describe": "group_group_describe_400711", + "type": "equip" + }, + { + "id": 171, + "page": 4008, + "group_id": 400811, + "name": "group_group_name_400811", + "member": 1007, + "undefined": "装备{1}攻击+{2}%", + "skill": { + "atkpro": 0.2 + }, + "describe": "group_group_describe_400811", + "type": "equip" + }, + { + "id": 172, + "page": 4009, + "group_id": 400911, + "name": "group_group_name_400911", + "member": 4008, + "undefined": "装备{1}生命+{2}%", + "skill": { + "hppro": 0.12 + }, + "describe": "group_group_describe_400911", + "type": "equip" + }, + { + "id": 173, + "page": 4010, + "group_id": 401011, + "name": "group_group_name_401011", + "member": 4005, + "undefined": "装备{1}生命+{2}%", + "skill": { + "hppro": 0.12 + }, + "describe": "group_group_describe_401011", + "type": "equip" + }, + { + "id": 174, + "page": 4011, + "group_id": 401111, + "name": "group_group_name_401111", + "member": 4004, + "undefined": "装备{1}生命+{2}%", + "skill": { + "hppro": 0.12 + }, + "describe": "group_group_describe_401111", + "type": "equip" + }, + { + "id": 175, + "page": 4012, + "group_id": 401211, + "name": "group_group_name_401211", + "member": 3008, + "undefined": "装备{1}生命+{2}%", + "skill": { + "hppro": 0.12 + }, + "describe": "group_group_describe_401211", + "type": "equip" + }, + { + "id": 176, + "page": 4013, + "group_id": 401311, + "name": "group_group_name_401311", + "member": 2003, + "undefined": "装备{1}防御+{2}%", + "skill": { + "defpro": 0.2 + }, + "describe": "group_group_describe_401311", + "type": "equip" + }, + { + "id": 177, + "page": 4014, + "group_id": 401411, + "name": "group_group_name_401411", + "member": 3006, + "undefined": "装备{1}生命+{2}%", + "skill": { + "hppro": 0.12 + }, + "describe": "group_group_describe_401411", + "type": "equip" + }, + { + "id": 178, + "page": 4015, + "group_id": 401511, + "name": "group_group_name_401511", + "member": 4009, + "undefined": "装备{1}生命+{2}%", + "skill": { + "hppro": 0.12 + }, + "describe": "group_group_describe_401511", + "type": "equip" + }, + { + "id": 179, + "page": 5001, + "group_id": 500111, + "name": "group_group_name_500111", + "member": 1009, + "undefined": "装备{1}攻击+{2}%", + "skill": { + "atkpro": 0.2 + }, + "describe": "group_group_describe_500111", + "type": "equip" + }, + { + "id": 180, + "page": 5001, + "group_id": 500112, + "name": "group_group_name_500112", + "member": 1010, + "undefined": "装备{1}攻击+{2}%", + "skill": { + "atkpro": 0.2 + }, + "describe": "group_group_describe_500112", + "type": "equip" + }, + { + "id": 181, + "page": 5002, + "group_id": 500211, + "name": "group_group_name_500211", + "member": 1010, + "undefined": "装备{1}攻击+{2}%", + "skill": { + "atkpro": 0.2 + }, + "describe": "group_group_describe_500211", + "type": "equip" + }, + { + "id": 182, + "page": 5002, + "group_id": 500212, + "name": "group_group_name_500212", + "member": 1009, + "undefined": "装备{1}攻击+{2}%", + "skill": { + "atkpro": 0.2 + }, + "describe": "group_group_describe_500212", + "type": "equip" + }, + { + "id": 183, + "page": 5003, + "group_id": 500311, + "name": "group_group_name_500311", + "member": 1009, + "undefined": "装备{1}攻击+{2}%", + "skill": { + "atkpro": 0.2 + }, + "describe": "group_group_describe_500311", + "type": "equip" + }, + { + "id": 184, + "page": 5003, + "group_id": 500312, + "name": "group_group_name_500312", + "member": 1010, + "undefined": "装备{1}攻击+{2}%", + "skill": { + "atkpro": 0.2 + }, + "describe": "group_group_describe_500312", + "type": "equip" + }, + { + "id": 185, + "page": 5004, + "group_id": 500411, + "name": "group_group_name_500411", + "member": 1010, + "undefined": "装备{1}攻击+{2}%", + "skill": { + "atkpro": 0.2 + }, + "describe": "group_group_describe_500411", + "type": "equip" + }, + { + "id": 186, + "page": 5004, + "group_id": 500412, + "name": "group_group_name_500412", + "member": 1009, + "undefined": "装备{1}攻击+{2}%", + "skill": { + "atkpro": 0.2 + }, + "describe": "group_group_describe_500412", + "type": "equip" + }, + { + "id": 187, + "page": 5005, + "group_id": 500511, + "name": "group_group_name_500511", + "member": 1009, + "undefined": "装备{1}攻击+{2}%", + "skill": { + "atkpro": 0.2 + }, + "describe": "group_group_describe_500511", + "type": "equip" + }, + { + "id": 188, + "page": 5005, + "group_id": 500512, + "name": "group_group_name_500512", + "member": 1010, + "undefined": "装备{1}攻击+{2}%", + "skill": { + "atkpro": 0.2 + }, + "describe": "group_group_describe_500512", + "type": "equip" + } + ] +} \ No newline at end of file diff --git a/src/json/guanlidiaodu.json5 b/src/json/guanlidiaodu.json5 new file mode 100644 index 0000000..9130eb9 --- /dev/null +++ b/src/json/guanlidiaodu.json5 @@ -0,0 +1,37 @@ +{ + //干部遣散消耗 + hero_qs_need: [{a: 'attr', t: 'rmbmoney', n: 0}], + //干部遣散奖励 根据干部星数 + hero_qs_prize: { + '1': [{a: 'item', t: '27', n: 100}], + '2': [{a: 'item', t: '27', n: 200}], + '3': [{a: 'item', t: '27', n: 800}], + '4': [{a: 'item', t: '27', n: 1000}], + '5': [{a: 'item', t: '27', n: 3000}], + '6': [{a: 'item', t: '27', n: 0}], + }, + //干部重置消耗 + hero_cz_need: [{a: 'attr', t: 'rmbmoney', n: 50}], + //干部重置返还的金币比例 + hero_cz_jinbi: 0.8, + + //装备拆解消耗 + equip_qs_need: [{a: 'attr', t: 'rmbmoney', n: 0}], + //装备拆解奖励 根据颜色品质 + equip_qs_prize: { + '1': [{a: 'item', t: '23', n: 100}], + '2': [{a: 'item', t: '23', n: 200}], + '3': [{a: 'item', t: '23', n: 4000}], + '4': [{a: 'item', t: '23', n: 50000}], + '5': [{a: 'item', t: '23', n: 100000}], + }, + //装备重置消耗 + equip_cz_need: [{a: 'attr', t: 'rmbmoney', n: 50}], + //装备重置返还的金币比例 + equip_cz_jinbi: 0.8, + //显示道具信息 + showRes:[ + {a: 'item', t: '27', n: 50}, + {a: 'item', t: '23', n: 50} + ] +} \ No newline at end of file diff --git a/src/json/guide.json b/src/json/guide.json new file mode 100644 index 0000000..6b7b91e --- /dev/null +++ b/src/json/guide.json @@ -0,0 +1,3404 @@ +{ + "0": { + "0": { + "step": 0, + "group": 0, + "guideType": 0, + "break": 0, + "triggerCond": "string", + "reliant": "string", + "spine": "string", + "direction": 0, + "sound": "string", + "bg": "string", + "mask": 0, + "content": "string", + "afterEvent": "string", + "afterGuide": "string", + "intr": "string", + "fingerClick": "string", + "skip": 0 + } + }, + "1": { + "10": { + "step": 10, + "group": 1, + "guideType": 2, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "content": "showAni", + "afterGuide": "1_20", + "intr": "播开场动画", + "skip": 0 + }, + "20": { + "step": 20, + "group": 1, + "guideType": 1, + "break": 0, + "spine": "kcdh_smr", + "direction": 1, + "sound": "sound", + "bg": "kcdh_1", + "mask": 0, + "content": "intr_guide_content_1", + "contents": "....再见了", + "afterGuide": "1_30", + "intr": "人物对话", + "skip": 0 + }, + "30": { + "step": 30, + "group": 1, + "guideType": 2, + "break": 0, + "bg": "kcdh_1", + "mask": 0, + "content": "showAni1", + "afterGuide": "100_40", + "intr": "播开场动画", + "skip": 0 + } + }, + "16": { + "930": { + "step": 930, + "group": 16, + "guideType": 3, + "break": 0, + "triggerCond": "lv:999", + "mask": 0, + "afterEvent": "Guide_levelUp_remove", + "afterGuide": "16_940", + "intr": "势力开启", + "fingerClick": "UiClass.list.levelUp.uiComponent.nodes.btn_red", + "skip": 1 + }, + "940": { + "step": 940, + "group": 16, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_16", + "contents": "现在罗阿那普拉各大势力都在吸纳新人,可以去看看。", + "afterGuide": "16_950", + "intr": "人物对话", + "skip": 1 + }, + "950": { + "step": 950, + "group": 16, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_mainView_show", + "afterGuide": "16_960", + "intr": "点击主城", + "fingerClick": "mainMenu.nodes.dy", + "skip": 1 + }, + "960": { + "step": 960, + "group": 16, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "scrollToXsTask", + "afterGuide": "16_970", + "intr": "滑动主城", + "skip": 1 + }, + "970": { + "step": 970, + "group": 16, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_gonghui_shilipaihang_show", + "afterGuide": "16_980", + "intr": "点击势力", + "fingerClick": "mainView.nodes.zc_btn_slzb", + "skip": 1 + }, + "980": { + "step": 980, + "group": 16, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_17", + "contents": "参加势力可以获得更多的支持,获取更多的物资,得到更强的力量。", + "intr": "人物对话", + "skip": 1 + } + }, + "17": { + "990": { + "step": 990, + "group": 17, + "guideType": 3, + "break": 0, + "triggerCond": "lv:999", + "mask": 0, + "afterEvent": "Guide_levelUp_remove", + "afterGuide": "17_1000", + "intr": "游轮竞技开启", + "fingerClick": "UiClass.list.levelUp.uiComponent.nodes.btn_red", + "skip": 1 + }, + "1000": { + "step": 1000, + "group": 17, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_18", + "contents": "与人较量是认清自己实力最快的方式。", + "afterGuide": "17_1010", + "intr": "人物对话", + "skip": 1 + }, + "1010": { + "step": 1010, + "group": 17, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_matouMain_show", + "afterGuide": "17_1020", + "intr": "点击码头", + "fingerClick": "mainMenu.nodes.tj", + "skip": 1 + }, + "1020": { + "step": 1020, + "group": 17, + "guideType": 3, + "break": 0, + "reliant": "fun:matouMain", + "mask": 0, + "afterEvent": "Guide_jingjichang_show", + "afterGuide": "17_1030", + "intr": "点击游轮竞技", + "fingerClick": "UiClass.list.matouMain.uiComponent.nodes.jjc", + "skip": 1 + }, + "1030": { + "step": 1030, + "group": 17, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_19", + "contents": "打趴下你的每一个对手,做罗阿那普拉之王!", + "afterGuide": "17_1040", + "intr": "人物对话", + "skip": 1 + }, + "1040": { + "step": 1040, + "group": 17, + "guideType": 3, + "break": 1, + "mask": 0, + "afterEvent": "Guide_playerInfo_show", + "afterGuide": "17_1050", + "intr": "点击第一个对手", + "fingerClick": "UiClass.list.jingjichang.uiComponent.nodes.NO1", + "skip": 1 + }, + "1050": { + "step": 1050, + "group": 17, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_playerInfo_remove", + "intr": "点击挑战", + "fingerClick": "UiClass.list.playerInfo.uiComponent.nodes.btn_red", + "skip": 1 + } + }, + "18": { + "1060": { + "step": 1060, + "group": 18, + "guideType": 3, + "break": 0, + "triggerCond": "lv:999", + "mask": 0, + "afterEvent": "Guide_levelUp_remove", + "afterGuide": "18_1070", + "intr": "黑暗塔开启", + "fingerClick": "UiClass.list.levelUp.uiComponent.nodes.btn_red", + "skip": 1 + }, + "1070": { + "step": 1070, + "group": 18, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_20", + "contents": "火并时有发生,要做到永绝后患,才能保证自己安全。", + "afterGuide": "18_1080", + "intr": "人物对话", + "skip": 1 + }, + "1080": { + "step": 1080, + "group": 18, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_matouMain_show", + "afterGuide": "18_1090", + "intr": "点击码头", + "fingerClick": "mainMenu.nodes.tj", + "skip": 1 + }, + "1090": { + "step": 1090, + "group": 18, + "guideType": 3, + "break": 0, + "reliant": "fun:matouMain", + "mask": 0, + "afterEvent": "Guide_pata_show", + "afterGuide": "18_1100", + "intr": "点击黑暗塔", + "fingerClick": "UiClass.list.matouMain.uiComponent.nodes.zccg", + "skip": 1 + }, + "1100": { + "step": 1100, + "group": 18, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_21", + "contents": "面对这些经验丰富的敌人,要更加小心。", + "afterGuide": "18_1110", + "intr": "人物对话", + "skip": 1 + }, + "1110": { + "step": 1110, + "group": 18, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_fight_show", + "intr": "点击挑战第一关", + "fingerClick": "UiClass.list.pata.uiComponent.nodes.content.getChildByName('item1')", + "skip": 1 + } + }, + "19": { + "1120": { + "step": 1120, + "group": 19, + "guideType": 3, + "break": 0, + "triggerCond": "lv:999", + "mask": 0, + "afterEvent": "Guide_levelUp_remove", + "afterGuide": "19_1130", + "intr": "主角的家开启", + "fingerClick": "UiClass.list.levelUp.uiComponent.nodes.btn_red", + "skip": 1 + }, + "1130": { + "step": 1130, + "group": 19, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_20", + "contents": "火并时有发生,要做到永绝后患,才能保证自己安全。", + "afterGuide": "19_1140", + "intr": "人物对话", + "skip": 1 + }, + "1140": { + "step": 1140, + "group": 19, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_mainView_show", + "afterGuide": "19_1150", + "intr": "点击主城", + "fingerClick": "mainMenu.nodes.dy", + "skip": 1 + }, + "1150": { + "step": 1150, + "group": 19, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "scrollToLeft", + "afterGuide": "19_1160", + "intr": "滑动主城到最左边", + "skip": 1 + }, + "1160": { + "step": 1160, + "group": 19, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_zhujuegongyu_show", + "afterGuide": "19_1170", + "intr": "点击主角的家", + "fingerClick": "mainView.nodes.zc_btn_zjdj", + "skip": 1 + }, + "1170": { + "step": 1170, + "group": 19, + "guideType": 3, + "break": 0, + "reliant": "fun:zhujuegongyu", + "mask": 0, + "afterEvent": "Guide_xunlianjihua2_show", + "afterGuide": "19_1180", + "intr": "点击作战计划", + "fingerClick": "UiClass.list.zhujuegongyu.uiComponent.nodes.btn_zzjh", + "skip": 1 + }, + "1180": { + "step": 1180, + "group": 19, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_23", + "contents": "长久的训练带来的提升是显而易见的。", + "afterGuide": "19_1190", + "intr": "人物对话", + "skip": 1 + }, + "1190": { + "step": 1190, + "group": 19, + "guideType": 3, + "break": 0, + "reliant": "fun:xunlianjihua2", + "mask": 0, + "afterEvent": "Guide_xunlianjihua_info_show", + "afterGuide": "19_1200", + "intr": "点击第一个主动技能", + "fingerClick": "UiClass.list.xunlianjihua2.uiComponent.nodes.ScrollView_New.scrollView.content.getChildByName('jinengClass_810').getChildByName('810')", + "skip": 1 + }, + "1200": { + "step": 1200, + "group": 19, + "guideType": 3, + "break": 1, + "reliant": "fun:xunlianjihua_info", + "mask": 0, + "afterGuide": "19_1210", + "intr": "点击升级", + "fingerClick": "UiClass.list.xunlianjihua_info.uiComponent.nodes.btn_red3", + "skip": 1 + }, + "1210": { + "step": 1210, + "group": 19, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_xunlianjihua_info_remove", + "afterGuide": "19_1220", + "intr": "关闭技能弹窗", + "fingerClick": "UiClass.list.xunlianjihua_info.uiComponent.nodes.btn_guanbi", + "skip": 1 + }, + "1220": { + "step": 1220, + "group": 19, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_24", + "contents": "有了与众不同的能力,可以在争斗的时候抢占先机。", + "afterGuide": "19_1230", + "intr": "人物对话", + "skip": 1 + }, + "1230": { + "step": 1230, + "group": 19, + "guideType": 3, + "break": 0, + "mask": 0, + "afterGuide": "19_1240", + "intr": "点击作战计划", + "fingerClick": "UiClass.list.xunlianjihua2.uiComponent.nodes.btn_gd", + "skip": 1 + }, + "1240": { + "step": 1240, + "group": 19, + "guideType": 3, + "break": 0, + "reliant": "fun:zuozhanjihua", + "mask": 0, + "afterEvent": "Guide_genghuanjihua_show", + "afterGuide": "19_1250", + "intr": "点击第一个加号", + "fingerClick": "UiClass.list.xunlianjihua2.uiComponent.nodes.panel_2?.nodes?.uiView_zuozhanjihua_youhua.ui?.nodes.list1", + "skip": 1 + }, + "1250": { + "step": 1250, + "group": 19, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_genghuanjihua_success", + "afterGuide": "19_1260", + "intr": "选择技能", + "fingerClick": "UiClass.list.genghuanjihua.uiComponent.nodes.content.children[0].nodes.ty_bg_gou", + "skip": 1 + }, + "1260": { + "step": 1260, + "group": 19, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_genghuanjihua_remove", + "intr": "点击确认", + "fingerClick": "UiClass.list.genghuanjihua.uiComponent.nodes.btn_red", + "skip": 1 + } + }, + "20": { + "1270": { + "step": 1270, + "group": 20, + "guideType": 3, + "break": 0, + "triggerCond": "lv:999", + "mask": 0, + "afterEvent": "Guide_levelUp_remove", + "afterGuide": "20_1280", + "intr": "物资筹集开启", + "fingerClick": "UiClass.list.levelUp.uiComponent.nodes.btn_red", + "skip": 1 + }, + "1280": { + "step": 1280, + "group": 20, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_25", + "contents": "在罗阿那普拉,物资的消耗是很快的,得找到更有效地获取物资的办法。", + "afterGuide": "20_1290", + "intr": "人物对话", + "skip": 1 + }, + "1290": { + "step": 1290, + "group": 20, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_matouMain_show", + "afterGuide": "20_1300", + "intr": "点击码头", + "fingerClick": "mainMenu.nodes.tj", + "skip": 1 + }, + "1300": { + "step": 1300, + "group": 20, + "guideType": 3, + "break": 0, + "reliant": "fun:matouMain", + "mask": 0, + "afterEvent": "Guide_meirishilian_show", + "afterGuide": "20_1310", + "intr": "点击物资缴获", + "fingerClick": "UiClass.list.matouMain.uiComponent.nodes.wzcj", + "skip": 1 + }, + "1310": { + "step": 1310, + "group": 20, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_26", + "contents": "有了物资才有和人叫板的底气!", + "afterGuide": "20_1320", + "intr": "人物对话", + "skip": 1 + }, + "1320": { + "step": 1320, + "group": 20, + "guideType": 3, + "break": 1, + "mask": 0, + "afterEvent": "Guide_fight_show", + "intr": "点击挑战按钮", + "fingerClick": "UiClass.list.meirishilian.uiComponent.nodes.btn_red", + "skip": 1 + } + }, + "21": { + "1330": { + "step": 1330, + "group": 21, + "guideType": 3, + "break": 0, + "triggerCond": "lv:999", + "mask": 0, + "afterEvent": "Guide_levelUp_remove", + "afterGuide": "21_1340", + "intr": "干部特训开启", + "fingerClick": "UiClass.list.levelUp.uiComponent.nodes.btn_red", + "skip": 1 + }, + "1340": { + "step": 1340, + "group": 21, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_27", + "contents": "当下的变强只是一时的,干部在未来的能力也得培养。", + "afterGuide": "21_1350", + "intr": "人物对话", + "skip": 1 + }, + "1350": { + "step": 1350, + "group": 21, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_matouMain_show", + "afterGuide": "21_1360", + "intr": "点击码头", + "fingerClick": "mainMenu.nodes.tj", + "skip": 1 + }, + "1360": { + "step": 1360, + "group": 21, + "guideType": 3, + "break": 1, + "reliant": "fun:matouMain", + "mask": 0, + "afterEvent": "Guide_ganbutexun_main_show", + "afterGuide": "21_1370", + "intr": "点击干部特训", + "fingerClick": "UiClass.list.matouMain.uiComponent.nodes.gbtx", + "skip": 1 + }, + "1370": { + "step": 1370, + "group": 21, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_28", + "contents": "干部经历特训可以获得更强大的潜力。", + "intr": "人物对话", + "skip": 1 + } + }, + "22": { + "1380": { + "step": 1380, + "group": 22, + "guideType": 3, + "break": 0, + "triggerCond": "lv:999", + "mask": 0, + "afterEvent": "Guide_levelUp_remove", + "afterGuide": "22_1390", + "intr": "悬赏开启", + "fingerClick": "UiClass.list.levelUp.uiComponent.nodes.btn_red", + "skip": 1 + }, + "1390": { + "step": 1390, + "group": 22, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_37", + "contents": "知道这儿的悬赏吗?带你去看看", + "afterGuide": "22_1400", + "intr": "人物对话", + "skip": 1 + }, + "1400": { + "step": 1400, + "group": 22, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_mainView_show", + "afterGuide": "22_1410", + "intr": "点击主城", + "fingerClick": "mainMenu.nodes.dy", + "skip": 1 + }, + "1410": { + "step": 1410, + "group": 22, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "scrollToXsTask", + "afterGuide": "22_1420", + "intr": "滑动主城到最右边边", + "skip": 1 + }, + "1420": { + "step": 1420, + "group": 22, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_xuanshangrenwu_show", + "afterGuide": "22_1430", + "intr": "点击悬赏", + "fingerClick": "mainView.nodes.zc_btn_lg", + "skip": 1 + }, + "1430": { + "step": 1430, + "group": 22, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_38", + "contents": "在这里争斗,没有什么事情是悬赏解决不了的。", + "afterGuide": "22_1440", + "intr": "人物对话", + "skip": 1 + }, + "1440": { + "step": 1440, + "group": 22, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_39", + "contents": "如果解决不了的,那就是手里的筹码还不够多。", + "intr": "人物对话", + "skip": 1 + } + }, + "23": { + "1450": { + "step": 1450, + "group": 23, + "guideType": 3, + "break": 0, + "triggerCond": "lv:999", + "mask": 0, + "afterEvent": "Guide_levelUp_remove", + "afterGuide": "23_1460", + "intr": "公路狂飙开启", + "fingerClick": "UiClass.list.levelUp.uiComponent.nodes.btn_red", + "skip": 1 + }, + "1460": { + "step": 1460, + "group": 23, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_40", + "contents": "最近路上的飙车党很多啊,真是让人头疼。", + "afterGuide": "23_1470", + "intr": "人物对话", + "skip": 1 + }, + "1470": { + "step": 1470, + "group": 23, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_tanxian_show", + "afterGuide": "23_1480", + "intr": "点击探险按钮", + "fingerClick": "mainMenu.nodes.zd", + "skip": 1 + }, + "1480": { + "step": 1480, + "group": 23, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_gonglukuangbiao_show", + "afterGuide": "23_1490", + "intr": "点击公路狂飙按钮", + "fingerClick": "UiClass.list.tanxian.uiComponent.nodes.btn_glkb", + "skip": 1 + }, + "1490": { + "step": 1490, + "group": 23, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_41", + "contents": "既然吵到我了,就做好流血的准备吧。", + "afterGuide": "23_1500", + "intr": "人物对话", + "skip": 1 + }, + "1500": { + "step": 1500, + "group": 23, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_fight_show", + "afterGuide": "23_1510", + "intr": "点击第三个人战斗", + "fingerClick": "UiClass.list.gonglukuangbiao.uiComponent.guideNode", + "skip": 1 + }, + "1510": { + "step": 1510, + "group": 23, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "stopFight", + "afterGuide": "23_1520", + "intr": "进入战斗且暂停播放战斗动画", + "skip": 1 + }, + "1520": { + "step": 1520, + "group": 23, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_fight_speed3", + "intr": "手指点击切换到三倍速并继续播战斗动画", + "fingerClick": "UiClass.list.fight.uiComponent.nodes.btn_speed", + "skip": 1 + } + }, + "24": { + "1530": { + "step": 1530, + "group": 24, + "guideType": 3, + "break": 0, + "triggerCond": "lv:999", + "mask": 0, + "afterEvent": "Guide_levelUp_remove", + "afterGuide": "24_1540", + "intr": "十连抽开启", + "fingerClick": "UiClass.list.levelUp.uiComponent.nodes.btn_red", + "skip": 1 + }, + "1540": { + "step": 1540, + "group": 24, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_42", + "contents": "恭喜你成长了。去拿罗阿那普拉的馈赠吧!", + "afterGuide": "24_1550", + "intr": "人物对话", + "skip": 1 + }, + "1550": { + "step": 1550, + "group": 24, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_mainView_show", + "afterGuide": "24_1560", + "intr": "点击主城按钮", + "fingerClick": "mainMenu.nodes.dy", + "skip": 1 + }, + "1560": { + "step": 1560, + "group": 24, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_renwu_show", + "afterGuide": "24_1570", + "intr": "点击主线任务", + "fingerClick": "mainView.nodes.zc_img5", + "skip": 1 + }, + "1570": { + "step": 1570, + "group": 24, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_renwu_btn0", + "afterGuide": "24_1580", + "intr": "点击成就任务", + "fingerClick": "UiClass.list.renwu.uiComponent.nodes.cjrw", + "skip": 1 + }, + "1580": { + "step": 1580, + "group": 24, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_43", + "contents": "在这里,每个人都会留下自己存在的痕迹。", + "afterGuide": "24_1590", + "intr": "人物对话", + "skip": 1 + }, + "1590": { + "step": 1590, + "group": 24, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_prize_show", + "afterGuide": "24_1600", + "intr": "领取玩家达到11级的成就任务奖励", + "fingerClick": "UiClass.list.renwu.uiComponent.nodes.panel_cjrw.nodes.content.children[0].nodes.btn_list", + "skip": 1 + }, + "1600": { + "step": 1600, + "group": 24, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_prize_remove", + "afterGuide": "24_1610", + "intr": "关闭领取奖励弹窗", + "fingerClick": "UiClass.list.prize.uiComponent.nodes.txt_tips", + "skip": 1 + }, + "1610": { + "step": 1610, + "group": 24, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_renwu_remove", + "afterGuide": "24_1620", + "intr": "点击返回,返回主城", + "fingerClick": "UiClass.list.renwu.uiDown.nodes.node_fh", + "skip": 1 + }, + "1620": { + "step": 1620, + "group": 24, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "scrollToXsTask", + "afterGuide": "24_1630", + "intr": "滑动主城", + "skip": 1 + }, + "1630": { + "step": 1630, + "group": 24, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_jiuba_show", + "afterGuide": "24_1640", + "intr": "点击酒吧", + "fingerClick": "mainView.nodes.zc_btn_jg", + "skip": 1 + }, + "1640": { + "step": 1640, + "group": 24, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_jiuba_slc_over", + "afterGuide": "25_1650", + "intr": "点击十连抽", + "fingerClick": "UiClass.list.jiuba.uiComponent.nodes.btn_zmsc", + "skip": 1 + } + }, + "25": { + "1650": { + "step": 1650, + "group": 25, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_jiuba_slc_remove", + "intr": "关闭抽卡界面", + "fingerClick": "UiClass.list.jiuba_slc.uiComponent.nodes.btn_fh", + "skip": 1 + }, + "1660": { + "step": 1660, + "group": 25, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_jiuba_remove", + "afterGuide": "25_1670", + "intr": "关闭酒馆界面", + "fingerClick": "UiClass.list.jiuba.uiDown.nodes.node_fh", + "skip": 1 + }, + "1670": { + "step": 1670, + "group": 25, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "scrollToLeft", + "afterGuide": "25_1680", + "intr": "滑动主城到最左边", + "skip": 1 + }, + "1680": { + "step": 1680, + "group": 25, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_zhujuegongyu_show", + "afterGuide": "25_1690", + "intr": "点击主角公寓", + "fingerClick": "mainView.nodes.zc_btn_zjdj", + "skip": 1 + }, + "1690": { + "step": 1690, + "group": 25, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_gldd_show", + "afterGuide": "25_1700", + "intr": "点击管理调度", + "fingerClick": "UiClass.list.zhujuegongyu.uiComponent.nodes.btn_gldd", + "skip": 1 + }, + "1700": { + "step": 1700, + "group": 25, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_44", + "contents": "这里可以遣散部分人手。", + "afterGuide": "25_1710", + "intr": "人物对话", + "skip": 1 + }, + "1710": { + "step": 1710, + "group": 25, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_45", + "contents": "也可以拆卸装备,你来亲自尝试以下吧!", + "intr": "人物对话", + "skip": 1 + } + }, + "26": { + "1720": { + "step": 1720, + "group": 26, + "guideType": 1, + "break": 0, + "reliant": "frame:tanxian", + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_46", + "contents": "这就要认输了吗?", + "afterGuide": "26_1730", + "intr": "首次战斗战败对话", + "skip": 1 + }, + "1730": { + "step": 1730, + "group": 26, + "guideType": 3, + "break": 0, + "mask": 0, + "intr": "点击失败界面的干部升级按钮", + "fingerClick": "UiClass.list.fight_fail.uiComponent.nodes.zd_icon_001", + "skip": 1 + } + }, + "27": { + "1740": { + "step": 1740, + "group": 27, + "guideType": 3, + "break": 0, + "triggerCond": "lv:999", + "mask": 0, + "afterEvent": "Guide_levelUp_remove", + "afterGuide": "27_1750", + "intr": "藏品开启", + "fingerClick": "UiClass.list.levelUp.uiComponent.nodes.btn_red", + "skip": 1 + }, + "1750": { + "step": 1750, + "group": 27, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_61", + "contents": "饰品已经解锁了,去看看吧。", + "afterGuide": "27_1760", + "intr": "人物对话", + "skip": 1 + }, + "1760": { + "step": 1760, + "group": 27, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_hero_show", + "afterGuide": "27_1770", + "intr": "点击干部", + "fingerClick": "mainMenu.nodes.gb", + "skip": 1 + }, + "1770": { + "step": 1770, + "group": 27, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_heroInfo_show", + "afterGuide": "27_1780", + "intr": "点击第一个已经上阵的英雄", + "fingerClick": "UiClass.list.hero.uiComponent.nodes.head1", + "skip": 1 + }, + "1780": { + "step": 1780, + "group": 27, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_clickHero_btn_sp", + "afterGuide": "27_1790", + "intr": "点击饰品", + "fingerClick": "UiClass.list.heroInfo.uiComponent.nodes.btn_sp", + "skip": 1 + }, + "1790": { + "step": 1790, + "group": 27, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_shiwu_xz_show", + "intr": "点击第一个饰品按钮", + "fingerClick": "UiClass.list.heroInfo.uiComponent.nodes.panel_rdown.nodes.img_sp1", + "skip": 1 + } + }, + "28": { + "1800": { + "step": 1800, + "group": 28, + "guideType": 3, + "break": 0, + "triggerCond": "lv:999", + "mask": 0, + "afterEvent": "Guide_levelUp_remove", + "afterGuide": "28_1810", + "intr": "讨伐海盗开启", + "skip": 1 + }, + "1810": { + "step": 1810, + "group": 28, + "guideType": 1, + "break": 0, + "spine": 4002, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_78", + "contents": "有一些海盗在罗阿那普拉周边游荡,去找他们要点物资。", + "afterGuide": "28_1820", + "intr": "人物对话", + "skip": 1 + }, + "1820": { + "step": 1820, + "group": 28, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "gotoHome", + "afterEvent": "Guide_mainView_show", + "afterGuide": "28_1830", + "intr": "自动跳转到主城", + "skip": 1 + }, + "1830": { + "step": 1830, + "group": 28, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_matouMain_show", + "afterGuide": "28_1840", + "intr": "点击码头", + "fingerClick": "mainMenu.nodes.tj", + "skip": 1 + }, + "1840": { + "step": 1840, + "group": 28, + "guideType": 3, + "break": 1, + "reliant": "fun:matouMain", + "mask": 0, + "afterEvent": "Guide_tfhd_main_show", + "afterGuide": "28_1850", + "intr": "点击讨伐海盗", + "fingerClick": "UiClass.list.matouMain.uiComponent.nodes.tfhd", + "skip": 1 + }, + "1850": { + "step": 1850, + "group": 28, + "guideType": 1, + "break": 0, + "spine": 4002, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_79", + "contents": "每次挑战都能收获物资,注意抓准时机击杀海盗以获得双倍的收益。", + "intr": "人物对话", + "skip": 1 + } + }, + "29": { + "1860": { + "step": 1860, + "group": 29, + "guideType": 1, + "break": 0, + "triggerCond": "lv:999", + "spine": 4001, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_80", + "contents": "跟干部们相处有段时间了,是时候给他们做下特训提升一下了。", + "afterGuide": "29_1870", + "intr": "人物对话", + "skip": 1 + }, + "1870": { + "step": 1870, + "group": 29, + "guideType": 3, + "break": 0, + "mask": 0, + "afterGuide": "29_1880", + "intr": "点击码头", + "skip": 1 + }, + "1880": { + "step": 1880, + "group": 29, + "guideType": 3, + "break": 1, + "mask": 0, + "intr": "点击干部特训", + "skip": 1 + }, + "1890": { + "step": 1890, + "group": 29, + "guideType": 1, + "break": 0, + "spine": 4001, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_81", + "contents": "使用特训指南对指定干部进行特训可以获得对应的干部碎片。", + "intr": "人物对话", + "skip": 1 + } + }, + "30": { + "1900": { + "step": 1900, + "group": 30, + "guideType": 3, + "break": 0, + "triggerCond": "lv:999", + "mask": 0, + "afterEvent": "Guide_levelUp_remove", + "afterGuide": "30_1910", + "intr": "搏击俱乐部开启", + "skip": 1 + }, + "1910": { + "step": 1910, + "group": 30, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_82", + "contents": "搏击俱乐部开放了,去找点乐子。", + "afterGuide": "30_1920", + "intr": "人物对话", + "skip": 1 + }, + "1920": { + "step": 1920, + "group": 30, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "gotoHome", + "afterEvent": "Guide_mainView_show", + "afterGuide": "30_1930", + "intr": "自动跳转到主城", + "skip": 1 + }, + "1930": { + "step": 1930, + "group": 30, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_matouMain_show", + "afterGuide": "30_1940", + "intr": "点击码头", + "fingerClick": "mainMenu.nodes.tj", + "skip": 1 + }, + "1940": { + "step": 1940, + "group": 30, + "guideType": 3, + "break": 1, + "reliant": "fun:matouMain", + "mask": 0, + "afterEvent": "Guide_dixialeitai_paiqian_show", + "afterGuide": "30_1950", + "intr": "点击搏击俱乐部", + "fingerClick": "UiClass.list.matouMain.uiComponent.nodes.dxlt", + "skip": 1 + }, + "1950": { + "step": 1950, + "group": 30, + "guideType": 1, + "break": 0, + "spine": 4001, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_83", + "contents": "你已经上阵的干部阵容就是本轮挑战的阵容了,每次可以派出其中一个去挑战领主。", + "afterGuide": "30_1960", + "intr": "人物对话", + "skip": 1 + }, + "1960": { + "step": 1960, + "group": 30, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 2, + "mask": 0, + "content": "intr_guide_content_84", + "contents": "每轮挑战中干部的血量会一直继承,注意合理派遣你的干部。", + "intr": "人物对话", + "skip": 1 + } + }, + "31": { + "1970": { + "step": 1970, + "group": 31, + "guideType": 3, + "break": 0, + "triggerCond": "lv:999", + "mask": 0, + "afterEvent": "Guide_levelUp_remove", + "afterGuide": "31_1980", + "intr": "铁笼死斗部开启", + "skip": 1 + }, + "1980": { + "step": 1980, + "group": 31, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_85", + "contents": "铁笼死斗开始了,走吧。", + "afterGuide": "31_1990", + "intr": "人物对话", + "skip": 1 + }, + "1990": { + "step": 1990, + "group": 31, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "gotoHome", + "afterEvent": "Guide_mainView_show", + "afterGuide": "31_2000", + "intr": "自动跳转到主城", + "skip": 1 + }, + "2000": { + "step": 2000, + "group": 31, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_matouMain_show", + "afterGuide": "31_2010", + "intr": "点击码头", + "fingerClick": "mainMenu.nodes.tj", + "skip": 1 + }, + "2010": { + "step": 2010, + "group": 31, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "scrollToMtRight", + "afterGuide": "31_2020", + "intr": "滑动码头到右侧", + "skip": 1 + }, + "2020": { + "step": 2020, + "group": 31, + "guideType": 3, + "break": 1, + "reliant": "fun:matouMain", + "mask": 0, + "afterEvent": "Guide_tielongsidou_show", + "afterGuide": "31_2030", + "intr": "点击铁笼死斗", + "fingerClick": "UiClass.list.matouMain.uiComponent.nodes.tlsd", + "skip": 1 + }, + "2030": { + "step": 2030, + "group": 31, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_86", + "contents": "在这里报名后即可进入大乱斗阶段,战胜其他玩家出围后可依次晋级钻石赛和王者赛来赢得更丰厚的奖励。", + "afterGuide": "31_2040", + "intr": "人物对话", + "skip": 1 + }, + "2040": { + "step": 2040, + "group": 31, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_87", + "contents": "竞猜也是赢得奖励的一种好办法。", + "intr": "人物对话", + "skip": 1 + } + }, + "32": { + "2050": { + "step": 2050, + "group": 32, + "guideType": 3, + "break": 0, + "triggerCond": "lv:999", + "mask": 3, + "afterEvent": "Guide_levelUp_remove", + "afterGuide": "32_2060", + "intr": "黑帮激战开启", + "skip": 1 + }, + "2060": { + "step": 2060, + "group": 32, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_88", + "contents": "黑帮激战开始了,我已经等不及要去施展拳脚了。", + "afterGuide": "32_2070", + "intr": "人物对话", + "skip": 1 + }, + "2070": { + "step": 2070, + "group": 32, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "gotoHome", + "afterEvent": "Guide_mainView_show", + "afterGuide": "32_2080", + "intr": "自动跳转到主城", + "skip": 1 + }, + "2080": { + "step": 2080, + "group": 32, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_matouMain_show", + "afterGuide": "32_2090", + "intr": "点击码头", + "fingerClick": "mainMenu.nodes.tj", + "skip": 1 + }, + "2090": { + "step": 2090, + "group": 32, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "scrollToMtRight", + "afterGuide": "32_2100", + "intr": "滑动码头到右侧", + "skip": 1 + }, + "2100": { + "step": 2100, + "group": 32, + "guideType": 3, + "break": 1, + "reliant": "fun:matouMain", + "mask": 0, + "afterEvent": "Guide_heibangzhengba_show", + "afterGuide": "32_2110", + "intr": "点击黑帮激战", + "fingerClick": "UiClass.list.matouMain.uiComponent.nodes.hszb", + "skip": 1 + }, + "2110": { + "step": 2110, + "group": 32, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_89", + "contents": "挑战不同的对手来获得不同的积分和荣耀奖励。", + "afterGuide": "32_2120", + "intr": "人物对话", + "skip": 1 + }, + "2120": { + "step": 2120, + "group": 32, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_99", + "contents": "为了更多的奖励和晋级争霸赛的资格,合理运用挑战次数冲击更高的积分吧。", + "intr": "人物对话", + "skip": 1 + } + }, + "33": { + "2130": { + "step": 2130, + "group": 33, + "guideType": 3, + "break": 0, + "triggerCond": "lv:999", + "mask": 0, + "afterEvent": "Guide_levelUp_remove", + "afterGuide": "33_2140", + "intr": "地盘争夺开启", + "skip": 1 + }, + "2140": { + "step": 2140, + "group": 33, + "guideType": 1, + "break": 0, + "spine": 5003, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_90", + "contents": "地盘占领开放了,去抢占一块属于自己的地盘吧。", + "afterGuide": "33_2150", + "intr": "人物对话", + "skip": 1 + }, + "2150": { + "step": 2150, + "group": 33, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "gotoHome", + "afterEvent": "Guide_mainView_show", + "afterGuide": "33_2160", + "intr": "自动跳转到主城", + "skip": 1 + }, + "2160": { + "step": 2160, + "group": 33, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_matouMain_show", + "afterGuide": "33_2170", + "intr": "点击码头", + "fingerClick": "mainMenu.nodes.tj", + "skip": 1 + }, + "2170": { + "step": 2170, + "group": 33, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "scrollToMtRight", + "afterGuide": "33_2180", + "intr": "滑动码头到右侧", + "skip": 1 + }, + "2180": { + "step": 2180, + "group": 33, + "guideType": 3, + "break": 0, + "reliant": "fun:matouMain", + "mask": 0, + "afterEvent": "Guide_dpzd_main_show", + "afterGuide": "33_2190", + "intr": "点击地盘争夺", + "fingerClick": "UiClass.list.matouMain.uiComponent.nodes.dpzd", + "skip": 1 + }, + "2190": { + "step": 2190, + "group": 33, + "guideType": 1, + "break": 0, + "spine": 5003, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_91", + "contents": "占领空闲的地盘或者抢夺其他玩家的地盘来获得你所需要的资源。", + "afterGuide": "33_2200", + "intr": "人物对话", + "skip": 1 + }, + "2200": { + "step": 2200, + "group": 33, + "guideType": 1, + "break": 0, + "spine": 5002, + "direction": 2, + "mask": 0, + "content": "intr_guide_content_92", + "contents": "注意,每个地区均不可重复占领,且总占领地区最多为俩块。", + "intr": "人物对话", + "skip": 1 + } + }, + "34": { + "2210": { + "step": 2210, + "group": 34, + "guideType": 3, + "break": 0, + "triggerCond": "lv:999", + "mask": 0, + "afterEvent": "Guide_levelUp_remove", + "afterGuide": "34_2220", + "intr": "海盗争霸开启", + "skip": 1 + }, + "2220": { + "step": 2220, + "group": 34, + "guideType": 1, + "break": 0, + "spine": 4002, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_93", + "contents": "海盗争霸开始了,去看看能不能从中获得物资。", + "afterGuide": "34_2230", + "intr": "人物对话", + "skip": 1 + }, + "2230": { + "step": 2230, + "group": 34, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "gotoHome", + "afterEvent": "Guide_mainView_show", + "afterGuide": "34_2240", + "intr": "自动跳转到主城", + "skip": 1 + }, + "2240": { + "step": 2240, + "group": 34, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_matouMain_show", + "afterGuide": "34_2250", + "intr": "点击码头", + "fingerClick": "mainMenu.nodes.tj", + "skip": 1 + }, + "2250": { + "step": 2250, + "group": 34, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "scrollToMtRight", + "afterGuide": "34_2260", + "intr": "滑动码头到右侧", + "skip": 1 + }, + "2260": { + "step": 2260, + "group": 34, + "guideType": 3, + "break": 1, + "reliant": "fun:matouMain", + "mask": 0, + "afterEvent": "Guide_shilizhengdou_show", + "afterGuide": "34_2270", + "intr": "点击海岛争霸", + "fingerClick": "UiClass.list.matouMain.uiComponent.nodes. slzd", + "skip": 1 + }, + "2270": { + "step": 2270, + "group": 34, + "guideType": 1, + "break": 0, + "spine": 4002, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_94", + "contents": "势力之间的战争打响了,攻打建筑中其他势力的玩家为你的势力积攒势力积分从而使你和你的势力成员获得更多的奖励。", + "intr": "人物对话", + "skip": 1 + } + }, + "35": { + "2280": { + "step": 2280, + "group": 35, + "guideType": 3, + "break": 0, + "triggerCond": "lv:999", + "mask": 0, + "afterEvent": "Guide_levelUp_remove", + "afterGuide": "35_2290", + "intr": "丛林狩猎开启", + "skip": 1 + }, + "2290": { + "step": 2290, + "group": 35, + "guideType": 1, + "break": 0, + "spine": 4001, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_95", + "contents": "丛林狩猎开始了,我们也去参加一下。", + "afterGuide": "35_2300", + "intr": "人物对话", + "skip": 1 + }, + "2300": { + "step": 2300, + "group": 35, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "gotoHome", + "afterEvent": "Guide_mainView_show", + "afterGuide": "35_2310", + "intr": "自动跳转到主城", + "skip": 1 + }, + "2310": { + "step": 2310, + "group": 35, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_matouMain_show", + "afterGuide": "35_2320", + "intr": "点击码头", + "fingerClick": "mainMenu.nodes.tj", + "skip": 1 + }, + "2320": { + "step": 2320, + "group": 35, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "scrollToMtRight", + "afterGuide": "35_2330", + "intr": "滑动码头到右侧", + "skip": 1 + }, + "2330": { + "step": 2330, + "group": 35, + "guideType": 3, + "break": 1, + "reliant": "fun:matouMain", + "mask": 0, + "afterEvent": "Guide_clsl_main_show", + "afterGuide": "35_2340", + "intr": "点击丛林狩猎", + "fingerClick": "UiClass.list.matouMain.uiComponent.nodes. clsl", + "skip": 1 + }, + "2340": { + "step": 2340, + "group": 35, + "guideType": 1, + "break": 0, + "spine": 4001, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_96", + "contents": "挑战不同的玩家获得星级从而晋升更高的段位。赛季结束时会根据段位来发放奖励。", + "intr": "人物对话", + "skip": 1 + } + }, + "36": { + "2350": { + "step": 2350, + "group": 36, + "guideType": 3, + "break": 0, + "triggerCond": "lv:999", + "mask": 0, + "afterEvent": "Guide_levelUp_remove", + "afterGuide": "36_2360", + "intr": "清剿真主党开启", + "skip": 1 + }, + "2360": { + "step": 2360, + "group": 36, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_97", + "contents": "清缴真主党开始了,我们不能落后别人。", + "afterGuide": "36_2370", + "intr": "人物对话", + "skip": 1 + }, + "2370": { + "step": 2370, + "group": 36, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "gotoHome", + "afterEvent": "Guide_mainView_show", + "afterGuide": "36_2380", + "intr": "自动跳转到主城", + "skip": 1 + }, + "2380": { + "step": 2380, + "group": 36, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_matouMain_show", + "afterGuide": "36_2390", + "intr": "点击码头", + "fingerClick": "mainMenu.nodes.tj", + "skip": 1 + }, + "2390": { + "step": 2390, + "group": 36, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "scrollToMtRight", + "afterGuide": "36_2400", + "intr": "滑动码头到右侧", + "skip": 1 + }, + "2400": { + "step": 2400, + "group": 36, + "guideType": 3, + "break": 0, + "reliant": "fun:matouMain", + "mask": 0, + "afterEvent": "Guide_qjzzd_show", + "afterGuide": "36_2410", + "intr": "点击清缴真主党", + "fingerClick": "UiClass.list.matouMain.uiComponent.nodes. qjzzd", + "skip": 1 + }, + "2410": { + "step": 2410, + "group": 36, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_98", + "contents": "合理运用你的干部去挑战不同的首领吧。最终奖励会根据你单次战斗伤害最高的数据来进行发放。", + "intr": "人物对话", + "skip": 1 + } + }, + "37": { + "2420": { + "step": 2420, + "group": 37, + "guideType": 3, + "break": 0, + "triggerCond": "lv:999", + "mask": 0, + "afterEvent": "Guide_levelUp_remove", + "afterGuide": "37_2430", + "intr": "教堂仓库开启", + "skip": 1 + }, + "2430": { + "step": 2430, + "group": 37, + "guideType": 1, + "break": 0, + "spine": 3015, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_76", + "contents": "听说尤兰达那边到了一批新货,我们去看下有没有趁手的好东西。", + "afterGuide": "37_2440", + "intr": "人物对话", + "skip": 1 + }, + "2440": { + "step": 2440, + "group": 37, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "gotoHome", + "afterEvent": "Guide_mainView_show", + "afterGuide": "37_2450", + "intr": "自动跳转到主城", + "skip": 1 + }, + "2450": { + "step": 2450, + "group": 37, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "scrollToLeft", + "afterGuide": "37_2460", + "intr": "滑动到岛屿左侧", + "skip": 1 + }, + "2460": { + "step": 2460, + "group": 37, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_jiaotang_show", + "afterGuide": "37_2470", + "intr": "点击教堂", + "fingerClick": "mainView.nodes.zc_btn_jt", + "skip": 1 + }, + "2470": { + "step": 2470, + "group": 37, + "guideType": 3, + "break": 1, + "reliant": "fun:jiaotang", + "mask": 0, + "afterGuide": "37_2480", + "intr": "点击仓库", + "fingerClick": "UiClass.list.jiaotang.uiComponent.nodes.btn_ck", + "skip": 1 + }, + "2480": { + "step": 2480, + "group": 37, + "guideType": 1, + "break": 0, + "spine": 4005, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_77", + "contents": "都是刚到手的好货,但是能拿到什么东西就看你运气了。", + "intr": "人物对话", + "skip": 1 + } + }, + "38": { + "2490": { + "step": 2490, + "group": 38, + "guideType": 3, + "break": 0, + "triggerCond": "lv:999", + "mask": 0, + "afterEvent": "Guide_levelUp_remove", + "afterGuide": "38_2500", + "intr": "教堂开启", + "fingerClick": "UiClass.list.levelUp.uiComponent.nodes.btn_red", + "skip": 1 + }, + "2500": { + "step": 2500, + "group": 38, + "guideType": 1, + "break": 0, + "spine": 4002, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_71", + "contents": "我们也需要装备武装一下自己。去尤兰达那边看一下。", + "afterGuide": "38_2510", + "intr": "人物对话", + "skip": 1 + }, + "2510": { + "step": 2510, + "group": 38, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "gotoHome", + "afterEvent": "Guide_mainView_show", + "afterGuide": "38_2520", + "intr": "自动跳转到主城", + "skip": 1 + }, + "2520": { + "step": 2520, + "group": 38, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "scrollToLeft", + "afterGuide": "38_2530", + "intr": "滑动主城到最左边", + "skip": 1 + }, + "2530": { + "step": 2530, + "group": 38, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_jiaotang_show", + "afterGuide": "38_2540", + "intr": "点击教堂", + "fingerClick": "mainView.nodes.zc_btn_jt", + "skip": 1 + }, + "2540": { + "step": 2540, + "group": 38, + "guideType": 1, + "break": 0, + "spine": 4004, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_72", + "contents": "小伙子有空来我这儿看看了,来试试能挑到什么样的装备吧。", + "afterGuide": "38_2550", + "intr": "人物对话", + "skip": 1 + }, + "2550": { + "step": 2550, + "group": 38, + "guideType": 3, + "break": 0, + "reliant": "fun:jiaotang", + "mask": 0, + "intr": "点击招募一次", + "fingerClick": "UiClass.list.jiaotang.uiComponent.nodes.btn_zmyc", + "skip": 1 + } + }, + "39": { + "2560": { + "step": 2560, + "group": 39, + "guideType": 1, + "break": 0, + "triggerCond": "lv:999", + "spine": 4001, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_73", + "contents": "罗安阿普拉的黑市偶尔也会有很有价值的东西,记得经常来看看。", + "afterGuide": "39_2570", + "intr": "人物对话", + "skip": 1 + }, + "2570": { + "step": 2570, + "group": 39, + "guideType": 3, + "break": 0, + "reliant": "fun:heishi", + "mask": 0, + "afterEvent": "Guide_meirijingxuan_show", + "afterGuide": "39_2580", + "intr": "点击每日精选", + "fingerClick": "UiClass.list.heishi.uiComponent.nodes.meirijingxuan", + "skip": 1 + }, + "2580": { + "step": 2580, + "group": 39, + "guideType": 3, + "break": 0, + "reliant": "fun:meirijingxuan", + "mask": 0, + "intr": "点击领取免费礼包奖励", + "fingerClick": "UiClass.list.meirijingxuan.uiComponent.nodes.ScrollView.scrollView.content.children[1].nodes.btn_lq", + "skip": 1 + } + }, + "40": { + "2590": { + "step": 2590, + "group": 40, + "guideType": 1, + "break": 0, + "triggerCond": "lv:999", + "spine": 3015, + "direction": 1, + "mask": 0, + "content": "intr_guide_content_74", + "contents": "罗安阿普拉的所有好店都在这里了,可以在这里买到你需要的东西。我们先去看看杂货商店。", + "afterGuide": "40_2600", + "intr": "人物对话", + "skip": 1 + }, + "2600": { + "step": 2600, + "group": 40, + "guideType": 3, + "break": 0, + "reliant": "fun:shop_list", + "mask": 0, + "afterEvent": "Guide_shopMain_show", + "afterGuide": "40_2610", + "intr": "点击杂货商店", + "fingerClick": "UiClass.list.shop_list.uiComponent.nodes.ScrollView.scrollView.content.children[0]", + "skip": 1 + }, + "2610": { + "step": 2610, + "group": 40, + "guideType": 1, + "break": 0, + "spine": 3015, + "direction": 2, + "mask": 0, + "content": "intr_guide_content_75", + "contents": "这里能用钻石买到各种各样的日常道具,挑一挑有没有想要的吧.", + "intr": "人物对话", + "skip": 1 + } + }, + "100": { + "40": { + "step": 40, + "group": 100, + "guideType": 1, + "break": 0, + "reliant": "fun:mainView", + "spine": 5001, + "direction": 2, + "sound": "sound", + "bg": "kcdh_1", + "mask": 0, + "content": "intr_guide_content_2", + "contents": "噢,你终于醒了啊。", + "afterGuide": "100_50", + "intr": "人物对话", + "skip": 0 + }, + "50": { + "step": 50, + "group": 100, + "guideType": 1, + "break": 0, + "spine": 4002, + "direction": 1, + "sound": "sound", + "bg": "kcdh_1", + "mask": 0, + "content": "intr_guide_content_3", + "contents": "你睡得挺久的嘛。", + "afterGuide": "100_60", + "intr": "人物对话", + "skip": 0 + }, + "60": { + "step": 60, + "group": 100, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 2, + "sound": "sound", + "bg": "kcdh_1", + "mask": 0, + "content": "intr_guide_content_4", + "contents": "虽然有很多话要说,但首先我们得从这里逃出去。", + "afterGuide": "100_70", + "intr": "人物对话", + "skip": 0 + }, + "70": { + "step": 70, + "group": 100, + "guideType": 1, + "break": 0, + "spine": 4001, + "direction": 1, + "sound": "sound", + "bg": "kcdh_1", + "mask": 0, + "content": "intr_guide_content_5", + "contents": "嗯,周围似乎有一群看起来随时会袭击我们的家伙。", + "afterGuide": "100_80", + "intr": "人物对话", + "skip": 0 + }, + "80": { + "step": 80, + "group": 100, + "guideType": 2, + "break": 0, + "bg": "kcdh_2", + "mask": 0, + "content": "zhuanchang", + "afterGuide": "100_90", + "intr": "转场", + "skip": 0 + }, + "90": { + "step": 90, + "group": 100, + "guideType": 1, + "break": 0, + "spine": 3015, + "direction": 2, + "sound": "sound", + "bg": "kcdh_2", + "mask": 0, + "content": "intr_guide_content_6", + "contents": "达奇!莱薇!船正朝我们冲过来了!", + "afterGuide": "100_100", + "intr": "人物对话", + "skip": 0 + }, + "100": { + "step": 100, + "group": 100, + "guideType": 1, + "break": 0, + "spine": 4001, + "direction": 1, + "sound": "sound", + "bg": "kcdh_2", + "mask": 0, + "content": "intr_guide_content_7", + "contents": "...看起来比我们想象的麻烦得多啊。你究竟做了什么?", + "afterGuide": "100_110", + "intr": "人物对话", + "skip": 0 + }, + "110": { + "step": 110, + "group": 100, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 2, + "sound": "sound", + "bg": "kcdh_2", + "mask": 0, + "content": "intr_guide_content_8", + "contents": "啧,有这种事早说啊!这是另外的价格。", + "afterGuide": "100_120", + "intr": "人物对话", + "skip": 0 + }, + "120": { + "step": 120, + "group": 100, + "guideType": 1, + "break": 0, + "spine": 4001, + "direction": 1, + "sound": "sound", + "bg": "kcdh_2", + "mask": 0, + "content": "intr_guide_content_9", + "contents": "总之,如果我们继续待在这里,不管有多少条命也不够用。赶快回到罗阿那普拉吧。", + "afterGuide": "100_130", + "intr": "人物对话", + "skip": 0 + }, + "130": { + "step": 130, + "group": 100, + "guideType": 1, + "break": 0, + "spine": 4002, + "direction": 2, + "sound": "sound", + "bg": "kcdh_2", + "mask": 0, + "content": "intr_guide_content_10", + "contents": "嗯,要是继续待在这里,瞬间就成了鲨鱼的食物了。", + "afterGuide": "100_140", + "intr": "人物对话", + "skip": 0 + }, + "140": { + "step": 140, + "group": 100, + "guideType": 2, + "break": 0, + "bg": "kcdh_3", + "mask": 0, + "content": "zhuanchang", + "afterGuide": "100_150", + "intr": "转场", + "skip": 0 + }, + "150": { + "step": 150, + "group": 100, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "bg": "kcdh_3", + "mask": 0, + "content": "intr_guide_content_11", + "contents": "呼...总算是回来了...", + "afterGuide": "100_160", + "intr": "人物对话", + "skip": 0 + }, + "160": { + "step": 160, + "group": 100, + "guideType": 1, + "break": 0, + "spine": 4001, + "direction": 2, + "sound": "sound", + "bg": "kcdh_3", + "mask": 0, + "content": "intr_guide_content_12", + "contents": "首先我们整理一下情况,你能告诉我你的名字吗?", + "afterGuide": "100_170", + "intr": "人物对话", + "skip": 0 + }, + "170": { + "step": 170, + "group": 100, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "zhuanchang", + "intr": "转场", + "skip": 0 + }, + "180": { + "step": 180, + "group": 100, + "guideType": 2, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "content": "changeName", + "afterEvent": "Guide_gaiming_show", + "intr": "玩家取名", + "skip": 0 + }, + "190": { + "step": 190, + "group": 100, + "guideType": 3, + "break": 1, + "mask": 1, + "intr": "确认取名并关闭界面", + "fingerClick": "UiClass.list.gaiming.uiComponent.nodes.btn_qd", + "skip": 0 + } + }, + "101": { + "200": { + "step": 200, + "group": 101, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_jiuba_show", + "intr": "前往酒馆", + "fingerClick": "mainView.nodes.zc_btn_jg", + "skip": 0 + }, + "210": { + "step": 210, + "group": 101, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_49", + "contents": "酒馆可是招募同伴的好地方!", + "intr": "人物对话", + "skip": 0 + }, + "220": { + "step": 220, + "group": 101, + "guideType": 3, + "break": 1, + "mask": 0, + "afterEvent": "Guide_jiuba_choujiang", + "intr": "酒馆抽卡", + "fingerClick": "UiClass.list.jiuba.uiComponent.nodes.btn_zmyc", + "skip": 0 + }, + "230": { + "step": 230, + "group": 101, + "guideType": 2, + "break": 0, + "mask": 0, + "afterEvent": "Guide_jiuba_dc_show", + "intr": "酒馆抽卡展示", + "skip": 0 + }, + "240": { + "step": 240, + "group": 101, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "gotoTop", + "afterEvent": "Guide_huodexinyingxiong_show", + "intr": "调整引导界面层级", + "skip": 0 + }, + "250": { + "step": 250, + "group": 101, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_huodexinyingxiong_remove", + "intr": "关闭立绘展示", + "fingerClick": "UiClass.list.huodexinyingxiong.uiComponent.nodes.finger", + "skip": 0 + }, + "260": { + "step": 260, + "group": 101, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_jiuba_dc_remove", + "intr": "关闭抽卡界面", + "fingerClick": "UiClass.list.jiuba_dc.uiComponent.nodes.btn_fh", + "skip": 0 + }, + "270": { + "step": 270, + "group": 101, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "closeJiuBa", + "afterEvent": "Guide_jiuba_remove", + "intr": "退出酒吧多层界面", + "skip": 0 + } + }, + "102": { + "280": { + "step": 280, + "group": 102, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_clickHero", + "intr": "点击下方干部页签", + "fingerClick": "mainMenu.nodes.gb", + "skip": 0 + }, + "290": { + "step": 290, + "group": 102, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_clickHeroUp", + "intr": "点击二号位上阵英雄", + "fingerClick": "UiClass.list.heroInfo.uiComponent.nodes.sz_list2.nodes.txt_kw", + "skip": 0 + }, + "300": { + "step": 300, + "group": 102, + "guideType": 3, + "break": 1, + "sound": "sound", + "mask": 0, + "afterEvent": "Guide_hero_gh_remove", + "intr": "点击干部上阵", + "fingerClick": "UiClass.list.hero_gh.uiComponent.nodes.ScrollView.scrollView.content.children[0].nodes.btn", + "skip": 0 + }, + "310": { + "step": 310, + "group": 102, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_50", + "contents": "每次获得新的干部记得来这里出战。", + "intr": "人物对话", + "skip": 0 + } + }, + "103": { + "320": { + "step": 320, + "group": 103, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_tanxian_show", + "intr": "点击主线", + "fingerClick": "mainMenu.nodes.zd", + "skip": 0 + }, + "330": { + "step": 330, + "group": 103, + "guideType": 3, + "break": 1, + "mask": 0, + "afterEvent": "Guide_fight_show", + "intr": "点击战斗", + "fingerClick": "UiClass.list.tanxian.uiComponent.nodes.btn_kz", + "skip": 0 + }, + "340": { + "step": 340, + "group": 103, + "guideType": 0, + "break": 0, + "mask": 0, + "afterEvent": "Guide_fight_win_show", + "intr": "空白", + "skip": 0 + }, + "350": { + "step": 350, + "group": 103, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_levelUp_remove", + "intr": "战斗结束关闭奖励界面", + "fingerClick": "UiClass.list.fight_win.uiComponent.nodes.btn_fhyx", + "skip": 0 + } + }, + "104": { + "360": { + "step": 360, + "group": 104, + "guideType": 2, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "content": "gotoHome", + "afterEvent": "Guide_mainView_show", + "intr": "自动跳转到主城", + "skip": 0 + }, + "370": { + "step": 370, + "group": 104, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_renwu_show", + "intr": "点击主线任务", + "fingerClick": "mainView.nodes.zc_img5", + "skip": 0 + }, + "380": { + "step": 380, + "group": 104, + "guideType": 3, + "break": 1, + "mask": 0, + "afterEvent": "Guide_prize_show", + "intr": "点击领取主线任务奖励", + "fingerClick": "UiClass.list.renwu.uiComponent.nodes.btn_zxrw", + "skip": 0 + }, + "390": { + "step": 390, + "group": 104, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_prize_remove", + "intr": "关闭奖励界面", + "fingerClick": "UiClass.list.prize.uiComponent.nodes.txt_tips", + "skip": 0 + }, + "400": { + "step": 400, + "group": 104, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_70", + "contents": "刚刚获得的装备,去穿戴试试吧。", + "intr": "人物对话", + "skip": 0 + }, + "410": { + "step": 410, + "group": 104, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_renwu_remove", + "intr": "关闭任务界面", + "fingerClick": "UiClass.list.renwu.uiDown.nodes.node_fh", + "skip": 0 + } + }, + "105": { + "420": { + "step": 420, + "group": 105, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_clickHero", + "intr": "点击干部", + "fingerClick": "mainMenu.nodes.gb", + "skip": 0 + }, + "430": { + "step": 430, + "group": 105, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "gotoZhuangBei", + "afterEvent": "Guide_clickHero_btn_zb", + "intr": "点击装备", + "skip": 0 + }, + "440": { + "step": 440, + "group": 105, + "guideType": 3, + "break": 1, + "mask": 0, + "afterEvent": "Guide_hero_yjzb", + "intr": "点击一键穿戴", + "fingerClick": "UiClass.list.heroInfo.uiComponent.nodes.panel_zb.nodes.btn_yjzb", + "skip": 0 + }, + "450": { + "step": 450, + "group": 105, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_15", + "contents": "看起来变得更强了,去检视一下自身实力。", + "intr": "人物对话", + "skip": 0 + } + }, + "106": { + "460": { + "step": 460, + "group": 106, + "guideType": 3, + "break": 0, + "reliant": "frame:tanxian", + "mask": 0, + "afterEvent": "Guide_tanxian_show", + "intr": "点击探险按钮", + "fingerClick": "mainMenu.nodes.zd", + "skip": 0 + }, + "470": { + "step": 470, + "group": 106, + "guideType": 3, + "break": 1, + "mask": 0, + "afterEvent": "Guide_fight_show", + "intr": "点击战斗", + "fingerClick": "UiClass.list.tanxian.uiComponent.nodes.btn_kz", + "skip": 0 + }, + "480": { + "step": 480, + "group": 106, + "guideType": 0, + "break": 0, + "mask": 0, + "afterEvent": "Guide_fight_win_show", + "intr": "空白", + "skip": 0 + }, + "490": { + "step": 490, + "group": 106, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_fight_win_remove", + "intr": "战斗结束关闭奖励界面", + "fingerClick": "UiClass.list.fight_win.uiComponent.nodes.btn_fhyx", + "skip": 0 + } + }, + "107": { + "500": { + "step": 500, + "group": 107, + "guideType": 1, + "break": 0, + "reliant": "fun:mainView", + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_58", + "contents": "有新干部加入了。去认识下吧。", + "intr": "人物对话", + "skip": 0 + }, + "510": { + "step": 510, + "group": 107, + "guideType": 3, + "break": 0, + "reliant": "frame:beibao", + "mask": 0, + "afterEvent": "Guide_beibao_show", + "intr": "点击物品栏", + "fingerClick": "mainMenu.nodes.wp", + "skip": 0 + }, + "520": { + "step": 520, + "group": 107, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "gotoBeiBaoSuiPian", + "intr": "跳转到碎片栏", + "skip": 0 + }, + "530": { + "step": 530, + "group": 107, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_itemInfo_show", + "intr": "点击第一个英雄碎片", + "fingerClick": "UiClass.list.beibao.uiComponent.firstItem", + "skip": 0 + }, + "540": { + "step": 540, + "group": 107, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_59", + "contents": "每次获得干部碎片后记得来这里合成。", + "intr": "人物对话", + "skip": 0 + }, + "550": { + "step": 550, + "group": 107, + "guideType": 3, + "break": 1, + "mask": 0, + "afterEvent": "Guide_huodexinyingxiong_show", + "intr": "点击合成", + "fingerClick": "UiClass.list.itemInfo.uiComponent.nodes.btn", + "skip": 0 + }, + "560": { + "step": 560, + "group": 107, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_huodexinyingxiong_remove", + "intr": "关闭立绘展示", + "fingerClick": "UiClass.list.huodexinyingxiong.uiComponent.nodes.finger", + "skip": 0 + }, + "570": { + "step": 570, + "group": 107, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_prize_remove", + "intr": "关闭奖励界面", + "fingerClick": "UiClass.list.prize.uiComponent.nodes.txt_tips", + "skip": 0 + } + }, + "108": { + "580": { + "step": 580, + "group": 108, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_clickHero", + "intr": "点击下方干部页签", + "fingerClick": "mainMenu.nodes.gb", + "skip": 0 + }, + "590": { + "step": 590, + "group": 108, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_clickHeroUp", + "intr": "点击三号位上阵英雄", + "fingerClick": "UiClass.list.heroInfo.uiComponent.nodes.sz_list3.nodes.txt_kw", + "skip": 0 + }, + "600": { + "step": 600, + "group": 108, + "guideType": 3, + "break": 1, + "sound": "sound", + "mask": 0, + "afterEvent": "Guide_hero_gh_remove", + "intr": "点击干部上阵", + "fingerClick": "UiClass.list.hero_gh.uiComponent.nodes.ScrollView.scrollView.content.children[0].nodes.btn", + "skip": 0 + } + }, + "110": { + "610": { + "step": 610, + "group": 110, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_tanxian_show", + "intr": "点击主线", + "fingerClick": "mainMenu.nodes.zd", + "skip": 0 + }, + "620": { + "step": 620, + "group": 110, + "guideType": 3, + "break": 1, + "mask": 0, + "afterEvent": "Guide_fight_show", + "intr": "点击战斗", + "fingerClick": "UiClass.list.tanxian.uiComponent.nodes.btn_kz", + "skip": 0 + }, + "630": { + "step": 630, + "group": 110, + "guideType": 0, + "break": 0, + "mask": 0, + "afterEvent": "Guide_fight_win_show", + "intr": "空白", + "skip": 0 + }, + "640": { + "step": 640, + "group": 110, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_fight_win_remove", + "intr": "战斗结束关闭奖励界面", + "fingerClick": "UiClass.list.fight_win.uiComponent.nodes.btn_fhyx", + "skip": 0 + }, + "650": { + "step": 650, + "group": 110, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_56", + "contents": "记得经常去领取战利品,战利品最多累积8小时。", + "intr": "人物对话", + "skip": 0 + } + }, + "111": { + "660": { + "step": 660, + "group": 111, + "guideType": 3, + "break": 1, + "reliant": "frame:tanxian", + "mask": 0, + "afterEvent": "Guide_prize_show", + "intr": "探险点击宝箱", + "fingerClick": "UiClass.list.tanxian.uiComponent.nodes.gjBoxPrize", + "skip": 0 + }, + "670": { + "step": 670, + "group": 111, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_prize_remove", + "intr": "关闭奖励界面", + "fingerClick": "UiClass.list.prize.uiComponent.nodes.txt_tips", + "skip": 0 + } + }, + "112": { + "680": { + "step": 680, + "group": 112, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_clickHero", + "intr": "点击干部", + "fingerClick": "mainMenu.nodes.gb", + "skip": 0 + }, + "690": { + "step": 690, + "group": 112, + "guideType": 3, + "break": 1, + "reliant": "fun:heroInfo", + "mask": 0, + "afterEvent": "Guide_heroLvup", + "intr": "点击升级", + "fingerClick": "UiClass.list.heroInfo.uiComponent.nodes.btn_shengji", + "skip": 0 + }, + "700": { + "step": 700, + "group": 112, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_54", + "contents": "进阶会大幅提升干部基础能力,并解锁额外技能效果和稀有属性。", + "intr": "人物对话", + "skip": 0 + } + }, + "113": { + "710": { + "step": 710, + "group": 113, + "guideType": 3, + "break": 0, + "reliant": "fun:heroInfo", + "mask": 0, + "afterEvent": "Guide_clickHero_btn_jj", + "intr": "点击进阶入口", + "fingerClick": "UiClass.list.heroInfo.uiComponent.nodes.leftBtn.nodes.btn_jj", + "skip": 0 + }, + "720": { + "step": 720, + "group": 113, + "guideType": 3, + "break": 1, + "mask": 0, + "afterEvent": "Guide_hero_jinjie_success", + "intr": "英雄升阶", + "fingerClick": "UiClass.list.heroInfo.uiComponent.nodes.btn_jinjie", + "skip": 0 + } + }, + "114": { + "730": { + "step": 730, + "group": 114, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_tanxian_show", + "intr": "点击主线", + "fingerClick": "mainMenu.nodes.zd", + "skip": 0 + }, + "740": { + "step": 740, + "group": 114, + "guideType": 3, + "break": 1, + "mask": 0, + "afterEvent": "Guide_fight_show", + "intr": "点击战斗", + "fingerClick": "UiClass.list.tanxian.uiComponent.nodes.btn_kz", + "skip": 0 + }, + "750": { + "step": 750, + "group": 114, + "guideType": 0, + "break": 0, + "mask": 0, + "afterEvent": "Guide_fight_win_show", + "intr": "空白", + "skip": 0 + }, + "760": { + "step": 760, + "group": 114, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_fight_win_remove", + "intr": "战斗结束关闭奖励界面", + "fingerClick": "UiClass.list.fight_win.uiComponent.nodes.btn_fhyx", + "skip": 0 + }, + "770": { + "step": 770, + "group": 114, + "guideType": 2, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "content": "gotoHome", + "afterEvent": "Guide_mainView_show", + "intr": "自动跳转到主城", + "skip": 0 + } + }, + "115": { + "780": { + "step": 780, + "group": 115, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_renwu_show", + "intr": "点击主线任务", + "fingerClick": "mainView.nodes.zc_img5", + "skip": 0 + }, + "790": { + "step": 790, + "group": 115, + "guideType": 3, + "break": 1, + "mask": 0, + "afterEvent": "Guide_prize_show", + "intr": "点击领取主线任务奖励", + "fingerClick": "UiClass.list.renwu.uiComponent.nodes.btn_zxrw", + "skip": 0 + }, + "800": { + "step": 800, + "group": 115, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_prize_remove", + "intr": "关闭奖励界面", + "fingerClick": "UiClass.list.prize.uiComponent.nodes.txt_tips", + "skip": 0 + }, + "810": { + "step": 810, + "group": 115, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_renwu_remove", + "intr": "关闭任务界面", + "fingerClick": "UiClass.list.renwu.uiDown.nodes.node_fh", + "skip": 0 + }, + "820": { + "step": 820, + "group": 115, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_68", + "contents": "刚刚获得了不少招募卡,去酒馆看看吧!", + "intr": "人物对话", + "skip": 0 + } + }, + "116": { + "830": { + "step": 830, + "group": 116, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_jiuba_show", + "intr": "点击酒吧", + "fingerClick": "mainView.nodes.zc_btn_jg", + "skip": 0 + }, + "840": { + "step": 840, + "group": 116, + "guideType": 3, + "break": 1, + "mask": 0, + "afterEvent": "Guide_jiuba_slc_over", + "intr": "点击十连抽", + "fingerClick": "UiClass.list.jiuba.uiComponent.nodes.btn_zmsc", + "skip": 0 + }, + "850": { + "step": 850, + "group": 116, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_jiuba_slc_remove", + "intr": "关闭抽卡界面", + "fingerClick": "UiClass.list.jiuba_slc.uiComponent.nodes.btn_fh", + "skip": 0 + }, + "860": { + "step": 860, + "group": 116, + "guideType": 2, + "break": 0, + "mask": 0, + "content": "closeJiuBa", + "afterEvent": "Guide_jiuba_remove", + "intr": "退出酒吧多层界面", + "skip": 0 + } + }, + "117": { + "870": { + "step": 870, + "group": 117, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_clickHero", + "intr": "点击下方干部页签", + "fingerClick": "mainMenu.nodes.gb", + "skip": 0 + }, + "880": { + "step": 880, + "group": 117, + "guideType": 3, + "break": 0, + "mask": 0, + "afterEvent": "Guide_clickHeroUp", + "intr": "点击四号位上阵英雄", + "fingerClick": "UiClass.list.heroInfo.uiComponent.nodes.sz_list4.nodes.txt_kw", + "skip": 0 + }, + "890": { + "step": 890, + "group": 117, + "guideType": 3, + "break": 1, + "sound": "sound", + "mask": 0, + "afterEvent": "Guide_hero_gh_remove", + "intr": "点击干部上阵", + "fingerClick": "UiClass.list.hero_gh.uiComponent.nodes.ScrollView.scrollView.content.children[0].nodes.btn", + "skip": 0 + } + }, + "118": { + "900": { + "step": 900, + "group": 118, + "guideType": 3, + "break": 0, + "reliant": "fun:mainView", + "mask": 0, + "afterEvent": "Guide_tanxian_show", + "intr": "点击主线", + "fingerClick": "mainMenu.nodes.zd", + "skip": 0 + }, + "910": { + "step": 910, + "group": 118, + "guideType": 3, + "break": 1, + "mask": 0, + "afterEvent": "Guide_fight_win_remove", + "intr": "点击战斗", + "fingerClick": "UiClass.list.tanxian.uiComponent.nodes.btn_kz", + "skip": 0 + }, + "920": { + "step": 920, + "group": 118, + "guideType": 1, + "break": 0, + "spine": 5001, + "direction": 1, + "sound": "sound", + "mask": 0, + "content": "intr_guide_content_69", + "contents": "新的传奇等待着你去创造,请继续探险吧!", + "intr": "人物对话", + "skip": 0 + } + }, + "undefined": { + "2620": { + "step": 2620 + }, + "2630": { + "step": 2630 + } + } +} \ No newline at end of file diff --git a/src/json/guideConfig.json b/src/json/guideConfig.json new file mode 100644 index 0000000..dabe972 --- /dev/null +++ b/src/json/guideConfig.json @@ -0,0 +1,758 @@ +{ + "1": { + "id": 1, + "triggerType": "task", + "typeId": 2000, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainMenu/mainMenu/btnLayout/zd", + "undefined": "点探险", + "initiative": 1 + }, + "2": { + "id": 2, + "triggerType": "task", + "typeId": 2000, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_tanxian/tanxian/tx_map1/btn_kz", + "undefined": "点战斗", + "initiative": 1 + }, + "3": { + "id": 3, + "triggerType": "task", + "typeId": 2000, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_tanxian/tanxian/tx_map1/rw_tis", + "undefined": "点任务", + "initiative": 1 + }, + "4": { + "id": 4, + "triggerType": "task", + "typeId": 2001, + "Type": "dialog", + "path": "intr_guide_content_49", + "undefined": "对话", + "spine": 5001, + "direction": 1, + "initiative": 1 + }, + "5": { + "id": 5, + "triggerType": "task", + "typeId": 2001, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainMenu/mainMenu/btnLayout/dy", + "undefined": "点主城", + "initiative": 1 + }, + "6": { + "id": 6, + "triggerType": "task", + "typeId": 2001, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainView/mainView/ScrollView/view/content/zc_bg/name/zc_btn_jg", + "undefined": "点酒吧", + "initiative": 1 + }, + "7": { + "id": 7, + "triggerType": "task", + "typeId": 2001, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_jiuba/jiuba/bg/panel_btn/btn_zmyc", + "undefined": "点抽卡", + "initiative": 1 + }, + "8": { + "id": 8, + "triggerType": "task", + "typeId": 2002, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainMenu/mainMenu/btnLayout/gb", + "undefined": "点干部", + "initiative": 1 + }, + "9": { + "id": 9, + "triggerType": "task", + "typeId": 2002, + "Type": "dialog", + "path": "intr_guide_content_50", + "undefined": "对话", + "spine": 5001, + "direction": 1, + "initiative": 1 + }, + "10": { + "id": 10, + "triggerType": "task", + "typeId": 2002, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_heroInfo/heroInfo/img_bg/panel_top/lay_szhero/sz_list2/txt_kw", + "undefined": "点第二个干部加号", + "initiative": 1 + }, + "11": { + "id": 11, + "triggerType": "task", + "typeId": 2002, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_hero_gh/hero_gh/bg/ScrollView/view/content/list/btn", + "undefined": "弹框点上阵", + "initiative": 1 + }, + "12": { + "id": 12, + "triggerType": "task", + "typeId": 2003, + "Type": "dialog", + "path": "intr_guide_content_70", + "undefined": "对话", + "spine": 5001, + "direction": 1, + "initiative": 1 + }, + "13": { + "id": 13, + "triggerType": "task", + "typeId": 2003, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainMenu/mainMenu/btnLayout/gb", + "undefined": "点干部", + "initiative": 1 + }, + "14": { + "id": 14, + "triggerType": "task", + "typeId": 2003, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_heroInfo/heroInfo/img_bg/panel_down/btnScrollView/view/content/leftBtn/btn_zb", + "undefined": "点装备页签", + "initiative": 1 + }, + "15": { + "id": 15, + "triggerType": "task", + "typeId": 2003, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_heroInfo/heroInfo/img_bg/panel_down/panel_rdown/panel_zb/btn_yjzb", + "undefined": "点一键装备", + "initiative": 1 + }, + "16": { + "id": 16, + "triggerType": "task", + "typeId": 2004, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainMenu/mainMenu/btnLayout/zd", + "undefined": "点探险", + "initiative": 1 + }, + "17": { + "id": 17, + "triggerType": "task", + "typeId": 2004, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_tanxian/tanxian/tx_map1/btn_kz", + "undefined": "点战斗", + "initiative": 1 + }, + "18": { + "id": 18, + "triggerType": "task", + "typeId": 2005, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainMenu/mainMenu/btnLayout/wp", + "undefined": "点背包", + "initiative": 1 + }, + "19": { + "id": 19, + "triggerType": "task", + "typeId": 2005, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_beibao/beibao/bb_bg_001/Scr_btn/view/content/btnLayout/sp", + "undefined": "点碎片页签", + "initiative": 1 + }, + "20": { + "id": 20, + "triggerType": "task", + "typeId": 2005, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_beibao/beibao/bb_bg_001/ScrollView2/view/content/dj4/item/ItemClass", + "undefined": "点第一个碎片", + "initiative": 1 + }, + "21": { + "id": 21, + "triggerType": "task", + "typeId": 2005, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_itemInfo/itemInfo/pop_01/panel_btns/btn", + "undefined": "点合成", + "initiative": 1 + }, + "22": { + "id": 22, + "triggerType": "task", + "typeId": 2006, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainMenu/mainMenu/btnLayout/gb", + "undefined": "点干部", + "initiative": 1 + }, + "23": { + "id": 23, + "triggerType": "task", + "typeId": 2006, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_heroInfo/heroInfo/img_bg/panel_top/lay_szhero/sz_list3/txt_kw", + "undefined": "点第三个干部加号", + "initiative": 1 + }, + "24": { + "id": 24, + "triggerType": "task", + "typeId": 2006, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_hero_gh/hero_gh/bg/ScrollView/view/content/list/btn", + "undefined": "弹框点上阵", + "initiative": 1 + }, + "25": { + "id": 25, + "triggerType": "task", + "typeId": 2007, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainMenu/mainMenu/btnLayout/zd", + "undefined": "点探险" + }, + "26": { + "id": 26, + "triggerType": "task", + "typeId": 2007, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_tanxian/tanxian/tx_map1/btn_kz", + "undefined": "点战斗" + }, + "27": { + "id": 27, + "triggerType": "task", + "typeId": 2008, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainMenu/mainMenu/btnLayout/zd", + "undefined": "点探险", + "initiative": 1 + }, + "28": { + "id": 28, + "triggerType": "task", + "typeId": 2008, + "Type": "dialog", + "path": "intr_guide_content_56", + "undefined": "对话", + "spine": 5001, + "direction": 1, + "initiative": 1 + }, + "29": { + "id": 29, + "triggerType": "task", + "typeId": 2008, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_tanxian/tanxian/tx_map1/map/gjBoxPrize", + "undefined": "点挂机奖励宝箱", + "initiative": 1 + }, + "30": { + "id": 30, + "triggerType": "task", + "typeId": 2009, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainMenu/mainMenu/btnLayout/gb", + "undefined": "点干部", + "initiative": 1 + }, + "31": { + "id": 31, + "triggerType": "task", + "typeId": 2009, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_heroInfo/heroInfo/img_bg/panel_down/btnScrollView/view/content/leftBtn/btn_sj", + "undefined": "点升级页签", + "initiative": 1 + }, + "32": { + "id": 32, + "triggerType": "task", + "typeId": 2009, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_heroInfo/heroInfo/img_bg/panel_down/panel_rdown/panel_sj/btn_shengji", + "undefined": "点升级按钮", + "initiative": 1 + }, + "33": { + "id": 33, + "triggerType": "task", + "typeId": 2010, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainMenu/mainMenu/btnLayout/gb", + "undefined": "点干部", + "initiative": 1 + }, + "34": { + "id": 34, + "triggerType": "task", + "typeId": 2010, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_heroInfo/heroInfo/img_bg/panel_down/btnScrollView/view/content/leftBtn/btn_jj", + "undefined": "点进阶页签", + "initiative": 1 + }, + "35": { + "id": 35, + "triggerType": "task", + "typeId": 2010, + "Type": "dialog", + "path": "intr_guide_content_54", + "undefined": "对话", + "spine": 5001, + "direction": 1, + "initiative": 1 + }, + "36": { + "id": 36, + "triggerType": "task", + "typeId": 2010, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_heroInfo/heroInfo/img_bg/panel_down/panel_rdown/panel_jj/btn_jinjie", + "undefined": "点进阶按钮", + "initiative": 1 + }, + "37": { + "id": 37, + "triggerType": "task", + "typeId": 2011, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainMenu/mainMenu/btnLayout/zd", + "undefined": "点探险" + }, + "38": { + "id": 38, + "triggerType": "task", + "typeId": 2011, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_tanxian/tanxian/tx_map1/btn_kz", + "undefined": "点战斗" + }, + "39": { + "id": 39, + "triggerType": "task", + "typeId": 2012, + "Type": "dialog", + "path": "intr_guide_content_68", + "undefined": "对话", + "spine": 5001, + "direction": 1, + "initiative": 1 + }, + "40": { + "id": 40, + "triggerType": "task", + "typeId": 2012, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainMenu/mainMenu/btnLayout/dy", + "undefined": "点主城", + "initiative": 1 + }, + "41": { + "id": 41, + "triggerType": "task", + "typeId": 2012, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainView/mainView/ScrollView/view/content/zc_bg/name/zc_btn_jg", + "undefined": "点酒吧", + "initiative": 1 + }, + "42": { + "id": 42, + "triggerType": "task", + "typeId": 2012, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_jiuba/jiuba/bg/panel_btn/btn_zmsc", + "undefined": "十连抽", + "initiative": 1 + }, + "43": { + "id": 43, + "triggerType": "task", + "typeId": 2013, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainMenu/mainMenu/btnLayout/gb", + "undefined": "点干部" + }, + "44": { + "id": 44, + "triggerType": "task", + "typeId": 2013, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_heroInfo/heroInfo/img_bg/panel_top/lay_szhero/sz_list4/txt_kw", + "undefined": "点第四个干部加号" + }, + "45": { + "id": 45, + "triggerType": "task", + "typeId": 2013, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_hero_gh/hero_gh/bg/ScrollView/view/content/list/btn", + "undefined": "弹框点上阵" + }, + "46": { + "id": 46, + "triggerType": "task", + "typeId": 2014, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainMenu/mainMenu/btnLayout/zd", + "undefined": "点探险" + }, + "47": { + "id": 47, + "triggerType": "task", + "typeId": 2014, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_tanxian/tanxian/tx_map1/btn_kz", + "undefined": "点战斗" + }, + "48": { + "id": 48, + "triggerType": "task", + "typeId": 2015, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainMenu/mainMenu/btnLayout/gb", + "undefined": "点干部" + }, + "49": { + "id": 49, + "triggerType": "task", + "typeId": 2015, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_heroInfo/heroInfo/img_bg/panel_down/btnScrollView/view/content/leftBtn/btn_sj", + "undefined": "点升级页签" + }, + "50": { + "id": 50, + "triggerType": "task", + "typeId": 2015, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_heroInfo/heroInfo/img_bg/panel_down/panel_rdown/panel_sj/btn_shengji", + "undefined": "点升级按钮" + }, + "51": { + "id": 51, + "triggerType": "task", + "typeId": 2016, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_tanxian/tanxian/tx_map1/rw_tis", + "undefined": "点任务", + "initiative": 1 + }, + "52": { + "id": 52, + "triggerType": "task", + "typeId": 2017, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_tanxian/tanxian/tx_map1/rw_tis", + "undefined": "点任务", + "initiative": 1 + }, + "53": { + "id": 53, + "triggerType": "task", + "typeId": 2031, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainMenu/mainMenu/btnLayout/dy", + "undefined": "点主城", + "initiative": 1 + }, + "54": { + "id": 54, + "triggerType": "task", + "typeId": 2031, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainView/mainView/ScrollView/view/content/zc_bg/name/zc_btn_zjdj", + "undefined": "点主角的家", + "initiative": 1 + }, + "55": { + "id": 55, + "triggerType": "task", + "typeId": 2031, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_zhujuegongyu/zhujuegongyu/btn_zzjh", + "undefined": "点作战计划", + "initiative": 1 + }, + "56": { + "id": 56, + "triggerType": "task", + "typeId": 2031, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_xunlianjihua2/xunlianjihua2/panel_1/ScrollView_New/view/content/jinengClass_810/810", + "undefined": "点第一个技能", + "initiative": 1 + }, + "57": { + "id": 57, + "triggerType": "task", + "typeId": 2031, + "Type": "dialog", + "path": "intr_guide_content_23", + "undefined": "对话", + "spine": 5001, + "direction": 1, + "initiative": 1 + }, + "58": { + "id": 58, + "triggerType": "task", + "typeId": 2031, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_xunlianjihua_tanchuang/xunlianjihua_tanchuang/btn_red3", + "undefined": "点升级按钮", + "initiative": 1 + }, + "59": { + "id": 59, + "triggerType": "task", + "typeId": 2031, + "Type": "dialog", + "path": "intr_guide_content_24", + "undefined": "对话", + "spine": 5001, + "direction": 1, + "initiative": 1 + }, + "60": { + "id": 60, + "triggerType": "task", + "typeId": 2031, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_xunlianjihua2/xunlianjihua2/btn_gd", + "undefined": "点布置计划", + "initiative": 1 + }, + "61": { + "id": 61, + "triggerType": "task", + "typeId": 2031, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_xunlianjihua2/xunlianjihua2/panel_2/uiView_zuozhanjihua_youhua/zuozhanjihua_youhua/bg_shouc1/panel_nr/list1", + "undefined": "点第一个格子", + "initiative": 1 + }, + "62": { + "id": 62, + "triggerType": "task", + "typeId": 2031, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_genghuanjihua/genghuanjihua/pop_02/panel_nr/ScrollView/view/content/list/ty_bg_gou", + "undefined": "勾选技能", + "initiative": 1 + }, + "63": { + "id": 63, + "triggerType": "task", + "typeId": 2031, + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_genghuanjihua/genghuanjihua/pop_02/btn_red", + "undefined": "确认", + "initiative": 1 + }, + "10001": { + "id": 10001, + "triggerType": "openCond", + "typeId": "jingjichang", + "Type": "dialog", + "path": "intr_guide_content_18", + "undefined": "对话", + "spine": 5001, + "direction": 1, + "initiative": 1 + }, + "10002": { + "id": 10002, + "triggerType": "openCond", + "typeId": "jingjichang", + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainMenu/mainMenu/btnLayout/tj", + "undefined": "点码头", + "initiative": 1 + }, + "10003": { + "id": 10003, + "triggerType": "openCond", + "typeId": "jingjichang", + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_matou_main/matou_main/bg_phb/PageView/view/content/page1/jjc", + "undefined": "点游轮竞技", + "initiative": 1 + }, + "10004": { + "id": 10004, + "triggerType": "openCond", + "typeId": "jingjichang", + "Type": "dialog", + "path": "intr_guide_content_19", + "undefined": "对话", + "spine": 5001, + "direction": 1, + "initiative": 1 + }, + "10101": { + "id": 10101, + "triggerType": "openCond", + "typeId": "pata", + "Type": "dialog", + "path": "intr_guide_content_20", + "undefined": "对话", + "spine": 5001, + "direction": 1, + "initiative": 1 + }, + "10102": { + "id": 10102, + "triggerType": "openCond", + "typeId": "pata", + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainMenu/mainMenu/btnLayout/tj", + "undefined": "点码头", + "initiative": 1 + }, + "10103": { + "id": 10103, + "triggerType": "openCond", + "typeId": "pata", + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_matou_main/matou_main/bg_phb/PageView/view/content/page1/zccg", + "undefined": "点黑暗塔", + "initiative": 1 + }, + "10104": { + "id": 10104, + "triggerType": "openCond", + "typeId": "pata", + "Type": "dialog", + "path": "intr_guide_content_20", + "undefined": "对话", + "spine": 5001, + "direction": 1, + "initiative": 1 + }, + "10105": { + "id": 10105, + "triggerType": "openCond", + "typeId": "pata", + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_pata/pata/ui/scrollView/view/content/item1", + "undefined": "点第一关", + "initiative": 1 + }, + "10201": { + "id": 10201, + "triggerType": "openCond", + "typeId": "zc_btn_slzb", + "Type": "dialog", + "path": "intr_guide_content_16", + "undefined": "对话", + "spine": 5001, + "direction": 1, + "initiative": 1 + }, + "10202": { + "id": 10202, + "triggerType": "openCond", + "typeId": "zc_btn_slzb", + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainMenu/mainMenu/btnLayout/dy", + "undefined": "点主城" + }, + "10203": { + "id": 10203, + "triggerType": "openCond", + "typeId": "zc_btn_slzb", + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainView/mainView/ScrollView/view/content/zc_bg/name/zc_btn_slzb", + "undefined": "点势力" + }, + "10204": { + "id": 10204, + "triggerType": "openCond", + "typeId": "zc_btn_slzb", + "Type": "dialog", + "path": "intr_guide_content_17", + "undefined": "对话", + "spine": 5001, + "direction": 1, + "initiative": 1 + }, + "10301": { + "id": 10301, + "triggerType": "openCond", + "typeId": "meirishilian", + "Type": "dialog", + "path": "intr_guide_content_25", + "undefined": "对话", + "spine": 5001, + "direction": 1, + "initiative": 1 + }, + "10302": { + "id": 10302, + "triggerType": "openCond", + "typeId": "meirishilian", + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_mainMenu/mainMenu/btnLayout/tj", + "undefined": "点码头", + "initiative": 1 + }, + "10303": { + "id": 10303, + "triggerType": "openCond", + "typeId": "meirishilian", + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_matou_main/matou_main/bg_phb/PageView/view/content/page1/wzcj", + "undefined": "点物资缴获", + "initiative": 1 + }, + "10304": { + "id": 10304, + "triggerType": "openCond", + "typeId": "meirishilian", + "Type": "dialog", + "path": "intr_guide_content_26", + "undefined": "对话", + "spine": 5001, + "direction": 1, + "initiative": 1 + }, + "10305": { + "id": 10305, + "triggerType": "openCond", + "typeId": "meirishilian", + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_meirishilian/meirishilian/bg_wzcj/btn/btn1", + "undefined": "点休闲区", + "initiative": 1 + }, + "10306": { + "id": 10306, + "triggerType": "openCond", + "typeId": "meirishilian", + "Type": "finger", + "path": "Canvas/draw/uiRoot/uiView_meirishilian/meirishilian/bg_wzcj/btn_red", + "undefined": "点挑战", + "initiative": 1 + } +} \ No newline at end of file diff --git a/src/json/hbzb.json5 b/src/json/hbzb.json5 new file mode 100644 index 0000000..4f17205 --- /dev/null +++ b/src/json/hbzb.json5 @@ -0,0 +1,136 @@ +{ + //定时器执行时间 + schedulerTime: 518400, + //积分赛开放等级 + jfsOpenLv: 40, + //积分赛每日免费挑战次数 + jfsFightNum: 15, + //积分赛对手数量 + jfsEnemyNum: 3, + //积分赛开放时间区间 + jfsOpenTime: [0, 428400], + //积分赛vip等级对应的可购买挑战次数 + jfsBuyFightNum: [3, 5, 7, 9, 12, 15, 18, 21, 24, 27, 30, 33, 35, 36, 38, 40, 42, 50], + //积分赛每日免费刷新次数 + jfsRefreshNum: 15, + //积分赛每日免费刷新次数使用完后的刷新消耗 + jfsRefreshNeed: [{a: 'attr', t: 'rmbmoney', n: 20}], + //积分赛购买挑战次数对应的消耗 + jfsBuyFightNumNeed: [ + { nums: [1, 2], need: [{a: 'attr', t: 'rmbmoney', n: 10}] }, + { nums: [3, 4], need: [{a: 'attr', t: 'rmbmoney', n: 20}] }, + { nums: [5, 9], need: [{a: 'attr', t: 'rmbmoney', n: 30}] }, + { nums: [10, 39], need: [{a: 'attr', t: 'rmbmoney', n: 50}] }, + { nums: [40, 50], need: [{a: 'attr', t: 'rmbmoney', n: 80}] } + ], + //积分赛每日胜场奖励 + jfsFightWinNumPrize: [ + { total: 3, prize: [{a: 'item', t: '39', n: 150},{a: 'attr', t: 'jinbi', n: 50000}] }, + { total: 5, prize: [{a: 'item', t: '39', n: 200},{a: 'attr', t: 'jinbi', n: 60000}] }, + { total: 10, prize: [{a: 'item', t: '39', n: 300},{a: 'attr', t: 'jinbi', n: 80000}] }, + { total: 15, prize: [{a: 'item', t: '39', n: 500},{a: 'attr', t: 'jinbi', n: 100000}] }, + { total: 20, prize: [{a: 'item', t: '39', n: 700},{a: 'attr', t: 'jinbi', n: 120000}] }, + { total: 25, prize: [{a: 'item', t: '39', n: 1000},{a: 'attr', t: 'jinbi', n: 150000}] }, + { total: 30, prize: [{a: 'item', t: '39', n: 1500},{a: 'attr', t: 'jinbi', n: 180000}] }, + { total: 40, prize: [{a: 'item', t: '39', n: 2200},{a: 'attr', t: 'jinbi', n: 250000}] }, + { total: 50, prize: [{a: 'item', t: '39', n: 3000},{a: 'attr', t: 'jinbi', n: 300000}] } + ], + //积分赛自动刷新规则 + jfsMatchingAuto: [ + { max: 'round(1.5 * zhanli + 90000)', min: 'round(1.2 * zhanli - 90000)' }, + { max: 'round(1.3 * zhanli + 90000)', min: 'round(1.1 * zhanli - 90000)' }, + { max: 'round(1.1 * zhanli + 90000)', min: 'round(0.8 * zhanli - 90000)' } + ], + //积分赛手动刷新规则 + jfsMatchingHand: [ + { max: 'round(1.4 * zhanli + 90000)', min: 'round(1.1 * zhanli - 90000)' }, + { max: 'round(1.2 * zhanli + 90000)', min: 'round(0.9 * zhanli - 90000)' }, + { max: 'round(1 * zhanli + 90000)', min: 'round(0.8 * zhanli - 90000)' } + ], + //积分赛的npcId + jfsRefreshNpcId: [ + { lvs: [1, 999], npcs: [['1'], ['2'], ['3']] } + ], + //积分赛积分范围 + jfsJifenRange: [30, 35], + //积分赛战斗胜利奖励 + jfsFightWinPrize: [{a: 'item', t: '39', n: 35}], + //积分赛战斗失败奖励 + jfsFightFailPrize: [{a: 'item', t: '39', n: 30}], + //积分赛跨服排名奖励(无效) + jfsCrossRankPrize: [], + //积分赛本服排名奖励 + jfsLocalRankPrize: [ + { ph: [1,1], prize: [{a: 'item', t: '39', n: 10000},{a: 'item', t: '623', n: 10},{a: 'item', t: '25', n: 5}] }, + { ph: [2,2], prize: [{a: 'item', t: '39', n: 8000},{a: 'item', t: '623', n: 8},{a: 'item', t: '25', n: 4}] }, + { ph: [3,3], prize: [{a: 'item', t: '39', n: 6000},{a: 'item', t: '623', n: 6},{a: 'item', t: '25', n: 3}] }, + { ph: [4,5], prize: [{a: 'item', t: '39', n: 5000},{a: 'item', t: '623', n: 5},{a: 'item', t: '35', n: 5}] }, + { ph: [6,10], prize: [{a: 'item', t: '39', n: 4000},{a: 'item', t: '623', n: 4},{a: 'item', t: '35', n: 4}] }, + { ph: [11,20], prize: [{a: 'item', t: '39', n: 3000},{a: 'item', t: '623', n: 3},{a: 'item', t: '35', n: 3}] }, + { ph: [21,50], prize: [{a: 'item', t: '39', n: 2000},{a: 'item', t: '623', n: 2},{a: 'item', t: '33', n: 4}] }, + { ph: [51,100], prize: [{a: 'item', t: '39', n: 1500},{a: 'item', t: '623', n: 1},{a: 'item', t: '33', n: 3}] }, + { ph: [101,200], prize: [{a: 'item', t: '39', n: 1000},{a: 'item', t: '623', n: 1},{a: 'item', t: '33', n: 3}] } + ], + //积分赛本服邮件 + jfsLocalEmail: { + titel: 'intr_hbzb_titel_1', + content: 'intr_hbzb_content_1' + }, + //积分赛跨服邮件 + jfsCrossEmail: { + titel: 'intr_hbzb_titel_2', + content: 'intr_hbzb_content_2' + }, + //积分赛战斗日志最大数量 + jfsFightLogNum: 20, + //争霸赛开放时间区间 + zbsOpenTime: [468000, 601200], + //争霸赛排名奖励 + zbsRankPrize: [ + { ph: [1,1], prize: [{a: 'item', t: '39', n: 28000},{a: 'item', t: '631', n: 10},{a: 'item', t: '50003', n: 1}] }, + { ph: [2,2], prize: [{a: 'item', t: '39', n: 20000},{a: 'item', t: '631', n: 8}] }, + { ph: [3,3], prize: [{a: 'item', t: '39', n: 15000},{a: 'item', t: '631', n: 6}] }, + { ph: [4,5], prize: [{a: 'item', t: '39', n: 12000},{a: 'item', t: '631', n: 5}] }, + { ph: [6,10], prize: [{a: 'item', t: '39', n: 10000},{a: 'item', t: '631', n: 4}] }, + { ph: [11,20], prize: [{a: 'item', t: '39', n: 8000},{a: 'item', t: '631', n: 3}] }, + { ph: [21,50], prize: [{a: 'item', t: '39', n: 6000},{a: 'item', t: '631', n: 2}] }, + { ph: [51,9999], prize: [{a: 'item', t: '39', n: 4000},{a: 'item', t: '631', n: 1}] } + ], + //争霸赛邮件 + zbsEmail: { + titel: 'intr_hbzb_titel_3', + content: 'intr_hbzb_content_3' + }, + //争霸赛每日胜场奖励 + zbsFightWinNumPrize: [ + { total: 3, prize: [{a: 'item', t: '39', n: 150},{a: 'attr', t: 'jinbi', n: 50000}] }, + { total: 5, prize: [{a: 'item', t: '39', n: 200},{a: 'attr', t: 'jinbi', n: 60000}] }, + { total: 10, prize: [{a: 'item', t: '39', n: 300},{a: 'attr', t: 'jinbi', n: 80000}] }, + { total: 15, prize: [{a: 'item', t: '39', n: 500},{a: 'attr', t: 'jinbi', n: 100000}] }, + { total: 20, prize: [{a: 'item', t: '39', n: 700},{a: 'attr', t: 'jinbi', n: 120000}] }, + { total: 25, prize: [{a: 'item', t: '39', n: 1000},{a: 'attr', t: 'jinbi', n: 150000}] }, + { total: 30, prize: [{a: 'item', t: '39', n: 1500},{a: 'attr', t: 'jinbi', n: 180000}] }, + { total: 40, prize: [{a: 'item', t: '39', n: 2200},{a: 'attr', t: 'jinbi', n: 250000}] }, + { total: 50, prize: [{a: 'item', t: '39', n: 3000},{a: 'attr', t: 'jinbi', n: 300000}] } + ], + //争霸赛战败挑战cd + zbsFightFailCd: 60, + //争霸赛每日免费挑战次数 + zbsFightNum: 15, + //争霸赛vip等级对应的可购买挑战次数 + zbsBuyFightNum: [3, 5, 7, 9, 12, 15, 18, 21, 24, 27, 30, 33, 35, 36, 38, 40, 42, 45], + //争霸赛购买挑战次数对应的消耗 + zbsBuyFightNumNeed: [ + { nums: [1, 2], need: [{a: 'attr', t: 'rmbmoney', n: 10}] }, + { nums: [3, 4], need: [{a: 'attr', t: 'rmbmoney', n: 20}] }, + { nums: [5, 9], need: [{a: 'attr', t: 'rmbmoney', n: 30}] }, + { nums: [10, 39], need: [{a: 'attr', t: 'rmbmoney', n: 50}] }, + { nums: [40, 50], need: [{a: 'attr', t: 'rmbmoney', n: 80}] } + ], + //争霸赛战斗日志最大数量 + zbsFightLogNum: 20, + //争霸赛战斗胜利奖励 + zbsFightWinPrize: [{a: 'attr', t: 'jinbi', n: 2000}], + //争霸赛战斗失败奖励 + zbsFightFailPrize: [{a: 'attr', t: 'jinbi', n: 1000}], +} \ No newline at end of file diff --git a/src/json/hero.json b/src/json/hero.json new file mode 100644 index 0000000..ac19e09 --- /dev/null +++ b/src/json/hero.json @@ -0,0 +1,860 @@ +{ + "1001": { + "name": "intr_hero_name_38", + "id": 1001, + "img": 1001, + "star": 1, + "colour": 2, + "lvup": 1001, + "jjup": 1001, + "zhuanshu": 1001, + "describe": "intr_hero_describe_38", + "advancedEffects": "", + "intr": "intr_hero_zj_38", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + } + ], + "orientationIcon": "img_gb_dw_1", + "orientationDes": "hero_positioning_1001" + }, + "1002": { + "name": "intr_hero_name_39", + "id": 1002, + "img": 1002, + "star": 1, + "colour": 2, + "lvup": 1002, + "jjup": 1002, + "zhuanshu": 1002, + "describe": "intr_hero_describe_39", + "advancedEffects": "", + "intr": "intr_hero_zj_39", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + } + ], + "orientationIcon": "img_gb_dw_1", + "orientationDes": "hero_positioning_1002" + }, + "2001": { + "name": "intr_hero_name_36", + "id": 2001, + "img": 2001, + "star": 2, + "colour": 3, + "lvup": 2001, + "jjup": 2001, + "zhuanshu": 2001, + "describe": "intr_hero_describe_36", + "advancedEffects": "", + "intr": "intr_hero_zj_36", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + } + ], + "orientationIcon": "img_gb_dw_1", + "orientationDes": "hero_positioning_2001" + }, + "2002": { + "name": "intr_hero_name_37", + "id": 2002, + "img": 2002, + "star": 2, + "colour": 3, + "lvup": 2002, + "jjup": 2002, + "zhuanshu": 2002, + "describe": "intr_hero_describe_37", + "advancedEffects": "", + "intr": "intr_hero_zj_37", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + } + ], + "orientationIcon": "img_gb_dw_1", + "orientationDes": "hero_positioning_2002" + }, + "3001": { + "name": "intr_hero_name_21", + "id": 3001, + "img": 3001, + "star": 3, + "colour": 4, + "lvup": 3001, + "jjup": 3001, + "zhuanshu": 3001, + "describe": "intr_hero_describe_21", + "advancedEffects": "", + "intr": "intr_hero_zj_21", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_2", + "orientationDes": "hero_positioning_3001" + }, + "3002": { + "name": "intr_hero_name_22", + "id": 3002, + "img": 3002, + "star": 3, + "colour": 4, + "lvup": 3002, + "jjup": 3002, + "zhuanshu": 3002, + "describe": "intr_hero_describe_22", + "advancedEffects": "", + "intr": "intr_hero_zj_22", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_1", + "orientationDes": "hero_positioning_3002" + }, + "3003": { + "name": "intr_hero_name_23", + "id": 3003, + "img": 3003, + "star": 3, + "colour": 4, + "lvup": 3003, + "jjup": 3003, + "zhuanshu": 3003, + "describe": "intr_hero_describe_23", + "advancedEffects": "", + "intr": "intr_hero_zj_23", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_1", + "orientationDes": "hero_positioning_3003" + }, + "3004": { + "name": "intr_hero_name_24", + "id": 3004, + "img": 3004, + "star": 3, + "colour": 4, + "lvup": 3004, + "jjup": 3004, + "zhuanshu": 3004, + "describe": "intr_hero_describe_24", + "advancedEffects": "", + "intr": "intr_hero_zj_24", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_2", + "orientationDes": "hero_positioning_3004" + }, + "3005": { + "name": "intr_hero_name_25", + "id": 3005, + "img": 3005, + "star": 3, + "colour": 4, + "lvup": 3005, + "jjup": 3005, + "zhuanshu": 3005, + "describe": "intr_hero_describe_25", + "advancedEffects": "", + "intr": "intr_hero_zj_25", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_3", + "orientationDes": "hero_positioning_3005" + }, + "3006": { + "name": "intr_hero_name_26", + "id": 3006, + "img": 3006, + "star": 3, + "colour": 4, + "lvup": 3006, + "jjup": 3006, + "zhuanshu": 3006, + "describe": "intr_hero_describe_26", + "advancedEffects": "", + "intr": "intr_hero_zj_26", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_2", + "orientationDes": "hero_positioning_3006" + }, + "3007": { + "name": "intr_hero_name_27", + "id": 3007, + "img": 3007, + "star": 3, + "colour": 4, + "lvup": 3007, + "jjup": 3007, + "zhuanshu": 3007, + "describe": "intr_hero_describe_27", + "advancedEffects": "", + "intr": "intr_hero_zj_27", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_1", + "orientationDes": "hero_positioning_3007" + }, + "3008": { + "name": "intr_hero_name_28", + "id": 3008, + "img": 3008, + "star": 3, + "colour": 4, + "lvup": 3008, + "jjup": 3008, + "zhuanshu": 3008, + "describe": "intr_hero_describe_28", + "advancedEffects": "", + "intr": "intr_hero_zj_28", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_3", + "orientationDes": "hero_positioning_3008" + }, + "3009": { + "name": "intr_hero_name_29", + "id": 3009, + "img": 3009, + "star": 3, + "colour": 4, + "lvup": 3009, + "jjup": 3009, + "zhuanshu": 3009, + "describe": "intr_hero_describe_29", + "advancedEffects": "", + "intr": "intr_hero_zj_29", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_1", + "orientationDes": "hero_positioning_3009" + }, + "3010": { + "name": "intr_hero_name_30", + "id": 3010, + "img": 3010, + "star": 3, + "colour": 4, + "lvup": 3010, + "jjup": 3010, + "zhuanshu": 3010, + "describe": "intr_hero_describe_30", + "advancedEffects": "", + "intr": "intr_hero_zj_30", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_1", + "orientationDes": "hero_positioning_3010" + }, + "3011": { + "name": "intr_hero_name_31", + "id": 3011, + "img": 3011, + "star": 3, + "colour": 4, + "lvup": 3011, + "jjup": 3011, + "zhuanshu": 3011, + "describe": "intr_hero_describe_31", + "advancedEffects": "", + "intr": "intr_hero_zj_31", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_1", + "orientationDes": "hero_positioning_3011" + }, + "3012": { + "name": "intr_hero_name_32", + "id": 3012, + "img": 3012, + "star": 3, + "colour": 4, + "lvup": 3012, + "jjup": 3012, + "zhuanshu": 3012, + "describe": "intr_hero_describe_32", + "advancedEffects": "", + "intr": "intr_hero_zj_32", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_2", + "orientationDes": "hero_positioning_3012" + }, + "3013": { + "name": "intr_hero_name_33", + "id": 3013, + "img": 3013, + "star": 3, + "colour": 4, + "lvup": 3013, + "jjup": 3013, + "zhuanshu": 3013, + "describe": "intr_hero_describe_33", + "advancedEffects": "", + "intr": "intr_hero_zj_33", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_1", + "orientationDes": "hero_positioning_3013" + }, + "3014": { + "name": "intr_hero_name_34", + "id": 3014, + "img": 3014, + "star": 3, + "colour": 4, + "lvup": 3014, + "jjup": 3014, + "zhuanshu": 3014, + "describe": "intr_hero_describe_34", + "advancedEffects": "", + "intr": "intr_hero_zj_34", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_1", + "orientationDes": "hero_positioning_3014" + }, + "3015": { + "name": "intr_hero_name_35", + "id": 3015, + "img": 3015, + "star": 3, + "colour": 4, + "lvup": 3015, + "jjup": 3015, + "zhuanshu": 3015, + "describe": "intr_hero_describe_35", + "advancedEffects": "", + "intr": "intr_hero_zj_35", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_2", + "orientationDes": "hero_positioning_3015" + }, + "4001": { + "name": "intr_hero_name_6", + "id": 4001, + "img": 4001, + "star": 4, + "colour": 5, + "lvup": 4001, + "jjup": 4001, + "zhuanshu": 4001, + "describe": "intr_hero_describe_6", + "advancedEffects": "ani_xiangzikuang", + "intr": "intr_hero_zj_6", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_1", + "orientationDes": "hero_positioning_4001" + }, + "4002": { + "name": "intr_hero_name_7", + "id": 4002, + "img": 4002, + "star": 4, + "colour": 5, + "lvup": 4002, + "jjup": 4002, + "zhuanshu": 4002, + "describe": "intr_hero_describe_7", + "advancedEffects": "ani_xiangzikuang", + "intr": "intr_hero_zj_7", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_1", + "orientationDes": "hero_positioning_4002" + }, + "4003": { + "name": "intr_hero_name_8", + "id": 4003, + "img": 4003, + "star": 4, + "colour": 5, + "lvup": 4003, + "jjup": 4003, + "zhuanshu": 4003, + "describe": "intr_hero_describe_8", + "advancedEffects": "ani_xiangzikuang", + "intr": "intr_hero_zj_8", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_1", + "orientationDes": "hero_positioning_4003" + }, + "4004": { + "name": "intr_hero_name_9", + "id": 4004, + "img": 4004, + "star": 4, + "colour": 5, + "lvup": 4004, + "jjup": 4004, + "zhuanshu": 4004, + "describe": "intr_hero_describe_9", + "advancedEffects": "ani_xiangzikuang", + "intr": "intr_hero_zj_9", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_1", + "orientationDes": "hero_positioning_4004" + }, + "4005": { + "name": "intr_hero_name_10", + "id": 4005, + "img": 4005, + "star": 4, + "colour": 5, + "lvup": 4005, + "jjup": 4005, + "zhuanshu": 4005, + "describe": "intr_hero_describe_10", + "advancedEffects": "ani_xiangzikuang", + "intr": "intr_hero_zj_10", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_3", + "orientationDes": "hero_positioning_4005" + }, + "4006": { + "name": "intr_hero_name_11", + "id": 4006, + "img": 4006, + "star": 4, + "colour": 5, + "lvup": 4006, + "jjup": 4006, + "zhuanshu": 4006, + "describe": "intr_hero_describe_11", + "advancedEffects": "ani_xiangzikuang", + "intr": "intr_hero_zj_11", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_2", + "orientationDes": "hero_positioning_4006" + }, + "4007": { + "name": "intr_hero_name_12", + "id": 4007, + "img": 4007, + "star": 4, + "colour": 5, + "lvup": 4007, + "jjup": 4007, + "zhuanshu": 4007, + "describe": "intr_hero_describe_12", + "advancedEffects": "ani_xiangzikuang", + "intr": "intr_hero_zj_12", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_3", + "orientationDes": "hero_positioning_4007" + }, + "4008": { + "name": "intr_hero_name_13", + "id": 4008, + "img": 4008, + "star": 4, + "colour": 5, + "lvup": 4008, + "jjup": 4008, + "zhuanshu": 4008, + "describe": "intr_hero_describe_13", + "advancedEffects": "ani_xiangzikuang", + "intr": "intr_hero_zj_13", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_2", + "orientationDes": "hero_positioning_4008" + }, + "4009": { + "name": "intr_hero_name_14", + "id": 4009, + "img": 4009, + "star": 4, + "colour": 5, + "lvup": 4009, + "jjup": 4009, + "zhuanshu": 4009, + "describe": "intr_hero_describe_14", + "advancedEffects": "ani_xiangzikuang", + "intr": "intr_hero_zj_14", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_1", + "orientationDes": "hero_positioning_4009" + }, + "4010": { + "name": "intr_hero_name_15", + "id": 4010, + "img": 4010, + "star": 4, + "colour": 5, + "lvup": 4010, + "jjup": 4010, + "zhuanshu": 4010, + "describe": "intr_hero_describe_15", + "advancedEffects": "ani_xiangzikuang", + "intr": "intr_hero_zj_15", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_3", + "orientationDes": "hero_positioning_4010" + }, + "4011": { + "name": "intr_hero_name_16", + "id": 4011, + "img": 4011, + "star": 4, + "colour": 5, + "lvup": 4011, + "jjup": 4011, + "zhuanshu": 4011, + "describe": "intr_hero_describe_16", + "advancedEffects": "ani_xiangzikuang", + "intr": "intr_hero_zj_16", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_2", + "orientationDes": "hero_positioning_4011" + }, + "4012": { + "name": "intr_hero_name_17", + "id": 4012, + "img": 4012, + "star": 4, + "colour": 5, + "lvup": 4012, + "jjup": 4012, + "zhuanshu": 4012, + "describe": "intr_hero_describe_17", + "advancedEffects": "ani_xiangzikuang", + "intr": "intr_hero_zj_17", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_1", + "orientationDes": "hero_positioning_4012" + }, + "4013": { + "name": "intr_hero_name_18", + "id": 4013, + "img": 4013, + "star": 4, + "colour": 5, + "lvup": 4013, + "jjup": 4013, + "zhuanshu": 4013, + "describe": "intr_hero_describe_18", + "advancedEffects": "ani_xiangzikuang", + "intr": "intr_hero_zj_18", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_2", + "orientationDes": "hero_positioning_4013" + }, + "4014": { + "name": "intr_hero_name_19", + "id": 4014, + "img": 4014, + "star": 4, + "colour": 5, + "lvup": 4014, + "jjup": 4014, + "zhuanshu": 4014, + "describe": "intr_hero_describe_19", + "advancedEffects": "ani_xiangzikuang", + "intr": "intr_hero_zj_19", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_2", + "orientationDes": "hero_positioning_4014" + }, + "4015": { + "name": "intr_hero_name_20", + "id": 4015, + "img": 4015, + "star": 4, + "colour": 5, + "lvup": 4015, + "jjup": 4015, + "zhuanshu": 4015, + "describe": "intr_hero_describe_20", + "advancedEffects": "ani_xiangzikuang", + "intr": "intr_hero_zj_20", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "orientationIcon": "img_gb_dw_2", + "orientationDes": "hero_positioning_4015" + }, + "5001": { + "name": "intr_hero_name_1", + "id": 5001, + "img": 5001, + "star": 5, + "colour": 6, + "lvup": 5001, + "jjup": 5001, + "zhuanshu": 5001, + "describe": "intr_hero_describe_1", + "advancedEffects": "ani_xiangzihong", + "intr": "intr_hero_zj_1", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + } + ], + "orientationIcon": "img_gb_dw_1", + "orientationDes": "hero_positioning_5001" + }, + "5002": { + "name": "intr_hero_name_2", + "id": 5002, + "img": 5002, + "star": 5, + "colour": 6, + "lvup": 5002, + "jjup": 5002, + "zhuanshu": 5002, + "describe": "intr_hero_describe_2", + "advancedEffects": "ani_xiangzihong", + "intr": "intr_hero_zj_2", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + } + ], + "orientationIcon": "img_gb_dw_3", + "orientationDes": "hero_positioning_5002" + }, + "5003": { + "name": "intr_hero_name_3", + "id": 5003, + "img": 5003, + "star": 5, + "colour": 6, + "lvup": 5003, + "jjup": 5003, + "zhuanshu": 5003, + "describe": "intr_hero_describe_3", + "advancedEffects": "ani_xiangzihong", + "intr": "intr_hero_zj_3", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + } + ], + "orientationIcon": "img_gb_dw_3", + "orientationDes": "hero_positioning_5003" + }, + "5004": { + "name": "intr_hero_name_4", + "id": 5004, + "img": 5004, + "star": 5, + "colour": 6, + "lvup": 5004, + "jjup": 5004, + "zhuanshu": 5004, + "describe": "intr_hero_describe_4", + "advancedEffects": "ani_xiangzihong", + "intr": "intr_hero_zj_4", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + } + ], + "orientationIcon": "img_gb_dw_1", + "orientationDes": "hero_positioning_5004" + }, + "5005": { + "name": "intr_hero_name_5", + "id": 5005, + "img": 5005, + "star": 5, + "colour": 6, + "lvup": 5005, + "jjup": 5005, + "zhuanshu": 5005, + "describe": "intr_hero_describe_5", + "advancedEffects": "ani_xiangzihong", + "intr": "intr_hero_zj_5", + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + } + ], + "orientationIcon": "img_gb_dw_1", + "orientationDes": "hero_positioning_5005" + } +} \ No newline at end of file diff --git a/src/json/heroAbility.json b/src/json/heroAbility.json new file mode 100644 index 0000000..07fa013 --- /dev/null +++ b/src/json/heroAbility.json @@ -0,0 +1,335 @@ +{ + "1": { + "id": 1, + "name": "heroAbility_name_1", + "undefined": "攻击", + "shuxing": "atk", + "type": 1, + "des": "heroAbility_des_1", + "icon": "img_gb_sx_gj" + }, + "2": { + "id": 2, + "name": "heroAbility_name_2", + "undefined": "防御", + "shuxing": "def", + "type": 1, + "des": "heroAbility_des_2", + "icon": "img_gb_sx_fy" + }, + "3": { + "id": 3, + "name": "heroAbility_name_3", + "undefined": "生命", + "shuxing": "hp", + "type": 1, + "des": "heroAbility_des_3", + "icon": "img_gb_sx_sm" + }, + "4": { + "id": 4, + "name": "heroAbility_name_4", + "undefined": "速度", + "shuxing": "speed", + "type": 1, + "des": "heroAbility_des_4", + "icon": "img_gb_sx_sd" + }, + "5": { + "id": 5, + "name": "heroAbility_name_5", + "undefined": "最小伤害", + "shuxing": "mindps", + "type": 1, + "des": "heroAbility_des_5", + "icon": "img_gb_sx_zxsh_x" + }, + "6": { + "id": 6, + "name": "heroAbility_name_6", + "undefined": "最大伤害", + "shuxing": "maxdps", + "type": 1, + "des": "heroAbility_des_6", + "icon": "img_gb_sx_zdsh_x" + }, + "7": { + "id": 7, + "name": "heroAbility_name_7", + "undefined": "攻击加成", + "shuxing": "atkpro", + "type": 2, + "des": "heroAbility_des_7", + "icon": "img_gb_sx_gjjc" + }, + "8": { + "id": 8, + "name": "heroAbility_name_8", + "undefined": "防御加成", + "shuxing": "defpro", + "type": 2, + "des": "heroAbility_des_8", + "icon": "img_gb_sx_fyjc" + }, + "9": { + "id": 9, + "name": "heroAbility_name_9", + "undefined": "生命加成", + "shuxing": "hppro", + "type": 2, + "des": "heroAbility_des_9", + "icon": "img_gb_sx_smjc" + }, + "10": { + "id": 10, + "name": "heroAbility_name_10", + "undefined": "速度加成", + "shuxing": "speedpro", + "type": 2, + "des": "heroAbility_des_10", + "icon": "img_gb_sx_sdjc" + }, + "11": { + "id": 11, + "name": "heroAbility_name_11", + "undefined": "暴击", + "shuxing": "baoji", + "type": 1, + "des": "heroAbility_des_11", + "icon": "img_gb_sx_bjz" + }, + "12": { + "id": 12, + "name": "heroAbility_name_12", + "undefined": "暴伤", + "shuxing": "baoshangpro", + "type": 2, + "des": "heroAbility_des_12", + "icon": "img_gb_sx_bjbfb" + }, + "13": { + "id": 13, + "name": "heroAbility_name_13", + "undefined": "气势", + "shuxing": "shiqi", + "type": 1, + "des": "heroAbility_des_13", + "icon": "img_gb_sx_gj" + }, + "14": { + "id": 14, + "name": "heroAbility_name_14", + "undefined": "命中", + "shuxing": "mingzhongpro", + "type": 2, + "des": "heroAbility_des_14", + "icon": "img_gb_sx_mz" + }, + "15": { + "id": 15, + "name": "heroAbility_name_15", + "undefined": "闪避", + "shuxing": "shanbipro", + "type": 2, + "des": "heroAbility_des_15", + "icon": "img_gb_sx_sb" + }, + "16": { + "id": 16, + "name": "heroAbility_name_16", + "undefined": "吸血", + "shuxing": "xixuepro", + "type": 2, + "des": "heroAbility_des_16", + "icon": "img_gb_sx_xx" + }, + "17": { + "id": 17, + "name": "heroAbility_name_17", + "undefined": "反伤", + "shuxing": "fanshangpro", + "type": 2, + "des": "heroAbility_des_17", + "icon": "img_gb_sx_fs" + }, + "18": { + "id": 18, + "name": "heroAbility_name_18", + "undefined": "伤害提升", + "shuxing": "dpspro", + "type": 2, + "des": "heroAbility_des_18", + "icon": "img_gb_sx_gj" + }, + "19": { + "id": 19, + "name": "heroAbility_name_19", + "undefined": "伤害减免", + "shuxing": "undpspro", + "type": 2, + "des": "heroAbility_des_19", + "icon": "img_gb_sx_gj" + }, + "20": { + "id": 20, + "name": "heroAbility_name_20", + "undefined": "PVP伤害提升", + "shuxing": "pvpdpspro", + "type": 2, + "des": "heroAbility_des_20", + "icon": "img_gb_sx_pvpshts" + }, + "21": { + "id": 21, + "name": "heroAbility_name_21", + "undefined": "PVP伤害减免", + "shuxing": "pvpdpsdrop", + "type": 2, + "des": "heroAbility_des_21", + "icon": "img_gb_sx_pvpshjm" + }, + "22": { + "id": 22, + "name": "heroAbility_name_22", + "undefined": "物理伤害提升", + "shuxing": "phydpspro", + "type": 2, + "des": "heroAbility_des_22", + "icon": "img_gb_sx_gj" + }, + "23": { + "id": 23, + "name": "heroAbility_name_23", + "undefined": "物理伤害减免", + "shuxing": "phydpsdrop", + "type": 2, + "des": "heroAbility_des_23", + "icon": "img_gb_sx_gj" + }, + "24": { + "id": 24, + "name": "heroAbility_name_24", + "undefined": "混乱伤害提升", + "shuxing": "magdpspro", + "type": 2, + "des": "heroAbility_des_24", + "icon": "img_gb_sx_gj" + }, + "25": { + "id": 25, + "name": "heroAbility_name_25", + "undefined": "混乱伤害减免", + "shuxing": "magdpsdrop", + "type": 2, + "des": "heroAbility_des_25", + "icon": "img_gb_sx_gj" + }, + "26": { + "id": 26, + "name": "heroAbility_name_26", + "undefined": "远程伤害提升", + "shuxing": "longdpspro", + "type": 2, + "des": "heroAbility_des_26", + "icon": "img_gb_sx_gj" + }, + "27": { + "id": 27, + "name": "heroAbility_name_27", + "undefined": "远程伤害减免", + "shuxing": "longdpsdrop", + "type": 2, + "des": "heroAbility_des_27", + "icon": "img_gb_sx_gj" + }, + "28": { + "id": 28, + "name": "heroAbility_name_28", + "undefined": "近战伤害提升", + "shuxing": "neardpspro", + "type": 2, + "des": "heroAbility_des_28", + "icon": "img_gb_sx_gj" + }, + "29": { + "id": 29, + "name": "heroAbility_name_29", + "undefined": "近战伤害减免", + "shuxing": "neardpsdrop", + "type": 2, + "des": "heroAbility_des_29", + "icon": "img_gb_sx_gj" + }, + "30": { + "id": 30, + "name": "heroAbility_name_30", + "undefined": "穿透伤害提升", + "shuxing": "earthdpspro", + "type": 2, + "des": "heroAbility_des_30", + "icon": "img_gb_sx_gj" + }, + "31": { + "id": 31, + "name": "heroAbility_name_31", + "undefined": "穿透受伤减免", + "shuxing": "earthdpsdrop", + "type": 2, + "des": "heroAbility_des_31", + "icon": "img_gb_sx_gj" + }, + "32": { + "id": 32, + "name": "heroAbility_name_32", + "undefined": "破甲伤害提升", + "shuxing": "firedpspro", + "type": 2, + "des": "heroAbility_des_32", + "icon": "img_gb_sx_gj" + }, + "33": { + "id": 33, + "name": "heroAbility_name_33", + "undefined": "破甲受伤减免", + "shuxing": "firedpsdrop", + "type": 2, + "des": "heroAbility_des_33", + "icon": "img_gb_sx_gj" + }, + "34": { + "id": 34, + "name": "heroAbility_name_34", + "undefined": "震荡伤害提升", + "shuxing": "waterdpspro", + "type": 2, + "des": "heroAbility_des_34", + "icon": "img_gb_sx_gj" + }, + "35": { + "id": 35, + "name": "heroAbility_name_35", + "undefined": "震荡受伤减免", + "shuxing": "waterdpsdrop", + "type": 2, + "des": "heroAbility_des_35", + "icon": "img_gb_sx_gj" + }, + "36": { + "id": 36, + "name": "heroAbility_name_36", + "undefined": "冲击伤害提升", + "shuxing": "winddpspro", + "type": 2, + "des": "heroAbility_des_36", + "icon": "img_gb_sx_gj" + }, + "37": { + "id": 37, + "name": "heroAbility_name_37", + "undefined": "冲击受伤减免", + "shuxing": "winddpsdrop", + "type": 2, + "des": "heroAbility_des_37", + "icon": "img_gb_sx_gj" + } +} \ No newline at end of file diff --git a/src/json/hero_jx.json b/src/json/hero_jx.json new file mode 100644 index 0000000..c6f2e34 --- /dev/null +++ b/src/json/hero_jx.json @@ -0,0 +1,3602 @@ +{ + "1": { + "lv": 1, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 1 + }, + "2": { + "lv": 2, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 2 + }, + "3": { + "lv": 3, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 3 + }, + "4": { + "lv": 4, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 4 + }, + "5": { + "lv": 5, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 5 + }, + "6": { + "lv": 6, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 6 + }, + "7": { + "lv": 7, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 7 + }, + "8": { + "lv": 8, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 8 + }, + "9": { + "lv": 9, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 9 + }, + "10": { + "lv": 10, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 10 + }, + "11": { + "lv": 11, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 11 + }, + "12": { + "lv": 12, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 12 + }, + "13": { + "lv": 13, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 13 + }, + "14": { + "lv": 14, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 14 + }, + "15": { + "lv": 15, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 15 + }, + "16": { + "lv": 16, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 16 + }, + "17": { + "lv": 17, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 17 + }, + "18": { + "lv": 18, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 18 + }, + "19": { + "lv": 19, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 19 + }, + "20": { + "lv": 20, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 20 + }, + "21": { + "lv": 21, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 21 + }, + "22": { + "lv": 22, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 22 + }, + "23": { + "lv": 23, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 23 + }, + "24": { + "lv": 24, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 24 + }, + "25": { + "lv": 25, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 25 + }, + "26": { + "lv": 26, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 26 + }, + "27": { + "lv": 27, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 27 + }, + "28": { + "lv": 28, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 28 + }, + "29": { + "lv": 29, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 29 + }, + "30": { + "lv": 30, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 30 + }, + "31": { + "lv": 31, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 31 + }, + "32": { + "lv": 32, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 32 + }, + "33": { + "lv": 33, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 33 + }, + "34": { + "lv": 34, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 34 + }, + "35": { + "lv": 35, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 35 + }, + "36": { + "lv": 36, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 36 + }, + "37": { + "lv": 37, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 37 + }, + "38": { + "lv": 38, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 38 + }, + "39": { + "lv": 39, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 39 + }, + "40": { + "lv": 40, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 40 + }, + "41": { + "lv": 41, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 41 + }, + "42": { + "lv": 42, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 42 + }, + "43": { + "lv": 43, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 43 + }, + "44": { + "lv": 44, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 44 + }, + "45": { + "lv": 45, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 45 + }, + "46": { + "lv": 46, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 46 + }, + "47": { + "lv": 47, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 47 + }, + "48": { + "lv": 48, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 48 + }, + "49": { + "lv": 49, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 49 + }, + "50": { + "lv": 50, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "HeroDebris_Cos": 5, + "talent_point": 50 + }, + "51": { + "lv": 51, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 51 + }, + "52": { + "lv": 52, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 52 + }, + "53": { + "lv": 53, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 53 + }, + "54": { + "lv": 54, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 54 + }, + "55": { + "lv": 55, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 55 + }, + "56": { + "lv": 56, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 56 + }, + "57": { + "lv": 57, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 57 + }, + "58": { + "lv": 58, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 58 + }, + "59": { + "lv": 59, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 59 + }, + "60": { + "lv": 60, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 60 + }, + "61": { + "lv": 61, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 61 + }, + "62": { + "lv": 62, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 62 + }, + "63": { + "lv": 63, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 63 + }, + "64": { + "lv": 64, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 64 + }, + "65": { + "lv": 65, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 65 + }, + "66": { + "lv": 66, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 66 + }, + "67": { + "lv": 67, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 67 + }, + "68": { + "lv": 68, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 68 + }, + "69": { + "lv": 69, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 69 + }, + "70": { + "lv": 70, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 70 + }, + "71": { + "lv": 71, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 71 + }, + "72": { + "lv": 72, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 72 + }, + "73": { + "lv": 73, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 73 + }, + "74": { + "lv": 74, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 74 + }, + "75": { + "lv": 75, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 75 + }, + "76": { + "lv": 76, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 76 + }, + "77": { + "lv": 77, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 77 + }, + "78": { + "lv": 78, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 78 + }, + "79": { + "lv": 79, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 79 + }, + "80": { + "lv": 80, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 80 + }, + "81": { + "lv": 81, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 81 + }, + "82": { + "lv": 82, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 82 + }, + "83": { + "lv": 83, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 83 + }, + "84": { + "lv": 84, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 84 + }, + "85": { + "lv": 85, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 85 + }, + "86": { + "lv": 86, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 86 + }, + "87": { + "lv": 87, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 87 + }, + "88": { + "lv": 88, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 88 + }, + "89": { + "lv": 89, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 89 + }, + "90": { + "lv": 90, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 90 + }, + "91": { + "lv": 91, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 91 + }, + "92": { + "lv": 92, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 92 + }, + "93": { + "lv": 93, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 93 + }, + "94": { + "lv": 94, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 94 + }, + "95": { + "lv": 95, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 95 + }, + "96": { + "lv": 96, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 96 + }, + "97": { + "lv": 97, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 97 + }, + "98": { + "lv": 98, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 98 + }, + "99": { + "lv": 99, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 99 + }, + "100": { + "lv": 100, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "HeroDebris_Cos": 10, + "talent_point": 100 + }, + "101": { + "lv": 101, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "HeroDebris_Cos": 15, + "talent_point": 101 + }, + "102": { + "lv": 102, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "HeroDebris_Cos": 15, + "talent_point": 102 + }, + "103": { + "lv": 103, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "HeroDebris_Cos": 15, + "talent_point": 103 + }, + "104": { + "lv": 104, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "HeroDebris_Cos": 15, + "talent_point": 104 + }, + "105": { + "lv": 105, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "HeroDebris_Cos": 15, + "talent_point": 105 + }, + "106": { + "lv": 106, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "HeroDebris_Cos": 15, + "talent_point": 106 + }, + "107": { + "lv": 107, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "HeroDebris_Cos": 15, + "talent_point": 107 + }, + "108": { + "lv": 108, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "HeroDebris_Cos": 15, + "talent_point": 108 + }, + "109": { + "lv": 109, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "HeroDebris_Cos": 15, + "talent_point": 109 + }, + "110": { + "lv": 110, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "HeroDebris_Cos": 15, + "talent_point": 110 + }, + "111": { + "lv": 111, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "HeroDebris_Cos": 15, + "talent_point": 111 + }, + "112": { + "lv": 112, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "HeroDebris_Cos": 15, + "talent_point": 112 + }, + "113": { + "lv": 113, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "HeroDebris_Cos": 15, + "talent_point": 113 + }, + "114": { + "lv": 114, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "HeroDebris_Cos": 15, + "talent_point": 114 + }, + "115": { + "lv": 115, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "HeroDebris_Cos": 15, + "talent_point": 115 + }, + "116": { + "lv": 116, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "HeroDebris_Cos": 15, + "talent_point": 116 + }, + "117": { + "lv": 117, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "HeroDebris_Cos": 15, + "talent_point": 117 + }, + "118": { + "lv": 118, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "HeroDebris_Cos": 15, + "talent_point": 118 + }, + "119": { + "lv": 119, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "HeroDebris_Cos": 15, + "talent_point": 119 + }, + "120": { + "lv": 120, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "HeroDebris_Cos": 15, + "talent_point": 120 + }, + "121": { + "lv": 121, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + } + ], + "HeroDebris_Cos": 20, + "talent_point": 121 + }, + "122": { + "lv": 122, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + } + ], + "HeroDebris_Cos": 20, + "talent_point": 122 + }, + "123": { + "lv": 123, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + } + ], + "HeroDebris_Cos": 20, + "talent_point": 123 + }, + "124": { + "lv": 124, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + } + ], + "HeroDebris_Cos": 20, + "talent_point": 124 + }, + "125": { + "lv": 125, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + } + ], + "HeroDebris_Cos": 20, + "talent_point": 125 + }, + "126": { + "lv": 126, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + } + ], + "HeroDebris_Cos": 20, + "talent_point": 126 + }, + "127": { + "lv": 127, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + } + ], + "HeroDebris_Cos": 20, + "talent_point": 127 + }, + "128": { + "lv": 128, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + } + ], + "HeroDebris_Cos": 20, + "talent_point": 128 + }, + "129": { + "lv": 129, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + } + ], + "HeroDebris_Cos": 20, + "talent_point": 129 + }, + "130": { + "lv": 130, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + } + ], + "HeroDebris_Cos": 20, + "talent_point": 130 + }, + "131": { + "lv": 131, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + } + ], + "HeroDebris_Cos": 20, + "talent_point": 131 + }, + "132": { + "lv": 132, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + } + ], + "HeroDebris_Cos": 20, + "talent_point": 132 + }, + "133": { + "lv": 133, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + } + ], + "HeroDebris_Cos": 20, + "talent_point": 133 + }, + "134": { + "lv": 134, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + } + ], + "HeroDebris_Cos": 20, + "talent_point": 134 + }, + "135": { + "lv": 135, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + } + ], + "HeroDebris_Cos": 20, + "talent_point": 135 + }, + "136": { + "lv": 136, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + } + ], + "HeroDebris_Cos": 20, + "talent_point": 136 + }, + "137": { + "lv": 137, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + } + ], + "HeroDebris_Cos": 20, + "talent_point": 137 + }, + "138": { + "lv": 138, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + } + ], + "HeroDebris_Cos": 20, + "talent_point": 138 + }, + "139": { + "lv": 139, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + } + ], + "HeroDebris_Cos": 20, + "talent_point": 139 + }, + "140": { + "lv": 140, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + } + ], + "HeroDebris_Cos": 20, + "talent_point": 140 + }, + "141": { + "lv": 141, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "HeroDebris_Cos": 25, + "talent_point": 141 + }, + "142": { + "lv": 142, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "HeroDebris_Cos": 25, + "talent_point": 142 + }, + "143": { + "lv": 143, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "HeroDebris_Cos": 25, + "talent_point": 143 + }, + "144": { + "lv": 144, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "HeroDebris_Cos": 25, + "talent_point": 144 + }, + "145": { + "lv": 145, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "HeroDebris_Cos": 25, + "talent_point": 145 + }, + "146": { + "lv": 146, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "HeroDebris_Cos": 25, + "talent_point": 146 + }, + "147": { + "lv": 147, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "HeroDebris_Cos": 25, + "talent_point": 147 + }, + "148": { + "lv": 148, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "HeroDebris_Cos": 25, + "talent_point": 148 + }, + "149": { + "lv": 149, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "HeroDebris_Cos": 25, + "talent_point": 149 + }, + "150": { + "lv": 150, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "HeroDebris_Cos": 25, + "talent_point": 150 + }, + "151": { + "lv": 151, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "HeroDebris_Cos": 25, + "talent_point": 151 + }, + "152": { + "lv": 152, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "HeroDebris_Cos": 25, + "talent_point": 152 + }, + "153": { + "lv": 153, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "HeroDebris_Cos": 25, + "talent_point": 153 + }, + "154": { + "lv": 154, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "HeroDebris_Cos": 25, + "talent_point": 154 + }, + "155": { + "lv": 155, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "HeroDebris_Cos": 25, + "talent_point": 155 + }, + "156": { + "lv": 156, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "HeroDebris_Cos": 25, + "talent_point": 156 + }, + "157": { + "lv": 157, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "HeroDebris_Cos": 25, + "talent_point": 157 + }, + "158": { + "lv": 158, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "HeroDebris_Cos": 25, + "talent_point": 158 + }, + "159": { + "lv": 159, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "HeroDebris_Cos": 25, + "talent_point": 159 + }, + "160": { + "lv": 160, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "HeroDebris_Cos": 25, + "talent_point": 160 + }, + "161": { + "lv": 161, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2500000 + } + ], + "HeroDebris_Cos": 30, + "talent_point": 161 + }, + "162": { + "lv": 162, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2500000 + } + ], + "HeroDebris_Cos": 30, + "talent_point": 162 + }, + "163": { + "lv": 163, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2500000 + } + ], + "HeroDebris_Cos": 30, + "talent_point": 163 + }, + "164": { + "lv": 164, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2500000 + } + ], + "HeroDebris_Cos": 30, + "talent_point": 164 + }, + "165": { + "lv": 165, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2500000 + } + ], + "HeroDebris_Cos": 30, + "talent_point": 165 + }, + "166": { + "lv": 166, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2500000 + } + ], + "HeroDebris_Cos": 30, + "talent_point": 166 + }, + "167": { + "lv": 167, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2500000 + } + ], + "HeroDebris_Cos": 30, + "talent_point": 167 + }, + "168": { + "lv": 168, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2500000 + } + ], + "HeroDebris_Cos": 30, + "talent_point": 168 + }, + "169": { + "lv": 169, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2500000 + } + ], + "HeroDebris_Cos": 30, + "talent_point": 169 + }, + "170": { + "lv": 170, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2500000 + } + ], + "HeroDebris_Cos": 30, + "talent_point": 170 + }, + "171": { + "lv": 171, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2500000 + } + ], + "HeroDebris_Cos": 30, + "talent_point": 171 + }, + "172": { + "lv": 172, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2500000 + } + ], + "HeroDebris_Cos": 30, + "talent_point": 172 + }, + "173": { + "lv": 173, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2500000 + } + ], + "HeroDebris_Cos": 30, + "talent_point": 173 + }, + "174": { + "lv": 174, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2500000 + } + ], + "HeroDebris_Cos": 30, + "talent_point": 174 + }, + "175": { + "lv": 175, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2500000 + } + ], + "HeroDebris_Cos": 30, + "talent_point": 175 + }, + "176": { + "lv": 176, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2500000 + } + ], + "HeroDebris_Cos": 30, + "talent_point": 176 + }, + "177": { + "lv": 177, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2500000 + } + ], + "HeroDebris_Cos": 30, + "talent_point": 177 + }, + "178": { + "lv": 178, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2500000 + } + ], + "HeroDebris_Cos": 30, + "talent_point": 178 + }, + "179": { + "lv": 179, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2500000 + } + ], + "HeroDebris_Cos": 30, + "talent_point": 179 + }, + "180": { + "lv": 180, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 2500000 + } + ], + "HeroDebris_Cos": 30, + "talent_point": 180 + }, + "181": { + "lv": 181, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3000000 + } + ], + "HeroDebris_Cos": 35, + "talent_point": 181 + }, + "182": { + "lv": 182, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3000000 + } + ], + "HeroDebris_Cos": 35, + "talent_point": 182 + }, + "183": { + "lv": 183, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3000000 + } + ], + "HeroDebris_Cos": 35, + "talent_point": 183 + }, + "184": { + "lv": 184, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3000000 + } + ], + "HeroDebris_Cos": 35, + "talent_point": 184 + }, + "185": { + "lv": 185, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3000000 + } + ], + "HeroDebris_Cos": 35, + "talent_point": 185 + }, + "186": { + "lv": 186, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3000000 + } + ], + "HeroDebris_Cos": 35, + "talent_point": 186 + }, + "187": { + "lv": 187, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3000000 + } + ], + "HeroDebris_Cos": 35, + "talent_point": 187 + }, + "188": { + "lv": 188, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3000000 + } + ], + "HeroDebris_Cos": 35, + "talent_point": 188 + }, + "189": { + "lv": 189, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3000000 + } + ], + "HeroDebris_Cos": 35, + "talent_point": 189 + }, + "190": { + "lv": 190, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3000000 + } + ], + "HeroDebris_Cos": 35, + "talent_point": 190 + }, + "191": { + "lv": 191, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3000000 + } + ], + "HeroDebris_Cos": 35, + "talent_point": 191 + }, + "192": { + "lv": 192, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3000000 + } + ], + "HeroDebris_Cos": 35, + "talent_point": 192 + }, + "193": { + "lv": 193, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3000000 + } + ], + "HeroDebris_Cos": 35, + "talent_point": 193 + }, + "194": { + "lv": 194, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3000000 + } + ], + "HeroDebris_Cos": 35, + "talent_point": 194 + }, + "195": { + "lv": 195, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3000000 + } + ], + "HeroDebris_Cos": 35, + "talent_point": 195 + }, + "196": { + "lv": 196, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3000000 + } + ], + "HeroDebris_Cos": 35, + "talent_point": 196 + }, + "197": { + "lv": 197, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3000000 + } + ], + "HeroDebris_Cos": 35, + "talent_point": 197 + }, + "198": { + "lv": 198, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3000000 + } + ], + "HeroDebris_Cos": 35, + "talent_point": 198 + }, + "199": { + "lv": 199, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3000000 + } + ], + "HeroDebris_Cos": 35, + "talent_point": 199 + }, + "200": { + "lv": 200, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3000000 + } + ], + "HeroDebris_Cos": 35, + "talent_point": 200 + }, + "201": { + "lv": 201, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + } + ], + "HeroDebris_Cos": 40, + "talent_point": 201 + }, + "202": { + "lv": 202, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + } + ], + "HeroDebris_Cos": 40, + "talent_point": 202 + }, + "203": { + "lv": 203, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + } + ], + "HeroDebris_Cos": 40, + "talent_point": 203 + }, + "204": { + "lv": 204, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + } + ], + "HeroDebris_Cos": 40, + "talent_point": 204 + }, + "205": { + "lv": 205, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + } + ], + "HeroDebris_Cos": 40, + "talent_point": 205 + }, + "206": { + "lv": 206, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + } + ], + "HeroDebris_Cos": 40, + "talent_point": 206 + }, + "207": { + "lv": 207, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + } + ], + "HeroDebris_Cos": 40, + "talent_point": 207 + }, + "208": { + "lv": 208, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + } + ], + "HeroDebris_Cos": 40, + "talent_point": 208 + }, + "209": { + "lv": 209, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + } + ], + "HeroDebris_Cos": 40, + "talent_point": 209 + }, + "210": { + "lv": 210, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + } + ], + "HeroDebris_Cos": 40, + "talent_point": 210 + }, + "211": { + "lv": 211, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + } + ], + "HeroDebris_Cos": 40, + "talent_point": 211 + }, + "212": { + "lv": 212, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + } + ], + "HeroDebris_Cos": 40, + "talent_point": 212 + }, + "213": { + "lv": 213, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + } + ], + "HeroDebris_Cos": 40, + "talent_point": 213 + }, + "214": { + "lv": 214, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + } + ], + "HeroDebris_Cos": 40, + "talent_point": 214 + }, + "215": { + "lv": 215, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + } + ], + "HeroDebris_Cos": 40, + "talent_point": 215 + }, + "216": { + "lv": 216, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + } + ], + "HeroDebris_Cos": 40, + "talent_point": 216 + }, + "217": { + "lv": 217, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + } + ], + "HeroDebris_Cos": 40, + "talent_point": 217 + }, + "218": { + "lv": 218, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + } + ], + "HeroDebris_Cos": 40, + "talent_point": 218 + }, + "219": { + "lv": 219, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + } + ], + "HeroDebris_Cos": 40, + "talent_point": 219 + }, + "220": { + "lv": 220, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 3500000 + } + ], + "HeroDebris_Cos": 40, + "talent_point": 220 + }, + "221": { + "lv": 221, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "HeroDebris_Cos": 45, + "talent_point": 221 + }, + "222": { + "lv": 222, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "HeroDebris_Cos": 45, + "talent_point": 222 + }, + "223": { + "lv": 223, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "HeroDebris_Cos": 45, + "talent_point": 223 + }, + "224": { + "lv": 224, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "HeroDebris_Cos": 45, + "talent_point": 224 + }, + "225": { + "lv": 225, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "HeroDebris_Cos": 45, + "talent_point": 225 + }, + "226": { + "lv": 226, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "HeroDebris_Cos": 45, + "talent_point": 226 + }, + "227": { + "lv": 227, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "HeroDebris_Cos": 45, + "talent_point": 227 + }, + "228": { + "lv": 228, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "HeroDebris_Cos": 45, + "talent_point": 228 + }, + "229": { + "lv": 229, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "HeroDebris_Cos": 45, + "talent_point": 229 + }, + "230": { + "lv": 230, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "HeroDebris_Cos": 45, + "talent_point": 230 + }, + "231": { + "lv": 231, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "HeroDebris_Cos": 45, + "talent_point": 231 + }, + "232": { + "lv": 232, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "HeroDebris_Cos": 45, + "talent_point": 232 + }, + "233": { + "lv": 233, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "HeroDebris_Cos": 45, + "talent_point": 233 + }, + "234": { + "lv": 234, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "HeroDebris_Cos": 45, + "talent_point": 234 + }, + "235": { + "lv": 235, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "HeroDebris_Cos": 45, + "talent_point": 235 + }, + "236": { + "lv": 236, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "HeroDebris_Cos": 45, + "talent_point": 236 + }, + "237": { + "lv": 237, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "HeroDebris_Cos": 45, + "talent_point": 237 + }, + "238": { + "lv": 238, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "HeroDebris_Cos": 45, + "talent_point": 238 + }, + "239": { + "lv": 239, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "HeroDebris_Cos": 45, + "talent_point": 239 + }, + "240": { + "lv": 240, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "HeroDebris_Cos": 45, + "talent_point": 240 + }, + "241": { + "lv": 241, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4500000 + } + ], + "HeroDebris_Cos": 50, + "talent_point": 241 + }, + "242": { + "lv": 242, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4500000 + } + ], + "HeroDebris_Cos": 50, + "talent_point": 242 + }, + "243": { + "lv": 243, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4500000 + } + ], + "HeroDebris_Cos": 50, + "talent_point": 243 + }, + "244": { + "lv": 244, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4500000 + } + ], + "HeroDebris_Cos": 50, + "talent_point": 244 + }, + "245": { + "lv": 245, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4500000 + } + ], + "HeroDebris_Cos": 50, + "talent_point": 245 + }, + "246": { + "lv": 246, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4500000 + } + ], + "HeroDebris_Cos": 50, + "talent_point": 246 + }, + "247": { + "lv": 247, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4500000 + } + ], + "HeroDebris_Cos": 50, + "talent_point": 247 + }, + "248": { + "lv": 248, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4500000 + } + ], + "HeroDebris_Cos": 50, + "talent_point": 248 + }, + "249": { + "lv": 249, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4500000 + } + ], + "HeroDebris_Cos": 50, + "talent_point": 249 + }, + "250": { + "lv": 250, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4500000 + } + ], + "HeroDebris_Cos": 50, + "talent_point": 250 + }, + "251": { + "lv": 251, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4500000 + } + ], + "HeroDebris_Cos": 50, + "talent_point": 251 + }, + "252": { + "lv": 252, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4500000 + } + ], + "HeroDebris_Cos": 50, + "talent_point": 252 + }, + "253": { + "lv": 253, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4500000 + } + ], + "HeroDebris_Cos": 50, + "talent_point": 253 + }, + "254": { + "lv": 254, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4500000 + } + ], + "HeroDebris_Cos": 50, + "talent_point": 254 + }, + "255": { + "lv": 255, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4500000 + } + ], + "HeroDebris_Cos": 50, + "talent_point": 255 + }, + "256": { + "lv": 256, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4500000 + } + ], + "HeroDebris_Cos": 50, + "talent_point": 256 + }, + "257": { + "lv": 257, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4500000 + } + ], + "HeroDebris_Cos": 50, + "talent_point": 257 + }, + "258": { + "lv": 258, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4500000 + } + ], + "HeroDebris_Cos": 50, + "talent_point": 258 + }, + "259": { + "lv": 259, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4500000 + } + ], + "HeroDebris_Cos": 50, + "talent_point": 259 + }, + "260": { + "lv": 260, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 4500000 + } + ], + "HeroDebris_Cos": 50, + "talent_point": 260 + }, + "261": { + "lv": 261, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + } + ], + "HeroDebris_Cos": 55, + "talent_point": 261 + }, + "262": { + "lv": 262, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + } + ], + "HeroDebris_Cos": 55, + "talent_point": 262 + }, + "263": { + "lv": 263, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + } + ], + "HeroDebris_Cos": 55, + "talent_point": 263 + }, + "264": { + "lv": 264, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + } + ], + "HeroDebris_Cos": 55, + "talent_point": 264 + }, + "265": { + "lv": 265, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + } + ], + "HeroDebris_Cos": 55, + "talent_point": 265 + }, + "266": { + "lv": 266, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + } + ], + "HeroDebris_Cos": 55, + "talent_point": 266 + }, + "267": { + "lv": 267, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + } + ], + "HeroDebris_Cos": 55, + "talent_point": 267 + }, + "268": { + "lv": 268, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + } + ], + "HeroDebris_Cos": 55, + "talent_point": 268 + }, + "269": { + "lv": 269, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + } + ], + "HeroDebris_Cos": 55, + "talent_point": 269 + }, + "270": { + "lv": 270, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + } + ], + "HeroDebris_Cos": 55, + "talent_point": 270 + }, + "271": { + "lv": 271, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + } + ], + "HeroDebris_Cos": 55, + "talent_point": 271 + }, + "272": { + "lv": 272, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + } + ], + "HeroDebris_Cos": 55, + "talent_point": 272 + }, + "273": { + "lv": 273, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + } + ], + "HeroDebris_Cos": 55, + "talent_point": 273 + }, + "274": { + "lv": 274, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + } + ], + "HeroDebris_Cos": 55, + "talent_point": 274 + }, + "275": { + "lv": 275, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + } + ], + "HeroDebris_Cos": 55, + "talent_point": 275 + }, + "276": { + "lv": 276, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + } + ], + "HeroDebris_Cos": 55, + "talent_point": 276 + }, + "277": { + "lv": 277, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + } + ], + "HeroDebris_Cos": 55, + "talent_point": 277 + }, + "278": { + "lv": 278, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + } + ], + "HeroDebris_Cos": 55, + "talent_point": 278 + }, + "279": { + "lv": 279, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + } + ], + "HeroDebris_Cos": 55, + "talent_point": 279 + }, + "280": { + "lv": 280, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + } + ], + "HeroDebris_Cos": 55, + "talent_point": 280 + }, + "281": { + "lv": 281, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5500000 + } + ], + "HeroDebris_Cos": 60, + "talent_point": 281 + }, + "282": { + "lv": 282, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5500000 + } + ], + "HeroDebris_Cos": 60, + "talent_point": 282 + }, + "283": { + "lv": 283, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5500000 + } + ], + "HeroDebris_Cos": 60, + "talent_point": 283 + }, + "284": { + "lv": 284, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5500000 + } + ], + "HeroDebris_Cos": 60, + "talent_point": 284 + }, + "285": { + "lv": 285, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5500000 + } + ], + "HeroDebris_Cos": 60, + "talent_point": 285 + }, + "286": { + "lv": 286, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5500000 + } + ], + "HeroDebris_Cos": 60, + "talent_point": 286 + }, + "287": { + "lv": 287, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5500000 + } + ], + "HeroDebris_Cos": 60, + "talent_point": 287 + }, + "288": { + "lv": 288, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5500000 + } + ], + "HeroDebris_Cos": 60, + "talent_point": 288 + }, + "289": { + "lv": 289, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5500000 + } + ], + "HeroDebris_Cos": 60, + "talent_point": 289 + }, + "290": { + "lv": 290, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5500000 + } + ], + "HeroDebris_Cos": 60, + "talent_point": 290 + }, + "291": { + "lv": 291, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5500000 + } + ], + "HeroDebris_Cos": 60, + "talent_point": 291 + }, + "292": { + "lv": 292, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5500000 + } + ], + "HeroDebris_Cos": 60, + "talent_point": 292 + }, + "293": { + "lv": 293, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5500000 + } + ], + "HeroDebris_Cos": 60, + "talent_point": 293 + }, + "294": { + "lv": 294, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5500000 + } + ], + "HeroDebris_Cos": 60, + "talent_point": 294 + }, + "295": { + "lv": 295, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5500000 + } + ], + "HeroDebris_Cos": 60, + "talent_point": 295 + }, + "296": { + "lv": 296, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5500000 + } + ], + "HeroDebris_Cos": 60, + "talent_point": 296 + }, + "297": { + "lv": 297, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5500000 + } + ], + "HeroDebris_Cos": 60, + "talent_point": 297 + }, + "298": { + "lv": 298, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5500000 + } + ], + "HeroDebris_Cos": 60, + "talent_point": 298 + }, + "299": { + "lv": 299, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5500000 + } + ], + "HeroDebris_Cos": 60, + "talent_point": 299 + }, + "300": { + "lv": 300, + "item_cos": [ + { + "a": "attr", + "t": "jinbi", + "n": 5500000 + } + ], + "HeroDebris_Cos": 60, + "talent_point": 300 + } +} \ No newline at end of file diff --git a/src/json/hero_qianneng.json b/src/json/hero_qianneng.json new file mode 100644 index 0000000..fbb1634 --- /dev/null +++ b/src/json/hero_qianneng.json @@ -0,0 +1,4808 @@ +{ + "ganzhi": { + "1": { + "type": "ganzhi", + "lv": 1, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 1500 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 0 + }, + "2": { + "type": "ganzhi", + "lv": 2, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 2000 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 0 + }, + "3": { + "type": "ganzhi", + "lv": 3, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 2700 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 0 + }, + "4": { + "type": "ganzhi", + "lv": 4, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 3800 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 0 + }, + "5": { + "type": "ganzhi", + "lv": 5, + "buff": { + "atkpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 50 + } + ], + "icon": "img_gb_qn_gjjc", + "advanced": 0 + }, + "6": { + "type": "ganzhi", + "lv": 6, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 4000 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 1 + }, + "7": { + "type": "ganzhi", + "lv": 7, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 4100 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 1 + }, + "8": { + "type": "ganzhi", + "lv": 8, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 4300 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 1 + }, + "9": { + "type": "ganzhi", + "lv": 9, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 4400 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 1 + }, + "10": { + "type": "ganzhi", + "lv": 10, + "buff": { + "atkpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 130 + } + ], + "icon": "img_gb_qn_gjjc", + "advanced": 1 + }, + "11": { + "type": "ganzhi", + "lv": 11, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 4600 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 2 + }, + "12": { + "type": "ganzhi", + "lv": 12, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 4800 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 2 + }, + "13": { + "type": "ganzhi", + "lv": 13, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 4900 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 2 + }, + "14": { + "type": "ganzhi", + "lv": 14, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 5100 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 2 + }, + "15": { + "type": "ganzhi", + "lv": 15, + "buff": { + "atkpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 230 + } + ], + "icon": "img_gb_qn_gjjc", + "advanced": 2 + }, + "16": { + "type": "ganzhi", + "lv": 16, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 5300 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 3 + }, + "17": { + "type": "ganzhi", + "lv": 17, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 5500 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 3 + }, + "18": { + "type": "ganzhi", + "lv": 18, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 5600 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 3 + }, + "19": { + "type": "ganzhi", + "lv": 19, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 5800 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 3 + }, + "20": { + "type": "ganzhi", + "lv": 20, + "buff": { + "atkpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 350 + } + ], + "icon": "img_gb_qn_gjjc", + "advanced": 3 + }, + "21": { + "type": "ganzhi", + "lv": 21, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 6100 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 4 + }, + "22": { + "type": "ganzhi", + "lv": 22, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 6200 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 4 + }, + "23": { + "type": "ganzhi", + "lv": 23, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 6400 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 4 + }, + "24": { + "type": "ganzhi", + "lv": 24, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 6500 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 4 + }, + "25": { + "type": "ganzhi", + "lv": 25, + "buff": { + "atkpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 480 + } + ], + "icon": "img_gb_qn_gjjc", + "advanced": 4 + }, + "26": { + "type": "ganzhi", + "lv": 26, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 6800 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 5 + }, + "27": { + "type": "ganzhi", + "lv": 27, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 7000 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 5 + }, + "28": { + "type": "ganzhi", + "lv": 28, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 7100 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 5 + }, + "29": { + "type": "ganzhi", + "lv": 29, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 7300 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 5 + }, + "30": { + "type": "ganzhi", + "lv": 30, + "buff": { + "atkpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 610 + } + ], + "icon": "img_gb_qn_gjjc", + "advanced": 5 + }, + "31": { + "type": "ganzhi", + "lv": 31, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 7600 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 6 + }, + "32": { + "type": "ganzhi", + "lv": 32, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 7800 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 6 + }, + "33": { + "type": "ganzhi", + "lv": 33, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 7900 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 6 + }, + "34": { + "type": "ganzhi", + "lv": 34, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 8100 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 6 + }, + "35": { + "type": "ganzhi", + "lv": 35, + "buff": { + "atkpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 760 + } + ], + "icon": "img_gb_qn_gjjc", + "advanced": 6 + }, + "36": { + "type": "ganzhi", + "lv": 36, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 8400 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 7 + }, + "37": { + "type": "ganzhi", + "lv": 37, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 8600 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 7 + }, + "38": { + "type": "ganzhi", + "lv": 38, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 8700 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 7 + }, + "39": { + "type": "ganzhi", + "lv": 39, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 8900 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 7 + }, + "40": { + "type": "ganzhi", + "lv": 40, + "buff": { + "atkpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 920 + } + ], + "icon": "img_gb_qn_gjjc", + "advanced": 7 + }, + "41": { + "type": "ganzhi", + "lv": 41, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 9200 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 8 + }, + "42": { + "type": "ganzhi", + "lv": 42, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 9400 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 8 + }, + "43": { + "type": "ganzhi", + "lv": 43, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 9600 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 8 + }, + "44": { + "type": "ganzhi", + "lv": 44, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 9800 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 8 + }, + "45": { + "type": "ganzhi", + "lv": 45, + "buff": { + "atkpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 1080 + } + ], + "icon": "img_gb_qn_gjjc", + "advanced": 8 + }, + "46": { + "type": "ganzhi", + "lv": 46, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 10100 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 9 + }, + "47": { + "type": "ganzhi", + "lv": 47, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 10300 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 9 + }, + "48": { + "type": "ganzhi", + "lv": 48, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 10400 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 9 + }, + "49": { + "type": "ganzhi", + "lv": 49, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 10600 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 9 + }, + "50": { + "type": "ganzhi", + "lv": 50, + "buff": { + "atkpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 1260 + } + ], + "icon": "img_gb_qn_gjjc", + "advanced": 9 + }, + "51": { + "type": "ganzhi", + "lv": 51, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 11000 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 10 + }, + "52": { + "type": "ganzhi", + "lv": 52, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 11200 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 10 + }, + "53": { + "type": "ganzhi", + "lv": 53, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 11300 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 10 + }, + "54": { + "type": "ganzhi", + "lv": 54, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 11500 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 10 + }, + "55": { + "type": "ganzhi", + "lv": 55, + "buff": { + "atkpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 1440 + } + ], + "icon": "img_gb_qn_gjjc", + "advanced": 10 + }, + "56": { + "type": "ganzhi", + "lv": 56, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 11900 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 11 + }, + "57": { + "type": "ganzhi", + "lv": 57, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 12000 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 11 + }, + "58": { + "type": "ganzhi", + "lv": 58, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 12200 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 11 + }, + "59": { + "type": "ganzhi", + "lv": 59, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 12400 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 11 + }, + "60": { + "type": "ganzhi", + "lv": 60, + "buff": { + "atkpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 1620 + } + ], + "icon": "img_gb_qn_gjjc", + "advanced": 11 + }, + "61": { + "type": "ganzhi", + "lv": 61, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 12800 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 12 + }, + "62": { + "type": "ganzhi", + "lv": 62, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 13000 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 12 + }, + "63": { + "type": "ganzhi", + "lv": 63, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 13100 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 12 + }, + "64": { + "type": "ganzhi", + "lv": 64, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 13300 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 12 + }, + "65": { + "type": "ganzhi", + "lv": 65, + "buff": { + "atkpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 1810 + } + ], + "icon": "img_gb_qn_gjjc", + "advanced": 12 + }, + "66": { + "type": "ganzhi", + "lv": 66, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 13700 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 13 + }, + "67": { + "type": "ganzhi", + "lv": 67, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 13900 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 13 + }, + "68": { + "type": "ganzhi", + "lv": 68, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 14100 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 13 + }, + "69": { + "type": "ganzhi", + "lv": 69, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 14200 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 13 + }, + "70": { + "type": "ganzhi", + "lv": 70, + "buff": { + "atkpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 2010 + } + ], + "icon": "img_gb_qn_gjjc", + "advanced": 13 + }, + "71": { + "type": "ganzhi", + "lv": 71, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 14600 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 14 + }, + "72": { + "type": "ganzhi", + "lv": 72, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 14800 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 14 + }, + "73": { + "type": "ganzhi", + "lv": 73, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 15000 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 14 + }, + "74": { + "type": "ganzhi", + "lv": 74, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 15200 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 14 + }, + "75": { + "type": "ganzhi", + "lv": 75, + "buff": { + "atkpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 2220 + } + ], + "icon": "img_gb_qn_gjjc", + "advanced": 14 + }, + "76": { + "type": "ganzhi", + "lv": 76, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 15600 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 15 + }, + "77": { + "type": "ganzhi", + "lv": 77, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 15800 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 15 + }, + "78": { + "type": "ganzhi", + "lv": 78, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 16000 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 15 + }, + "79": { + "type": "ganzhi", + "lv": 79, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 16100 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 15 + }, + "80": { + "type": "ganzhi", + "lv": 80, + "buff": { + "atkpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 2430 + } + ], + "icon": "img_gb_qn_gjjc", + "advanced": 15 + }, + "81": { + "type": "ganzhi", + "lv": 81, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 16500 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 16 + }, + "82": { + "type": "ganzhi", + "lv": 82, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 16700 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 16 + }, + "83": { + "type": "ganzhi", + "lv": 83, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 16900 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 16 + }, + "84": { + "type": "ganzhi", + "lv": 84, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 17100 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 16 + }, + "85": { + "type": "ganzhi", + "lv": 85, + "buff": { + "atkpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 3040 + } + ], + "icon": "img_gb_qn_gjjc", + "advanced": 16 + }, + "86": { + "type": "ganzhi", + "lv": 86, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 17500 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 17 + }, + "87": { + "type": "ganzhi", + "lv": 87, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 17700 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 17 + }, + "88": { + "type": "ganzhi", + "lv": 88, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 17900 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 17 + }, + "89": { + "type": "ganzhi", + "lv": 89, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 18100 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 17 + }, + "90": { + "type": "ganzhi", + "lv": 90, + "buff": { + "atkpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 3820 + } + ], + "icon": "img_gb_qn_gjjc", + "advanced": 17 + }, + "91": { + "type": "ganzhi", + "lv": 91, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 18500 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 18 + }, + "92": { + "type": "ganzhi", + "lv": 92, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 18700 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 18 + }, + "93": { + "type": "ganzhi", + "lv": 93, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 18900 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 18 + }, + "94": { + "type": "ganzhi", + "lv": 94, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 19100 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 18 + }, + "95": { + "type": "ganzhi", + "lv": 95, + "buff": { + "atkpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 4970 + } + ], + "icon": "img_gb_qn_gjjc", + "advanced": 18 + }, + "96": { + "type": "ganzhi", + "lv": 96, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 19500 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 19 + }, + "97": { + "type": "ganzhi", + "lv": 97, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 19700 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 19 + }, + "98": { + "type": "ganzhi", + "lv": 98, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 19900 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 19 + }, + "99": { + "type": "ganzhi", + "lv": 99, + "buff": { + "atk": 280 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 20100 + } + ], + "icon": "img_gb_qn_gj", + "advanced": 19 + }, + "100": { + "type": "ganzhi", + "lv": 100, + "buff": { + "atkpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 5750 + } + ], + "icon": "img_gb_qn_gjjc", + "advanced": 19 + } + }, + "jingshen": { + "1": { + "type": "jingshen", + "lv": 1, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 1500 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 0 + }, + "2": { + "type": "jingshen", + "lv": 2, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 2000 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 0 + }, + "3": { + "type": "jingshen", + "lv": 3, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 2700 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 0 + }, + "4": { + "type": "jingshen", + "lv": 4, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 3800 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 0 + }, + "5": { + "type": "jingshen", + "lv": 5, + "buff": { + "defpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 50 + } + ], + "icon": "img_gb_qn_fyjc", + "advanced": 0 + }, + "6": { + "type": "jingshen", + "lv": 6, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 4000 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 1 + }, + "7": { + "type": "jingshen", + "lv": 7, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 4100 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 1 + }, + "8": { + "type": "jingshen", + "lv": 8, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 4300 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 1 + }, + "9": { + "type": "jingshen", + "lv": 9, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 4400 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 1 + }, + "10": { + "type": "jingshen", + "lv": 10, + "buff": { + "defpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 130 + } + ], + "icon": "img_gb_qn_fyjc", + "advanced": 1 + }, + "11": { + "type": "jingshen", + "lv": 11, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 4600 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 2 + }, + "12": { + "type": "jingshen", + "lv": 12, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 4800 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 2 + }, + "13": { + "type": "jingshen", + "lv": 13, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 4900 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 2 + }, + "14": { + "type": "jingshen", + "lv": 14, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 5100 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 2 + }, + "15": { + "type": "jingshen", + "lv": 15, + "buff": { + "defpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 230 + } + ], + "icon": "img_gb_qn_fyjc", + "advanced": 2 + }, + "16": { + "type": "jingshen", + "lv": 16, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 5300 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 3 + }, + "17": { + "type": "jingshen", + "lv": 17, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 5500 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 3 + }, + "18": { + "type": "jingshen", + "lv": 18, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 5600 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 3 + }, + "19": { + "type": "jingshen", + "lv": 19, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 5800 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 3 + }, + "20": { + "type": "jingshen", + "lv": 20, + "buff": { + "defpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 350 + } + ], + "icon": "img_gb_qn_fyjc", + "advanced": 3 + }, + "21": { + "type": "jingshen", + "lv": 21, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 6100 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 4 + }, + "22": { + "type": "jingshen", + "lv": 22, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 6200 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 4 + }, + "23": { + "type": "jingshen", + "lv": 23, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 6400 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 4 + }, + "24": { + "type": "jingshen", + "lv": 24, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 6500 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 4 + }, + "25": { + "type": "jingshen", + "lv": 25, + "buff": { + "defpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 480 + } + ], + "icon": "img_gb_qn_fyjc", + "advanced": 4 + }, + "26": { + "type": "jingshen", + "lv": 26, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 6800 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 5 + }, + "27": { + "type": "jingshen", + "lv": 27, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 7000 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 5 + }, + "28": { + "type": "jingshen", + "lv": 28, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 7100 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 5 + }, + "29": { + "type": "jingshen", + "lv": 29, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 7300 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 5 + }, + "30": { + "type": "jingshen", + "lv": 30, + "buff": { + "defpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 610 + } + ], + "icon": "img_gb_qn_fyjc", + "advanced": 5 + }, + "31": { + "type": "jingshen", + "lv": 31, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 7600 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 6 + }, + "32": { + "type": "jingshen", + "lv": 32, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 7800 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 6 + }, + "33": { + "type": "jingshen", + "lv": 33, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 7900 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 6 + }, + "34": { + "type": "jingshen", + "lv": 34, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 8100 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 6 + }, + "35": { + "type": "jingshen", + "lv": 35, + "buff": { + "defpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 760 + } + ], + "icon": "img_gb_qn_fyjc", + "advanced": 6 + }, + "36": { + "type": "jingshen", + "lv": 36, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 8400 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 7 + }, + "37": { + "type": "jingshen", + "lv": 37, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 8600 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 7 + }, + "38": { + "type": "jingshen", + "lv": 38, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 8700 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 7 + }, + "39": { + "type": "jingshen", + "lv": 39, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 8900 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 7 + }, + "40": { + "type": "jingshen", + "lv": 40, + "buff": { + "defpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 920 + } + ], + "icon": "img_gb_qn_fyjc", + "advanced": 7 + }, + "41": { + "type": "jingshen", + "lv": 41, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 9200 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 8 + }, + "42": { + "type": "jingshen", + "lv": 42, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 9400 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 8 + }, + "43": { + "type": "jingshen", + "lv": 43, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 9600 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 8 + }, + "44": { + "type": "jingshen", + "lv": 44, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 9800 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 8 + }, + "45": { + "type": "jingshen", + "lv": 45, + "buff": { + "defpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 1080 + } + ], + "icon": "img_gb_qn_fyjc", + "advanced": 8 + }, + "46": { + "type": "jingshen", + "lv": 46, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 10100 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 9 + }, + "47": { + "type": "jingshen", + "lv": 47, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 10300 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 9 + }, + "48": { + "type": "jingshen", + "lv": 48, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 10400 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 9 + }, + "49": { + "type": "jingshen", + "lv": 49, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 10600 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 9 + }, + "50": { + "type": "jingshen", + "lv": 50, + "buff": { + "defpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 1260 + } + ], + "icon": "img_gb_qn_fyjc", + "advanced": 9 + }, + "51": { + "type": "jingshen", + "lv": 51, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 11000 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 10 + }, + "52": { + "type": "jingshen", + "lv": 52, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 11200 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 10 + }, + "53": { + "type": "jingshen", + "lv": 53, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 11300 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 10 + }, + "54": { + "type": "jingshen", + "lv": 54, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 11500 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 10 + }, + "55": { + "type": "jingshen", + "lv": 55, + "buff": { + "defpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 1440 + } + ], + "icon": "img_gb_qn_fyjc", + "advanced": 10 + }, + "56": { + "type": "jingshen", + "lv": 56, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 11900 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 11 + }, + "57": { + "type": "jingshen", + "lv": 57, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 12000 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 11 + }, + "58": { + "type": "jingshen", + "lv": 58, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 12200 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 11 + }, + "59": { + "type": "jingshen", + "lv": 59, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 12400 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 11 + }, + "60": { + "type": "jingshen", + "lv": 60, + "buff": { + "defpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 1620 + } + ], + "icon": "img_gb_qn_fyjc", + "advanced": 11 + }, + "61": { + "type": "jingshen", + "lv": 61, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 12800 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 12 + }, + "62": { + "type": "jingshen", + "lv": 62, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 13000 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 12 + }, + "63": { + "type": "jingshen", + "lv": 63, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 13100 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 12 + }, + "64": { + "type": "jingshen", + "lv": 64, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 13300 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 12 + }, + "65": { + "type": "jingshen", + "lv": 65, + "buff": { + "defpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 1810 + } + ], + "icon": "img_gb_qn_fyjc", + "advanced": 12 + }, + "66": { + "type": "jingshen", + "lv": 66, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 13700 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 13 + }, + "67": { + "type": "jingshen", + "lv": 67, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 13900 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 13 + }, + "68": { + "type": "jingshen", + "lv": 68, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 14100 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 13 + }, + "69": { + "type": "jingshen", + "lv": 69, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 14200 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 13 + }, + "70": { + "type": "jingshen", + "lv": 70, + "buff": { + "defpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 2010 + } + ], + "icon": "img_gb_qn_fyjc", + "advanced": 13 + }, + "71": { + "type": "jingshen", + "lv": 71, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 14600 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 14 + }, + "72": { + "type": "jingshen", + "lv": 72, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 14800 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 14 + }, + "73": { + "type": "jingshen", + "lv": 73, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 15000 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 14 + }, + "74": { + "type": "jingshen", + "lv": 74, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 15200 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 14 + }, + "75": { + "type": "jingshen", + "lv": 75, + "buff": { + "defpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 2220 + } + ], + "icon": "img_gb_qn_fyjc", + "advanced": 14 + }, + "76": { + "type": "jingshen", + "lv": 76, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 15600 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 15 + }, + "77": { + "type": "jingshen", + "lv": 77, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 15800 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 15 + }, + "78": { + "type": "jingshen", + "lv": 78, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 16000 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 15 + }, + "79": { + "type": "jingshen", + "lv": 79, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 16100 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 15 + }, + "80": { + "type": "jingshen", + "lv": 80, + "buff": { + "defpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 2430 + } + ], + "icon": "img_gb_qn_fyjc", + "advanced": 15 + }, + "81": { + "type": "jingshen", + "lv": 81, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 16500 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 16 + }, + "82": { + "type": "jingshen", + "lv": 82, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 16700 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 16 + }, + "83": { + "type": "jingshen", + "lv": 83, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 16900 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 16 + }, + "84": { + "type": "jingshen", + "lv": 84, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 17100 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 16 + }, + "85": { + "type": "jingshen", + "lv": 85, + "buff": { + "defpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 3040 + } + ], + "icon": "img_gb_qn_fyjc", + "advanced": 16 + }, + "86": { + "type": "jingshen", + "lv": 86, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 17500 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 17 + }, + "87": { + "type": "jingshen", + "lv": 87, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 17700 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 17 + }, + "88": { + "type": "jingshen", + "lv": 88, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 17900 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 17 + }, + "89": { + "type": "jingshen", + "lv": 89, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 18100 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 17 + }, + "90": { + "type": "jingshen", + "lv": 90, + "buff": { + "defpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 3820 + } + ], + "icon": "img_gb_qn_fyjc", + "advanced": 17 + }, + "91": { + "type": "jingshen", + "lv": 91, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 18500 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 18 + }, + "92": { + "type": "jingshen", + "lv": 92, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 18700 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 18 + }, + "93": { + "type": "jingshen", + "lv": 93, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 18900 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 18 + }, + "94": { + "type": "jingshen", + "lv": 94, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 19100 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 18 + }, + "95": { + "type": "jingshen", + "lv": 95, + "buff": { + "defpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 4970 + } + ], + "icon": "img_gb_qn_fyjc", + "advanced": 18 + }, + "96": { + "type": "jingshen", + "lv": 96, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 19500 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 19 + }, + "97": { + "type": "jingshen", + "lv": 97, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 19700 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 19 + }, + "98": { + "type": "jingshen", + "lv": 98, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 19900 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 19 + }, + "99": { + "type": "jingshen", + "lv": 99, + "buff": { + "def": 230 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 20100 + } + ], + "icon": "img_gb_qn_fy", + "advanced": 19 + }, + "100": { + "type": "jingshen", + "lv": 100, + "buff": { + "defpro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 5750 + } + ], + "icon": "img_gb_qn_fyjc", + "advanced": 19 + } + }, + "nengli": { + "1": { + "type": "nengli", + "lv": 1, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 1500 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 0 + }, + "2": { + "type": "nengli", + "lv": 2, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 2000 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 0 + }, + "3": { + "type": "nengli", + "lv": 3, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 2700 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 0 + }, + "4": { + "type": "nengli", + "lv": 4, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 3800 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 0 + }, + "5": { + "type": "nengli", + "lv": 5, + "buff": { + "hppro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 50 + } + ], + "icon": "img_gb_qn_smjc", + "advanced": 0 + }, + "6": { + "type": "nengli", + "lv": 6, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 4000 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 1 + }, + "7": { + "type": "nengli", + "lv": 7, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 4100 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 1 + }, + "8": { + "type": "nengli", + "lv": 8, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 4300 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 1 + }, + "9": { + "type": "nengli", + "lv": 9, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 4400 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 1 + }, + "10": { + "type": "nengli", + "lv": 10, + "buff": { + "hppro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 130 + } + ], + "icon": "img_gb_qn_smjc", + "advanced": 1 + }, + "11": { + "type": "nengli", + "lv": 11, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 4600 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 2 + }, + "12": { + "type": "nengli", + "lv": 12, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 4800 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 2 + }, + "13": { + "type": "nengli", + "lv": 13, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 4900 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 2 + }, + "14": { + "type": "nengli", + "lv": 14, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 5100 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 2 + }, + "15": { + "type": "nengli", + "lv": 15, + "buff": { + "hppro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 230 + } + ], + "icon": "img_gb_qn_smjc", + "advanced": 2 + }, + "16": { + "type": "nengli", + "lv": 16, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 5300 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 3 + }, + "17": { + "type": "nengli", + "lv": 17, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 5500 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 3 + }, + "18": { + "type": "nengli", + "lv": 18, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 5600 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 3 + }, + "19": { + "type": "nengli", + "lv": 19, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 5800 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 3 + }, + "20": { + "type": "nengli", + "lv": 20, + "buff": { + "hppro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 350 + } + ], + "icon": "img_gb_qn_smjc", + "advanced": 3 + }, + "21": { + "type": "nengli", + "lv": 21, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 6100 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 4 + }, + "22": { + "type": "nengli", + "lv": 22, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 6200 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 4 + }, + "23": { + "type": "nengli", + "lv": 23, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 6400 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 4 + }, + "24": { + "type": "nengli", + "lv": 24, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 6500 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 4 + }, + "25": { + "type": "nengli", + "lv": 25, + "buff": { + "hppro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 480 + } + ], + "icon": "img_gb_qn_smjc", + "advanced": 4 + }, + "26": { + "type": "nengli", + "lv": 26, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 6800 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 5 + }, + "27": { + "type": "nengli", + "lv": 27, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 7000 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 5 + }, + "28": { + "type": "nengli", + "lv": 28, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 7100 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 5 + }, + "29": { + "type": "nengli", + "lv": 29, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 7300 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 5 + }, + "30": { + "type": "nengli", + "lv": 30, + "buff": { + "hppro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 610 + } + ], + "icon": "img_gb_qn_smjc", + "advanced": 5 + }, + "31": { + "type": "nengli", + "lv": 31, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 7600 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 6 + }, + "32": { + "type": "nengli", + "lv": 32, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 7800 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 6 + }, + "33": { + "type": "nengli", + "lv": 33, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 7900 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 6 + }, + "34": { + "type": "nengli", + "lv": 34, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 8100 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 6 + }, + "35": { + "type": "nengli", + "lv": 35, + "buff": { + "hppro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 760 + } + ], + "icon": "img_gb_qn_smjc", + "advanced": 6 + }, + "36": { + "type": "nengli", + "lv": 36, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 8400 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 7 + }, + "37": { + "type": "nengli", + "lv": 37, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 8600 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 7 + }, + "38": { + "type": "nengli", + "lv": 38, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 8700 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 7 + }, + "39": { + "type": "nengli", + "lv": 39, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 8900 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 7 + }, + "40": { + "type": "nengli", + "lv": 40, + "buff": { + "hppro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 920 + } + ], + "icon": "img_gb_qn_smjc", + "advanced": 7 + }, + "41": { + "type": "nengli", + "lv": 41, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 9200 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 8 + }, + "42": { + "type": "nengli", + "lv": 42, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 9400 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 8 + }, + "43": { + "type": "nengli", + "lv": 43, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 9600 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 8 + }, + "44": { + "type": "nengli", + "lv": 44, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 9800 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 8 + }, + "45": { + "type": "nengli", + "lv": 45, + "buff": { + "hppro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 1080 + } + ], + "icon": "img_gb_qn_smjc", + "advanced": 8 + }, + "46": { + "type": "nengli", + "lv": 46, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 10100 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 9 + }, + "47": { + "type": "nengli", + "lv": 47, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 10300 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 9 + }, + "48": { + "type": "nengli", + "lv": 48, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 10400 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 9 + }, + "49": { + "type": "nengli", + "lv": 49, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 10600 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 9 + }, + "50": { + "type": "nengli", + "lv": 50, + "buff": { + "hppro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 1260 + } + ], + "icon": "img_gb_qn_smjc", + "advanced": 9 + }, + "51": { + "type": "nengli", + "lv": 51, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 11000 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 10 + }, + "52": { + "type": "nengli", + "lv": 52, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 11200 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 10 + }, + "53": { + "type": "nengli", + "lv": 53, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 11300 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 10 + }, + "54": { + "type": "nengli", + "lv": 54, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 11500 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 10 + }, + "55": { + "type": "nengli", + "lv": 55, + "buff": { + "hppro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 1440 + } + ], + "icon": "img_gb_qn_smjc", + "advanced": 10 + }, + "56": { + "type": "nengli", + "lv": 56, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 11900 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 11 + }, + "57": { + "type": "nengli", + "lv": 57, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 12000 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 11 + }, + "58": { + "type": "nengli", + "lv": 58, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 12200 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 11 + }, + "59": { + "type": "nengli", + "lv": 59, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 12400 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 11 + }, + "60": { + "type": "nengli", + "lv": 60, + "buff": { + "hppro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 1620 + } + ], + "icon": "img_gb_qn_smjc", + "advanced": 11 + }, + "61": { + "type": "nengli", + "lv": 61, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 12800 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 12 + }, + "62": { + "type": "nengli", + "lv": 62, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 13000 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 12 + }, + "63": { + "type": "nengli", + "lv": 63, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 13100 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 12 + }, + "64": { + "type": "nengli", + "lv": 64, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 13300 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 12 + }, + "65": { + "type": "nengli", + "lv": 65, + "buff": { + "hppro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 1810 + } + ], + "icon": "img_gb_qn_smjc", + "advanced": 12 + }, + "66": { + "type": "nengli", + "lv": 66, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 13700 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 13 + }, + "67": { + "type": "nengli", + "lv": 67, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 13900 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 13 + }, + "68": { + "type": "nengli", + "lv": 68, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 14100 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 13 + }, + "69": { + "type": "nengli", + "lv": 69, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 14200 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 13 + }, + "70": { + "type": "nengli", + "lv": 70, + "buff": { + "hppro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 2010 + } + ], + "icon": "img_gb_qn_smjc", + "advanced": 13 + }, + "71": { + "type": "nengli", + "lv": 71, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 14600 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 14 + }, + "72": { + "type": "nengli", + "lv": 72, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 14800 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 14 + }, + "73": { + "type": "nengli", + "lv": 73, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 15000 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 14 + }, + "74": { + "type": "nengli", + "lv": 74, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 15200 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 14 + }, + "75": { + "type": "nengli", + "lv": 75, + "buff": { + "hppro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 2220 + } + ], + "icon": "img_gb_qn_smjc", + "advanced": 14 + }, + "76": { + "type": "nengli", + "lv": 76, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 15600 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 15 + }, + "77": { + "type": "nengli", + "lv": 77, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 15800 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 15 + }, + "78": { + "type": "nengli", + "lv": 78, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 16000 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 15 + }, + "79": { + "type": "nengli", + "lv": 79, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 16100 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 15 + }, + "80": { + "type": "nengli", + "lv": 80, + "buff": { + "hppro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 2430 + } + ], + "icon": "img_gb_qn_smjc", + "advanced": 15 + }, + "81": { + "type": "nengli", + "lv": 81, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 16500 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 16 + }, + "82": { + "type": "nengli", + "lv": 82, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 16700 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 16 + }, + "83": { + "type": "nengli", + "lv": 83, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 16900 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 16 + }, + "84": { + "type": "nengli", + "lv": 84, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 17100 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 16 + }, + "85": { + "type": "nengli", + "lv": 85, + "buff": { + "hppro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 3040 + } + ], + "icon": "img_gb_qn_smjc", + "advanced": 16 + }, + "86": { + "type": "nengli", + "lv": 86, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 17500 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 17 + }, + "87": { + "type": "nengli", + "lv": 87, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 17700 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 17 + }, + "88": { + "type": "nengli", + "lv": 88, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 17900 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 17 + }, + "89": { + "type": "nengli", + "lv": 89, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 18100 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 17 + }, + "90": { + "type": "nengli", + "lv": 90, + "buff": { + "hppro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 3820 + } + ], + "icon": "img_gb_qn_smjc", + "advanced": 17 + }, + "91": { + "type": "nengli", + "lv": 91, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 18500 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 18 + }, + "92": { + "type": "nengli", + "lv": 92, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 18700 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 18 + }, + "93": { + "type": "nengli", + "lv": 93, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 18900 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 18 + }, + "94": { + "type": "nengli", + "lv": 94, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 19100 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 18 + }, + "95": { + "type": "nengli", + "lv": 95, + "buff": { + "hppro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 4970 + } + ], + "icon": "img_gb_qn_smjc", + "advanced": 18 + }, + "96": { + "type": "nengli", + "lv": 96, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 19500 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 19 + }, + "97": { + "type": "nengli", + "lv": 97, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 19700 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 19 + }, + "98": { + "type": "nengli", + "lv": 98, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 19900 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 19 + }, + "99": { + "type": "nengli", + "lv": 99, + "buff": { + "hp": 2092 + }, + "need": [ + { + "a": "item", + "t": "27", + "n": 20100 + } + ], + "icon": "img_gb_qn_sm", + "advanced": 19 + }, + "100": { + "type": "nengli", + "lv": 100, + "buff": { + "hppro": 0.015 + }, + "need": [ + { + "a": "item", + "t": "13", + "n": 5750 + } + ], + "icon": "img_gb_qn_smjc", + "advanced": 19 + } + } +} \ No newline at end of file diff --git a/src/json/hero_tf.json b/src/json/hero_tf.json new file mode 100644 index 0000000..d66abc0 --- /dev/null +++ b/src/json/hero_tf.json @@ -0,0 +1,3068 @@ +{ + "1": { + "1": { + "id": 1, + "type": 1, + "tab": 1, + "png": "tf_icon_01", + "name": "talent_talent_name_1", + "undefined": "大幅提升战斗能力,干部攻击增加1点", + "lv": 1, + "unlock": [], + "effect": { + "atk": 40 + }, + "skill_effect": "", + "describe": "talent_talent_describe_1_1", + "cos": 1 + }, + "2": { + "id": 2, + "type": 1, + "tab": 1, + "png": "tf_icon_01", + "name": "talent_talent_name_1", + "undefined": "大幅提升战斗能力,干部攻击增加1点", + "lv": 2, + "unlock": [], + "effect": { + "atk": 80 + }, + "skill_effect": "", + "describe": "talent_talent_describe_1_2", + "cos": 1 + }, + "3": { + "id": 3, + "type": 1, + "tab": 1, + "png": "tf_icon_01", + "name": "talent_talent_name_1", + "undefined": "大幅提升战斗能力,干部攻击增加1点", + "lv": 3, + "unlock": [], + "effect": { + "atk": 120 + }, + "skill_effect": "", + "describe": "talent_talent_describe_1_3", + "cos": 1 + }, + "4": { + "id": 4, + "type": 1, + "tab": 1, + "png": "tf_icon_01", + "name": "talent_talent_name_1", + "undefined": "大幅提升战斗能力,干部攻击增加1点", + "lv": 4, + "unlock": [], + "effect": { + "atk": 160 + }, + "skill_effect": "", + "describe": "talent_talent_describe_1_4", + "cos": 1 + }, + "5": { + "id": 5, + "type": 1, + "tab": 1, + "png": "tf_icon_01", + "name": "talent_talent_name_1", + "undefined": "大幅提升战斗能力,干部攻击增加1点", + "lv": 5, + "unlock": [], + "effect": { + "atk": 200 + }, + "skill_effect": "", + "describe": "talent_talent_describe_1_5", + "cos": 1 + }, + "6": { + "id": 6, + "type": 1, + "tab": 1, + "png": "tf_icon_01", + "name": "talent_talent_name_1", + "undefined": "大幅提升战斗能力,干部攻击增加1点", + "lv": 6, + "unlock": [], + "effect": { + "atk": 240 + }, + "skill_effect": "", + "describe": "talent_talent_describe_1_6", + "cos": 1 + }, + "7": { + "id": 7, + "type": 1, + "tab": 1, + "png": "tf_icon_01", + "name": "talent_talent_name_1", + "undefined": "大幅提升战斗能力,干部攻击增加1点", + "lv": 7, + "unlock": [], + "effect": { + "atk": 280 + }, + "skill_effect": "", + "describe": "talent_talent_describe_1_7", + "cos": 1 + }, + "8": { + "id": 8, + "type": 1, + "tab": 1, + "png": "tf_icon_01", + "name": "talent_talent_name_1", + "undefined": "大幅提升战斗能力,干部攻击增加1点", + "lv": 8, + "unlock": [], + "effect": { + "atk": 320 + }, + "skill_effect": "", + "describe": "talent_talent_describe_1_8", + "cos": 1 + }, + "9": { + "id": 9, + "type": 1, + "tab": 1, + "png": "tf_icon_01", + "name": "talent_talent_name_1", + "undefined": "大幅提升战斗能力,干部攻击增加1点", + "lv": 9, + "unlock": [], + "effect": { + "atk": 360 + }, + "skill_effect": "", + "describe": "talent_talent_describe_1_9", + "cos": 1 + }, + "10": { + "id": 10, + "type": 1, + "tab": 1, + "png": "tf_icon_01", + "name": "talent_talent_name_1", + "undefined": "大幅提升战斗能力,干部攻击增加1点", + "lv": 10, + "unlock": [], + "effect": { + "atk": 400 + }, + "skill_effect": "", + "describe": "talent_talent_describe_1_10", + "cos": 1 + } + }, + "2": { + "1": { + "id": 11, + "type": 2, + "tab": 1, + "png": "tf_icon_02", + "name": "talent_talent_name_2", + "undefined": "进入战斗后的前2回合进入致命状态,攻击敌人时有1%的几率造成双倍伤害", + "lv": 1, + "unlock": [ + 1 + ], + "effect": {}, + "skill_effect": "tx01300", + "describe": "talent_talent_describe_2_1", + "cos": 2 + }, + "2": { + "id": 12, + "type": 2, + "tab": 1, + "png": "tf_icon_02", + "name": "talent_talent_name_2", + "undefined": "进入战斗后的前2回合进入致命状态,攻击敌人时有1%的几率造成双倍伤害", + "lv": 2, + "unlock": [ + 1 + ], + "effect": {}, + "skill_effect": "tx01301", + "describe": "talent_talent_describe_2_2", + "cos": 2 + }, + "3": { + "id": 13, + "type": 2, + "tab": 1, + "png": "tf_icon_02", + "name": "talent_talent_name_2", + "undefined": "进入战斗后的前2回合进入致命状态,攻击敌人时有1%的几率造成双倍伤害", + "lv": 3, + "unlock": [ + 1 + ], + "effect": {}, + "skill_effect": "tx01302", + "describe": "talent_talent_describe_2_3", + "cos": 2 + }, + "4": { + "id": 14, + "type": 2, + "tab": 1, + "png": "tf_icon_02", + "name": "talent_talent_name_2", + "undefined": "进入战斗后的前2回合进入致命状态,攻击敌人时有1%的几率造成双倍伤害", + "lv": 4, + "unlock": [ + 1 + ], + "effect": {}, + "skill_effect": "tx01303", + "describe": "talent_talent_describe_2_4", + "cos": 2 + }, + "5": { + "id": 15, + "type": 2, + "tab": 1, + "png": "tf_icon_02", + "name": "talent_talent_name_2", + "undefined": "进入战斗后的前2回合进入致命状态,攻击敌人时有1%的几率造成双倍伤害", + "lv": 5, + "unlock": [ + 1 + ], + "effect": {}, + "skill_effect": "tx01304", + "describe": "talent_talent_describe_2_5", + "cos": 2 + }, + "6": { + "id": 16, + "type": 2, + "tab": 1, + "png": "tf_icon_02", + "name": "talent_talent_name_2", + "undefined": "进入战斗后的前2回合进入致命状态,攻击敌人时有1%的几率造成双倍伤害", + "lv": 6, + "unlock": [ + 1 + ], + "effect": {}, + "skill_effect": "tx01305", + "describe": "talent_talent_describe_2_6", + "cos": 2 + }, + "7": { + "id": 17, + "type": 2, + "tab": 1, + "png": "tf_icon_02", + "name": "talent_talent_name_2", + "undefined": "进入战斗后的前2回合进入致命状态,攻击敌人时有1%的几率造成双倍伤害", + "lv": 7, + "unlock": [ + 1 + ], + "effect": {}, + "skill_effect": "tx01306", + "describe": "talent_talent_describe_2_7", + "cos": 2 + }, + "8": { + "id": 18, + "type": 2, + "tab": 1, + "png": "tf_icon_02", + "name": "talent_talent_name_2", + "undefined": "进入战斗后的前2回合进入致命状态,攻击敌人时有1%的几率造成双倍伤害", + "lv": 8, + "unlock": [ + 1 + ], + "effect": {}, + "skill_effect": "tx01307", + "describe": "talent_talent_describe_2_8", + "cos": 2 + }, + "9": { + "id": 19, + "type": 2, + "tab": 1, + "png": "tf_icon_02", + "name": "talent_talent_name_2", + "undefined": "进入战斗后的前2回合进入致命状态,攻击敌人时有1%的几率造成双倍伤害", + "lv": 9, + "unlock": [ + 1 + ], + "effect": {}, + "skill_effect": "tx01308", + "describe": "talent_talent_describe_2_9", + "cos": 2 + }, + "10": { + "id": 20, + "type": 2, + "tab": 1, + "png": "tf_icon_02", + "name": "talent_talent_name_2", + "undefined": "进入战斗后的前2回合进入致命状态,攻击敌人时有1%的几率造成双倍伤害", + "lv": 10, + "unlock": [ + 1 + ], + "effect": {}, + "skill_effect": "tx01309", + "describe": "talent_talent_describe_2_10", + "cos": 2 + } + }, + "3": { + "1": { + "id": 21, + "type": 3, + "tab": 1, + "png": "tf_icon_03", + "name": "talent_talent_name_3", + "undefined": "每次攻击时都将无视对手1%的防御值", + "lv": 1, + "unlock": [ + 1 + ], + "effect": {}, + "skill_effect": "tx02300", + "describe": "talent_talent_describe_3_1", + "cos": 2 + }, + "2": { + "id": 22, + "type": 3, + "tab": 1, + "png": "tf_icon_03", + "name": "talent_talent_name_3", + "undefined": "每次攻击时都将无视对手1%的防御值", + "lv": 2, + "unlock": [ + 1 + ], + "effect": {}, + "skill_effect": "tx02301", + "describe": "talent_talent_describe_3_2", + "cos": 2 + }, + "3": { + "id": 23, + "type": 3, + "tab": 1, + "png": "tf_icon_03", + "name": "talent_talent_name_3", + "undefined": "每次攻击时都将无视对手1%的防御值", + "lv": 3, + "unlock": [ + 1 + ], + "effect": {}, + "skill_effect": "tx02302", + "describe": "talent_talent_describe_3_3", + "cos": 2 + }, + "4": { + "id": 24, + "type": 3, + "tab": 1, + "png": "tf_icon_03", + "name": "talent_talent_name_3", + "undefined": "每次攻击时都将无视对手1%的防御值", + "lv": 4, + "unlock": [ + 1 + ], + "effect": {}, + "skill_effect": "tx02303", + "describe": "talent_talent_describe_3_4", + "cos": 2 + }, + "5": { + "id": 25, + "type": 3, + "tab": 1, + "png": "tf_icon_03", + "name": "talent_talent_name_3", + "undefined": "每次攻击时都将无视对手1%的防御值", + "lv": 5, + "unlock": [ + 1 + ], + "effect": {}, + "skill_effect": "tx02304", + "describe": "talent_talent_describe_3_5", + "cos": 2 + }, + "6": { + "id": 26, + "type": 3, + "tab": 1, + "png": "tf_icon_03", + "name": "talent_talent_name_3", + "undefined": "每次攻击时都将无视对手1%的防御值", + "lv": 6, + "unlock": [ + 1 + ], + "effect": {}, + "skill_effect": "tx02305", + "describe": "talent_talent_describe_3_6", + "cos": 2 + }, + "7": { + "id": 27, + "type": 3, + "tab": 1, + "png": "tf_icon_03", + "name": "talent_talent_name_3", + "undefined": "每次攻击时都将无视对手1%的防御值", + "lv": 7, + "unlock": [ + 1 + ], + "effect": {}, + "skill_effect": "tx02306", + "describe": "talent_talent_describe_3_7", + "cos": 2 + }, + "8": { + "id": 28, + "type": 3, + "tab": 1, + "png": "tf_icon_03", + "name": "talent_talent_name_3", + "undefined": "每次攻击时都将无视对手1%的防御值", + "lv": 8, + "unlock": [ + 1 + ], + "effect": {}, + "skill_effect": "tx02307", + "describe": "talent_talent_describe_3_8", + "cos": 2 + }, + "9": { + "id": 29, + "type": 3, + "tab": 1, + "png": "tf_icon_03", + "name": "talent_talent_name_3", + "undefined": "每次攻击时都将无视对手1%的防御值", + "lv": 9, + "unlock": [ + 1 + ], + "effect": {}, + "skill_effect": "tx02308", + "describe": "talent_talent_describe_3_9", + "cos": 2 + }, + "10": { + "id": 30, + "type": 3, + "tab": 1, + "png": "tf_icon_03", + "name": "talent_talent_name_3", + "undefined": "每次攻击时都将无视对手1%的防御值", + "lv": 10, + "unlock": [ + 1 + ], + "effect": {}, + "skill_effect": "tx02309", + "describe": "talent_talent_describe_3_10", + "cos": 2 + } + }, + "4": { + "1": { + "id": 31, + "type": 4, + "tab": 1, + "png": "tf_icon_04", + "name": "talent_talent_name_4", + "undefined": "在攻击时有1%几率寻找出生命百分比最低的目标并进行攻击", + "lv": 1, + "unlock": [ + 2 + ], + "effect": {}, + "skill_effect": "tx03200", + "describe": "talent_talent_describe_4_1", + "cos": 3 + }, + "2": { + "id": 32, + "type": 4, + "tab": 1, + "png": "tf_icon_04", + "name": "talent_talent_name_4", + "undefined": "在攻击时有1%几率寻找出生命百分比最低的目标并进行攻击", + "lv": 2, + "unlock": [ + 2 + ], + "effect": {}, + "skill_effect": "tx03201", + "describe": "talent_talent_describe_4_2", + "cos": 3 + }, + "3": { + "id": 33, + "type": 4, + "tab": 1, + "png": "tf_icon_04", + "name": "talent_talent_name_4", + "undefined": "在攻击时有1%几率寻找出生命百分比最低的目标并进行攻击", + "lv": 3, + "unlock": [ + 2 + ], + "effect": {}, + "skill_effect": "tx03202", + "describe": "talent_talent_describe_4_3", + "cos": 3 + }, + "4": { + "id": 34, + "type": 4, + "tab": 1, + "png": "tf_icon_04", + "name": "talent_talent_name_4", + "undefined": "在攻击时有1%几率寻找出生命百分比最低的目标并进行攻击", + "lv": 4, + "unlock": [ + 2 + ], + "effect": {}, + "skill_effect": "tx03203", + "describe": "talent_talent_describe_4_4", + "cos": 3 + }, + "5": { + "id": 35, + "type": 4, + "tab": 1, + "png": "tf_icon_04", + "name": "talent_talent_name_4", + "undefined": "在攻击时有1%几率寻找出生命百分比最低的目标并进行攻击", + "lv": 5, + "unlock": [ + 2 + ], + "effect": {}, + "skill_effect": "tx03204", + "describe": "talent_talent_describe_4_5", + "cos": 3 + }, + "6": { + "id": 36, + "type": 4, + "tab": 1, + "png": "tf_icon_04", + "name": "talent_talent_name_4", + "undefined": "在攻击时有1%几率寻找出生命百分比最低的目标并进行攻击", + "lv": 6, + "unlock": [ + 2 + ], + "effect": {}, + "skill_effect": "tx03205", + "describe": "talent_talent_describe_4_6", + "cos": 3 + }, + "7": { + "id": 37, + "type": 4, + "tab": 1, + "png": "tf_icon_04", + "name": "talent_talent_name_4", + "undefined": "在攻击时有1%几率寻找出生命百分比最低的目标并进行攻击", + "lv": 7, + "unlock": [ + 2 + ], + "effect": {}, + "skill_effect": "tx03206", + "describe": "talent_talent_describe_4_7", + "cos": 3 + }, + "8": { + "id": 38, + "type": 4, + "tab": 1, + "png": "tf_icon_04", + "name": "talent_talent_name_4", + "undefined": "在攻击时有1%几率寻找出生命百分比最低的目标并进行攻击", + "lv": 8, + "unlock": [ + 2 + ], + "effect": {}, + "skill_effect": "tx03207", + "describe": "talent_talent_describe_4_8", + "cos": 3 + }, + "9": { + "id": 39, + "type": 4, + "tab": 1, + "png": "tf_icon_04", + "name": "talent_talent_name_4", + "undefined": "在攻击时有1%几率寻找出生命百分比最低的目标并进行攻击", + "lv": 9, + "unlock": [ + 2 + ], + "effect": {}, + "skill_effect": "tx03208", + "describe": "talent_talent_describe_4_9", + "cos": 3 + }, + "10": { + "id": 40, + "type": 4, + "tab": 1, + "png": "tf_icon_04", + "name": "talent_talent_name_4", + "undefined": "在攻击时有1%几率寻找出生命百分比最低的目标并进行攻击", + "lv": 10, + "unlock": [ + 2 + ], + "effect": {}, + "skill_effect": "tx03209", + "describe": "talent_talent_describe_4_10", + "cos": 3 + } + }, + "5": { + "1": { + "id": 41, + "type": 5, + "tab": 1, + "png": "tf_icon_05", + "name": "talent_talent_name_5", + "undefined": "当自身攻击的目标死亡后,有1%的几率进入追击状态,将会再次发动攻击", + "lv": 1, + "unlock": [ + 3 + ], + "effect": {}, + "skill_effect": "tx04200", + "describe": "talent_talent_describe_5_1", + "cos": 3 + }, + "2": { + "id": 42, + "type": 5, + "tab": 1, + "png": "tf_icon_05", + "name": "talent_talent_name_5", + "undefined": "当自身攻击的目标死亡后,有1%的几率进入追击状态,将会再次发动攻击", + "lv": 2, + "unlock": [ + 3 + ], + "effect": {}, + "skill_effect": "tx04201", + "describe": "talent_talent_describe_5_2", + "cos": 3 + }, + "3": { + "id": 43, + "type": 5, + "tab": 1, + "png": "tf_icon_05", + "name": "talent_talent_name_5", + "undefined": "当自身攻击的目标死亡后,有1%的几率进入追击状态,将会再次发动攻击", + "lv": 3, + "unlock": [ + 3 + ], + "effect": {}, + "skill_effect": "tx04202", + "describe": "talent_talent_describe_5_3", + "cos": 3 + }, + "4": { + "id": 44, + "type": 5, + "tab": 1, + "png": "tf_icon_05", + "name": "talent_talent_name_5", + "undefined": "当自身攻击的目标死亡后,有1%的几率进入追击状态,将会再次发动攻击", + "lv": 4, + "unlock": [ + 3 + ], + "effect": {}, + "skill_effect": "tx04203", + "describe": "talent_talent_describe_5_4", + "cos": 3 + }, + "5": { + "id": 45, + "type": 5, + "tab": 1, + "png": "tf_icon_05", + "name": "talent_talent_name_5", + "undefined": "当自身攻击的目标死亡后,有1%的几率进入追击状态,将会再次发动攻击", + "lv": 5, + "unlock": [ + 3 + ], + "effect": {}, + "skill_effect": "tx04204", + "describe": "talent_talent_describe_5_5", + "cos": 3 + }, + "6": { + "id": 46, + "type": 5, + "tab": 1, + "png": "tf_icon_05", + "name": "talent_talent_name_5", + "undefined": "当自身攻击的目标死亡后,有1%的几率进入追击状态,将会再次发动攻击", + "lv": 6, + "unlock": [ + 3 + ], + "effect": {}, + "skill_effect": "tx04205", + "describe": "talent_talent_describe_5_6", + "cos": 3 + }, + "7": { + "id": 47, + "type": 5, + "tab": 1, + "png": "tf_icon_05", + "name": "talent_talent_name_5", + "undefined": "当自身攻击的目标死亡后,有1%的几率进入追击状态,将会再次发动攻击", + "lv": 7, + "unlock": [ + 3 + ], + "effect": {}, + "skill_effect": "tx04206", + "describe": "talent_talent_describe_5_7", + "cos": 3 + }, + "8": { + "id": 48, + "type": 5, + "tab": 1, + "png": "tf_icon_05", + "name": "talent_talent_name_5", + "undefined": "当自身攻击的目标死亡后,有1%的几率进入追击状态,将会再次发动攻击", + "lv": 8, + "unlock": [ + 3 + ], + "effect": {}, + "skill_effect": "tx04207", + "describe": "talent_talent_describe_5_8", + "cos": 3 + }, + "9": { + "id": 49, + "type": 5, + "tab": 1, + "png": "tf_icon_05", + "name": "talent_talent_name_5", + "undefined": "当自身攻击的目标死亡后,有1%的几率进入追击状态,将会再次发动攻击", + "lv": 9, + "unlock": [ + 3 + ], + "effect": {}, + "skill_effect": "tx04208", + "describe": "talent_talent_describe_5_9", + "cos": 3 + }, + "10": { + "id": 50, + "type": 5, + "tab": 1, + "png": "tf_icon_05", + "name": "talent_talent_name_5", + "undefined": "当自身攻击的目标死亡后,有1%的几率进入追击状态,将会再次发动攻击", + "lv": 10, + "unlock": [ + 3 + ], + "effect": {}, + "skill_effect": "tx04209", + "describe": "talent_talent_describe_5_10", + "cos": 3 + } + }, + "6": { + "1": { + "id": 51, + "type": 6, + "tab": 1, + "png": "tf_icon_06", + "name": "talent_talent_name_6", + "undefined": "轻易看穿敌人破绽,基础攻击提升1%", + "lv": 1, + "unlock": [ + 4, + 5 + ], + "effect": { + "atkpro": 0.03 + }, + "skill_effect": "", + "describe": "talent_talent_describe_6_1", + "cos": 4 + }, + "2": { + "id": 52, + "type": 6, + "tab": 1, + "png": "tf_icon_06", + "name": "talent_talent_name_6", + "undefined": "轻易看穿敌人破绽,基础攻击提升1%", + "lv": 2, + "unlock": [ + 4, + 5 + ], + "effect": { + "atkpro": 0.06 + }, + "skill_effect": "", + "describe": "talent_talent_describe_6_2", + "cos": 4 + }, + "3": { + "id": 53, + "type": 6, + "tab": 1, + "png": "tf_icon_06", + "name": "talent_talent_name_6", + "undefined": "轻易看穿敌人破绽,基础攻击提升1%", + "lv": 3, + "unlock": [ + 4, + 5 + ], + "effect": { + "atkpro": 0.09 + }, + "skill_effect": "", + "describe": "talent_talent_describe_6_3", + "cos": 4 + }, + "4": { + "id": 54, + "type": 6, + "tab": 1, + "png": "tf_icon_06", + "name": "talent_talent_name_6", + "undefined": "轻易看穿敌人破绽,基础攻击提升1%", + "lv": 4, + "unlock": [ + 4, + 5 + ], + "effect": { + "atkpro": 0.12 + }, + "skill_effect": "", + "describe": "talent_talent_describe_6_4", + "cos": 4 + }, + "5": { + "id": 55, + "type": 6, + "tab": 1, + "png": "tf_icon_06", + "name": "talent_talent_name_6", + "undefined": "轻易看穿敌人破绽,基础攻击提升1%", + "lv": 5, + "unlock": [ + 4, + 5 + ], + "effect": { + "atkpro": 0.15 + }, + "skill_effect": "", + "describe": "talent_talent_describe_6_5", + "cos": 4 + }, + "6": { + "id": 56, + "type": 6, + "tab": 1, + "png": "tf_icon_06", + "name": "talent_talent_name_6", + "undefined": "轻易看穿敌人破绽,基础攻击提升1%", + "lv": 6, + "unlock": [ + 4, + 5 + ], + "effect": { + "atkpro": 0.18 + }, + "skill_effect": "", + "describe": "talent_talent_describe_6_6", + "cos": 4 + }, + "7": { + "id": 57, + "type": 6, + "tab": 1, + "png": "tf_icon_06", + "name": "talent_talent_name_6", + "undefined": "轻易看穿敌人破绽,基础攻击提升1%", + "lv": 7, + "unlock": [ + 4, + 5 + ], + "effect": { + "atkpro": 0.21 + }, + "skill_effect": "", + "describe": "talent_talent_describe_6_7", + "cos": 4 + }, + "8": { + "id": 58, + "type": 6, + "tab": 1, + "png": "tf_icon_06", + "name": "talent_talent_name_6", + "undefined": "轻易看穿敌人破绽,基础攻击提升1%", + "lv": 8, + "unlock": [ + 4, + 5 + ], + "effect": { + "atkpro": 0.24 + }, + "skill_effect": "", + "describe": "talent_talent_describe_6_8", + "cos": 4 + }, + "9": { + "id": 59, + "type": 6, + "tab": 1, + "png": "tf_icon_06", + "name": "talent_talent_name_6", + "undefined": "轻易看穿敌人破绽,基础攻击提升1%", + "lv": 9, + "unlock": [ + 4, + 5 + ], + "effect": { + "atkpro": 0.27 + }, + "skill_effect": "", + "describe": "talent_talent_describe_6_9", + "cos": 4 + }, + "10": { + "id": 60, + "type": 6, + "tab": 1, + "png": "tf_icon_06", + "name": "talent_talent_name_6", + "undefined": "轻易看穿敌人破绽,基础攻击提升1%", + "lv": 10, + "unlock": [ + 4, + 5 + ], + "effect": { + "atkpro": 0.3 + }, + "skill_effect": "", + "describe": "talent_talent_describe_6_10", + "cos": 4 + } + }, + "7": { + "1": { + "id": 61, + "type": 7, + "tab": 2, + "png": "tf_icon_07", + "name": "talent_talent_name_7", + "undefined": "大幅度增强战斗能力;该干部的防御增加1点", + "lv": 1, + "unlock": [], + "effect": { + "def": 70 + }, + "skill_effect": "", + "describe": "talent_talent_describe_7_1", + "cos": 1 + }, + "2": { + "id": 62, + "type": 7, + "tab": 2, + "png": "tf_icon_07", + "name": "talent_talent_name_7", + "undefined": "大幅度增强战斗能力;该干部的防御增加1点", + "lv": 2, + "unlock": [], + "effect": { + "def": 140 + }, + "skill_effect": "", + "describe": "talent_talent_describe_7_2", + "cos": 1 + }, + "3": { + "id": 63, + "type": 7, + "tab": 2, + "png": "tf_icon_07", + "name": "talent_talent_name_7", + "undefined": "大幅度增强战斗能力;该干部的防御增加1点", + "lv": 3, + "unlock": [], + "effect": { + "def": 210 + }, + "skill_effect": "", + "describe": "talent_talent_describe_7_3", + "cos": 1 + }, + "4": { + "id": 64, + "type": 7, + "tab": 2, + "png": "tf_icon_07", + "name": "talent_talent_name_7", + "undefined": "大幅度增强战斗能力;该干部的防御增加1点", + "lv": 4, + "unlock": [], + "effect": { + "def": 280 + }, + "skill_effect": "", + "describe": "talent_talent_describe_7_4", + "cos": 1 + }, + "5": { + "id": 65, + "type": 7, + "tab": 2, + "png": "tf_icon_07", + "name": "talent_talent_name_7", + "undefined": "大幅度增强战斗能力;该干部的防御增加1点", + "lv": 5, + "unlock": [], + "effect": { + "def": 350 + }, + "skill_effect": "", + "describe": "talent_talent_describe_7_5", + "cos": 1 + }, + "6": { + "id": 66, + "type": 7, + "tab": 2, + "png": "tf_icon_07", + "name": "talent_talent_name_7", + "undefined": "大幅度增强战斗能力;该干部的防御增加1点", + "lv": 6, + "unlock": [], + "effect": { + "def": 420 + }, + "skill_effect": "", + "describe": "talent_talent_describe_7_6", + "cos": 1 + }, + "7": { + "id": 67, + "type": 7, + "tab": 2, + "png": "tf_icon_07", + "name": "talent_talent_name_7", + "undefined": "大幅度增强战斗能力;该干部的防御增加1点", + "lv": 7, + "unlock": [], + "effect": { + "def": 490 + }, + "skill_effect": "", + "describe": "talent_talent_describe_7_7", + "cos": 1 + }, + "8": { + "id": 68, + "type": 7, + "tab": 2, + "png": "tf_icon_07", + "name": "talent_talent_name_7", + "undefined": "大幅度增强战斗能力;该干部的防御增加1点", + "lv": 8, + "unlock": [], + "effect": { + "def": 560 + }, + "skill_effect": "", + "describe": "talent_talent_describe_7_8", + "cos": 1 + }, + "9": { + "id": 69, + "type": 7, + "tab": 2, + "png": "tf_icon_07", + "name": "talent_talent_name_7", + "undefined": "大幅度增强战斗能力;该干部的防御增加1点", + "lv": 9, + "unlock": [], + "effect": { + "def": 630 + }, + "skill_effect": "", + "describe": "talent_talent_describe_7_9", + "cos": 1 + }, + "10": { + "id": 70, + "type": 7, + "tab": 2, + "png": "tf_icon_07", + "name": "talent_talent_name_7", + "undefined": "大幅度增强战斗能力;该干部的防御增加1点", + "lv": 10, + "unlock": [], + "effect": { + "def": 700 + }, + "skill_effect": "", + "describe": "talent_talent_describe_7_10", + "cos": 1 + } + }, + "8": { + "1": { + "id": 71, + "type": 8, + "tab": 2, + "png": "tf_icon_08", + "name": "talent_talent_name_8", + "undefined": "当干部受到混乱攻击时,伤害降低1%", + "lv": 1, + "unlock": [ + 7 + ], + "effect": { + "magdpsdrop": 0.02 + }, + "skill_effect": "", + "describe": "talent_talent_describe_8_1", + "cos": 2 + }, + "2": { + "id": 72, + "type": 8, + "tab": 2, + "png": "tf_icon_08", + "name": "talent_talent_name_8", + "undefined": "当干部受到混乱攻击时,伤害降低1%", + "lv": 2, + "unlock": [ + 7 + ], + "effect": { + "magdpsdrop": 0.04 + }, + "skill_effect": "", + "describe": "talent_talent_describe_8_2", + "cos": 2 + }, + "3": { + "id": 73, + "type": 8, + "tab": 2, + "png": "tf_icon_08", + "name": "talent_talent_name_8", + "undefined": "当干部受到混乱攻击时,伤害降低1%", + "lv": 3, + "unlock": [ + 7 + ], + "effect": { + "magdpsdrop": 0.06 + }, + "skill_effect": "", + "describe": "talent_talent_describe_8_3", + "cos": 2 + }, + "4": { + "id": 74, + "type": 8, + "tab": 2, + "png": "tf_icon_08", + "name": "talent_talent_name_8", + "undefined": "当干部受到混乱攻击时,伤害降低1%", + "lv": 4, + "unlock": [ + 7 + ], + "effect": { + "magdpsdrop": 0.08 + }, + "skill_effect": "", + "describe": "talent_talent_describe_8_4", + "cos": 2 + }, + "5": { + "id": 75, + "type": 8, + "tab": 2, + "png": "tf_icon_08", + "name": "talent_talent_name_8", + "undefined": "当干部受到混乱攻击时,伤害降低1%", + "lv": 5, + "unlock": [ + 7 + ], + "effect": { + "magdpsdrop": 0.1 + }, + "skill_effect": "", + "describe": "talent_talent_describe_8_5", + "cos": 2 + }, + "6": { + "id": 76, + "type": 8, + "tab": 2, + "png": "tf_icon_08", + "name": "talent_talent_name_8", + "undefined": "当干部受到混乱攻击时,伤害降低1%", + "lv": 6, + "unlock": [ + 7 + ], + "effect": { + "magdpsdrop": 0.12 + }, + "skill_effect": "", + "describe": "talent_talent_describe_8_6", + "cos": 2 + }, + "7": { + "id": 77, + "type": 8, + "tab": 2, + "png": "tf_icon_08", + "name": "talent_talent_name_8", + "undefined": "当干部受到混乱攻击时,伤害降低1%", + "lv": 7, + "unlock": [ + 7 + ], + "effect": { + "magdpsdrop": 0.14 + }, + "skill_effect": "", + "describe": "talent_talent_describe_8_7", + "cos": 2 + }, + "8": { + "id": 78, + "type": 8, + "tab": 2, + "png": "tf_icon_08", + "name": "talent_talent_name_8", + "undefined": "当干部受到混乱攻击时,伤害降低1%", + "lv": 8, + "unlock": [ + 7 + ], + "effect": { + "magdpsdrop": 0.16 + }, + "skill_effect": "", + "describe": "talent_talent_describe_8_8", + "cos": 2 + }, + "9": { + "id": 79, + "type": 8, + "tab": 2, + "png": "tf_icon_08", + "name": "talent_talent_name_8", + "undefined": "当干部受到混乱攻击时,伤害降低1%", + "lv": 9, + "unlock": [ + 7 + ], + "effect": { + "magdpsdrop": 0.18 + }, + "skill_effect": "", + "describe": "talent_talent_describe_8_9", + "cos": 2 + }, + "10": { + "id": 80, + "type": 8, + "tab": 2, + "png": "tf_icon_08", + "name": "talent_talent_name_8", + "undefined": "当干部受到混乱攻击时,伤害降低1%", + "lv": 10, + "unlock": [ + 7 + ], + "effect": { + "magdpsdrop": 0.2 + }, + "skill_effect": "", + "describe": "talent_talent_describe_8_10", + "cos": 2 + } + }, + "9": { + "1": { + "id": 81, + "type": 9, + "tab": 2, + "png": "tf_icon_09", + "name": "talent_talent_name_9", + "undefined": "大幅度增强战斗能力;该干部的反伤提升1%", + "lv": 1, + "unlock": [ + 7 + ], + "effect": { + "fanshangpro": 0.015 + }, + "skill_effect": "", + "describe": "talent_talent_describe_9_1", + "cos": 2 + }, + "2": { + "id": 82, + "type": 9, + "tab": 2, + "png": "tf_icon_09", + "name": "talent_talent_name_9", + "undefined": "大幅度增强战斗能力;该干部的反伤提升1%", + "lv": 2, + "unlock": [ + 7 + ], + "effect": { + "fanshangpro": 0.03 + }, + "skill_effect": "", + "describe": "talent_talent_describe_9_2", + "cos": 2 + }, + "3": { + "id": 83, + "type": 9, + "tab": 2, + "png": "tf_icon_09", + "name": "talent_talent_name_9", + "undefined": "大幅度增强战斗能力;该干部的反伤提升1%", + "lv": 3, + "unlock": [ + 7 + ], + "effect": { + "fanshangpro": 0.045 + }, + "skill_effect": "", + "describe": "talent_talent_describe_9_3", + "cos": 2 + }, + "4": { + "id": 84, + "type": 9, + "tab": 2, + "png": "tf_icon_09", + "name": "talent_talent_name_9", + "undefined": "大幅度增强战斗能力;该干部的反伤提升1%", + "lv": 4, + "unlock": [ + 7 + ], + "effect": { + "fanshangpro": 0.06 + }, + "skill_effect": "", + "describe": "talent_talent_describe_9_4", + "cos": 2 + }, + "5": { + "id": 85, + "type": 9, + "tab": 2, + "png": "tf_icon_09", + "name": "talent_talent_name_9", + "undefined": "大幅度增强战斗能力;该干部的反伤提升1%", + "lv": 5, + "unlock": [ + 7 + ], + "effect": { + "fanshangpro": 0.075 + }, + "skill_effect": "", + "describe": "talent_talent_describe_9_5", + "cos": 2 + }, + "6": { + "id": 86, + "type": 9, + "tab": 2, + "png": "tf_icon_09", + "name": "talent_talent_name_9", + "undefined": "大幅度增强战斗能力;该干部的反伤提升1%", + "lv": 6, + "unlock": [ + 7 + ], + "effect": { + "fanshangpro": 0.09 + }, + "skill_effect": "", + "describe": "talent_talent_describe_9_6", + "cos": 2 + }, + "7": { + "id": 87, + "type": 9, + "tab": 2, + "png": "tf_icon_09", + "name": "talent_talent_name_9", + "undefined": "大幅度增强战斗能力;该干部的反伤提升1%", + "lv": 7, + "unlock": [ + 7 + ], + "effect": { + "fanshangpro": 0.105 + }, + "skill_effect": "", + "describe": "talent_talent_describe_9_7", + "cos": 2 + }, + "8": { + "id": 88, + "type": 9, + "tab": 2, + "png": "tf_icon_09", + "name": "talent_talent_name_9", + "undefined": "大幅度增强战斗能力;该干部的反伤提升1%", + "lv": 8, + "unlock": [ + 7 + ], + "effect": { + "fanshangpro": 0.12 + }, + "skill_effect": "", + "describe": "talent_talent_describe_9_8", + "cos": 2 + }, + "9": { + "id": 89, + "type": 9, + "tab": 2, + "png": "tf_icon_09", + "name": "talent_talent_name_9", + "undefined": "大幅度增强战斗能力;该干部的反伤提升1%", + "lv": 9, + "unlock": [ + 7 + ], + "effect": { + "fanshangpro": 0.135 + }, + "skill_effect": "", + "describe": "talent_talent_describe_9_9", + "cos": 2 + }, + "10": { + "id": 90, + "type": 9, + "tab": 2, + "png": "tf_icon_09", + "name": "talent_talent_name_9", + "undefined": "大幅度增强战斗能力;该干部的反伤提升1%", + "lv": 10, + "unlock": [ + 7 + ], + "effect": { + "fanshangpro": 0.15 + }, + "skill_effect": "", + "describe": "talent_talent_describe_9_10", + "cos": 2 + } + }, + "10": { + "1": { + "id": 91, + "type": 10, + "tab": 2, + "png": "tf_icon_10", + "name": "talent_talent_name_10", + "undefined": "开场将会对自身释放护盾,可抵消1点伤害,每场战斗仅可触发1次", + "lv": 1, + "unlock": [ + 8 + ], + "effect": {}, + "skill_effect": "tx05300", + "describe": "talent_talent_describe_10_1", + "cos": 3 + }, + "2": { + "id": 92, + "type": 10, + "tab": 2, + "png": "tf_icon_10", + "name": "talent_talent_name_10", + "undefined": "开场将会对自身释放护盾,可抵消1点伤害,每场战斗仅可触发1次", + "lv": 2, + "unlock": [ + 8 + ], + "effect": {}, + "skill_effect": "tx05301", + "describe": "talent_talent_describe_10_2", + "cos": 3 + }, + "3": { + "id": 93, + "type": 10, + "tab": 2, + "png": "tf_icon_10", + "name": "talent_talent_name_10", + "undefined": "开场将会对自身释放护盾,可抵消1点伤害,每场战斗仅可触发1次", + "lv": 3, + "unlock": [ + 8 + ], + "effect": {}, + "skill_effect": "tx05302", + "describe": "talent_talent_describe_10_3", + "cos": 3 + }, + "4": { + "id": 94, + "type": 10, + "tab": 2, + "png": "tf_icon_10", + "name": "talent_talent_name_10", + "undefined": "开场将会对自身释放护盾,可抵消1点伤害,每场战斗仅可触发1次", + "lv": 4, + "unlock": [ + 8 + ], + "effect": {}, + "skill_effect": "tx05303", + "describe": "talent_talent_describe_10_4", + "cos": 3 + }, + "5": { + "id": 95, + "type": 10, + "tab": 2, + "png": "tf_icon_10", + "name": "talent_talent_name_10", + "undefined": "开场将会对自身释放护盾,可抵消1点伤害,每场战斗仅可触发1次", + "lv": 5, + "unlock": [ + 8 + ], + "effect": {}, + "skill_effect": "tx05304", + "describe": "talent_talent_describe_10_5", + "cos": 3 + }, + "6": { + "id": 96, + "type": 10, + "tab": 2, + "png": "tf_icon_10", + "name": "talent_talent_name_10", + "undefined": "开场将会对自身释放护盾,可抵消1点伤害,每场战斗仅可触发1次", + "lv": 6, + "unlock": [ + 8 + ], + "effect": {}, + "skill_effect": "tx05305", + "describe": "talent_talent_describe_10_6", + "cos": 3 + }, + "7": { + "id": 97, + "type": 10, + "tab": 2, + "png": "tf_icon_10", + "name": "talent_talent_name_10", + "undefined": "开场将会对自身释放护盾,可抵消1点伤害,每场战斗仅可触发1次", + "lv": 7, + "unlock": [ + 8 + ], + "effect": {}, + "skill_effect": "tx05306", + "describe": "talent_talent_describe_10_7", + "cos": 3 + }, + "8": { + "id": 98, + "type": 10, + "tab": 2, + "png": "tf_icon_10", + "name": "talent_talent_name_10", + "undefined": "开场将会对自身释放护盾,可抵消1点伤害,每场战斗仅可触发1次", + "lv": 8, + "unlock": [ + 8 + ], + "effect": {}, + "skill_effect": "tx05307", + "describe": "talent_talent_describe_10_8", + "cos": 3 + }, + "9": { + "id": 99, + "type": 10, + "tab": 2, + "png": "tf_icon_10", + "name": "talent_talent_name_10", + "undefined": "开场将会对自身释放护盾,可抵消1点伤害,每场战斗仅可触发1次", + "lv": 9, + "unlock": [ + 8 + ], + "effect": {}, + "skill_effect": "tx05308", + "describe": "talent_talent_describe_10_9", + "cos": 3 + }, + "10": { + "id": 100, + "type": 10, + "tab": 2, + "png": "tf_icon_10", + "name": "talent_talent_name_10", + "undefined": "开场将会对自身释放护盾,可抵消1点伤害,每场战斗仅可触发1次", + "lv": 10, + "unlock": [ + 8 + ], + "effect": {}, + "skill_effect": "tx05309", + "describe": "talent_talent_describe_10_10", + "cos": 3 + } + }, + "11": { + "1": { + "id": 101, + "type": 11, + "tab": 2, + "png": "tf_icon_11", + "name": "talent_talent_name_11", + "undefined": "提高干部心智能力,当受到异常状态攻击时,有1%的几率免疫异常状态", + "lv": 1, + "unlock": [ + 9 + ], + "effect": {}, + "skill_effect": "tx06300", + "describe": "talent_talent_describe_11_1", + "cos": 3 + }, + "2": { + "id": 102, + "type": 11, + "tab": 2, + "png": "tf_icon_11", + "name": "talent_talent_name_11", + "undefined": "提高干部心智能力,当受到异常状态攻击时,有1%的几率免疫异常状态", + "lv": 2, + "unlock": [ + 9 + ], + "effect": {}, + "skill_effect": "tx06301", + "describe": "talent_talent_describe_11_2", + "cos": 3 + }, + "3": { + "id": 103, + "type": 11, + "tab": 2, + "png": "tf_icon_11", + "name": "talent_talent_name_11", + "undefined": "提高干部心智能力,当受到异常状态攻击时,有1%的几率免疫异常状态", + "lv": 3, + "unlock": [ + 9 + ], + "effect": {}, + "skill_effect": "tx06302", + "describe": "talent_talent_describe_11_3", + "cos": 3 + }, + "4": { + "id": 104, + "type": 11, + "tab": 2, + "png": "tf_icon_11", + "name": "talent_talent_name_11", + "undefined": "提高干部心智能力,当受到异常状态攻击时,有1%的几率免疫异常状态", + "lv": 4, + "unlock": [ + 9 + ], + "effect": {}, + "skill_effect": "tx06303", + "describe": "talent_talent_describe_11_4", + "cos": 3 + }, + "5": { + "id": 105, + "type": 11, + "tab": 2, + "png": "tf_icon_11", + "name": "talent_talent_name_11", + "undefined": "提高干部心智能力,当受到异常状态攻击时,有1%的几率免疫异常状态", + "lv": 5, + "unlock": [ + 9 + ], + "effect": {}, + "skill_effect": "tx06304", + "describe": "talent_talent_describe_11_5", + "cos": 3 + }, + "6": { + "id": 106, + "type": 11, + "tab": 2, + "png": "tf_icon_11", + "name": "talent_talent_name_11", + "undefined": "提高干部心智能力,当受到异常状态攻击时,有1%的几率免疫异常状态", + "lv": 6, + "unlock": [ + 9 + ], + "effect": {}, + "skill_effect": "tx06305", + "describe": "talent_talent_describe_11_6", + "cos": 3 + }, + "7": { + "id": 107, + "type": 11, + "tab": 2, + "png": "tf_icon_11", + "name": "talent_talent_name_11", + "undefined": "提高干部心智能力,当受到异常状态攻击时,有1%的几率免疫异常状态", + "lv": 7, + "unlock": [ + 9 + ], + "effect": {}, + "skill_effect": "tx06306", + "describe": "talent_talent_describe_11_7", + "cos": 3 + }, + "8": { + "id": 108, + "type": 11, + "tab": 2, + "png": "tf_icon_11", + "name": "talent_talent_name_11", + "undefined": "提高干部心智能力,当受到异常状态攻击时,有1%的几率免疫异常状态", + "lv": 8, + "unlock": [ + 9 + ], + "effect": {}, + "skill_effect": "tx06307", + "describe": "talent_talent_describe_11_8", + "cos": 3 + }, + "9": { + "id": 109, + "type": 11, + "tab": 2, + "png": "tf_icon_11", + "name": "talent_talent_name_11", + "undefined": "提高干部心智能力,当受到异常状态攻击时,有1%的几率免疫异常状态", + "lv": 9, + "unlock": [ + 9 + ], + "effect": {}, + "skill_effect": "tx06308", + "describe": "talent_talent_describe_11_9", + "cos": 3 + }, + "10": { + "id": 110, + "type": 11, + "tab": 2, + "png": "tf_icon_11", + "name": "talent_talent_name_11", + "undefined": "提高干部心智能力,当受到异常状态攻击时,有1%的几率免疫异常状态", + "lv": 10, + "unlock": [ + 9 + ], + "effect": {}, + "skill_effect": "tx06309", + "describe": "talent_talent_describe_11_10", + "cos": 3 + } + }, + "12": { + "1": { + "id": 111, + "type": 12, + "tab": 2, + "png": "tf_icon_12", + "name": "talent_talent_name_12", + "undefined": "使干部的防御变得更加牢不可破,提升1%的基础防御", + "lv": 1, + "unlock": [ + 10, + 11 + ], + "effect": { + "defpro": 3 + }, + "skill_effect": "", + "describe": "talent_talent_describe_12_1", + "cos": 4 + }, + "2": { + "id": 112, + "type": 12, + "tab": 2, + "png": "tf_icon_12", + "name": "talent_talent_name_12", + "undefined": "使干部的防御变得更加牢不可破,提升1%的基础防御", + "lv": 2, + "unlock": [ + 10, + 11 + ], + "effect": { + "defpro": 6 + }, + "skill_effect": "", + "describe": "talent_talent_describe_12_2", + "cos": 4 + }, + "3": { + "id": 113, + "type": 12, + "tab": 2, + "png": "tf_icon_12", + "name": "talent_talent_name_12", + "undefined": "使干部的防御变得更加牢不可破,提升1%的基础防御", + "lv": 3, + "unlock": [ + 10, + 11 + ], + "effect": { + "defpro": 9 + }, + "skill_effect": "", + "describe": "talent_talent_describe_12_3", + "cos": 4 + }, + "4": { + "id": 114, + "type": 12, + "tab": 2, + "png": "tf_icon_12", + "name": "talent_talent_name_12", + "undefined": "使干部的防御变得更加牢不可破,提升1%的基础防御", + "lv": 4, + "unlock": [ + 10, + 11 + ], + "effect": { + "defpro": 12 + }, + "skill_effect": "", + "describe": "talent_talent_describe_12_4", + "cos": 4 + }, + "5": { + "id": 115, + "type": 12, + "tab": 2, + "png": "tf_icon_12", + "name": "talent_talent_name_12", + "undefined": "使干部的防御变得更加牢不可破,提升1%的基础防御", + "lv": 5, + "unlock": [ + 10, + 11 + ], + "effect": { + "defpro": 15 + }, + "skill_effect": "", + "describe": "talent_talent_describe_12_5", + "cos": 4 + }, + "6": { + "id": 116, + "type": 12, + "tab": 2, + "png": "tf_icon_12", + "name": "talent_talent_name_12", + "undefined": "使干部的防御变得更加牢不可破,提升1%的基础防御", + "lv": 6, + "unlock": [ + 10, + 11 + ], + "effect": { + "defpro": 18 + }, + "skill_effect": "", + "describe": "talent_talent_describe_12_6", + "cos": 4 + }, + "7": { + "id": 117, + "type": 12, + "tab": 2, + "png": "tf_icon_12", + "name": "talent_talent_name_12", + "undefined": "使干部的防御变得更加牢不可破,提升1%的基础防御", + "lv": 7, + "unlock": [ + 10, + 11 + ], + "effect": { + "defpro": 21 + }, + "skill_effect": "", + "describe": "talent_talent_describe_12_7", + "cos": 4 + }, + "8": { + "id": 118, + "type": 12, + "tab": 2, + "png": "tf_icon_12", + "name": "talent_talent_name_12", + "undefined": "使干部的防御变得更加牢不可破,提升1%的基础防御", + "lv": 8, + "unlock": [ + 10, + 11 + ], + "effect": { + "defpro": 24 + }, + "skill_effect": "", + "describe": "talent_talent_describe_12_8", + "cos": 4 + }, + "9": { + "id": 119, + "type": 12, + "tab": 2, + "png": "tf_icon_12", + "name": "talent_talent_name_12", + "undefined": "使干部的防御变得更加牢不可破,提升1%的基础防御", + "lv": 9, + "unlock": [ + 10, + 11 + ], + "effect": { + "defpro": 27 + }, + "skill_effect": "", + "describe": "talent_talent_describe_12_9", + "cos": 4 + }, + "10": { + "id": 120, + "type": 12, + "tab": 2, + "png": "tf_icon_12", + "name": "talent_talent_name_12", + "undefined": "使干部的防御变得更加牢不可破,提升1%的基础防御", + "lv": 10, + "unlock": [ + 10, + 11 + ], + "effect": { + "defpro": 30 + }, + "skill_effect": "", + "describe": "talent_talent_describe_12_10", + "cos": 4 + } + }, + "13": { + "1": { + "id": 121, + "type": 13, + "tab": 3, + "png": "tf_icon_13", + "name": "talent_talent_name_13", + "undefined": "大幅度增强战斗能力;该干部的生命增加1点", + "lv": 1, + "unlock": [], + "effect": { + "hp": 800 + }, + "skill_effect": "", + "describe": "talent_talent_describe_13_1", + "cos": 1 + }, + "2": { + "id": 122, + "type": 13, + "tab": 3, + "png": "tf_icon_13", + "name": "talent_talent_name_13", + "undefined": "大幅度增强战斗能力;该干部的生命增加1点", + "lv": 2, + "unlock": [], + "effect": { + "hp": 1600 + }, + "skill_effect": "", + "describe": "talent_talent_describe_13_2", + "cos": 1 + }, + "3": { + "id": 123, + "type": 13, + "tab": 3, + "png": "tf_icon_13", + "name": "talent_talent_name_13", + "undefined": "大幅度增强战斗能力;该干部的生命增加1点", + "lv": 3, + "unlock": [], + "effect": { + "hp": 2400 + }, + "skill_effect": "", + "describe": "talent_talent_describe_13_3", + "cos": 1 + }, + "4": { + "id": 124, + "type": 13, + "tab": 3, + "png": "tf_icon_13", + "name": "talent_talent_name_13", + "undefined": "大幅度增强战斗能力;该干部的生命增加1点", + "lv": 4, + "unlock": [], + "effect": { + "hp": 3200 + }, + "skill_effect": "", + "describe": "talent_talent_describe_13_4", + "cos": 1 + }, + "5": { + "id": 125, + "type": 13, + "tab": 3, + "png": "tf_icon_13", + "name": "talent_talent_name_13", + "undefined": "大幅度增强战斗能力;该干部的生命增加1点", + "lv": 5, + "unlock": [], + "effect": { + "hp": 4000 + }, + "skill_effect": "", + "describe": "talent_talent_describe_13_5", + "cos": 1 + }, + "6": { + "id": 126, + "type": 13, + "tab": 3, + "png": "tf_icon_13", + "name": "talent_talent_name_13", + "undefined": "大幅度增强战斗能力;该干部的生命增加1点", + "lv": 6, + "unlock": [], + "effect": { + "hp": 4800 + }, + "skill_effect": "", + "describe": "talent_talent_describe_13_6", + "cos": 1 + }, + "7": { + "id": 127, + "type": 13, + "tab": 3, + "png": "tf_icon_13", + "name": "talent_talent_name_13", + "undefined": "大幅度增强战斗能力;该干部的生命增加1点", + "lv": 7, + "unlock": [], + "effect": { + "hp": 5600 + }, + "skill_effect": "", + "describe": "talent_talent_describe_13_7", + "cos": 1 + }, + "8": { + "id": 128, + "type": 13, + "tab": 3, + "png": "tf_icon_13", + "name": "talent_talent_name_13", + "undefined": "大幅度增强战斗能力;该干部的生命增加1点", + "lv": 8, + "unlock": [], + "effect": { + "hp": 6400 + }, + "skill_effect": "", + "describe": "talent_talent_describe_13_8", + "cos": 1 + }, + "9": { + "id": 129, + "type": 13, + "tab": 3, + "png": "tf_icon_13", + "name": "talent_talent_name_13", + "undefined": "大幅度增强战斗能力;该干部的生命增加1点", + "lv": 9, + "unlock": [], + "effect": { + "hp": 7200 + }, + "skill_effect": "", + "describe": "talent_talent_describe_13_9", + "cos": 1 + }, + "10": { + "id": 130, + "type": 13, + "tab": 3, + "png": "tf_icon_13", + "name": "talent_talent_name_13", + "undefined": "大幅度增强战斗能力;该干部的生命增加1点", + "lv": 10, + "unlock": [], + "effect": { + "hp": 8000 + }, + "skill_effect": "", + "describe": "talent_talent_describe_13_10", + "cos": 1 + } + }, + "14": { + "1": { + "id": 131, + "type": 14, + "tab": 3, + "png": "tf_icon_14", + "name": "talent_talent_name_14", + "undefined": "战斗中攻击敌人时,有50%几率使目标进入绝望状态,所有生命回复效果降低1%,持续2回合", + "lv": 1, + "unlock": [ + 13 + ], + "effect": {}, + "skill_effect": "tx07300", + "describe": "talent_talent_describe_14_1", + "cos": 2 + }, + "2": { + "id": 132, + "type": 14, + "tab": 3, + "png": "tf_icon_14", + "name": "talent_talent_name_14", + "undefined": "战斗中攻击敌人时,有50%几率使目标进入绝望状态,所有生命回复效果降低1%,持续2回合", + "lv": 2, + "unlock": [ + 13 + ], + "effect": {}, + "skill_effect": "tx07301", + "describe": "talent_talent_describe_14_2", + "cos": 2 + }, + "3": { + "id": 133, + "type": 14, + "tab": 3, + "png": "tf_icon_14", + "name": "talent_talent_name_14", + "undefined": "战斗中攻击敌人时,有50%几率使目标进入绝望状态,所有生命回复效果降低1%,持续2回合", + "lv": 3, + "unlock": [ + 13 + ], + "effect": {}, + "skill_effect": "tx07302", + "describe": "talent_talent_describe_14_3", + "cos": 2 + }, + "4": { + "id": 134, + "type": 14, + "tab": 3, + "png": "tf_icon_14", + "name": "talent_talent_name_14", + "undefined": "战斗中攻击敌人时,有50%几率使目标进入绝望状态,所有生命回复效果降低1%,持续2回合", + "lv": 4, + "unlock": [ + 13 + ], + "effect": {}, + "skill_effect": "tx07303", + "describe": "talent_talent_describe_14_4", + "cos": 2 + }, + "5": { + "id": 135, + "type": 14, + "tab": 3, + "png": "tf_icon_14", + "name": "talent_talent_name_14", + "undefined": "战斗中攻击敌人时,有50%几率使目标进入绝望状态,所有生命回复效果降低1%,持续2回合", + "lv": 5, + "unlock": [ + 13 + ], + "effect": {}, + "skill_effect": "tx07304", + "describe": "talent_talent_describe_14_5", + "cos": 2 + }, + "6": { + "id": 136, + "type": 14, + "tab": 3, + "png": "tf_icon_14", + "name": "talent_talent_name_14", + "undefined": "战斗中攻击敌人时,有50%几率使目标进入绝望状态,所有生命回复效果降低1%,持续2回合", + "lv": 6, + "unlock": [ + 13 + ], + "effect": {}, + "skill_effect": "tx07305", + "describe": "talent_talent_describe_14_6", + "cos": 2 + }, + "7": { + "id": 137, + "type": 14, + "tab": 3, + "png": "tf_icon_14", + "name": "talent_talent_name_14", + "undefined": "战斗中攻击敌人时,有50%几率使目标进入绝望状态,所有生命回复效果降低1%,持续2回合", + "lv": 7, + "unlock": [ + 13 + ], + "effect": {}, + "skill_effect": "tx07306", + "describe": "talent_talent_describe_14_7", + "cos": 2 + }, + "8": { + "id": 138, + "type": 14, + "tab": 3, + "png": "tf_icon_14", + "name": "talent_talent_name_14", + "undefined": "战斗中攻击敌人时,有50%几率使目标进入绝望状态,所有生命回复效果降低1%,持续2回合", + "lv": 8, + "unlock": [ + 13 + ], + "effect": {}, + "skill_effect": "tx07307", + "describe": "talent_talent_describe_14_8", + "cos": 2 + }, + "9": { + "id": 139, + "type": 14, + "tab": 3, + "png": "tf_icon_14", + "name": "talent_talent_name_14", + "undefined": "战斗中攻击敌人时,有50%几率使目标进入绝望状态,所有生命回复效果降低1%,持续2回合", + "lv": 9, + "unlock": [ + 13 + ], + "effect": {}, + "skill_effect": "tx07308", + "describe": "talent_talent_describe_14_9", + "cos": 2 + }, + "10": { + "id": 140, + "type": 14, + "tab": 3, + "png": "tf_icon_14", + "name": "talent_talent_name_14", + "undefined": "战斗中攻击敌人时,有50%几率使目标进入绝望状态,所有生命回复效果降低1%,持续2回合", + "lv": 10, + "unlock": [ + 13 + ], + "effect": {}, + "skill_effect": "tx07309", + "describe": "talent_talent_describe_14_10", + "cos": 2 + } + }, + "15": { + "1": { + "id": 141, + "type": 15, + "tab": 3, + "png": "tf_icon_15", + "name": "talent_talent_name_15", + "undefined": "凝神静气,使干部命中率提升1%", + "lv": 1, + "unlock": [ + 13 + ], + "effect": { + "mingzhongpro": 0.015 + }, + "skill_effect": "", + "describe": "talent_talent_describe_15_1", + "cos": 2 + }, + "2": { + "id": 142, + "type": 15, + "tab": 3, + "png": "tf_icon_15", + "name": "talent_talent_name_15", + "undefined": "凝神静气,使干部命中率提升1%", + "lv": 2, + "unlock": [ + 13 + ], + "effect": { + "mingzhongpro": 0.03 + }, + "skill_effect": "", + "describe": "talent_talent_describe_15_2", + "cos": 2 + }, + "3": { + "id": 143, + "type": 15, + "tab": 3, + "png": "tf_icon_15", + "name": "talent_talent_name_15", + "undefined": "凝神静气,使干部命中率提升1%", + "lv": 3, + "unlock": [ + 13 + ], + "effect": { + "mingzhongpro": 0.045 + }, + "skill_effect": "", + "describe": "talent_talent_describe_15_3", + "cos": 2 + }, + "4": { + "id": 144, + "type": 15, + "tab": 3, + "png": "tf_icon_15", + "name": "talent_talent_name_15", + "undefined": "凝神静气,使干部命中率提升1%", + "lv": 4, + "unlock": [ + 13 + ], + "effect": { + "mingzhongpro": 0.06 + }, + "skill_effect": "", + "describe": "talent_talent_describe_15_4", + "cos": 2 + }, + "5": { + "id": 145, + "type": 15, + "tab": 3, + "png": "tf_icon_15", + "name": "talent_talent_name_15", + "undefined": "凝神静气,使干部命中率提升1%", + "lv": 5, + "unlock": [ + 13 + ], + "effect": { + "mingzhongpro": 0.075 + }, + "skill_effect": "", + "describe": "talent_talent_describe_15_5", + "cos": 2 + }, + "6": { + "id": 146, + "type": 15, + "tab": 3, + "png": "tf_icon_15", + "name": "talent_talent_name_15", + "undefined": "凝神静气,使干部命中率提升1%", + "lv": 6, + "unlock": [ + 13 + ], + "effect": { + "mingzhongpro": 0.09 + }, + "skill_effect": "", + "describe": "talent_talent_describe_15_6", + "cos": 2 + }, + "7": { + "id": 147, + "type": 15, + "tab": 3, + "png": "tf_icon_15", + "name": "talent_talent_name_15", + "undefined": "凝神静气,使干部命中率提升1%", + "lv": 7, + "unlock": [ + 13 + ], + "effect": { + "mingzhongpro": 0.105 + }, + "skill_effect": "", + "describe": "talent_talent_describe_15_7", + "cos": 2 + }, + "8": { + "id": 148, + "type": 15, + "tab": 3, + "png": "tf_icon_15", + "name": "talent_talent_name_15", + "undefined": "凝神静气,使干部命中率提升1%", + "lv": 8, + "unlock": [ + 13 + ], + "effect": { + "mingzhongpro": 0.12 + }, + "skill_effect": "", + "describe": "talent_talent_describe_15_8", + "cos": 2 + }, + "9": { + "id": 149, + "type": 15, + "tab": 3, + "png": "tf_icon_15", + "name": "talent_talent_name_15", + "undefined": "凝神静气,使干部命中率提升1%", + "lv": 9, + "unlock": [ + 13 + ], + "effect": { + "mingzhongpro": 0.135 + }, + "skill_effect": "", + "describe": "talent_talent_describe_15_9", + "cos": 2 + }, + "10": { + "id": 150, + "type": 15, + "tab": 3, + "png": "tf_icon_15", + "name": "talent_talent_name_15", + "undefined": "凝神静气,使干部命中率提升1%", + "lv": 10, + "unlock": [ + 13 + ], + "effect": { + "mingzhongpro": 0.15 + }, + "skill_effect": "", + "describe": "talent_talent_describe_15_10", + "cos": 2 + } + }, + "16": { + "1": { + "id": 151, + "type": 16, + "tab": 3, + "png": "tf_icon_16", + "name": "talent_talent_name_16", + "undefined": "当战斗中死亡后,有1%的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存", + "lv": 1, + "unlock": [ + 14 + ], + "effect": {}, + "skill_effect": "tx08400", + "describe": "talent_talent_describe_16_1", + "cos": 3 + }, + "2": { + "id": 152, + "type": 16, + "tab": 3, + "png": "tf_icon_16", + "name": "talent_talent_name_16", + "undefined": "当战斗中死亡后,有1%的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存", + "lv": 2, + "unlock": [ + 14 + ], + "effect": {}, + "skill_effect": "tx08401", + "describe": "talent_talent_describe_16_2", + "cos": 3 + }, + "3": { + "id": 153, + "type": 16, + "tab": 3, + "png": "tf_icon_16", + "name": "talent_talent_name_16", + "undefined": "当战斗中死亡后,有1%的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存", + "lv": 3, + "unlock": [ + 14 + ], + "effect": {}, + "skill_effect": "tx08402", + "describe": "talent_talent_describe_16_3", + "cos": 3 + }, + "4": { + "id": 154, + "type": 16, + "tab": 3, + "png": "tf_icon_16", + "name": "talent_talent_name_16", + "undefined": "当战斗中死亡后,有1%的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存", + "lv": 4, + "unlock": [ + 14 + ], + "effect": {}, + "skill_effect": "tx08403", + "describe": "talent_talent_describe_16_4", + "cos": 3 + }, + "5": { + "id": 155, + "type": 16, + "tab": 3, + "png": "tf_icon_16", + "name": "talent_talent_name_16", + "undefined": "当战斗中死亡后,有1%的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存", + "lv": 5, + "unlock": [ + 14 + ], + "effect": {}, + "skill_effect": "tx08404", + "describe": "talent_talent_describe_16_5", + "cos": 3 + }, + "6": { + "id": 156, + "type": 16, + "tab": 3, + "png": "tf_icon_16", + "name": "talent_talent_name_16", + "undefined": "当战斗中死亡后,有1%的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存", + "lv": 6, + "unlock": [ + 14 + ], + "effect": {}, + "skill_effect": "tx08405", + "describe": "talent_talent_describe_16_6", + "cos": 3 + }, + "7": { + "id": 157, + "type": 16, + "tab": 3, + "png": "tf_icon_16", + "name": "talent_talent_name_16", + "undefined": "当战斗中死亡后,有1%的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存", + "lv": 7, + "unlock": [ + 14 + ], + "effect": {}, + "skill_effect": "tx08406", + "describe": "talent_talent_describe_16_7", + "cos": 3 + }, + "8": { + "id": 158, + "type": 16, + "tab": 3, + "png": "tf_icon_16", + "name": "talent_talent_name_16", + "undefined": "当战斗中死亡后,有1%的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存", + "lv": 8, + "unlock": [ + 14 + ], + "effect": {}, + "skill_effect": "tx08407", + "describe": "talent_talent_describe_16_8", + "cos": 3 + }, + "9": { + "id": 159, + "type": 16, + "tab": 3, + "png": "tf_icon_16", + "name": "talent_talent_name_16", + "undefined": "当战斗中死亡后,有1%的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存", + "lv": 9, + "unlock": [ + 14 + ], + "effect": {}, + "skill_effect": "tx08408", + "describe": "talent_talent_describe_16_9", + "cos": 3 + }, + "10": { + "id": 160, + "type": 16, + "tab": 3, + "png": "tf_icon_16", + "name": "talent_talent_name_16", + "undefined": "当战斗中死亡后,有1%的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存", + "lv": 10, + "unlock": [ + 14 + ], + "effect": {}, + "skill_effect": "tx08409", + "describe": "talent_talent_describe_16_10", + "cos": 3 + } + }, + "17": { + "1": { + "id": 161, + "type": 17, + "tab": 3, + "png": "tf_icon_17", + "name": "talent_talent_name_17", + "undefined": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的1%将会转化为自身的生命值", + "lv": 1, + "unlock": [ + 15 + ], + "effect": {}, + "skill_effect": "tx09400", + "describe": "talent_talent_describe_17_1", + "cos": 3 + }, + "2": { + "id": 162, + "type": 17, + "tab": 3, + "png": "tf_icon_17", + "name": "talent_talent_name_17", + "undefined": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的1%将会转化为自身的生命值", + "lv": 2, + "unlock": [ + 15 + ], + "effect": {}, + "skill_effect": "tx09401", + "describe": "talent_talent_describe_17_2", + "cos": 3 + }, + "3": { + "id": 163, + "type": 17, + "tab": 3, + "png": "tf_icon_17", + "name": "talent_talent_name_17", + "undefined": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的1%将会转化为自身的生命值", + "lv": 3, + "unlock": [ + 15 + ], + "effect": {}, + "skill_effect": "tx09402", + "describe": "talent_talent_describe_17_3", + "cos": 3 + }, + "4": { + "id": 164, + "type": 17, + "tab": 3, + "png": "tf_icon_17", + "name": "talent_talent_name_17", + "undefined": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的1%将会转化为自身的生命值", + "lv": 4, + "unlock": [ + 15 + ], + "effect": {}, + "skill_effect": "tx09403", + "describe": "talent_talent_describe_17_4", + "cos": 3 + }, + "5": { + "id": 165, + "type": 17, + "tab": 3, + "png": "tf_icon_17", + "name": "talent_talent_name_17", + "undefined": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的1%将会转化为自身的生命值", + "lv": 5, + "unlock": [ + 15 + ], + "effect": {}, + "skill_effect": "tx09404", + "describe": "talent_talent_describe_17_5", + "cos": 3 + }, + "6": { + "id": 166, + "type": 17, + "tab": 3, + "png": "tf_icon_17", + "name": "talent_talent_name_17", + "undefined": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的1%将会转化为自身的生命值", + "lv": 6, + "unlock": [ + 15 + ], + "effect": {}, + "skill_effect": "tx09405", + "describe": "talent_talent_describe_17_6", + "cos": 3 + }, + "7": { + "id": 167, + "type": 17, + "tab": 3, + "png": "tf_icon_17", + "name": "talent_talent_name_17", + "undefined": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的1%将会转化为自身的生命值", + "lv": 7, + "unlock": [ + 15 + ], + "effect": {}, + "skill_effect": "tx09406", + "describe": "talent_talent_describe_17_7", + "cos": 3 + }, + "8": { + "id": 168, + "type": 17, + "tab": 3, + "png": "tf_icon_17", + "name": "talent_talent_name_17", + "undefined": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的1%将会转化为自身的生命值", + "lv": 8, + "unlock": [ + 15 + ], + "effect": {}, + "skill_effect": "tx09407", + "describe": "talent_talent_describe_17_8", + "cos": 3 + }, + "9": { + "id": 169, + "type": 17, + "tab": 3, + "png": "tf_icon_17", + "name": "talent_talent_name_17", + "undefined": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的1%将会转化为自身的生命值", + "lv": 9, + "unlock": [ + 15 + ], + "effect": {}, + "skill_effect": "tx09408", + "describe": "talent_talent_describe_17_9", + "cos": 3 + }, + "10": { + "id": 170, + "type": 17, + "tab": 3, + "png": "tf_icon_17", + "name": "talent_talent_name_17", + "undefined": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的1%将会转化为自身的生命值", + "lv": 10, + "unlock": [ + 15 + ], + "effect": {}, + "skill_effect": "tx09409", + "describe": "talent_talent_describe_17_10", + "cos": 3 + } + }, + "18": { + "1": { + "id": 171, + "type": 18, + "tab": 3, + "png": "tf_icon_18", + "name": "talent_talent_name_18", + "undefined": "激发干部体内强大的生命之力,基础生命提升1%", + "lv": 1, + "unlock": [ + 16, + 17 + ], + "effect": { + "hppro": 0.03 + }, + "skill_effect": "", + "describe": "talent_talent_describe_18_1", + "cos": 4 + }, + "2": { + "id": 172, + "type": 18, + "tab": 3, + "png": "tf_icon_18", + "name": "talent_talent_name_18", + "undefined": "激发干部体内强大的生命之力,基础生命提升1%", + "lv": 2, + "unlock": [ + 16, + 17 + ], + "effect": { + "hppro": 0.06 + }, + "skill_effect": "", + "describe": "talent_talent_describe_18_2", + "cos": 4 + }, + "3": { + "id": 173, + "type": 18, + "tab": 3, + "png": "tf_icon_18", + "name": "talent_talent_name_18", + "undefined": "激发干部体内强大的生命之力,基础生命提升1%", + "lv": 3, + "unlock": [ + 16, + 17 + ], + "effect": { + "hppro": 0.09 + }, + "skill_effect": "", + "describe": "talent_talent_describe_18_3", + "cos": 4 + }, + "4": { + "id": 174, + "type": 18, + "tab": 3, + "png": "tf_icon_18", + "name": "talent_talent_name_18", + "undefined": "激发干部体内强大的生命之力,基础生命提升1%", + "lv": 4, + "unlock": [ + 16, + 17 + ], + "effect": { + "hppro": 0.12 + }, + "skill_effect": "", + "describe": "talent_talent_describe_18_4", + "cos": 4 + }, + "5": { + "id": 175, + "type": 18, + "tab": 3, + "png": "tf_icon_18", + "name": "talent_talent_name_18", + "undefined": "激发干部体内强大的生命之力,基础生命提升1%", + "lv": 5, + "unlock": [ + 16, + 17 + ], + "effect": { + "hppro": 0.15 + }, + "skill_effect": "", + "describe": "talent_talent_describe_18_5", + "cos": 4 + }, + "6": { + "id": 176, + "type": 18, + "tab": 3, + "png": "tf_icon_18", + "name": "talent_talent_name_18", + "undefined": "激发干部体内强大的生命之力,基础生命提升1%", + "lv": 6, + "unlock": [ + 16, + 17 + ], + "effect": { + "hppro": 0.18 + }, + "skill_effect": "", + "describe": "talent_talent_describe_18_6", + "cos": 4 + }, + "7": { + "id": 177, + "type": 18, + "tab": 3, + "png": "tf_icon_18", + "name": "talent_talent_name_18", + "undefined": "激发干部体内强大的生命之力,基础生命提升1%", + "lv": 7, + "unlock": [ + 16, + 17 + ], + "effect": { + "hppro": 0.21 + }, + "skill_effect": "", + "describe": "talent_talent_describe_18_7", + "cos": 4 + }, + "8": { + "id": 178, + "type": 18, + "tab": 3, + "png": "tf_icon_18", + "name": "talent_talent_name_18", + "undefined": "激发干部体内强大的生命之力,基础生命提升1%", + "lv": 8, + "unlock": [ + 16, + 17 + ], + "effect": { + "hppro": 0.24 + }, + "skill_effect": "", + "describe": "talent_talent_describe_18_8", + "cos": 4 + }, + "9": { + "id": 179, + "type": 18, + "tab": 3, + "png": "tf_icon_18", + "name": "talent_talent_name_18", + "undefined": "激发干部体内强大的生命之力,基础生命提升1%", + "lv": 9, + "unlock": [ + 16, + 17 + ], + "effect": { + "hppro": 0.27 + }, + "skill_effect": "", + "describe": "talent_talent_describe_18_9", + "cos": 4 + }, + "10": { + "id": 180, + "type": 18, + "tab": 3, + "png": "tf_icon_18", + "name": "talent_talent_name_18", + "undefined": "激发干部体内强大的生命之力,基础生命提升1%", + "lv": 10, + "unlock": [ + 16, + 17 + ], + "effect": { + "hppro": 0.3 + }, + "skill_effect": "", + "describe": "talent_talent_describe_18_10", + "cos": 4 + } + } +} \ No newline at end of file diff --git a/src/json/herocom.json b/src/json/herocom.json new file mode 100644 index 0000000..3aa4e54 --- /dev/null +++ b/src/json/herocom.json @@ -0,0 +1,1066 @@ +{ + "szHeroLimit": { + "1": 1, + "2": 1, + "3": 3, + "4": 6, + "5": 15, + "6": 30 + }, + "equipOpenLv": 1, + "zswqOpenLv": 45, + "zswqVip": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.01, + 0.02, + 0.03, + 0.04, + 0.05 + ], + "zhuzhan": [ + [ + "lv", + 30 + ], + [ + "lv", + 35 + ], + [ + "lv", + 40 + ], + [ + "lv", + 45 + ], + [ + "lv", + 50 + ], + [ + "lv", + 55 + ], + [ + "lv", + 60 + ], + [ + "lv", + 65 + ], + [ + "vip", + 3 + ], + [ + "vip", + 5 + ] + ], + "zhuzhanBuff": [ + { + "need": 1, + "value": { + "atk": 66, + "def": 101, + "hp": 315, + "mingzhongpro": 0.01 + } + }, + { + "need": 2, + "value": { + "atk": 77, + "def": 103, + "hp": 345, + "mingzhongpro": 0.01 + } + }, + { + "need": 3, + "value": { + "atk": 89, + "def": 105, + "hp": 375, + "mingzhongpro": 0.01 + } + }, + { + "need": 4, + "value": { + "atk": 101, + "def": 109, + "hp": 435, + "mingzhongpro": 0.01 + } + }, + { + "need": 5, + "value": { + "atk": 114, + "def": 113, + "hp": 495, + "mingzhongpro": 0.01 + } + }, + { + "need": 6, + "value": { + "atk": 128, + "def": 117, + "hp": 555, + "shanbipro": 0.01 + } + }, + { + "need": 7, + "value": { + "atk": 142, + "def": 122, + "hp": 630, + "shanbipro": 0.01 + } + }, + { + "need": 8, + "value": { + "atk": 157, + "def": 127, + "hp": 705, + "shanbipro": 0.01 + } + }, + { + "need": 9, + "value": { + "atk": 172, + "def": 133, + "hp": 795, + "shanbipro": 0.01 + } + }, + { + "need": 10, + "value": { + "atk": 189, + "def": 139, + "hp": 885, + "shanbipro": 0.01 + } + }, + { + "need": 11, + "value": { + "atk": 206, + "def": 146, + "hp": 990, + "fanshangpro": 0.01 + } + }, + { + "need": 12, + "value": { + "atk": 223, + "def": 153, + "hp": 1095, + "fanshangpro": 0.01 + } + }, + { + "need": 13, + "value": { + "atk": 241, + "def": 160, + "hp": 1200, + "fanshangpro": 0.01 + } + }, + { + "need": 14, + "value": { + "atk": 260, + "def": 168, + "hp": 1320, + "fanshangpro": 0.01 + } + }, + { + "need": 15, + "value": { + "atk": 279, + "def": 176, + "hp": 1440, + "fanshangpro": 0.01 + } + }, + { + "need": 16, + "value": { + "atk": 299, + "def": 184, + "hp": 1560, + "mingzhongpro": 0.02 + } + }, + { + "need": 17, + "value": { + "atk": 319, + "def": 193, + "hp": 1695, + "mingzhongpro": 0.02 + } + }, + { + "need": 18, + "value": { + "atk": 340, + "def": 201, + "hp": 1815, + "mingzhongpro": 0.02 + } + }, + { + "need": 19, + "value": { + "atk": 362, + "def": 211, + "hp": 1965, + "mingzhongpro": 0.02 + } + }, + { + "need": 20, + "value": { + "atk": 384, + "def": 220, + "hp": 2100, + "mingzhongpro": 0.02 + } + }, + { + "need": 21, + "value": { + "atk": 407, + "def": 230, + "hp": 2250, + "shanbipro": 0.02 + } + }, + { + "need": 22, + "value": { + "atk": 430, + "def": 240, + "hp": 2400, + "shanbipro": 0.02 + } + }, + { + "need": 23, + "value": { + "atk": 454, + "def": 250, + "hp": 2550, + "shanbipro": 0.02 + } + }, + { + "need": 24, + "value": { + "atk": 478, + "def": 261, + "hp": 2715, + "shanbipro": 0.02 + } + }, + { + "need": 25, + "value": { + "atk": 503, + "def": 272, + "hp": 2880, + "shanbipro": 0.02 + } + }, + { + "need": 26, + "value": { + "atk": 529, + "def": 283, + "hp": 3045, + "fanshangpro": 0.02 + } + }, + { + "need": 27, + "value": { + "atk": 555, + "def": 295, + "hp": 3225, + "fanshangpro": 0.02 + } + }, + { + "need": 28, + "value": { + "atk": 581, + "def": 306, + "hp": 3390, + "fanshangpro": 0.02 + } + }, + { + "need": 29, + "value": { + "atk": 608, + "def": 318, + "hp": 3570, + "fanshangpro": 0.02 + } + }, + { + "need": 30, + "value": { + "atk": 636, + "def": 330, + "hp": 3750, + "fanshangpro": 0.02 + } + }, + { + "need": 31, + "value": { + "atk": 664, + "def": 343, + "hp": 3945, + "mingzhongpro": 0.03 + } + }, + { + "need": 32, + "value": { + "atk": 692, + "def": 356, + "hp": 4140, + "mingzhongpro": 0.03 + } + }, + { + "need": 33, + "value": { + "atk": 722, + "def": 368, + "hp": 4320, + "mingzhongpro": 0.03 + } + }, + { + "need": 34, + "value": { + "atk": 751, + "def": 382, + "hp": 4530, + "mingzhongpro": 0.03 + } + }, + { + "need": 35, + "value": { + "atk": 781, + "def": 395, + "hp": 4725, + "mingzhongpro": 0.03 + } + }, + { + "need": 36, + "value": { + "atk": 812, + "def": 409, + "hp": 4935, + "shanbipro": 0.03 + } + }, + { + "need": 37, + "value": { + "atk": 843, + "def": 422, + "hp": 5130, + "shanbipro": 0.03 + } + }, + { + "need": 38, + "value": { + "atk": 875, + "def": 437, + "hp": 5355, + "shanbipro": 0.03 + } + }, + { + "need": 39, + "value": { + "atk": 907, + "def": 451, + "hp": 5565, + "shanbipro": 0.03 + } + }, + { + "need": 40, + "value": { + "atk": 940, + "def": 465, + "hp": 5775, + "shanbipro": 0.03 + } + }, + { + "need": 41, + "value": { + "atk": 973, + "def": 480, + "hp": 6000, + "fanshangpro": 0.03 + } + }, + { + "need": 42, + "value": { + "atk": 1006, + "def": 495, + "hp": 6225, + "fanshangpro": 0.03 + } + }, + { + "need": 43, + "value": { + "atk": 1041, + "def": 510, + "hp": 6450, + "fanshangpro": 0.03 + } + }, + { + "need": 44, + "value": { + "atk": 1075, + "def": 526, + "hp": 6690, + "fanshangpro": 0.03 + } + }, + { + "need": 45, + "value": { + "atk": 1110, + "def": 541, + "hp": 6915, + "fanshangpro": 0.03 + } + }, + { + "need": 46, + "value": { + "atk": 1146, + "def": 557, + "hp": 7155, + "mingzhongpro": 0.04 + } + }, + { + "need": 47, + "value": { + "atk": 1182, + "def": 573, + "hp": 7395, + "mingzhongpro": 0.04 + } + }, + { + "need": 48, + "value": { + "atk": 1218, + "def": 589, + "hp": 7635, + "mingzhongpro": 0.04 + } + }, + { + "need": 49, + "value": { + "atk": 1256, + "def": 606, + "hp": 7890, + "mingzhongpro": 0.04 + } + }, + { + "need": 50, + "value": { + "atk": 1293, + "def": 622, + "hp": 8130, + "mingzhongpro": 0.04 + } + }, + { + "need": 51, + "value": { + "atk": 1331, + "def": 639, + "hp": 8385, + "shanbipro": 0.04 + } + }, + { + "need": 52, + "value": { + "atk": 1369, + "def": 656, + "hp": 8640, + "shanbipro": 0.04 + } + }, + { + "need": 53, + "value": { + "atk": 1408, + "def": 673, + "hp": 8895, + "shanbipro": 0.04 + } + }, + { + "need": 54, + "value": { + "atk": 1448, + "def": 691, + "hp": 9165, + "shanbipro": 0.04 + } + }, + { + "need": 55, + "value": { + "atk": 1487, + "def": 708, + "hp": 9420, + "shanbipro": 0.04 + } + }, + { + "need": 56, + "value": { + "atk": 1528, + "def": 726, + "hp": 9690, + "fanshangpro": 0.04 + } + }, + { + "need": 57, + "value": { + "atk": 1569, + "def": 744, + "hp": 9960, + "fanshangpro": 0.04 + } + }, + { + "need": 58, + "value": { + "atk": 1610, + "def": 762, + "hp": 10230, + "fanshangpro": 0.04 + } + }, + { + "need": 59, + "value": { + "atk": 1651, + "def": 781, + "hp": 10515, + "fanshangpro": 0.04 + } + }, + { + "need": 60, + "value": { + "atk": 1694, + "def": 799, + "hp": 10785, + "fanshangpro": 0.04 + } + }, + { + "need": 61, + "value": { + "atk": 1736, + "def": 818, + "hp": 11070, + "mingzhongpro": 0.05 + } + }, + { + "need": 62, + "value": { + "atk": 1779, + "def": 837, + "hp": 11355, + "mingzhongpro": 0.05 + } + }, + { + "need": 63, + "value": { + "atk": 1823, + "def": 856, + "hp": 11640, + "mingzhongpro": 0.05 + } + }, + { + "need": 64, + "value": { + "atk": 1867, + "def": 876, + "hp": 11940, + "mingzhongpro": 0.05 + } + }, + { + "need": 65, + "value": { + "atk": 1911, + "def": 895, + "hp": 12225, + "mingzhongpro": 0.05 + } + }, + { + "need": 66, + "value": { + "atk": 1956, + "def": 915, + "hp": 12525, + "shanbipro": 0.05 + } + }, + { + "need": 67, + "value": { + "atk": 2001, + "def": 935, + "hp": 12825, + "shanbipro": 0.05 + } + }, + { + "need": 68, + "value": { + "atk": 2047, + "def": 955, + "hp": 13125, + "shanbipro": 0.05 + } + }, + { + "need": 69, + "value": { + "atk": 2093, + "def": 975, + "hp": 13425, + "shanbipro": 0.05 + } + }, + { + "need": 70, + "value": { + "atk": 2139, + "def": 995, + "hp": 13725, + "shanbipro": 0.05 + } + }, + { + "need": 71, + "value": { + "atk": 2187, + "def": 1016, + "hp": 14040, + "fanshangpro": 0.05 + } + }, + { + "need": 72, + "value": { + "atk": 2234, + "def": 1036, + "hp": 14340, + "fanshangpro": 0.05 + } + }, + { + "need": 73, + "value": { + "atk": 2282, + "def": 1057, + "hp": 14655, + "fanshangpro": 0.05 + } + }, + { + "need": 74, + "value": { + "atk": 2330, + "def": 1078, + "hp": 14970, + "fanshangpro": 0.05 + } + }, + { + "need": 75, + "value": { + "atk": 2379, + "def": 1100, + "hp": 15300, + "fanshangpro": 0.05 + } + }, + { + "need": 76, + "value": { + "atk": 2428, + "def": 1121, + "hp": 15615, + "mingzhongpro": 0.06 + } + }, + { + "need": 77, + "value": { + "atk": 2478, + "def": 1143, + "hp": 15945, + "mingzhongpro": 0.06 + } + }, + { + "need": 78, + "value": { + "atk": 2528, + "def": 1165, + "hp": 16275, + "mingzhongpro": 0.06 + } + }, + { + "need": 79, + "value": { + "atk": 2578, + "def": 1186, + "hp": 16590, + "mingzhongpro": 0.06 + } + }, + { + "need": 80, + "value": { + "atk": 2629, + "def": 1209, + "hp": 16935, + "mingzhongpro": 0.06 + } + }, + { + "need": 81, + "value": { + "atk": 2681, + "def": 1231, + "hp": 17265, + "shanbipro": 0.06 + } + }, + { + "need": 82, + "value": { + "atk": 2732, + "def": 1253, + "hp": 17595, + "shanbipro": 0.06 + } + }, + { + "need": 83, + "value": { + "atk": 2785, + "def": 1276, + "hp": 17940, + "shanbipro": 0.06 + } + }, + { + "need": 84, + "value": { + "atk": 2837, + "def": 1299, + "hp": 18285, + "shanbipro": 0.06 + } + }, + { + "need": 85, + "value": { + "atk": 2890, + "def": 1321, + "hp": 18615, + "shanbipro": 0.06 + } + }, + { + "need": 86, + "value": { + "atk": 2944, + "def": 1345, + "hp": 18975, + "fanshangpro": 0.06 + } + }, + { + "need": 87, + "value": { + "atk": 2998, + "def": 1368, + "hp": 19320, + "fanshangpro": 0.06 + } + }, + { + "need": 88, + "value": { + "atk": 3052, + "def": 1391, + "hp": 19665, + "fanshangpro": 0.06 + } + }, + { + "need": 89, + "value": { + "atk": 3107, + "def": 1415, + "hp": 20025, + "fanshangpro": 0.06 + } + }, + { + "need": 90, + "value": { + "atk": 3162, + "def": 1439, + "hp": 20385, + "fanshangpro": 0.06 + } + }, + { + "need": 91, + "value": { + "atk": 3217, + "def": 1462, + "hp": 20730, + "mingzhongpro": 0.07 + } + }, + { + "need": 92, + "value": { + "atk": 3273, + "def": 1486, + "hp": 21090, + "mingzhongpro": 0.07 + } + }, + { + "need": 93, + "value": { + "atk": 3330, + "def": 1511, + "hp": 21465, + "mingzhongpro": 0.07 + } + }, + { + "need": 94, + "value": { + "atk": 3386, + "def": 1535, + "hp": 21825, + "mingzhongpro": 0.07 + } + }, + { + "need": 95, + "value": { + "atk": 3444, + "def": 1560, + "hp": 22200, + "mingzhongpro": 0.07 + } + }, + { + "need": 96, + "value": { + "atk": 3501, + "def": 1584, + "hp": 22560, + "shanbipro": 0.07 + } + }, + { + "need": 97, + "value": { + "atk": 3559, + "def": 1609, + "hp": 22935, + "shanbipro": 0.07 + } + }, + { + "need": 98, + "value": { + "atk": 3618, + "def": 1634, + "hp": 23310, + "shanbipro": 0.07 + } + }, + { + "need": 99, + "value": { + "atk": 3677, + "def": 1659, + "hp": 23685, + "shanbipro": 0.07 + } + }, + { + "need": 100, + "value": { + "atk": 3736, + "def": 1684, + "hp": 24060, + "shanbipro": 0.07 + } + }, + { + "need": 101, + "value": { + "atk": 3795, + "def": 1710, + "hp": 24450, + "fanshangpro": 0.07 + } + }, + { + "need": 102, + "value": { + "atk": 3855, + "def": 1735, + "hp": 24825, + "fanshangpro": 0.07 + } + }, + { + "need": 103, + "value": { + "atk": 3916, + "def": 1761, + "hp": 25215, + "fanshangpro": 0.07 + } + }, + { + "need": 104, + "value": { + "atk": 3977, + "def": 1787, + "hp": 25605, + "fanshangpro": 0.07 + } + }, + { + "need": 105, + "value": { + "atk": 4038, + "def": 1813, + "hp": 25995, + "fanshangpro": 0.07 + } + }, + { + "need": 106, + "value": { + "atk": 4100, + "def": 1839, + "hp": 26385, + "mingzhongpro": 0.08 + } + }, + { + "need": 107, + "value": { + "atk": 4162, + "def": 1866, + "hp": 26790, + "mingzhongpro": 0.08 + } + }, + { + "need": 108, + "value": { + "atk": 4224, + "def": 1892, + "hp": 27180, + "mingzhongpro": 0.08 + } + }, + { + "need": 109, + "value": { + "atk": 4287, + "def": 1919, + "hp": 27585, + "mingzhongpro": 0.08 + } + }, + { + "need": 110, + "value": { + "atk": 4350, + "def": 1945, + "hp": 27975, + "mingzhongpro": 0.08 + } + } + ] +} \ No newline at end of file diff --git a/src/json/herogrow.json b/src/json/herogrow.json new file mode 100644 index 0000000..720f6c6 --- /dev/null +++ b/src/json/herogrow.json @@ -0,0 +1,13338 @@ +{ + "1001": { + "0": { + "id": 1001, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 1001, + "jieji": 1, + "jj_attr": { + "atk": 80 + }, + "jj_allattr": {}, + "buff": { + "atk": 12, + "maxdps": 30, + "hp": 65, + "speed": 1 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_400" + }, + "2": { + "id": 1001, + "jieji": 2, + "jj_attr": { + "atk": 80, + "maxdps": 80, + "def": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 42, + "maxdps": 133, + "hp": 245, + "speed": 3 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_401" + }, + "3": { + "id": 1001, + "jieji": 3, + "jj_attr": { + "atk": 80, + "maxdps": 80, + "def": 20, + "speed": 5 + }, + "jj_allattr": {}, + "buff": { + "atk": 97, + "maxdps": 294, + "hp": 565, + "speed": 6 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_402" + }, + "4": { + "id": 1001, + "jieji": 4, + "jj_attr": { + "atk": 80, + "maxdps": 200, + "def": 55, + "speed": 5 + }, + "jj_allattr": {}, + "buff": { + "atk": 177, + "maxdps": 515, + "hp": 1015, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "1001", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_403" + }, + "5": { + "id": 1001, + "jieji": 5, + "jj_attr": { + "atk": 80, + "maxdps": 365, + "def": 95, + "speed": 5 + }, + "jj_allattr": {}, + "buff": { + "atk": 287, + "maxdps": 795, + "hp": 1565, + "speed": 15 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "1001", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_404" + }, + "6": { + "id": 1001, + "jieji": 6, + "jj_attr": { + "atk": 80, + "maxdps": 550, + "def": 145, + "speed": 5 + }, + "jj_allattr": {}, + "buff": { + "atk": 427, + "maxdps": 1125, + "hp": 2265, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "1001", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_405" + }, + "7": { + "id": 1001, + "jieji": 7, + "jj_attr": { + "atk": 80, + "maxdps": 745, + "def": 195, + "speed": 5 + }, + "jj_allattr": {}, + "buff": { + "atk": 597, + "maxdps": 1504, + "hp": 3115, + "speed": 28 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "1001", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_406" + } + }, + "1002": { + "0": { + "id": 1002, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "def": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 1002, + "jieji": 1, + "jj_attr": { + "atk": 80 + }, + "jj_allattr": {}, + "buff": { + "atk": 12, + "def": 10, + "hp": 130, + "speed": 1 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_407" + }, + "2": { + "id": 1002, + "jieji": 2, + "jj_attr": { + "atk": 80, + "maxdps": 40, + "hp": 440 + }, + "jj_allattr": {}, + "buff": { + "atk": 53, + "def": 45, + "hp": 430, + "speed": 3 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_408" + }, + "3": { + "id": 1002, + "jieji": 3, + "jj_attr": { + "atk": 80, + "maxdps": 40, + "hp": 440, + "speed": 5 + }, + "jj_allattr": {}, + "buff": { + "atk": 120, + "def": 95, + "hp": 1030, + "speed": 6 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_409" + }, + "4": { + "id": 1002, + "jieji": 4, + "jj_attr": { + "atk": 80, + "maxdps": 110, + "hp": 1150, + "speed": 5 + }, + "jj_allattr": {}, + "buff": { + "atk": 207, + "def": 165, + "hp": 1930, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "1002", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_410" + }, + "5": { + "id": 1002, + "jieji": 5, + "jj_attr": { + "atk": 80, + "maxdps": 195, + "hp": 1200, + "speed": 5 + }, + "jj_allattr": {}, + "buff": { + "atk": 327, + "def": 240, + "hp": 3180, + "speed": 15 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "1002", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_411" + }, + "6": { + "id": 1002, + "jieji": 6, + "jj_attr": { + "atk": 80, + "maxdps": 300, + "hp": 2160, + "speed": 5 + }, + "jj_allattr": {}, + "buff": { + "atk": 466, + "def": 330, + "hp": 4780, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "1002", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_412" + }, + "7": { + "id": 1002, + "jieji": 7, + "jj_attr": { + "atk": 80, + "maxdps": 415, + "hp": 3170, + "speed": 5 + }, + "jj_allattr": {}, + "buff": { + "atk": 637, + "def": 440, + "hp": 6580, + "speed": 28 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "1002", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_413" + } + }, + "2001": { + "0": { + "id": 2001, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "def": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 2001, + "jieji": 1, + "jj_attr": { + "atk": 100 + }, + "jj_allattr": {}, + "buff": { + "atk": 10, + "def": 8, + "hp": 150, + "speed": 2 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_386" + }, + "2": { + "id": 2001, + "jieji": 2, + "jj_attr": { + "atk": 100, + "maxdps": 45, + "hp": 460 + }, + "jj_allattr": {}, + "buff": { + "atk": 47, + "def": 38, + "hp": 550, + "speed": 6 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_387" + }, + "3": { + "id": 2001, + "jieji": 3, + "jj_attr": { + "atk": 100, + "maxdps": 45, + "hp": 460, + "speed": 10 + }, + "jj_allattr": {}, + "buff": { + "atk": 113, + "def": 84, + "hp": 1250, + "speed": 11 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_388" + }, + "4": { + "id": 2001, + "jieji": 4, + "jj_attr": { + "atk": 100, + "maxdps": 120, + "hp": 1200, + "speed": 10 + }, + "jj_allattr": {}, + "buff": { + "atk": 198, + "def": 153, + "hp": 2250, + "speed": 18 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "2001", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_389" + }, + "5": { + "id": 2001, + "jieji": 5, + "jj_attr": { + "atk": 100, + "maxdps": 210, + "hp": 2120, + "speed": 10 + }, + "jj_allattr": {}, + "buff": { + "atk": 319, + "def": 228, + "hp": 3600, + "speed": 26 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "2001", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_390" + }, + "6": { + "id": 2001, + "jieji": 6, + "jj_attr": { + "atk": 100, + "maxdps": 320, + "hp": 3170, + "speed": 10 + }, + "jj_allattr": {}, + "buff": { + "atk": 461, + "def": 320, + "hp": 5300, + "speed": 36 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "2001", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_391" + }, + "7": { + "id": 2001, + "jieji": 7, + "jj_attr": { + "atk": 100, + "maxdps": 440, + "hp": 4280, + "speed": 10 + }, + "jj_allattr": {}, + "buff": { + "atk": 635, + "def": 430, + "hp": 7250, + "speed": 47 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "2001", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_392" + } + }, + "2002": { + "0": { + "id": 2002, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 2002, + "jieji": 1, + "jj_attr": { + "atk": 100 + }, + "jj_allattr": {}, + "buff": { + "atk": 17, + "maxdps": 12, + "hp": 70, + "speed": 2 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_393" + }, + "2": { + "id": 2002, + "jieji": 2, + "jj_attr": { + "atk": 160, + "hp": 250 + }, + "jj_allattr": {}, + "buff": { + "atk": 82, + "maxdps": 54, + "hp": 270, + "speed": 6 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_394" + }, + "3": { + "id": 2002, + "jieji": 3, + "jj_attr": { + "atk": 160, + "hp": 250, + "speed": 10 + }, + "jj_allattr": {}, + "buff": { + "atk": 192, + "maxdps": 127, + "hp": 620, + "speed": 11 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_395" + }, + "4": { + "id": 2002, + "jieji": 4, + "jj_attr": { + "atk": 260, + "hp": 630, + "speed": 10 + }, + "jj_allattr": {}, + "buff": { + "atk": 352, + "maxdps": 224, + "hp": 1120, + "speed": 18 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "2002", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_396" + }, + "5": { + "id": 2002, + "jieji": 5, + "jj_attr": { + "atk": 385, + "hp": 1100, + "speed": 10 + }, + "jj_allattr": {}, + "buff": { + "atk": 557, + "maxdps": 352, + "hp": 1770, + "speed": 26 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "2002", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_397" + }, + "6": { + "id": 2002, + "jieji": 6, + "jj_attr": { + "atk": 530, + "hp": 1650, + "speed": 10 + }, + "jj_allattr": {}, + "buff": { + "atk": 812, + "maxdps": 504, + "hp": 2570, + "speed": 36 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "2002", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_398" + }, + "7": { + "id": 2002, + "jieji": 7, + "jj_attr": { + "atk": 680, + "hp": 2250, + "speed": 10 + }, + "jj_allattr": {}, + "buff": { + "atk": 1102, + "maxdps": 701, + "hp": 3520, + "speed": 47 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "2002", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_399" + } + }, + "3001": { + "0": { + "id": 3001, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 3001, + "jieji": 1, + "jj_attr": { + "def": 150 + }, + "jj_allattr": {}, + "buff": { + "atk": 10, + "maxdps": 32, + "hp": 100, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_221" + }, + "2": { + "id": 3001, + "jieji": 2, + "jj_attr": { + "def": 150, + "xixuepro": 0.06 + }, + "jj_allattr": {}, + "buff": { + "atk": 47, + "maxdps": 142, + "hp": 425, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_222" + }, + "3": { + "id": 3001, + "jieji": 3, + "jj_attr": { + "def": 150, + "xixuepro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 112, + "maxdps": 327, + "hp": 985, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_223" + }, + "4": { + "id": 3001, + "jieji": 4, + "jj_attr": { + "def": 150, + "xixuepro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 202, + "maxdps": 596, + "hp": 1755, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "3001", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_224" + }, + "5": { + "id": 3001, + "jieji": 5, + "jj_attr": { + "def": 350, + "xixuepro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 322, + "maxdps": 938, + "hp": 2755, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "3001", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_225" + }, + "6": { + "id": 3001, + "jieji": 6, + "jj_attr": { + "def": 350, + "xixuepro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 462, + "maxdps": 1367, + "hp": 3985, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "3001", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_226" + }, + "7": { + "id": 3001, + "jieji": 7, + "jj_attr": { + "def": 350, + "xixuepro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 637, + "maxdps": 1864, + "hp": 5435, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "3001", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_227" + }, + "8": { + "id": 3001, + "jieji": 8, + "jj_attr": { + "def": 350, + "xixuepro": 0.06, + "speed": 20, + "hp": 33800 + }, + "jj_allattr": {}, + "buff": { + "atk": 842, + "maxdps": 2436, + "hp": 7105, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "3001", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_228" + }, + "9": { + "id": 3001, + "jieji": 9, + "jj_attr": { + "def": 350, + "xixuepro": 0.06, + "speed": 20, + "hp": 33800 + }, + "jj_allattr": {}, + "buff": { + "atk": 1082, + "maxdps": 3074, + "hp": 9005, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "3001", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_229" + }, + "10": { + "id": 3001, + "jieji": 10, + "jj_attr": { + "def": 3050, + "xixuepro": 0.06, + "speed": 290, + "hp": 33800 + }, + "jj_allattr": {}, + "buff": { + "atk": 1352, + "maxdps": 3786, + "hp": 11130, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "3001", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_230" + }, + "11": { + "id": 3001, + "jieji": 11, + "jj_attr": { + "def": 3050, + "xixuepro": 0.06, + "speed": 290, + "hp": 33800 + }, + "jj_allattr": { + "def": 1890 + }, + "buff": { + "atk": 1622, + "maxdps": 4498, + "hp": 13255, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "3001", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_231" + } + }, + "3002": { + "0": { + "id": 3002, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 3002, + "jieji": 1, + "jj_attr": { + "atk": 168 + }, + "jj_allattr": {}, + "buff": { + "atk": 25, + "maxdps": 15, + "hp": 105, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_232" + }, + "2": { + "id": 3002, + "jieji": 2, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.15 + }, + "jj_allattr": {}, + "buff": { + "atk": 108, + "maxdps": 69, + "hp": 435, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_233" + }, + "3": { + "id": 3002, + "jieji": 3, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.15, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 250, + "maxdps": 166, + "hp": 985, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_234" + }, + "4": { + "id": 3002, + "jieji": 4, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.15, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 451, + "maxdps": 300, + "hp": 1765, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "3002", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_235" + }, + "5": { + "id": 3002, + "jieji": 5, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.15, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 711, + "maxdps": 477, + "hp": 2765, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "3002", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_236" + }, + "6": { + "id": 3002, + "jieji": 6, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 1028, + "maxdps": 693, + "hp": 4000, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "3002", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_237" + }, + "7": { + "id": 3002, + "jieji": 7, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "hp": 2300, + "xixuepro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1408, + "maxdps": 946, + "hp": 5455, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "3002", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_238" + }, + "8": { + "id": 3002, + "jieji": 8, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "hp": 2300, + "xixuepro": 0.3, + "def": 2700 + }, + "jj_allattr": {}, + "buff": { + "atk": 1843, + "maxdps": 1242, + "hp": 7140, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "3002", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_239" + }, + "9": { + "id": 3002, + "jieji": 9, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "hp": 2300, + "xixuepro": 0.3, + "def": 2700 + }, + "jj_allattr": {}, + "buff": { + "atk": 2338, + "maxdps": 1578, + "hp": 9055, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "3002", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_240" + }, + "10": { + "id": 3002, + "jieji": 10, + "jj_attr": { + "atk": 2293, + "baoshangpro": 0.15, + "speed": 20, + "hp": 2300, + "xixuepro": 0.3, + "def": 2700, + "pvpdpspro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 2893, + "maxdps": 1950, + "hp": 11200, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "3002", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_241" + }, + "11": { + "id": 3002, + "jieji": 11, + "jj_attr": { + "atk": 2293, + "baoshangpro": 0.15, + "speed": 20, + "hp": 2300, + "xixuepro": 0.3, + "def": 2700, + "pvpdpspro": 0.3 + }, + "jj_allattr": { + "atk": 1176 + }, + "buff": { + "atk": 3448, + "maxdps": 2322, + "hp": 13345, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "3002", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_242" + } + }, + "3003": { + "0": { + "id": 3003, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "def": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 3003, + "jieji": 1, + "jj_attr": { + "def": 150 + }, + "jj_allattr": {}, + "buff": { + "atk": 13, + "def": 21, + "hp": 105, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_243" + }, + "2": { + "id": 3003, + "jieji": 2, + "jj_attr": { + "def": 150, + "undpspro": 0.06 + }, + "jj_allattr": {}, + "buff": { + "atk": 56, + "def": 85, + "hp": 440, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_244" + }, + "3": { + "id": 3003, + "jieji": 3, + "jj_attr": { + "def": 150, + "undpspro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 129, + "def": 194, + "hp": 1010, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_245" + }, + "4": { + "id": 3003, + "jieji": 4, + "jj_attr": { + "def": 150, + "undpspro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 233, + "def": 347, + "hp": 1795, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "3003", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_246" + }, + "5": { + "id": 3003, + "jieji": 5, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 367, + "def": 545, + "hp": 2815, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "3003", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_247" + }, + "6": { + "id": 3003, + "jieji": 6, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 531, + "def": 786, + "hp": 4065, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "3003", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_248" + }, + "7": { + "id": 3003, + "jieji": 7, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 20, + "hp": 3000, + "longdpsdrop": 0.4 + }, + "jj_allattr": {}, + "buff": { + "atk": 726, + "def": 1072, + "hp": 5545, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "3003", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_249" + }, + "8": { + "id": 3003, + "jieji": 8, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 20, + "hp": 33800, + "longdpsdrop": 0.4 + }, + "jj_allattr": {}, + "buff": { + "atk": 950, + "def": 1402, + "hp": 7255, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "3003", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_250" + }, + "9": { + "id": 3003, + "jieji": 9, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 20, + "hp": 33800, + "longdpsdrop": 0.4, + "neardpsdrop": 0.5 + }, + "jj_allattr": {}, + "buff": { + "atk": 1206, + "def": 1776, + "hp": 9195, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "3003", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_251" + }, + "10": { + "id": 3003, + "jieji": 10, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 20, + "hp": 33800, + "longdpsdrop": 0.4, + "neardpsdrop": 0.5, + "atk": 1680, + "pvpdpsdrop": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1492, + "def": 2194, + "hp": 11355, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "3003", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_252" + }, + "11": { + "id": 3003, + "jieji": 11, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 20, + "hp": 33800, + "longdpsdrop": 0.4, + "neardpsdrop": 0.5, + "atk": 1680, + "pvpdpsdrop": 0.3 + }, + "jj_allattr": { + "def": 1890 + }, + "buff": { + "atk": 1778, + "def": 2612, + "hp": 13515, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "3003", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_253" + } + }, + "3004": { + "0": { + "id": 3004, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 3004, + "jieji": 1, + "jj_attr": { + "atk": 168 + }, + "jj_allattr": {}, + "buff": { + "atk": 10, + "maxdps": 36, + "hp": 100, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_254" + }, + "2": { + "id": 3004, + "jieji": 2, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.15 + }, + "jj_allattr": {}, + "buff": { + "atk": 51, + "maxdps": 148, + "hp": 430, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_255" + }, + "3": { + "id": 3004, + "jieji": 3, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.15, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 122, + "maxdps": 336, + "hp": 990, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_256" + }, + "4": { + "id": 3004, + "jieji": 4, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.15, + "speed": 20, + "fanshang": 1 + }, + "jj_allattr": {}, + "buff": { + "atk": 220, + "maxdps": 609, + "hp": 1760, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "3004", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_257" + }, + "5": { + "id": 3004, + "jieji": 5, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.15, + "speed": 20, + "fanshang": 1, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 350, + "maxdps": 960, + "hp": 2760, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "3004", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_258" + }, + "6": { + "id": 3004, + "jieji": 6, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "fanshang": 1, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 505, + "maxdps": 1395, + "hp": 3990, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "3004", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_259" + }, + "7": { + "id": 3004, + "jieji": 7, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "fanshang": 1, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 685, + "maxdps": 1916, + "hp": 5440, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "3004", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_260" + }, + "8": { + "id": 3004, + "jieji": 8, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "fanshang": 1, + "hp": 33100 + }, + "jj_allattr": {}, + "buff": { + "atk": 900, + "maxdps": 2512, + "hp": 7110, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "3004", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_261" + }, + "9": { + "id": 3004, + "jieji": 9, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "fanshang": 2, + "hp": 33100 + }, + "jj_allattr": {}, + "buff": { + "atk": 1140, + "maxdps": 3192, + "hp": 9010, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "3004", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_262" + }, + "10": { + "id": 3004, + "jieji": 10, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "hp": 33100, + "fanshang": 2, + "def": 2700, + "pvpdpsdrop": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1415, + "maxdps": 3943, + "hp": 11135, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "3004", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_263" + }, + "11": { + "id": 3004, + "jieji": 11, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "hp": 33100, + "fanshang": 2, + "def": 2700, + "pvpdpsdrop": 0.3 + }, + "jj_allattr": { + "def": 1890 + }, + "buff": { + "atk": 1690, + "maxdps": 4694, + "hp": 13260, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "3004", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_264" + } + }, + "3005": { + "0": { + "id": 3005, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "def": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 3005, + "jieji": 1, + "jj_attr": { + "atk": 168 + }, + "jj_allattr": {}, + "buff": { + "atk": 13, + "def": 21, + "hp": 105, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_265" + }, + "2": { + "id": 3005, + "jieji": 2, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.1 + }, + "jj_allattr": {}, + "buff": { + "atk": 56, + "def": 85, + "hp": 440, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_266" + }, + "3": { + "id": 3005, + "jieji": 3, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.1, + "speed": 15 + }, + "jj_allattr": {}, + "buff": { + "atk": 129, + "def": 194, + "hp": 1010, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_267" + }, + "4": { + "id": 3005, + "jieji": 4, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.1, + "speed": 15 + }, + "jj_allattr": {}, + "buff": { + "atk": 233, + "def": 347, + "hp": 1795, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "3005", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_268" + }, + "5": { + "id": 3005, + "jieji": 5, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.1, + "speed": 15, + "hp": 2000 + }, + "jj_allattr": {}, + "buff": { + "atk": 367, + "def": 545, + "hp": 2815, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "3005", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_269" + }, + "6": { + "id": 3005, + "jieji": 6, + "jj_attr": { + "atk": 568, + "baoshangpro": 0.1, + "speed": 15, + "hp": 2000 + }, + "jj_allattr": {}, + "buff": { + "atk": 531, + "def": 786, + "hp": 4065, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "3005", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_270" + }, + "7": { + "id": 3005, + "jieji": 7, + "jj_attr": { + "atk": 568, + "baoshangpro": 0.1, + "speed": 15, + "hp": 2000, + "magdpsdrop": 4 + }, + "jj_allattr": {}, + "buff": { + "atk": 726, + "def": 1072, + "hp": 5545, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "3005", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_271" + }, + "8": { + "id": 3005, + "jieji": 8, + "jj_attr": { + "atk": 568, + "baoshangpro": 0.1, + "speed": 15, + "hp": 32800, + "magdpsdrop": 4 + }, + "jj_allattr": {}, + "buff": { + "atk": 950, + "def": 1402, + "hp": 7255, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "3005", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_272" + }, + "9": { + "id": 3005, + "jieji": 9, + "jj_attr": { + "atk": 568, + "baoshangpro": 0.1, + "speed": 15, + "hp": 32800, + "magdpsdrop": 4 + }, + "jj_allattr": {}, + "buff": { + "atk": 1206, + "def": 1776, + "hp": 9195, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "3005", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_273" + }, + "10": { + "id": 3005, + "jieji": 10, + "jj_attr": { + "atk": 568, + "baoshangpro": 0.1, + "speed": 15, + "hp": 32800, + "magdpsdrop": 4, + "def": 2700, + "pvpdpsdrop": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1492, + "def": 2194, + "hp": 11355, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "3005", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_274" + }, + "11": { + "id": 3005, + "jieji": 11, + "jj_attr": { + "atk": 568, + "baoshangpro": 0.1, + "speed": 15, + "hp": 32800, + "magdpsdrop": 4, + "def": 2700, + "pvpdpsdrop": 0.3 + }, + "jj_allattr": { + "hp": 21560 + }, + "buff": { + "atk": 1778, + "def": 2612, + "hp": 13515, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "3005", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_275" + } + }, + "3006": { + "0": { + "id": 3006, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "def": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 3006, + "jieji": 1, + "jj_attr": { + "atk": 168 + }, + "jj_allattr": {}, + "buff": { + "atk": 13, + "def": 21, + "hp": 105, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_276" + }, + "2": { + "id": 3006, + "jieji": 2, + "jj_attr": { + "atk": 168, + "fanshangpro": 0.06 + }, + "jj_allattr": {}, + "buff": { + "atk": 56, + "def": 85, + "hp": 440, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_277" + }, + "3": { + "id": 3006, + "jieji": 3, + "jj_attr": { + "atk": 168, + "fanshangpro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 129, + "def": 194, + "hp": 1010, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_278" + }, + "4": { + "id": 3006, + "jieji": 4, + "jj_attr": { + "atk": 168, + "fanshangpro": 0.06, + "speed": 20, + "xixuepro": 0.75 + }, + "jj_allattr": {}, + "buff": { + "atk": 233, + "def": 347, + "hp": 1795, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "3006", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_279" + }, + "5": { + "id": 3006, + "jieji": 5, + "jj_attr": { + "atk": 168, + "fanshangpro": 0.06, + "speed": 20, + "xixuepro": 0.75, + "def": 220 + }, + "jj_allattr": {}, + "buff": { + "atk": 367, + "def": 545, + "hp": 2815, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "3006", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_280" + }, + "6": { + "id": 3006, + "jieji": 6, + "jj_attr": { + "atk": 613, + "fanshangpro": 0.06, + "speed": 20, + "xixuepro": 0.75, + "def": 200 + }, + "jj_allattr": {}, + "buff": { + "atk": 531, + "def": 786, + "hp": 4065, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "3006", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_281" + }, + "7": { + "id": 3006, + "jieji": 7, + "jj_attr": { + "atk": 613, + "fanshangpro": 0.06, + "speed": 20, + "xixuepro": 0.75, + "def": 200, + "neardpsdrop": 0.4 + }, + "jj_allattr": {}, + "buff": { + "atk": 726, + "def": 1072, + "hp": 5545, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "3006", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_282" + }, + "8": { + "id": 3006, + "jieji": 8, + "jj_attr": { + "atk": 2293, + "fanshangpro": 0.06, + "speed": 20, + "xixuepro": 0.75, + "def": 200, + "neardpsdrop": 0.4 + }, + "jj_allattr": {}, + "buff": { + "atk": 950, + "def": 1402, + "hp": 7255, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "3006", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_283" + }, + "9": { + "id": 3006, + "jieji": 9, + "jj_attr": { + "atk": 2293, + "fanshangpro": 0.06, + "speed": 20, + "xixuepro": 1, + "def": 200, + "neardpsdrop": 0.4 + }, + "jj_allattr": {}, + "buff": { + "atk": 1206, + "def": 1776, + "hp": 9195, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "3006", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_284" + }, + "10": { + "id": 3006, + "jieji": 10, + "jj_attr": { + "atk": 2293, + "fanshangpro": 0.06, + "speed": 20, + "xixuepro": 1, + "def": 200, + "neardpsdrop": 0.4, + "hp": 30800, + "pvpdpsdrop": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1492, + "def": 2194, + "hp": 11355, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "3006", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_285" + }, + "11": { + "id": 3006, + "jieji": 11, + "jj_attr": { + "atk": 2293, + "fanshangpro": 0.06, + "speed": 20, + "xixuepro": 1, + "def": 200, + "neardpsdrop": 0.4, + "hp": 30800, + "pvpdpsdrop": 0.3 + }, + "jj_allattr": { + "atk": 1175 + }, + "buff": { + "atk": 1778, + "def": 2612, + "hp": 13515, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "3006", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_286" + } + }, + "3007": { + "0": { + "id": 3007, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 3007, + "jieji": 1, + "jj_attr": { + "atk": 168 + }, + "jj_allattr": {}, + "buff": { + "atk": 10, + "maxdps": 36, + "hp": 100, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_287" + }, + "2": { + "id": 3007, + "jieji": 2, + "jj_attr": { + "atk": 168, + "xixuepro": 0.06 + }, + "jj_allattr": {}, + "buff": { + "atk": 51, + "maxdps": 148, + "hp": 430, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_288" + }, + "3": { + "id": 3007, + "jieji": 3, + "jj_attr": { + "atk": 168, + "xixuepro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 122, + "maxdps": 336, + "hp": 990, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_289" + }, + "4": { + "id": 3007, + "jieji": 4, + "jj_attr": { + "atk": 168, + "xixuepro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 220, + "maxdps": 609, + "hp": 1760, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "3007", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_290" + }, + "5": { + "id": 3007, + "jieji": 5, + "jj_attr": { + "atk": 168, + "xixuepro": 0.06, + "speed": 20, + "def": 200 + }, + "jj_allattr": {}, + "buff": { + "atk": 350, + "maxdps": 960, + "hp": 2760, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "3007", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_291" + }, + "6": { + "id": 3007, + "jieji": 6, + "jj_attr": { + "atk": 168, + "xixuepro": 0.06, + "speed": 20, + "def": 200, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 505, + "maxdps": 1395, + "hp": 3990, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "3007", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_292" + }, + "7": { + "id": 3007, + "jieji": 7, + "jj_attr": { + "atk": 168, + "xixuepro": 0.06, + "speed": 20, + "def": 200, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 685, + "maxdps": 1916, + "hp": 5440, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "3007", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_293" + }, + "8": { + "id": 3007, + "jieji": 8, + "jj_attr": { + "atk": 168, + "xixuepro": 0.06, + "speed": 20, + "def": 2900, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 900, + "maxdps": 2512, + "hp": 7110, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "3007", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_294" + }, + "9": { + "id": 3007, + "jieji": 9, + "jj_attr": { + "atk": 168, + "xixuepro": 0.06, + "speed": 20, + "def": 2900, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 1140, + "maxdps": 3192, + "hp": 9010, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "3007", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_295" + }, + "10": { + "id": 3007, + "jieji": 10, + "jj_attr": { + "atk": 168, + "xixuepro": 0.06, + "speed": 20, + "def": 2900, + "hp": 33800, + "pvpdpspro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1415, + "maxdps": 3943, + "hp": 11135, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "3007", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_296" + }, + "11": { + "id": 3007, + "jieji": 11, + "jj_attr": { + "atk": 168, + "xixuepro": 0.06, + "speed": 20, + "def": 2900, + "hp": 33800, + "pvpdpspro": 0.3 + }, + "jj_allattr": { + "def": 1890 + }, + "buff": { + "atk": 1690, + "maxdps": 4694, + "hp": 13260, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "3007", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_297" + } + }, + "3008": { + "0": { + "id": 3008, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "def": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 3008, + "jieji": 1, + "jj_attr": { + "atk": 150 + }, + "jj_allattr": {}, + "buff": { + "atk": 13, + "def": 21, + "hp": 105, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_298" + }, + "2": { + "id": 3008, + "jieji": 2, + "jj_attr": { + "atk": 150, + "baoshangpro": 0.1 + }, + "jj_allattr": {}, + "buff": { + "atk": 56, + "def": 85, + "hp": 440, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_299" + }, + "3": { + "id": 3008, + "jieji": 3, + "jj_attr": { + "atk": 150, + "baoshangpro": 0.1, + "speed": 15 + }, + "jj_allattr": {}, + "buff": { + "atk": 129, + "def": 194, + "hp": 1010, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_300" + }, + "4": { + "id": 3008, + "jieji": 4, + "jj_attr": { + "atk": 150, + "baoshangpro": 0.1, + "speed": 15 + }, + "jj_allattr": {}, + "buff": { + "atk": 233, + "def": 347, + "hp": 1795, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "3008", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_301" + }, + "5": { + "id": 3008, + "jieji": 5, + "jj_attr": { + "atk": 150, + "baoshangpro": 0.1, + "speed": 15, + "hp": 2000 + }, + "jj_allattr": {}, + "buff": { + "atk": 367, + "def": 545, + "hp": 2815, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "3008", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_302" + }, + "6": { + "id": 3008, + "jieji": 6, + "jj_attr": { + "atk": 550, + "baoshangpro": 0.1, + "speed": 15, + "hp": 2000 + }, + "jj_allattr": {}, + "buff": { + "atk": 531, + "def": 786, + "hp": 4065, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "3008", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_303" + }, + "7": { + "id": 3008, + "jieji": 7, + "jj_attr": { + "atk": 550, + "baoshangpro": 0.1, + "speed": 15, + "hp": 2000 + }, + "jj_allattr": {}, + "buff": { + "atk": 726, + "def": 1072, + "hp": 5545, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "3008", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_304" + }, + "8": { + "id": 3008, + "jieji": 8, + "jj_attr": { + "atk": 2230, + "baoshangpro": 0.1, + "speed": 15, + "hp": 2000 + }, + "jj_allattr": {}, + "buff": { + "atk": 950, + "def": 1402, + "hp": 7255, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "3008", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_305" + }, + "9": { + "id": 3008, + "jieji": 9, + "jj_attr": { + "atk": 2230, + "baoshangpro": 0.1, + "speed": 15, + "hp": 2000 + }, + "jj_allattr": {}, + "buff": { + "atk": 1206, + "def": 1776, + "hp": 9195, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "3008", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_306" + }, + "10": { + "id": 3008, + "jieji": 10, + "jj_attr": { + "atk": 2230, + "baoshangpro": 0.1, + "speed": 15, + "hp": 32800, + "pvpdpspro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1492, + "def": 2194, + "hp": 11355, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "3008", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_307" + }, + "11": { + "id": 3008, + "jieji": 11, + "jj_attr": { + "atk": 2230, + "baoshangpro": 0.1, + "speed": 15, + "hp": 32800, + "pvpdpspro": 0.3 + }, + "jj_allattr": { + "atk": 1176 + }, + "buff": { + "atk": 1778, + "def": 2612, + "hp": 13515, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "3008", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_308" + } + }, + "3009": { + "0": { + "id": 3009, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "def": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 3009, + "jieji": 1, + "jj_attr": { + "def": 150 + }, + "jj_allattr": {}, + "buff": { + "atk": 13, + "def": 9, + "hp": 205, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_309" + }, + "2": { + "id": 3009, + "jieji": 2, + "jj_attr": { + "def": 150, + "undpspro": 0.06 + }, + "jj_allattr": {}, + "buff": { + "atk": 57, + "def": 39, + "hp": 905, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_310" + }, + "3": { + "id": 3009, + "jieji": 3, + "jj_attr": { + "def": 150, + "undpspro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 131, + "def": 90, + "hp": 2085, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_311" + }, + "4": { + "id": 3009, + "jieji": 4, + "jj_attr": { + "def": 150, + "undpspro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 235, + "def": 162, + "hp": 3765, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "3009", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_312" + }, + "5": { + "id": 3009, + "jieji": 5, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 220 + }, + "jj_allattr": {}, + "buff": { + "atk": 369, + "def": 255, + "hp": 5925, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "3009", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_313" + }, + "6": { + "id": 3009, + "jieji": 6, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 220, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 535, + "def": 369, + "hp": 8575, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "3009", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_314" + }, + "7": { + "id": 3009, + "jieji": 7, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 220, + "hp": 3000, + "defpro": 0.5 + }, + "jj_allattr": {}, + "buff": { + "atk": 735, + "def": 504, + "hp": 11675, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "3009", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_315" + }, + "8": { + "id": 3009, + "jieji": 8, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 220, + "hp": 3000, + "atk": 1680, + "defpro": 0.5 + }, + "jj_allattr": {}, + "buff": { + "atk": 966, + "def": 660, + "hp": 15275, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "3009", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_316" + }, + "9": { + "id": 3009, + "jieji": 9, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 220, + "hp": 3000, + "atk": 1680, + "defpro": 0.5 + }, + "jj_allattr": {}, + "buff": { + "atk": 1224, + "def": 837, + "hp": 19375, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "3009", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_317" + }, + "10": { + "id": 3009, + "jieji": 10, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 220, + "hp": 33800, + "atk": 1680, + "pvpdpsdrop": 0.3, + "defpro": 0.5 + }, + "jj_allattr": {}, + "buff": { + "atk": 1510, + "def": 1037, + "hp": 23975, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "3009", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_318" + }, + "11": { + "id": 3009, + "jieji": 11, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 220, + "hp": 33800, + "atk": 1680, + "pvpdpsdrop": 0.3, + "defpro": 0.5 + }, + "jj_allattr": { + "atk": 1176 + }, + "buff": { + "atk": 1796, + "def": 1237, + "hp": 28575, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "3009", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_319" + } + }, + "3010": { + "0": { + "id": 3010, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 3010, + "jieji": 1, + "jj_attr": { + "atk": 150 + }, + "jj_allattr": {}, + "buff": { + "atk": 24, + "maxdps": 13, + "hp": 100, + "speed": 3 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_320" + }, + "2": { + "id": 3010, + "jieji": 2, + "jj_attr": { + "atk": 150, + "fanshangpro": 0.05 + }, + "jj_allattr": {}, + "buff": { + "atk": 104, + "maxdps": 63, + "hp": 430, + "speed": 8 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_321" + }, + "3": { + "id": 3010, + "jieji": 3, + "jj_attr": { + "atk": 150, + "fanshangpro": 0.05, + "speed": 15 + }, + "jj_allattr": {}, + "buff": { + "atk": 244, + "maxdps": 153, + "hp": 970, + "speed": 15 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_322" + }, + "4": { + "id": 3010, + "jieji": 4, + "jj_attr": { + "atk": 150, + "fanshangpro": 0.05, + "speed": 15 + }, + "jj_allattr": {}, + "buff": { + "atk": 437, + "maxdps": 283, + "hp": 1750, + "speed": 24 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "3010", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_323" + }, + "5": { + "id": 3010, + "jieji": 5, + "jj_attr": { + "atk": 150, + "fanshangpro": 0.05, + "speed": 15, + "def": 200 + }, + "jj_allattr": {}, + "buff": { + "atk": 692, + "maxdps": 448, + "hp": 2750, + "speed": 35 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "3010", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_324" + }, + "6": { + "id": 3010, + "jieji": 6, + "jj_attr": { + "atk": 550, + "fanshangpro": 0.05, + "speed": 15, + "def": 200 + }, + "jj_allattr": {}, + "buff": { + "atk": 1000, + "maxdps": 653, + "hp": 3985, + "speed": 47 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "3010", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_325" + }, + "7": { + "id": 3010, + "jieji": 7, + "jj_attr": { + "atk": 550, + "fanshangpro": 0.05, + "speed": 15, + "def": 200 + }, + "jj_allattr": {}, + "buff": { + "atk": 1366, + "maxdps": 898, + "hp": 5445, + "speed": 61 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "3010", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_326" + }, + "8": { + "id": 3010, + "jieji": 8, + "jj_attr": { + "atk": 2230, + "fanshangpro": 0.05, + "speed": 15, + "def": 200 + }, + "jj_allattr": {}, + "buff": { + "atk": 1783, + "maxdps": 1188, + "hp": 7130, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "3010", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_327" + }, + "9": { + "id": 3010, + "jieji": 9, + "jj_attr": { + "atk": 2230, + "fanshangpro": 0.05, + "speed": 15, + "def": 200 + }, + "jj_allattr": {}, + "buff": { + "atk": 2264, + "maxdps": 1508, + "hp": 9045, + "speed": 95 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "3010", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_328" + }, + "10": { + "id": 3010, + "jieji": 10, + "jj_attr": { + "atk": 2230, + "fanshangpro": 0.05, + "speed": 15, + "def": 2900, + "pvpdpspro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 2799, + "maxdps": 1868, + "hp": 11195, + "speed": 115 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "3010", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_329" + }, + "11": { + "id": 3010, + "jieji": 11, + "jj_attr": { + "atk": 2230, + "fanshangpro": 0.05, + "speed": 15, + "def": 2900, + "pvpdpspro": 0.3 + }, + "jj_allattr": { + "atk": 1176 + }, + "buff": { + "atk": 3334, + "maxdps": 2228, + "hp": 13345, + "speed": 135 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "3010", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_330" + } + }, + "3011": { + "0": { + "id": 3011, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "def": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 3011, + "jieji": 1, + "jj_attr": { + "atk": 168 + }, + "jj_allattr": {}, + "buff": { + "atk": 13, + "def": 9, + "hp": 205, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_331" + }, + "2": { + "id": 3011, + "jieji": 2, + "jj_attr": { + "atk": 168, + "undpspro": 0.06 + }, + "jj_allattr": {}, + "buff": { + "atk": 57, + "def": 39, + "hp": 905, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_332" + }, + "3": { + "id": 3011, + "jieji": 3, + "jj_attr": { + "atk": 168, + "undpspro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 131, + "def": 90, + "hp": 2085, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_333" + }, + "4": { + "id": 3011, + "jieji": 4, + "jj_attr": { + "atk": 168, + "undpspro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 235, + "def": 162, + "hp": 3765, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "3011", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_334" + }, + "5": { + "id": 3011, + "jieji": 5, + "jj_attr": { + "atk": 168, + "undpspro": 0.06, + "speed": 20, + "def": 200 + }, + "jj_allattr": {}, + "buff": { + "atk": 369, + "def": 255, + "hp": 5925, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "3011", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_335" + }, + "6": { + "id": 3011, + "jieji": 6, + "jj_attr": { + "atk": 168, + "undpspro": 0.06, + "speed": 20, + "def": 200, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 535, + "def": 369, + "hp": 8575, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "3011", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_336" + }, + "7": { + "id": 3011, + "jieji": 7, + "jj_attr": { + "atk": 168, + "undpspro": 0.06, + "speed": 20, + "def": 200, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 735, + "def": 504, + "hp": 11675, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "3011", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_337" + }, + "8": { + "id": 3011, + "jieji": 8, + "jj_attr": { + "atk": 1848, + "undpspro": 0.06, + "speed": 20, + "def": 200, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 966, + "def": 660, + "hp": 15275, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "3011", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_338" + }, + "9": { + "id": 3011, + "jieji": 9, + "jj_attr": { + "atk": 1848, + "undpspro": 0.06, + "speed": 20, + "def": 200, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 1224, + "def": 837, + "hp": 19375, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "3011", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_339" + }, + "10": { + "id": 3011, + "jieji": 10, + "jj_attr": { + "atk": 1848, + "undpspro": 0.06, + "speed": 20, + "def": 2900, + "hp": 3000, + "pvpdpsdrop": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1510, + "def": 1037, + "hp": 23975, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "3011", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_340" + }, + "11": { + "id": 3011, + "jieji": 11, + "jj_attr": { + "atk": 1848, + "undpspro": 0.06, + "speed": 20, + "def": 2900, + "hp": 3000, + "pvpdpsdrop": 0.3 + }, + "jj_allattr": { + "def": 1890 + }, + "buff": { + "atk": 1796, + "def": 1237, + "hp": 28575, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "3011", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_341" + } + }, + "3012": { + "0": { + "id": 3012, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 3012, + "jieji": 1, + "jj_attr": { + "hp": 1500 + }, + "jj_allattr": {}, + "buff": { + "atk": 24, + "maxdps": 13, + "hp": 100, + "speed": 3 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_342" + }, + "2": { + "id": 3012, + "jieji": 2, + "jj_attr": { + "hp": 1500, + "undpspro": 0.05 + }, + "jj_allattr": {}, + "buff": { + "atk": 104, + "maxdps": 63, + "hp": 430, + "speed": 8 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_343" + }, + "3": { + "id": 3012, + "jieji": 3, + "jj_attr": { + "hp": 1500, + "undpspro": 0.05, + "speed": 15 + }, + "jj_allattr": {}, + "buff": { + "atk": 244, + "maxdps": 153, + "hp": 970, + "speed": 15 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_344" + }, + "4": { + "id": 3012, + "jieji": 4, + "jj_attr": { + "hp": 1500, + "undpspro": 0.05, + "speed": 15 + }, + "jj_allattr": {}, + "buff": { + "atk": 437, + "maxdps": 283, + "hp": 1750, + "speed": 24 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "3012", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_345" + }, + "5": { + "id": 3012, + "jieji": 5, + "jj_attr": { + "atk": 220, + "hp": 1500, + "undpspro": 0.05, + "speed": 15 + }, + "jj_allattr": {}, + "buff": { + "atk": 692, + "maxdps": 448, + "hp": 2750, + "speed": 35 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "3012", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_346" + }, + "6": { + "id": 3012, + "jieji": 6, + "jj_attr": { + "atk": 220, + "hp": 4500, + "undpspro": 0.05, + "speed": 15 + }, + "jj_allattr": {}, + "buff": { + "atk": 1000, + "maxdps": 653, + "hp": 3985, + "speed": 47 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "3012", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_347" + }, + "7": { + "id": 3012, + "jieji": 7, + "jj_attr": { + "atk": 220, + "hp": 4500, + "undpspro": 0.05, + "speed": 15, + "phydpsdrop": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1366, + "maxdps": 898, + "hp": 5445, + "speed": 61 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "3012", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_348" + }, + "8": { + "id": 3012, + "jieji": 8, + "jj_attr": { + "atk": 1900, + "hp": 4500, + "undpspro": 0.05, + "speed": 15, + "phydpsdrop": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1783, + "maxdps": 1188, + "hp": 7130, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "3012", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_349" + }, + "9": { + "id": 3012, + "jieji": 9, + "jj_attr": { + "atk": 1900, + "hp": 4500, + "undpspro": 0.05, + "speed": 15, + "phydpsdrop": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 2264, + "maxdps": 1508, + "hp": 9045, + "speed": 95 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "3012", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_350" + }, + "10": { + "id": 3012, + "jieji": 10, + "jj_attr": { + "atk": 1900, + "hp": 4500, + "undpspro": 0.05, + "speed": 15, + "phydpsdrop": 0.3, + "def": 2700, + "pvpdpspro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 2799, + "maxdps": 1868, + "hp": 11195, + "speed": 115 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "3012", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_351" + }, + "11": { + "id": 3012, + "jieji": 11, + "jj_attr": { + "atk": 1900, + "hp": 4500, + "undpspro": 0.05, + "speed": 15, + "phydpsdrop": 0.3, + "def": 2700, + "pvpdpspro": 0.3 + }, + "jj_allattr": { + "def": 1980 + }, + "buff": { + "atk": 3334, + "maxdps": 2228, + "hp": 13345, + "speed": 135 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "3012", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_352" + } + }, + "3013": { + "0": { + "id": 3013, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "def": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 3013, + "jieji": 1, + "jj_attr": { + "def": 150 + }, + "jj_allattr": {}, + "buff": { + "atk": 13, + "def": 9, + "hp": 205, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_353" + }, + "2": { + "id": 3013, + "jieji": 2, + "jj_attr": { + "def": 150, + "xixuepro": 0.06 + }, + "jj_allattr": {}, + "buff": { + "atk": 57, + "def": 39, + "hp": 885, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_354" + }, + "3": { + "id": 3013, + "jieji": 3, + "jj_attr": { + "def": 150, + "xixuepro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 131, + "def": 90, + "hp": 2025, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_355" + }, + "4": { + "id": 3013, + "jieji": 4, + "jj_attr": { + "def": 150, + "xixuepro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 235, + "def": 162, + "hp": 3645, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "3013", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_356" + }, + "5": { + "id": 3013, + "jieji": 5, + "jj_attr": { + "def": 350, + "xixuepro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 369, + "def": 255, + "hp": 5725, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "3013", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_357" + }, + "6": { + "id": 3013, + "jieji": 6, + "jj_attr": { + "def": 350, + "xixuepro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 534, + "def": 369, + "hp": 8280, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "3013", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_358" + }, + "7": { + "id": 3013, + "jieji": 7, + "jj_attr": { + "def": 350, + "xixuepro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 729, + "def": 504, + "hp": 11295, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "3013", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_359" + }, + "8": { + "id": 3013, + "jieji": 8, + "jj_attr": { + "def": 3050, + "xixuepro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 955, + "def": 660, + "hp": 14780, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "3013", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_360" + }, + "9": { + "id": 3013, + "jieji": 9, + "jj_attr": { + "def": 3050, + "xixuepro": 0.06, + "speed": 20, + "hp": 3000, + "magdpsdrop": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1211, + "def": 837, + "hp": 18725, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "3013", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_361" + }, + "10": { + "id": 3013, + "jieji": 10, + "jj_attr": { + "atk": 1680, + "def": 3050, + "xixuepro": 0.06, + "speed": 20, + "hp": 3000, + "magdpsdrop": 0.3, + "pvpdpspro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1497, + "def": 1037, + "hp": 23135, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "3013", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_362" + }, + "11": { + "id": 3013, + "jieji": 11, + "jj_attr": { + "atk": 1680, + "def": 3050, + "xixuepro": 0.06, + "speed": 20, + "hp": 3000, + "magdpsdrop": 0.3, + "pvpdpspro": 0.3 + }, + "jj_allattr": { + "def": 1980 + }, + "buff": { + "atk": 1783, + "def": 1237, + "hp": 27545, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "3013", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_363" + } + }, + "3014": { + "0": { + "id": 3014, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "def": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 3014, + "jieji": 1, + "jj_attr": { + "atk": 150 + }, + "jj_allattr": {}, + "buff": { + "atk": 11, + "def": 9, + "hp": 205, + "speed": 3 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_364" + }, + "2": { + "id": 3014, + "jieji": 2, + "jj_attr": { + "atk": 150, + "fanshangpro": 0.05 + }, + "jj_allattr": {}, + "buff": { + "atk": 42, + "def": 36, + "hp": 905, + "speed": 8 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_365" + }, + "3": { + "id": 3014, + "jieji": 3, + "jj_attr": { + "atk": 150, + "fanshangpro": 0.05, + "speed": 15 + }, + "jj_allattr": {}, + "buff": { + "atk": 92, + "def": 81, + "hp": 2085, + "speed": 15 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_366" + }, + "4": { + "id": 3014, + "jieji": 4, + "jj_attr": { + "atk": 150, + "fanshangpro": 0.05, + "speed": 15 + }, + "jj_allattr": {}, + "buff": { + "atk": 162, + "def": 143, + "hp": 3765, + "speed": 24 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "3014", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_367" + }, + "5": { + "id": 3014, + "jieji": 5, + "jj_attr": { + "atk": 150, + "fanshangpro": 0.05, + "speed": 15, + "def": 200 + }, + "jj_allattr": {}, + "buff": { + "atk": 262, + "def": 215, + "hp": 5925, + "speed": 35 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "3014", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_368" + }, + "6": { + "id": 3014, + "jieji": 6, + "jj_attr": { + "atk": 550, + "fanshangpro": 0.05, + "speed": 15, + "def": 200 + }, + "jj_allattr": {}, + "buff": { + "atk": 388, + "def": 301, + "hp": 8575, + "speed": 47 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "3014", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_369" + }, + "7": { + "id": 3014, + "jieji": 7, + "jj_attr": { + "atk": 550, + "fanshangpro": 0.05, + "speed": 15, + "def": 200, + "neardpsdrop": 0.4 + }, + "jj_allattr": {}, + "buff": { + "atk": 538, + "def": 404, + "hp": 11675, + "speed": 61 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "3014", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_370" + }, + "8": { + "id": 3014, + "jieji": 8, + "jj_attr": { + "atk": 2230, + "fanshangpro": 0.05, + "speed": 15, + "def": 200, + "neardpsdrop": 0.4 + }, + "jj_allattr": {}, + "buff": { + "atk": 713, + "def": 521, + "hp": 15275, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "3014", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_371" + }, + "9": { + "id": 3014, + "jieji": 9, + "jj_attr": { + "atk": 2230, + "fanshangpro": 0.05, + "speed": 15, + "def": 200, + "neardpsdrop": 0.4 + }, + "jj_allattr": {}, + "buff": { + "atk": 914, + "def": 649, + "hp": 19375, + "speed": 95 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "3014", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_372" + }, + "10": { + "id": 3014, + "jieji": 10, + "jj_attr": { + "atk": 2230, + "fanshangpro": 0.05, + "speed": 15, + "def": 2900, + "neardpsdrop": 0.4, + "pvpdpspro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1139, + "def": 791, + "hp": 23975, + "speed": 115 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "3014", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_373" + }, + "11": { + "id": 3014, + "jieji": 11, + "jj_attr": { + "atk": 2230, + "fanshangpro": 0.05, + "speed": 15, + "def": 2900, + "neardpsdrop": 0.4, + "pvpdpspro": 0.3 + }, + "jj_allattr": { + "atk": 1176 + }, + "buff": { + "atk": 1364, + "def": 933, + "hp": 28575, + "speed": 135 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "3014", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_374" + } + }, + "3015": { + "0": { + "id": 3015, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "def": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 3015, + "jieji": 1, + "jj_attr": { + "atk": 168 + }, + "jj_allattr": {}, + "buff": { + "atk": 13, + "def": 9, + "hp": 205, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_375" + }, + "2": { + "id": 3015, + "jieji": 2, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.15 + }, + "jj_allattr": {}, + "buff": { + "atk": 57, + "def": 39, + "hp": 905, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_376" + }, + "3": { + "id": 3015, + "jieji": 3, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.15, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 131, + "def": 90, + "hp": 2085, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_377" + }, + "4": { + "id": 3015, + "jieji": 4, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.15, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 235, + "def": 162, + "hp": 3765, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "3015", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_378" + }, + "5": { + "id": 3015, + "jieji": 5, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.15, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 369, + "def": 255, + "hp": 5925, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "3015", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_379" + }, + "6": { + "id": 3015, + "jieji": 6, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 535, + "def": 369, + "hp": 8575, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "3015", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_380" + }, + "7": { + "id": 3015, + "jieji": 7, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "hp": 2300, + "xixuepro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 735, + "def": 504, + "hp": 11675, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "3015", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_381" + }, + "8": { + "id": 3015, + "jieji": 8, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "hp": 33100, + "xixuepro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 966, + "def": 660, + "hp": 15275, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "3015", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_382" + }, + "9": { + "id": 3015, + "jieji": 9, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "hp": 33100, + "xixuepro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1224, + "def": 837, + "hp": 19375, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "3015", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_383" + }, + "10": { + "id": 3015, + "jieji": 10, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "hp": 33100, + "xixuepro": 0.3, + "def": 2700, + "pvpdpspro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1510, + "def": 1037, + "hp": 23975, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "3015", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_384" + }, + "11": { + "id": 3015, + "jieji": 11, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "hp": 33100, + "xixuepro": 0.3, + "def": 2700, + "pvpdpspro": 0.3 + }, + "jj_allattr": { + "hp": 21560 + }, + "buff": { + "atk": 1796, + "def": 1237, + "hp": 28575, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "3015", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_385" + } + }, + "4001": { + "0": { + "id": 4001, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 4001, + "jieji": 1, + "jj_attr": { + "atk": 168 + }, + "jj_allattr": {}, + "buff": { + "atk": 26, + "maxdps": 17, + "hp": 105, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_56" + }, + "2": { + "id": 4001, + "jieji": 2, + "jj_attr": { + "atk": 168, + "mingzhongpro": 0.06 + }, + "jj_allattr": {}, + "buff": { + "atk": 112, + "maxdps": 75, + "hp": 435, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_57" + }, + "3": { + "id": 4001, + "jieji": 3, + "jj_attr": { + "atk": 168, + "mingzhongpro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 258, + "maxdps": 174, + "hp": 985, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_58" + }, + "4": { + "id": 4001, + "jieji": 4, + "jj_attr": { + "atk": 168, + "mingzhongpro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 466, + "maxdps": 314, + "hp": 1765, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "4001", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_59" + }, + "5": { + "id": 4001, + "jieji": 5, + "jj_attr": { + "atk": 168, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 735, + "maxdps": 494, + "hp": 2765, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "4001", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_60" + }, + "6": { + "id": 4001, + "jieji": 6, + "jj_attr": { + "atk": 613, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 1064, + "maxdps": 717, + "hp": 4000, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "4001", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_61" + }, + "7": { + "id": 4001, + "jieji": 7, + "jj_attr": { + "atk": 613, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 1454, + "maxdps": 980, + "hp": 5455, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "4001", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_62" + }, + "8": { + "id": 4001, + "jieji": 8, + "jj_attr": { + "atk": 2293, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 1904, + "maxdps": 1286, + "hp": 7140, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "4001", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_63" + }, + "9": { + "id": 4001, + "jieji": 9, + "jj_attr": { + "atk": 2293, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 2414, + "maxdps": 1632, + "hp": 9055, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "4001", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_64" + }, + "10": { + "id": 4001, + "jieji": 10, + "jj_attr": { + "atk": 2293, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300, + "pvpdpspro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 2986, + "maxdps": 2019, + "hp": 11200, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "4001", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_65" + }, + "11": { + "id": 4001, + "jieji": 11, + "jj_attr": { + "atk": 2293, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 33100, + "pvpdpspro": 0.3 + }, + "jj_allattr": { + "hp": 21560 + }, + "buff": { + "atk": 3558, + "maxdps": 2406, + "hp": 13345, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "4001", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_66" + } + }, + "4002": { + "0": { + "id": 4002, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "def": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 4002, + "jieji": 1, + "jj_attr": { + "atk": 168 + }, + "jj_allattr": {}, + "buff": { + "atk": 13, + "def": 9, + "hp": 205, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_67" + }, + "2": { + "id": 4002, + "jieji": 2, + "jj_attr": { + "atk": 168, + "fanshangpro": 0.06 + }, + "jj_allattr": {}, + "buff": { + "atk": 57, + "def": 39, + "hp": 905, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_68" + }, + "3": { + "id": 4002, + "jieji": 3, + "jj_attr": { + "atk": 168, + "fanshangpro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 131, + "def": 90, + "hp": 2085, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_69" + }, + "4": { + "id": 4002, + "jieji": 4, + "jj_attr": { + "atk": 168, + "fanshangpro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 235, + "def": 162, + "hp": 3765, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "4002", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_70" + }, + "5": { + "id": 4002, + "jieji": 5, + "jj_attr": { + "atk": 168, + "fanshangpro": 0.06, + "speed": 20, + "def": 220 + }, + "jj_allattr": {}, + "buff": { + "atk": 369, + "def": 255, + "hp": 5925, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "4002", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_71" + }, + "6": { + "id": 4002, + "jieji": 6, + "jj_attr": { + "atk": 613, + "fanshangpro": 0.06, + "speed": 20, + "def": 220 + }, + "jj_allattr": {}, + "buff": { + "atk": 535, + "def": 369, + "hp": 8575, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "4002", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_72" + }, + "7": { + "id": 4002, + "jieji": 7, + "jj_attr": { + "atk": 1226, + "fanshangpro": 0.06, + "speed": 20, + "def": 220 + }, + "jj_allattr": {}, + "buff": { + "atk": 735, + "def": 504, + "hp": 11675, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "4002", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_73" + }, + "8": { + "id": 4002, + "jieji": 8, + "jj_attr": { + "atk": 613, + "fanshangpro": 0.06, + "speed": 20, + "def": 220, + "hp": 30800 + }, + "jj_allattr": {}, + "buff": { + "atk": 966, + "def": 660, + "hp": 15275, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "4002", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_74" + }, + "9": { + "id": 4002, + "jieji": 9, + "jj_attr": { + "atk": 613, + "fanshangpro": 0.06, + "speed": 20, + "def": 220, + "hp": 30800 + }, + "jj_allattr": {}, + "buff": { + "atk": 1224, + "def": 837, + "hp": 19375, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "4002", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_75" + }, + "10": { + "id": 4002, + "jieji": 10, + "jj_attr": { + "atk": 613, + "fanshangpro": 0.06, + "speed": 20, + "def": 220, + "hp": 30800, + "pvpdpspro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1510, + "def": 1037, + "hp": 23975, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "4002", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_76" + }, + "11": { + "id": 4002, + "jieji": 11, + "jj_attr": { + "atk": 613, + "fanshangpro": 0.06, + "speed": 20, + "def": 220, + "hp": 30800, + "pvpdpspro": 0.3 + }, + "jj_allattr": { + "hp": 21560 + }, + "buff": { + "atk": 1796, + "def": 1237, + "hp": 28575, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "4002", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_77" + } + }, + "4003": { + "0": { + "id": 4003, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 4003, + "jieji": 1, + "jj_attr": { + "atk": 168 + }, + "jj_allattr": {}, + "buff": { + "atk": 17, + "maxdps": 12, + "hp": 95, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_78" + }, + "2": { + "id": 4003, + "jieji": 2, + "jj_attr": { + "atk": 168, + "mingzhongpro": 0.06 + }, + "jj_allattr": {}, + "buff": { + "atk": 86, + "maxdps": 62, + "hp": 405, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_79" + }, + "3": { + "id": 4003, + "jieji": 3, + "jj_attr": { + "atk": 168, + "mingzhongpro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 216, + "maxdps": 142, + "hp": 905, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_80" + }, + "4": { + "id": 4003, + "jieji": 4, + "jj_attr": { + "atk": 168, + "mingzhongpro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 398, + "maxdps": 257, + "hp": 1660, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "4003", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_81" + }, + "5": { + "id": 4003, + "jieji": 5, + "jj_attr": { + "atk": 168, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 629, + "maxdps": 412, + "hp": 2640, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "4003", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_82" + }, + "6": { + "id": 4003, + "jieji": 6, + "jj_attr": { + "atk": 613, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 913, + "maxdps": 603, + "hp": 3840, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "4003", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_83" + }, + "7": { + "id": 4003, + "jieji": 7, + "jj_attr": { + "atk": 1226, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 1258, + "maxdps": 826, + "hp": 5240, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "4003", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_84" + }, + "8": { + "id": 4003, + "jieji": 8, + "jj_attr": { + "atk": 613, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300, + "def": 2700 + }, + "jj_allattr": {}, + "buff": { + "atk": 1653, + "maxdps": 1092, + "hp": 6840, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "4003", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_85" + }, + "9": { + "id": 4003, + "jieji": 9, + "jj_attr": { + "atk": 613, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300, + "def": 2700 + }, + "jj_allattr": {}, + "buff": { + "atk": 2101, + "maxdps": 1398, + "hp": 8640, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "4003", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_86" + }, + "10": { + "id": 4003, + "jieji": 10, + "jj_attr": { + "atk": 2293, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300, + "def": 2700, + "pvpdpspro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 2603, + "maxdps": 1745, + "hp": 10640, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "4003", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_87" + }, + "11": { + "id": 4003, + "jieji": 11, + "jj_attr": { + "atk": 2293, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300, + "def": 2700, + "pvpdpspro": 0.3 + }, + "jj_allattr": { + "def": 1980 + }, + "buff": { + "atk": 3105, + "maxdps": 2092, + "hp": 12640, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "4003", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_88" + } + }, + "4004": { + "0": { + "id": 4004, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 4004, + "jieji": 1, + "jj_attr": { + "atk": 168 + }, + "jj_allattr": {}, + "buff": { + "atk": 10, + "maxdps": 32, + "hp": 100, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_89" + }, + "2": { + "id": 4004, + "jieji": 2, + "jj_attr": { + "atk": 168, + "mingzhongpro": 0.06 + }, + "jj_allattr": {}, + "buff": { + "atk": 50, + "maxdps": 142, + "hp": 425, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_90" + }, + "3": { + "id": 4004, + "jieji": 3, + "jj_attr": { + "atk": 168, + "mingzhongpro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 120, + "maxdps": 328, + "hp": 985, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_91" + }, + "4": { + "id": 4004, + "jieji": 4, + "jj_attr": { + "atk": 168, + "mingzhongpro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 220, + "maxdps": 595, + "hp": 1755, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "4004", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_92" + }, + "5": { + "id": 4004, + "jieji": 5, + "jj_attr": { + "atk": 168, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 350, + "maxdps": 942, + "hp": 2755, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "4004", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_93" + }, + "6": { + "id": 4004, + "jieji": 6, + "jj_attr": { + "atk": 613, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 510, + "maxdps": 1366, + "hp": 3985, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "4004", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_94" + }, + "7": { + "id": 4004, + "jieji": 7, + "jj_attr": { + "atk": 613, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 695, + "maxdps": 1876, + "hp": 5435, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "4004", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_95" + }, + "8": { + "id": 4004, + "jieji": 8, + "jj_attr": { + "atk": 613, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300, + "def": 2700 + }, + "jj_allattr": {}, + "buff": { + "atk": 905, + "maxdps": 2472, + "hp": 7105, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "4004", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_96" + }, + "9": { + "id": 4004, + "jieji": 9, + "jj_attr": { + "atk": 613, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300, + "def": 2700 + }, + "jj_allattr": {}, + "buff": { + "atk": 1140, + "maxdps": 3155, + "hp": 9005, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "4004", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_97" + }, + "10": { + "id": 4004, + "jieji": 10, + "jj_attr": { + "atk": 2293, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300, + "def": 2700 + }, + "jj_allattr": {}, + "buff": { + "atk": 1410, + "maxdps": 3909, + "hp": 11130, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "4004", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_98" + }, + "11": { + "id": 4004, + "jieji": 11, + "jj_attr": { + "atk": 2293, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300, + "def": 2700 + }, + "jj_allattr": { + "atk": 1176 + }, + "buff": { + "atk": 1680, + "maxdps": 4663, + "hp": 13255, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "4004", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_99" + } + }, + "4005": { + "0": { + "id": 4005, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 4005, + "jieji": 1, + "jj_attr": { + "atk": 168 + }, + "jj_allattr": {}, + "buff": { + "atk": 9, + "maxdps": 30, + "hp": 100, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_100" + }, + "2": { + "id": 4005, + "jieji": 2, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.06 + }, + "jj_allattr": {}, + "buff": { + "atk": 42, + "maxdps": 138, + "hp": 425, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_101" + }, + "3": { + "id": 4005, + "jieji": 3, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 102, + "maxdps": 323, + "hp": 985, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_102" + }, + "4": { + "id": 4005, + "jieji": 4, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 184, + "maxdps": 591, + "hp": 1755, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "4005", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_103" + }, + "5": { + "id": 4005, + "jieji": 5, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.06, + "speed": 20, + "def": 220 + }, + "jj_allattr": {}, + "buff": { + "atk": 301, + "maxdps": 926, + "hp": 2755, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "4005", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_104" + }, + "6": { + "id": 4005, + "jieji": 6, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.06, + "speed": 20, + "def": 220 + }, + "jj_allattr": {}, + "buff": { + "atk": 443, + "maxdps": 1337, + "hp": 3985, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "4005", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_105" + }, + "7": { + "id": 4005, + "jieji": 7, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.06, + "speed": 20, + "def": 220 + }, + "jj_allattr": {}, + "buff": { + "atk": 615, + "maxdps": 1823, + "hp": 5435, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "4005", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_106" + }, + "8": { + "id": 4005, + "jieji": 8, + "jj_attr": { + "atk": 2293, + "baoshangpro": 0.06, + "speed": 20, + "def": 220 + }, + "jj_allattr": {}, + "buff": { + "atk": 817, + "maxdps": 2380, + "hp": 7105, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "4005", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_107" + }, + "9": { + "id": 4005, + "jieji": 9, + "jj_attr": { + "atk": 2293, + "baoshangpro": 0.06, + "speed": 20, + "def": 220 + }, + "jj_allattr": {}, + "buff": { + "atk": 1043, + "maxdps": 3018, + "hp": 9005, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "4005", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_108" + }, + "10": { + "id": 4005, + "jieji": 10, + "jj_attr": { + "atk": 2293, + "baoshangpro": 0.06, + "speed": 20, + "def": 2920, + "pvpdpspro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1290, + "maxdps": 3738, + "hp": 11135, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "4005", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_109" + }, + "11": { + "id": 4005, + "jieji": 11, + "jj_attr": { + "atk": 2293, + "baoshangpro": 0.06, + "speed": 20, + "def": 2920, + "pvpdpspro": 0.3 + }, + "jj_allattr": { + "atk": 1176 + }, + "buff": { + "atk": 1537, + "maxdps": 4458, + "hp": 13265, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "4005", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_110" + } + }, + "4006": { + "0": { + "id": 4006, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "def": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 4006, + "jieji": 1, + "jj_attr": { + "atk": 168 + }, + "jj_allattr": {}, + "buff": { + "atk": 8, + "def": 7, + "hp": 160, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_111" + }, + "2": { + "id": 4006, + "jieji": 2, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.15 + }, + "jj_allattr": {}, + "buff": { + "atk": 46, + "def": 32, + "hp": 745, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_112" + }, + "3": { + "id": 4006, + "jieji": 3, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.15, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 110, + "def": 76, + "hp": 1755, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_113" + }, + "4": { + "id": 4006, + "jieji": 4, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.15, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 202, + "def": 138, + "hp": 3205, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "4006", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_114" + }, + "5": { + "id": 4006, + "jieji": 5, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.15, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 325, + "def": 221, + "hp": 5025, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "4006", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_115" + }, + "6": { + "id": 4006, + "jieji": 6, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 475, + "def": 323, + "hp": 7285, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "4006", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_116" + }, + "7": { + "id": 4006, + "jieji": 7, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 653, + "def": 447, + "hp": 9925, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "4006", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_117" + }, + "8": { + "id": 4006, + "jieji": 8, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "hp": 2300, + "def": 2700 + }, + "jj_allattr": {}, + "buff": { + "atk": 859, + "def": 587, + "hp": 13025, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "4006", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_118" + }, + "9": { + "id": 4006, + "jieji": 9, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "hp": 2300, + "def": 2700 + }, + "jj_allattr": {}, + "buff": { + "atk": 1085, + "def": 748, + "hp": 16575, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "4006", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_119" + }, + "10": { + "id": 4006, + "jieji": 10, + "jj_attr": { + "atk": 2293, + "baoshangpro": 0.15, + "speed": 20, + "hp": 2300, + "def": 2700, + "pvpdpspro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1331, + "def": 928, + "hp": 20600, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "4006", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_120" + }, + "11": { + "id": 4006, + "jieji": 11, + "jj_attr": { + "atk": 2293, + "baoshangpro": 0.15, + "speed": 20, + "hp": 2300, + "def": 2700, + "pvpdpspro": 0.3 + }, + "jj_allattr": { + "hp": 21560 + }, + "buff": { + "atk": 1577, + "def": 1108, + "hp": 24625, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "4006", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_121" + } + }, + "4007": { + "0": { + "id": 4007, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 4007, + "jieji": 1, + "jj_attr": { + "def": 150 + }, + "jj_allattr": {}, + "buff": { + "atk": 9, + "maxdps": 30, + "hp": 100, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_122" + }, + "2": { + "id": 4007, + "jieji": 2, + "jj_attr": { + "def": 150, + "xixuepro": 0.06 + }, + "jj_allattr": {}, + "buff": { + "atk": 42, + "maxdps": 138, + "hp": 425, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_123" + }, + "3": { + "id": 4007, + "jieji": 3, + "jj_attr": { + "def": 150, + "xixuepro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 102, + "maxdps": 323, + "hp": 985, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_124" + }, + "4": { + "id": 4007, + "jieji": 4, + "jj_attr": { + "def": 150, + "xixuepro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 184, + "maxdps": 591, + "hp": 1755, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "4007", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_125" + }, + "5": { + "id": 4007, + "jieji": 5, + "jj_attr": { + "def": 350, + "xixuepro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 301, + "maxdps": 926, + "hp": 2755, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "4007", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_126" + }, + "6": { + "id": 4007, + "jieji": 6, + "jj_attr": { + "def": 350, + "xixuepro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 443, + "maxdps": 1337, + "hp": 3985, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "4007", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_127" + }, + "7": { + "id": 4007, + "jieji": 7, + "jj_attr": { + "def": 350, + "xixuepro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 615, + "maxdps": 1823, + "hp": 5435, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "4007", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_128" + }, + "8": { + "id": 4007, + "jieji": 8, + "jj_attr": { + "def": 3050, + "xixuepro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 817, + "maxdps": 2380, + "hp": 7105, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "4007", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_129" + }, + "9": { + "id": 4007, + "jieji": 9, + "jj_attr": { + "def": 3050, + "xixuepro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 1043, + "maxdps": 3018, + "hp": 9005, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "4007", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_130" + }, + "10": { + "id": 4007, + "jieji": 10, + "jj_attr": { + "atk": 1680, + "def": 3050, + "xixuepro": 0.06, + "speed": 20, + "hp": 3000, + "pvpdpspro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1290, + "maxdps": 3738, + "hp": 11135, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "4007", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_131" + }, + "11": { + "id": 4007, + "jieji": 11, + "jj_attr": { + "atk": 1680, + "def": 3050, + "xixuepro": 0.06, + "speed": 20, + "hp": 3000, + "pvpdpspro": 0.3 + }, + "jj_allattr": { + "atk": 1176 + }, + "buff": { + "atk": 1537, + "maxdps": 4458, + "hp": 13265, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "4007", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_132" + } + }, + "4008": { + "0": { + "id": 4008, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 4008, + "jieji": 1, + "jj_attr": { + "def": 150 + }, + "jj_allattr": {}, + "buff": { + "atk": 8, + "maxdps": 25, + "hp": 90, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_133" + }, + "2": { + "id": 4008, + "jieji": 2, + "jj_attr": { + "def": 150, + "undpspro": 0.06 + }, + "jj_allattr": {}, + "buff": { + "atk": 43, + "maxdps": 123, + "hp": 395, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_134" + }, + "3": { + "id": 4008, + "jieji": 3, + "jj_attr": { + "def": 150, + "undpspro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 100, + "maxdps": 300, + "hp": 915, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_135" + }, + "4": { + "id": 4008, + "jieji": 4, + "jj_attr": { + "def": 150, + "undpspro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 182, + "maxdps": 558, + "hp": 1615, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "4008", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_136" + }, + "5": { + "id": 4008, + "jieji": 5, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 294, + "maxdps": 887, + "hp": 2515, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "4008", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_137" + }, + "6": { + "id": 4008, + "jieji": 6, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 436, + "maxdps": 1290, + "hp": 3595, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "4008", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_138" + }, + "7": { + "id": 4008, + "jieji": 7, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 609, + "maxdps": 1755, + "hp": 4915, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "4008", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_139" + }, + "8": { + "id": 4008, + "jieji": 8, + "jj_attr": { + "def": 3050, + "undpspro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 809, + "maxdps": 2284, + "hp": 6500, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "4008", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_140" + }, + "9": { + "id": 4008, + "jieji": 9, + "jj_attr": { + "def": 3050, + "undpspro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 1040, + "maxdps": 2877, + "hp": 8315, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "4008", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_141" + }, + "10": { + "id": 4008, + "jieji": 10, + "jj_attr": { + "def": 3050, + "undpspro": 0.06, + "speed": 20, + "hp": 33800, + "pvpdpspro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1300, + "maxdps": 3557, + "hp": 10245, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "4008", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_142" + }, + "11": { + "id": 4008, + "jieji": 11, + "jj_attr": { + "def": 3050, + "undpspro": 0.06, + "speed": 20, + "hp": 33800, + "pvpdpspro": 0.3 + }, + "jj_allattr": { + "def": 1980 + }, + "buff": { + "atk": 1560, + "maxdps": 4237, + "hp": 12175, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "4008", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_143" + } + }, + "4009": { + "0": { + "id": 4009, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 4009, + "jieji": 1, + "jj_attr": { + "def": 150 + }, + "jj_allattr": {}, + "buff": { + "atk": 13, + "maxdps": 36, + "hp": 100, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_144" + }, + "2": { + "id": 4009, + "jieji": 2, + "jj_attr": { + "def": 150, + "xixuepro": 0.06 + }, + "jj_allattr": {}, + "buff": { + "atk": 56, + "maxdps": 157, + "hp": 425, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_145" + }, + "3": { + "id": 4009, + "jieji": 3, + "jj_attr": { + "def": 150, + "xixuepro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 129, + "maxdps": 362, + "hp": 985, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_146" + }, + "4": { + "id": 4009, + "jieji": 4, + "jj_attr": { + "def": 150, + "xixuepro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 234, + "maxdps": 653, + "hp": 1755, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "4009", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_147" + }, + "5": { + "id": 4009, + "jieji": 5, + "jj_attr": { + "def": 350, + "xixuepro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 372, + "maxdps": 1028, + "hp": 2755, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "4009", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_148" + }, + "6": { + "id": 4009, + "jieji": 6, + "jj_attr": { + "def": 350, + "xixuepro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 540, + "maxdps": 1488, + "hp": 3985, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "4009", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_149" + }, + "7": { + "id": 4009, + "jieji": 7, + "jj_attr": { + "def": 350, + "xixuepro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 735, + "maxdps": 2038, + "hp": 5435, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "4009", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_150" + }, + "8": { + "id": 4009, + "jieji": 8, + "jj_attr": { + "def": 350, + "xixuepro": 0.06, + "speed": 20, + "hp": 33800 + }, + "jj_allattr": {}, + "buff": { + "atk": 965, + "maxdps": 2668, + "hp": 7105, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "4009", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_151" + }, + "9": { + "id": 4009, + "jieji": 9, + "jj_attr": { + "def": 350, + "xixuepro": 0.06, + "speed": 20, + "hp": 33800 + }, + "jj_allattr": {}, + "buff": { + "atk": 1227, + "maxdps": 3384, + "hp": 9005, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "4009", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_152" + }, + "10": { + "id": 4009, + "jieji": 10, + "jj_attr": { + "def": 3050, + "xixuepro": 0.06, + "speed": 20, + "hp": 33800, + "pvpdpspro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1520, + "maxdps": 4184, + "hp": 11130, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "4009", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_153" + }, + "11": { + "id": 4009, + "jieji": 11, + "jj_attr": { + "def": 3050, + "xixuepro": 0.06, + "speed": 20, + "hp": 33800, + "pvpdpspro": 0.3 + }, + "jj_allattr": { + "hp": 21560 + }, + "buff": { + "atk": 1813, + "maxdps": 4984, + "hp": 13255, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "4009", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_154" + } + }, + "4010": { + "0": { + "id": 4010, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 4010, + "jieji": 1, + "jj_attr": { + "atk": 168 + }, + "jj_allattr": {}, + "buff": { + "atk": 24, + "maxdps": 13, + "hp": 100, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_155" + }, + "2": { + "id": 4010, + "jieji": 2, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.15 + }, + "jj_allattr": {}, + "buff": { + "atk": 104, + "maxdps": 63, + "hp": 430, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_156" + }, + "3": { + "id": 4010, + "jieji": 3, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.15, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 244, + "maxdps": 153, + "hp": 970, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_157" + }, + "4": { + "id": 4010, + "jieji": 4, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.15, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 437, + "maxdps": 283, + "hp": 1750, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "4010", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_158" + }, + "5": { + "id": 4010, + "jieji": 5, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.15, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 692, + "maxdps": 448, + "hp": 2750, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "4010", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_159" + }, + "6": { + "id": 4010, + "jieji": 6, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 1000, + "maxdps": 653, + "hp": 3985, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "4010", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_160" + }, + "7": { + "id": 4010, + "jieji": 7, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 1366, + "maxdps": 898, + "hp": 5445, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "4010", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_161" + }, + "8": { + "id": 4010, + "jieji": 8, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "hp": 30800 + }, + "jj_allattr": {}, + "buff": { + "atk": 1783, + "maxdps": 1188, + "hp": 7130, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "4010", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_162" + }, + "9": { + "id": 4010, + "jieji": 9, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "hp": 30800 + }, + "jj_allattr": {}, + "buff": { + "atk": 2264, + "maxdps": 1508, + "hp": 9045, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "4010", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_163" + }, + "10": { + "id": 4010, + "jieji": 10, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "hp": 30800, + "def": 2700, + "pvpdpsdrop": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 2799, + "maxdps": 1868, + "hp": 11195, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "4010", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_164" + }, + "11": { + "id": 4010, + "jieji": 11, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "hp": 30800, + "def": 2700, + "pvpdpsdrop": 0.3 + }, + "jj_allattr": { + "def": 1890 + }, + "buff": { + "atk": 3334, + "maxdps": 2228, + "hp": 13345, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "4010", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_165" + } + }, + "4011": { + "0": { + "id": 4011, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 4011, + "jieji": 1, + "jj_attr": { + "def": 150 + }, + "jj_allattr": {}, + "buff": { + "atk": 24, + "maxdps": 13, + "hp": 100, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_166" + }, + "2": { + "id": 4011, + "jieji": 2, + "jj_attr": { + "def": 150, + "undpspro": 0.06 + }, + "jj_allattr": {}, + "buff": { + "atk": 104, + "maxdps": 63, + "hp": 430, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_167" + }, + "3": { + "id": 4011, + "jieji": 3, + "jj_attr": { + "def": 150, + "undpspro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 244, + "maxdps": 153, + "hp": 970, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_168" + }, + "4": { + "id": 4011, + "jieji": 4, + "jj_attr": { + "def": 150, + "undpspro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 437, + "maxdps": 283, + "hp": 1750, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "4011", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_169" + }, + "5": { + "id": 4011, + "jieji": 5, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 692, + "maxdps": 448, + "hp": 2750, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "4011", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_170" + }, + "6": { + "id": 4011, + "jieji": 6, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 1000, + "maxdps": 653, + "hp": 3985, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "4011", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_171" + }, + "7": { + "id": 4011, + "jieji": 7, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 20, + "hp": 3000, + "xixuepro": 0.5 + }, + "jj_allattr": {}, + "buff": { + "atk": 1366, + "maxdps": 898, + "hp": 5445, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "4011", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_172" + }, + "8": { + "id": 4011, + "jieji": 8, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 20, + "hp": 3000, + "atk": 1680, + "xixuepro": 0.5 + }, + "jj_allattr": {}, + "buff": { + "atk": 1783, + "maxdps": 1188, + "hp": 7130, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "4011", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_173" + }, + "9": { + "id": 4011, + "jieji": 9, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 20, + "hp": 3000, + "atk": 1680, + "xixuepro": 0.5 + }, + "jj_allattr": {}, + "buff": { + "atk": 2264, + "maxdps": 1508, + "hp": 9045, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "4011", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_174" + }, + "10": { + "id": 4011, + "jieji": 10, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 20, + "hp": 33800, + "atk": 1680, + "pvpdpspro": 0.3, + "xixuepro": 0.5 + }, + "jj_allattr": {}, + "buff": { + "atk": 2799, + "maxdps": 1868, + "hp": 11195, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "4011", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_175" + }, + "11": { + "id": 4011, + "jieji": 11, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 20, + "hp": 33800, + "atk": 1680, + "pvpdpspro": 0.3, + "xixuepro": 0.5 + }, + "jj_allattr": { + "def": 1890 + }, + "buff": { + "atk": 3334, + "maxdps": 2228, + "hp": 13345, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "4011", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_176" + } + }, + "4012": { + "0": { + "id": 4012, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 4012, + "jieji": 1, + "jj_attr": { + "atk": 168 + }, + "jj_allattr": {}, + "buff": { + "atk": 24, + "maxdps": 13, + "hp": 100, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_177" + }, + "2": { + "id": 4012, + "jieji": 2, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.06 + }, + "jj_allattr": {}, + "buff": { + "atk": 104, + "maxdps": 63, + "hp": 430, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_178" + }, + "3": { + "id": 4012, + "jieji": 3, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 244, + "maxdps": 153, + "hp": 970, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_179" + }, + "4": { + "id": 4012, + "jieji": 4, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 437, + "maxdps": 283, + "hp": 1750, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "4012", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_180" + }, + "5": { + "id": 4012, + "jieji": 5, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.06, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 692, + "maxdps": 448, + "hp": 2750, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "4012", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_181" + }, + "6": { + "id": 4012, + "jieji": 6, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 1000, + "maxdps": 653, + "hp": 3985, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "4012", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_182" + }, + "7": { + "id": 4012, + "jieji": 7, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 1366, + "maxdps": 898, + "hp": 5445, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "4012", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_183" + }, + "8": { + "id": 4012, + "jieji": 8, + "jj_attr": { + "atk": 2293, + "baoshangpro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 1783, + "maxdps": 1188, + "hp": 7130, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "4012", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_184" + }, + "9": { + "id": 4012, + "jieji": 9, + "jj_attr": { + "atk": 2293, + "baoshangpro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 2264, + "maxdps": 1508, + "hp": 9045, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "4012", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_185" + }, + "10": { + "id": 4012, + "jieji": 10, + "jj_attr": { + "atk": 2293, + "baoshangpro": 0.06, + "speed": 20, + "def": 2700, + "pvpdpspro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 2799, + "maxdps": 1868, + "hp": 11195, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "4012", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_186" + }, + "11": { + "id": 4012, + "jieji": 11, + "jj_attr": { + "atk": 2293, + "baoshangpro": 0.06, + "speed": 20, + "def": 2700, + "pvpdpspro": 0.3 + }, + "jj_allattr": { + "atk": 1176 + }, + "buff": { + "atk": 3334, + "maxdps": 2228, + "hp": 13345, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "4012", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_187" + } + }, + "4013": { + "0": { + "id": 4013, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 4013, + "jieji": 1, + "jj_attr": { + "def": 150 + }, + "jj_allattr": {}, + "buff": { + "atk": 26, + "maxdps": 17, + "hp": 105, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_188" + }, + "2": { + "id": 4013, + "jieji": 2, + "jj_attr": { + "def": 150, + "undpspro": 0.06 + }, + "jj_allattr": {}, + "buff": { + "atk": 114, + "maxdps": 76, + "hp": 435, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_189" + }, + "3": { + "id": 4013, + "jieji": 3, + "jj_attr": { + "def": 150, + "undpspro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 268, + "maxdps": 176, + "hp": 985, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_190" + }, + "4": { + "id": 4013, + "jieji": 4, + "jj_attr": { + "def": 150, + "undpspro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 483, + "maxdps": 318, + "hp": 1765, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "4013", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_191" + }, + "5": { + "id": 4013, + "jieji": 5, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 763, + "maxdps": 502, + "hp": 2765, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "4013", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_192" + }, + "6": { + "id": 4013, + "jieji": 6, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 1103, + "maxdps": 729, + "hp": 4000, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "4013", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_193" + }, + "7": { + "id": 4013, + "jieji": 7, + "jj_attr": { + "def": 350, + "undpspro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 1503, + "maxdps": 1005, + "hp": 5455, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "4013", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_194" + }, + "8": { + "id": 4013, + "jieji": 8, + "jj_attr": { + "atk": 1680, + "def": 350, + "undpspro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 1968, + "maxdps": 1318, + "hp": 7140, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "4013", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_195" + }, + "9": { + "id": 4013, + "jieji": 9, + "jj_attr": { + "atk": 1680, + "def": 350, + "undpspro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 2493, + "maxdps": 1678, + "hp": 9055, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "4013", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_196" + }, + "10": { + "id": 4013, + "jieji": 10, + "jj_attr": { + "atk": 1680, + "def": 3050, + "undpspro": 0.06, + "speed": 20, + "hp": 3000, + "pvpdpspro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 3083, + "maxdps": 2075, + "hp": 11200, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "4013", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_197" + }, + "11": { + "id": 4013, + "jieji": 11, + "jj_attr": { + "atk": 1680, + "def": 3050, + "undpspro": 0.06, + "speed": 20, + "hp": 3000, + "pvpdpspro": 0.3 + }, + "jj_allattr": { + "hp": 21560 + }, + "buff": { + "atk": 3673, + "maxdps": 2472, + "hp": 13345, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "4013", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_198" + } + }, + "4014": { + "0": { + "id": 4014, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 4014, + "jieji": 1, + "jj_attr": { + "atk": 150 + }, + "jj_allattr": {}, + "buff": { + "atk": 24, + "maxdps": 16, + "hp": 90, + "speed": 3 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_199" + }, + "2": { + "id": 4014, + "jieji": 2, + "jj_attr": { + "atk": 150, + "baoshangpro": 0.1 + }, + "jj_allattr": {}, + "buff": { + "atk": 102, + "maxdps": 66, + "hp": 350, + "speed": 8 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_200" + }, + "3": { + "id": 4014, + "jieji": 3, + "jj_attr": { + "atk": 150, + "baoshangpro": 0.1, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 227, + "maxdps": 160, + "hp": 800, + "speed": 15 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_201" + }, + "4": { + "id": 4014, + "jieji": 4, + "jj_attr": { + "atk": 150, + "baoshangpro": 0.1, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 407, + "maxdps": 281, + "hp": 1450, + "speed": 24 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "4014", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_202" + }, + "5": { + "id": 4014, + "jieji": 5, + "jj_attr": { + "atk": 150, + "baoshangpro": 0.1, + "speed": 20, + "hp": 2000 + }, + "jj_allattr": {}, + "buff": { + "atk": 642, + "maxdps": 433, + "hp": 2300, + "speed": 35 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "4014", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_203" + }, + "6": { + "id": 4014, + "jieji": 6, + "jj_attr": { + "atk": 550, + "baoshangpro": 0.1, + "speed": 20, + "hp": 2000 + }, + "jj_allattr": {}, + "buff": { + "atk": 917, + "maxdps": 631, + "hp": 3350, + "speed": 47 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "4014", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_204" + }, + "7": { + "id": 4014, + "jieji": 7, + "jj_attr": { + "atk": 550, + "baoshangpro": 0.1, + "speed": 20, + "hp": 2000 + }, + "jj_allattr": {}, + "buff": { + "atk": 1242, + "maxdps": 868, + "hp": 4600, + "speed": 61 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "4014", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_205" + }, + "8": { + "id": 4014, + "jieji": 8, + "jj_attr": { + "atk": 2230, + "baoshangpro": 0.1, + "speed": 20, + "hp": 2000 + }, + "jj_allattr": {}, + "buff": { + "atk": 1612, + "maxdps": 1146, + "hp": 6050, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "4014", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_206" + }, + "9": { + "id": 4014, + "jieji": 9, + "jj_attr": { + "atk": 2230, + "baoshangpro": 0.1, + "speed": 20, + "hp": 2000 + }, + "jj_allattr": {}, + "buff": { + "atk": 2032, + "maxdps": 1462, + "hp": 7700, + "speed": 95 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "4014", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_207" + }, + "10": { + "id": 4014, + "jieji": 10, + "jj_attr": { + "atk": 2230, + "baoshangpro": 0.1, + "speed": 20, + "hp": 2000, + "def": 2700, + "pvpdpspro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 2507, + "maxdps": 1805, + "hp": 9550, + "speed": 115 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "4014", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_208" + }, + "11": { + "id": 4014, + "jieji": 11, + "jj_attr": { + "atk": 2230, + "baoshangpro": 0.1, + "speed": 20, + "hp": 2000, + "def": 2700, + "pvpdpspro": 0.3 + }, + "jj_allattr": { + "hp": 21560 + }, + "buff": { + "atk": 2982, + "maxdps": 2148, + "hp": 11400, + "speed": 135 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "4014", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_209" + } + }, + "4015": { + "0": { + "id": 4015, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 4015, + "jieji": 1, + "jj_attr": { + "atk": 168 + }, + "jj_allattr": {}, + "buff": { + "atk": 9, + "maxdps": 30, + "hp": 100, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_210" + }, + "2": { + "id": 4015, + "jieji": 2, + "jj_attr": { + "atk": 168, + "mingzhongpro": 0.06 + }, + "jj_allattr": {}, + "buff": { + "atk": 42, + "maxdps": 138, + "hp": 425, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_211" + }, + "3": { + "id": 4015, + "jieji": 3, + "jj_attr": { + "atk": 168, + "mingzhongpro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 102, + "maxdps": 323, + "hp": 985, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_212" + }, + "4": { + "id": 4015, + "jieji": 4, + "jj_attr": { + "atk": 168, + "mingzhongpro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 184, + "maxdps": 591, + "hp": 1755, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "4015", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_213" + }, + "5": { + "id": 4015, + "jieji": 5, + "jj_attr": { + "atk": 168, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 301, + "maxdps": 926, + "hp": 2755, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "4015", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_214" + }, + "6": { + "id": 4015, + "jieji": 6, + "jj_attr": { + "atk": 613, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 443, + "maxdps": 1337, + "hp": 3985, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "4015", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_215" + }, + "7": { + "id": 4015, + "jieji": 7, + "jj_attr": { + "atk": 613, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 615, + "maxdps": 1823, + "hp": 5435, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "4015", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_216" + }, + "8": { + "id": 4015, + "jieji": 8, + "jj_attr": { + "atk": 613, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 33100 + }, + "jj_allattr": {}, + "buff": { + "atk": 817, + "maxdps": 2380, + "hp": 7105, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "4015", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_217" + }, + "9": { + "id": 4015, + "jieji": 9, + "jj_attr": { + "atk": 613, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 33100 + }, + "jj_allattr": {}, + "buff": { + "atk": 1043, + "maxdps": 3018, + "hp": 9005, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "4015", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_218" + }, + "10": { + "id": 4015, + "jieji": 10, + "jj_attr": { + "atk": 613, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 33100, + "def": 2700, + "pvpdpspro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1290, + "maxdps": 3738, + "hp": 11135, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "4015", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_219" + }, + "11": { + "id": 4015, + "jieji": 11, + "jj_attr": { + "atk": 613, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 33100, + "def": 2700, + "pvpdpspro": 0.3 + }, + "jj_allattr": { + "hp": 21560 + }, + "buff": { + "atk": 1537, + "maxdps": 4458, + "hp": 13265, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "4015", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_220" + } + }, + "5001": { + "0": { + "id": 5001, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 5001, + "jieji": 1, + "jj_attr": { + "atk": 168 + }, + "jj_allattr": {}, + "buff": { + "atk": 13, + "maxdps": 36, + "hp": 100, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_1" + }, + "2": { + "id": 5001, + "jieji": 2, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.15 + }, + "jj_allattr": {}, + "buff": { + "atk": 56, + "maxdps": 154, + "hp": 425, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_2" + }, + "3": { + "id": 5001, + "jieji": 3, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.15, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 128, + "maxdps": 353, + "hp": 985, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_3" + }, + "4": { + "id": 5001, + "jieji": 4, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.15, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 230, + "maxdps": 636, + "hp": 1755, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "5001", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_4" + }, + "5": { + "id": 5001, + "jieji": 5, + "jj_attr": { + "atk": 168, + "baoshangpro": 0.15, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 362, + "maxdps": 1000, + "hp": 2755, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "5001", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_5" + }, + "6": { + "id": 5001, + "jieji": 6, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 524, + "maxdps": 1445, + "hp": 3985, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "5001", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_6" + }, + "7": { + "id": 5001, + "jieji": 7, + "jj_attr": { + "atk": 613, + "baoshangpro": 0.15, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 716, + "maxdps": 1973, + "hp": 5435, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "5001", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_7" + }, + "8": { + "id": 5001, + "jieji": 8, + "jj_attr": { + "atk": 2293, + "baoshangpro": 0.15, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 938, + "maxdps": 2583, + "hp": 7105, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "5001", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_8" + }, + "9": { + "id": 5001, + "jieji": 9, + "jj_attr": { + "atk": 2293, + "baoshangpro": 0.15, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 1189, + "maxdps": 3275, + "hp": 9005, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "5001", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_9" + }, + "10": { + "id": 5001, + "jieji": 10, + "jj_attr": { + "atk": 2293, + "baoshangpro": 0.15, + "speed": 20, + "hp": 2300, + "mingzhongpro": 0.15, + "pvpdpspro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1471, + "maxdps": 4048, + "hp": 11130, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "5001", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_10" + }, + "11": { + "id": 5001, + "jieji": 11, + "jj_attr": { + "atk": 2293, + "baoshangpro": 0.15, + "speed": 20, + "hp": 2300, + "mingzhongpro": 0.15, + "pvpdpspro": 0.3 + }, + "jj_allattr": { + "def": 2700 + }, + "buff": { + "atk": 1753, + "maxdps": 4821, + "hp": 13255, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "5001", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_11" + } + }, + "5002": { + "0": { + "id": 5002, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 5002, + "jieji": 1, + "jj_attr": { + "atk": 168 + }, + "jj_allattr": {}, + "buff": { + "atk": 13, + "maxdps": 36, + "hp": 100, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_12" + }, + "2": { + "id": 5002, + "jieji": 2, + "jj_attr": { + "atk": 168, + "undpspro": 0.05 + }, + "jj_allattr": {}, + "buff": { + "atk": 56, + "maxdps": 154, + "hp": 425, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_13" + }, + "3": { + "id": 5002, + "jieji": 3, + "jj_attr": { + "atk": 168, + "undpspro": 0.05, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 128, + "maxdps": 353, + "hp": 985, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_14" + }, + "4": { + "id": 5002, + "jieji": 4, + "jj_attr": { + "atk": 168, + "undpspro": 0.05, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 230, + "maxdps": 636, + "hp": 1755, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "5002", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_15" + }, + "5": { + "id": 5002, + "jieji": 5, + "jj_attr": { + "atk": 168, + "undpspro": 0.05, + "speed": 20, + "def": 270 + }, + "jj_allattr": {}, + "buff": { + "atk": 362, + "maxdps": 1000, + "hp": 2755, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "5002", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_16" + }, + "6": { + "id": 5002, + "jieji": 6, + "jj_attr": { + "atk": 168, + "undpspro": 0.05, + "speed": 20, + "def": 270, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 524, + "maxdps": 1445, + "hp": 3985, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "5002", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_17" + }, + "7": { + "id": 5002, + "jieji": 7, + "jj_attr": { + "atk": 168, + "undpspro": 0.05, + "speed": 20, + "def": 270, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 716, + "maxdps": 1973, + "hp": 5435, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "5002", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_18" + }, + "8": { + "id": 5002, + "jieji": 8, + "jj_attr": { + "atk": 168, + "undpspro": 0.05, + "speed": 20, + "def": 270, + "hp": 33800 + }, + "jj_allattr": {}, + "buff": { + "atk": 938, + "maxdps": 2583, + "hp": 7105, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "5002", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_19" + }, + "9": { + "id": 5002, + "jieji": 9, + "jj_attr": { + "atk": 168, + "undpspro": 0.05, + "speed": 20, + "def": 270, + "hp": 33800 + }, + "jj_allattr": {}, + "buff": { + "atk": 1189, + "maxdps": 3275, + "hp": 9005, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "5002", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_20" + }, + "10": { + "id": 5002, + "jieji": 10, + "jj_attr": { + "atk": 168, + "undpspro": 0.05, + "speed": 20, + "def": 270, + "hp": 33800, + "shanbipro": 0.2, + "pvpdpsdrop": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1471, + "maxdps": 4048, + "hp": 11130, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "5002", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_21" + }, + "11": { + "id": 5002, + "jieji": 11, + "jj_attr": { + "atk": 168, + "undpspro": 0.05, + "speed": 20, + "def": 270, + "hp": 33800, + "shanbipro": 0.2, + "pvpdpsdrop": 0.3 + }, + "jj_allattr": { + "hp": 30800 + }, + "buff": { + "atk": 1753, + "maxdps": 4821, + "hp": 13255, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "5002", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_22" + } + }, + "5003": { + "0": { + "id": 5003, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 5003, + "jieji": 1, + "jj_attr": { + "atk": 168 + }, + "jj_allattr": {}, + "buff": { + "atk": 13, + "maxdps": 36, + "hp": 100, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_23" + }, + "2": { + "id": 5003, + "jieji": 2, + "jj_attr": { + "atk": 168, + "mingzhongpro": 0.06 + }, + "jj_allattr": {}, + "buff": { + "atk": 56, + "maxdps": 154, + "hp": 425, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_24" + }, + "3": { + "id": 5003, + "jieji": 3, + "jj_attr": { + "atk": 168, + "mingzhongpro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 128, + "maxdps": 353, + "hp": 985, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_25" + }, + "4": { + "id": 5003, + "jieji": 4, + "jj_attr": { + "atk": 168, + "mingzhongpro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 230, + "maxdps": 636, + "hp": 1755, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "5003", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_26" + }, + "5": { + "id": 5003, + "jieji": 5, + "jj_attr": { + "atk": 168, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 362, + "maxdps": 1000, + "hp": 2755, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "5003", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_27" + }, + "6": { + "id": 5003, + "jieji": 6, + "jj_attr": { + "atk": 613, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 524, + "maxdps": 1445, + "hp": 3985, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "5003", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_28" + }, + "7": { + "id": 5003, + "jieji": 7, + "jj_attr": { + "atk": 613, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 716, + "maxdps": 1973, + "hp": 5435, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "5003", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_29" + }, + "8": { + "id": 5003, + "jieji": 8, + "jj_attr": { + "atk": 1848, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 938, + "maxdps": 2583, + "hp": 7105, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "5003", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_30" + }, + "9": { + "id": 5003, + "jieji": 9, + "jj_attr": { + "atk": 1848, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 2300 + }, + "jj_allattr": {}, + "buff": { + "atk": 1189, + "maxdps": 3275, + "hp": 9005, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "5003", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_31" + }, + "10": { + "id": 5003, + "jieji": 10, + "jj_attr": { + "atk": 1848, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 33100, + "pvpdpspro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1471, + "maxdps": 4048, + "hp": 11130, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "5003", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_32" + }, + "11": { + "id": 5003, + "jieji": 11, + "jj_attr": { + "atk": 1848, + "mingzhongpro": 0.06, + "speed": 20, + "hp": 33100, + "pvpdpspro": 0.3 + }, + "jj_allattr": { + "hp": 21560 + }, + "buff": { + "atk": 1753, + "maxdps": 4821, + "hp": 13255, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "5003", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_33" + } + }, + "5004": { + "0": { + "id": 5004, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "def": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 5004, + "jieji": 1, + "jj_attr": { + "atk": 168 + }, + "jj_allattr": {}, + "buff": { + "atk": 13, + "def": 9, + "hp": 205, + "speed": 6 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_34" + }, + "2": { + "id": 5004, + "jieji": 2, + "jj_attr": { + "atk": 168, + "xixuepro": 0.06 + }, + "jj_allattr": {}, + "buff": { + "atk": 57, + "def": 39, + "hp": 905, + "speed": 13 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_35" + }, + "3": { + "id": 5004, + "jieji": 3, + "jj_attr": { + "atk": 168, + "xixuepro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 131, + "def": 90, + "hp": 2085, + "speed": 23 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_36" + }, + "4": { + "id": 5004, + "jieji": 4, + "jj_attr": { + "atk": 168, + "xixuepro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 235, + "def": 162, + "hp": 3765, + "speed": 35 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "5004", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_37" + }, + "5": { + "id": 5004, + "jieji": 5, + "jj_attr": { + "atk": 168, + "xixuepro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 369, + "def": 255, + "hp": 5925, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "5004", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_38" + }, + "6": { + "id": 5004, + "jieji": 6, + "jj_attr": { + "atk": 613, + "xixuepro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 535, + "def": 369, + "hp": 8575, + "speed": 66 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "5004", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_39" + }, + "7": { + "id": 5004, + "jieji": 7, + "jj_attr": { + "atk": 613, + "xixuepro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 735, + "def": 504, + "hp": 11675, + "speed": 85 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "5004", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_40" + }, + "8": { + "id": 5004, + "jieji": 8, + "jj_attr": { + "atk": 2293, + "xixuepro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 966, + "def": 660, + "hp": 15275, + "speed": 106 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "5004", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_41" + }, + "9": { + "id": 5004, + "jieji": 9, + "jj_attr": { + "atk": 2293, + "xixuepro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 1224, + "def": 837, + "hp": 19375, + "speed": 129 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "5004", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_42" + }, + "10": { + "id": 5004, + "jieji": 10, + "jj_attr": { + "atk": 2293, + "xixuepro": 0.06, + "speed": 20, + "hp": 3000, + "def": 2700, + "pvpdpsdrop": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 1510, + "def": 1037, + "hp": 23975, + "speed": 154 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "5004", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_43" + }, + "11": { + "id": 5004, + "jieji": 11, + "jj_attr": { + "atk": 2293, + "xixuepro": 0.06, + "speed": 20, + "hp": 3000, + "def": 2700, + "pvpdpsdrop": 0.3 + }, + "jj_allattr": { + "hp": 30800 + }, + "buff": { + "atk": 1796, + "def": 1237, + "hp": 28575, + "speed": 179 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "5004", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_44" + } + }, + "5005": { + "0": { + "id": 5005, + "jieji": 0, + "jj_attr": {}, + "jj_allattr": {}, + "buff": { + "atk": 0, + "maxdps": 0, + "hp": 0, + "speed": 0 + }, + "need": [], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_0" + }, + "1": { + "id": 5005, + "jieji": 1, + "jj_attr": { + "def": 150 + }, + "jj_allattr": {}, + "buff": { + "atk": 20, + "maxdps": 13, + "hp": 110, + "speed": 5 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 200 + } + ], + "lv": 1, + "name": "intr_herogrow_name_1", + "describe": "intr_herogrow_describe_45" + }, + "2": { + "id": 5005, + "jieji": 2, + "jj_attr": { + "def": 150, + "undpspro": 0.06 + }, + "jj_allattr": {}, + "buff": { + "atk": 96, + "maxdps": 60, + "hp": 445, + "speed": 12 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 400 + } + ], + "lv": 20, + "name": "intr_herogrow_name_2", + "describe": "intr_herogrow_describe_46" + }, + "3": { + "id": 5005, + "jieji": 3, + "jj_attr": { + "def": 150, + "undpspro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 227, + "maxdps": 141, + "hp": 1015, + "speed": 21 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 800 + } + ], + "lv": 30, + "name": "intr_herogrow_name_3", + "describe": "intr_herogrow_describe_47" + }, + "4": { + "id": 5005, + "jieji": 4, + "jj_attr": { + "def": 150, + "undpspro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 415, + "maxdps": 256, + "hp": 1810, + "speed": 32 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 1600 + }, + { + "a": "hero", + "t": "5005", + "n": 1 + } + ], + "lv": 35, + "name": "intr_herogrow_name_4", + "describe": "intr_herogrow_describe_48" + }, + "5": { + "id": 5005, + "jieji": 5, + "jj_attr": { + "def": 200, + "undpspro": 0.06, + "speed": 20 + }, + "jj_allattr": {}, + "buff": { + "atk": 654, + "maxdps": 415, + "hp": 2835, + "speed": 45 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 3200 + }, + { + "a": "hero", + "t": "5005", + "n": 2 + } + ], + "lv": 40, + "name": "intr_herogrow_name_5", + "describe": "intr_herogrow_describe_49" + }, + "6": { + "id": 5005, + "jieji": 6, + "jj_attr": { + "def": 200, + "undpspro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 951, + "maxdps": 606, + "hp": 4085, + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 4800 + }, + { + "a": "hero", + "t": "5005", + "n": 4 + } + ], + "lv": 45, + "name": "intr_herogrow_name_6", + "describe": "intr_herogrow_describe_50" + }, + "7": { + "id": 5005, + "jieji": 7, + "jj_attr": { + "def": 200, + "undpspro": 0.06, + "speed": 20, + "hp": 3000 + }, + "jj_allattr": {}, + "buff": { + "atk": 1301, + "maxdps": 833, + "hp": 5575, + "speed": 77 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 6400 + }, + { + "a": "hero", + "t": "5005", + "n": 6 + } + ], + "lv": 50, + "name": "intr_herogrow_name_7", + "describe": "intr_herogrow_describe_51" + }, + "8": { + "id": 5005, + "jieji": 8, + "jj_attr": { + "def": 200, + "undpspro": 0.06, + "speed": 20, + "hp": 3000, + "atk": 1680 + }, + "jj_allattr": {}, + "buff": { + "atk": 1706, + "maxdps": 1095, + "hp": 7290, + "speed": 96 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 9600 + }, + { + "a": "hero", + "t": "5005", + "n": 8 + } + ], + "lv": 60, + "name": "intr_herogrow_name_8", + "describe": "intr_herogrow_describe_52" + }, + "9": { + "id": 5005, + "jieji": 9, + "jj_attr": { + "def": 200, + "undpspro": 0.06, + "speed": 20, + "hp": 3000, + "atk": 1680 + }, + "jj_allattr": {}, + "buff": { + "atk": 2166, + "maxdps": 1397, + "hp": 9230, + "speed": 117 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 12800 + }, + { + "a": "hero", + "t": "5005", + "n": 10 + } + ], + "lv": 70, + "name": "intr_herogrow_name_9", + "describe": "intr_herogrow_describe_53" + }, + "10": { + "id": 5005, + "jieji": 10, + "jj_attr": { + "def": 200, + "undpspro": 0.06, + "speed": 20, + "hp": 3000, + "atk": 1680, + "mingzhongpro": 0.15, + "pvpdpspro": 0.3 + }, + "jj_allattr": {}, + "buff": { + "atk": 2686, + "maxdps": 1729, + "hp": 11390, + "speed": 140 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 19200 + }, + { + "a": "hero", + "t": "5005", + "n": 12 + } + ], + "lv": 80, + "name": "intr_herogrow_name_10", + "describe": "intr_herogrow_describe_54" + }, + "11": { + "id": 5005, + "jieji": 11, + "jj_attr": { + "def": 200, + "undpspro": 0.06, + "speed": 20, + "hp": 3000, + "atk": 1680, + "mingzhongpro": 0.15, + "pvpdpspro": 0.3 + }, + "jj_allattr": { + "atk": 1680 + }, + "buff": { + "atk": 3206, + "maxdps": 2061, + "hp": 13550, + "speed": 163 + }, + "need": [ + { + "a": "item", + "t": "12", + "n": 28000 + }, + { + "a": "hero", + "t": "5005", + "n": 14 + } + ], + "lv": 90, + "name": "intr_herogrow_name_11", + "describe": "intr_herogrow_describe_55" + } + } +} \ No newline at end of file diff --git a/src/json/herolv.json b/src/json/herolv.json new file mode 100644 index 0000000..cbb5085 --- /dev/null +++ b/src/json/herolv.json @@ -0,0 +1,431 @@ +{ + "1001": { + "id": 1001, + "buff": { + "atk": "13+(1.2*(lv-1))^1.6123", + "def": "9+(1*(lv-1))^1.6123", + "hp": "400+(5*(lv-1))^1.6123", + "speed": 6, + "mindps": "10+(0.8*(lv-1))^1.6123", + "maxdps": "15+(1*(lv-1))^1.6123" + } + }, + "1002": { + "id": 1002, + "buff": { + "atk": "10+(1.1*(lv-1))^1.6123", + "def": "12+(1.15*(lv-1))^1.6123", + "hp": "430+(6.1*(lv-1))^1.6123", + "speed": 4, + "mindps": "7+(0.7*(lv-1))^1.6123", + "maxdps": "12+(0.8*(lv-1))^1.6123" + } + }, + "2001": { + "id": 2001, + "buff": { + "atk": "14+(1.25*(lv-1))^1.6123", + "def": "10+(1*(lv-1))^1.6123", + "hp": "420+(6.4*(lv-1))^1.6123", + "speed": 7, + "mindps": "11+(0.8*(lv-1))^1.6123", + "maxdps": "16+(1.05*(lv-1))^1.6123" + } + }, + "2002": { + "id": 2002, + "buff": { + "atk": "13+(1.3*(lv-1))^1.6123", + "def": "12+(1*(lv-1))^1.6123", + "hp": "440+(6.4*(lv-1))^1.6123", + "speed": 8, + "mindps": "9+(0.75*(lv-1))^1.6123", + "maxdps": "13+(1.05*(lv-1))^1.6123" + } + }, + "3001": { + "id": 3001, + "buff": { + "atk": "50+(1.5*(lv-1))^1.6123", + "def": "12+(1*(lv-1))^1.6123", + "hp": "815+(6.8*(lv-1))^1.6123", + "speed": 16, + "mindps": "11+(0.92*(lv-1))^1.6123", + "maxdps": "18+(1.2*(lv-1))^1.6123" + } + }, + "3002": { + "id": 3002, + "buff": { + "atk": "50+(1.4*(lv-1))^1.6123", + "def": "12+(1.1*(lv-1))^1.6123", + "hp": "850+(6.9*(lv-1))^1.6123", + "speed": 15, + "mindps": "12+(0.9*(lv-1))^1.6123", + "maxdps": "18+(1.15*(lv-1))^1.6123" + } + }, + "3003": { + "id": 3003, + "buff": { + "atk": "17+(1.42*(lv-1))^1.6123", + "def": "12+(1.09*(lv-1))^1.6123", + "hp": "460+(6.8*(lv-1))^1.6123", + "speed": 14, + "mindps": "13+(0.91*(lv-1))^1.6123", + "maxdps": "16+(1.16*(lv-1))^1.6123" + } + }, + "3004": { + "id": 3004, + "buff": { + "atk": "15+(1.35*(lv-1))^1.6123", + "def": "12+(1.1*(lv-1))^1.6123", + "hp": "450+(6.6*(lv-1))^1.6123", + "speed": 18, + "mindps": "10+(0.8*(lv-1))^1.6123", + "maxdps": "16+(1.05*(lv-1))^1.6123" + } + }, + "3005": { + "id": 3005, + "buff": { + "atk": "50+(1.44*(lv-1))^1.6123", + "def": "15+(1.1*(lv-1))^1.6123", + "hp": "810+(6.6*(lv-1))^1.6123", + "speed": 16, + "mindps": "10+(0.9*(lv-1))^1.6123", + "maxdps": "16+(1.15*(lv-1))^1.6123" + } + }, + "3006": { + "id": 3006, + "buff": { + "atk": "15+(1.3*(lv-1))^1.6123", + "def": "11+(1.1*(lv-1))^1.6123", + "hp": "440+(6.3*(lv-1))^1.6123", + "speed": 14, + "mindps": "11+(0.85*(lv-1))^1.6123", + "maxdps": "18+(1.1*(lv-1))^1.6123" + } + }, + "3007": { + "id": 3007, + "buff": { + "atk": "16+(1.35*(lv-1))^1.6123", + "def": "12+(1.15*(lv-1))^1.6123", + "hp": "435+(6.1*(lv-1))^1.6123", + "speed": 17, + "mindps": "11+(0.8*(lv-1))^1.6123", + "maxdps": "16+(1.05*(lv-1))^1.6123" + } + }, + "3008": { + "id": 3008, + "buff": { + "atk": "15+(1.3*(lv-1))^1.6123", + "def": "11+(1.1*(lv-1))^1.6123", + "hp": "440+(6.3*(lv-1))^1.6123", + "speed": 14, + "mindps": "11+(0.85*(lv-1))^1.6123", + "maxdps": "18+(1.1*(lv-1))^1.6123" + } + }, + "3009": { + "id": 3009, + "buff": { + "atk": "50+(1.47*(lv-1))^1.6123", + "def": "12+(1.05*(lv-1))^1.6123", + "hp": "790+(7.3*(lv-1))^1.6123", + "speed": 19, + "mindps": "12+(0.87*(lv-1))^1.6123", + "maxdps": "17+(1.13*(lv-1))^1.6123" + } + }, + "3010": { + "id": 3010, + "buff": { + "atk": "50+(1.44*(lv-1))^1.6123", + "def": "11+(1.02*(lv-1))^1.6123", + "hp": "825+(7.1*(lv-1))^1.6123", + "speed": 15, + "mindps": "14+(0.93*(lv-1))^1.6123", + "maxdps": "18+(1.18*(lv-1))^1.6123" + } + }, + "3011": { + "id": 3011, + "buff": { + "atk": "14+(1.3*(lv-1))^1.6123", + "def": "11+(1.05*(lv-1))^1.6123", + "hp": "460+(7*(lv-1))^1.6123", + "speed": 11, + "mindps": "11+(0.9*(lv-1))^1.6123", + "maxdps": "16+(1*(lv-1))^1.6123" + } + }, + "3012": { + "id": 3012, + "buff": { + "atk": "50+(1.48*(lv-1))^1.6123", + "def": "11+(0.99*(lv-1))^1.6123", + "hp": "820+(7*(lv-1))^1.6123", + "speed": 14, + "mindps": "13+(0.92*(lv-1))^1.6123", + "maxdps": "17+(1.2*(lv-1))^1.6123" + } + }, + "3013": { + "id": 3013, + "buff": { + "atk": "50+(1.48*(lv-1))^1.6123", + "def": "12+(1.04*(lv-1))^1.6123", + "hp": "810+(7.1*(lv-1))^1.6123", + "speed": 18, + "mindps": "12+(0.88*(lv-1))^1.6123", + "maxdps": "18+(1.15*(lv-1))^1.6123" + } + }, + "3014": { + "id": 3014, + "buff": { + "atk": "14+(1.3*(lv-1))^1.6123", + "def": "13+(1.15*(lv-1))^1.6123", + "hp": "450+(6.7*(lv-1))^1.6123", + "speed": 7, + "mindps": "9+(0.92*(lv-1))^1.6123", + "maxdps": "17+(1.15*(lv-1))^1.6123" + } + }, + "3015": { + "id": 3015, + "buff": { + "atk": "16+(1.4*(lv-1))^1.6123", + "def": "15+(1.2*(lv-1))^1.6123", + "hp": "460+(7*(lv-1))^1.6123", + "speed": 19, + "mindps": "10+(0.8*(lv-1))^1.6123", + "maxdps": "16+(1.09*(lv-1))^1.6123" + } + }, + "4001": { + "id": 4001, + "buff": { + "atk": "50+(1.4*(lv-1))^1.6123", + "def": "12+(1.09*(lv-1))^1.6123", + "hp": "850+(7.4*(lv-1))^1.6123", + "speed": 12, + "mindps": "11+(0.9*(lv-1))^1.6123", + "maxdps": "18+(1.09*(lv-1))^1.6123" + } + }, + "4002": { + "id": 4002, + "buff": { + "atk": "50+(1.5*(lv-1))^1.6123", + "def": "11+(1.15*(lv-1))^1.6123", + "hp": "830+(7.6*(lv-1))^1.6123", + "speed": 16, + "mindps": "12+(0.95*(lv-1))^1.6123", + "maxdps": "17+(1.05*(lv-1))^1.6123" + } + }, + "4003": { + "id": 4003, + "buff": { + "atk": "19+(1.56*(lv-1))^1.6123", + "def": "11+(1.02*(lv-1))^1.6123", + "hp": "465+(6.9*(lv-1))^1.6123", + "speed": 21, + "mindps": "13+(0.95*(lv-1))^1.6123", + "maxdps": "15+(1.01*(lv-1))^1.6123" + } + }, + "4004": { + "id": 4004, + "buff": { + "atk": "17+(1.45*(lv-1))^1.6123", + "def": "11+(1.03*(lv-1))^1.6123", + "hp": "480+(7.3*(lv-1))^1.6123", + "speed": 15, + "mindps": "11+(0.93*(lv-1))^1.6123", + "maxdps": "17+(1.1*(lv-1))^1.6123" + } + }, + "4005": { + "id": 4005, + "buff": { + "atk": "50+(1.45*(lv-1))^1.6123", + "def": "13+(1.1*(lv-1))^1.6123", + "hp": "820+(7.2*(lv-1))^1.6123", + "speed": 18, + "mindps": "11+(0.85*(lv-1))^1.6123", + "maxdps": "17+(1.1*(lv-1))^1.6123" + } + }, + "4006": { + "id": 4006, + "buff": { + "atk": "50+(1.51*(lv-1))^1.6123", + "def": "12+(1.06*(lv-1))^1.6123", + "hp": "830+(7*(lv-1))^1.6123", + "speed": 18, + "mindps": "10+(0.84*(lv-1))^1.6123", + "maxdps": "18+(1.14*(lv-1))^1.6123" + } + }, + "4007": { + "id": 4007, + "buff": { + "atk": "16+(1.4*(lv-1))^1.6123", + "def": "11+(1*(lv-1))^1.6123", + "hp": "460+(6.2*(lv-1))^1.6123", + "speed": 15, + "mindps": "10+(0.9*(lv-1))^1.6123", + "maxdps": "15+(1.1*(lv-1))^1.6123" + } + }, + "4008": { + "id": 4008, + "buff": { + "atk": "16+(1.45*(lv-1))^1.6123", + "def": "12+(1.05*(lv-1))^1.6123", + "hp": "450+(6.7*(lv-1))^1.6123", + "speed": 22, + "mindps": "15+(1.03*(lv-1))^1.6123", + "maxdps": "17+(1.04*(lv-1))^1.6123" + } + }, + "4009": { + "id": 4009, + "buff": { + "atk": "50+(1.42*(lv-1))^1.6123", + "def": "12+(1.09*(lv-1))^1.6123", + "hp": "815+(6.8*(lv-1))^1.6123", + "speed": 14, + "mindps": "13+(0.91*(lv-1))^1.6123", + "maxdps": "16+(1.16*(lv-1))^1.6123" + } + }, + "4010": { + "id": 4010, + "buff": { + "atk": "16+(1.45*(lv-1))^1.6123", + "def": "13+(1.15*(lv-1))^1.6123", + "hp": "470+(7.5*(lv-1))^1.6123", + "speed": 17, + "mindps": "10+(0.85*(lv-1))^1.6123", + "maxdps": "18+(1.1*(lv-1))^1.6123" + } + }, + "4011": { + "id": 4011, + "buff": { + "atk": "50+(1.41*(lv-1))^1.6123", + "def": "11+(1.12*(lv-1))^1.6123", + "hp": "810+(6.5*(lv-1))^1.6123", + "speed": 18, + "mindps": "14+(0.92*(lv-1))^1.6123", + "maxdps": "20+(1.15*(lv-1))^1.6123" + } + }, + "4012": { + "id": 4012, + "buff": { + "atk": "50+(1.4*(lv-1))^1.6123", + "def": "11+(1*(lv-1))^1.6123", + "hp": "825+(7.5*(lv-1))^1.6123", + "speed": 17, + "mindps": "12+(0.97*(lv-1))^1.6123", + "maxdps": "16+(1.13*(lv-1))^1.6123" + } + }, + "4013": { + "id": 4013, + "buff": { + "atk": "14+(1.3*(lv-1))^1.6123", + "def": "13+(1.15*(lv-1))^1.6123", + "hp": "450+(6.7*(lv-1))^1.6123", + "speed": 7, + "mindps": "9+(0.85*(lv-1))^1.6123", + "maxdps": "17+(0.95*(lv-1))^1.6123" + } + }, + "4014": { + "id": 4014, + "buff": { + "atk": "16+(1.38*(lv-1))^1.6123", + "def": "13+(1.11*(lv-1))^1.6123", + "hp": "445+(6.5*(lv-1))^1.6123", + "speed": 15, + "mindps": "14+(0.95*(lv-1))^1.6123", + "maxdps": "17+(1.17*(lv-1))^1.6123" + } + }, + "4015": { + "id": 4015, + "buff": { + "atk": "50+(1.42*(lv-1))^1.6123", + "def": "13+(1.05*(lv-1))^1.6123", + "hp": "820+(7.1*(lv-1))^1.6123", + "speed": 15, + "mindps": "10+(0.91*(lv-1))^1.6123", + "maxdps": "17+(1.17*(lv-1))^1.6123" + } + }, + "5001": { + "id": 5001, + "buff": { + "atk": "100+(1.6*(lv-1))^1.6123", + "def": "10+(1.2*(lv-1))^1.6123", + "hp": "1475+(7.6*(lv-1))^1.6123", + "speed": 20, + "mindps": "11+(1*(lv-1))^1.6123", + "maxdps": "18+(1.2*(lv-1))^1.6123" + } + }, + "5002": { + "id": 5002, + "buff": { + "atk": "100+(1.6*(lv-1))^1.6123", + "def": "10+(1.2*(lv-1))^1.6123", + "hp": "1475+(7.6*(lv-1))^1.6123", + "speed": 20, + "mindps": "11+(1*(lv-1))^1.6123", + "maxdps": "18+(1.2*(lv-1))^1.6123" + } + }, + "5003": { + "id": 5003, + "buff": { + "atk": "100+(1.6*(lv-1))^1.6123", + "def": "10+(1.2*(lv-1))^1.6123", + "hp": "1475+(7.6*(lv-1))^1.6123", + "speed": 20, + "mindps": "11+(1*(lv-1))^1.6123", + "maxdps": "18+(1.2*(lv-1))^1.6123" + } + }, + "5004": { + "id": 5004, + "buff": { + "atk": "217+(1.6*(lv-1))^1.6123", + "def": "31+(1.2*(lv-1))^1.6123", + "hp": "2010+(7.6*(lv-1))^1.6123", + "speed": 25, + "mindps": "21+(1*(lv-1))^1.6123", + "maxdps": "30+(1.2*(lv-1))^1.6123" + } + }, + "5005": { + "id": 5005, + "buff": { + "atk": "100+(1.6*(lv-1))^1.6123", + "def": "10+(1.2*(lv-1))^1.6123", + "hp": "1475+(7.6*(lv-1))^1.6123", + "speed": 20, + "mindps": "11+(1*(lv-1))^1.6123", + "maxdps": "18+(1.2*(lv-1))^1.6123" + } + } +} \ No newline at end of file diff --git a/src/json/herolvup.json b/src/json/herolvup.json new file mode 100644 index 0000000..fd1fa8c --- /dev/null +++ b/src/json/herolvup.json @@ -0,0 +1,5002 @@ +{ + "1": { + "lv": 1, + "expneed": 100, + "jinbineed": 2000 + }, + "2": { + "lv": 2, + "expneed": 100, + "jinbineed": 2000 + }, + "3": { + "lv": 3, + "expneed": 100, + "jinbineed": 2000 + }, + "4": { + "lv": 4, + "expneed": 100, + "jinbineed": 2000 + }, + "5": { + "lv": 5, + "expneed": 100, + "jinbineed": 2000 + }, + "6": { + "lv": 6, + "expneed": 100, + "jinbineed": 2000 + }, + "7": { + "lv": 7, + "expneed": 100, + "jinbineed": 2000 + }, + "8": { + "lv": 8, + "expneed": 100, + "jinbineed": 2000 + }, + "9": { + "lv": 9, + "expneed": 100, + "jinbineed": 2000 + }, + "10": { + "lv": 10, + "expneed": 100, + "jinbineed": 2000 + }, + "11": { + "lv": 11, + "expneed": 110, + "jinbineed": 2000 + }, + "12": { + "lv": 12, + "expneed": 130, + "jinbineed": 2000 + }, + "13": { + "lv": 13, + "expneed": 140, + "jinbineed": 2000 + }, + "14": { + "lv": 14, + "expneed": 160, + "jinbineed": 2000 + }, + "15": { + "lv": 15, + "expneed": 170, + "jinbineed": 2000 + }, + "16": { + "lv": 16, + "expneed": 250, + "jinbineed": 2000 + }, + "17": { + "lv": 17, + "expneed": 270, + "jinbineed": 2000 + }, + "18": { + "lv": 18, + "expneed": 290, + "jinbineed": 2000 + }, + "19": { + "lv": 19, + "expneed": 320, + "jinbineed": 2000 + }, + "20": { + "lv": 20, + "expneed": 320, + "jinbineed": 2000 + }, + "21": { + "lv": 21, + "expneed": 570, + "jinbineed": 2000 + }, + "22": { + "lv": 22, + "expneed": 640, + "jinbineed": 2000 + }, + "23": { + "lv": 23, + "expneed": 710, + "jinbineed": 2000 + }, + "24": { + "lv": 24, + "expneed": 790, + "jinbineed": 2000 + }, + "25": { + "lv": 25, + "expneed": 850, + "jinbineed": 2000 + }, + "26": { + "lv": 26, + "expneed": 1200, + "jinbineed": 2000 + }, + "27": { + "lv": 27, + "expneed": 1300, + "jinbineed": 2000 + }, + "28": { + "lv": 28, + "expneed": 1400, + "jinbineed": 2000 + }, + "29": { + "lv": 29, + "expneed": 1500, + "jinbineed": 2000 + }, + "30": { + "lv": 30, + "expneed": 1600, + "jinbineed": 2000 + }, + "31": { + "lv": 31, + "expneed": 2200, + "jinbineed": 2000 + }, + "32": { + "lv": 32, + "expneed": 2300, + "jinbineed": 2000 + }, + "33": { + "lv": 33, + "expneed": 2400, + "jinbineed": 2000 + }, + "34": { + "lv": 34, + "expneed": 2500, + "jinbineed": 2000 + }, + "35": { + "lv": 35, + "expneed": 2600, + "jinbineed": 2000 + }, + "36": { + "lv": 36, + "expneed": 3300, + "jinbineed": 2000 + }, + "37": { + "lv": 37, + "expneed": 3500, + "jinbineed": 2000 + }, + "38": { + "lv": 38, + "expneed": 3600, + "jinbineed": 2000 + }, + "39": { + "lv": 39, + "expneed": 3700, + "jinbineed": 2000 + }, + "40": { + "lv": 40, + "expneed": 3900, + "jinbineed": 2000 + }, + "41": { + "lv": 41, + "expneed": 4700, + "jinbineed": 2350 + }, + "42": { + "lv": 42, + "expneed": 4900, + "jinbineed": 2450 + }, + "43": { + "lv": 43, + "expneed": 5000, + "jinbineed": 2500 + }, + "44": { + "lv": 44, + "expneed": 5200, + "jinbineed": 2600 + }, + "45": { + "lv": 45, + "expneed": 5400, + "jinbineed": 2700 + }, + "46": { + "lv": 46, + "expneed": 6300, + "jinbineed": 3150 + }, + "47": { + "lv": 47, + "expneed": 6500, + "jinbineed": 3250 + }, + "48": { + "lv": 48, + "expneed": 6700, + "jinbineed": 3350 + }, + "49": { + "lv": 49, + "expneed": 6900, + "jinbineed": 3450 + }, + "50": { + "lv": 50, + "expneed": 7300, + "jinbineed": 3650 + }, + "51": { + "lv": 51, + "expneed": 8600, + "jinbineed": 4300 + }, + "52": { + "lv": 52, + "expneed": 9100, + "jinbineed": 4550 + }, + "53": { + "lv": 53, + "expneed": 10600, + "jinbineed": 5300 + }, + "54": { + "lv": 54, + "expneed": 11000, + "jinbineed": 5500 + }, + "55": { + "lv": 55, + "expneed": 11500, + "jinbineed": 5750 + }, + "56": { + "lv": 56, + "expneed": 12000, + "jinbineed": 6000 + }, + "57": { + "lv": 57, + "expneed": 12500, + "jinbineed": 6250 + }, + "58": { + "lv": 58, + "expneed": 14200, + "jinbineed": 7100 + }, + "59": { + "lv": 59, + "expneed": 14800, + "jinbineed": 7400 + }, + "60": { + "lv": 60, + "expneed": 15300, + "jinbineed": 7650 + }, + "61": { + "lv": 61, + "expneed": 16100, + "jinbineed": 8050 + }, + "62": { + "lv": 62, + "expneed": 16900, + "jinbineed": 8450 + }, + "63": { + "lv": 63, + "expneed": 19300, + "jinbineed": 9650 + }, + "64": { + "lv": 64, + "expneed": 20200, + "jinbineed": 10100 + }, + "65": { + "lv": 65, + "expneed": 21000, + "jinbineed": 10500 + }, + "66": { + "lv": 66, + "expneed": 23700, + "jinbineed": 11850 + }, + "67": { + "lv": 67, + "expneed": 24600, + "jinbineed": 12300 + }, + "68": { + "lv": 68, + "expneed": 27500, + "jinbineed": 13750 + }, + "69": { + "lv": 69, + "expneed": 28600, + "jinbineed": 14300 + }, + "70": { + "lv": 70, + "expneed": 29600, + "jinbineed": 14800 + }, + "71": { + "lv": 71, + "expneed": 30900, + "jinbineed": 15450 + }, + "72": { + "lv": 72, + "expneed": 32300, + "jinbineed": 16150 + }, + "73": { + "lv": 73, + "expneed": 36000, + "jinbineed": 18000 + }, + "74": { + "lv": 74, + "expneed": 37400, + "jinbineed": 18700 + }, + "75": { + "lv": 75, + "expneed": 38900, + "jinbineed": 19450 + }, + "76": { + "lv": 76, + "expneed": 40300, + "jinbineed": 20150 + }, + "77": { + "lv": 77, + "expneed": 41800, + "jinbineed": 20900 + }, + "78": { + "lv": 78, + "expneed": 46100, + "jinbineed": 23050 + }, + "79": { + "lv": 79, + "expneed": 47600, + "jinbineed": 23800 + }, + "80": { + "lv": 80, + "expneed": 49100, + "jinbineed": 24550 + }, + "81": { + "lv": 81, + "expneed": 54300, + "jinbineed": 27150 + }, + "82": { + "lv": 82, + "expneed": 56300, + "jinbineed": 28150 + }, + "83": { + "lv": 83, + "expneed": 61800, + "jinbineed": 30900 + }, + "84": { + "lv": 84, + "expneed": 63900, + "jinbineed": 31950 + }, + "85": { + "lv": 85, + "expneed": 66100, + "jinbineed": 33050 + }, + "86": { + "lv": 86, + "expneed": 72000, + "jinbineed": 36000 + }, + "87": { + "lv": 87, + "expneed": 74300, + "jinbineed": 37150 + }, + "88": { + "lv": 88, + "expneed": 80600, + "jinbineed": 40300 + }, + "89": { + "lv": 89, + "expneed": 83000, + "jinbineed": 41500 + }, + "90": { + "lv": 90, + "expneed": 85400, + "jinbineed": 42700 + }, + "91": { + "lv": 91, + "expneed": 92700, + "jinbineed": 46350 + }, + "92": { + "lv": 92, + "expneed": 95800, + "jinbineed": 47900 + }, + "93": { + "lv": 93, + "expneed": 107000, + "jinbineed": 53500 + }, + "94": { + "lv": 94, + "expneed": 107500, + "jinbineed": 53750 + }, + "95": { + "lv": 95, + "expneed": 108500, + "jinbineed": 54250 + }, + "96": { + "lv": 96, + "expneed": 122000, + "jinbineed": 61000 + }, + "97": { + "lv": 97, + "expneed": 120500, + "jinbineed": 60250 + }, + "98": { + "lv": 98, + "expneed": 129500, + "jinbineed": 64750 + }, + "99": { + "lv": 99, + "expneed": 137000, + "jinbineed": 68500 + }, + "100": { + "lv": 100, + "expneed": 136500, + "jinbineed": 68250 + }, + "101": { + "lv": 101, + "expneed": 147500, + "jinbineed": 73750 + }, + "102": { + "lv": 102, + "expneed": 158000, + "jinbineed": 79000 + }, + "103": { + "lv": 103, + "expneed": 165500, + "jinbineed": 82750 + }, + "104": { + "lv": 104, + "expneed": 171500, + "jinbineed": 85750 + }, + "105": { + "lv": 105, + "expneed": 181000, + "jinbineed": 90500 + }, + "106": { + "lv": 106, + "expneed": 190500, + "jinbineed": 95250 + }, + "107": { + "lv": 107, + "expneed": 195500, + "jinbineed": 97750 + }, + "108": { + "lv": 108, + "expneed": 215000, + "jinbineed": 107500 + }, + "109": { + "lv": 109, + "expneed": 216500, + "jinbineed": 108250 + }, + "110": { + "lv": 110, + "expneed": 222500, + "jinbineed": 111250 + }, + "111": { + "lv": 111, + "expneed": 242000, + "jinbineed": 121000 + }, + "112": { + "lv": 112, + "expneed": 243500, + "jinbineed": 121750 + }, + "113": { + "lv": 113, + "expneed": 259500, + "jinbineed": 129750 + }, + "114": { + "lv": 114, + "expneed": 270000, + "jinbineed": 135000 + }, + "115": { + "lv": 115, + "expneed": 265500, + "jinbineed": 132750 + }, + "116": { + "lv": 116, + "expneed": 289500, + "jinbineed": 144750 + }, + "117": { + "lv": 117, + "expneed": 301000, + "jinbineed": 150500 + }, + "118": { + "lv": 118, + "expneed": 308500, + "jinbineed": 154250 + }, + "119": { + "lv": 119, + "expneed": 309500, + "jinbineed": 154750 + }, + "120": { + "lv": 120, + "expneed": 315000, + "jinbineed": 157500 + }, + "121": { + "lv": 121, + "expneed": 322500, + "jinbineed": 161250 + }, + "122": { + "lv": 122, + "expneed": 324500, + "jinbineed": 162250 + }, + "123": { + "lv": 123, + "expneed": 341000, + "jinbineed": 170500 + }, + "124": { + "lv": 124, + "expneed": 338500, + "jinbineed": 169250 + }, + "125": { + "lv": 125, + "expneed": 339500, + "jinbineed": 169750 + }, + "126": { + "lv": 126, + "expneed": 357000, + "jinbineed": 178500 + }, + "127": { + "lv": 127, + "expneed": 353500, + "jinbineed": 176750 + }, + "128": { + "lv": 128, + "expneed": 366500, + "jinbineed": 183250 + }, + "129": { + "lv": 129, + "expneed": 373000, + "jinbineed": 186500 + }, + "130": { + "lv": 130, + "expneed": 369500, + "jinbineed": 184750 + }, + "131": { + "lv": 131, + "expneed": 382500, + "jinbineed": 191250 + }, + "132": { + "lv": 132, + "expneed": 389000, + "jinbineed": 194500 + }, + "133": { + "lv": 133, + "expneed": 397500, + "jinbineed": 198750 + }, + "134": { + "lv": 134, + "expneed": 398500, + "jinbineed": 199250 + }, + "135": { + "lv": 135, + "expneed": 405000, + "jinbineed": 202500 + }, + "136": { + "lv": 136, + "expneed": 413500, + "jinbineed": 206750 + }, + "137": { + "lv": 137, + "expneed": 414500, + "jinbineed": 207250 + }, + "138": { + "lv": 138, + "expneed": 419000, + "jinbineed": 209500 + }, + "139": { + "lv": 139, + "expneed": 415500, + "jinbineed": 207750 + }, + "140": { + "lv": 140, + "expneed": 427500, + "jinbineed": 213750 + }, + "141": { + "lv": 141, + "expneed": 432000, + "jinbineed": 216000 + }, + "142": { + "lv": 142, + "expneed": 428500, + "jinbineed": 214250 + }, + "143": { + "lv": 143, + "expneed": 429500, + "jinbineed": 214750 + }, + "144": { + "lv": 144, + "expneed": 435000, + "jinbineed": 217500 + }, + "145": { + "lv": 145, + "expneed": 431500, + "jinbineed": 215750 + }, + "146": { + "lv": 146, + "expneed": 443500, + "jinbineed": 221750 + }, + "147": { + "lv": 147, + "expneed": 449000, + "jinbineed": 224500 + }, + "148": { + "lv": 148, + "expneed": 445500, + "jinbineed": 222750 + }, + "149": { + "lv": 149, + "expneed": 446500, + "jinbineed": 223250 + }, + "150": { + "lv": 150, + "expneed": 464000, + "jinbineed": 232000 + }, + "151": { + "lv": 151, + "expneed": 460500, + "jinbineed": 230250 + }, + "152": { + "lv": 152, + "expneed": 461500, + "jinbineed": 230750 + }, + "153": { + "lv": 153, + "expneed": 467000, + "jinbineed": 233500 + }, + "154": { + "lv": 154, + "expneed": 463500, + "jinbineed": 231750 + }, + "155": { + "lv": 155, + "expneed": 476500, + "jinbineed": 238250 + }, + "156": { + "lv": 156, + "expneed": 482000, + "jinbineed": 241000 + }, + "157": { + "lv": 157, + "expneed": 478500, + "jinbineed": 239250 + }, + "158": { + "lv": 158, + "expneed": 478500, + "jinbineed": 239250 + }, + "159": { + "lv": 159, + "expneed": 484000, + "jinbineed": 242000 + }, + "160": { + "lv": 160, + "expneed": 492500, + "jinbineed": 246250 + }, + "161": { + "lv": 161, + "expneed": 493500, + "jinbineed": 246750 + }, + "162": { + "lv": 162, + "expneed": 499000, + "jinbineed": 249500 + }, + "163": { + "lv": 163, + "expneed": 495500, + "jinbineed": 247750 + }, + "164": { + "lv": 164, + "expneed": 496500, + "jinbineed": 248250 + }, + "165": { + "lv": 165, + "expneed": 515000, + "jinbineed": 257500 + }, + "166": { + "lv": 166, + "expneed": 511500, + "jinbineed": 255750 + }, + "167": { + "lv": 167, + "expneed": 512500, + "jinbineed": 256250 + }, + "168": { + "lv": 168, + "expneed": 518000, + "jinbineed": 259000 + }, + "169": { + "lv": 169, + "expneed": 514500, + "jinbineed": 257250 + }, + "170": { + "lv": 170, + "expneed": 527500, + "jinbineed": 263750 + }, + "171": { + "lv": 171, + "expneed": 533000, + "jinbineed": 266500 + }, + "172": { + "lv": 172, + "expneed": 529500, + "jinbineed": 264750 + }, + "173": { + "lv": 173, + "expneed": 530500, + "jinbineed": 265250 + }, + "174": { + "lv": 174, + "expneed": 536000, + "jinbineed": 268000 + }, + "175": { + "lv": 175, + "expneed": 544500, + "jinbineed": 272250 + }, + "176": { + "lv": 176, + "expneed": 546500, + "jinbineed": 273250 + }, + "177": { + "lv": 177, + "expneed": 552000, + "jinbineed": 276000 + }, + "178": { + "lv": 178, + "expneed": 548500, + "jinbineed": 274250 + }, + "179": { + "lv": 179, + "expneed": 549500, + "jinbineed": 274750 + }, + "180": { + "lv": 180, + "expneed": 567000, + "jinbineed": 283500 + }, + "181": { + "lv": 181, + "expneed": 563500, + "jinbineed": 281750 + }, + "182": { + "lv": 182, + "expneed": 564500, + "jinbineed": 282250 + }, + "183": { + "lv": 183, + "expneed": 583000, + "jinbineed": 291500 + }, + "184": { + "lv": 184, + "expneed": 579500, + "jinbineed": 289750 + }, + "185": { + "lv": 185, + "expneed": 593500, + "jinbineed": 296750 + }, + "186": { + "lv": 186, + "expneed": 599000, + "jinbineed": 299500 + }, + "187": { + "lv": 187, + "expneed": 595500, + "jinbineed": 297750 + }, + "188": { + "lv": 188, + "expneed": 609500, + "jinbineed": 304750 + }, + "189": { + "lv": 189, + "expneed": 615000, + "jinbineed": 307500 + }, + "190": { + "lv": 190, + "expneed": 624500, + "jinbineed": 312250 + }, + "191": { + "lv": 191, + "expneed": 625500, + "jinbineed": 312750 + }, + "192": { + "lv": 192, + "expneed": 631000, + "jinbineed": 315500 + }, + "193": { + "lv": 193, + "expneed": 640500, + "jinbineed": 320250 + }, + "194": { + "lv": 194, + "expneed": 642500, + "jinbineed": 321250 + }, + "195": { + "lv": 195, + "expneed": 661000, + "jinbineed": 330500 + }, + "196": { + "lv": 196, + "expneed": 656500, + "jinbineed": 328250 + }, + "197": { + "lv": 197, + "expneed": 658500, + "jinbineed": 329250 + }, + "198": { + "lv": 198, + "expneed": 677000, + "jinbineed": 338500 + }, + "199": { + "lv": 199, + "expneed": 675500, + "jinbineed": 337750 + }, + "200": { + "lv": 200, + "expneed": 681800, + "jinbineed": 340900 + }, + "201": { + "lv": 201, + "expneed": 692600, + "jinbineed": 346300 + }, + "202": { + "lv": 202, + "expneed": 694400, + "jinbineed": 347200 + }, + "203": { + "lv": 203, + "expneed": 700700, + "jinbineed": 350350 + }, + "204": { + "lv": 204, + "expneed": 711500, + "jinbineed": 355750 + }, + "205": { + "lv": 205, + "expneed": 713300, + "jinbineed": 356650 + }, + "206": { + "lv": 206, + "expneed": 719600, + "jinbineed": 359800 + }, + "207": { + "lv": 207, + "expneed": 730400, + "jinbineed": 365200 + }, + "208": { + "lv": 208, + "expneed": 732200, + "jinbineed": 366100 + }, + "209": { + "lv": 209, + "expneed": 738500, + "jinbineed": 369250 + }, + "210": { + "lv": 210, + "expneed": 749300, + "jinbineed": 374650 + }, + "211": { + "lv": 211, + "expneed": 751100, + "jinbineed": 375550 + }, + "212": { + "lv": 212, + "expneed": 757400, + "jinbineed": 378700 + }, + "213": { + "lv": 213, + "expneed": 768200, + "jinbineed": 384100 + }, + "214": { + "lv": 214, + "expneed": 770000, + "jinbineed": 385000 + }, + "215": { + "lv": 215, + "expneed": 776300, + "jinbineed": 388150 + }, + "216": { + "lv": 216, + "expneed": 787100, + "jinbineed": 393550 + }, + "217": { + "lv": 217, + "expneed": 788900, + "jinbineed": 394450 + }, + "218": { + "lv": 218, + "expneed": 795200, + "jinbineed": 397600 + }, + "219": { + "lv": 219, + "expneed": 806000, + "jinbineed": 403000 + }, + "220": { + "lv": 220, + "expneed": 807800, + "jinbineed": 403900 + }, + "221": { + "lv": 221, + "expneed": 814100, + "jinbineed": 407050 + }, + "222": { + "lv": 222, + "expneed": 824900, + "jinbineed": 412450 + }, + "223": { + "lv": 223, + "expneed": 826700, + "jinbineed": 413350 + }, + "224": { + "lv": 224, + "expneed": 833000, + "jinbineed": 416500 + }, + "225": { + "lv": 225, + "expneed": 843800, + "jinbineed": 421900 + }, + "226": { + "lv": 226, + "expneed": 845600, + "jinbineed": 422800 + }, + "227": { + "lv": 227, + "expneed": 851900, + "jinbineed": 425950 + }, + "228": { + "lv": 228, + "expneed": 862700, + "jinbineed": 431350 + }, + "229": { + "lv": 229, + "expneed": 864500, + "jinbineed": 432250 + }, + "230": { + "lv": 230, + "expneed": 870800, + "jinbineed": 435400 + }, + "231": { + "lv": 231, + "expneed": 881600, + "jinbineed": 440800 + }, + "232": { + "lv": 232, + "expneed": 883400, + "jinbineed": 441700 + }, + "233": { + "lv": 233, + "expneed": 889700, + "jinbineed": 444850 + }, + "234": { + "lv": 234, + "expneed": 900500, + "jinbineed": 450250 + }, + "235": { + "lv": 235, + "expneed": 902300, + "jinbineed": 451150 + }, + "236": { + "lv": 236, + "expneed": 908600, + "jinbineed": 454300 + }, + "237": { + "lv": 237, + "expneed": 919400, + "jinbineed": 459700 + }, + "238": { + "lv": 238, + "expneed": 921200, + "jinbineed": 460600 + }, + "239": { + "lv": 239, + "expneed": 927500, + "jinbineed": 463750 + }, + "240": { + "lv": 240, + "expneed": 938300, + "jinbineed": 469150 + }, + "241": { + "lv": 241, + "expneed": 940100, + "jinbineed": 470050 + }, + "242": { + "lv": 242, + "expneed": 946400, + "jinbineed": 473200 + }, + "243": { + "lv": 243, + "expneed": 957200, + "jinbineed": 478600 + }, + "244": { + "lv": 244, + "expneed": 959000, + "jinbineed": 479500 + }, + "245": { + "lv": 245, + "expneed": 965300, + "jinbineed": 482650 + }, + "246": { + "lv": 246, + "expneed": 976100, + "jinbineed": 488050 + }, + "247": { + "lv": 247, + "expneed": 977900, + "jinbineed": 488950 + }, + "248": { + "lv": 248, + "expneed": 984200, + "jinbineed": 492100 + }, + "249": { + "lv": 249, + "expneed": 995000, + "jinbineed": 497500 + }, + "250": { + "lv": 250, + "expneed": 996800, + "jinbineed": 498400 + }, + "251": { + "lv": 251, + "expneed": 1007600, + "jinbineed": 503800 + }, + "252": { + "lv": 252, + "expneed": 1009400, + "jinbineed": 504700 + }, + "253": { + "lv": 253, + "expneed": 1015700, + "jinbineed": 507850 + }, + "254": { + "lv": 254, + "expneed": 1026500, + "jinbineed": 513250 + }, + "255": { + "lv": 255, + "expneed": 1028300, + "jinbineed": 514150 + }, + "256": { + "lv": 256, + "expneed": 1050000, + "jinbineed": 525000 + }, + "257": { + "lv": 257, + "expneed": 1100000, + "jinbineed": 550000 + }, + "258": { + "lv": 258, + "expneed": 1200000, + "jinbineed": 600000 + }, + "259": { + "lv": 259, + "expneed": 1300000, + "jinbineed": 650000 + }, + "260": { + "lv": 260, + "expneed": 1400000, + "jinbineed": 700000 + }, + "261": { + "lv": 261, + "expneed": 1500000, + "jinbineed": 750000 + }, + "262": { + "lv": 262, + "expneed": 1600000, + "jinbineed": 800000 + }, + "263": { + "lv": 263, + "expneed": 1700000, + "jinbineed": 850000 + }, + "264": { + "lv": 264, + "expneed": 1800000, + "jinbineed": 900000 + }, + "265": { + "lv": 265, + "expneed": 1900000, + "jinbineed": 950000 + }, + "266": { + "lv": 266, + "expneed": 2000000, + "jinbineed": 1000000 + }, + "267": { + "lv": 267, + "expneed": 2100000, + "jinbineed": 1050000 + }, + "268": { + "lv": 268, + "expneed": 2200000, + "jinbineed": 1100000 + }, + "269": { + "lv": 269, + "expneed": 2300000, + "jinbineed": 1150000 + }, + "270": { + "lv": 270, + "expneed": 2400000, + "jinbineed": 1200000 + }, + "271": { + "lv": 271, + "expneed": 2500000, + "jinbineed": 1250000 + }, + "272": { + "lv": 272, + "expneed": 2650000, + "jinbineed": 1325000 + }, + "273": { + "lv": 273, + "expneed": 2800000, + "jinbineed": 1400000 + }, + "274": { + "lv": 274, + "expneed": 2950000, + "jinbineed": 1475000 + }, + "275": { + "lv": 275, + "expneed": 3100000, + "jinbineed": 1550000 + }, + "276": { + "lv": 276, + "expneed": 3250000, + "jinbineed": 1625000 + }, + "277": { + "lv": 277, + "expneed": 3400000, + "jinbineed": 1700000 + }, + "278": { + "lv": 278, + "expneed": 3550000, + "jinbineed": 1775000 + }, + "279": { + "lv": 279, + "expneed": 3700000, + "jinbineed": 1850000 + }, + "280": { + "lv": 280, + "expneed": 3850000, + "jinbineed": 1925000 + }, + "281": { + "lv": 281, + "expneed": 4000000, + "jinbineed": 2000000 + }, + "282": { + "lv": 282, + "expneed": 4150000, + "jinbineed": 2075000 + }, + "283": { + "lv": 283, + "expneed": 4300000, + "jinbineed": 2150000 + }, + "284": { + "lv": 284, + "expneed": 4450000, + "jinbineed": 2225000 + }, + "285": { + "lv": 285, + "expneed": 4600000, + "jinbineed": 2300000 + }, + "286": { + "lv": 286, + "expneed": 4800000, + "jinbineed": 2400000 + }, + "287": { + "lv": 287, + "expneed": 5000000, + "jinbineed": 2500000 + }, + "288": { + "lv": 288, + "expneed": 5200000, + "jinbineed": 2600000 + }, + "289": { + "lv": 289, + "expneed": 5400000, + "jinbineed": 2700000 + }, + "290": { + "lv": 290, + "expneed": 5600000, + "jinbineed": 2800000 + }, + "291": { + "lv": 291, + "expneed": 5800000, + "jinbineed": 2900000 + }, + "292": { + "lv": 292, + "expneed": 6000000, + "jinbineed": 3000000 + }, + "293": { + "lv": 293, + "expneed": 6200000, + "jinbineed": 3100000 + }, + "294": { + "lv": 294, + "expneed": 6400000, + "jinbineed": 3200000 + }, + "295": { + "lv": 295, + "expneed": 6600000, + "jinbineed": 3300000 + }, + "296": { + "lv": 296, + "expneed": 6800000, + "jinbineed": 3400000 + }, + "297": { + "lv": 297, + "expneed": 7000000, + "jinbineed": 3500000 + }, + "298": { + "lv": 298, + "expneed": 7200000, + "jinbineed": 3600000 + }, + "299": { + "lv": 299, + "expneed": 7400000, + "jinbineed": 3700000 + }, + "300": { + "lv": 300, + "expneed": 7600000, + "jinbineed": 3800000 + }, + "301": { + "lv": 301, + "expneed": 7800000, + "jinbineed": 3900000 + }, + "302": { + "lv": 302, + "expneed": 8000000, + "jinbineed": 4000000 + }, + "303": { + "lv": 303, + "expneed": 8200000, + "jinbineed": 4100000 + }, + "304": { + "lv": 304, + "expneed": 8400000, + "jinbineed": 4200000 + }, + "305": { + "lv": 305, + "expneed": 8600000, + "jinbineed": 4300000 + }, + "306": { + "lv": 306, + "expneed": 8800000, + "jinbineed": 4400000 + }, + "307": { + "lv": 307, + "expneed": 9000000, + "jinbineed": 4500000 + }, + "308": { + "lv": 308, + "expneed": 9200000, + "jinbineed": 4600000 + }, + "309": { + "lv": 309, + "expneed": 9400000, + "jinbineed": 4700000 + }, + "310": { + "lv": 310, + "expneed": 9600000, + "jinbineed": 4800000 + }, + "311": { + "lv": 311, + "expneed": 9800000, + "jinbineed": 4900000 + }, + "312": { + "lv": 312, + "expneed": 10000000, + "jinbineed": 5000000 + }, + "313": { + "lv": 313, + "expneed": 10200000, + "jinbineed": 5100000 + }, + "314": { + "lv": 314, + "expneed": 10400000, + "jinbineed": 5200000 + }, + "315": { + "lv": 315, + "expneed": 10600000, + "jinbineed": 5300000 + }, + "316": { + "lv": 316, + "expneed": 10800000, + "jinbineed": 5400000 + }, + "317": { + "lv": 317, + "expneed": 11000000, + "jinbineed": 5500000 + }, + "318": { + "lv": 318, + "expneed": 11200000, + "jinbineed": 5600000 + }, + "319": { + "lv": 319, + "expneed": 11400000, + "jinbineed": 5700000 + }, + "320": { + "lv": 320, + "expneed": 11600000, + "jinbineed": 5800000 + }, + "321": { + "lv": 321, + "expneed": 11800000, + "jinbineed": 5900000 + }, + "322": { + "lv": 322, + "expneed": 12000000, + "jinbineed": 6000000 + }, + "323": { + "lv": 323, + "expneed": 12200000, + "jinbineed": 6100000 + }, + "324": { + "lv": 324, + "expneed": 12400000, + "jinbineed": 6200000 + }, + "325": { + "lv": 325, + "expneed": 12600000, + "jinbineed": 6300000 + }, + "326": { + "lv": 326, + "expneed": 12800000, + "jinbineed": 6400000 + }, + "327": { + "lv": 327, + "expneed": 13000000, + "jinbineed": 6500000 + }, + "328": { + "lv": 328, + "expneed": 13200000, + "jinbineed": 6600000 + }, + "329": { + "lv": 329, + "expneed": 13400000, + "jinbineed": 6700000 + }, + "330": { + "lv": 330, + "expneed": 13600000, + "jinbineed": 6800000 + }, + "331": { + "lv": 331, + "expneed": 13800000, + "jinbineed": 6900000 + }, + "332": { + "lv": 332, + "expneed": 14000000, + "jinbineed": 7000000 + }, + "333": { + "lv": 333, + "expneed": 14200000, + "jinbineed": 7100000 + }, + "334": { + "lv": 334, + "expneed": 14400000, + "jinbineed": 7200000 + }, + "335": { + "lv": 335, + "expneed": 14600000, + "jinbineed": 7300000 + }, + "336": { + "lv": 336, + "expneed": 14800000, + "jinbineed": 7400000 + }, + "337": { + "lv": 337, + "expneed": 15000000, + "jinbineed": 7500000 + }, + "338": { + "lv": 338, + "expneed": 15200000, + "jinbineed": 7600000 + }, + "339": { + "lv": 339, + "expneed": 15400000, + "jinbineed": 7700000 + }, + "340": { + "lv": 340, + "expneed": 15600000, + "jinbineed": 7800000 + }, + "341": { + "lv": 341, + "expneed": 15800000, + "jinbineed": 7900000 + }, + "342": { + "lv": 342, + "expneed": 16000000, + "jinbineed": 8000000 + }, + "343": { + "lv": 343, + "expneed": 16200000, + "jinbineed": 8100000 + }, + "344": { + "lv": 344, + "expneed": 16400000, + "jinbineed": 8200000 + }, + "345": { + "lv": 345, + "expneed": 16600000, + "jinbineed": 8300000 + }, + "346": { + "lv": 346, + "expneed": 16800000, + "jinbineed": 8400000 + }, + "347": { + "lv": 347, + "expneed": 17000000, + "jinbineed": 8500000 + }, + "348": { + "lv": 348, + "expneed": 17200000, + "jinbineed": 8600000 + }, + "349": { + "lv": 349, + "expneed": 17400000, + "jinbineed": 8700000 + }, + "350": { + "lv": 350, + "expneed": 17600000, + "jinbineed": 8800000 + }, + "351": { + "lv": 351, + "expneed": 17800000, + "jinbineed": 8900000 + }, + "352": { + "lv": 352, + "expneed": 18000000, + "jinbineed": 9000000 + }, + "353": { + "lv": 353, + "expneed": 18200000, + "jinbineed": 9100000 + }, + "354": { + "lv": 354, + "expneed": 18400000, + "jinbineed": 9200000 + }, + "355": { + "lv": 355, + "expneed": 18600000, + "jinbineed": 9300000 + }, + "356": { + "lv": 356, + "expneed": 18800000, + "jinbineed": 9400000 + }, + "357": { + "lv": 357, + "expneed": 19000000, + "jinbineed": 9500000 + }, + "358": { + "lv": 358, + "expneed": 19200000, + "jinbineed": 9600000 + }, + "359": { + "lv": 359, + "expneed": 19400000, + "jinbineed": 9700000 + }, + "360": { + "lv": 360, + "expneed": 19600000, + "jinbineed": 9800000 + }, + "361": { + "lv": 361, + "expneed": 19800000, + "jinbineed": 9900000 + }, + "362": { + "lv": 362, + "expneed": 20000000, + "jinbineed": 10000000 + }, + "363": { + "lv": 363, + "expneed": 20200000, + "jinbineed": 10100000 + }, + "364": { + "lv": 364, + "expneed": 20400000, + "jinbineed": 10200000 + }, + "365": { + "lv": 365, + "expneed": 20600000, + "jinbineed": 10300000 + }, + "366": { + "lv": 366, + "expneed": 20800000, + "jinbineed": 10400000 + }, + "367": { + "lv": 367, + "expneed": 21000000, + "jinbineed": 10500000 + }, + "368": { + "lv": 368, + "expneed": 21200000, + "jinbineed": 10600000 + }, + "369": { + "lv": 369, + "expneed": 21400000, + "jinbineed": 10700000 + }, + "370": { + "lv": 370, + "expneed": 21600000, + "jinbineed": 10800000 + }, + "371": { + "lv": 371, + "expneed": 21800000, + "jinbineed": 10900000 + }, + "372": { + "lv": 372, + "expneed": 22000000, + "jinbineed": 11000000 + }, + "373": { + "lv": 373, + "expneed": 22200000, + "jinbineed": 11100000 + }, + "374": { + "lv": 374, + "expneed": 22400000, + "jinbineed": 11200000 + }, + "375": { + "lv": 375, + "expneed": 22600000, + "jinbineed": 11300000 + }, + "376": { + "lv": 376, + "expneed": 22800000, + "jinbineed": 11400000 + }, + "377": { + "lv": 377, + "expneed": 23000000, + "jinbineed": 11500000 + }, + "378": { + "lv": 378, + "expneed": 23200000, + "jinbineed": 11600000 + }, + "379": { + "lv": 379, + "expneed": 23400000, + "jinbineed": 11700000 + }, + "380": { + "lv": 380, + "expneed": 23600000, + "jinbineed": 11800000 + }, + "381": { + "lv": 381, + "expneed": 23800000, + "jinbineed": 11900000 + }, + "382": { + "lv": 382, + "expneed": 24000000, + "jinbineed": 12000000 + }, + "383": { + "lv": 383, + "expneed": 24200000, + "jinbineed": 12100000 + }, + "384": { + "lv": 384, + "expneed": 24400000, + "jinbineed": 12200000 + }, + "385": { + "lv": 385, + "expneed": 24600000, + "jinbineed": 12300000 + }, + "386": { + "lv": 386, + "expneed": 24800000, + "jinbineed": 12400000 + }, + "387": { + "lv": 387, + "expneed": 25000000, + "jinbineed": 12500000 + }, + "388": { + "lv": 388, + "expneed": 25200000, + "jinbineed": 12600000 + }, + "389": { + "lv": 389, + "expneed": 25400000, + "jinbineed": 12700000 + }, + "390": { + "lv": 390, + "expneed": 25600000, + "jinbineed": 12800000 + }, + "391": { + "lv": 391, + "expneed": 25800000, + "jinbineed": 12900000 + }, + "392": { + "lv": 392, + "expneed": 26000000, + "jinbineed": 13000000 + }, + "393": { + "lv": 393, + "expneed": 26200000, + "jinbineed": 13100000 + }, + "394": { + "lv": 394, + "expneed": 26400000, + "jinbineed": 13200000 + }, + "395": { + "lv": 395, + "expneed": 26600000, + "jinbineed": 13300000 + }, + "396": { + "lv": 396, + "expneed": 26800000, + "jinbineed": 13400000 + }, + "397": { + "lv": 397, + "expneed": 27000000, + "jinbineed": 13500000 + }, + "398": { + "lv": 398, + "expneed": 27200000, + "jinbineed": 13600000 + }, + "399": { + "lv": 399, + "expneed": 27400000, + "jinbineed": 13700000 + }, + "400": { + "lv": 400, + "expneed": 27600000, + "jinbineed": 13800000 + }, + "401": { + "lv": 401, + "expneed": 27800000, + "jinbineed": 13900000 + }, + "402": { + "lv": 402, + "expneed": 28000000, + "jinbineed": 14000000 + }, + "403": { + "lv": 403, + "expneed": 28200000, + "jinbineed": 14100000 + }, + "404": { + "lv": 404, + "expneed": 28400000, + "jinbineed": 14200000 + }, + "405": { + "lv": 405, + "expneed": 28600000, + "jinbineed": 14300000 + }, + "406": { + "lv": 406, + "expneed": 28800000, + "jinbineed": 14400000 + }, + "407": { + "lv": 407, + "expneed": 29000000, + "jinbineed": 14500000 + }, + "408": { + "lv": 408, + "expneed": 29200000, + "jinbineed": 14600000 + }, + "409": { + "lv": 409, + "expneed": 29400000, + "jinbineed": 14700000 + }, + "410": { + "lv": 410, + "expneed": 29600000, + "jinbineed": 14800000 + }, + "411": { + "lv": 411, + "expneed": 29800000, + "jinbineed": 14900000 + }, + "412": { + "lv": 412, + "expneed": 30000000, + "jinbineed": 15000000 + }, + "413": { + "lv": 413, + "expneed": 30200000, + "jinbineed": 15100000 + }, + "414": { + "lv": 414, + "expneed": 30400000, + "jinbineed": 15200000 + }, + "415": { + "lv": 415, + "expneed": 30600000, + "jinbineed": 15300000 + }, + "416": { + "lv": 416, + "expneed": 30800000, + "jinbineed": 15400000 + }, + "417": { + "lv": 417, + "expneed": 31000000, + "jinbineed": 15500000 + }, + "418": { + "lv": 418, + "expneed": 31200000, + "jinbineed": 15600000 + }, + "419": { + "lv": 419, + "expneed": 31400000, + "jinbineed": 15700000 + }, + "420": { + "lv": 420, + "expneed": 31600000, + "jinbineed": 15800000 + }, + "421": { + "lv": 421, + "expneed": 31800000, + "jinbineed": 15900000 + }, + "422": { + "lv": 422, + "expneed": 32000000, + "jinbineed": 16000000 + }, + "423": { + "lv": 423, + "expneed": 32200000, + "jinbineed": 16100000 + }, + "424": { + "lv": 424, + "expneed": 32400000, + "jinbineed": 16200000 + }, + "425": { + "lv": 425, + "expneed": 32600000, + "jinbineed": 16300000 + }, + "426": { + "lv": 426, + "expneed": 32800000, + "jinbineed": 16400000 + }, + "427": { + "lv": 427, + "expneed": 33000000, + "jinbineed": 16500000 + }, + "428": { + "lv": 428, + "expneed": 33200000, + "jinbineed": 16600000 + }, + "429": { + "lv": 429, + "expneed": 33400000, + "jinbineed": 16700000 + }, + "430": { + "lv": 430, + "expneed": 33600000, + "jinbineed": 16800000 + }, + "431": { + "lv": 431, + "expneed": 33800000, + "jinbineed": 16900000 + }, + "432": { + "lv": 432, + "expneed": 34000000, + "jinbineed": 17000000 + }, + "433": { + "lv": 433, + "expneed": 34200000, + "jinbineed": 17100000 + }, + "434": { + "lv": 434, + "expneed": 34400000, + "jinbineed": 17200000 + }, + "435": { + "lv": 435, + "expneed": 34600000, + "jinbineed": 17300000 + }, + "436": { + "lv": 436, + "expneed": 34800000, + "jinbineed": 17400000 + }, + "437": { + "lv": 437, + "expneed": 35000000, + "jinbineed": 17500000 + }, + "438": { + "lv": 438, + "expneed": 35200000, + "jinbineed": 17600000 + }, + "439": { + "lv": 439, + "expneed": 35400000, + "jinbineed": 17700000 + }, + "440": { + "lv": 440, + "expneed": 35600000, + "jinbineed": 17800000 + }, + "441": { + "lv": 441, + "expneed": 35800000, + "jinbineed": 17900000 + }, + "442": { + "lv": 442, + "expneed": 36000000, + "jinbineed": 18000000 + }, + "443": { + "lv": 443, + "expneed": 36200000, + "jinbineed": 18100000 + }, + "444": { + "lv": 444, + "expneed": 36400000, + "jinbineed": 18200000 + }, + "445": { + "lv": 445, + "expneed": 36600000, + "jinbineed": 18300000 + }, + "446": { + "lv": 446, + "expneed": 36800000, + "jinbineed": 18400000 + }, + "447": { + "lv": 447, + "expneed": 37000000, + "jinbineed": 18500000 + }, + "448": { + "lv": 448, + "expneed": 37200000, + "jinbineed": 18600000 + }, + "449": { + "lv": 449, + "expneed": 37400000, + "jinbineed": 18700000 + }, + "450": { + "lv": 450, + "expneed": 37600000, + "jinbineed": 18800000 + }, + "451": { + "lv": 451, + "expneed": 37800000, + "jinbineed": 18900000 + }, + "452": { + "lv": 452, + "expneed": 38000000, + "jinbineed": 19000000 + }, + "453": { + "lv": 453, + "expneed": 38200000, + "jinbineed": 19100000 + }, + "454": { + "lv": 454, + "expneed": 38400000, + "jinbineed": 19200000 + }, + "455": { + "lv": 455, + "expneed": 38600000, + "jinbineed": 19300000 + }, + "456": { + "lv": 456, + "expneed": 38800000, + "jinbineed": 19400000 + }, + "457": { + "lv": 457, + "expneed": 39000000, + "jinbineed": 19500000 + }, + "458": { + "lv": 458, + "expneed": 39200000, + "jinbineed": 19600000 + }, + "459": { + "lv": 459, + "expneed": 39400000, + "jinbineed": 19700000 + }, + "460": { + "lv": 460, + "expneed": 39600000, + "jinbineed": 19800000 + }, + "461": { + "lv": 461, + "expneed": 39800000, + "jinbineed": 19900000 + }, + "462": { + "lv": 462, + "expneed": 40000000, + "jinbineed": 20000000 + }, + "463": { + "lv": 463, + "expneed": 40200000, + "jinbineed": 20100000 + }, + "464": { + "lv": 464, + "expneed": 40400000, + "jinbineed": 20200000 + }, + "465": { + "lv": 465, + "expneed": 40600000, + "jinbineed": 20300000 + }, + "466": { + "lv": 466, + "expneed": 40800000, + "jinbineed": 20400000 + }, + "467": { + "lv": 467, + "expneed": 41000000, + "jinbineed": 20500000 + }, + "468": { + "lv": 468, + "expneed": 41200000, + "jinbineed": 20600000 + }, + "469": { + "lv": 469, + "expneed": 41400000, + "jinbineed": 20700000 + }, + "470": { + "lv": 470, + "expneed": 41600000, + "jinbineed": 20800000 + }, + "471": { + "lv": 471, + "expneed": 41800000, + "jinbineed": 20900000 + }, + "472": { + "lv": 472, + "expneed": 42000000, + "jinbineed": 21000000 + }, + "473": { + "lv": 473, + "expneed": 42200000, + "jinbineed": 21100000 + }, + "474": { + "lv": 474, + "expneed": 42400000, + "jinbineed": 21200000 + }, + "475": { + "lv": 475, + "expneed": 42600000, + "jinbineed": 21300000 + }, + "476": { + "lv": 476, + "expneed": 42800000, + "jinbineed": 21400000 + }, + "477": { + "lv": 477, + "expneed": 43000000, + "jinbineed": 21500000 + }, + "478": { + "lv": 478, + "expneed": 43200000, + "jinbineed": 21600000 + }, + "479": { + "lv": 479, + "expneed": 43400000, + "jinbineed": 21700000 + }, + "480": { + "lv": 480, + "expneed": 43600000, + "jinbineed": 21800000 + }, + "481": { + "lv": 481, + "expneed": 43800000, + "jinbineed": 21900000 + }, + "482": { + "lv": 482, + "expneed": 44000000, + "jinbineed": 22000000 + }, + "483": { + "lv": 483, + "expneed": 44200000, + "jinbineed": 22100000 + }, + "484": { + "lv": 484, + "expneed": 44400000, + "jinbineed": 22200000 + }, + "485": { + "lv": 485, + "expneed": 44600000, + "jinbineed": 22300000 + }, + "486": { + "lv": 486, + "expneed": 44800000, + "jinbineed": 22400000 + }, + "487": { + "lv": 487, + "expneed": 45000000, + "jinbineed": 22500000 + }, + "488": { + "lv": 488, + "expneed": 45200000, + "jinbineed": 22600000 + }, + "489": { + "lv": 489, + "expneed": 45400000, + "jinbineed": 22700000 + }, + "490": { + "lv": 490, + "expneed": 45600000, + "jinbineed": 22800000 + }, + "491": { + "lv": 491, + "expneed": 45800000, + "jinbineed": 22900000 + }, + "492": { + "lv": 492, + "expneed": 46000000, + "jinbineed": 23000000 + }, + "493": { + "lv": 493, + "expneed": 46200000, + "jinbineed": 23100000 + }, + "494": { + "lv": 494, + "expneed": 46400000, + "jinbineed": 23200000 + }, + "495": { + "lv": 495, + "expneed": 46600000, + "jinbineed": 23300000 + }, + "496": { + "lv": 496, + "expneed": 46800000, + "jinbineed": 23400000 + }, + "497": { + "lv": 497, + "expneed": 47000000, + "jinbineed": 23500000 + }, + "498": { + "lv": 498, + "expneed": 47200000, + "jinbineed": 23600000 + }, + "499": { + "lv": 499, + "expneed": 47400000, + "jinbineed": 23700000 + }, + "500": { + "lv": 500, + "expneed": 47600000, + "jinbineed": 23800000 + }, + "501": { + "lv": 501, + "expneed": 47800000, + "jinbineed": 23900000 + }, + "502": { + "lv": 502, + "expneed": 48000000, + "jinbineed": 24000000 + }, + "503": { + "lv": 503, + "expneed": 48200000, + "jinbineed": 24100000 + }, + "504": { + "lv": 504, + "expneed": 48400000, + "jinbineed": 24200000 + }, + "505": { + "lv": 505, + "expneed": 48600000, + "jinbineed": 24300000 + }, + "506": { + "lv": 506, + "expneed": 48800000, + "jinbineed": 24400000 + }, + "507": { + "lv": 507, + "expneed": 49000000, + "jinbineed": 24500000 + }, + "508": { + "lv": 508, + "expneed": 49200000, + "jinbineed": 24600000 + }, + "509": { + "lv": 509, + "expneed": 49400000, + "jinbineed": 24700000 + }, + "510": { + "lv": 510, + "expneed": 49600000, + "jinbineed": 24800000 + }, + "511": { + "lv": 511, + "expneed": 49800000, + "jinbineed": 24900000 + }, + "512": { + "lv": 512, + "expneed": 50000000, + "jinbineed": 25000000 + }, + "513": { + "lv": 513, + "expneed": 50200000, + "jinbineed": 25100000 + }, + "514": { + "lv": 514, + "expneed": 50400000, + "jinbineed": 25200000 + }, + "515": { + "lv": 515, + "expneed": 50600000, + "jinbineed": 25300000 + }, + "516": { + "lv": 516, + "expneed": 50800000, + "jinbineed": 25400000 + }, + "517": { + "lv": 517, + "expneed": 51000000, + "jinbineed": 25500000 + }, + "518": { + "lv": 518, + "expneed": 51200000, + "jinbineed": 25600000 + }, + "519": { + "lv": 519, + "expneed": 51400000, + "jinbineed": 25700000 + }, + "520": { + "lv": 520, + "expneed": 51600000, + "jinbineed": 25800000 + }, + "521": { + "lv": 521, + "expneed": 51800000, + "jinbineed": 25900000 + }, + "522": { + "lv": 522, + "expneed": 52000000, + "jinbineed": 26000000 + }, + "523": { + "lv": 523, + "expneed": 52200000, + "jinbineed": 26100000 + }, + "524": { + "lv": 524, + "expneed": 52400000, + "jinbineed": 26200000 + }, + "525": { + "lv": 525, + "expneed": 52600000, + "jinbineed": 26300000 + }, + "526": { + "lv": 526, + "expneed": 52800000, + "jinbineed": 26400000 + }, + "527": { + "lv": 527, + "expneed": 53000000, + "jinbineed": 26500000 + }, + "528": { + "lv": 528, + "expneed": 53200000, + "jinbineed": 26600000 + }, + "529": { + "lv": 529, + "expneed": 53400000, + "jinbineed": 26700000 + }, + "530": { + "lv": 530, + "expneed": 53600000, + "jinbineed": 26800000 + }, + "531": { + "lv": 531, + "expneed": 53800000, + "jinbineed": 26900000 + }, + "532": { + "lv": 532, + "expneed": 54000000, + "jinbineed": 27000000 + }, + "533": { + "lv": 533, + "expneed": 54200000, + "jinbineed": 27100000 + }, + "534": { + "lv": 534, + "expneed": 54400000, + "jinbineed": 27200000 + }, + "535": { + "lv": 535, + "expneed": 54600000, + "jinbineed": 27300000 + }, + "536": { + "lv": 536, + "expneed": 54800000, + "jinbineed": 27400000 + }, + "537": { + "lv": 537, + "expneed": 55000000, + "jinbineed": 27500000 + }, + "538": { + "lv": 538, + "expneed": 55200000, + "jinbineed": 27600000 + }, + "539": { + "lv": 539, + "expneed": 55400000, + "jinbineed": 27700000 + }, + "540": { + "lv": 540, + "expneed": 55600000, + "jinbineed": 27800000 + }, + "541": { + "lv": 541, + "expneed": 55800000, + "jinbineed": 27900000 + }, + "542": { + "lv": 542, + "expneed": 56000000, + "jinbineed": 28000000 + }, + "543": { + "lv": 543, + "expneed": 56200000, + "jinbineed": 28100000 + }, + "544": { + "lv": 544, + "expneed": 56400000, + "jinbineed": 28200000 + }, + "545": { + "lv": 545, + "expneed": 56600000, + "jinbineed": 28300000 + }, + "546": { + "lv": 546, + "expneed": 56800000, + "jinbineed": 28400000 + }, + "547": { + "lv": 547, + "expneed": 57000000, + "jinbineed": 28500000 + }, + "548": { + "lv": 548, + "expneed": 57200000, + "jinbineed": 28600000 + }, + "549": { + "lv": 549, + "expneed": 57400000, + "jinbineed": 28700000 + }, + "550": { + "lv": 550, + "expneed": 57600000, + "jinbineed": 28800000 + }, + "551": { + "lv": 551, + "expneed": 57800000, + "jinbineed": 28900000 + }, + "552": { + "lv": 552, + "expneed": 58000000, + "jinbineed": 29000000 + }, + "553": { + "lv": 553, + "expneed": 58200000, + "jinbineed": 29100000 + }, + "554": { + "lv": 554, + "expneed": 58400000, + "jinbineed": 29200000 + }, + "555": { + "lv": 555, + "expneed": 58600000, + "jinbineed": 29300000 + }, + "556": { + "lv": 556, + "expneed": 58800000, + "jinbineed": 29400000 + }, + "557": { + "lv": 557, + "expneed": 59000000, + "jinbineed": 29500000 + }, + "558": { + "lv": 558, + "expneed": 59200000, + "jinbineed": 29600000 + }, + "559": { + "lv": 559, + "expneed": 59400000, + "jinbineed": 29700000 + }, + "560": { + "lv": 560, + "expneed": 59600000, + "jinbineed": 29800000 + }, + "561": { + "lv": 561, + "expneed": 59800000, + "jinbineed": 29900000 + }, + "562": { + "lv": 562, + "expneed": 60000000, + "jinbineed": 30000000 + }, + "563": { + "lv": 563, + "expneed": 60200000, + "jinbineed": 30100000 + }, + "564": { + "lv": 564, + "expneed": 60400000, + "jinbineed": 30200000 + }, + "565": { + "lv": 565, + "expneed": 60600000, + "jinbineed": 30300000 + }, + "566": { + "lv": 566, + "expneed": 60800000, + "jinbineed": 30400000 + }, + "567": { + "lv": 567, + "expneed": 61000000, + "jinbineed": 30500000 + }, + "568": { + "lv": 568, + "expneed": 61200000, + "jinbineed": 30600000 + }, + "569": { + "lv": 569, + "expneed": 61400000, + "jinbineed": 30700000 + }, + "570": { + "lv": 570, + "expneed": 61600000, + "jinbineed": 30800000 + }, + "571": { + "lv": 571, + "expneed": 61800000, + "jinbineed": 30900000 + }, + "572": { + "lv": 572, + "expneed": 62000000, + "jinbineed": 31000000 + }, + "573": { + "lv": 573, + "expneed": 62200000, + "jinbineed": 31100000 + }, + "574": { + "lv": 574, + "expneed": 62400000, + "jinbineed": 31200000 + }, + "575": { + "lv": 575, + "expneed": 62600000, + "jinbineed": 31300000 + }, + "576": { + "lv": 576, + "expneed": 62800000, + "jinbineed": 31400000 + }, + "577": { + "lv": 577, + "expneed": 63000000, + "jinbineed": 31500000 + }, + "578": { + "lv": 578, + "expneed": 63200000, + "jinbineed": 31600000 + }, + "579": { + "lv": 579, + "expneed": 63400000, + "jinbineed": 31700000 + }, + "580": { + "lv": 580, + "expneed": 63600000, + "jinbineed": 31800000 + }, + "581": { + "lv": 581, + "expneed": 63800000, + "jinbineed": 31900000 + }, + "582": { + "lv": 582, + "expneed": 64000000, + "jinbineed": 32000000 + }, + "583": { + "lv": 583, + "expneed": 64200000, + "jinbineed": 32100000 + }, + "584": { + "lv": 584, + "expneed": 64400000, + "jinbineed": 32200000 + }, + "585": { + "lv": 585, + "expneed": 64600000, + "jinbineed": 32300000 + }, + "586": { + "lv": 586, + "expneed": 64800000, + "jinbineed": 32400000 + }, + "587": { + "lv": 587, + "expneed": 65000000, + "jinbineed": 32500000 + }, + "588": { + "lv": 588, + "expneed": 65200000, + "jinbineed": 32600000 + }, + "589": { + "lv": 589, + "expneed": 65400000, + "jinbineed": 32700000 + }, + "590": { + "lv": 590, + "expneed": 65600000, + "jinbineed": 32800000 + }, + "591": { + "lv": 591, + "expneed": 65800000, + "jinbineed": 32900000 + }, + "592": { + "lv": 592, + "expneed": 66000000, + "jinbineed": 33000000 + }, + "593": { + "lv": 593, + "expneed": 66200000, + "jinbineed": 33100000 + }, + "594": { + "lv": 594, + "expneed": 66400000, + "jinbineed": 33200000 + }, + "595": { + "lv": 595, + "expneed": 66600000, + "jinbineed": 33300000 + }, + "596": { + "lv": 596, + "expneed": 66800000, + "jinbineed": 33400000 + }, + "597": { + "lv": 597, + "expneed": 67000000, + "jinbineed": 33500000 + }, + "598": { + "lv": 598, + "expneed": 67200000, + "jinbineed": 33600000 + }, + "599": { + "lv": 599, + "expneed": 67400000, + "jinbineed": 33700000 + }, + "600": { + "lv": 600, + "expneed": 67600000, + "jinbineed": 33800000 + }, + "601": { + "lv": 601, + "expneed": 67800000, + "jinbineed": 33900000 + }, + "602": { + "lv": 602, + "expneed": 68000000, + "jinbineed": 34000000 + }, + "603": { + "lv": 603, + "expneed": 68200000, + "jinbineed": 34100000 + }, + "604": { + "lv": 604, + "expneed": 68400000, + "jinbineed": 34200000 + }, + "605": { + "lv": 605, + "expneed": 68600000, + "jinbineed": 34300000 + }, + "606": { + "lv": 606, + "expneed": 68800000, + "jinbineed": 34400000 + }, + "607": { + "lv": 607, + "expneed": 69000000, + "jinbineed": 34500000 + }, + "608": { + "lv": 608, + "expneed": 69200000, + "jinbineed": 34600000 + }, + "609": { + "lv": 609, + "expneed": 69400000, + "jinbineed": 34700000 + }, + "610": { + "lv": 610, + "expneed": 69600000, + "jinbineed": 34800000 + }, + "611": { + "lv": 611, + "expneed": 69800000, + "jinbineed": 34900000 + }, + "612": { + "lv": 612, + "expneed": 70000000, + "jinbineed": 35000000 + }, + "613": { + "lv": 613, + "expneed": 70200000, + "jinbineed": 35100000 + }, + "614": { + "lv": 614, + "expneed": 70400000, + "jinbineed": 35200000 + }, + "615": { + "lv": 615, + "expneed": 70600000, + "jinbineed": 35300000 + }, + "616": { + "lv": 616, + "expneed": 70800000, + "jinbineed": 35400000 + }, + "617": { + "lv": 617, + "expneed": 71000000, + "jinbineed": 35500000 + }, + "618": { + "lv": 618, + "expneed": 71200000, + "jinbineed": 35600000 + }, + "619": { + "lv": 619, + "expneed": 71400000, + "jinbineed": 35700000 + }, + "620": { + "lv": 620, + "expneed": 71600000, + "jinbineed": 35800000 + }, + "621": { + "lv": 621, + "expneed": 71800000, + "jinbineed": 35900000 + }, + "622": { + "lv": 622, + "expneed": 72000000, + "jinbineed": 36000000 + }, + "623": { + "lv": 623, + "expneed": 72200000, + "jinbineed": 36100000 + }, + "624": { + "lv": 624, + "expneed": 72400000, + "jinbineed": 36200000 + }, + "625": { + "lv": 625, + "expneed": 72600000, + "jinbineed": 36300000 + }, + "626": { + "lv": 626, + "expneed": 72800000, + "jinbineed": 36400000 + }, + "627": { + "lv": 627, + "expneed": 73000000, + "jinbineed": 36500000 + }, + "628": { + "lv": 628, + "expneed": 73200000, + "jinbineed": 36600000 + }, + "629": { + "lv": 629, + "expneed": 73400000, + "jinbineed": 36700000 + }, + "630": { + "lv": 630, + "expneed": 73600000, + "jinbineed": 36800000 + }, + "631": { + "lv": 631, + "expneed": 73800000, + "jinbineed": 36900000 + }, + "632": { + "lv": 632, + "expneed": 74000000, + "jinbineed": 37000000 + }, + "633": { + "lv": 633, + "expneed": 74200000, + "jinbineed": 37100000 + }, + "634": { + "lv": 634, + "expneed": 74400000, + "jinbineed": 37200000 + }, + "635": { + "lv": 635, + "expneed": 74600000, + "jinbineed": 37300000 + }, + "636": { + "lv": 636, + "expneed": 74800000, + "jinbineed": 37400000 + }, + "637": { + "lv": 637, + "expneed": 75000000, + "jinbineed": 37500000 + }, + "638": { + "lv": 638, + "expneed": 75200000, + "jinbineed": 37600000 + }, + "639": { + "lv": 639, + "expneed": 75400000, + "jinbineed": 37700000 + }, + "640": { + "lv": 640, + "expneed": 75600000, + "jinbineed": 37800000 + }, + "641": { + "lv": 641, + "expneed": 75800000, + "jinbineed": 37900000 + }, + "642": { + "lv": 642, + "expneed": 76000000, + "jinbineed": 38000000 + }, + "643": { + "lv": 643, + "expneed": 76200000, + "jinbineed": 38100000 + }, + "644": { + "lv": 644, + "expneed": 76400000, + "jinbineed": 38200000 + }, + "645": { + "lv": 645, + "expneed": 76600000, + "jinbineed": 38300000 + }, + "646": { + "lv": 646, + "expneed": 76800000, + "jinbineed": 38400000 + }, + "647": { + "lv": 647, + "expneed": 77000000, + "jinbineed": 38500000 + }, + "648": { + "lv": 648, + "expneed": 77200000, + "jinbineed": 38600000 + }, + "649": { + "lv": 649, + "expneed": 77400000, + "jinbineed": 38700000 + }, + "650": { + "lv": 650, + "expneed": 77600000, + "jinbineed": 38800000 + }, + "651": { + "lv": 651, + "expneed": 77800000, + "jinbineed": 38900000 + }, + "652": { + "lv": 652, + "expneed": 78000000, + "jinbineed": 39000000 + }, + "653": { + "lv": 653, + "expneed": 78200000, + "jinbineed": 39100000 + }, + "654": { + "lv": 654, + "expneed": 78400000, + "jinbineed": 39200000 + }, + "655": { + "lv": 655, + "expneed": 78600000, + "jinbineed": 39300000 + }, + "656": { + "lv": 656, + "expneed": 78800000, + "jinbineed": 39400000 + }, + "657": { + "lv": 657, + "expneed": 79000000, + "jinbineed": 39500000 + }, + "658": { + "lv": 658, + "expneed": 79200000, + "jinbineed": 39600000 + }, + "659": { + "lv": 659, + "expneed": 79400000, + "jinbineed": 39700000 + }, + "660": { + "lv": 660, + "expneed": 79600000, + "jinbineed": 39800000 + }, + "661": { + "lv": 661, + "expneed": 79800000, + "jinbineed": 39900000 + }, + "662": { + "lv": 662, + "expneed": 80000000, + "jinbineed": 40000000 + }, + "663": { + "lv": 663, + "expneed": 80200000, + "jinbineed": 40100000 + }, + "664": { + "lv": 664, + "expneed": 80400000, + "jinbineed": 40200000 + }, + "665": { + "lv": 665, + "expneed": 80600000, + "jinbineed": 40300000 + }, + "666": { + "lv": 666, + "expneed": 80800000, + "jinbineed": 40400000 + }, + "667": { + "lv": 667, + "expneed": 81000000, + "jinbineed": 40500000 + }, + "668": { + "lv": 668, + "expneed": 81200000, + "jinbineed": 40600000 + }, + "669": { + "lv": 669, + "expneed": 81400000, + "jinbineed": 40700000 + }, + "670": { + "lv": 670, + "expneed": 81600000, + "jinbineed": 40800000 + }, + "671": { + "lv": 671, + "expneed": 81800000, + "jinbineed": 40900000 + }, + "672": { + "lv": 672, + "expneed": 82000000, + "jinbineed": 41000000 + }, + "673": { + "lv": 673, + "expneed": 82200000, + "jinbineed": 41100000 + }, + "674": { + "lv": 674, + "expneed": 82400000, + "jinbineed": 41200000 + }, + "675": { + "lv": 675, + "expneed": 82600000, + "jinbineed": 41300000 + }, + "676": { + "lv": 676, + "expneed": 82800000, + "jinbineed": 41400000 + }, + "677": { + "lv": 677, + "expneed": 83000000, + "jinbineed": 41500000 + }, + "678": { + "lv": 678, + "expneed": 83200000, + "jinbineed": 41600000 + }, + "679": { + "lv": 679, + "expneed": 83400000, + "jinbineed": 41700000 + }, + "680": { + "lv": 680, + "expneed": 83600000, + "jinbineed": 41800000 + }, + "681": { + "lv": 681, + "expneed": 83800000, + "jinbineed": 41900000 + }, + "682": { + "lv": 682, + "expneed": 84000000, + "jinbineed": 42000000 + }, + "683": { + "lv": 683, + "expneed": 84200000, + "jinbineed": 42100000 + }, + "684": { + "lv": 684, + "expneed": 84400000, + "jinbineed": 42200000 + }, + "685": { + "lv": 685, + "expneed": 84600000, + "jinbineed": 42300000 + }, + "686": { + "lv": 686, + "expneed": 84800000, + "jinbineed": 42400000 + }, + "687": { + "lv": 687, + "expneed": 85000000, + "jinbineed": 42500000 + }, + "688": { + "lv": 688, + "expneed": 85200000, + "jinbineed": 42600000 + }, + "689": { + "lv": 689, + "expneed": 85400000, + "jinbineed": 42700000 + }, + "690": { + "lv": 690, + "expneed": 85600000, + "jinbineed": 42800000 + }, + "691": { + "lv": 691, + "expneed": 85800000, + "jinbineed": 42900000 + }, + "692": { + "lv": 692, + "expneed": 86000000, + "jinbineed": 43000000 + }, + "693": { + "lv": 693, + "expneed": 86200000, + "jinbineed": 43100000 + }, + "694": { + "lv": 694, + "expneed": 86400000, + "jinbineed": 43200000 + }, + "695": { + "lv": 695, + "expneed": 86600000, + "jinbineed": 43300000 + }, + "696": { + "lv": 696, + "expneed": 86800000, + "jinbineed": 43400000 + }, + "697": { + "lv": 697, + "expneed": 87000000, + "jinbineed": 43500000 + }, + "698": { + "lv": 698, + "expneed": 87200000, + "jinbineed": 43600000 + }, + "699": { + "lv": 699, + "expneed": 87400000, + "jinbineed": 43700000 + }, + "700": { + "lv": 700, + "expneed": 87600000, + "jinbineed": 43800000 + }, + "701": { + "lv": 701, + "expneed": 87800000, + "jinbineed": 43900000 + }, + "702": { + "lv": 702, + "expneed": 88000000, + "jinbineed": 44000000 + }, + "703": { + "lv": 703, + "expneed": 88200000, + "jinbineed": 44100000 + }, + "704": { + "lv": 704, + "expneed": 88400000, + "jinbineed": 44200000 + }, + "705": { + "lv": 705, + "expneed": 88600000, + "jinbineed": 44300000 + }, + "706": { + "lv": 706, + "expneed": 88800000, + "jinbineed": 44400000 + }, + "707": { + "lv": 707, + "expneed": 89000000, + "jinbineed": 44500000 + }, + "708": { + "lv": 708, + "expneed": 89200000, + "jinbineed": 44600000 + }, + "709": { + "lv": 709, + "expneed": 89400000, + "jinbineed": 44700000 + }, + "710": { + "lv": 710, + "expneed": 89600000, + "jinbineed": 44800000 + }, + "711": { + "lv": 711, + "expneed": 89800000, + "jinbineed": 44900000 + }, + "712": { + "lv": 712, + "expneed": 90000000, + "jinbineed": 45000000 + }, + "713": { + "lv": 713, + "expneed": 90200000, + "jinbineed": 45100000 + }, + "714": { + "lv": 714, + "expneed": 90400000, + "jinbineed": 45200000 + }, + "715": { + "lv": 715, + "expneed": 90600000, + "jinbineed": 45300000 + }, + "716": { + "lv": 716, + "expneed": 90800000, + "jinbineed": 45400000 + }, + "717": { + "lv": 717, + "expneed": 91000000, + "jinbineed": 45500000 + }, + "718": { + "lv": 718, + "expneed": 91200000, + "jinbineed": 45600000 + }, + "719": { + "lv": 719, + "expneed": 91400000, + "jinbineed": 45700000 + }, + "720": { + "lv": 720, + "expneed": 91600000, + "jinbineed": 45800000 + }, + "721": { + "lv": 721, + "expneed": 91800000, + "jinbineed": 45900000 + }, + "722": { + "lv": 722, + "expneed": 92000000, + "jinbineed": 46000000 + }, + "723": { + "lv": 723, + "expneed": 92200000, + "jinbineed": 46100000 + }, + "724": { + "lv": 724, + "expneed": 92400000, + "jinbineed": 46200000 + }, + "725": { + "lv": 725, + "expneed": 92600000, + "jinbineed": 46300000 + }, + "726": { + "lv": 726, + "expneed": 92800000, + "jinbineed": 46400000 + }, + "727": { + "lv": 727, + "expneed": 93000000, + "jinbineed": 46500000 + }, + "728": { + "lv": 728, + "expneed": 93200000, + "jinbineed": 46600000 + }, + "729": { + "lv": 729, + "expneed": 93400000, + "jinbineed": 46700000 + }, + "730": { + "lv": 730, + "expneed": 93600000, + "jinbineed": 46800000 + }, + "731": { + "lv": 731, + "expneed": 93800000, + "jinbineed": 46900000 + }, + "732": { + "lv": 732, + "expneed": 94000000, + "jinbineed": 47000000 + }, + "733": { + "lv": 733, + "expneed": 94200000, + "jinbineed": 47100000 + }, + "734": { + "lv": 734, + "expneed": 94400000, + "jinbineed": 47200000 + }, + "735": { + "lv": 735, + "expneed": 94600000, + "jinbineed": 47300000 + }, + "736": { + "lv": 736, + "expneed": 94800000, + "jinbineed": 47400000 + }, + "737": { + "lv": 737, + "expneed": 95000000, + "jinbineed": 47500000 + }, + "738": { + "lv": 738, + "expneed": 95200000, + "jinbineed": 47600000 + }, + "739": { + "lv": 739, + "expneed": 95400000, + "jinbineed": 47700000 + }, + "740": { + "lv": 740, + "expneed": 95600000, + "jinbineed": 47800000 + }, + "741": { + "lv": 741, + "expneed": 95800000, + "jinbineed": 47900000 + }, + "742": { + "lv": 742, + "expneed": 96000000, + "jinbineed": 48000000 + }, + "743": { + "lv": 743, + "expneed": 96200000, + "jinbineed": 48100000 + }, + "744": { + "lv": 744, + "expneed": 96400000, + "jinbineed": 48200000 + }, + "745": { + "lv": 745, + "expneed": 96600000, + "jinbineed": 48300000 + }, + "746": { + "lv": 746, + "expneed": 96800000, + "jinbineed": 48400000 + }, + "747": { + "lv": 747, + "expneed": 97000000, + "jinbineed": 48500000 + }, + "748": { + "lv": 748, + "expneed": 97200000, + "jinbineed": 48600000 + }, + "749": { + "lv": 749, + "expneed": 97400000, + "jinbineed": 48700000 + }, + "750": { + "lv": 750, + "expneed": 97600000, + "jinbineed": 48800000 + }, + "751": { + "lv": 751, + "expneed": 97800000, + "jinbineed": 48900000 + }, + "752": { + "lv": 752, + "expneed": 98000000, + "jinbineed": 49000000 + }, + "753": { + "lv": 753, + "expneed": 98200000, + "jinbineed": 49100000 + }, + "754": { + "lv": 754, + "expneed": 98400000, + "jinbineed": 49200000 + }, + "755": { + "lv": 755, + "expneed": 98600000, + "jinbineed": 49300000 + }, + "756": { + "lv": 756, + "expneed": 98800000, + "jinbineed": 49400000 + }, + "757": { + "lv": 757, + "expneed": 99000000, + "jinbineed": 49500000 + }, + "758": { + "lv": 758, + "expneed": 99200000, + "jinbineed": 49600000 + }, + "759": { + "lv": 759, + "expneed": 99400000, + "jinbineed": 49700000 + }, + "760": { + "lv": 760, + "expneed": 99600000, + "jinbineed": 49800000 + }, + "761": { + "lv": 761, + "expneed": 99800000, + "jinbineed": 49900000 + }, + "762": { + "lv": 762, + "expneed": 100000000, + "jinbineed": 50000000 + }, + "763": { + "lv": 763, + "expneed": 100200000, + "jinbineed": 50100000 + }, + "764": { + "lv": 764, + "expneed": 100400000, + "jinbineed": 50200000 + }, + "765": { + "lv": 765, + "expneed": 100600000, + "jinbineed": 50300000 + }, + "766": { + "lv": 766, + "expneed": 100800000, + "jinbineed": 50400000 + }, + "767": { + "lv": 767, + "expneed": 101000000, + "jinbineed": 50500000 + }, + "768": { + "lv": 768, + "expneed": 101200000, + "jinbineed": 50600000 + }, + "769": { + "lv": 769, + "expneed": 101400000, + "jinbineed": 50700000 + }, + "770": { + "lv": 770, + "expneed": 101600000, + "jinbineed": 50800000 + }, + "771": { + "lv": 771, + "expneed": 101800000, + "jinbineed": 50900000 + }, + "772": { + "lv": 772, + "expneed": 102000000, + "jinbineed": 51000000 + }, + "773": { + "lv": 773, + "expneed": 102200000, + "jinbineed": 51100000 + }, + "774": { + "lv": 774, + "expneed": 102400000, + "jinbineed": 51200000 + }, + "775": { + "lv": 775, + "expneed": 102600000, + "jinbineed": 51300000 + }, + "776": { + "lv": 776, + "expneed": 102800000, + "jinbineed": 51400000 + }, + "777": { + "lv": 777, + "expneed": 103000000, + "jinbineed": 51500000 + }, + "778": { + "lv": 778, + "expneed": 103200000, + "jinbineed": 51600000 + }, + "779": { + "lv": 779, + "expneed": 103400000, + "jinbineed": 51700000 + }, + "780": { + "lv": 780, + "expneed": 103600000, + "jinbineed": 51800000 + }, + "781": { + "lv": 781, + "expneed": 103800000, + "jinbineed": 51900000 + }, + "782": { + "lv": 782, + "expneed": 104000000, + "jinbineed": 52000000 + }, + "783": { + "lv": 783, + "expneed": 104200000, + "jinbineed": 52100000 + }, + "784": { + "lv": 784, + "expneed": 104400000, + "jinbineed": 52200000 + }, + "785": { + "lv": 785, + "expneed": 104600000, + "jinbineed": 52300000 + }, + "786": { + "lv": 786, + "expneed": 104800000, + "jinbineed": 52400000 + }, + "787": { + "lv": 787, + "expneed": 105000000, + "jinbineed": 52500000 + }, + "788": { + "lv": 788, + "expneed": 105200000, + "jinbineed": 52600000 + }, + "789": { + "lv": 789, + "expneed": 105400000, + "jinbineed": 52700000 + }, + "790": { + "lv": 790, + "expneed": 105600000, + "jinbineed": 52800000 + }, + "791": { + "lv": 791, + "expneed": 105800000, + "jinbineed": 52900000 + }, + "792": { + "lv": 792, + "expneed": 106000000, + "jinbineed": 53000000 + }, + "793": { + "lv": 793, + "expneed": 106200000, + "jinbineed": 53100000 + }, + "794": { + "lv": 794, + "expneed": 106400000, + "jinbineed": 53200000 + }, + "795": { + "lv": 795, + "expneed": 106600000, + "jinbineed": 53300000 + }, + "796": { + "lv": 796, + "expneed": 106800000, + "jinbineed": 53400000 + }, + "797": { + "lv": 797, + "expneed": 107000000, + "jinbineed": 53500000 + }, + "798": { + "lv": 798, + "expneed": 107200000, + "jinbineed": 53600000 + }, + "799": { + "lv": 799, + "expneed": 107400000, + "jinbineed": 53700000 + }, + "800": { + "lv": 800, + "expneed": 107600000, + "jinbineed": 53800000 + }, + "801": { + "lv": 801, + "expneed": 107800000, + "jinbineed": 53900000 + }, + "802": { + "lv": 802, + "expneed": 108000000, + "jinbineed": 54000000 + }, + "803": { + "lv": 803, + "expneed": 108200000, + "jinbineed": 54100000 + }, + "804": { + "lv": 804, + "expneed": 108400000, + "jinbineed": 54200000 + }, + "805": { + "lv": 805, + "expneed": 108600000, + "jinbineed": 54300000 + }, + "806": { + "lv": 806, + "expneed": 108800000, + "jinbineed": 54400000 + }, + "807": { + "lv": 807, + "expneed": 109000000, + "jinbineed": 54500000 + }, + "808": { + "lv": 808, + "expneed": 109200000, + "jinbineed": 54600000 + }, + "809": { + "lv": 809, + "expneed": 109400000, + "jinbineed": 54700000 + }, + "810": { + "lv": 810, + "expneed": 109600000, + "jinbineed": 54800000 + }, + "811": { + "lv": 811, + "expneed": 109800000, + "jinbineed": 54900000 + }, + "812": { + "lv": 812, + "expneed": 110000000, + "jinbineed": 55000000 + }, + "813": { + "lv": 813, + "expneed": 110200000, + "jinbineed": 55100000 + }, + "814": { + "lv": 814, + "expneed": 110400000, + "jinbineed": 55200000 + }, + "815": { + "lv": 815, + "expneed": 110600000, + "jinbineed": 55300000 + }, + "816": { + "lv": 816, + "expneed": 110800000, + "jinbineed": 55400000 + }, + "817": { + "lv": 817, + "expneed": 111000000, + "jinbineed": 55500000 + }, + "818": { + "lv": 818, + "expneed": 111200000, + "jinbineed": 55600000 + }, + "819": { + "lv": 819, + "expneed": 111400000, + "jinbineed": 55700000 + }, + "820": { + "lv": 820, + "expneed": 111600000, + "jinbineed": 55800000 + }, + "821": { + "lv": 821, + "expneed": 111800000, + "jinbineed": 55900000 + }, + "822": { + "lv": 822, + "expneed": 112000000, + "jinbineed": 56000000 + }, + "823": { + "lv": 823, + "expneed": 112200000, + "jinbineed": 56100000 + }, + "824": { + "lv": 824, + "expneed": 112400000, + "jinbineed": 56200000 + }, + "825": { + "lv": 825, + "expneed": 112600000, + "jinbineed": 56300000 + }, + "826": { + "lv": 826, + "expneed": 112800000, + "jinbineed": 56400000 + }, + "827": { + "lv": 827, + "expneed": 113000000, + "jinbineed": 56500000 + }, + "828": { + "lv": 828, + "expneed": 113200000, + "jinbineed": 56600000 + }, + "829": { + "lv": 829, + "expneed": 113400000, + "jinbineed": 56700000 + }, + "830": { + "lv": 830, + "expneed": 113600000, + "jinbineed": 56800000 + }, + "831": { + "lv": 831, + "expneed": 113800000, + "jinbineed": 56900000 + }, + "832": { + "lv": 832, + "expneed": 114000000, + "jinbineed": 57000000 + }, + "833": { + "lv": 833, + "expneed": 114200000, + "jinbineed": 57100000 + }, + "834": { + "lv": 834, + "expneed": 114400000, + "jinbineed": 57200000 + }, + "835": { + "lv": 835, + "expneed": 114600000, + "jinbineed": 57300000 + }, + "836": { + "lv": 836, + "expneed": 114800000, + "jinbineed": 57400000 + }, + "837": { + "lv": 837, + "expneed": 115000000, + "jinbineed": 57500000 + }, + "838": { + "lv": 838, + "expneed": 115200000, + "jinbineed": 57600000 + }, + "839": { + "lv": 839, + "expneed": 115400000, + "jinbineed": 57700000 + }, + "840": { + "lv": 840, + "expneed": 115600000, + "jinbineed": 57800000 + }, + "841": { + "lv": 841, + "expneed": 115800000, + "jinbineed": 57900000 + }, + "842": { + "lv": 842, + "expneed": 116000000, + "jinbineed": 58000000 + }, + "843": { + "lv": 843, + "expneed": 116200000, + "jinbineed": 58100000 + }, + "844": { + "lv": 844, + "expneed": 116400000, + "jinbineed": 58200000 + }, + "845": { + "lv": 845, + "expneed": 116600000, + "jinbineed": 58300000 + }, + "846": { + "lv": 846, + "expneed": 116800000, + "jinbineed": 58400000 + }, + "847": { + "lv": 847, + "expneed": 117000000, + "jinbineed": 58500000 + }, + "848": { + "lv": 848, + "expneed": 117200000, + "jinbineed": 58600000 + }, + "849": { + "lv": 849, + "expneed": 117400000, + "jinbineed": 58700000 + }, + "850": { + "lv": 850, + "expneed": 117600000, + "jinbineed": 58800000 + }, + "851": { + "lv": 851, + "expneed": 117800000, + "jinbineed": 58900000 + }, + "852": { + "lv": 852, + "expneed": 118000000, + "jinbineed": 59000000 + }, + "853": { + "lv": 853, + "expneed": 118200000, + "jinbineed": 59100000 + }, + "854": { + "lv": 854, + "expneed": 118400000, + "jinbineed": 59200000 + }, + "855": { + "lv": 855, + "expneed": 118600000, + "jinbineed": 59300000 + }, + "856": { + "lv": 856, + "expneed": 118800000, + "jinbineed": 59400000 + }, + "857": { + "lv": 857, + "expneed": 119000000, + "jinbineed": 59500000 + }, + "858": { + "lv": 858, + "expneed": 119200000, + "jinbineed": 59600000 + }, + "859": { + "lv": 859, + "expneed": 119400000, + "jinbineed": 59700000 + }, + "860": { + "lv": 860, + "expneed": 119600000, + "jinbineed": 59800000 + }, + "861": { + "lv": 861, + "expneed": 119800000, + "jinbineed": 59900000 + }, + "862": { + "lv": 862, + "expneed": 120000000, + "jinbineed": 60000000 + }, + "863": { + "lv": 863, + "expneed": 120200000, + "jinbineed": 60100000 + }, + "864": { + "lv": 864, + "expneed": 120400000, + "jinbineed": 60200000 + }, + "865": { + "lv": 865, + "expneed": 120600000, + "jinbineed": 60300000 + }, + "866": { + "lv": 866, + "expneed": 120800000, + "jinbineed": 60400000 + }, + "867": { + "lv": 867, + "expneed": 121000000, + "jinbineed": 60500000 + }, + "868": { + "lv": 868, + "expneed": 121200000, + "jinbineed": 60600000 + }, + "869": { + "lv": 869, + "expneed": 121400000, + "jinbineed": 60700000 + }, + "870": { + "lv": 870, + "expneed": 121600000, + "jinbineed": 60800000 + }, + "871": { + "lv": 871, + "expneed": 121800000, + "jinbineed": 60900000 + }, + "872": { + "lv": 872, + "expneed": 122000000, + "jinbineed": 61000000 + }, + "873": { + "lv": 873, + "expneed": 122200000, + "jinbineed": 61100000 + }, + "874": { + "lv": 874, + "expneed": 122400000, + "jinbineed": 61200000 + }, + "875": { + "lv": 875, + "expneed": 122600000, + "jinbineed": 61300000 + }, + "876": { + "lv": 876, + "expneed": 122800000, + "jinbineed": 61400000 + }, + "877": { + "lv": 877, + "expneed": 123000000, + "jinbineed": 61500000 + }, + "878": { + "lv": 878, + "expneed": 123200000, + "jinbineed": 61600000 + }, + "879": { + "lv": 879, + "expneed": 123400000, + "jinbineed": 61700000 + }, + "880": { + "lv": 880, + "expneed": 123600000, + "jinbineed": 61800000 + }, + "881": { + "lv": 881, + "expneed": 123800000, + "jinbineed": 61900000 + }, + "882": { + "lv": 882, + "expneed": 124000000, + "jinbineed": 62000000 + }, + "883": { + "lv": 883, + "expneed": 124200000, + "jinbineed": 62100000 + }, + "884": { + "lv": 884, + "expneed": 124400000, + "jinbineed": 62200000 + }, + "885": { + "lv": 885, + "expneed": 124600000, + "jinbineed": 62300000 + }, + "886": { + "lv": 886, + "expneed": 124800000, + "jinbineed": 62400000 + }, + "887": { + "lv": 887, + "expneed": 125000000, + "jinbineed": 62500000 + }, + "888": { + "lv": 888, + "expneed": 125200000, + "jinbineed": 62600000 + }, + "889": { + "lv": 889, + "expneed": 125400000, + "jinbineed": 62700000 + }, + "890": { + "lv": 890, + "expneed": 125600000, + "jinbineed": 62800000 + }, + "891": { + "lv": 891, + "expneed": 125800000, + "jinbineed": 62900000 + }, + "892": { + "lv": 892, + "expneed": 126000000, + "jinbineed": 63000000 + }, + "893": { + "lv": 893, + "expneed": 126200000, + "jinbineed": 63100000 + }, + "894": { + "lv": 894, + "expneed": 126400000, + "jinbineed": 63200000 + }, + "895": { + "lv": 895, + "expneed": 126600000, + "jinbineed": 63300000 + }, + "896": { + "lv": 896, + "expneed": 126800000, + "jinbineed": 63400000 + }, + "897": { + "lv": 897, + "expneed": 127000000, + "jinbineed": 63500000 + }, + "898": { + "lv": 898, + "expneed": 127200000, + "jinbineed": 63600000 + }, + "899": { + "lv": 899, + "expneed": 127400000, + "jinbineed": 63700000 + }, + "900": { + "lv": 900, + "expneed": 127600000, + "jinbineed": 63800000 + }, + "901": { + "lv": 901, + "expneed": 127800000, + "jinbineed": 63900000 + }, + "902": { + "lv": 902, + "expneed": 128000000, + "jinbineed": 64000000 + }, + "903": { + "lv": 903, + "expneed": 128200000, + "jinbineed": 64100000 + }, + "904": { + "lv": 904, + "expneed": 128400000, + "jinbineed": 64200000 + }, + "905": { + "lv": 905, + "expneed": 128600000, + "jinbineed": 64300000 + }, + "906": { + "lv": 906, + "expneed": 128800000, + "jinbineed": 64400000 + }, + "907": { + "lv": 907, + "expneed": 129000000, + "jinbineed": 64500000 + }, + "908": { + "lv": 908, + "expneed": 129200000, + "jinbineed": 64600000 + }, + "909": { + "lv": 909, + "expneed": 129400000, + "jinbineed": 64700000 + }, + "910": { + "lv": 910, + "expneed": 129600000, + "jinbineed": 64800000 + }, + "911": { + "lv": 911, + "expneed": 129800000, + "jinbineed": 64900000 + }, + "912": { + "lv": 912, + "expneed": 130000000, + "jinbineed": 65000000 + }, + "913": { + "lv": 913, + "expneed": 130200000, + "jinbineed": 65100000 + }, + "914": { + "lv": 914, + "expneed": 130400000, + "jinbineed": 65200000 + }, + "915": { + "lv": 915, + "expneed": 130600000, + "jinbineed": 65300000 + }, + "916": { + "lv": 916, + "expneed": 130800000, + "jinbineed": 65400000 + }, + "917": { + "lv": 917, + "expneed": 131000000, + "jinbineed": 65500000 + }, + "918": { + "lv": 918, + "expneed": 131200000, + "jinbineed": 65600000 + }, + "919": { + "lv": 919, + "expneed": 131400000, + "jinbineed": 65700000 + }, + "920": { + "lv": 920, + "expneed": 131600000, + "jinbineed": 65800000 + }, + "921": { + "lv": 921, + "expneed": 131800000, + "jinbineed": 65900000 + }, + "922": { + "lv": 922, + "expneed": 132000000, + "jinbineed": 66000000 + }, + "923": { + "lv": 923, + "expneed": 132200000, + "jinbineed": 66100000 + }, + "924": { + "lv": 924, + "expneed": 132400000, + "jinbineed": 66200000 + }, + "925": { + "lv": 925, + "expneed": 132600000, + "jinbineed": 66300000 + }, + "926": { + "lv": 926, + "expneed": 132800000, + "jinbineed": 66400000 + }, + "927": { + "lv": 927, + "expneed": 133000000, + "jinbineed": 66500000 + }, + "928": { + "lv": 928, + "expneed": 133200000, + "jinbineed": 66600000 + }, + "929": { + "lv": 929, + "expneed": 133400000, + "jinbineed": 66700000 + }, + "930": { + "lv": 930, + "expneed": 133600000, + "jinbineed": 66800000 + }, + "931": { + "lv": 931, + "expneed": 133800000, + "jinbineed": 66900000 + }, + "932": { + "lv": 932, + "expneed": 134000000, + "jinbineed": 67000000 + }, + "933": { + "lv": 933, + "expneed": 134200000, + "jinbineed": 67100000 + }, + "934": { + "lv": 934, + "expneed": 134400000, + "jinbineed": 67200000 + }, + "935": { + "lv": 935, + "expneed": 134600000, + "jinbineed": 67300000 + }, + "936": { + "lv": 936, + "expneed": 134800000, + "jinbineed": 67400000 + }, + "937": { + "lv": 937, + "expneed": 135000000, + "jinbineed": 67500000 + }, + "938": { + "lv": 938, + "expneed": 135200000, + "jinbineed": 67600000 + }, + "939": { + "lv": 939, + "expneed": 135400000, + "jinbineed": 67700000 + }, + "940": { + "lv": 940, + "expneed": 135600000, + "jinbineed": 67800000 + }, + "941": { + "lv": 941, + "expneed": 135800000, + "jinbineed": 67900000 + }, + "942": { + "lv": 942, + "expneed": 136000000, + "jinbineed": 68000000 + }, + "943": { + "lv": 943, + "expneed": 136200000, + "jinbineed": 68100000 + }, + "944": { + "lv": 944, + "expneed": 136400000, + "jinbineed": 68200000 + }, + "945": { + "lv": 945, + "expneed": 136600000, + "jinbineed": 68300000 + }, + "946": { + "lv": 946, + "expneed": 136800000, + "jinbineed": 68400000 + }, + "947": { + "lv": 947, + "expneed": 137000000, + "jinbineed": 68500000 + }, + "948": { + "lv": 948, + "expneed": 137200000, + "jinbineed": 68600000 + }, + "949": { + "lv": 949, + "expneed": 137400000, + "jinbineed": 68700000 + }, + "950": { + "lv": 950, + "expneed": 137600000, + "jinbineed": 68800000 + }, + "951": { + "lv": 951, + "expneed": 137800000, + "jinbineed": 68900000 + }, + "952": { + "lv": 952, + "expneed": 138000000, + "jinbineed": 69000000 + }, + "953": { + "lv": 953, + "expneed": 138200000, + "jinbineed": 69100000 + }, + "954": { + "lv": 954, + "expneed": 138400000, + "jinbineed": 69200000 + }, + "955": { + "lv": 955, + "expneed": 138600000, + "jinbineed": 69300000 + }, + "956": { + "lv": 956, + "expneed": 138800000, + "jinbineed": 69400000 + }, + "957": { + "lv": 957, + "expneed": 139000000, + "jinbineed": 69500000 + }, + "958": { + "lv": 958, + "expneed": 139200000, + "jinbineed": 69600000 + }, + "959": { + "lv": 959, + "expneed": 139400000, + "jinbineed": 69700000 + }, + "960": { + "lv": 960, + "expneed": 139600000, + "jinbineed": 69800000 + }, + "961": { + "lv": 961, + "expneed": 139800000, + "jinbineed": 69900000 + }, + "962": { + "lv": 962, + "expneed": 140000000, + "jinbineed": 70000000 + }, + "963": { + "lv": 963, + "expneed": 140200000, + "jinbineed": 70100000 + }, + "964": { + "lv": 964, + "expneed": 140400000, + "jinbineed": 70200000 + }, + "965": { + "lv": 965, + "expneed": 140600000, + "jinbineed": 70300000 + }, + "966": { + "lv": 966, + "expneed": 140800000, + "jinbineed": 70400000 + }, + "967": { + "lv": 967, + "expneed": 141000000, + "jinbineed": 70500000 + }, + "968": { + "lv": 968, + "expneed": 141200000, + "jinbineed": 70600000 + }, + "969": { + "lv": 969, + "expneed": 141400000, + "jinbineed": 70700000 + }, + "970": { + "lv": 970, + "expneed": 141600000, + "jinbineed": 70800000 + }, + "971": { + "lv": 971, + "expneed": 141800000, + "jinbineed": 70900000 + }, + "972": { + "lv": 972, + "expneed": 142000000, + "jinbineed": 71000000 + }, + "973": { + "lv": 973, + "expneed": 142200000, + "jinbineed": 71100000 + }, + "974": { + "lv": 974, + "expneed": 142400000, + "jinbineed": 71200000 + }, + "975": { + "lv": 975, + "expneed": 142600000, + "jinbineed": 71300000 + }, + "976": { + "lv": 976, + "expneed": 142800000, + "jinbineed": 71400000 + }, + "977": { + "lv": 977, + "expneed": 143000000, + "jinbineed": 71500000 + }, + "978": { + "lv": 978, + "expneed": 143200000, + "jinbineed": 71600000 + }, + "979": { + "lv": 979, + "expneed": 143400000, + "jinbineed": 71700000 + }, + "980": { + "lv": 980, + "expneed": 143600000, + "jinbineed": 71800000 + }, + "981": { + "lv": 981, + "expneed": 143800000, + "jinbineed": 71900000 + }, + "982": { + "lv": 982, + "expneed": 144000000, + "jinbineed": 72000000 + }, + "983": { + "lv": 983, + "expneed": 144200000, + "jinbineed": 72100000 + }, + "984": { + "lv": 984, + "expneed": 144400000, + "jinbineed": 72200000 + }, + "985": { + "lv": 985, + "expneed": 144600000, + "jinbineed": 72300000 + }, + "986": { + "lv": 986, + "expneed": 144800000, + "jinbineed": 72400000 + }, + "987": { + "lv": 987, + "expneed": 145000000, + "jinbineed": 72500000 + }, + "988": { + "lv": 988, + "expneed": 145200000, + "jinbineed": 72600000 + }, + "989": { + "lv": 989, + "expneed": 145400000, + "jinbineed": 72700000 + }, + "990": { + "lv": 990, + "expneed": 145600000, + "jinbineed": 72800000 + }, + "991": { + "lv": 991, + "expneed": 145800000, + "jinbineed": 72900000 + }, + "992": { + "lv": 992, + "expneed": 146000000, + "jinbineed": 73000000 + }, + "993": { + "lv": 993, + "expneed": 146200000, + "jinbineed": 73100000 + }, + "994": { + "lv": 994, + "expneed": 146400000, + "jinbineed": 73200000 + }, + "995": { + "lv": 995, + "expneed": 146600000, + "jinbineed": 73300000 + }, + "996": { + "lv": 996, + "expneed": 146800000, + "jinbineed": 73400000 + }, + "997": { + "lv": 997, + "expneed": 147000000, + "jinbineed": 73500000 + }, + "998": { + "lv": 998, + "expneed": 147200000, + "jinbineed": 73600000 + }, + "999": { + "lv": 999, + "expneed": 147400000, + "jinbineed": 73700000 + }, + "1000": { + "lv": 1000, + "expneed": 147600000, + "jinbineed": 73800000 + } +} \ No newline at end of file diff --git a/src/json/heroskill.json b/src/json/heroskill.json new file mode 100644 index 0000000..8089e6d --- /dev/null +++ b/src/json/heroskill.json @@ -0,0 +1,4069 @@ +{ + "1001": { + "0": { + "id": 1001, + "lv": 0, + "bdskill": [], + "skill": { + "1001100": 0.5, + "1001101": 0.5 + } + }, + "1": { + "id": 1001, + "lv": 1, + "bdskill": [], + "skill": { + "1001100": 0.5, + "1001101": 0.5 + } + }, + "2": { + "id": 1001, + "lv": 2, + "bdskill": [], + "skill": { + "1001100": 0.5, + "1001101": 0.5 + } + }, + "3": { + "id": 1001, + "lv": 3, + "bdskill": [], + "skill": { + "1001100": 0.5, + "1001101": 0.5 + } + }, + "4": { + "id": 1001, + "lv": 4, + "bdskill": [], + "skill": { + "1001100": 0.5, + "1001101": 0.5 + } + }, + "5": { + "id": 1001, + "lv": 5, + "bdskill": [], + "skill": { + "1001100": 0.5, + "1001101": 0.5 + } + }, + "6": { + "id": 1001, + "lv": 6, + "bdskill": [], + "skill": { + "1001100": 0.5, + "1001101": 0.5 + } + }, + "7": { + "id": 1001, + "lv": 7, + "bdskill": [], + "skill": { + "1001100": 0.5, + "1001101": 0.5 + } + } + }, + "1002": { + "0": { + "id": 1002, + "lv": 0, + "bdskill": [], + "skill": { + "1002100": 0.5, + "1002101": 0.5 + } + }, + "1": { + "id": 1002, + "lv": 1, + "bdskill": [], + "skill": { + "1002100": 0.5, + "1002101": 0.5 + } + }, + "2": { + "id": 1002, + "lv": 2, + "bdskill": [], + "skill": { + "1002100": 0.5, + "1002101": 0.5 + } + }, + "3": { + "id": 1002, + "lv": 3, + "bdskill": [], + "skill": { + "1002100": 0.5, + "1002101": 0.5 + } + }, + "4": { + "id": 1002, + "lv": 4, + "bdskill": [], + "skill": { + "1002100": 0.5, + "1002101": 0.5 + } + }, + "5": { + "id": 1002, + "lv": 5, + "bdskill": [], + "skill": { + "1002100": 0.5, + "1002101": 0.5 + } + }, + "6": { + "id": 1002, + "lv": 6, + "bdskill": [], + "skill": { + "1002100": 0.5, + "1002101": 0.5 + } + }, + "7": { + "id": 1002, + "lv": 7, + "bdskill": [], + "skill": { + "1002100": 0.5, + "1002101": 0.5 + } + } + }, + "2001": { + "0": { + "id": 2001, + "lv": 0, + "bdskill": [ + "2001400" + ], + "skill": { + "2001100": 1 + } + }, + "1": { + "id": 2001, + "lv": 1, + "bdskill": [ + "2001400" + ], + "skill": { + "2001100": 1 + } + }, + "2": { + "id": 2001, + "lv": 2, + "bdskill": [ + "2001400" + ], + "skill": { + "2001100": 1 + } + }, + "3": { + "id": 2001, + "lv": 3, + "bdskill": [ + "2001400" + ], + "skill": { + "2001100": 1 + } + }, + "4": { + "id": 2001, + "lv": 4, + "bdskill": [ + "2001400" + ], + "skill": { + "2001100": 1 + } + }, + "5": { + "id": 2001, + "lv": 5, + "bdskill": [ + "2001400" + ], + "skill": { + "2001100": 1 + } + }, + "6": { + "id": 2001, + "lv": 6, + "bdskill": [ + "2001400" + ], + "skill": { + "2001100": 1 + } + }, + "7": { + "id": 2001, + "lv": 7, + "bdskill": [ + "2001400" + ], + "skill": { + "2001100": 1 + } + } + }, + "2002": { + "0": { + "id": 2002, + "lv": 0, + "bdskill": [], + "skill": { + "2002100": 0.5, + "2002101": 0.5 + } + }, + "1": { + "id": 2002, + "lv": 1, + "bdskill": [], + "skill": { + "2002100": 0.5, + "2002101": 0.5 + } + }, + "2": { + "id": 2002, + "lv": 2, + "bdskill": [], + "skill": { + "2002100": 0.5, + "2002101": 0.5 + } + }, + "3": { + "id": 2002, + "lv": 3, + "bdskill": [], + "skill": { + "2002100": 0.5, + "2002101": 0.5 + } + }, + "4": { + "id": 2002, + "lv": 4, + "bdskill": [], + "skill": { + "2002100": 0.5, + "2002101": 0.5 + } + }, + "5": { + "id": 2002, + "lv": 5, + "bdskill": [], + "skill": { + "2002100": 0.5, + "2002101": 0.5 + } + }, + "6": { + "id": 2002, + "lv": 6, + "bdskill": [], + "skill": { + "2002100": 0.5, + "2002101": 0.5 + } + }, + "7": { + "id": 2002, + "lv": 7, + "bdskill": [], + "skill": { + "2002100": 0.5, + "2002101": 0.5 + } + } + }, + "3001": { + "0": { + "id": 3001, + "lv": 0, + "bdskill": [ + "3001400" + ], + "skill": { + "3001100": 1 + } + }, + "1": { + "id": 3001, + "lv": 1, + "bdskill": [ + "3001400" + ], + "skill": { + "3001100": 1 + } + }, + "2": { + "id": 3001, + "lv": 2, + "bdskill": [ + "3001400" + ], + "skill": { + "3001100": 1 + } + }, + "3": { + "id": 3001, + "lv": 3, + "bdskill": [ + "3001400" + ], + "skill": { + "3001100": 1 + } + }, + "4": { + "id": 3001, + "lv": 4, + "bdskill": [ + "3001401" + ], + "skill": { + "3001100": 1 + } + }, + "5": { + "id": 3001, + "lv": 5, + "bdskill": [ + "3001401" + ], + "skill": { + "3001100": 1 + } + }, + "6": { + "id": 3001, + "lv": 6, + "bdskill": [ + "3001401" + ], + "skill": { + "3001100": 1 + } + }, + "7": { + "id": 3001, + "lv": 7, + "bdskill": [ + "3001401" + ], + "skill": { + "3001101": 1 + } + }, + "8": { + "id": 3001, + "lv": 8, + "bdskill": [ + "3001401" + ], + "skill": { + "3001101": 1 + } + }, + "9": { + "id": 3001, + "lv": 9, + "bdskill": [ + "3001401" + ], + "skill": { + "3001102": 1 + } + }, + "10": { + "id": 3001, + "lv": 10, + "bdskill": [ + "3001401" + ], + "skill": { + "3001102": 1 + } + }, + "11": { + "id": 3001, + "lv": 11, + "bdskill": [ + "3001401" + ], + "skill": { + "3001102": 1 + } + } + }, + "3002": { + "0": { + "id": 3002, + "lv": 0, + "bdskill": [], + "skill": { + "3002100": 1 + } + }, + "1": { + "id": 3002, + "lv": 1, + "bdskill": [], + "skill": { + "3002100": 1 + } + }, + "2": { + "id": 3002, + "lv": 2, + "bdskill": [], + "skill": { + "3002100": 1 + } + }, + "3": { + "id": 3002, + "lv": 3, + "bdskill": [], + "skill": { + "3002100": 1 + } + }, + "4": { + "id": 3002, + "lv": 4, + "bdskill": [], + "skill": { + "3002101": 1 + } + }, + "5": { + "id": 3002, + "lv": 5, + "bdskill": [], + "skill": { + "3002101": 1 + } + }, + "6": { + "id": 3002, + "lv": 6, + "bdskill": [], + "skill": { + "3002101": 1 + } + }, + "7": { + "id": 3002, + "lv": 7, + "bdskill": [], + "skill": { + "3002101": 1 + } + }, + "8": { + "id": 3002, + "lv": 8, + "bdskill": [], + "skill": { + "3002101": 1 + } + }, + "9": { + "id": 3002, + "lv": 9, + "bdskill": [], + "skill": { + "3002102": 1 + } + }, + "10": { + "id": 3002, + "lv": 10, + "bdskill": [], + "skill": { + "3002102": 1 + } + }, + "11": { + "id": 3002, + "lv": 11, + "bdskill": [], + "skill": { + "3002102": 1 + } + } + }, + "3003": { + "0": { + "id": 3003, + "lv": 0, + "bdskill": [], + "skill": { + "3003100": 0.5, + "3003101": 0.5 + } + }, + "1": { + "id": 3003, + "lv": 1, + "bdskill": [], + "skill": { + "3003100": 0.5, + "3003101": 0.5 + } + }, + "2": { + "id": 3003, + "lv": 2, + "bdskill": [], + "skill": { + "3003100": 0.5, + "3003101": 0.5 + } + }, + "3": { + "id": 3003, + "lv": 3, + "bdskill": [], + "skill": { + "3003100": 0.5, + "3003101": 0.5 + } + }, + "4": { + "id": 3003, + "lv": 4, + "bdskill": [], + "skill": { + "3003100": 0.5, + "3003102": 0.5 + } + }, + "5": { + "id": 3003, + "lv": 5, + "bdskill": [], + "skill": { + "3003100": 0.5, + "3003102": 0.5 + } + }, + "6": { + "id": 3003, + "lv": 6, + "bdskill": [], + "skill": { + "3003100": 0.5, + "3003102": 0.5 + } + }, + "7": { + "id": 3003, + "lv": 7, + "bdskill": [], + "skill": { + "3003100": 0.5, + "3003102": 0.5 + } + }, + "8": { + "id": 3003, + "lv": 8, + "bdskill": [], + "skill": { + "3003100": 0.5, + "3003102": 0.5 + } + }, + "9": { + "id": 3003, + "lv": 9, + "bdskill": [], + "skill": { + "3003100": 0.5, + "3003102": 0.5 + } + }, + "10": { + "id": 3003, + "lv": 10, + "bdskill": [], + "skill": { + "3003100": 0.5, + "3003102": 0.5 + } + }, + "11": { + "id": 3003, + "lv": 11, + "bdskill": [], + "skill": { + "3003100": 0.5, + "3003102": 0.5 + } + } + }, + "3004": { + "0": { + "id": 3004, + "lv": 0, + "bdskill": [ + "3004400" + ], + "skill": { + "3004100": 1 + } + }, + "1": { + "id": 3004, + "lv": 1, + "bdskill": [ + "3004400" + ], + "skill": { + "3004100": 1 + } + }, + "2": { + "id": 3004, + "lv": 2, + "bdskill": [ + "3004400" + ], + "skill": { + "3004100": 1 + } + }, + "3": { + "id": 3004, + "lv": 3, + "bdskill": [ + "3004400" + ], + "skill": { + "3004100": 1 + } + }, + "4": { + "id": 3004, + "lv": 4, + "bdskill": [ + "3004401" + ], + "skill": { + "3004100": 1 + } + }, + "5": { + "id": 3004, + "lv": 5, + "bdskill": [ + "3004401" + ], + "skill": { + "3004100": 1 + } + }, + "6": { + "id": 3004, + "lv": 6, + "bdskill": [ + "3004401" + ], + "skill": { + "3004100": 1 + } + }, + "7": { + "id": 3004, + "lv": 7, + "bdskill": [ + "3004401" + ], + "skill": { + "3004101": 1 + } + }, + "8": { + "id": 3004, + "lv": 8, + "bdskill": [ + "3004401" + ], + "skill": { + "3004101": 1 + } + }, + "9": { + "id": 3004, + "lv": 9, + "bdskill": [ + "3004402" + ], + "skill": { + "3004101": 1 + } + }, + "10": { + "id": 3004, + "lv": 10, + "bdskill": [ + "3004402" + ], + "skill": { + "3004101": 1 + } + }, + "11": { + "id": 3004, + "lv": 11, + "bdskill": [ + "3004402" + ], + "skill": { + "3004101": 1 + } + } + }, + "3005": { + "0": { + "id": 3005, + "lv": 0, + "bdskill": [], + "skill": { + "3005100": 1 + } + }, + "1": { + "id": 3005, + "lv": 1, + "bdskill": [], + "skill": { + "3005100": 1 + } + }, + "2": { + "id": 3005, + "lv": 2, + "bdskill": [], + "skill": { + "3005100": 1 + } + }, + "3": { + "id": 3005, + "lv": 3, + "bdskill": [], + "skill": { + "3005100": 1 + } + }, + "4": { + "id": 3005, + "lv": 4, + "bdskill": [], + "skill": { + "3005101": 1 + } + }, + "5": { + "id": 3005, + "lv": 5, + "bdskill": [], + "skill": { + "3005101": 1 + } + }, + "6": { + "id": 3005, + "lv": 6, + "bdskill": [], + "skill": { + "3005101": 1 + } + }, + "7": { + "id": 3005, + "lv": 7, + "bdskill": [], + "skill": { + "3005101": 1 + } + }, + "8": { + "id": 3005, + "lv": 8, + "bdskill": [], + "skill": { + "3005101": 1 + } + }, + "9": { + "id": 3005, + "lv": 9, + "bdskill": [ + "3005400" + ], + "skill": { + "3005101": 1 + } + }, + "10": { + "id": 3005, + "lv": 10, + "bdskill": [ + "3005400" + ], + "skill": { + "3005101": 1 + } + }, + "11": { + "id": 3005, + "lv": 11, + "bdskill": [ + "3005400" + ], + "skill": { + "3005101": 1 + } + } + }, + "3006": { + "0": { + "id": 3006, + "lv": 0, + "bdskill": [], + "skill": { + "3006100": 1 + } + }, + "1": { + "id": 3006, + "lv": 1, + "bdskill": [], + "skill": { + "3006100": 1 + } + }, + "2": { + "id": 3006, + "lv": 2, + "bdskill": [], + "skill": { + "3006100": 1 + } + }, + "3": { + "id": 3006, + "lv": 3, + "bdskill": [], + "skill": { + "3006100": 1 + } + }, + "4": { + "id": 3006, + "lv": 4, + "bdskill": [], + "skill": { + "3006101": 1 + } + }, + "5": { + "id": 3006, + "lv": 5, + "bdskill": [], + "skill": { + "3006101": 1 + } + }, + "6": { + "id": 3006, + "lv": 6, + "bdskill": [], + "skill": { + "3006101": 1 + } + }, + "7": { + "id": 3006, + "lv": 7, + "bdskill": [], + "skill": { + "3006101": 1 + } + }, + "8": { + "id": 3006, + "lv": 8, + "bdskill": [], + "skill": { + "3006101": 1 + } + }, + "9": { + "id": 3006, + "lv": 9, + "bdskill": [], + "skill": { + "3006102": 1 + } + }, + "10": { + "id": 3006, + "lv": 10, + "bdskill": [], + "skill": { + "3006102": 1 + } + }, + "11": { + "id": 3006, + "lv": 11, + "bdskill": [], + "skill": { + "3006102": 1 + } + } + }, + "3007": { + "0": { + "id": 3007, + "lv": 0, + "bdskill": [], + "skill": { + "3007100": 0.6, + "3007101": 0.4 + } + }, + "1": { + "id": 3007, + "lv": 1, + "bdskill": [], + "skill": { + "3007100": 0.6, + "3007101": 0.4 + } + }, + "2": { + "id": 3007, + "lv": 2, + "bdskill": [], + "skill": { + "3007100": 0.6, + "3007101": 0.4 + } + }, + "3": { + "id": 3007, + "lv": 3, + "bdskill": [], + "skill": { + "3007100": 0.6, + "3007101": 0.4 + } + }, + "4": { + "id": 3007, + "lv": 4, + "bdskill": [], + "skill": { + "3007100": 0.35, + "3007101": 0.65 + } + }, + "5": { + "id": 3007, + "lv": 5, + "bdskill": [], + "skill": { + "3007100": 0.35, + "3007101": 0.65 + } + }, + "6": { + "id": 3007, + "lv": 6, + "bdskill": [], + "skill": { + "3007100": 0.35, + "3007101": 0.65 + } + }, + "7": { + "id": 3007, + "lv": 7, + "bdskill": [], + "skill": { + "3007102": 0.35, + "3007103": 0.65 + } + }, + "8": { + "id": 3007, + "lv": 8, + "bdskill": [], + "skill": { + "3007102": 0.35, + "3007103": 0.65 + } + }, + "9": { + "id": 3007, + "lv": 9, + "bdskill": [], + "skill": { + "3007104": 1 + } + }, + "10": { + "id": 3007, + "lv": 10, + "bdskill": [], + "skill": { + "3007104": 1 + } + }, + "11": { + "id": 3007, + "lv": 11, + "bdskill": [], + "skill": { + "3007104": 1 + } + } + }, + "3008": { + "0": { + "id": 3008, + "lv": 0, + "bdskill": [], + "skill": { + "3008100": 1 + } + }, + "1": { + "id": 3008, + "lv": 1, + "bdskill": [], + "skill": { + "3008100": 1 + } + }, + "2": { + "id": 3008, + "lv": 2, + "bdskill": [], + "skill": { + "3008100": 1 + } + }, + "3": { + "id": 3008, + "lv": 3, + "bdskill": [], + "skill": { + "3008101": 1 + } + }, + "4": { + "id": 3008, + "lv": 4, + "bdskill": [], + "skill": { + "3008101": 1 + } + }, + "5": { + "id": 3008, + "lv": 5, + "bdskill": [], + "skill": { + "3008101": 1 + } + }, + "6": { + "id": 3008, + "lv": 6, + "bdskill": [], + "skill": { + "3008101": 1 + } + }, + "7": { + "id": 3008, + "lv": 7, + "bdskill": [], + "skill": { + "3008101": 0.5, + "3008102": 0.5 + } + }, + "8": { + "id": 3008, + "lv": 8, + "bdskill": [], + "skill": { + "3008101": 0.5, + "3008102": 0.5 + } + }, + "9": { + "id": 3008, + "lv": 9, + "bdskill": [], + "skill": { + "3008102": 1 + } + }, + "10": { + "id": 3008, + "lv": 10, + "bdskill": [], + "skill": { + "3008102": 1 + } + }, + "11": { + "id": 3008, + "lv": 11, + "bdskill": [], + "skill": { + "3008102": 1 + } + } + }, + "3009": { + "0": { + "id": 3009, + "lv": 0, + "bdskill": [], + "skill": { + "3009100": 0.6, + "3009101": 0.4 + } + }, + "1": { + "id": 3009, + "lv": 1, + "bdskill": [], + "skill": { + "3009100": 0.6, + "3009101": 0.4 + } + }, + "2": { + "id": 3009, + "lv": 2, + "bdskill": [], + "skill": { + "3009100": 0.6, + "3009101": 0.4 + } + }, + "3": { + "id": 3009, + "lv": 3, + "bdskill": [], + "skill": { + "3009100": 0.6, + "3009101": 0.4 + } + }, + "4": { + "id": 3009, + "lv": 4, + "bdskill": [], + "skill": { + "3009100": 0.6, + "3009102": 0.4 + } + }, + "5": { + "id": 3009, + "lv": 5, + "bdskill": [], + "skill": { + "3009100": 0.6, + "3009102": 0.4 + } + }, + "6": { + "id": 3009, + "lv": 6, + "bdskill": [], + "skill": { + "3009100": 0.6, + "3009102": 0.4 + } + }, + "7": { + "id": 3009, + "lv": 7, + "bdskill": [], + "skill": { + "3009100": 0.6, + "3009102": 0.4 + } + }, + "8": { + "id": 3009, + "lv": 8, + "bdskill": [], + "skill": { + "3009100": 0.6, + "3009102": 0.4 + } + }, + "9": { + "id": 3009, + "lv": 9, + "bdskill": [ + "3009400" + ], + "skill": { + "3009100": 0.6, + "3009102": 0.4 + } + }, + "10": { + "id": 3009, + "lv": 10, + "bdskill": [ + "3009400" + ], + "skill": { + "3009100": 0.6, + "3009102": 0.4 + } + }, + "11": { + "id": 3009, + "lv": 11, + "bdskill": [ + "3009400" + ], + "skill": { + "3009100": 0.6, + "3009102": 0.4 + } + } + }, + "3010": { + "0": { + "id": 3010, + "lv": 0, + "bdskill": [], + "skill": { + "3010100": 1 + } + }, + "1": { + "id": 3010, + "lv": 1, + "bdskill": [], + "skill": { + "3010100": 1 + } + }, + "2": { + "id": 3010, + "lv": 2, + "bdskill": [], + "skill": { + "3010100": 1 + } + }, + "3": { + "id": 3010, + "lv": 3, + "bdskill": [], + "skill": { + "3010100": 1 + } + }, + "4": { + "id": 3010, + "lv": 4, + "bdskill": [], + "skill": { + "3010101": 1 + } + }, + "5": { + "id": 3010, + "lv": 5, + "bdskill": [], + "skill": { + "3010101": 1 + } + }, + "6": { + "id": 3010, + "lv": 6, + "bdskill": [], + "skill": { + "3010101": 1 + } + }, + "7": { + "id": 3010, + "lv": 7, + "bdskill": [], + "skill": { + "3010102": 1 + } + }, + "8": { + "id": 3010, + "lv": 8, + "bdskill": [], + "skill": { + "3010102": 1 + } + }, + "9": { + "id": 3010, + "lv": 9, + "bdskill": [], + "skill": { + "3010103": 1 + } + }, + "10": { + "id": 3010, + "lv": 10, + "bdskill": [], + "skill": { + "3010103": 1 + } + }, + "11": { + "id": 3010, + "lv": 11, + "bdskill": [], + "skill": { + "3010103": 1 + } + } + }, + "3011": { + "0": { + "id": 3011, + "lv": 0, + "bdskill": [], + "skill": { + "3011100": 1 + } + }, + "1": { + "id": 3011, + "lv": 1, + "bdskill": [], + "skill": { + "3011100": 1 + } + }, + "2": { + "id": 3011, + "lv": 2, + "bdskill": [], + "skill": { + "3011100": 1 + } + }, + "3": { + "id": 3011, + "lv": 3, + "bdskill": [], + "skill": { + "3011100": 1 + } + }, + "4": { + "id": 3011, + "lv": 4, + "bdskill": [], + "skill": { + "3011101": 1 + } + }, + "5": { + "id": 3011, + "lv": 5, + "bdskill": [], + "skill": { + "3011101": 1 + } + }, + "6": { + "id": 3011, + "lv": 6, + "bdskill": [], + "skill": { + "3011101": 1 + } + }, + "7": { + "id": 3011, + "lv": 7, + "bdskill": [], + "skill": { + "3011101": 0.5, + "3011102": 0.5 + } + }, + "8": { + "id": 3011, + "lv": 8, + "bdskill": [], + "skill": { + "3011101": 0.5, + "3011102": 0.5 + } + }, + "9": { + "id": 3011, + "lv": 9, + "bdskill": [], + "skill": { + "3011103": 1 + } + }, + "10": { + "id": 3011, + "lv": 10, + "bdskill": [], + "skill": { + "3011103": 1 + } + }, + "11": { + "id": 3011, + "lv": 11, + "bdskill": [], + "skill": { + "3011103": 1 + } + } + }, + "3012": { + "0": { + "id": 3012, + "lv": 0, + "bdskill": [ + "3012400" + ], + "skill": { + "3012100": 1 + } + }, + "1": { + "id": 3012, + "lv": 1, + "bdskill": [ + "3012400" + ], + "skill": { + "3012100": 1 + } + }, + "2": { + "id": 3012, + "lv": 2, + "bdskill": [ + "3012400" + ], + "skill": { + "3012100": 1 + } + }, + "3": { + "id": 3012, + "lv": 3, + "bdskill": [ + "3012400" + ], + "skill": { + "3012100": 1 + } + }, + "4": { + "id": 3012, + "lv": 4, + "bdskill": [ + "3012401" + ], + "skill": { + "3012100": 1 + } + }, + "5": { + "id": 3012, + "lv": 5, + "bdskill": [ + "3012401" + ], + "skill": { + "3012100": 1 + } + }, + "6": { + "id": 3012, + "lv": 6, + "bdskill": [ + "3012401" + ], + "skill": { + "3012100": 1 + } + }, + "7": { + "id": 3012, + "lv": 7, + "bdskill": [ + "3012401" + ], + "skill": { + "3012100": 1 + } + }, + "8": { + "id": 3012, + "lv": 8, + "bdskill": [ + "3012401" + ], + "skill": { + "3012100": 1 + } + }, + "9": { + "id": 3012, + "lv": 9, + "bdskill": [ + "3012401" + ], + "skill": { + "3012101": 1 + } + }, + "10": { + "id": 3012, + "lv": 10, + "bdskill": [ + "3012401" + ], + "skill": { + "3012101": 1 + } + }, + "11": { + "id": 3012, + "lv": 11, + "bdskill": [ + "3012401" + ], + "skill": { + "3012101": 1 + } + } + }, + "3013": { + "0": { + "id": 3013, + "lv": 0, + "bdskill": [], + "skill": { + "3013100": 1 + } + }, + "1": { + "id": 3013, + "lv": 1, + "bdskill": [], + "skill": { + "3013100": 1 + } + }, + "2": { + "id": 3013, + "lv": 2, + "bdskill": [], + "skill": { + "3013100": 1 + } + }, + "3": { + "id": 3013, + "lv": 3, + "bdskill": [], + "skill": { + "3013100": 1 + } + }, + "4": { + "id": 3013, + "lv": 4, + "bdskill": [], + "skill": { + "3013101": 1 + } + }, + "5": { + "id": 3013, + "lv": 5, + "bdskill": [], + "skill": { + "3013101": 1 + } + }, + "6": { + "id": 3013, + "lv": 6, + "bdskill": [], + "skill": { + "3013101": 1 + } + }, + "7": { + "id": 3013, + "lv": 7, + "bdskill": [], + "skill": { + "3013102": 1 + } + }, + "8": { + "id": 3013, + "lv": 8, + "bdskill": [], + "skill": { + "3013102": 1 + } + }, + "9": { + "id": 3013, + "lv": 9, + "bdskill": [], + "skill": { + "3013102": 1 + } + }, + "10": { + "id": 3013, + "lv": 10, + "bdskill": [], + "skill": { + "3013102": 1 + } + }, + "11": { + "id": 3013, + "lv": 11, + "bdskill": [], + "skill": { + "3013102": 1 + } + } + }, + "3014": { + "0": { + "id": 3014, + "lv": 0, + "bdskill": [], + "skill": { + "3014100": 1 + } + }, + "1": { + "id": 3014, + "lv": 1, + "bdskill": [], + "skill": { + "3014100": 1 + } + }, + "2": { + "id": 3014, + "lv": 2, + "bdskill": [], + "skill": { + "3014100": 1 + } + }, + "3": { + "id": 3014, + "lv": 3, + "bdskill": [], + "skill": { + "3014100": 1 + } + }, + "4": { + "id": 3014, + "lv": 4, + "bdskill": [], + "skill": { + "3014101": 1 + } + }, + "5": { + "id": 3014, + "lv": 5, + "bdskill": [], + "skill": { + "3014101": 1 + } + }, + "6": { + "id": 3014, + "lv": 6, + "bdskill": [], + "skill": { + "3014101": 1 + } + }, + "7": { + "id": 3014, + "lv": 7, + "bdskill": [], + "skill": { + "3014101": 1 + } + }, + "8": { + "id": 3014, + "lv": 8, + "bdskill": [], + "skill": { + "3014101": 1 + } + }, + "9": { + "id": 3014, + "lv": 9, + "bdskill": [ + "3014400" + ], + "skill": { + "3014101": 1 + } + }, + "10": { + "id": 3014, + "lv": 10, + "bdskill": [ + "3014400" + ], + "skill": { + "3014101": 1 + } + }, + "11": { + "id": 3014, + "lv": 11, + "bdskill": [ + "3014400" + ], + "skill": { + "3014101": 1 + } + } + }, + "3015": { + "0": { + "id": 3015, + "lv": 0, + "bdskill": [], + "skill": { + "3015100": 1 + } + }, + "1": { + "id": 3015, + "lv": 1, + "bdskill": [], + "skill": { + "3015100": 1 + } + }, + "2": { + "id": 3015, + "lv": 2, + "bdskill": [], + "skill": { + "3015100": 1 + } + }, + "3": { + "id": 3015, + "lv": 3, + "bdskill": [], + "skill": { + "3015100": 1 + } + }, + "4": { + "id": 3015, + "lv": 4, + "bdskill": [], + "skill": { + "3015101": 1 + } + }, + "5": { + "id": 3015, + "lv": 5, + "bdskill": [], + "skill": { + "3015101": 1 + } + }, + "6": { + "id": 3015, + "lv": 6, + "bdskill": [], + "skill": { + "3015101": 1 + } + }, + "7": { + "id": 3015, + "lv": 7, + "bdskill": [], + "skill": { + "3015101": 1 + } + }, + "8": { + "id": 3015, + "lv": 8, + "bdskill": [], + "skill": { + "3015101": 1 + } + }, + "9": { + "id": 3015, + "lv": 9, + "bdskill": [], + "skill": { + "3015102": 1 + } + }, + "10": { + "id": 3015, + "lv": 10, + "bdskill": [], + "skill": { + "3015102": 1 + } + }, + "11": { + "id": 3015, + "lv": 11, + "bdskill": [], + "skill": { + "3015102": 1 + } + } + }, + "4001": { + "0": { + "id": 4001, + "lv": 0, + "bdskill": [], + "skill": { + "4001100": 1 + } + }, + "1": { + "id": 4001, + "lv": 1, + "bdskill": [], + "skill": { + "4001100": 1 + } + }, + "2": { + "id": 4001, + "lv": 2, + "bdskill": [], + "skill": { + "4001100": 1 + } + }, + "3": { + "id": 4001, + "lv": 3, + "bdskill": [], + "skill": { + "4001100": 1 + } + }, + "4": { + "id": 4001, + "lv": 4, + "bdskill": [], + "skill": { + "4001101": 1 + } + }, + "5": { + "id": 4001, + "lv": 5, + "bdskill": [], + "skill": { + "4001101": 1 + } + }, + "6": { + "id": 4001, + "lv": 6, + "bdskill": [], + "skill": { + "4001101": 1 + } + }, + "7": { + "id": 4001, + "lv": 7, + "bdskill": [ + "4001400" + ], + "skill": { + "4001101": 1 + } + }, + "8": { + "id": 4001, + "lv": 8, + "bdskill": [ + "4001400" + ], + "skill": { + "4001101": 1 + } + }, + "9": { + "id": 4001, + "lv": 9, + "bdskill": [ + "4001400" + ], + "skill": { + "4001102": 1 + } + }, + "10": { + "id": 4001, + "lv": 10, + "bdskill": [ + "4001400" + ], + "skill": { + "4001102": 1 + } + }, + "11": { + "id": 4001, + "lv": 11, + "bdskill": [ + "4001400" + ], + "skill": { + "4001102": 1 + } + } + }, + "4002": { + "0": { + "id": 4002, + "lv": 0, + "bdskill": [], + "skill": { + "4002100": 1 + } + }, + "1": { + "id": 4002, + "lv": 1, + "bdskill": [], + "skill": { + "4002100": 1 + } + }, + "2": { + "id": 4002, + "lv": 2, + "bdskill": [], + "skill": { + "4002100": 1 + } + }, + "3": { + "id": 4002, + "lv": 3, + "bdskill": [], + "skill": { + "4002100": 1 + } + }, + "4": { + "id": 4002, + "lv": 4, + "bdskill": [], + "skill": { + "4002101": 1 + } + }, + "5": { + "id": 4002, + "lv": 5, + "bdskill": [], + "skill": { + "4002101": 1 + } + }, + "6": { + "id": 4002, + "lv": 6, + "bdskill": [], + "skill": { + "4002101": 1 + } + }, + "7": { + "id": 4002, + "lv": 7, + "bdskill": [], + "skill": { + "4002101": 1 + } + }, + "8": { + "id": 4002, + "lv": 8, + "bdskill": [], + "skill": { + "4002101": 1 + } + }, + "9": { + "id": 4002, + "lv": 9, + "bdskill": [], + "skill": { + "4002102": 1 + } + }, + "10": { + "id": 4002, + "lv": 10, + "bdskill": [], + "skill": { + "4002102": 1 + } + }, + "11": { + "id": 4002, + "lv": 11, + "bdskill": [], + "skill": { + "4002102": 1 + } + } + }, + "4003": { + "0": { + "id": 4003, + "lv": 0, + "bdskill": [], + "skill": { + "4003100": 1 + } + }, + "1": { + "id": 4003, + "lv": 1, + "bdskill": [], + "skill": { + "4003100": 1 + } + }, + "2": { + "id": 4003, + "lv": 2, + "bdskill": [], + "skill": { + "4003100": 1 + } + }, + "3": { + "id": 4003, + "lv": 3, + "bdskill": [], + "skill": { + "4003100": 1 + } + }, + "4": { + "id": 4003, + "lv": 4, + "bdskill": [], + "skill": { + "4003101": 1 + } + }, + "5": { + "id": 4003, + "lv": 5, + "bdskill": [], + "skill": { + "4003101": 1 + } + }, + "6": { + "id": 4003, + "lv": 6, + "bdskill": [], + "skill": { + "4003101": 1 + } + }, + "7": { + "id": 4003, + "lv": 7, + "bdskill": [], + "skill": { + "4003102": 1 + } + }, + "8": { + "id": 4003, + "lv": 8, + "bdskill": [], + "skill": { + "4003102": 1 + } + }, + "9": { + "id": 4003, + "lv": 9, + "bdskill": [], + "skill": { + "4003103": 1 + } + }, + "10": { + "id": 4003, + "lv": 10, + "bdskill": [], + "skill": { + "4003103": 1 + } + }, + "11": { + "id": 4003, + "lv": 11, + "bdskill": [], + "skill": { + "4003103": 1 + } + } + }, + "4004": { + "0": { + "id": 4004, + "lv": 0, + "bdskill": [], + "skill": { + "4004100": 1 + } + }, + "1": { + "id": 4004, + "lv": 1, + "bdskill": [], + "skill": { + "4004100": 1 + } + }, + "2": { + "id": 4004, + "lv": 2, + "bdskill": [], + "skill": { + "4004100": 1 + } + }, + "3": { + "id": 4004, + "lv": 3, + "bdskill": [], + "skill": { + "4004100": 1 + } + }, + "4": { + "id": 4004, + "lv": 4, + "bdskill": [], + "skill": { + "4004101": 1 + } + }, + "5": { + "id": 4004, + "lv": 5, + "bdskill": [], + "skill": { + "4004101": 1 + } + }, + "6": { + "id": 4004, + "lv": 6, + "bdskill": [], + "skill": { + "4004101": 1 + } + }, + "7": { + "id": 4004, + "lv": 7, + "bdskill": [], + "skill": { + "4004102": 1 + } + }, + "8": { + "id": 4004, + "lv": 8, + "bdskill": [], + "skill": { + "4004102": 1 + } + }, + "9": { + "id": 4004, + "lv": 9, + "bdskill": [], + "skill": { + "4004103": 1 + } + }, + "10": { + "id": 4004, + "lv": 10, + "bdskill": [], + "skill": { + "4004103": 1 + } + }, + "11": { + "id": 4004, + "lv": 11, + "bdskill": [], + "skill": { + "4004103": 1 + } + } + }, + "4005": { + "0": { + "id": 4005, + "lv": 0, + "bdskill": [], + "skill": { + "4005100": 1 + } + }, + "1": { + "id": 4005, + "lv": 1, + "bdskill": [], + "skill": { + "4005100": 1 + } + }, + "2": { + "id": 4005, + "lv": 2, + "bdskill": [], + "skill": { + "4005100": 1 + } + }, + "3": { + "id": 4005, + "lv": 3, + "bdskill": [], + "skill": { + "4005100": 1 + } + }, + "4": { + "id": 4005, + "lv": 4, + "bdskill": [], + "skill": { + "4005101": 1 + } + }, + "5": { + "id": 4005, + "lv": 5, + "bdskill": [], + "skill": { + "4005101": 1 + } + }, + "6": { + "id": 4005, + "lv": 6, + "bdskill": [], + "skill": { + "4005101": 1 + } + }, + "7": { + "id": 4005, + "lv": 7, + "bdskill": [], + "skill": { + "4005102": 1 + } + }, + "8": { + "id": 4005, + "lv": 8, + "bdskill": [], + "skill": { + "4005102": 1 + } + }, + "9": { + "id": 4005, + "lv": 9, + "bdskill": [], + "skill": { + "4005103": 1 + } + }, + "10": { + "id": 4005, + "lv": 10, + "bdskill": [], + "skill": { + "4005103": 1 + } + }, + "11": { + "id": 4005, + "lv": 11, + "bdskill": [], + "skill": { + "4005103": 1 + } + } + }, + "4006": { + "0": { + "id": 4006, + "lv": 0, + "bdskill": [ + "4006400" + ], + "skill": { + "4006100": 1 + } + }, + "1": { + "id": 4006, + "lv": 1, + "bdskill": [ + "4006400" + ], + "skill": { + "4006100": 1 + } + }, + "2": { + "id": 4006, + "lv": 2, + "bdskill": [ + "4006400" + ], + "skill": { + "4006100": 1 + } + }, + "3": { + "id": 4006, + "lv": 3, + "bdskill": [ + "4006400" + ], + "skill": { + "4006100": 1 + } + }, + "4": { + "id": 4006, + "lv": 4, + "bdskill": [ + "4006401" + ], + "skill": { + "4006100": 1 + } + }, + "5": { + "id": 4006, + "lv": 5, + "bdskill": [ + "4006401" + ], + "skill": { + "4006100": 1 + } + }, + "6": { + "id": 4006, + "lv": 6, + "bdskill": [ + "4006401" + ], + "skill": { + "4006100": 1 + } + }, + "7": { + "id": 4006, + "lv": 7, + "bdskill": [ + "4006401" + ], + "skill": { + "4006102": 1 + } + }, + "8": { + "id": 4006, + "lv": 8, + "bdskill": [ + "4006401" + ], + "skill": { + "4006102": 1 + } + }, + "9": { + "id": 4006, + "lv": 9, + "bdskill": [ + "4006401" + ], + "skill": { + "4006101": 1 + } + }, + "10": { + "id": 4006, + "lv": 10, + "bdskill": [ + "4006401" + ], + "skill": { + "4006101": 1 + } + }, + "11": { + "id": 4006, + "lv": 11, + "bdskill": [ + "4006401" + ], + "skill": { + "4006101": 1 + } + } + }, + "4007": { + "0": { + "id": 4007, + "lv": 0, + "bdskill": [], + "skill": { + "4007100": 1 + } + }, + "1": { + "id": 4007, + "lv": 1, + "bdskill": [], + "skill": { + "4007100": 1 + } + }, + "2": { + "id": 4007, + "lv": 2, + "bdskill": [], + "skill": { + "4007100": 1 + } + }, + "3": { + "id": 4007, + "lv": 3, + "bdskill": [], + "skill": { + "4007100": 1 + } + }, + "4": { + "id": 4007, + "lv": 4, + "bdskill": [], + "skill": { + "4007101": 1 + } + }, + "5": { + "id": 4007, + "lv": 5, + "bdskill": [], + "skill": { + "4007101": 1 + } + }, + "6": { + "id": 4007, + "lv": 6, + "bdskill": [], + "skill": { + "4007101": 1 + } + }, + "7": { + "id": 4007, + "lv": 7, + "bdskill": [], + "skill": { + "4007102": 1 + } + }, + "8": { + "id": 4007, + "lv": 8, + "bdskill": [], + "skill": { + "4007102": 1 + } + }, + "9": { + "id": 4007, + "lv": 9, + "bdskill": [], + "skill": { + "4007103": 1 + } + }, + "10": { + "id": 4007, + "lv": 10, + "bdskill": [], + "skill": { + "4007103": 1 + } + }, + "11": { + "id": 4007, + "lv": 11, + "bdskill": [], + "skill": { + "4007103": 1 + } + } + }, + "4008": { + "0": { + "id": 4008, + "lv": 0, + "bdskill": [ + "4008400" + ], + "skill": { + "4008100": 1 + } + }, + "1": { + "id": 4008, + "lv": 1, + "bdskill": [ + "4008400" + ], + "skill": { + "4008100": 1 + } + }, + "2": { + "id": 4008, + "lv": 2, + "bdskill": [ + "4008400" + ], + "skill": { + "4008100": 1 + } + }, + "3": { + "id": 4008, + "lv": 3, + "bdskill": [ + "4008400" + ], + "skill": { + "4008100": 1 + } + }, + "4": { + "id": 4008, + "lv": 4, + "bdskill": [ + "4008401" + ], + "skill": { + "4008100": 1 + } + }, + "5": { + "id": 4008, + "lv": 5, + "bdskill": [ + "4008401" + ], + "skill": { + "4008100": 1 + } + }, + "6": { + "id": 4008, + "lv": 6, + "bdskill": [ + "4008401" + ], + "skill": { + "4008100": 1 + } + }, + "7": { + "id": 4008, + "lv": 7, + "bdskill": [ + "4008401" + ], + "skill": { + "4008101": 1 + } + }, + "8": { + "id": 4008, + "lv": 8, + "bdskill": [ + "4008401" + ], + "skill": { + "4008101": 1 + } + }, + "9": { + "id": 4008, + "lv": 9, + "bdskill": [ + "4008401" + ], + "skill": { + "4008102": 1 + } + }, + "10": { + "id": 4008, + "lv": 10, + "bdskill": [ + "4008401" + ], + "skill": { + "4008102": 1 + } + }, + "11": { + "id": 4008, + "lv": 11, + "bdskill": [ + "4008401" + ], + "skill": { + "4008102": 1 + } + } + }, + "4009": { + "0": { + "id": 4009, + "lv": 0, + "bdskill": [], + "skill": { + "4009100": 1 + } + }, + "1": { + "id": 4009, + "lv": 1, + "bdskill": [], + "skill": { + "4009100": 1 + } + }, + "2": { + "id": 4009, + "lv": 2, + "bdskill": [], + "skill": { + "4009100": 1 + } + }, + "3": { + "id": 4009, + "lv": 3, + "bdskill": [], + "skill": { + "4009100": 1 + } + }, + "4": { + "id": 4009, + "lv": 4, + "bdskill": [], + "skill": { + "4009101": 1 + } + }, + "5": { + "id": 4009, + "lv": 5, + "bdskill": [], + "skill": { + "4009101": 1 + } + }, + "6": { + "id": 4009, + "lv": 6, + "bdskill": [], + "skill": { + "4009101": 1 + } + }, + "7": { + "id": 4009, + "lv": 7, + "bdskill": [], + "skill": { + "4009102": 1 + } + }, + "8": { + "id": 4009, + "lv": 8, + "bdskill": [], + "skill": { + "4009102": 1 + } + }, + "9": { + "id": 4009, + "lv": 9, + "bdskill": [], + "skill": { + "4009102": 0.8, + "4009103": 0.2 + } + }, + "10": { + "id": 4009, + "lv": 10, + "bdskill": [], + "skill": { + "4009102": 0.8, + "4009103": 0.2 + } + }, + "11": { + "id": 4009, + "lv": 11, + "bdskill": [], + "skill": { + "4009102": 0.8, + "4009103": 0.2 + } + } + }, + "4010": { + "0": { + "id": 4010, + "lv": 0, + "bdskill": [], + "skill": { + "4010100": 1 + } + }, + "1": { + "id": 4010, + "lv": 1, + "bdskill": [], + "skill": { + "4010100": 1 + } + }, + "2": { + "id": 4010, + "lv": 2, + "bdskill": [], + "skill": { + "4010100": 1 + } + }, + "3": { + "id": 4010, + "lv": 3, + "bdskill": [], + "skill": { + "4010100": 1 + } + }, + "4": { + "id": 4010, + "lv": 4, + "bdskill": [], + "skill": { + "4010101": 1 + } + }, + "5": { + "id": 4010, + "lv": 5, + "bdskill": [], + "skill": { + "4010101": 1 + } + }, + "6": { + "id": 4010, + "lv": 6, + "bdskill": [], + "skill": { + "4010101": 1 + } + }, + "7": { + "id": 4010, + "lv": 7, + "bdskill": [], + "skill": { + "4010102": 1 + } + }, + "8": { + "id": 4010, + "lv": 8, + "bdskill": [], + "skill": { + "4010102": 1 + } + }, + "9": { + "id": 4010, + "lv": 9, + "bdskill": [], + "skill": { + "4010103": 1 + } + }, + "10": { + "id": 4010, + "lv": 10, + "bdskill": [], + "skill": { + "4010103": 1 + } + }, + "11": { + "id": 4010, + "lv": 11, + "bdskill": [], + "skill": { + "4010103": 1 + } + } + }, + "4011": { + "0": { + "id": 4011, + "lv": 0, + "bdskill": [], + "skill": { + "4011100": 0.9, + "4011101": 0.1 + } + }, + "1": { + "id": 4011, + "lv": 1, + "bdskill": [], + "skill": { + "4011100": 0.9, + "4011101": 0.1 + } + }, + "2": { + "id": 4011, + "lv": 2, + "bdskill": [], + "skill": { + "4011100": 0.9, + "4011101": 0.1 + } + }, + "3": { + "id": 4011, + "lv": 3, + "bdskill": [], + "skill": { + "4011100": 0.9, + "4011101": 0.1 + } + }, + "4": { + "id": 4011, + "lv": 4, + "bdskill": [], + "skill": { + "4011100": 0.78, + "4011101": 0.22 + } + }, + "5": { + "id": 4011, + "lv": 5, + "bdskill": [], + "skill": { + "4011100": 0.78, + "4011101": 0.22 + } + }, + "6": { + "id": 4011, + "lv": 6, + "bdskill": [], + "skill": { + "4011100": 0.78, + "4011101": 0.22 + } + }, + "7": { + "id": 4011, + "lv": 7, + "bdskill": [], + "skill": { + "4011100": 0.78, + "4011101": 0.22 + } + }, + "8": { + "id": 4011, + "lv": 8, + "bdskill": [], + "skill": { + "4011100": 0.78, + "4011101": 0.22 + } + }, + "9": { + "id": 4011, + "lv": 9, + "bdskill": [], + "skill": { + "4011102": 0.78, + "4011103": 0.22 + } + }, + "10": { + "id": 4011, + "lv": 10, + "bdskill": [], + "skill": { + "4011102": 0.78, + "4011103": 0.22 + } + }, + "11": { + "id": 4011, + "lv": 11, + "bdskill": [], + "skill": { + "4011102": 0.78, + "4011103": 0.22 + } + } + }, + "4012": { + "0": { + "id": 4012, + "lv": 0, + "bdskill": [], + "skill": { + "4012100": 1 + } + }, + "1": { + "id": 4012, + "lv": 1, + "bdskill": [], + "skill": { + "4012100": 1 + } + }, + "2": { + "id": 4012, + "lv": 2, + "bdskill": [], + "skill": { + "4012100": 1 + } + }, + "3": { + "id": 4012, + "lv": 3, + "bdskill": [], + "skill": { + "4012100": 1 + } + }, + "4": { + "id": 4012, + "lv": 4, + "bdskill": [], + "skill": { + "4012101": 1 + } + }, + "5": { + "id": 4012, + "lv": 5, + "bdskill": [], + "skill": { + "4012101": 1 + } + }, + "6": { + "id": 4012, + "lv": 6, + "bdskill": [], + "skill": { + "4012101": 1 + } + }, + "7": { + "id": 4012, + "lv": 7, + "bdskill": [], + "skill": { + "4012102": 1 + } + }, + "8": { + "id": 4012, + "lv": 8, + "bdskill": [], + "skill": { + "4012102": 1 + } + }, + "9": { + "id": 4012, + "lv": 9, + "bdskill": [], + "skill": { + "4012103": 1 + } + }, + "10": { + "id": 4012, + "lv": 10, + "bdskill": [], + "skill": { + "4012103": 1 + } + }, + "11": { + "id": 4012, + "lv": 11, + "bdskill": [], + "skill": { + "4012103": 1 + } + } + }, + "4013": { + "0": { + "id": 4013, + "lv": 0, + "bdskill": [], + "skill": { + "4013100": 1 + } + }, + "1": { + "id": 4013, + "lv": 1, + "bdskill": [], + "skill": { + "4013100": 1 + } + }, + "2": { + "id": 4013, + "lv": 2, + "bdskill": [], + "skill": { + "4013100": 1 + } + }, + "3": { + "id": 4013, + "lv": 3, + "bdskill": [], + "skill": { + "4013100": 1 + } + }, + "4": { + "id": 4013, + "lv": 4, + "bdskill": [], + "skill": { + "4013101": 1 + } + }, + "5": { + "id": 4013, + "lv": 5, + "bdskill": [], + "skill": { + "4013101": 1 + } + }, + "6": { + "id": 4013, + "lv": 6, + "bdskill": [], + "skill": { + "4013101": 1 + } + }, + "7": { + "id": 4013, + "lv": 7, + "bdskill": [], + "skill": { + "4013102": 1 + } + }, + "8": { + "id": 4013, + "lv": 8, + "bdskill": [], + "skill": { + "4013102": 1 + } + }, + "9": { + "id": 4013, + "lv": 9, + "bdskill": [ + "4013400" + ], + "skill": { + "4013102": 1 + } + }, + "10": { + "id": 4013, + "lv": 10, + "bdskill": [ + "4013400" + ], + "skill": { + "4013102": 1 + } + }, + "11": { + "id": 4013, + "lv": 11, + "bdskill": [ + "4013400" + ], + "skill": { + "4013102": 1 + } + } + }, + "4014": { + "0": { + "id": 4014, + "lv": 0, + "bdskill": [ + "4014401" + ], + "skill": { + "4014100": 1 + } + }, + "1": { + "id": 4014, + "lv": 1, + "bdskill": [ + "4014401" + ], + "skill": { + "4014100": 1 + } + }, + "2": { + "id": 4014, + "lv": 2, + "bdskill": [ + "4014401" + ], + "skill": { + "4014100": 1 + } + }, + "3": { + "id": 4014, + "lv": 3, + "bdskill": [ + "4014401" + ], + "skill": { + "4014100": 1 + } + }, + "4": { + "id": 4014, + "lv": 4, + "bdskill": [ + "4014401" + ], + "skill": { + "4014100": 1 + } + }, + "5": { + "id": 4014, + "lv": 5, + "bdskill": [ + "4014401" + ], + "skill": { + "4014100": 1 + } + }, + "6": { + "id": 4014, + "lv": 6, + "bdskill": [ + "4014401" + ], + "skill": { + "4014100": 1 + } + }, + "7": { + "id": 4014, + "lv": 7, + "bdskill": [ + "4014401" + ], + "skill": { + "4014101": 1 + } + }, + "8": { + "id": 4014, + "lv": 8, + "bdskill": [ + "4014401" + ], + "skill": { + "4014101": 1 + } + }, + "9": { + "id": 4014, + "lv": 9, + "bdskill": [ + "4014402" + ], + "skill": { + "4014102": 1 + } + }, + "10": { + "id": 4014, + "lv": 10, + "bdskill": [ + "4014402" + ], + "skill": { + "4014102": 1 + } + }, + "11": { + "id": 4014, + "lv": 11, + "bdskill": [ + "4014402" + ], + "skill": { + "4014102": 1 + } + } + }, + "4015": { + "0": { + "id": 4015, + "lv": 0, + "bdskill": [ + "4015400" + ], + "skill": { + "4015100": 1 + } + }, + "1": { + "id": 4015, + "lv": 1, + "bdskill": [ + "4015400" + ], + "skill": { + "4015100": 1 + } + }, + "2": { + "id": 4015, + "lv": 2, + "bdskill": [ + "4015400" + ], + "skill": { + "4015100": 1 + } + }, + "3": { + "id": 4015, + "lv": 3, + "bdskill": [ + "4015400" + ], + "skill": { + "4015100": 1 + } + }, + "4": { + "id": 4015, + "lv": 4, + "bdskill": [ + "4015401" + ], + "skill": { + "4015100": 1 + } + }, + "5": { + "id": 4015, + "lv": 5, + "bdskill": [ + "4015401" + ], + "skill": { + "4015100": 1 + } + }, + "6": { + "id": 4015, + "lv": 6, + "bdskill": [ + "4015401" + ], + "skill": { + "4015100": 1 + } + }, + "7": { + "id": 4015, + "lv": 7, + "bdskill": [ + "4015403", + "4015401" + ], + "skill": { + "4015100": 1 + } + }, + "8": { + "id": 4015, + "lv": 8, + "bdskill": [ + "4015403", + "4015401" + ], + "skill": { + "4015100": 1 + } + }, + "9": { + "id": 4015, + "lv": 9, + "bdskill": [ + "4015403", + "4015402" + ], + "skill": { + "4015100": 1 + } + }, + "10": { + "id": 4015, + "lv": 10, + "bdskill": [ + "4015403", + "4015402" + ], + "skill": { + "4015100": 1 + } + }, + "11": { + "id": 4015, + "lv": 11, + "bdskill": [ + "4015403", + "4015402" + ], + "skill": { + "4015100": 1 + } + } + }, + "5001": { + "0": { + "id": 5001, + "lv": 0, + "bdskill": [], + "skill": { + "5001100": 1 + } + }, + "1": { + "id": 5001, + "lv": 1, + "bdskill": [], + "skill": { + "5001100": 1 + } + }, + "2": { + "id": 5001, + "lv": 2, + "bdskill": [], + "skill": { + "5001100": 1 + } + }, + "3": { + "id": 5001, + "lv": 3, + "bdskill": [], + "skill": { + "5001100": 1 + } + }, + "4": { + "id": 5001, + "lv": 4, + "bdskill": [], + "skill": { + "5001101": 1 + } + }, + "5": { + "id": 5001, + "lv": 5, + "bdskill": [], + "skill": { + "5001101": 1 + } + }, + "6": { + "id": 5001, + "lv": 6, + "bdskill": [], + "skill": { + "5001101": 1 + } + }, + "7": { + "id": 5001, + "lv": 7, + "bdskill": [], + "skill": { + "5001102": 1 + } + }, + "8": { + "id": 5001, + "lv": 8, + "bdskill": [], + "skill": { + "5001102": 1 + } + }, + "9": { + "id": 5001, + "lv": 9, + "bdskill": [], + "skill": { + "5001103": 1 + } + }, + "10": { + "id": 5001, + "lv": 10, + "bdskill": [], + "skill": { + "5001103": 1 + } + }, + "11": { + "id": 5001, + "lv": 11, + "bdskill": [], + "skill": { + "5001103": 1 + } + } + }, + "5002": { + "0": { + "id": 5002, + "lv": 0, + "bdskill": [], + "skill": { + "5002100": 1 + } + }, + "1": { + "id": 5002, + "lv": 1, + "bdskill": [], + "skill": { + "5002100": 1 + } + }, + "2": { + "id": 5002, + "lv": 2, + "bdskill": [], + "skill": { + "5002100": 1 + } + }, + "3": { + "id": 5002, + "lv": 3, + "bdskill": [], + "skill": { + "5002100": 1 + } + }, + "4": { + "id": 5002, + "lv": 4, + "bdskill": [], + "skill": { + "5002101": 1 + } + }, + "5": { + "id": 5002, + "lv": 5, + "bdskill": [], + "skill": { + "5002101": 1 + } + }, + "6": { + "id": 5002, + "lv": 6, + "bdskill": [], + "skill": { + "5002101": 1 + } + }, + "7": { + "id": 5002, + "lv": 7, + "bdskill": [ + "5002400" + ], + "skill": { + "5002101": 1 + } + }, + "8": { + "id": 5002, + "lv": 8, + "bdskill": [ + "5002400" + ], + "skill": { + "5002101": 1 + } + }, + "9": { + "id": 5002, + "lv": 9, + "bdskill": [ + "5002400", + "5002302" + ], + "skill": { + "5002101": 1 + } + }, + "10": { + "id": 5002, + "lv": 10, + "bdskill": [ + "5002400", + "5002302" + ], + "skill": { + "5002101": 1 + } + }, + "11": { + "id": 5002, + "lv": 11, + "bdskill": [ + "5002400", + "5002302" + ], + "skill": { + "5002101": 1 + } + } + }, + "5003": { + "0": { + "id": 5003, + "lv": 0, + "bdskill": [ + "5003400" + ], + "skill": { + "5003100": 1 + } + }, + "1": { + "id": 5003, + "lv": 1, + "bdskill": [ + "5003400" + ], + "skill": { + "5003100": 1 + } + }, + "2": { + "id": 5003, + "lv": 2, + "bdskill": [ + "5003400" + ], + "skill": { + "5003100": 1 + } + }, + "3": { + "id": 5003, + "lv": 3, + "bdskill": [ + "5003400" + ], + "skill": { + "5003100": 1 + } + }, + "4": { + "id": 5003, + "lv": 4, + "bdskill": [ + "5003401" + ], + "skill": { + "5003100": 1 + } + }, + "5": { + "id": 5003, + "lv": 5, + "bdskill": [ + "5003401" + ], + "skill": { + "5003100": 1 + } + }, + "6": { + "id": 5003, + "lv": 6, + "bdskill": [ + "5003401" + ], + "skill": { + "5003100": 1 + } + }, + "7": { + "id": 5003, + "lv": 7, + "bdskill": [ + "5003401", + "5003402" + ], + "skill": { + "5003100": 1 + } + }, + "8": { + "id": 5003, + "lv": 8, + "bdskill": [ + "5003401", + "5003402" + ], + "skill": { + "5003100": 1 + } + }, + "9": { + "id": 5003, + "lv": 9, + "bdskill": [ + "5003403", + "5003402" + ], + "skill": { + "5003100": 1 + } + }, + "10": { + "id": 5003, + "lv": 10, + "bdskill": [ + "5003403", + "5003402" + ], + "skill": { + "5003100": 1 + } + }, + "11": { + "id": 5003, + "lv": 11, + "bdskill": [ + "5003403", + "5003402" + ], + "skill": { + "5003100": 1 + } + } + }, + "5004": { + "0": { + "id": 5004, + "lv": 0, + "bdskill": [], + "skill": { + "5004100": 1 + } + }, + "1": { + "id": 5004, + "lv": 1, + "bdskill": [], + "skill": { + "5004100": 1 + } + }, + "2": { + "id": 5004, + "lv": 2, + "bdskill": [], + "skill": { + "5004100": 1 + } + }, + "3": { + "id": 5004, + "lv": 3, + "bdskill": [], + "skill": { + "5004100": 1 + } + }, + "4": { + "id": 5004, + "lv": 4, + "bdskill": [], + "skill": { + "5004101": 1 + } + }, + "5": { + "id": 5004, + "lv": 5, + "bdskill": [], + "skill": { + "5004101": 1 + } + }, + "6": { + "id": 5004, + "lv": 6, + "bdskill": [], + "skill": { + "5004101": 1 + } + }, + "7": { + "id": 5004, + "lv": 7, + "bdskill": [ + "5004303" + ], + "skill": { + "5004101": 1 + } + }, + "8": { + "id": 5004, + "lv": 8, + "bdskill": [ + "5004303" + ], + "skill": { + "5004101": 1 + } + }, + "9": { + "id": 5004, + "lv": 9, + "bdskill": [ + "5004303" + ], + "skill": { + "5004102": 1 + } + }, + "10": { + "id": 5004, + "lv": 10, + "bdskill": [ + "5004303" + ], + "skill": { + "5004102": 1 + } + }, + "11": { + "id": 5004, + "lv": 11, + "bdskill": [ + "5004303" + ], + "skill": { + "5004102": 1 + } + } + }, + "5005": { + "0": { + "id": 5005, + "lv": 0, + "bdskill": [], + "skill": { + "5005100": 0.5, + "5005101": 0.5 + } + }, + "1": { + "id": 5005, + "lv": 1, + "bdskill": [], + "skill": { + "5005100": 0.5, + "5005101": 0.5 + } + }, + "2": { + "id": 5005, + "lv": 2, + "bdskill": [], + "skill": { + "5005100": 0.5, + "5005101": 0.5 + } + }, + "3": { + "id": 5005, + "lv": 3, + "bdskill": [], + "skill": { + "5005100": 0.5, + "5005101": 0.5 + } + }, + "4": { + "id": 5005, + "lv": 4, + "bdskill": [], + "skill": { + "5005100": 0.5, + "5005102": 0.5 + } + }, + "5": { + "id": 5005, + "lv": 5, + "bdskill": [], + "skill": { + "5005100": 0.5, + "5005102": 0.5 + } + }, + "6": { + "id": 5005, + "lv": 6, + "bdskill": [], + "skill": { + "5005100": 0.5, + "5005102": 0.5 + } + }, + "7": { + "id": 5005, + "lv": 7, + "bdskill": [ + "5005400" + ], + "skill": { + "5005100": 0.5, + "5005102": 0.5 + } + }, + "8": { + "id": 5005, + "lv": 8, + "bdskill": [ + "5005400" + ], + "skill": { + "5005100": 0.5, + "5005102": 0.5 + } + }, + "9": { + "id": 5005, + "lv": 9, + "bdskill": [ + "5005401" + ], + "skill": { + "5005100": 0.5, + "5005102": 0.5 + } + }, + "10": { + "id": 5005, + "lv": 10, + "bdskill": [ + "5005401" + ], + "skill": { + "5005100": 0.5, + "5005102": 0.5 + } + }, + "11": { + "id": 5005, + "lv": 11, + "bdskill": [ + "5005401" + ], + "skill": { + "5005100": 0.5, + "5005102": 0.5 + } + } + } +} \ No newline at end of file diff --git a/src/json/huobanzhaomu.json5 b/src/json/huobanzhaomu.json5 new file mode 100644 index 0000000..b41ad31 --- /dev/null +++ b/src/json/huobanzhaomu.json5 @@ -0,0 +1,21 @@ +[ + { + total: 60, + gudKey: 'mapId', + prize: [{a: 'equip', t: '2007', n: 1}] + }, + { + total: 2, + gudKey: 'loginDays', + prize: [{a: 'hero', t: '4013', n: 1}] + }, + { + total: 1, + gudKey: 'payExp', + prize: [{a: 'hero', t: '4005', n: 1}] + }, + { + total: 1, + prize: [{a: 'hero', t: '4002', n: 1}] + } +] \ No newline at end of file diff --git a/src/json/huodong.json5 b/src/json/huodong.json5 new file mode 100644 index 0000000..2660fb2 --- /dev/null +++ b/src/json/huodong.json5 @@ -0,0 +1,3279 @@ +[ + { + "hdid" : 1, // 唯一活动id + "htype" : 1, // 后端唯一识别标识(1:养成目标) + "stype" : 100, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 4, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 9999, // 活动开始天数 + "rtime" : 300, // 活动显示结束天数 + "etime" : 300, // 活动实际结束 + "name": "intr_ychd_title_1", + "icon": "dfry_qhdr", + "showtime" : "仅供参考,会复写正确值", + "data" : { + //模板 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr1: 'intr_yczm_tips_2', + intr2: 'intr_yczm_tips_3', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_1', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab1: 'intr_ychd_tab_name_2', + tab2: 'intr_ychd_tab_name_4', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '1': '8', + '2': '4', + //礼包 + gift: [ + { + index: 0, + need: [], + free: true, + payId: '', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 200} ] + }, + { + index: 1, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 500}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '2', 'n': 2000} ], + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_1_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '21', 'n': 200} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_1_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '21', 'n': 600} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_1_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '21', 'n': 1500} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_1_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '21', 'n': 2500} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_1_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '21', 'n': 6000} ] + }, + { + index: 7, + need: [], + free: false, + payId: 'ycmb_1_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '21', 'n': 12000} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [[2],5], + tasklist:{ + '1': { + '1001': { + 'prize': [{'a': 'item', 't': '2', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 1, + 'pval': 5, + 'cond': ['4'], + 'stype': 115, + //任务进度计数是否清零:0-不配 1-清零 + 'zero': 1 + }, + '1002': { + 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 1, + 'pval': 10, + 'cond': ['4'], + 'stype': 115, + 'zero': 1 + }, + '1003': { + 'prize': [{'a': 'item', 't': '2', 'n': 700}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 1, + 'pval': 15, + 'cond': ['4'], + 'stype': 115, + 'zero': 1 + }, + '1004': { + 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 1, + 'pval': 25, + 'cond': ['4'], + 'stype': 115, + 'zero': 1 + }, + }, + '2': { + '2001': { + 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 2, + 'pval': 600, + 'cond': ['2'], + 'stype': 134 + }, + '2002': { + 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 2, + 'pval': 2000, + 'cond': ['2'], + 'stype': 134 + }, + '2003': { + 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 2, + 'pval': 13000, + 'cond': ['2'], + 'stype': 134 + }, + '2004': { + 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 2, + 'pval': 35000, + 'cond': ['2'], + 'stype': 134 + }, + }, + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '2', 'n': 100}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + }, + '3003': { + 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 5, + 'cond': [], + 'stype': 135 + }, + }, + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '9', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 3000, + 'cond': ['9'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '10', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 10000, + 'cond': ['9'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '9', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 20000, + 'cond': ['9'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '10', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 40000, + 'cond': ['9'], + 'stype': 134 + }, + } + } + } + }, + { + "hdid" : 3, + "htype" : 1, + "stype" : 100, + "ttype" : 0, + "stime" : 0, + "rtime" : 3, + "etime" : 3, + "name": "intr_ychd_title_4", + "icon": "dfry_qhdr", + "showtime" : "仅供参考,会复写正确值", + "data" : { + //每日获得紫色装备 mfmid 1683191 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_4', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '3': '8', + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 800}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '2', 'n': 1000} ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_1_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '2', 'n': 1000},{'a': 'attr', 't': 'jinbi', 'n': 100000} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_1_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '2', 'n': 3000},{'a': 'attr', 't': 'jinbi', 'n': 600000} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_1_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '615', 'n': 1},{'a': 'item', 't': '2', 'n': 4000} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_1_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '615', 'n': 2},{'a': 'item', 't': '2', 'n': 8000} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_1_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '609', 'n': 1},{'a': 'item', 't': '2', 'n': 20000} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_1_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '611', 'n': 1},{'a': 'item', 't': '2', 'n': 40000} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录(一次性任务) 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist:{ + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '2', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 4, + 'pval': 5, + 'cond': ['4'], + 'stype': 115, + 'zero': 1 + }, + '4002': { + 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 4, + 'pval': 10, + 'cond': ['4'], + 'stype': 115, + 'zero': 1 + }, + '4003': { + 'prize': [{'a': 'item', 't': '2', 'n': 700}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 4, + 'pval': 15, + 'cond': ['4'], + 'stype': 115, + 'zero': 1 + }, + '4004': { + 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 4, + 'pval': 25, + 'cond': ['4'], + 'stype': 115, + 'zero': 1 + }, + '4005': { + 'prize': [{'a': 'item', 't': '2', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 4, + 'pval': 600, + 'cond': ['2'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 4, + 'pval': 2000, + 'cond': ['2'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 4, + 'pval': 13000, + 'cond': ['2'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '615', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 4, + 'pval': 35000, + 'cond': ['2'], + 'stype': 134 + }, + }, + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '2', 'n': 100}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + } + }, + { + "hdid" : 4, + "htype" : 1, + "stype" : 100, + "ttype" : 0, + "stime" : 3, + "rtime" : 6, + "etime" : 6, + "name": "intr_ychd_title_5", + "icon": "dfry_cscp", + "showtime" : "仅供参考,会复写正确值", + "data" : { + //每日修复胶 mfmid 1683192 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_5', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '3': '38', + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 4000}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '21', 'n': 1000} ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_1_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '21', 'n': 200} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_1_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '21', 'n': 600} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_1_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '21', 'n': 1500} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_1_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '21', 'n': 2500} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_1_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '21', 'n': 6000} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_1_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '21', 'n': 12000} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist:{ + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '21', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 600, + 'cond': ['21'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '21', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 1200, + 'cond': ['21'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '21', 'n': 150}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 2000, + 'cond': ['21'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '21', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 3600, + 'cond': ['21'], + 'stype': 134 + }, + '4005': { + 'prize': [{'a': 'item', 't': '21', 'n': 300}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 5400, + 'cond': ['21'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '21', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 7200, + 'cond': ['21'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '21', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 9200, + 'cond': ['21'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '21', 'n': 600}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 12000, + 'cond': ['21'], + 'stype': 134 + } + }, + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '21', 'n': 20}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '21', 'n': 100}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + } + }, + { + "hdid" : 5, // 唯一活动id + "htype" : 1, // 后端唯一识别标识(1:养成目标) + "stype" : 100, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 6, // 活动开始天数 + "rtime" : 9, // 活动显示结束天数 + "etime" : 9, // 活动实际结束 + "name": "intr_ychd_title_6", + "icon": "dfry_zswq", + "showtime" : "仅供参考,会复写正确值", + "data" : { + //每日专属材料 mfmid 1683193 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_6', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '3': '2', + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 3500}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '9', 'n': 5000} ] + }, + { + index: 1, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 3200}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '10', 'n': 200} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_3_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '10', 'n': 70} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_3_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '9', 'n': 3000} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_3_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '9', 'n': 3000}, {'a': 'item', 't': '10', 'n': 150} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_3_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '9', 'n': 5000}, {'a': 'item', 't': '10', 'n': 300} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_3_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '9', 'n': 20000}, {'a': 'item', 't': '10', 'n': 500} ] + }, + { + index: 7, + need: [], + free: false, + payId: 'ycmb_3_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '9', 'n': 40000}, {'a': 'item', 't': '10', 'n': 1000} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist:{ + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '9', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 3000, + 'cond': ['9'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '10', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 10000, + 'cond': ['9'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '9', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 20000, + 'cond': ['9'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '10', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 40000, + 'cond': ['9'], + 'stype': 134 + }, + '4005': { + 'prize': [{'a': 'item', 't': '9', 'n': 600}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 100, + 'cond': ['10'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '9', 'n': 800}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 300, + 'cond': ['10'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '10', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 500, + 'cond': ['10'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '9', 'n': 2000}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 1000, + 'cond': ['10'], + 'stype': 134 + } + }, + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '10', 'n': 5}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '9', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + } + }, + { + "hdid" : 6, // 唯一活动id + "htype" : 1, // 后端唯一识别标识(1:养成目标) + "stype" : 100, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 9, // 活动开始天数 + "rtime" : 12, // 活动显示结束天数 + "etime" : 12, // 活动实际结束 + "name": "intr_ychd_title_7", + "icon": "dfry_ypj", + "showtime" : "仅供参考,会复写正确值", + "data" : { + //每日紫色配件 mfmid 1683194 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_7', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '3': '37', + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 140}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '28', 'n': 2000} ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_4_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '28', 'n': 1000},{'a': 'item', 't': '29', 'n': 20} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_4_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '28', 'n': 5000},{'a': 'item', 't': '29', 'n': 40} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_4_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '606', 'n': 2}, {'a': 'item', 't': '29', 'n': 80} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_4_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '606', 'n': 4}, {'a': 'item', 't': '29', 'n': 150} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_4_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '605', 'n': 6}, {'a': 'item', 't': '29', 'n': 400} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_4_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '605', 'n': 12}, {'a': 'item', 't': '29', 'n': 800} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist:{ + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '28', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 1, + 'cond': ['4'], + 'stype': 137, + 'zero': 1 + }, + '4002': { + 'prize': [{'a': 'item', 't': '28', 'n': 1500}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 6, + 'cond': ['4'], + 'stype': 137, + 'zero': 1 + }, + '4003': { + 'prize': [{'a': 'item', 't': '28', 'n': 2500}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 12, + 'cond': ['4'], + 'stype': 137, + 'zero': 1 + }, + '4004': { + 'prize': [{'a': 'item', 't': '28', 'n': 3500}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 18, + 'cond': ['4'], + 'stype': 137, + 'zero': 1 + }, + '4005': { + 'prize': [{'a': 'item', 't': '20', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 40, + 'cond': ['4'], + 'stype': 138, + 'zero': 1 + }, + '4006': { + 'prize': [{'a': 'item', 't': '20', 'n': 150}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 50, + 'cond': ['4'], + 'stype': 138, + 'zero': 1 + }, + '4007': { + 'prize': [{'a': 'item', 't': '606', 'n': 2}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 60, + 'cond': ['4'], + 'stype': 138, + 'zero': 1 + }, + '4008': { + 'prize': [{'a': 'item', 't': '606', 'n': 4}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 70, + 'cond': ['4'], + 'stype': 138, + 'zero': 1 + } + + }, + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '29', 'n': 10}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '20', 'n': 50}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + } + }, + { + "hdid" : 7, // 唯一活动id + "htype" : 1, // 后端唯一识别标识(1:养成目标) + "stype" : 100, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 12, // 活动开始天数 + "rtime" : 15, // 活动显示结束天数 + "etime" : 15, // 活动实际结束 + "name": "intr_ychd_title_8", + "icon": "dfry_sxzs", + "showtime" : "仅供参考,会复写正确值", + "data" : { + //每日装备蓝图 mfmid 1683195 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_8', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 2100}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '13', 'n': 600} ] + }, + { + index: 1, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 2500}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '13', 'n': 1000} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_7_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '13', 'n': 200} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_7_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '13', 'n': 500} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_7_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680}, {'a': 'item', 't': '13', 'n': 1000} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_7_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '600', 'n': 20}, {'a': 'item', 't': '13', 'n': 1000} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_7_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '600', 'n': 30}, {'a': 'item', 't': '13', 'n': 3000} ] + }, + { + index: 7, + need: [], + free: false, + payId: 'ycmb_7_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '600', 'n': 60}, {'a': 'item', 't': '13', 'n': 5000} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist:{ + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '18', 'n': 10}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 100, + 'cond': ['18'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '18', 'n': 30}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 400, + 'cond': ['18'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '18', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 900, + 'cond': ['18'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '18', 'n': 80}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 1600, + 'cond': ['18'], + 'stype': 134 + }, + '4005': { + 'prize': [{'a': 'item', 't': '18', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 2500, + 'cond': ['18'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '18', 'n': 300}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 3500, + 'cond': ['18'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '627', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 4500, + 'cond': ['18'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '625', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 6000, + 'cond': ['18'], + 'stype': 134 + } + + }, + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '18', 'n': 10}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '18', 'n': 50}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + } + }, + { + "hdid" : 8, // 唯一活动id + "htype" : 1, // 后端唯一识别标识(1:养成目标) + "stype" : 100, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 15, // 活动开始天数 + "rtime" : 18, // 活动显示结束天数 + "etime" : 18, // 活动实际结束 + "name": "intr_ychd_title_9", + "icon": "dfry_jxtj", + "showtime" : "仅供参考,会复写正确值", + "data" : { + //每日装备调校合金 mfmid 1683198 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_9', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '3': '2', + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 7000}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '19', 'n': 500} ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_6_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '19', 'n': 50},{'a': 'attr', 't': 'jinbi', 'n': 100000} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_6_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '19', 'n': 150},{'a': 'attr', 't': 'jinbi', 'n': 600000} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_6_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '19', 'n': 200}, {'a': 'item', 't': '615', 'n': 1} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_6_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '19', 'n': 400}, {'a': 'item', 't': '615', 'n': 2} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_6_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '19', 'n': 1000}, {'a': 'item', 't': '609', 'n': 1} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_6_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '19', 'n': 2000}, {'a': 'item', 't': '611', 'n': 1} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist:{ + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '19', 'n': 20}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 90, + 'cond': ['19'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '19', 'n': 30}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 200, + 'cond': ['19'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '19', 'n': 40}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 400, + 'cond': ['19'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '19', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 700, + 'cond': ['19'], + 'stype': 134 + }, + '4005': { + 'prize': [{'a': 'item', 't': '19', 'n': 60}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 1000, + 'cond': ['19'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '19', 'n': 70}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 1500, + 'cond': ['19'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '615', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 2000, + 'cond': ['19'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '625', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 3000, + 'cond': ['19'], + 'stype': 134 + } + }, + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '19', 'n': 5}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '19', 'n': 25}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + } + }, + { + "hdid" : 9, // 唯一活动id + "htype" : 1, // 后端唯一识别标识(1:养成目标) + "stype" : 100, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 18, // 活动开始天数 + "rtime" : 21, // 活动显示结束天数 + "etime" : 21, // 活动实际结束 + "name": "intr_ychd_title_10", + "icon": "dfry_qnbf", + "showtime" : "仅供参考,会复写正确值", + "data" : { + //每日人才档案和营养液 mfmid 1683199 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_10', + //活动icon + icon: 'dfry_qnbf', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 2100}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '13', 'n': 600} ] + }, + { + index: 1, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 2500}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '13', 'n': 1000} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_7_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '13', 'n': 200} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_7_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '27', 'n': 7000} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_7_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680}, {'a': 'item', 't': '27', 'n': 15000} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_7_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '27', 'n': 20000}, {'a': 'item', 't': '13', 'n': 900} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_7_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '600', 'n': 20}, {'a': 'item', 't': '27', 'n': 50000} ] + }, + { + index: 7, + need: [], + free: false, + payId: 'ycmb_7_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '600', 'n': 40}, {'a': 'item', 't': '27', 'n': 100000} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist:{ + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '13', 'n': 5}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 20000, + 'cond': ['27'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '13', 'n': 10}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 40000, + 'cond': ['27'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '13', 'n': 15}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 60000, + 'cond': ['27'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '13', 'n': 20}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 80000, + 'cond': ['27'], + 'stype': 134 + }, + '4005': { + 'prize': [{'a': 'item', 't': '13', 'n': 25}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 120000, + 'cond': ['27'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '13', 'n': 30}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_7', + 'type': 4, + 'pval': 400, + 'cond': ['13'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '13', 'n': 35}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_7', + 'type': 4, + 'pval': 1000, + 'cond': ['13'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '600', 'n': 20}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_7', + 'type': 4, + 'pval': 1800, + 'cond': ['13'], + 'stype': 134 + } + }, + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '27', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '13', 'n': 25}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + } + }, + { + "hdid" : 10, // 唯一活动id + "htype" : 1, // 后端唯一识别标识(1:养成目标) + "stype" : 100, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 21, // 活动开始天数 + "rtime" : 24, // 活动显示结束天数 + "etime" : 24, // 活动实际结束 + "name": "intr_ychd_title_5", + "icon": "dfry_cscp", + "showtime" : "仅供参考,会复写正确值", + "data" : { + //每日修复胶 mfmid 16831910 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_5', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '3': '38', + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 4000}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '21', 'n': 1000} ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_1_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '21', 'n': 200} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_1_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '21', 'n': 600} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_1_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '21', 'n': 1500} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_1_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '21', 'n': 2500} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_1_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '21', 'n': 6000} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_1_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '21', 'n': 12000} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist:{ + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '21', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 600, + 'cond': ['21'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '21', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 1200, + 'cond': ['21'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '21', 'n': 150}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 2000, + 'cond': ['21'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '21', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 3600, + 'cond': ['21'], + 'stype': 134 + }, + '4005': { + 'prize': [{'a': 'item', 't': '21', 'n': 300}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 5400, + 'cond': ['21'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '21', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 7200, + 'cond': ['21'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '21', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 9200, + 'cond': ['21'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '21', 'n': 600}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 12000, + 'cond': ['21'], + 'stype': 134 + } + }, + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '21', 'n': 20}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '21', 'n': 100}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + } + }, + { + "hdid" : 11, // 唯一活动id + "htype" : 1, // 后端唯一识别标识(1:养成目标) + "stype" : 100, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 24, // 活动开始天数 + "rtime" : 27, // 活动显示结束天数 + "etime" : 27, // 活动实际结束 + "name": "intr_ychd_title_6", + "icon": "dfry_zswq", + "showtime" : "仅供参考,会复写正确值", + "data" : { + //每日专属材料 mfmid 16831911 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_6', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '3': '2', + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 3500}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '9', 'n': 5000} ] + }, + { + index: 1, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 3200}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '10', 'n': 200} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_3_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '10', 'n': 70} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_3_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '9', 'n': 3000} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_3_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '9', 'n': 3000}, {'a': 'item', 't': '10', 'n': 150} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_3_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '9', 'n': 5000}, {'a': 'item', 't': '10', 'n': 300} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_3_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '9', 'n': 20000}, {'a': 'item', 't': '10', 'n': 500} ] + }, + { + index: 7, + need: [], + free: false, + payId: 'ycmb_3_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '9', 'n': 40000}, {'a': 'item', 't': '10', 'n': 1000} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist:{ + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '9', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 3000, + 'cond': ['9'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '10', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 10000, + 'cond': ['9'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '9', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 20000, + 'cond': ['9'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '10', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 40000, + 'cond': ['9'], + 'stype': 134 + }, + '4005': { + 'prize': [{'a': 'item', 't': '9', 'n': 600}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 100, + 'cond': ['10'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '9', 'n': 800}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 300, + 'cond': ['10'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '10', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 500, + 'cond': ['10'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '9', 'n': 2000}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 1000, + 'cond': ['10'], + 'stype': 134 + } + }, + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '10', 'n': 5}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '9', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + } + }, + { + "hdid" : 12, // 唯一活动id + "htype" : 1, // 后端唯一识别标识(1:养成目标) + "stype" : 100, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 27, // 活动开始天数 + "rtime" : 30, // 活动显示结束天数 + "etime" : 30, // 活动实际结束 + "name": "intr_ychd_title_7", + "icon": "dfry_ypj", + "showtime" : "仅供参考,会复写正确值", + "data" : { + //每日紫色配件 mfmid 16831912 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_7', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '3': '37', + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 140}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '28', 'n': 2000} ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_4_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '28', 'n': 1000},{'a': 'item', 't': '29', 'n': 20} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_4_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '28', 'n': 5000},{'a': 'item', 't': '29', 'n': 40} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_4_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '606', 'n': 2}, {'a': 'item', 't': '29', 'n': 80} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_4_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '606', 'n': 4}, {'a': 'item', 't': '29', 'n': 150} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_4_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '605', 'n': 6}, {'a': 'item', 't': '29', 'n': 400} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_4_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '605', 'n': 12}, {'a': 'item', 't': '29', 'n': 800} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist:{ + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '28', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 1, + 'cond': ['4'], + 'stype': 137, + 'zero': 1 + }, + '4002': { + 'prize': [{'a': 'item', 't': '28', 'n': 1500}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 6, + 'cond': ['4'], + 'stype': 137, + 'zero': 1 + }, + '4003': { + 'prize': [{'a': 'item', 't': '28', 'n': 3500}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 12, + 'cond': ['4'], + 'stype': 137, + 'zero': 1 + }, + '4004': { + 'prize': [{'a': 'item', 't': '28', 'n': 10000}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 18, + 'cond': ['4'], + 'stype': 137, + 'zero': 1 + }, + '4005': { + 'prize': [{'a': 'item', 't': '20', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 40, + 'cond': ['4'], + 'stype': 138, + 'zero': 1 + }, + '4006': { + 'prize': [{'a': 'item', 't': '20', 'n': 150}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 50, + 'cond': ['4'], + 'stype': 138, + 'zero': 1 + }, + '4007': { + 'prize': [{'a': 'item', 't': '606', 'n': 2}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 60, + 'cond': ['4'], + 'stype': 138, + 'zero': 1 + }, + '4008': { + 'prize': [{'a': 'item', 't': '606', 'n': 4}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 70, + 'cond': ['4'], + 'stype': 138, + 'zero': 1 + } + }, + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '29', 'n': 10}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '20', 'n': 50}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + } + }, + { + "hdid" : 13, // 唯一活动id + "htype" : 1, // 后端唯一识别标识(1:养成目标) + "stype" : 100, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 30, // 活动开始天数 + "rtime" : 33, // 活动显示结束天数 + "etime" : 33, // 活动实际结束 + "name": "intr_ychd_title_10", + "icon": "dfry_qnbf", + "showtime" : "仅供参考,会复写正确值", + "data" : { + //每日人才档案和营养液 mfmid 16831915 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_10', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 2100}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '13', 'n': 600} ] + }, + { + index: 1, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 2500}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '13', 'n': 1000} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_7_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '13', 'n': 200} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_7_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '13', 'n': 500} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_7_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680}, {'a': 'item', 't': '13', 'n': 1000} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_7_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '600', 'n': 20}, {'a': 'item', 't': '13', 'n': 1000} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_7_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '600', 'n': 30}, {'a': 'item', 't': '13', 'n': 3000} ] + }, + { + index: 7, + need: [], + free: false, + payId: 'ycmb_7_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '600', 'n': 60}, {'a': 'item', 't': '13', 'n': 5000} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist:{ + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '13', 'n': 5}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 20000, + 'cond': ['27'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '13', 'n': 10}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 40000, + 'cond': ['27'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '13', 'n': 15}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 60000, + 'cond': ['27'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '13', 'n': 20}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 80000, + 'cond': ['27'], + 'stype': 134 + }, + '4005': { + 'prize': [{'a': 'item', 't': '13', 'n': 25}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 120000, + 'cond': ['27'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '13', 'n': 30}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_7', + 'type': 4, + 'pval': 400, + 'cond': ['13'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '13', 'n': 35}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_7', + 'type': 4, + 'pval': 1000, + 'cond': ['13'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '600', 'n': 20}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_7', + 'type': 4, + 'pval': 1800, + 'cond': ['13'], + 'stype': 134 + } + }, + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '27', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '13', 'n': 25}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + } + }, + { + "hdid" : 100, // 唯一活动id 人才计划 + "htype" : 1, // 后端唯一识别标识(1:养成目标) + "stype" : 100, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 0, // 活动开始天数 + "rtime" : 7, // 活动显示结束天数 + "etime" : 7, // 活动实际结束 + "name": "intr_ychd_title_3", + "icon": "dfry_rcjh", + "showtime" : "仅供参考,会复写正确值", + "data" : { + //轮数抽卡 mfmid 168318 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr2: 'intr_yczm_tips_3', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_3', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab2: 'intr_ychd_tab_name_4', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '2': '9', + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 0}], + free: true, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '4', 'n': 5} ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_2_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 600},{'a': 'item', 't': '4', 'n': 10} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_2_2', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1360},{'a': 'item', 't': '4', 'n': 20} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_2_3', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 2560},{'a': 'item', 't': '4', 'n': 50} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_2_4', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6560},{'a': 'item', 't': '4', 'n': 100} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_2_5', + buyNum: 10, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 12960},{'a': 'item', 't': '4', 'n': 200} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [[2],5], + tasklist:{ + '2': { + '2001': { + 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 50, + 'cond': [], + 'stype': 118 + }, + '2002': { + 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 100, + 'cond': [], + 'stype': 118 + }, + '2003': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '626', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 200, + 'cond': [], + 'stype': 118 + }, + '2004': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 300, + 'cond': [], + 'stype': 118 + }, + '2005': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 400, + 'cond': [], + 'stype': 118 + }, + '2006': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 40}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 500, + 'cond': [], + 'stype': 118 + } + } + } + } + }, + + { + "hdid" : 101, // 唯一活动id 人才计划 + "htype" : 1, // 后端唯一识别标识(1:养成目标) + "stype" : 100, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 14, // 活动开始天数 + "rtime" : 21, // 活动显示结束天数 + "etime" : 21, // 活动实际结束 + "name": "intr_ychd_title_3", + "icon": "dfry_rcjh", + "showtime" : "仅供参考,会复写正确值", + "data" : { + //轮数抽卡 mfmid 168318 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr2: 'intr_yczm_tips_3', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_3', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab2: 'intr_ychd_tab_name_4', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '2': '9', + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 0}], + free: true, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '4', 'n': 5} ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_2_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 600},{'a': 'item', 't': '4', 'n': 10} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_2_2', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1360},{'a': 'item', 't': '4', 'n': 20} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_2_3', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 2560},{'a': 'item', 't': '4', 'n': 50} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_2_4', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6560},{'a': 'item', 't': '4', 'n': 100} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_2_5', + buyNum: 10, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 12960},{'a': 'item', 't': '4', 'n': 200} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [[2],5], + tasklist:{ + '2': { + '2001': { + 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 50, + 'cond': [], + 'stype': 118 + }, + '2002': { + 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 100, + 'cond': [], + 'stype': 118 + }, + '2003': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '626', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 200, + 'cond': [], + 'stype': 118 + }, + '2004': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 300, + 'cond': [], + 'stype': 118 + }, + '2005': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 400, + 'cond': [], + 'stype': 118 + }, + '2006': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 40}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 500, + 'cond': [], + 'stype': 118 + } + } + } + } + }, + + + { + "hdid" : 2000, // 唯一活动id 掉落兑换活动 + "htype" : 2, // 后端唯一识别标识 + "stype" : 200, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 7, // 活动开始天数 + "rtime" : 14, // 活动显示结束天数 + "etime" : 14, // 活动实际结束 + "name": "diaoluoduihuan", + "icon": "icon_ywtx", + "showtime" : "仅供参考,会复写正确值", + "data" : { + //对应mfm 14701 + diaoluo: [ + //掉落的物品 + { + a: 'item', + t: '49', + n: 6, + p: 10, + s: 3600 + } + + ], + tiaozhuan: 3, + event: { + itemId: '49', + duihuan: [ + { need: [{a: 'item', t: '49', n: 6000}], prize: [{a: 'item', t: '610', n: 1}], num: 2 }, + { need: [{a: 'item', t: '49', n: 3500}], prize: [{a: 'item', t: '600', n: 80},{a: 'item', t: '12', n: 10000}], num: 4 }, + { need: [{a: 'item', t: '49', n: 1200}], prize: [{a: 'item', t: '600', n: 20},{a: 'item', t: '609', n: 1},{a: 'item', t: '4', n: 20}], num: 1 }, + { need: [{a: 'item', t: '49', n: 1500}], prize: [{a: 'item', t: '611', n: 1},{a: 'item', t: '624', n: 50}], num: 1 }, + { need: [{a: 'item', t: '49', n: 350}], prize: [{a: 'item', t: '607', n: 20}], num: 1 }, + { need: [{a: 'item', t: '49', n: 350}], prize: [{a: 'item', t: '600', n: 5}], num: 1 }, + { need: [{a: 'item', t: '49', n: 100}], prize: [{a: 'item', t: '4', n: 1}], num: 99 }, + { need: [{a: 'item', t: '49', n: 10}], prize: [{a: 'item', t: '12', n: 25}], num: 99 }, + { need: [{a: 'item', t: '49', n: 2}], prize: [{a: 'item', t: '2', n: 10}], num: 99 }, + ], + shop: [ + { need: [{a: 'attr', t: 'rmbmoney', n: 0}], prize: [{a: 'attr', t: 'rmbmoney', n: 500}], num: 1, free: true }, + { need: [{a: 'attr', t: 'rmbmoney', n: 800}], prize: [{a: 'item', t: '4', n: 5},{a: 'item', t: '2', n: 1000}], num: 1, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 2250}], prize: [{a: 'item', t: '4', n: 10},{a: 'item', t: '12', n: 2000}], num: 1, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '12', n: 6000}], num: 1, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '2', n: 12000}], num: 3, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '9', n: 6000}], num: 3, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '10', n: 300}], num: 3, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '612', n: 20}], num: 3, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 20000}], prize: [{a: 'item', t: '607', n: 40},{a: 'item', t: '600', n: 40}], num: 4, free: false } + ], + gift: [ + { payId: '', num: 1, prize: [{a: 'item', t: '49', n: 20}, {a: 'attr', t: 'rmbmoney', n: 200}], free: true }, + { payId: 'duihuan_1_1', prize: [{a: 'item', t: '49', n: 50}, {a: 'attr', t: 'rmbmoney', n: 600}], free: false }, + { payId: 'duihuan_1_2', prize: [{a: 'item', t: '49', n: 100}, {a: 'attr', t: 'rmbmoney', n: 1360}], free: false }, + { payId: 'duihuan_1_3', prize: [{a: 'item', t: '49', n: 200}, {a: 'attr', t: 'rmbmoney', n: 2560}], free: false }, + { payId: 'duihuan_1_4', prize: [{a: 'item', t: '49', n: 600}, {a: 'attr', t: 'rmbmoney', n: 6560}], free: false }, + { payId: 'duihuan_1_5', prize: [{a: 'item', t: '49', n: 1200}, {a: 'attr', t: 'rmbmoney', n: 12960}], free: false }, + ] + } + } + }, + + { + "hdid" : 2001, // 唯一活动id 掉落兑换活动 + "htype" : 2, // 后端唯一识别标识 + "stype" : 200, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 21, // 活动开始天数 + "rtime" : 28, // 活动显示结束天数 + "etime" : 28, // 活动实际结束 + "name": "diaoluoduihuan", + "icon": "icon_ywtx", + "showtime" : "仅供参考,会复写正确值", + "data" : { + //对应mfm 14701 + diaoluo: [ + //掉落的物品 + { + a: 'item', + t: '49', + n: 6, + p: 10, + s: 3600 + } + + ], + tiaozhuan: 3, + event: { + itemId: '49', + duihuan: [ + { need: [{a: 'item', t: '49', n: 6000}], prize: [{a: 'item', t: '610', n: 1}], num: 2 }, + { need: [{a: 'item', t: '49', n: 3500}], prize: [{a: 'item', t: '600', n: 80},{a: 'item', t: '12', n: 20000}], num: 4 }, + { need: [{a: 'item', t: '49', n: 1200}], prize: [{a: 'item', t: '600', n: 20},{a: 'item', t: '609', n: 1},{a: 'item', t: '4', n: 20}], num: 1 }, + { need: [{a: 'item', t: '49', n: 1500}], prize: [{a: 'item', t: '611', n: 1},{a: 'item', t: '624', n: 50}], num: 1 }, + { need: [{a: 'item', t: '49', n: 350}], prize: [{a: 'item', t: '607', n: 20}], num: 1 }, + { need: [{a: 'item', t: '49', n: 350}], prize: [{a: 'item', t: '600', n: 5}], num: 1 }, + { need: [{a: 'item', t: '49', n: 100}], prize: [{a: 'item', t: '4', n: 1}], num: 99 }, + { need: [{a: 'item', t: '49', n: 10}], prize: [{a: 'item', t: '12', n: 25}], num: 99 }, + { need: [{a: 'item', t: '49', n: 2}], prize: [{a: 'item', t: '2', n: 10}], num: 99 }, + ], + shop: [ + { need: [{a: 'attr', t: 'rmbmoney', n: 0}], prize: [{a: 'attr', t: 'rmbmoney', n: 500}], num: 1, free: true }, + { need: [{a: 'attr', t: 'rmbmoney', n: 800}], prize: [{a: 'item', t: '4', n: 5},{a: 'item', t: '2', n: 1000}], num: 1, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 2250}], prize: [{a: 'item', t: '4', n: 10},{a: 'item', t: '12', n: 2000}], num: 1, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '12', n: 6000}], num: 1, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '2', n: 12000}], num: 3, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '9', n: 6000}], num: 3, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '10', n: 300}], num: 3, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '612', n: 20}], num: 3, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 20000}], prize: [{a: 'item', t: '607', n: 40},{a: 'item', t: '600', n: 40}], num: 4, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '624', n: 20}], num: 3, free: false }, + { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '629', n: 20}], num: 3, free: false }, + ], + gift: [ + { payId: '', num: 1, prize: [{a: 'item', t: '49', n: 20}, {a: 'attr', t: 'rmbmoney', n: 200}], free: true }, + { payId: 'duihuan_1_1', prize: [{a: 'item', t: '49', n: 50}, {a: 'attr', t: 'rmbmoney', n: 600}], free: false }, + { payId: 'duihuan_1_2', prize: [{a: 'item', t: '49', n: 100}, {a: 'attr', t: 'rmbmoney', n: 1360}], free: false }, + { payId: 'duihuan_1_3', prize: [{a: 'item', t: '49', n: 200}, {a: 'attr', t: 'rmbmoney', n: 2560}], free: false }, + { payId: 'duihuan_1_4', prize: [{a: 'item', t: '49', n: 600}, {a: 'attr', t: 'rmbmoney', n: 6560}], free: false }, + { payId: 'duihuan_1_5', prize: [{a: 'item', t: '49', n: 1200}, {a: 'attr', t: 'rmbmoney', n: 12960}], free: false }, + ] + } + } + }, + + { + "hdid" : 3000, // 唯一活动id 传说之路 + "htype" : 3, // 后端唯一识别标识 + "stype" : 300, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 0, // 活动开始天数 + "rtime" : 30, // 活动显示结束天数 + "etime" : 30, // 活动实际结束 + "name": "xinfupeiyang", + "icon": "icon_qiridenglu", + "showtime" : "仅供参考,会复写正确值", + "data" : { + //干部id + hid: '5001', + //任务 + task: [ + { idx: 0,total: 3, type: 'jieji', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1'}, + { idx: 1,total: 50, type: 'lv', prize: [{a: 'item', t: '12', n: 500}], des:'intr_cszl_des_2' }, + { idx: 2,total: 4, type: 'jieji', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1' }, + { idx: 3,total: 100, type: 'lv', prize: [{a: 'item', t: '12', n: 1000}], des:'intr_cszl_des_2' }, + { idx: 4,total: 5, type: 'jieji', prize: [{a: 'item', t: '1', n: 800000}], des:'intr_cszl_des_1' }, + { idx: 5,total: 150, type: 'lv', prize: [{a: 'item', t: '12', n: 1500}], des:'intr_cszl_des_2' }, + { idx: 6,total: 6, type: 'jieji', prize: [{a: 'item', t: '1', n: 1200000}], des:'intr_cszl_des_1' }, + { idx: 7,total: 200, type: 'lv', prize: [{a: 'item', t: '12', n: 2000}], des:'intr_cszl_des_2' }, + { idx: 8,total: 7, type: 'jieji', prize: [{a: 'item', t: '1', n: 2000000}], des:'intr_cszl_des_1' }, + { idx: 9,total: 250, type: 'lv', prize: [{a: 'item', t: '5001', n: 20}], des:'intr_cszl_des_2' } + ], + //宝箱 + box: { total: 10, prize: [{a: 'item', t: '610', n: 1}] } + } + }, + { + "hdid" : 3001, // 唯一活动id 传说之路 + "htype" : 3, // 后端唯一识别标识 + "stype" : 300, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 30, // 活动开始天数 + "rtime" : 60, // 活动显示结束天数 + "etime" : 60, // 活动实际结束 + "name": "xinfupeiyang", + "icon": "icon_qiridenglu", + "showtime" : "仅供参考,会复写正确值", + "data" : { + //干部id + hid: '5002', + //任务 + task: [ + { idx: 0,total: 3, type: 'jieji', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1'}, + { idx: 1,total: 50, type: 'lv', prize: [{a: 'item', t: '12', n: 500}], des:'intr_cszl_des_2' }, + { idx: 2,total: 4, type: 'jieji', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1' }, + { idx: 3,total: 100, type: 'lv', prize: [{a: 'item', t: '12', n: 1000}], des:'intr_cszl_des_2' }, + { idx: 4,total: 5, type: 'jieji', prize: [{a: 'item', t: '1', n: 800000}], des:'intr_cszl_des_1' }, + { idx: 5,total: 150, type: 'lv', prize: [{a: 'item', t: '12', n: 1500}], des:'intr_cszl_des_2' }, + { idx: 6,total: 6, type: 'jieji', prize: [{a: 'item', t: '1', n: 1200000}], des:'intr_cszl_des_1' }, + { idx: 7,total: 200, type: 'lv', prize: [{a: 'item', t: '12', n: 2000}], des:'intr_cszl_des_2' }, + { idx: 8,total: 7, type: 'jieji', prize: [{a: 'item', t: '1', n: 2000000}], des:'intr_cszl_des_1' }, + { idx: 9,total: 250, type: 'lv', prize: [{a: 'item', t: '5002', n: 20}], des:'intr_cszl_des_2' } + ], + //宝箱 + box: { total: 10, prize: [{a: 'item', t: '610', n: 1}] } + } + }, + { + "hdid" : 3002, // 唯一活动id 传说之路 心腹培养 + "htype" : 3, // 后端唯一识别标识 + "stype" : 300, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 60, // 活动开始天数 + "rtime" : 90, // 活动显示结束天数 + "etime" : 90, // 活动实际结束 + "name": "xinfupeiyang", + "icon": "icon_xfdj", + "showtime" : "仅供参考,会复写正确值", + "data" : { + //干部id + hid: '5004', + //任务 + task: [ + { idx: 0,total: 3, type: 'jieji', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1'}, + { idx: 1,total: 50, type: 'lv', prize: [{a: 'item', t: '12', n: 500}], des:'intr_cszl_des_2' }, + { idx: 2,total: 4, type: 'jieji', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1' }, + { idx: 3,total: 100, type: 'lv', prize: [{a: 'item', t: '12', n: 1000}], des:'intr_cszl_des_2' }, + { idx: 4,total: 5, type: 'jieji', prize: [{a: 'item', t: '1', n: 800000}], des:'intr_cszl_des_1' }, + { idx: 5,total: 150, type: 'lv', prize: [{a: 'item', t: '12', n: 1500}], des:'intr_cszl_des_2' }, + { idx: 6,total: 6, type: 'jieji', prize: [{a: 'item', t: '1', n: 1200000}], des:'intr_cszl_des_1' }, + { idx: 7,total: 200, type: 'lv', prize: [{a: 'item', t: '12', n: 2000}], des:'intr_cszl_des_2' }, + { idx: 8,total: 7, type: 'jieji', prize: [{a: 'item', t: '1', n: 2000000}], des:'intr_cszl_des_1' }, + { idx: 9,total: 250, type: 'lv', prize: [{a: 'item', t: '5004', n: 20}], des:'intr_cszl_des_2' } + ], + //宝箱 + box: { total: 10, prize: [{a: 'item', t: '610', n: 1}] } + } + }, + { + "hdid" : 4000, // 唯一活动id 自选礼包 + "htype" : 4, // 后端唯一识别标识 + "stype" : 400, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 15, // 活动开始天数 + "rtime" : 29, // 活动显示结束天数 + "etime" : 29, // 活动实际结束 + "name": "zixuanlibao", + "icon": "icon_tuisonglibao", + "showtime" : "仅供参考,会复写正确值", // 自选礼包,如果存在多个活动,计费点不要设置一样;如果是一样,可能会存在付费一次,购买多次。 + "data" : { + //活动文本描述 + intr: "intr_zixuan_1", + //礼包 + gift: [ + { + need: [], + free: true, + payId: '', + buyNum: 1, + prize: [ + [ {a: 'attr', t: 'rmbmoney', n: 30}], + [ {a: 'attr', t: 'jinbi', n: 50000}, {a: 'item', t: '1', n: 50000} ] + ] + }, + { + need: [], + free: false, + payId: 'zixuanlibao6', + buyNum: 1, + prize: [ + [ {a: 'attr', t: 'rmbmoney', n: 60} ], + [ {a: 'item', t: '2', n: 60}, {a: 'item', t: '12', n: 50} ], + [ {a: 'item', t: '27', n: 1500}, {a: 'item', t: '1', n: 100000} ] + ] + }, + { + need: [], + free: false, + payId: 'zixuanlibao30', + buyNum: 2, + prize: [ + [ {a: 'attr', t: 'rmbmoney', n: 300} ], + [ {a: 'item', t: '2', n: 200}, {a: 'item', t: '12', n: 100} ], + [ {a: 'item', t: '27', n: 7000}, {a: 'item', t: '1', n: 200000} ] + ] + }, + { + need: [], + free: false, + payId: 'zixuanlibao68', + buyNum: 2, + prize: [ + [ {a: 'attr', t: 'rmbmoney', n: 680} ], + [ {a: 'item', t: '18', n: 100}, {a: 'item', t: '21', n: 200}, {a: 'item', t: '9', n: 1000} ], + [ {a: 'item', t: '27', n: 15000}, {a: 'item', t: '1', n: 300000} ] + ] + }, + { + need: [], + free: false, + payId: 'zixuanlibao128', + buyNum: 2, + prize: [ + [ {a: 'attr', t: 'rmbmoney', n: 1280} ], + [ {a: 'item', t: '18', n: 200}, {a: 'item', t: '9', n: 2000}, {a: 'item', t: '10', n: 200} ], + [ {a: 'item', t: '27', n: 20000}, {a: 'item', t: '1', n: 500000} ] + ] + }, + { + need: [], + free: false, + payId: 'zixuanlibao328', + buyNum: 3, + prize: [ + [ {a: 'attr', t: 'rmbmoney', n: 3280} ], + [ {a: 'item', t: '600', n: 20}, {a: 'item', t: '601', n: 20}, {a: 'item', t: '616', n: 40} ], + [ {a: 'item', t: '27', n: 50000}, {a: 'item', t: '1', n: 700000} ] + ] + }, + { + need: [], + free: false, + payId: 'zixuanlibao648', + buyNum: 3, + prize: [ + [ {a: 'attr', t: 'rmbmoney', n: 6480} ], + [ {a: 'item', t: '600', n: 40}, {a: 'item', t: '601', n: 40}, {a: 'item', t: '616', n: 80} ], + [ {a: 'item', t: '27', n: 100000}, {a: 'item', t: '1', n: 1000000} ] + ] + } + ] + } + }, + { + "hdid" : 5000, // 唯一活动id 累计充值 + "htype" : 5, // 后端唯一识别标识 + "stype" : 500, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 0, // 活动开始天数 + "rtime" : 7, // 活动显示结束天数 + "etime" : 7, // 活动实际结束 + "name": "leijichongzhi", + "icon": "icon_leijichongzhi", + "showtime" : "仅供参考,会复写正确值", + "data" : { + tasks: [ + { total: 100, prize: [{a: 'attr', t: 'rmbmoney', n: 500},{a: 'item', t: '4', n: 2}] }, + { total: 200, prize: [{a: 'attr', t: 'rmbmoney', n: 1000},{a: 'item', t: '12', n: 500}]}, + { total: 500, prize: [{a: 'attr', t: 'rmbmoney', n: 1500},{a: 'item', t: '4', n: 5}]}, + { total: 1000, prize: [{a: 'attr', t: 'rmbmoney', n: 2000},{a: 'item', t: '600', n: 20}]}, + { total: 2000, prize: [{a: 'attr', t: 'rmbmoney', n: 3000},{a: 'item', t: '609', n: 1}]}, + { total: 3000, prize: [{a: 'attr', t: 'rmbmoney', n: 6000},{a: 'item', t: '611', n: 1}]}, + { total: 5000, prize: [{a: 'attr', t: 'rmbmoney', n: 10000},{a: 'item', t: '610', n: 1}]} + ] + }, + "hdid" : 5001, // 唯一活动id 累计充值 + "htype" : 5, // 后端唯一识别标识 + "stype" : 500, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 7, // 活动开始天数 + "rtime" : 14, // 活动显示结束天数 + "etime" : 14, // 活动实际结束 + "name": "leijichongzhi", + "icon": "icon_leijichongzhi", + "showtime" : "仅供参考,会复写正确值", + "data" : { + tasks: [ + { total: 100, prize: [{a: 'attr', t: 'rmbmoney', n: 500},{a: 'item', t: '4', n: 2}] }, + { total: 200, prize: [{a: 'attr', t: 'rmbmoney', n: 1000},{a: 'item', t: '12', n: 500}]}, + { total: 500, prize: [{a: 'attr', t: 'rmbmoney', n: 1500},{a: 'item', t: '4', n: 5}]}, + { total: 1000, prize: [{a: 'attr', t: 'rmbmoney', n: 2000},{a: 'item', t: '600', n: 20}]}, + { total: 2000, prize: [{a: 'attr', t: 'rmbmoney', n: 3000},{a: 'item', t: '609', n: 1}]}, + { total: 3000, prize: [{a: 'attr', t: 'rmbmoney', n: 6000},{a: 'item', t: '611', n: 1}]}, + { total: 5000, prize: [{a: 'attr', t: 'rmbmoney', n: 10000},{a: 'item', t: '610', n: 1}]} + ] + }, + "hdid" : 5002, // 唯一活动id 累计充值 + "htype" : 5, // 后端唯一识别标识 + "stype" : 500, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 14, // 活动开始天数 + "rtime" : 21, // 活动显示结束天数 + "etime" : 21, // 活动实际结束 + "name": "leijichongzhi", + "icon": "icon_leijichongzhi", + "showtime" : "仅供参考,会复写正确值", + "data" : { + tasks: [ + { total: 100, prize: [{a: 'attr', t: 'rmbmoney', n: 500},{a: 'item', t: '4', n: 2}] }, + { total: 200, prize: [{a: 'attr', t: 'rmbmoney', n: 1000},{a: 'item', t: '12', n: 500}]}, + { total: 500, prize: [{a: 'attr', t: 'rmbmoney', n: 1500},{a: 'item', t: '4', n: 5}]}, + { total: 1000, prize: [{a: 'attr', t: 'rmbmoney', n: 2000},{a: 'item', t: '600', n: 20}]}, + { total: 2000, prize: [{a: 'attr', t: 'rmbmoney', n: 3000},{a: 'item', t: '609', n: 1}]}, + { total: 3000, prize: [{a: 'attr', t: 'rmbmoney', n: 6000},{a: 'item', t: '611', n: 1}]}, + { total: 5000, prize: [{a: 'attr', t: 'rmbmoney', n: 10000},{a: 'item', t: '610', n: 1}]} + ] + }, + "hdid" : 5003, // 唯一活动id 累计充值 + "htype" : 5, // 后端唯一识别标识 + "stype" : 500, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 21, // 活动开始天数 + "rtime" : 28, // 活动显示结束天数 + "etime" : 28, // 活动实际结束 + "name": "leijichongzhi", + "icon": "icon_leijichongzhi", + "showtime" : "仅供参考,会复写正确值", + "data" : { + tasks: [ + { total: 100, prize: [{a: 'attr', t: 'rmbmoney', n: 500},{a: 'item', t: '4', n: 2}] }, + { total: 200, prize: [{a: 'attr', t: 'rmbmoney', n: 1000},{a: 'item', t: '12', n: 500}]}, + { total: 500, prize: [{a: 'attr', t: 'rmbmoney', n: 1500},{a: 'item', t: '4', n: 5}]}, + { total: 1000, prize: [{a: 'attr', t: 'rmbmoney', n: 2000},{a: 'item', t: '600', n: 20}]}, + { total: 2000, prize: [{a: 'attr', t: 'rmbmoney', n: 3000},{a: 'item', t: '609', n: 1}]}, + { total: 3000, prize: [{a: 'attr', t: 'rmbmoney', n: 6000},{a: 'item', t: '611', n: 1}]}, + { total: 5000, prize: [{a: 'attr', t: 'rmbmoney', n: 10000},{a: 'item', t: '610', n: 1}]} + ] + } + }, + { + "hdid" : 6000, // 唯一活动id 七日登录 + "htype" : 6, // 后端唯一识别标识 + "stype" : 600, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 0, // 活动开始天数 + "rtime" : 7, // 活动显示结束天数 + "etime" : 7, // 活动实际结束 + "name": "mainView_txt_huod1450", + "icon": "icon_qiridenglu", + "showtime" : "仅供参考,会复写正确值", + "data" : { + "arr": [ + { + day: 1, + prize: [{a: 'attr', t: 'rmbmoney', n: 200}] + }, + { + day: 2, + prize: [{a: 'hero', t: '4001', n: 1}] + }, + { + day: 3, + prize: [{a: 'equip', t: '1009', n: 1}] + }, + { + day: 4, + prize: [{a: 'item', t: '9', n: 200}] + }, + { + day: 5, + prize: [{a: 'item', t: '4', n: 10}] + }, + { + day: 6, + prize: [{a: 'attr', t: 'rmbmoney', n: 1000}] + }, + { + day: 7, + prize: [{a: 'hero', t: '5005', n: 1}] + } + ] + } + }, + { + "hdid" : 7000, // 唯一活动id 开服狂欢 + "htype" : 7, // 后端唯一识别标识 + "stype" : 700, // 前端唯一识别标识(看前端需要是否修改) + "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime" : 0, // 活动开始天数 + "rtime" : 7, // 活动显示结束天数 + "etime" : 7, // 活动实际结束 + "name": "KFKH", + "icon": "btn_kfkh", + "showtime" : "仅供参考,会复写正确值", + "data" : { + //登陆奖励 + loginPrize: [ + [{ a: 'equip', t: '3003', n: 1 }], + [{ a: 'item', t: '618', n: 1 }], + [{ a: 'item', t: '12', n: 200 }], + [{ a: 'item', t: '2', n: 400 }], + [{ a: 'attr', t: 'rmbmoney', n: 1500 }], + [{ a: 'attr', t: 'jinbi', n: 300000 }], + [{ a: 'item', t: '617', n: 1 }] + ], + //商品 + shop: [ + { buyNum: 1, day: 1, vip: 1, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 400 }], prize: [{ a: 'item', t: '2', n: 1000 }] }, + { buyNum: 1, day: 1, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1200 }], prize: [{ a: 'hero', t: '4010', n: 1 }] }, + { buyNum: 1, day: 2, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 680 }], prize: [{ a: 'item', t: '27', n: 5000 }] }, + { buyNum: 1, day: 2, vip: 3, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 500 }], prize: [{ a: 'item', t: '620', n: 1 }] }, + { buyNum: 1, day: 3, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 670 }], prize: [{ a: 'item', t: '6', n: 20 }] }, + { buyNum: 1, day: 3, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 670 }], prize: [{ a: 'item', t: '615', n: 1 }] }, + { buyNum: 1, day: 4, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 600 }], prize: [{ a: 'item', t: '12', n: 800 }] }, + { buyNum: 1, day: 4, vip: 5, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1340 }], prize: [{ a: 'item', t: '621', n: 1 }] }, + { buyNum: 1, day: 5, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1250 }], prize: [{ a: 'item', t: '1', n: 3000000 }] }, + { buyNum: 1, day: 5, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1340 }], prize: [{ a: 'item', t: '621', n: 1 }] }, + { buyNum: 1, day: 6, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 625 }], prize: [{ a: 'attr', t: 'jinbi', n: 10000000 }] }, + { buyNum: 1, day: 6, vip: 6, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 4440 }], prize: [{ a: 'item', t: '18', n: 888 }] }, + { buyNum: 1, day: 7, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 500 }], prize: [{ a: 'item', t: '24', n: 10 }] }, + { buyNum: 1, day: 7, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 4500 }], prize: [{ a: 'item', t: '617', n: 1 }] }, + { buyNum: 1, day: 7, vip: 7, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1340 }], prize: [{ a: 'item', t: '625', n: 1 }] }, + ], + //任务 + taskType: { + '今日登陆': 'toDayLogin_x', + '今日累计充值x元': 'toDayPay_x', + '任意装备强化至x级': 'equip_qh_lv', + '竞技场排名达到x': 'jjc_rank', + '同时出战x名紫色干部': 'fight_hero_colour_4', + '通过黑暗塔关卡': 'zccg_level', + '拥有x件蓝色及以上装备': 'has_equip_color_3', + '拥有x名进阶+1的干部': 'has_hero_jieji_1', + '佣兵助战上阵x个干部 ': 'helpHeros', + '维修厂老实轿车突破到x阶x星 ': 'wxcLv', + '干部羁绊属性激活x条 ': 'hero_jiban', + '玩家等级达到x级': 'lv', + '玩家总战力达到x': 'power', + '主线关卡': 'mapId' + }, + task: { + '1': [ + { taskId:'intr_task_name_444', taskType: 'toDayLogin_1', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 100 },{ a:'attr', t:'jinbi', n: 20000 }],"tiaozhuan": 24 }, + { taskId:'intr_task_name_430', taskType: 'toDayPay_1', total: 1000, prize: [{ a:'attr', t:'rmbmoney', n: 500 },{ a:'item', t:'2', n: 500 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_431', taskType: 'toDayPay_1', total: 3000, prize: [{ a:'attr', t:'rmbmoney', n: 600 },{ a:'item', t:'12', n: 500 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_432', taskType: 'toDayPay_1', total: 5000, prize: [{ a:'attr', t:'rmbmoney', n: 800 },{ a:'item', t:'2', n: 2000 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_433', taskType: 'toDayPay_1', total: 8000, prize: [{ a:'attr', t:'rmbmoney', n: 1000 },{ a:'item', t:'12', n: 1000 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_434', taskType: 'mapId' , total: 20, prize: [{ a:'attr', t:'jinbi', n: 10000 },{ a:'item', t:'12', n: 30 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_435', taskType: 'mapId' , total: 30, prize: [{ a:'attr', t:'jinbi', n: 20000 },{ a:'item', t:'12', n: 30 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_436', taskType: 'mapId' , total: 40, prize: [{ a:'attr', t:'jinbi', n: 30000 },{ a:'item', t:'12', n: 30 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_437', taskType: 'mapId' , total: 50, prize: [{ a:'attr', t:'jinbi', n: 40000 },{ a:'item', t:'12', n: 50 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_438', taskType: 'mapId' , total: 60, prize: [{ a:'attr', t:'jinbi', n: 100000 },{ a:'item', t:'12', n: 50 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_439', taskType: 'equip_qh_lv', total: 10, prize: [{ a:'attr', t:'jinbi', n: 10000 },{ a:'item', t:'2', n: 20 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_440', taskType: 'equip_qh_lv', total: 20, prize: [{ a:'attr', t:'jinbi', n: 20000 },{ a:'item', t:'2', n: 30 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_441', taskType: 'equip_qh_lv', total: 30, prize: [{ a:'attr', t:'jinbi', n: 30000 },{ a:'item', t:'2', n: 50 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_442', taskType: 'equip_qh_lv', total: 40, prize: [{ a:'attr', t:'jinbi', n: 40000 },{ a:'item', t:'2', n: 100 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_443', taskType: 'equip_qh_lv', total: 50, prize: [{ a:'attr', t:'jinbi', n: 100000 },{ a:'item', t:'2', n: 150 }],"tiaozhuan": 2 } + ], + '2': [ + { taskId:'intr_task_name_444', taskType: 'toDayLogin_2', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 150 },{ a:'item', t:'618', n: 1 },{ a:'item', t:'12', n: 100 }],"tiaozhuan": 24 }, + { taskId:'intr_task_name_445', taskType: 'toDayPay_2', total: 2000, prize: [{ a:'attr', t:'rmbmoney', n: 1000 },{ a:'item', t:'616', n: 5 },{ a:'item', t:'600', n: 2 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_446', taskType: 'toDayPay_2', total: 4000, prize: [{ a:'attr', t:'rmbmoney', n: 600 },{ a:'attr', t:'nexp', n: 10000 },{ a:'item', t:'616', n: 5 },{ a:'item', t:'600', n: 3 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_447', taskType: 'toDayPay_2', total: 6000, prize: [{ a:'attr', t:'rmbmoney', n: 800 },{ a:'attr', t:'nexp', n: 40000 },{ a:'item', t:'616', n: 10 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_448', taskType: 'toDayPay_2', total: 8000, prize: [{ a:'attr', t:'rmbmoney', n: 1000 },{ a:'attr', t:'nexp', n: 100000 },{ a:'item', t:'616', n: 20 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_449', taskType: 'jjc_rank', total: 100, prize: [{ a:'attr', t:'rmbmoney', n: 100 }],"tiaozhuan": 28 }, + { taskId:'intr_task_name_450', taskType: 'jjc_rank', total: 50, prize: [{ a:'attr', t:'rmbmoney', n: 150 }],"tiaozhuan": 28 }, + { taskId:'intr_task_name_451', taskType: 'jjc_rank', total: 20, prize: [{ a:'attr', t:'rmbmoney', n: 200 }],"tiaozhuan": 28 }, + { taskId:'intr_task_name_452', taskType: 'jjc_rank', total: 10, prize: [{ a:'attr', t:'rmbmoney', n: 250 }],"tiaozhuan": 28 }, + { taskId:'intr_task_name_453', taskType: 'jjc_rank', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 300 }],"tiaozhuan": 28 }, + { taskId:'intr_task_name_454', taskType: 'fight_hero_colour_4', total: 2, prize: [{ a:'item', t:'2', n: 20 },{ a:'attr', t:'jinbi', n: 10000 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_455', taskType: 'fight_hero_colour_4', total: 3, prize: [{ a:'item', t:'2', n: 30 },{ a:'attr', t:'jinbi', n: 20000 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_456', taskType: 'fight_hero_colour_4', total: 4, prize: [{ a:'item', t:'2', n: 50 },{ a:'attr', t:'jinbi', n: 30000 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_457', taskType: 'fight_hero_colour_4', total: 5, prize: [{ a:'item', t:'2', n: 100 },{ a:'attr', t:'jinbi', n: 40000 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_458', taskType: 'fight_hero_colour_4', total: 6, prize: [{ a:'item', t:'2', n: 150 },{ a:'attr', t:'jinbi', n: 100000 }],"tiaozhuan": 2 } + ], + '3': [ + { taskId:'intr_task_name_459', taskType: 'toDayLogin_3', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 200 },{ a:'equip', t:'3003', n: 1 },{ a:'item', t:'2', n: 200 }],"tiaozhuan": 24 }, + { taskId:'intr_task_name_460', taskType: 'toDayPay_3', total: 3000, prize: [{ a:'attr', t:'rmbmoney', n: 1500 },{ a:'item', t:'23', n: 50000 },{ a:'item', t:'601', n: 2 },{ a:'item', t:'600', n: 2 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_461', taskType: 'toDayPay_3', total: 5000, prize: [{ a:'item', t:'12', n: 2500 },{ a:'attr', t:'nexp', n: 10000 },{ a:'item', t:'601', n: 5 },{ a:'item', t:'600', n: 3 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_462', taskType: 'toDayPay_3', total: 10000, prize: [{ a:'item', t:'2', n: 5000 },{ a:'attr', t:'nexp', n: 40000 },{ a:'item', t:'601', n: 10 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_463', taskType: 'toDayPay_3', total: 15000, prize: [{ a:'attr', t:'rmbmoney', n: 2000 },{ a:'attr', t:'nexp', n: 100000 },{ a:'item', t:'601', n: 20 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_464', taskType: 'zccg_level', total: 15, prize: [{ a:'item', t:'23', n: 10000 },{ a:'item', t:'26', n: 1 }],"tiaozhuan": 29 }, + { taskId:'intr_task_name_465', taskType: 'zccg_level', total: 17, prize: [{ a:'item', t:'23', n: 20000 },{ a:'item', t:'26', n: 2 }],"tiaozhuan": 29 }, + { taskId:'intr_task_name_466', taskType: 'zccg_level', total: 19, prize: [{ a:'item', t:'23', n: 20000 },{ a:'item', t:'26', n: 3 }],"tiaozhuan": 29 }, + { taskId:'intr_task_name_467', taskType: 'zccg_level', total: 22, prize: [{ a:'item', t:'23', n: 25000 },{ a:'item', t:'26', n: 4 }],"tiaozhuan": 29 }, + { taskId:'intr_task_name_468', taskType: 'zccg_level', total: 25, prize: [{ a:'item', t:'23', n: 25000 },{ a:'item', t:'26', n: 5 }],"tiaozhuan": 29 }, + { taskId:'intr_task_name_469', taskType: 'has_equip_color_3', total: 8, prize: [{ a:'item', t:'23', n: 10000 },{ a:'item', t:'70002', n: 1 }],"tiaozhuan": 8 }, + { taskId:'intr_task_name_470', taskType: 'has_equip_color_3', total: 12, prize: [{ a:'item', t:'23', n: 20000 },{ a:'item', t:'70002', n: 1 }],"tiaozhuan": 8 }, + { taskId:'intr_task_name_471', taskType: 'has_equip_color_4', total: 2, prize: [{ a:'item', t:'23', n: 20000 },{ a:'item', t:'70004', n: 1 }],"tiaozhuan": 8 }, + { taskId:'intr_task_name_472', taskType: 'has_equip_color_4', total: 4, prize: [{ a:'item', t:'23', n: 25000 },{ a:'item', t:'70004', n: 1 }],"tiaozhuan": 8 }, + { taskId:'intr_task_name_473', taskType: 'has_equip_color_4', total: 6, prize: [{ a:'item', t:'23', n: 25000 },{ a:'item', t:'70005', n: 1 }],"tiaozhuan": 8 } + ], + '4': [ + { taskId:'intr_task_name_474', taskType: 'toDayLogin_4', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 250 },{ a:'item', t:'12', n: 100 }],"tiaozhuan": 24 }, + { taskId:'intr_task_name_475', taskType: 'toDayPay_4', total: 5000, prize: [{ a:'attr', t:'rmbmoney', n: 2500 },{ a:'item', t:'12', n: 1800 },{ a:'item', t:'616', n: 10 },{ a:'item', t:'600', n: 2 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_476', taskType: 'toDayPay_4', total: 8000, prize: [{ a:'item', t:'12', n: 3000 },{ a:'attr', t:'nexp', n: 100000 },{ a:'item', t:'616', n: 10 },{ a:'item', t:'600', n: 3 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_477', taskType: 'toDayPay_4', total: 15000, prize: [{ a:'item', t:'9', n: 1250 },{ a:'attr', t:'nexp', n: 200000 },{ a:'item', t:'601', n: 10 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_478', taskType: 'toDayPay_4', total: 20000, prize: [{ a:'attr', t:'rmbmoney', n: 5000 },{ a:'attr', t:'nexp', n: 300000 },{ a:'item', t:'601', n: 10 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_479', taskType: 'mapId' , total: 70, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 1 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_480', taskType: 'mapId' , total: 75, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 2 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_481', taskType: 'mapId' , total: 80, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 3 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_482', taskType: 'mapId' , total: 85, prize: [{ a:'item', t:'12', n: 50 },{ a:'item', t:'25', n: 4 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_483', taskType: 'mapId' , total: 90, prize: [{ a:'item', t:'12', n: 50 },{ a:'item', t:'25', n: 5 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_484', taskType: 'has_hero_jieji_1', total: 6, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 20 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_485', taskType: 'has_hero_jieji_2', total: 5, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 30 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_486', taskType: 'has_hero_jieji_3', total: 3, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 50 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_487', taskType: 'has_hero_jieji_4', total: 1, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 100 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_488', taskType: 'has_hero_jieji_4', total: 2, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 150 }],"tiaozhuan": 2 } + ], + '5': [ + { taskId:'intr_task_name_489', taskType: 'toDayLogin_5', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 300 },{ a:'item', t:'2', n: 200 }],"tiaozhuan": 24 }, + { taskId:'intr_task_name_490', taskType: 'toDayPay_5', total: 10000, prize: [{ a:'attr', t:'rmbmoney', n: 5000 },{ a:'item', t:'600', n: 2 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_491', taskType: 'toDayPay_5', total: 15000, prize: [{ a:'item', t:'10', n: 250 },{ a:'attr', t:'nexp', n: 250000 },{ a:'item', t:'6', n: 40 },{ a:'item', t:'600', n: 3 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_492', taskType: 'toDayPay_5', total: 20000, prize: [{ a:'item', t:'9', n: 3000 },{ a:'attr', t:'nexp', n: 300000 },{ a:'item', t:'6', n: 50 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_493', taskType: 'toDayPay_5', total: 28000, prize: [{ a:'attr', t:'rmbmoney', n: 10000 },{ a:'attr', t:'nexp', n: 500000 },{ a:'item', t:'6', n: 60 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_494', taskType: 'helpHeros', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 50 },{ a:'item', t:'70004', n: 1 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_495', taskType: 'helpHeros', total: 2, prize: [{ a:'attr', t:'rmbmoney', n: 100 },{ a:'item', t:'70004', n: 1 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_496', taskType: 'helpHeros', total: 3, prize: [{ a:'attr', t:'rmbmoney', n: 150 },{ a:'item', t:'70005', n: 1 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_497', taskType: 'helpHeros', total: 4, prize: [{ a:'attr', t:'rmbmoney', n: 200 },{ a:'item', t:'70005', n: 1 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_498', taskType: 'helpHeros', total: 5, prize: [{ a:'attr', t:'rmbmoney', n: 250 },{ a:'item', t:'70006', n: 1 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_499', taskType: 'mapId' , total: 100, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 1 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_500', taskType: 'mapId' , total: 115, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 2 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_501', taskType: 'mapId' , total: 130, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 3 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_502', taskType: 'mapId' , total: 150, prize: [{ a:'item', t:'12', n: 50 },{ a:'item', t:'25', n: 4 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_503', taskType: 'mapId' , total: 170, prize: [{ a:'item', t:'12', n: 50 },{ a:'item', t:'25', n: 5 }],"tiaozhuan": 3 } + ], + '6': [ + { taskId:'intr_task_name_504', taskType: 'toDayLogin_6', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 350 },{ a:'attr', t:'jinbi', n: 300000 }],"tiaozhuan": 24 }, + { taskId:'intr_task_name_505', taskType: 'toDayPay_6', total: 15000, prize: [{ a:'attr', t:'rmbmoney', n: 7500 },{ a:'item', t:'6', n: 40 },{ a:'item', t:'617', n: 3 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_506', taskType: 'toDayPay_6', total: 28000, prize: [{ a:'item', t:'2', n: 4500 },{ a:'item', t:'6', n: 60 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_507', taskType: 'toDayPay_6', total: 42000, prize: [{ a:'item', t:'29', n: 800 },{ a:'item', t:'6', n: 70 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_508', taskType: 'toDayPay_6', total: 55000, prize: [{ a:'attr', t:'rmbmoney', n: 15000 },{ a:'item', t:'6', n: 80 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_509', taskType: 'wxcLv', total: 22, prize: [{ a:'item', t:'44', n: 5 }],"tiaozhuan": 6 }, + { taskId:'intr_task_name_510', taskType: 'wxcLv', total: 24, prize: [{ a:'item', t:'45', n: 5 }],"tiaozhuan": 6 }, + { taskId:'intr_task_name_511', taskType: 'wxcLv', total: 26, prize: [{ a:'item', t:'46', n: 5 }],"tiaozhuan": 6 }, + { taskId:'intr_task_name_512', taskType: 'wxcLv', total: 28, prize: [{ a:'item', t:'44', n: 5 },{ a:'item', t:'46', n: 5 }],"tiaozhuan": 6 }, + { taskId:'intr_task_name_513', taskType: 'wxcLv', total: 30, prize: [{ a:'item', t:'46', n: 5 },{ a:'item', t:'45', n: 5 }],"tiaozhuan": 6 }, + { taskId:'intr_task_name_514', taskType: 'hero_jiban', total: 12, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 20 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_515', taskType: 'hero_jiban', total: 14, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 30 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_516', taskType: 'hero_jiban', total: 16, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 50 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_517', taskType: 'hero_jiban', total: 18, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 100 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_518', taskType: 'hero_jiban', total: 20, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 150 }],"tiaozhuan": 2 } + ], + '7': [ + { taskId:'intr_task_name_519', taskType: 'toDayLogin_7', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 400 },{ a:'item', t:'617', n: 1 }],"tiaozhuan": 24 }, + { taskId:'intr_task_name_520', taskType: 'toDayPay_7', total: 15000, prize: [{ a:'attr', t:'rmbmoney', n: 7500 },{ a:'item', t:'24', n: 20 },{ a:'item', t:'617', n: 3 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_521', taskType: 'toDayPay_7', total: 28000, prize: [{ a:'item', t:'10', n: 120 },{ a:'item', t:'29', n: 500 },{ a:'item', t:'6', n: 60 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_522', taskType: 'toDayPay_7', total: 42000, prize: [{ a:'item', t:'9', n: 2000 },{ a:'item', t:'29', n: 1000 },{ a:'item', t:'6', n: 70 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_523', taskType: 'toDayPay_7', total: 55000, prize: [{ a:'attr', t:'rmbmoney', n: 15000 },{ a:'item', t:'20', n: 230 },{ a:'item', t:'6', n: 80 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_524', taskType: 'lv', total: 35, prize: [{ a:'attr', t:'rmbmoney', n: 50 },{ a:'item', t:'6', n: 1 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_525', taskType: 'lv', total: 38, prize: [{ a:'attr', t:'rmbmoney', n: 100 },{ a:'item', t:'6', n: 2 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_526', taskType: 'lv', total: 41, prize: [{ a:'attr', t:'rmbmoney', n: 150 },{ a:'item', t:'6', n: 3 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_527', taskType: 'lv', total: 44, prize: [{ a:'attr', t:'rmbmoney', n: 200 },{ a:'item', t:'6', n: 4 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_528', taskType: 'lv', total: 47, prize: [{ a:'attr', t:'rmbmoney', n: 250 },{ a:'item', t:'6', n: 5 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_529', taskType: 'power' , total: 200000, prize: [{ a:'attr', t:'rmbmoney', n: 50 },{ a:'item', t:'2', n: 20 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_530', taskType: 'power' , total: 400000, prize: [{ a:'attr', t:'rmbmoney', n: 100 },{ a:'item', t:'2', n: 30 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_531', taskType: 'power' , total: 600000, prize: [{ a:'attr', t:'rmbmoney', n: 150 },{ a:'item', t:'2', n: 50 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_532', taskType: 'power' , total: 1200000, prize: [{ a:'attr', t:'rmbmoney', n: 200 },{ a:'item', t:'2', n: 100 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_533', taskType: 'power' , total: 1800000, prize: [{ a:'attr', t:'rmbmoney', n: 250 },{ a:'item', t:'2', n: 150 }],"tiaozhuan": 1 } + ], + }, + //宝箱奖励 + taskBoxPrize: [ + { total: 60, prize: [{ a: 'attr', t: 'rmbmoney', n: 100 },{ a: 'item', t: '12', n: 200 },{ a: 'item', t: '2', n: 100 }] }, + { total: 70, prize: [{ a: 'attr', t: 'rmbmoney', n: 200 },{ a: 'item', t: '21', n: 200 },{ a: 'attr', t: 'jinbi', n: 2000000 }] }, + { total: 80, prize: [{ a: 'attr', t: 'rmbmoney', n: 300 },{ a: 'item', t: '10', n: 30 },{ a: 'item', t: '9', n: 200 }] }, + { total: 90, prize: [{ a: 'attr', t: 'rmbmoney', n: 500 },{ a: 'item', t: '19', n: 30 },{ a: 'item', t: '2', n: 300 }] }, + { total: 95, prize: [{ a: 'attr', t: 'rmbmoney', n: 1000 },{ a: 'item', t: '12', n: 500 },{ a: 'item', t: '28', n: 3000 },{ a: 'item', t: '6', n: 10 }] }, + { total: 100, prize: [{ a: 'attr', t: 'rmbmoney', n: 2000 },{ a: 'item', t: '12', n: 1000 },{ a: 'item', t: '609', n: 1 },{ a: 'item', t: '625', n: 1 },{ a: 'item', t: '50008', n: 1 }] }, + ], + //补发奖励邮件 + email: { + title: 'email_title_kfkh', + content: 'email_content_kfkh' + }, + //持续时间(秒数) + cxtime: 604800 + } + } + + +] \ No newline at end of file diff --git a/src/json/item.json b/src/json/item.json new file mode 100644 index 0000000..dfdd3f8 --- /dev/null +++ b/src/json/item.json @@ -0,0 +1,7484 @@ +{ + "1": { + "id": 1, + "name": "intr_item_name_1", + "undefined": "非常好喝的能量饮料,用于干部升级", + "type": 1, + "sort": 1, + "colour": 3, + "way": [ + 3, + 11, + 14, + 30 + ], + "go": "", + "icon": "icon_yl", + "sicon": "icon_yl", + "describe": "intr_item_describe_1", + "diaoluo": 0, + "lv": 0, + "num": 0, + "hero": 0, + "equip": 0, + "item": 0, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "djlb_1", + "advancedEffects": "" + }, + "2": { + "id": 2, + "name": "intr_item_name_2", + "undefined": "可以擦拭装备,用于装备强化", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 3, + 11, + 14, + 30, + 65 + ], + "go": "", + "icon": "icon_qy", + "sicon": "icon_qy", + "describe": "intr_item_describe_2", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "djlb_2", + "advancedEffects": "" + }, + "3": { + "id": 3, + "name": "intr_item_name_3", + "undefined": "在教堂用来和优兰达抽取装备使用", + "type": 1, + "sort": 1, + "colour": 4, + "way": [], + "go": "8", + "icon": "cqz", + "sicon": "cqz", + "describe": "intr_item_describe_3", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "4": { + "id": 4, + "name": "intr_item_name_4", + "undefined": "在酒馆用来招募干部使用", + "type": 1, + "sort": 1, + "colour": 5, + "way": [], + "go": "9", + "icon": "zhaomu", + "sicon": "zhaomu", + "describe": "intr_item_describe_4", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "5": { + "id": 5, + "name": "intr_item_name_5", + "undefined": "获得100点玩家经验", + "type": 2, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_xsx", + "describe": "intr_item_describe_5", + "diaoluo": 1, + "lv": 1, + "useNeed": [], + "usePrize": [ + { + "a": "attr", + "t": "nexp", + "n": 100 + } + ], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "6": { + "id": 6, + "name": "intr_item_name_6", + "undefined": "每次进行干部特训需要消耗1个特训指南", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 14 + ], + "go": "", + "icon": "icon_gouwq", + "sicon": "icon_gouwq", + "describe": "intr_item_describe_6", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "8": { + "id": 8, + "name": "intr_item_name_8", + "undefined": "使用可获得1个装备蓝图", + "type": 2, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_wqwx", + "sicon": "icon_wqwx", + "describe": "intr_item_describe_8", + "diaoluo": 50058, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "9": { + "id": 9, + "name": "intr_item_name_9", + "undefined": "润滑剂,用于专属武器升星", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 30, + 58 + ], + "go": "", + "icon": "icon_qjj", + "sicon": "icon_qjj", + "describe": "intr_item_describe_9", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "10": { + "id": 10, + "name": "intr_item_name_10", + "undefined": "稀有材料,用于专属武器进阶的专属弹夹", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 11, + 58 + ], + "go": "", + "icon": "icon_dj", + "sicon": "icon_dj", + "describe": "intr_item_describe_10", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "11": { + "id": 11, + "name": "intr_item_name_11", + "undefined": "胜利者的铭牌,用于荣誉商店兑换道具", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 28 + ], + "go": "", + "icon": "icon_rongyu", + "sicon": "icon_rongyu", + "describe": "intr_item_describe_11", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "12": { + "id": 12, + "name": "intr_item_name_12", + "undefined": "资深干部的象征,可用于干部进阶", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 3, + 11, + 14, + 30 + ], + "go": "", + "icon": "icon_danke", + "sicon": "icon_danke", + "describe": "intr_item_describe_12", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "djlb_12", + "advancedEffects": "" + }, + "13": { + "id": 13, + "name": "intr_item_name_13", + "undefined": "含有丰富矿物质的营养液,可用于激活干部潜能", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 52 + ], + "go": "", + "icon": "icon_qianneng", + "sicon": "icon_qianneng", + "describe": "intr_item_describe_13", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "14": { + "id": 14, + "name": "intr_item_name_14", + "undefined": "名望会员券,可用于升级名望", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 50, + 40 + ], + "go": "", + "icon": "icon_mingwang", + "sicon": "icon_mingwang", + "describe": "intr_item_describe_14", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "15": { + "id": 15, + "name": "intr_item_name_15", + "undefined": "势力贡献可用于势力中兑换各种升级或者物品。可在势力捐献中获得。", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 20 + ], + "go": "", + "icon": "icon_gh_xz", + "sicon": "icon_gh_xz", + "describe": "intr_item_describe_15", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "16": { + "id": 16, + "name": "intr_item_name_16", + "undefined": "可以在限时招募中兑换各种奖励", + "type": 1, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_mingwang", + "sicon": "icon_mingwang", + "describe": "intr_item_describe_16", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "17": { + "id": 17, + "name": "intr_item_name_17", + "undefined": "对势力做出卓越贡献的人才拥有的势力币,可以在势力宝藏中使用", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 58 + ], + "go": "", + "icon": "ryxz", + "sicon": "ryxz", + "describe": "intr_item_describe_17", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "18": { + "id": 18, + "name": "intr_item_name_18", + "undefined": "带有详细参数的装备蓝图,可用于装备升星", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 30, + 52 + ], + "go": "", + "icon": "icon_zhblt", + "sicon": "icon_zhblt", + "describe": "intr_item_describe_18", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "djlb_18", + "advancedEffects": "" + }, + "19": { + "id": 19, + "name": "intr_item_name_19", + "undefined": "从秘密渠道而来的特殊合金,可用于装备调校", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 52, + 65 + ], + "go": "", + "icon": "icon_tjhj", + "sicon": "icon_tjhj", + "describe": "intr_item_describe_19", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "20": { + "id": 20, + "name": "intr_item_name_20", + "undefined": "上面带有详尽数据的配件蓝图,可用于配件进阶", + "type": 1, + "sort": 1, + "colour": 5, + "way": [ + 42 + ], + "go": "", + "icon": "icon_pjlt", + "sicon": "icon_pjlt", + "describe": "intr_item_describe_20", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "21": { + "id": 21, + "name": "intr_item_name_21", + "undefined": "专门用于修复古物的溶胶,可用于修复藏品的名刀", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 47, + 48 + ], + "go": "", + "icon": "icon_xfjd", + "sicon": "icon_xfjd", + "describe": "intr_item_describe_21", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "22": { + "id": 22, + "name": "intr_item_name_22", + "undefined": "维修厂零件的副产物,用于维修厂升级时,补足缺失的零件", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 11, + 64 + ], + "go": "", + "icon": "icon_wxchlt", + "sicon": "icon_wxchlt", + "describe": "intr_item_describe_22", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "23": { + "id": 23, + "name": "intr_item_name_23", + "undefined": "通过拆解装备获得的装备零件,可以在装备商店兑换商品", + "type": 1, + "sort": 1, + "colour": 3, + "way": [ + 29, + 55 + ], + "go": "", + "icon": "icon_zhblj", + "sicon": "icon_zhblj", + "describe": "intr_item_describe_23", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "24": { + "id": 24, + "name": "intr_item_name_24", + "undefined": "使用后直接快速探险2小时", + "type": 2, + "sort": 1, + "colour": 5, + "way": [], + "go": "", + "icon": "icon_kstxq", + "sicon": "icon_kstxq", + "describe": "intr_item_describe_24", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "25": { + "id": 25, + "name": "intr_item_name_25", + "undefined": "高级宝箱,打开后可能获得道具,干部,装备,干部碎片和特殊宝箱", + "type": 2, + "sort": 1, + "colour": 5, + "way": [ + 22 + ], + "go": "", + "icon": "icon_itemBox_7", + "sicon": "icon_itemBox_7", + "describe": "intr_item_describe_25", + "diaoluo": 50001, + "useNeed": [ + { + "a": "item", + "t": "26", + "n": 1 + } + ], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "26": { + "id": 26, + "name": "intr_item_name_26", + "undefined": "高级钥匙,用来打开高级宝箱", + "type": 1, + "sort": 1, + "colour": 5, + "way": [ + 22 + ], + "go": "", + "icon": "icon_yaos3", + "sicon": "icon_yaos3", + "describe": "intr_item_describe_26", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "27": { + "id": 27, + "name": "intr_item_name_27", + "undefined": "在遣散干部后,截留下来的人才档案,可以在人才市场招聘干部", + "type": 1, + "sort": 1, + "colour": 3, + "way": [ + 9, + 53 + ], + "go": "", + "icon": "icon_rcda", + "sicon": "icon_rcda", + "describe": "intr_item_describe_27", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "28": { + "id": 28, + "name": "intr_item_name_28", + "undefined": "拆解配件获得的配件零件,在升级配件时需要用到", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "icon_pjlj", + "sicon": "icon_pjlj", + "describe": "intr_item_describe_28", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "29": { + "id": 29, + "name": "intr_item_name_29", + "undefined": "拆解紫色品质配件或指定高级仓库可获得难得的配件核心,可用于配件商店兑换商品", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 37 + ], + "go": "", + "icon": "icon_pjhx", + "sicon": "icon_pjhx", + "describe": "intr_item_describe_29", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "30": { + "id": 30, + "name": "intr_item_name_30", + "undefined": "进攻部署,用来提升进攻出战阵型等级", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 29 + ], + "go": "", + "icon": "icon_jgbs", + "sicon": "icon_jgbs", + "describe": "intr_item_describe_30", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "31": { + "id": 31, + "name": "intr_item_name_31", + "undefined": "警戒部署,用来提升警戒出战阵型等级", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 29 + ], + "go": "", + "icon": "icon_jjbs", + "sicon": "icon_jjbs", + "describe": "intr_item_describe_31", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "32": { + "id": 32, + "name": "intr_item_name_32", + "undefined": "探查部署,用来提升探查出战阵型等级", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 29 + ], + "go": "", + "icon": "icon_tcbs", + "sicon": "icon_tcbs", + "describe": "intr_item_describe_32", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "33": { + "id": 33, + "name": "intr_item_name_33", + "undefined": "初级宝箱,打开后可能获得道具,装备,中级宝箱,中级钥匙", + "type": 2, + "sort": 1, + "colour": 3, + "way": [ + 22 + ], + "go": "", + "icon": "icon_itemBox_1", + "sicon": "icon_itemBox_1", + "describe": "intr_item_describe_33", + "diaoluo": 50005, + "useNeed": [ + { + "a": "item", + "t": "34", + "n": 1 + } + ], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "34": { + "id": 34, + "name": "intr_item_name_34", + "undefined": "初级钥匙,可以用来打开初级宝箱", + "type": 1, + "sort": 1, + "colour": 3, + "way": [ + 22 + ], + "go": "", + "icon": "icon_yaos1", + "sicon": "icon_yaos1", + "describe": "intr_item_describe_34", + "num": " ", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "35": { + "id": 35, + "name": "intr_item_name_35", + "undefined": "中级宝箱,打开后可能获得道具,装备,高级宝箱,高级钥匙", + "type": 2, + "sort": 1, + "colour": 4, + "way": [ + 22 + ], + "go": "", + "icon": "icon_itemBox_5", + "sicon": "icon_itemBox_5", + "describe": "intr_item_describe_35", + "diaoluo": 50003, + "useNeed": [ + { + "a": "item", + "t": "36", + "n": 1 + } + ], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "36": { + "id": 36, + "name": "intr_item_name_36", + "undefined": "中级钥匙,可以用来打开中级宝箱", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 22 + ], + "go": "", + "icon": "icon_yaos2", + "sicon": "icon_yaos2", + "describe": "intr_item_describe_36", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "37": { + "id": 37, + "name": "intr_item_name_37", + "undefined": "使用可以获得100万美金", + "type": 2, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_bwmj", + "sicon": "icon_bwmj", + "describe": "intr_item_describe_37", + "diaoluo": 50004, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "38": { + "id": 38, + "name": "intr_item_name_38", + "undefined": "打开后可以获得莱薇、巴拉莱卡、张维新、罗贝尔特、松崎银次中的一个干部", + "type": 2, + "sort": 1, + "colour": 6, + "way": [], + "go": "", + "icon": "icon_heroBox_3", + "sicon": "icon_heroBox_3", + "describe": "intr_item_describe_38", + "diaoluo": 50002, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzihong" + }, + "39": { + "id": 39, + "name": "intr_item_name_39", + "undefined": "丛林狩猎和黑帮激战中获取的功绩,可以在功绩商店里购买物品", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 51, + 57 + ], + "go": "", + "icon": "icon_jg", + "sicon": "icon_jg", + "describe": "intr_item_describe_39", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "40": { + "id": 40, + "name": "intr_item_name_40", + "undefined": "丛林狩猎霸主级玩家的特殊身份标识", + "type": 7, + "sort": 1, + "colour": 5, + "way": [], + "go": "", + "icon": "txk_014", + "sicon": "txk_014", + "describe": "intr_item_describe_40", + "diaoluo": 10, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "41": { + "id": 41, + "name": "intr_item_name_41", + "undefined": "参与恐怖战争获得的特殊奖励,可用在战争商店中兑换物品", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 50 + ], + "go": "", + "icon": "icon_sheny", + "sicon": "icon_sheny", + "describe": "intr_item_describe_41", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "42": { + "id": 42, + "name": "intr_item_name_42", + "undefined": "用于提升主角名望的特殊道具", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 12 + ], + "go": "", + "icon": "icon_mwxzh", + "sicon": "icon_mwxzh", + "describe": "intr_item_describe_42", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "43": { + "id": 43, + "name": "intr_item_name_43", + "undefined": "购买战令以后得特殊身份标识", + "type": 7, + "sort": 1, + "colour": 5, + "way": [], + "go": "", + "icon": "txk_002", + "sicon": "txk_002", + "describe": "intr_item_describe_43", + "diaoluo": 13, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "44": { + "id": 44, + "name": "intr_item_name_44", + "undefined": "进攻部署碎片,凑齐五个可以合成进攻部署", + "type": 5, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_jgbs", + "sicon": "icon_jgbs", + "describe": "intr_item_describe_44", + "num": 5, + "item": 30, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "45": { + "id": 45, + "name": "intr_item_name_45", + "undefined": "警戒部署碎片,凑齐五个可以合成警戒部署", + "type": 5, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_jjbs", + "sicon": "icon_jjbs", + "describe": "intr_item_describe_45", + "num": 5, + "item": 31, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "46": { + "id": 46, + "name": "intr_item_name_46", + "undefined": "探查部署碎片,凑齐五个可以合成探查部署", + "type": 5, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_tcbs", + "sicon": "icon_tcbs", + "describe": "intr_item_describe_46", + "num": 5, + "item": 32, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "47": { + "id": 47, + "name": "intr_item_name_47", + "undefined": "在铁笼死斗王者赛中获得冠军的身份标志", + "type": 7, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "txk_018", + "sicon": "txk_018", + "describe": "intr_item_describe_47", + "diaoluo": 8, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "48": { + "id": 48, + "name": "intr_item_name_48", + "undefined": "在铁笼死斗王者赛中晋级八强的身份标志", + "type": 7, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "txk_003", + "sicon": "txk_003", + "describe": "intr_item_describe_48", + "diaoluo": 14, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "49": { + "id": 49, + "name": "intr_item_name_49", + "undefined": "野外探险活动期间,在探险中获得的三明治,可以在活动商店中兑换奖励", + "type": 1, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_duihuan_2", + "sicon": "icon_duihuan_2", + "describe": "intr_item_describe_49", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "50": { + "id": 50, + "name": "intr_item_name_50", + "undefined": "野外探险活动期间,在探险中获得的美酒,可以在活动商店中兑换奖励", + "type": 1, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_duihuan_1", + "sicon": "icon_duihuan_1", + "describe": "intr_item_describe_50", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "600": { + "id": 600, + "name": "intr_item_name_600", + "undefined": "使用后可以自选莱薇、张维新、松崎银次中一个干部的碎片", + "type": 2, + "sort": 1, + "colour": 6, + "way": [], + "go": "", + "icon": "icon_heroBox_9", + "sicon": "icon_heroBox_9", + "describe": "intr_item_describe_600", + "useNeed": [], + "usePrize": [], + "selecPrize": [ + { + "a": "item", + "t": "5001", + "n": 1 + }, + { + "a": "item", + "t": "5003", + "n": 1 + }, + { + "a": "item", + "t": "5005", + "n": 1 + } + ], + "payId": "", + "advancedEffects": "ani_xiangzihong" + }, + "601": { + "id": 601, + "name": "intr_item_name_601", + "undefined": "使用后可以自选夜行帽,夜行背心,夜行手套,夜行军靴中一件装备的碎片", + "type": 2, + "sort": 1, + "colour": 5, + "way": [], + "go": "", + "icon": "icon_equipBox_7", + "sicon": "icon_equipBox_7", + "describe": "intr_item_describe_601", + "useNeed": [], + "usePrize": [], + "selecPrize": [ + { + "a": "item", + "t": "10010", + "n": 1 + }, + { + "a": "item", + "t": "20010", + "n": 1 + }, + { + "a": "item", + "t": "30010", + "n": 1 + }, + { + "a": "item", + "t": "40010", + "n": 1 + } + ], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "602": { + "id": 602, + "name": "intr_item_name_602", + "undefined": "使用后获得绿蜥,陆犬,青鸟,赤狐四套配件中的随机一件", + "type": 2, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_pjBox_3", + "sicon": "icon_pjBox_3", + "describe": "intr_item_describe_602", + "diaoluo": 50013, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "603": { + "id": 603, + "name": "intr_item_name_603", + "undefined": "使用后可以获得随机紫色干部的一个碎片", + "type": 2, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_heroBox_4", + "sicon": "icon_heroBox_4", + "describe": "intr_item_describe_603", + "diaoluo": 50014, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "604": { + "id": 604, + "name": "intr_item_name_604", + "undefined": "使用可以自选弹壳,枪油,能量饮料,修复胶中的一件", + "type": 2, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_itemBox_1", + "sicon": "icon_itemBox_1", + "describe": "intr_item_describe_604", + "useNeed": [], + "usePrize": [], + "selecPrize": [ + { + "a": "item", + "t": "12", + "n": 80 + }, + { + "a": "item", + "t": "2", + "n": 125 + }, + { + "a": "item", + "t": "13", + "n": 30 + }, + { + "a": "item", + "t": "21", + "n": 20 + } + ], + "payId": "", + "advancedEffects": "" + }, + "605": { + "id": 605, + "name": "intr_item_name_605", + "undefined": "使用后获得黑鲨,沙蛇两套配件中的随机一件", + "type": 2, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_pjBox_1", + "sicon": "icon_pjBox_1", + "describe": "intr_item_describe_605", + "diaoluo": 50020, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "606": { + "id": 606, + "name": "intr_item_name_606", + "undefined": "使用后获得风蝶,蓝鲸两套配件中的随机一件", + "type": 2, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_pjBox_1", + "sicon": "icon_pjBox_1", + "describe": "intr_item_describe_606", + "diaoluo": 50019, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "607": { + "id": 607, + "name": "intr_item_name_607", + "undefined": "使用后可以自选艾达,加尔西亚,葛丽特中一个干部的碎片", + "type": 2, + "sort": 1, + "colour": 5, + "way": [], + "go": "", + "icon": "icon_heroBox_8", + "sicon": "icon_heroBox_8", + "describe": "intr_item_describe_607", + "useNeed": [], + "usePrize": [], + "selecPrize": [ + { + "a": "item", + "t": "4005", + "n": 1 + }, + { + "a": "item", + "t": "4010", + "n": 1 + }, + { + "a": "item", + "t": "4013", + "n": 1 + } + ], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "608": { + "id": 608, + "name": "intr_item_name_608", + "undefined": "使用后可以自选李卡德,克莱顿韦伯,阿布莱格,雷卡基,贝尼中一个干部的碎片", + "type": 2, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_heroBox_7", + "sicon": "icon_heroBox_7", + "describe": "intr_item_describe_608", + "useNeed": [], + "usePrize": [], + "selecPrize": [ + { + "a": "item", + "t": "3002", + "n": 1 + }, + { + "a": "item", + "t": "3006", + "n": 1 + }, + { + "a": "item", + "t": "3009", + "n": 1 + }, + { + "a": "item", + "t": "3011", + "n": 1 + }, + { + "a": "item", + "t": "3015", + "n": 1 + } + ], + "payId": "", + "advancedEffects": "" + }, + "609": { + "id": 609, + "name": "intr_item_name_609", + "undefined": "使用后可以获得头目头盔,头目背心,头目手套,头目军靴", + "type": 2, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_equipBox_2", + "sicon": "icon_equipBox_2", + "describe": "intr_item_describe_609", + "useNeed": [], + "usePrize": [ + 50023, + 50024, + 50025, + 50026 + ], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "610": { + "id": 610, + "name": "intr_item_name_610", + "undefined": "使用后可以获得70级橙色饰品沉醉", + "type": 2, + "sort": 1, + "colour": 5, + "way": [], + "go": "", + "icon": "icon_box_10", + "sicon": "icon_box_10", + "describe": "intr_item_describe_610", + "diaoluo": 50027, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "611": { + "id": 611, + "name": "intr_item_name_611", + "undefined": "使用后可以获得夜行帽,夜行背心,夜行手套,夜行军靴", + "type": 2, + "sort": 1, + "colour": 5, + "way": [], + "go": "", + "icon": "icon_equipBox_8", + "sicon": "icon_equipBox_8", + "describe": "intr_item_describe_611", + "useNeed": [], + "usePrize": [ + 50028, + 50029, + 50030, + 50031 + ], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "612": { + "id": 612, + "name": "intr_item_name_612", + "undefined": "使用后可以选择配件经验或者配件蓝图中的一项", + "type": 2, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_itemBox_4", + "sicon": "icon_itemBox_4", + "describe": "intr_item_describe_612", + "useNeed": [], + "usePrize": [], + "selecPrize": [ + { + "a": "item", + "t": "28", + "n": 3000 + }, + { + "a": "item", + "t": "20", + "n": 30 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "payId": "", + "advancedEffects": "" + }, + "613": { + "id": 613, + "name": "intr_item_name_613", + "undefined": "使用后可以获得紫色干部甚至橙色干部碎片", + "type": 2, + "sort": 1, + "colour": 5, + "way": [], + "go": "", + "icon": "icon_heroBox_5", + "sicon": "icon_heroBox_5", + "describe": "intr_item_describe_613", + "diaoluo": 50034, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "614": { + "id": 614, + "name": "intr_item_name_614", + "undefined": "依据当前的维修厂等阶开出对应等阶的动力模块", + "type": 2, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_itemBox_3", + "sicon": "icon_itemBox_3", + "describe": "intr_item_describe_614", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "615": { + "id": 615, + "name": "intr_item_name_615", + "undefined": "使用后可以选择头目头盔,头目背心,头目手套,头目军靴中的一件", + "type": 2, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_equipBox_2", + "sicon": "icon_equipBox_2", + "describe": "intr_item_describe_615", + "useNeed": [], + "usePrize": [], + "selecPrize": [ + { + "a": "equip", + "t": "1009", + "n": 1 + }, + { + "a": "equip", + "t": "2009", + "n": 1 + }, + { + "a": "equip", + "t": "3009", + "n": 1 + }, + { + "a": "equip", + "t": "4009", + "n": 1 + } + ], + "payId": "", + "advancedEffects": "" + }, + "616": { + "id": 616, + "name": "intr_item_name_616", + "undefined": "使用后可以选择头目头盔,头目背心,头目手套,头目军靴中的一个碎片", + "type": 2, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_equipBox_6", + "sicon": "icon_equipBox_6", + "describe": "intr_item_describe_616", + "useNeed": [], + "usePrize": [], + "selecPrize": [ + { + "a": "item", + "t": "10009", + "n": 1 + }, + { + "a": "item", + "t": "20009", + "n": 1 + }, + { + "a": "item", + "t": "30009", + "n": 1 + }, + { + "a": "item", + "t": "40009", + "n": 1 + } + ], + "payId": "", + "advancedEffects": "" + }, + "617": { + "id": 617, + "name": "intr_item_name_617", + "undefined": "使用后可以选择获得莱薇、张维新、松崎银次中的一个干部", + "type": 2, + "sort": 1, + "colour": 6, + "way": [], + "go": "", + "icon": "icon_heroBox_3", + "sicon": "icon_heroBox_3", + "describe": "intr_item_describe_617", + "useNeed": [], + "usePrize": [], + "selecPrize": [ + { + "a": "hero", + "t": "5001", + "n": 1 + }, + { + "a": "hero", + "t": "5003", + "n": 1 + }, + { + "a": "hero", + "t": "5005", + "n": 1 + } + ], + "payId": "", + "advancedEffects": "ani_xiangzihong" + }, + "618": { + "id": 618, + "name": "intr_item_name_618", + "undefined": "使用后可以获得随机一个紫色干部", + "type": 2, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_heroBox_4", + "sicon": "icon_heroBox_4", + "describe": "intr_item_describe_618", + "diaoluo": 50035, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "619": { + "id": 619, + "name": "intr_item_name_619", + "undefined": "使用后可以选择获得莱薇、巴拉莱卡、张维新、罗贝尔特、松崎银次中的一个干部", + "type": 2, + "sort": 1, + "colour": 6, + "way": [], + "go": "", + "icon": "icon_heroBox_3", + "sicon": "icon_heroBox_3", + "describe": "intr_item_describe_619", + "useNeed": [], + "usePrize": [], + "selecPrize": [ + { + "a": "hero", + "t": "5001", + "n": 1 + }, + { + "a": "hero", + "t": "5002", + "n": 1 + }, + { + "a": "hero", + "t": "5003", + "n": 1 + }, + { + "a": "hero", + "t": "5004", + "n": 1 + }, + { + "a": "hero", + "t": "5005", + "n": 1 + } + ], + "payId": "", + "advancedEffects": "ani_xiangzihong" + }, + "620": { + "id": 620, + "name": "intr_item_name_620", + "undefined": "使用以后可以随机获得一件紫色装备", + "type": 2, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_equipBox_5", + "sicon": "icon_equipBox_5", + "describe": "intr_item_describe_620", + "diaoluo": 50036, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "621": { + "id": 621, + "name": "intr_item_name_621", + "undefined": "使用以后可以随机获得一位橙色干部", + "type": 2, + "sort": 1, + "colour": 5, + "way": [], + "go": "", + "icon": "icon_heroBox_5", + "sicon": "icon_heroBox_5", + "describe": "intr_item_describe_621", + "diaoluo": 50037, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "622": { + "id": 622, + "name": "intr_item_name_622", + "undefined": "使用以后可以随机获得一个红色干部的碎片", + "type": 2, + "sort": 1, + "colour": 6, + "way": [], + "go": "", + "icon": "icon_heroBox_11", + "sicon": "icon_heroBox_11", + "describe": "intr_item_describe_622", + "diaoluo": 50038, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzihong" + }, + "623": { + "id": 623, + "name": "intr_item_name_623", + "undefined": "使用后可以获得夜行帽,夜行背心,夜行手套,夜行军靴中的一个随机碎片", + "type": 2, + "sort": 1, + "colour": 5, + "way": [], + "go": "", + "icon": "icon_equipBox_4", + "sicon": "icon_equipBox_4", + "describe": "intr_item_describe_623", + "diaoluo": 50039, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "624": { + "id": 624, + "name": "intr_item_name_624", + "undefined": "可以选择获得以下道具其中的一项", + "type": 2, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_itemBox_2", + "sicon": "icon_itemBox_2", + "describe": "intr_item_describe_624", + "useNeed": [], + "usePrize": [], + "selecPrize": [ + { + "a": "item", + "t": "2", + "n": 300 + }, + { + "a": "item", + "t": "18", + "n": 30 + }, + { + "a": "item", + "t": "19", + "n": 30 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "payId": "", + "advancedEffects": "" + }, + "625": { + "id": 625, + "name": "intr_item_name_625", + "undefined": "开启后可随机获得一件橙色装备", + "type": 2, + "sort": 1, + "colour": 5, + "way": [], + "go": "", + "icon": "icon_equipBox_4", + "sicon": "icon_equipBox_4", + "describe": "intr_item_describe_625", + "diaoluo": 50050, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "626": { + "id": 626, + "name": "intr_item_name_626", + "undefined": "可以选择获得以下道具其中的一项", + "type": 2, + "sort": 1, + "colour": 5, + "way": [], + "go": "", + "icon": "icon_heroBox_10", + "sicon": "icon_heroBox_10", + "describe": "intr_item_describe_626", + "useNeed": [], + "usePrize": [], + "selecPrize": [ + { + "a": "item", + "t": "4001", + "n": 1 + }, + { + "a": "item", + "t": "4002", + "n": 1 + }, + { + "a": "item", + "t": "4003", + "n": 1 + }, + { + "a": "item", + "t": "4004", + "n": 1 + }, + { + "a": "item", + "t": "4005", + "n": 1 + }, + { + "a": "item", + "t": "4006", + "n": 1 + }, + { + "a": "item", + "t": "4007", + "n": 1 + }, + { + "a": "item", + "t": "4008", + "n": 1 + }, + { + "a": "item", + "t": "4009", + "n": 1 + }, + { + "a": "item", + "t": "4010", + "n": 1 + }, + { + "a": "item", + "t": "4011", + "n": 1 + }, + { + "a": "item", + "t": "4012", + "n": 1 + }, + { + "a": "item", + "t": "4013", + "n": 1 + }, + { + "a": "item", + "t": "4014", + "n": 1 + }, + { + "a": "item", + "t": "4015", + "n": 1 + } + ], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "627": { + "id": 627, + "name": "intr_item_name_627", + "undefined": "使用后可以随机获得头目头盔,头目背心,头目手套,头目军靴的其中一个", + "type": 2, + "sort": 1, + "colour": 5, + "way": [], + "go": "", + "icon": "icon_equipBox_5", + "sicon": "icon_equipBox_5", + "describe": "intr_item_describe_627", + "diaoluo": 50051, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "628": { + "id": 628, + "name": "intr_item_name_628", + "undefined": "使用后可以选择夜行帽,夜行背心,夜行手套,夜行军靴的其中一个", + "type": 2, + "sort": 1, + "colour": 5, + "way": [], + "go": "", + "icon": "icon_equipBox_8", + "sicon": "icon_equipBox_8", + "describe": "intr_item_describe_628", + "useNeed": [], + "usePrize": [], + "selecPrize": [ + { + "a": "equip", + "t": "1010", + "n": 1 + }, + { + "a": "equip", + "t": "2010", + "n": 1 + }, + { + "a": "equip", + "t": "3010", + "n": 1 + }, + { + "a": "equip", + "t": "4010", + "n": 1 + } + ], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "629": { + "id": 629, + "name": "intr_item_name_629", + "undefined": "可以选择获得以下道具其中的一项", + "type": 2, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_itemBox_2", + "sicon": "icon_itemBox_2", + "describe": "intr_item_describe_629", + "useNeed": [], + "usePrize": [], + "selecPrize": [ + { + "a": "item", + "t": "9", + "n": 300 + }, + { + "a": "item", + "t": "10", + "n": 15 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "payId": "", + "advancedEffects": "" + }, + "630": { + "id": 630, + "name": "intr_item_name_630", + "undefined": "使用后可以随机获得头目头盔,头目背心,头目手套,头目军靴中的一个碎片", + "type": 2, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_equipBox_5", + "sicon": "icon_equipBox_5", + "describe": "intr_item_describe_630", + "diaoluo": 50052, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "631": { + "id": 631, + "name": "intr_item_name_631", + "undefined": "使用后可以随机获得莱薇、张维新、松崎银次中的一个碎片", + "type": 2, + "sort": 1, + "colour": 6, + "way": [], + "go": "", + "icon": "icon_heroBox_6", + "sicon": "icon_heroBox_6", + "describe": "intr_item_describe_631", + "diaoluo": 50053, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzihong" + }, + "632": { + "id": 632, + "name": "intr_item_name_632", + "undefined": "可以选择获得以下道具其中的一项", + "type": 2, + "sort": 1, + "colour": 6, + "way": [], + "go": "", + "icon": "icon_heroBox_11", + "sicon": "icon_heroBox_11", + "describe": "intr_item_describe_632", + "useNeed": [], + "usePrize": [], + "selecPrize": [ + { + "a": "item", + "t": "5001", + "n": 1 + }, + { + "a": "item", + "t": "5002", + "n": 1 + }, + { + "a": "item", + "t": "5003", + "n": 1 + }, + { + "a": "item", + "t": "5004", + "n": 1 + }, + { + "a": "item", + "t": "5005", + "n": 1 + } + ], + "payId": "", + "advancedEffects": "ani_xiangzihong" + }, + "633": { + "id": 633, + "name": "intr_item_name_633", + "undefined": "使用后可随机获得以下资源", + "type": 2, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "icon_itemBox_2", + "sicon": "icon_itemBox_2", + "describe": "intr_item_describe_633", + "useNeed": [], + "usePrize": [ + 50054, + 50055, + 50056, + 50057 + ], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "634": { + "id": 634, + "name": "intr_item_name_634", + "undefined": "使用后可随机获得以下碎片", + "type": 2, + "sort": 1, + "colour": 5, + "way": [], + "go": "", + "icon": "icon_heroBox_8", + "sicon": "icon_heroBox_8", + "describe": "intr_item_describe_634", + "diaoluo": 50059, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "635": { + "id": 635, + "name": "intr_item_name_635", + "undefined": "使用后可随机获得以下碎片", + "type": 2, + "sort": 1, + "colour": 5, + "way": [], + "go": "", + "icon": "icon_equipBox_6", + "sicon": "icon_equipBox_6", + "describe": "intr_item_describe_635", + "diaoluo": 50060, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "636": { + "id": 636, + "name": "intr_item_name_636", + "undefined": "使用后可随机获得以下碎片", + "type": 2, + "sort": 1, + "colour": 5, + "way": [], + "go": "", + "icon": "icon_heroBox_8", + "sicon": "icon_heroBox_8", + "describe": "intr_item_describe_636", + "diaoluo": 50061, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "1001": { + "id": 1001, + "name": "intr_item_name_1001", + "undefined": "收集{1}个可以招募保,或用于保的进阶", + "type": 3, + "sort": 3, + "colour": 2, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_1001", + "describe": "intr_item_describe_1001", + "num": 20, + "hero": 1001, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "1002": { + "id": 1002, + "name": "intr_item_name_1002", + "undefined": "收集{1}个可以招募罗旺,或用于罗旺的进阶", + "type": 3, + "sort": 3, + "colour": 2, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_1002", + "describe": "intr_item_describe_1002", + "num": 20, + "hero": 1002, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "2001": { + "id": 2001, + "name": "intr_item_name_2001", + "undefined": "收集{1}个可以招募罗素,或用于罗素的进阶", + "type": 3, + "sort": 3, + "colour": 3, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_2001", + "describe": "intr_item_describe_2001", + "num": 20, + "hero": 2001, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "2002": { + "id": 2002, + "name": "intr_item_name_2002", + "undefined": "收集{1}个可以招募瓦萨普,或用于瓦萨普的进阶", + "type": 3, + "sort": 3, + "colour": 3, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_2002", + "describe": "intr_item_describe_2002", + "num": 20, + "hero": 2002, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "3001": { + "id": 3001, + "name": "intr_item_name_3001", + "undefined": "收集{1}个可以招募吉田,或用于吉田的进阶", + "type": 3, + "sort": 3, + "colour": 4, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_3001", + "describe": "intr_item_describe_3001", + "num": 20, + "hero": 3001, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "3002": { + "id": 3002, + "name": "intr_item_name_3002", + "undefined": "收集{1}个可以招募李卡德,或用于李卡德的进阶", + "type": 3, + "sort": 3, + "colour": 4, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_3002", + "describe": "intr_item_describe_3002", + "num": 20, + "hero": 3002, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "3003": { + "id": 3003, + "name": "intr_item_name_3003", + "undefined": "收集{1}个可以招募查卡,或用于查卡的进阶", + "type": 3, + "sort": 3, + "colour": 4, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_3003", + "describe": "intr_item_describe_3003", + "num": 20, + "hero": 3003, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "3004": { + "id": 3004, + "name": "intr_item_name_3004", + "undefined": "收集{1}个可以招募珍,或用于珍的进阶", + "type": 3, + "sort": 3, + "colour": 4, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_3004", + "describe": "intr_item_describe_3004", + "num": 20, + "hero": 3004, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "3005": { + "id": 3005, + "name": "intr_item_name_3005", + "undefined": "收集{1}个可以招募猫王,或用于猫王的进阶", + "type": 3, + "sort": 3, + "colour": 4, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_3005", + "describe": "intr_item_describe_3005", + "num": 20, + "hero": 3005, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "3006": { + "id": 3006, + "name": "intr_item_name_3006", + "undefined": "收集{1}个可以招募韦伯,或用于韦伯的进阶", + "type": 3, + "sort": 3, + "colour": 4, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_3006", + "describe": "intr_item_describe_3006", + "num": 20, + "hero": 3006, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "3007": { + "id": 3007, + "name": "intr_item_name_3007", + "undefined": "收集{1}个可以招募裴洛基欧,或用于裴洛基欧的进阶", + "type": 3, + "sort": 3, + "colour": 4, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_3007", + "describe": "intr_item_describe_3007", + "num": 20, + "hero": 3007, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "3008": { + "id": 3008, + "name": "intr_item_name_3008", + "undefined": "收集{1}个可以招募罗尼,或用于罗尼的进阶", + "type": 3, + "sort": 3, + "colour": 4, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_3008", + "describe": "intr_item_describe_3008", + "num": 20, + "hero": 3008, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "3009": { + "id": 3009, + "name": "intr_item_name_3009", + "undefined": "收集{1}个可以招募阿布莱格,或用于阿布莱格的进阶", + "type": 3, + "sort": 3, + "colour": 4, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_3009", + "describe": "intr_item_describe_3009", + "num": 20, + "hero": 3009, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "3010": { + "id": 3010, + "name": "intr_item_name_3010", + "undefined": "收集{1}个可以招募彪,或用于彪的进阶", + "type": 3, + "sort": 3, + "colour": 4, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_3010", + "describe": "intr_item_describe_3010", + "num": 20, + "hero": 3010, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "3011": { + "id": 3011, + "name": "intr_item_name_3011", + "undefined": "收集{1}个可以招募雷卡基,或用于雷卡基的进阶", + "type": 3, + "sort": 3, + "colour": 4, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_3011", + "describe": "intr_item_describe_3011", + "num": 20, + "hero": 3011, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "3012": { + "id": 3012, + "name": "intr_item_name_3012", + "undefined": "收集{1}个可以招募布利茨,或用于布利茨的进阶", + "type": 3, + "sort": 3, + "colour": 4, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_3012", + "describe": "intr_item_describe_3012", + "num": 20, + "hero": 3012, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "3013": { + "id": 3013, + "name": "intr_item_name_3013", + "undefined": "收集{1}个可以招募卡克斯顿,或用于卡克斯顿的进阶", + "type": 3, + "sort": 3, + "colour": 4, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_3013", + "describe": "intr_item_describe_3013", + "num": 20, + "hero": 3013, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "3014": { + "id": 3014, + "name": "intr_item_name_3014", + "undefined": "收集{1}个可以招募陈,或用于陈的进阶", + "type": 3, + "sort": 3, + "colour": 4, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_3014", + "describe": "intr_item_describe_3014", + "num": 20, + "hero": 3014, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "3015": { + "id": 3015, + "name": "intr_item_name_3015", + "undefined": "收集{1}个可以招募贝尼,或用于贝尼的进阶", + "type": 3, + "sort": 3, + "colour": 4, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_3015", + "describe": "intr_item_describe_3015", + "num": 20, + "hero": 3015, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "4001": { + "id": 4001, + "name": "intr_item_name_4001", + "undefined": "收集{1}个可以招募吉田,或用于吉田的进阶", + "type": 3, + "sort": 3, + "colour": 5, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_4001", + "describe": "intr_item_describe_4001", + "num": 20, + "hero": 4001, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "4002": { + "id": 4002, + "name": "intr_item_name_4002", + "undefined": "收集{1}个可以招募达奇,或用于达奇的进阶", + "type": 3, + "sort": 3, + "colour": 5, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_4002", + "describe": "intr_item_describe_4002", + "num": 20, + "hero": 4002, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "4003": { + "id": 4003, + "name": "intr_item_name_4003", + "undefined": "收集{1}个可以招募军曹,或用于军曹的进阶", + "type": 3, + "sort": 3, + "colour": 5, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_4003", + "describe": "intr_item_describe_4003", + "num": 20, + "hero": 4003, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "4004": { + "id": 4004, + "name": "intr_item_name_4004", + "undefined": "收集{1}个可以招募尤兰达,或用于尤兰达的进阶", + "type": 3, + "sort": 3, + "colour": 5, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_4004", + "describe": "intr_item_describe_4004", + "num": 20, + "hero": 4004, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "4005": { + "id": 4005, + "name": "intr_item_name_4005", + "undefined": "收集{1}个可以招募艾达,或用于艾达的进阶", + "type": 3, + "sort": 3, + "colour": 5, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_4005", + "describe": "intr_item_describe_4005", + "num": 20, + "hero": 4005, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "4006": { + "id": 4006, + "name": "intr_item_name_4006", + "undefined": "收集{1}个可以招募仙鹤,或用于仙鹤的进阶", + "type": 3, + "sort": 3, + "colour": 5, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_4006", + "describe": "intr_item_describe_4006", + "num": 20, + "hero": 4006, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "4007": { + "id": 4007, + "name": "intr_item_name_4007", + "undefined": "收集{1}个可以招募鹫峰雪绪,或用于鹫峰雪绪的进阶", + "type": 3, + "sort": 3, + "colour": 5, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_4007", + "describe": "intr_item_describe_4007", + "num": 20, + "hero": 4007, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "4008": { + "id": 4008, + "name": "intr_item_name_4008", + "undefined": "收集{1}个可以招募坂东次男,或用于坂东次男的进阶", + "type": 3, + "sort": 3, + "colour": 5, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_4008", + "describe": "intr_item_describe_4008", + "num": 20, + "hero": 4008, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "4009": { + "id": 4009, + "name": "intr_item_name_4009", + "undefined": "收集{1}个可以招募竹中正洋,或用于竹中正洋的进阶", + "type": 3, + "sort": 3, + "colour": 5, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_4009", + "describe": "intr_item_describe_4009", + "num": 20, + "hero": 4009, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "4010": { + "id": 4010, + "name": "intr_item_name_4010", + "undefined": "收集{1}个可以招募加尔西亚,或用于加尔西亚的进阶", + "type": 3, + "sort": 3, + "colour": 5, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_4010", + "describe": "intr_item_describe_4010", + "num": 20, + "hero": 4010, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "4011": { + "id": 4011, + "name": "intr_item_name_4011", + "undefined": "收集{1}个可以招募法贝拉,或用于法贝拉的进阶", + "type": 3, + "sort": 3, + "colour": 5, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_4011", + "describe": "intr_item_describe_4011", + "num": 20, + "hero": 4011, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "4012": { + "id": 4012, + "name": "intr_item_name_4012", + "undefined": "收集{1}个可以招募汉塞尔,或用于汉塞尔的进阶", + "type": 3, + "sort": 3, + "colour": 5, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_4012", + "describe": "intr_item_describe_4012", + "num": 20, + "hero": 4012, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "4013": { + "id": 4013, + "name": "intr_item_name_4013", + "undefined": "收集{1}个可以招募葛丽特,或用于葛丽特的进阶", + "type": 3, + "sort": 3, + "colour": 5, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_4013", + "describe": "intr_item_describe_4013", + "num": 20, + "hero": 4013, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "4014": { + "id": 4014, + "name": "intr_item_name_4014", + "undefined": "收集{1}个可以招募索亚,或用于索亚的进阶", + "type": 3, + "sort": 3, + "colour": 5, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_4014", + "describe": "intr_item_describe_4014", + "num": 20, + "hero": 4014, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "4015": { + "id": 4015, + "name": "intr_item_name_4015", + "undefined": "收集{1}个可以招募罗顿,或用于罗顿的进阶", + "type": 3, + "sort": 3, + "colour": 5, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_4015", + "describe": "intr_item_describe_4015", + "num": 20, + "hero": 4015, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "5001": { + "id": 5001, + "name": "intr_item_name_5001", + "undefined": "收集{1}个可以招募莱薇,或用于莱薇的进阶", + "type": 3, + "sort": 3, + "colour": 6, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_5001", + "describe": "intr_item_describe_5001", + "num": 20, + "hero": 5001, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzihong" + }, + "5002": { + "id": 5002, + "name": "intr_item_name_5002", + "undefined": "收集{1}个可以招募巴拉莱卡,或用于巴拉莱卡的进阶", + "type": 3, + "sort": 3, + "colour": 6, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_5002", + "describe": "intr_item_describe_5002", + "num": 20, + "hero": 5002, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzihong" + }, + "5003": { + "id": 5003, + "name": "intr_item_name_5003", + "undefined": "收集{1}个可以招募张维新,或用于张维新的进阶", + "type": 3, + "sort": 3, + "colour": 6, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_5003", + "describe": "intr_item_describe_5003", + "num": 20, + "hero": 5003, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzihong" + }, + "5004": { + "id": 5004, + "name": "intr_item_name_5004", + "undefined": "收集{1}个可以招募罗贝尔特,或用于罗贝尔特的进阶", + "type": 3, + "sort": 3, + "colour": 6, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_5004", + "describe": "intr_item_describe_5004", + "num": 20, + "hero": 5004, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzihong" + }, + "5005": { + "id": 5005, + "name": "intr_item_name_5005", + "undefined": "收集{1}个可以招募松崎银次,或用于松崎银次的进阶", + "type": 3, + "sort": 3, + "colour": 6, + "way": [ + 9 + ], + "go": "", + "icon": "icon_gbsp_5005", + "describe": "intr_item_describe_5005", + "num": 20, + "hero": 5005, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzihong" + }, + "10001": { + "id": 10001, + "name": "intr_item_name_10001", + "undefined": "收集{1}个碎片可以合成棉布头盔", + "type": 4, + "sort": 3, + "colour": 2, + "way": [ + 8 + ], + "go": "", + "icon": "equip_1101", + "sicon": "equip_1101", + "describe": "intr_item_describe_10001", + "num": 20, + "equip": 1001, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "10002": { + "id": 10002, + "name": "intr_item_name_10002", + "undefined": "收集{1}个碎片可以合成皮头盔", + "type": 4, + "sort": 3, + "colour": 3, + "way": [ + 8 + ], + "go": "", + "icon": "equip_1102", + "sicon": "equip_1102", + "describe": "intr_item_describe_10002", + "num": 20, + "equip": 1002, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "10003": { + "id": 10003, + "name": "intr_item_name_10003", + "undefined": "收集{1}个碎片可以合成黑手头盔", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_1103", + "sicon": "equip_1103", + "describe": "intr_item_describe_10003", + "num": 20, + "equip": 1003, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "10004": { + "id": 10004, + "name": "intr_item_name_10004", + "undefined": "收集{1}个碎片可以合成摩托头盔", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_1104", + "sicon": "equip_1104", + "describe": "intr_item_describe_10004", + "num": 20, + "equip": 1004, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "10005": { + "id": 10005, + "name": "intr_item_name_10005", + "undefined": "收集{1}个碎片可以合成奇袭头盔", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_1105", + "sicon": "equip_1105", + "describe": "intr_item_describe_10005", + "num": 20, + "equip": 1005, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "10006": { + "id": 10006, + "name": "intr_item_name_10006", + "undefined": "收集{1}个碎片可以合成防暴头盔", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_1106", + "sicon": "equip_1106", + "describe": "intr_item_describe_10006", + "num": 20, + "equip": 1006, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "10007": { + "id": 10007, + "name": "intr_item_name_10007", + "undefined": "收集{1}个碎片可以合成飞车头盔", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_1107", + "sicon": "equip_1107", + "describe": "intr_item_describe_10007", + "num": 20, + "equip": 1007, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "10008": { + "id": 10008, + "name": "intr_item_name_10008", + "undefined": "收集{1}个碎片可以合成海贼帽", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_1108", + "sicon": "equip_1108", + "describe": "intr_item_describe_10008", + "num": 20, + "equip": 1008, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "10009": { + "id": 10009, + "name": "intr_item_name_10009", + "undefined": "收集{1}个碎片可以合成头目头盔", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_1109", + "sicon": "equip_1109", + "describe": "intr_item_describe_10009", + "num": 20, + "equip": 1009, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "10010": { + "id": 10010, + "name": "intr_item_name_10010", + "undefined": "收集{1}个碎片可以合成夜行帽", + "type": 4, + "sort": 3, + "colour": 5, + "way": [ + 8 + ], + "go": "", + "icon": "equip_1110", + "sicon": "equip_1110", + "describe": "intr_item_describe_10010", + "num": 20, + "equip": 1010, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "20001": { + "id": 20001, + "name": "intr_item_name_20001", + "undefined": "收集{1}个碎片可以合成棉布背心", + "type": 4, + "sort": 3, + "colour": 2, + "way": [ + 8 + ], + "go": "", + "icon": "equip_2101", + "sicon": "equip_2101", + "describe": "intr_item_describe_20001", + "num": 20, + "equip": 2001, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "20002": { + "id": 20002, + "name": "intr_item_name_20002", + "undefined": "收集{1}个碎片可以合成皮背心", + "type": 4, + "sort": 3, + "colour": 3, + "way": [ + 8 + ], + "go": "", + "icon": "equip_2102", + "sicon": "equip_2102", + "describe": "intr_item_describe_20002", + "num": 20, + "equip": 2002, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "20003": { + "id": 20003, + "name": "intr_item_name_20003", + "undefined": "收集{1}个碎片可以合成黑手背心", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_2103", + "sicon": "equip_2103", + "describe": "intr_item_describe_20003", + "num": 20, + "equip": 2003, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "20004": { + "id": 20004, + "name": "intr_item_name_20004", + "undefined": "收集{1}个碎片可以合成摩托背心", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_2104", + "sicon": "equip_2104", + "describe": "intr_item_describe_20004", + "num": 20, + "equip": 2004, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "20005": { + "id": 20005, + "name": "intr_item_name_20005", + "undefined": "收集{1}个碎片可以合成奇袭背心", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_2105", + "sicon": "equip_2105", + "describe": "intr_item_describe_20005", + "num": 20, + "equip": 2005, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "20006": { + "id": 20006, + "name": "intr_item_name_20006", + "undefined": "收集{1}个碎片可以合成防暴背心", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_2106", + "sicon": "equip_2106", + "describe": "intr_item_describe_20006", + "num": 20, + "equip": 2006, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "20007": { + "id": 20007, + "name": "intr_item_name_20007", + "undefined": "收集{1}个碎片可以合成飞车背心", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_2107", + "sicon": "equip_2107", + "describe": "intr_item_describe_20007", + "num": 20, + "equip": 2007, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "20008": { + "id": 20008, + "name": "intr_item_name_20008", + "undefined": "收集{1}个碎片可以合成海贼背心", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_2108", + "sicon": "equip_2108", + "describe": "intr_item_describe_20008", + "num": 20, + "equip": 2008, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "20009": { + "id": 20009, + "name": "intr_item_name_20009", + "undefined": "收集{1}个碎片可以合成头目背心", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_2109", + "sicon": "equip_2109", + "describe": "intr_item_describe_20009", + "num": 20, + "equip": 2009, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "20010": { + "id": 20010, + "name": "intr_item_name_20010", + "undefined": "收集{1}个碎片可以合成夜行背心", + "type": 4, + "sort": 3, + "colour": 5, + "way": [ + 8 + ], + "go": "", + "icon": "equip_2110", + "sicon": "equip_2110", + "describe": "intr_item_describe_20010", + "num": 20, + "equip": 2010, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "30001": { + "id": 30001, + "name": "intr_item_name_30001", + "undefined": "收集{1}个碎片可以合成棉布手套", + "type": 4, + "sort": 3, + "colour": 2, + "way": [ + 8 + ], + "go": "", + "icon": "equip_3101", + "sicon": "equip_3101", + "describe": "intr_item_describe_30001", + "num": 20, + "equip": 3001, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "30002": { + "id": 30002, + "name": "intr_item_name_30002", + "undefined": "收集{1}个碎片可以合成皮手套", + "type": 4, + "sort": 3, + "colour": 3, + "way": [ + 8 + ], + "go": "", + "icon": "equip_3102", + "sicon": "equip_3102", + "describe": "intr_item_describe_30002", + "num": 20, + "equip": 3002, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "30003": { + "id": 30003, + "name": "intr_item_name_30003", + "undefined": "收集{1}个碎片可以合成黑手手套", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_3103", + "sicon": "equip_3103", + "describe": "intr_item_describe_30003", + "num": 20, + "equip": 3003, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "30004": { + "id": 30004, + "name": "intr_item_name_30004", + "undefined": "收集{1}个碎片可以合成摩托手套", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_3104", + "sicon": "equip_3104", + "describe": "intr_item_describe_30004", + "num": 20, + "equip": 3004, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "30005": { + "id": 30005, + "name": "intr_item_name_30005", + "undefined": "收集{1}个碎片可以合成奇袭手套", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_3105", + "sicon": "equip_3105", + "describe": "intr_item_describe_30005", + "num": 20, + "equip": 3005, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "30006": { + "id": 30006, + "name": "intr_item_name_30006", + "undefined": "收集{1}个碎片可以合成防暴手套", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_3106", + "sicon": "equip_3106", + "describe": "intr_item_describe_30006", + "num": 20, + "equip": 3006, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "30007": { + "id": 30007, + "name": "intr_item_name_30007", + "undefined": "收集{1}个碎片可以合成飞车手套", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_3107", + "sicon": "equip_3107", + "describe": "intr_item_describe_30007", + "num": 20, + "equip": 3007, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "30008": { + "id": 30008, + "name": "intr_item_name_30008", + "undefined": "收集{1}个碎片可以合成海贼手套", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_3108", + "sicon": "equip_3108", + "describe": "intr_item_describe_30008", + "num": 20, + "equip": 3008, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "30009": { + "id": 30009, + "name": "intr_item_name_30009", + "undefined": "收集{1}个碎片可以合成头目手套", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_3109", + "sicon": "equip_3109", + "describe": "intr_item_describe_30009", + "num": 20, + "equip": 3009, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "30010": { + "id": 30010, + "name": "intr_item_name_30010", + "undefined": "收集{1}个碎片可以合成夜行手套", + "type": 4, + "sort": 3, + "colour": 5, + "way": [ + 8 + ], + "go": "", + "icon": "equip_3110", + "sicon": "equip_3110", + "describe": "intr_item_describe_30010", + "num": 20, + "equip": 3010, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "40001": { + "id": 40001, + "name": "intr_item_name_40001", + "undefined": "收集{1}个碎片可以合成棉布战靴", + "type": 4, + "sort": 3, + "colour": 2, + "way": [ + 8 + ], + "go": "", + "icon": "equip_4101", + "sicon": "equip_4101", + "describe": "intr_item_describe_40001", + "num": 20, + "equip": 4001, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "40002": { + "id": 40002, + "name": "intr_item_name_40002", + "undefined": "收集{1}个碎片可以合成皮战靴", + "type": 4, + "sort": 3, + "colour": 3, + "way": [ + 8 + ], + "go": "", + "icon": "equip_4102", + "sicon": "equip_4102", + "describe": "intr_item_describe_40002", + "num": 20, + "equip": 4002, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "40003": { + "id": 40003, + "name": "intr_item_name_40003", + "undefined": "收集{1}个碎片可以合成黑手战靴", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_4103", + "sicon": "equip_4103", + "describe": "intr_item_describe_40003", + "num": 20, + "equip": 4003, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "40004": { + "id": 40004, + "name": "intr_item_name_40004", + "undefined": "收集{1}个碎片可以合成摩托战靴", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_4104", + "sicon": "equip_4104", + "describe": "intr_item_describe_40004", + "num": 20, + "equip": 4004, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "40005": { + "id": 40005, + "name": "intr_item_name_40005", + "undefined": "收集{1}个碎片可以合成奇袭战靴", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_4105", + "sicon": "equip_4105", + "describe": "intr_item_describe_40005", + "num": 20, + "equip": 4005, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "40006": { + "id": 40006, + "name": "intr_item_name_40006", + "undefined": "收集{1}个碎片可以合成防暴战靴", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_4106", + "sicon": "equip_4106", + "describe": "intr_item_describe_40006", + "num": 20, + "equip": 4006, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "40007": { + "id": 40007, + "name": "intr_item_name_40007", + "undefined": "收集{1}个碎片可以合成飞车战靴", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_4107", + "sicon": "equip_4107", + "describe": "intr_item_describe_40007", + "num": 20, + "equip": 4007, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "40008": { + "id": 40008, + "name": "intr_item_name_40008", + "undefined": "收集{1}个碎片可以合成海贼战靴", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_4108", + "sicon": "equip_4108", + "describe": "intr_item_describe_40008", + "num": 20, + "equip": 4008, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "40009": { + "id": 40009, + "name": "intr_item_name_40009", + "undefined": "收集{1}个碎片可以合成头目战靴", + "type": 4, + "sort": 3, + "colour": 4, + "way": [ + 8 + ], + "go": "", + "icon": "equip_4109", + "sicon": "equip_4109", + "describe": "intr_item_describe_40009", + "num": 20, + "equip": 4009, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "40010": { + "id": 40010, + "name": "intr_item_name_40010", + "undefined": "收集{1}个碎片可以合成夜行战靴", + "type": 4, + "sort": 3, + "colour": 5, + "way": [ + 8 + ], + "go": "", + "icon": "equip_4110", + "sicon": "equip_4110", + "describe": "intr_item_describe_40010", + "num": 20, + "equip": 4010, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "50001": { + "id": 50001, + "name": "playerheadFrame_name_3", + "undefined": "使用后解锁头像框“火力覆盖”", + "type": 7, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "txk_019", + "describe": "intr_item_describe_50001", + "diaoluo": 3, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "50002": { + "id": 50002, + "name": "playerheadFrame_name_4", + "undefined": "使用后解锁头像框“双枪”", + "type": 7, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "txk_016", + "describe": "intr_item_describe_50002", + "diaoluo": 4, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "50003": { + "id": 50003, + "name": "playerheadFrame_name_6", + "undefined": "使用后解锁头像框“武装炫耀”", + "type": 7, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "txk_023", + "describe": "intr_item_describe_50003", + "diaoluo": 6, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "50004": { + "id": 50004, + "name": "playerheadFrame_name_7", + "undefined": "使用后解锁头像框“血海”", + "type": 7, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "txk_009", + "describe": "intr_item_describe_50004", + "diaoluo": 7, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "50005": { + "id": 50005, + "name": "playerheadFrame_name_8", + "undefined": "使用后解锁头像框“边界感”", + "type": 7, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "txk_026", + "describe": "intr_item_describe_50005", + "diaoluo": 8, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "50006": { + "id": 50006, + "name": "playerheadFrame_name_9", + "undefined": "使用后解锁头像框“破笼而出”", + "type": 7, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "txk_018", + "describe": "intr_item_describe_50006", + "diaoluo": 9, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "50007": { + "id": 50007, + "name": "playerheadFrame_name_10", + "undefined": "使用后解锁头像框“破土而出”", + "type": 7, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "txk_014", + "describe": "intr_item_describe_50007", + "diaoluo": 10, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "50008": { + "id": 50008, + "name": "playerheadFrame_name_11", + "undefined": "使用后解锁头像框“赠礼”", + "type": 7, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "txk_022", + "describe": "intr_item_describe_50008", + "diaoluo": 11, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "50101": { + "id": 50101, + "name": "playerChatFrame_name_6", + "undefined": "使用后解锁聊天框“冰天雪地”", + "type": 8, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "lt_dhk11", + "describe": "intr_item_describe_50101", + "diaoluo": 6, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "50102": { + "id": 50102, + "name": "playerChatFrame_name_7", + "undefined": "使用后解锁聊天框“海浪奔涌”", + "type": 8, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "lt_dhk10", + "describe": "intr_item_describe_50102", + "diaoluo": 7, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "50103": { + "id": 50103, + "name": "playerheadFrame_name_15", + "undefined": "使用后解锁头像框“名扬四海”", + "type": 7, + "sort": 1, + "colour": 4, + "way": [], + "go": "", + "icon": "txk_020", + "describe": "intr_item_describe_50103", + "diaoluo": 15, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "" + }, + "50201": { + "id": 50201, + "name": "playerheadFrame_name_16", + "type": 7, + "sort": 1, + "colour": 4, + "way": [], + "icon": "txk_017", + "describe": "intr_item_describe_50201", + "diaoluo": 16, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "" + }, + "50202": { + "id": 50202, + "name": "playerheadFrame_name_17", + "type": 7, + "sort": 1, + "colour": 4, + "way": [], + "icon": "txk_011", + "describe": "intr_item_describe_50202", + "diaoluo": 17, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "" + }, + "50203": { + "id": 50203, + "name": "playerheadFrame_name_18", + "type": 7, + "sort": 1, + "colour": 4, + "way": [], + "icon": "txk_005", + "describe": "intr_item_describe_50203", + "diaoluo": 18, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "" + }, + "50204": { + "id": 50204, + "name": "playerheadFrame_name_19", + "type": 7, + "sort": 1, + "colour": 4, + "way": [], + "icon": "txk_004", + "describe": "intr_item_describe_50204", + "diaoluo": 19, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "" + }, + "50205": { + "id": 50205, + "name": "playerheadFrame_name_20", + "type": 7, + "sort": 1, + "colour": 4, + "way": [], + "icon": "txk_024", + "describe": "intr_item_describe_50205", + "diaoluo": 20, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "" + }, + "50206": { + "id": 50206, + "name": "playerheadFrame_name_21", + "type": 7, + "sort": 1, + "colour": 4, + "way": [], + "icon": "txk_013", + "describe": "intr_item_describe_50206", + "diaoluo": 21, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "" + }, + "50207": { + "id": 50207, + "name": "playerheadFrame_name_22", + "type": 7, + "sort": 1, + "colour": 4, + "way": [], + "icon": "txk_021", + "describe": "intr_item_describe_50207", + "diaoluo": 22, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "" + }, + "60101": { + "id": 60101, + "name": "intr_item_name_60101", + "undefined": "车身是车辆的外壳,坚固耐用,在乱战之地,大家都希望最好是防弹的。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 1, + "way": [ + 3 + ], + "go": "", + "icon": "icon_cepenq", + "sicon": "icon_cepenq", + "describe": "intr_item_describe_60101", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60102": { + "id": 60102, + "name": "intr_item_name_60102", + "undefined": "转向可是载具重要的组成部分,用来控制方向。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 1, + "way": [ + 3 + ], + "go": "", + "icon": "icon_fxp", + "sicon": "icon_fxp", + "describe": "intr_item_describe_60102", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60103": { + "id": 60103, + "name": "intr_item_name_60103", + "undefined": "动力模块越好,载具的动力越充足,在逃跑和追赶的时候都非常实用。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 1, + "way": [ + 3 + ], + "go": "", + "icon": "icon_dianji", + "sicon": "icon_dianji", + "describe": "intr_item_describe_60103", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60104": { + "id": 60104, + "name": "intr_item_name_60104", + "undefined": "既然都带武器上载具了,为什么不在载具上多装几个武器呢,一切恐惧都来源于火力不足。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 1, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chedingwq", + "sicon": "icon_chedingwq", + "describe": "intr_item_describe_60104", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60105": { + "id": 60105, + "name": "intr_item_name_60105", + "undefined": "在乱战之地,没有好的防弹轮胎都没有交战资格。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 1, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chel", + "sicon": "icon_chel", + "describe": "intr_item_describe_60105", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60201": { + "id": 60201, + "name": "intr_item_name_60201", + "undefined": "车身是车辆的外壳,坚固耐用,在乱战之地,大家都希望最好是防弹的。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 1, + "way": [ + 3 + ], + "go": "", + "icon": "icon_cepenq", + "sicon": "icon_cepenq", + "describe": "intr_item_describe_60101", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60202": { + "id": 60202, + "name": "intr_item_name_60202", + "undefined": "转向可是载具重要的组成部分,用来控制方向。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 1, + "way": [ + 3 + ], + "go": "", + "icon": "icon_fxp", + "sicon": "icon_fxp", + "describe": "intr_item_describe_60102", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60203": { + "id": 60203, + "name": "intr_item_name_60203", + "undefined": "动力模块越好,载具的动力越充足,在逃跑和追赶的时候都非常实用。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 1, + "way": [ + 3 + ], + "go": "", + "icon": "icon_dianji", + "sicon": "icon_dianji", + "describe": "intr_item_describe_60103", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60204": { + "id": 60204, + "name": "intr_item_name_60204", + "undefined": "既然都带武器上载具了,为什么不在载具上多装几个武器呢,一切恐惧都来源于火力不足。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 1, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chedingwq", + "sicon": "icon_chedingwq", + "describe": "intr_item_describe_60104", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60205": { + "id": 60205, + "name": "intr_item_name_60205", + "undefined": "在乱战之地,没有好的防弹轮胎都没有交战资格。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 1, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chel", + "sicon": "icon_chel", + "describe": "intr_item_describe_60105", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60301": { + "id": 60301, + "name": "intr_item_name_60301", + "undefined": "车身是车辆的外壳,坚固耐用,在乱战之地,大家都希望最好是防弹的。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_cepenq", + "sicon": "icon_cepenq", + "describe": "intr_item_describe_60101", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60302": { + "id": 60302, + "name": "intr_item_name_60302", + "undefined": "转向可是载具重要的组成部分,用来控制方向。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_fxp", + "sicon": "icon_fxp", + "describe": "intr_item_describe_60102", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60303": { + "id": 60303, + "name": "intr_item_name_60303", + "undefined": "动力模块越好,载具的动力越充足,在逃跑和追赶的时候都非常实用。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_dianji", + "sicon": "icon_dianji", + "describe": "intr_item_describe_60103", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60304": { + "id": 60304, + "name": "intr_item_name_60304", + "undefined": "既然都带武器上载具了,为什么不在载具上多装几个武器呢,一切恐惧都来源于火力不足。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chedingwq", + "sicon": "icon_chedingwq", + "describe": "intr_item_describe_60104", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60305": { + "id": 60305, + "name": "intr_item_name_60305", + "undefined": "在乱战之地,没有好的防弹轮胎都没有交战资格。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chel", + "sicon": "icon_chel", + "describe": "intr_item_describe_60105", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60401": { + "id": 60401, + "name": "intr_item_name_60401", + "undefined": "车身是车辆的外壳,坚固耐用,在乱战之地,大家都希望最好是防弹的。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_cepenq", + "sicon": "icon_cepenq", + "describe": "intr_item_describe_60101", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60402": { + "id": 60402, + "name": "intr_item_name_60402", + "undefined": "转向可是载具重要的组成部分,用来控制方向。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_fxp", + "sicon": "icon_fxp", + "describe": "intr_item_describe_60102", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60403": { + "id": 60403, + "name": "intr_item_name_60403", + "undefined": "动力模块越好,载具的动力越充足,在逃跑和追赶的时候都非常实用。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_dianji", + "sicon": "icon_dianji", + "describe": "intr_item_describe_60103", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60404": { + "id": 60404, + "name": "intr_item_name_60404", + "undefined": "既然都带武器上载具了,为什么不在载具上多装几个武器呢,一切恐惧都来源于火力不足。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chedingwq", + "sicon": "icon_chedingwq", + "describe": "intr_item_describe_60104", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60405": { + "id": 60405, + "name": "intr_item_name_60405", + "undefined": "在乱战之地,没有好的防弹轮胎都没有交战资格。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chel", + "sicon": "icon_chel", + "describe": "intr_item_describe_60105", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60501": { + "id": 60501, + "name": "intr_item_name_60501", + "undefined": "车身是车辆的外壳,坚固耐用,在乱战之地,大家都希望最好是防弹的。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_cepenq", + "sicon": "icon_cepenq", + "describe": "intr_item_describe_60101", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60502": { + "id": 60502, + "name": "intr_item_name_60502", + "undefined": "转向可是载具重要的组成部分,用来控制方向。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_fxp", + "sicon": "icon_fxp", + "describe": "intr_item_describe_60102", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60503": { + "id": 60503, + "name": "intr_item_name_60503", + "undefined": "动力模块越好,载具的动力越充足,在逃跑和追赶的时候都非常实用。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_dianji", + "sicon": "icon_dianji", + "describe": "intr_item_describe_60103", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60504": { + "id": 60504, + "name": "intr_item_name_60504", + "undefined": "既然都带武器上载具了,为什么不在载具上多装几个武器呢,一切恐惧都来源于火力不足。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chedingwq", + "sicon": "icon_chedingwq", + "describe": "intr_item_describe_60104", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60505": { + "id": 60505, + "name": "intr_item_name_60505", + "undefined": "在乱战之地,没有好的防弹轮胎都没有交战资格。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chel", + "sicon": "icon_chel", + "describe": "intr_item_describe_60105", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60601": { + "id": 60601, + "name": "intr_item_name_60601", + "undefined": "车身是车辆的外壳,坚固耐用,在乱战之地,大家都希望最好是防弹的。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_cepenq", + "sicon": "icon_cepenq", + "describe": "intr_item_describe_60101", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60602": { + "id": 60602, + "name": "intr_item_name_60602", + "undefined": "转向可是载具重要的组成部分,用来控制方向。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_fxp", + "sicon": "icon_fxp", + "describe": "intr_item_describe_60102", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60603": { + "id": 60603, + "name": "intr_item_name_60603", + "undefined": "动力模块越好,载具的动力越充足,在逃跑和追赶的时候都非常实用。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_dianji", + "sicon": "icon_dianji", + "describe": "intr_item_describe_60103", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60604": { + "id": 60604, + "name": "intr_item_name_60604", + "undefined": "既然都带武器上载具了,为什么不在载具上多装几个武器呢,一切恐惧都来源于火力不足。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chedingwq", + "sicon": "icon_chedingwq", + "describe": "intr_item_describe_60104", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60605": { + "id": 60605, + "name": "intr_item_name_60605", + "undefined": "在乱战之地,没有好的防弹轮胎都没有交战资格。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chel", + "sicon": "icon_chel", + "describe": "intr_item_describe_60105", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60701": { + "id": 60701, + "name": "intr_item_name_60701", + "undefined": "车身是车辆的外壳,坚固耐用,在乱战之地,大家都希望最好是防弹的。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_cepenq", + "sicon": "icon_cepenq", + "describe": "intr_item_describe_60101", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60702": { + "id": 60702, + "name": "intr_item_name_60702", + "undefined": "转向可是载具重要的组成部分,用来控制方向。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_fxp", + "sicon": "icon_fxp", + "describe": "intr_item_describe_60102", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60703": { + "id": 60703, + "name": "intr_item_name_60703", + "undefined": "动力模块越好,载具的动力越充足,在逃跑和追赶的时候都非常实用。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_dianji", + "sicon": "icon_dianji", + "describe": "intr_item_describe_60103", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60704": { + "id": 60704, + "name": "intr_item_name_60704", + "undefined": "既然都带武器上载具了,为什么不在载具上多装几个武器呢,一切恐惧都来源于火力不足。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chedingwq", + "sicon": "icon_chedingwq", + "describe": "intr_item_describe_60104", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60705": { + "id": 60705, + "name": "intr_item_name_60705", + "undefined": "在乱战之地,没有好的防弹轮胎都没有交战资格。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chel", + "sicon": "icon_chel", + "describe": "intr_item_describe_60105", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60801": { + "id": 60801, + "name": "intr_item_name_60801", + "undefined": "车身是车辆的外壳,坚固耐用,在乱战之地,大家都希望最好是防弹的。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_cepenq", + "sicon": "icon_cepenq", + "describe": "intr_item_describe_60101", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60802": { + "id": 60802, + "name": "intr_item_name_60802", + "undefined": "转向可是载具重要的组成部分,用来控制方向。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_fxp", + "sicon": "icon_fxp", + "describe": "intr_item_describe_60102", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60803": { + "id": 60803, + "name": "intr_item_name_60803", + "undefined": "动力模块越好,载具的动力越充足,在逃跑和追赶的时候都非常实用。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_dianji", + "sicon": "icon_dianji", + "describe": "intr_item_describe_60103", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60804": { + "id": 60804, + "name": "intr_item_name_60804", + "undefined": "既然都带武器上载具了,为什么不在载具上多装几个武器呢,一切恐惧都来源于火力不足。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chedingwq", + "sicon": "icon_chedingwq", + "describe": "intr_item_describe_60104", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60805": { + "id": 60805, + "name": "intr_item_name_60805", + "undefined": "在乱战之地,没有好的防弹轮胎都没有交战资格。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chel", + "sicon": "icon_chel", + "describe": "intr_item_describe_60105", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "60901": { + "id": 60901, + "name": "intr_item_name_60901", + "undefined": "车身是车辆的外壳,坚固耐用,在乱战之地,大家都希望最好是防弹的。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_cepenq", + "sicon": "icon_cepenq", + "describe": "intr_item_describe_60101", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "60902": { + "id": 60902, + "name": "intr_item_name_60902", + "undefined": "转向可是载具重要的组成部分,用来控制方向。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_fxp", + "sicon": "icon_fxp", + "describe": "intr_item_describe_60102", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "60903": { + "id": 60903, + "name": "intr_item_name_60903", + "undefined": "动力模块越好,载具的动力越充足,在逃跑和追赶的时候都非常实用。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_dianji", + "sicon": "icon_dianji", + "describe": "intr_item_describe_60103", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "60904": { + "id": 60904, + "name": "intr_item_name_60904", + "undefined": "既然都带武器上载具了,为什么不在载具上多装几个武器呢,一切恐惧都来源于火力不足。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chedingwq", + "sicon": "icon_chedingwq", + "describe": "intr_item_describe_60104", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "60905": { + "id": 60905, + "name": "intr_item_name_60905", + "undefined": "在乱战之地,没有好的防弹轮胎都没有交战资格。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chel", + "sicon": "icon_chel", + "describe": "intr_item_describe_60105", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "61001": { + "id": 61001, + "name": "intr_item_name_61001", + "undefined": "车身是车辆的外壳,坚固耐用,在乱战之地,大家都希望最好是防弹的。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_cepenq", + "sicon": "icon_cepenq", + "describe": "intr_item_describe_60101", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "61002": { + "id": 61002, + "name": "intr_item_name_61002", + "undefined": "转向可是载具重要的组成部分,用来控制方向。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_fxp", + "sicon": "icon_fxp", + "describe": "intr_item_describe_60102", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "61003": { + "id": 61003, + "name": "intr_item_name_61003", + "undefined": "动力模块越好,载具的动力越充足,在逃跑和追赶的时候都非常实用。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_dianji", + "sicon": "icon_dianji", + "describe": "intr_item_describe_60103", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "61004": { + "id": 61004, + "name": "intr_item_name_61004", + "undefined": "既然都带武器上载具了,为什么不在载具上多装几个武器呢,一切恐惧都来源于火力不足。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chedingwq", + "sicon": "icon_chedingwq", + "describe": "intr_item_describe_60104", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "61005": { + "id": 61005, + "name": "intr_item_name_61005", + "undefined": "在乱战之地,没有好的防弹轮胎都没有交战资格。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chel", + "sicon": "icon_chel", + "describe": "intr_item_describe_60105", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "61101": { + "id": 61101, + "name": "intr_item_name_61101", + "undefined": "载具的合金材料决定了它是否能让载具扛得住更强大的火力。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 1, + "way": [ + 3 + ], + "go": "", + "icon": "icon_qianchuangfh", + "sicon": "icon_qianchuangfh", + "describe": "intr_item_describe_61101", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61102": { + "id": 61102, + "name": "intr_item_name_61102", + "undefined": "一切的大型器械都逃不开内部有非常多精修的零部件,而这些走私来的高端零部件则是我们的基础。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 1, + "way": [ + 3 + ], + "go": "", + "icon": "icon_ceweid", + "sicon": "icon_ceweid", + "describe": "intr_item_describe_61102", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61103": { + "id": 61103, + "name": "intr_item_name_61103", + "undefined": "没有好用的工具是没法高效地组装起一台载具的。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 1, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chedengfh", + "sicon": "icon_chedengfh", + "describe": "intr_item_describe_61103", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61104": { + "id": 61104, + "name": "intr_item_name_61104", + "undefined": "齿轮的硬度决定了载具是否能正常顺利运转。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 1, + "way": [ + 3 + ], + "go": "", + "icon": "icon_cheshenzhj", + "sicon": "icon_cheshenzhj", + "describe": "intr_item_describe_61104", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61105": { + "id": 61105, + "name": "intr_item_name_61105", + "undefined": "很多部件不一定精细,但不能没有。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 1, + "way": [ + 3 + ], + "go": "", + "icon": "icon_qianwd", + "sicon": "icon_qianwd", + "describe": "intr_item_describe_61105", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61201": { + "id": 61201, + "name": "intr_item_name_61201", + "undefined": "载具的合金材料决定了它是否能让载具扛得住更强大的火力。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 1, + "way": [ + 3 + ], + "go": "", + "icon": "icon_qianchuangfh", + "sicon": "icon_qianchuangfh", + "describe": "intr_item_describe_61101", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61202": { + "id": 61202, + "name": "intr_item_name_61202", + "undefined": "一切的大型器械都逃不开内部有非常多精修的零部件,而这些走私来的高端零部件则是我们的基础。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 1, + "way": [ + 3 + ], + "go": "", + "icon": "icon_ceweid", + "sicon": "icon_ceweid", + "describe": "intr_item_describe_61102", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61203": { + "id": 61203, + "name": "intr_item_name_61203", + "undefined": "没有好用的工具是没法高效地组装起一台载具的。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 1, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chedengfh", + "sicon": "icon_chedengfh", + "describe": "intr_item_describe_61103", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61204": { + "id": 61204, + "name": "intr_item_name_61204", + "undefined": "齿轮的硬度决定了载具是否能正常顺利运转。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 1, + "way": [ + 3 + ], + "go": "", + "icon": "icon_cheshenzhj", + "sicon": "icon_cheshenzhj", + "describe": "intr_item_describe_61104", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61205": { + "id": 61205, + "name": "intr_item_name_61205", + "undefined": "很多部件不一定精细,但不能没有。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 1, + "way": [ + 3 + ], + "go": "", + "icon": "icon_qianwd", + "sicon": "icon_qianwd", + "describe": "intr_item_describe_61105", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61301": { + "id": 61301, + "name": "intr_item_name_61301", + "undefined": "载具的合金材料决定了它是否能让载具扛得住更强大的火力。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_qianchuangfh", + "sicon": "icon_qianchuangfh", + "describe": "intr_item_describe_61101", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61302": { + "id": 61302, + "name": "intr_item_name_61302", + "undefined": "一切的大型器械都逃不开内部有非常多精修的零部件,而这些走私来的高端零部件则是我们的基础。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_ceweid", + "sicon": "icon_ceweid", + "describe": "intr_item_describe_61102", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61303": { + "id": 61303, + "name": "intr_item_name_61303", + "undefined": "没有好用的工具是没法高效地组装起一台载具的。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chedengfh", + "sicon": "icon_chedengfh", + "describe": "intr_item_describe_61103", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61304": { + "id": 61304, + "name": "intr_item_name_61304", + "undefined": "齿轮的硬度决定了载具是否能正常顺利运转。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_cheshenzhj", + "sicon": "icon_cheshenzhj", + "describe": "intr_item_describe_61104", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61305": { + "id": 61305, + "name": "intr_item_name_61305", + "undefined": "很多部件不一定精细,但不能没有。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_qianwd", + "sicon": "icon_qianwd", + "describe": "intr_item_describe_61105", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61401": { + "id": 61401, + "name": "intr_item_name_61401", + "undefined": "载具的合金材料决定了它是否能让载具扛得住更强大的火力。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_qianchuangfh", + "sicon": "icon_qianchuangfh", + "describe": "intr_item_describe_61101", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61402": { + "id": 61402, + "name": "intr_item_name_61402", + "undefined": "一切的大型器械都逃不开内部有非常多精修的零部件,而这些走私来的高端零部件则是我们的基础。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_ceweid", + "sicon": "icon_ceweid", + "describe": "intr_item_describe_61102", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61403": { + "id": 61403, + "name": "intr_item_name_61403", + "undefined": "没有好用的工具是没法高效地组装起一台载具的。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chedengfh", + "sicon": "icon_chedengfh", + "describe": "intr_item_describe_61103", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61404": { + "id": 61404, + "name": "intr_item_name_61404", + "undefined": "齿轮的硬度决定了载具是否能正常顺利运转。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_cheshenzhj", + "sicon": "icon_cheshenzhj", + "describe": "intr_item_describe_61104", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61405": { + "id": 61405, + "name": "intr_item_name_61405", + "undefined": "很多部件不一定精细,但不能没有。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_qianwd", + "sicon": "icon_qianwd", + "describe": "intr_item_describe_61105", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61501": { + "id": 61501, + "name": "intr_item_name_61501", + "undefined": "载具的合金材料决定了它是否能让载具扛得住更强大的火力。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_qianchuangfh", + "sicon": "icon_qianchuangfh", + "describe": "intr_item_describe_61101", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61502": { + "id": 61502, + "name": "intr_item_name_61502", + "undefined": "一切的大型器械都逃不开内部有非常多精修的零部件,而这些走私来的高端零部件则是我们的基础。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_ceweid", + "sicon": "icon_ceweid", + "describe": "intr_item_describe_61102", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61503": { + "id": 61503, + "name": "intr_item_name_61503", + "undefined": "没有好用的工具是没法高效地组装起一台载具的。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chedengfh", + "sicon": "icon_chedengfh", + "describe": "intr_item_describe_61103", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61504": { + "id": 61504, + "name": "intr_item_name_61504", + "undefined": "齿轮的硬度决定了载具是否能正常顺利运转。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_cheshenzhj", + "sicon": "icon_cheshenzhj", + "describe": "intr_item_describe_61104", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61505": { + "id": 61505, + "name": "intr_item_name_61505", + "undefined": "很多部件不一定精细,但不能没有。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_qianwd", + "sicon": "icon_qianwd", + "describe": "intr_item_describe_61105", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61601": { + "id": 61601, + "name": "intr_item_name_61601", + "undefined": "载具的合金材料决定了它是否能让载具扛得住更强大的火力。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_qianchuangfh", + "sicon": "icon_qianchuangfh", + "describe": "intr_item_describe_61101", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61602": { + "id": 61602, + "name": "intr_item_name_61602", + "undefined": "一切的大型器械都逃不开内部有非常多精修的零部件,而这些走私来的高端零部件则是我们的基础。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_ceweid", + "sicon": "icon_ceweid", + "describe": "intr_item_describe_61102", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61603": { + "id": 61603, + "name": "intr_item_name_61603", + "undefined": "没有好用的工具是没法高效地组装起一台载具的。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chedengfh", + "sicon": "icon_chedengfh", + "describe": "intr_item_describe_61103", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61604": { + "id": 61604, + "name": "intr_item_name_61604", + "undefined": "齿轮的硬度决定了载具是否能正常顺利运转。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_cheshenzhj", + "sicon": "icon_cheshenzhj", + "describe": "intr_item_describe_61104", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61605": { + "id": 61605, + "name": "intr_item_name_61605", + "undefined": "很多部件不一定精细,但不能没有。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_qianwd", + "sicon": "icon_qianwd", + "describe": "intr_item_describe_61105", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61701": { + "id": 61701, + "name": "intr_item_name_61701", + "undefined": "载具的合金材料决定了它是否能让载具扛得住更强大的火力。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_qianchuangfh", + "sicon": "icon_qianchuangfh", + "describe": "intr_item_describe_61101", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61702": { + "id": 61702, + "name": "intr_item_name_61702", + "undefined": "一切的大型器械都逃不开内部有非常多精修的零部件,而这些走私来的高端零部件则是我们的基础。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_ceweid", + "sicon": "icon_ceweid", + "describe": "intr_item_describe_61102", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61703": { + "id": 61703, + "name": "intr_item_name_61703", + "undefined": "没有好用的工具是没法高效地组装起一台载具的。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chedengfh", + "sicon": "icon_chedengfh", + "describe": "intr_item_describe_61103", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61704": { + "id": 61704, + "name": "intr_item_name_61704", + "undefined": "齿轮的硬度决定了载具是否能正常顺利运转。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_cheshenzhj", + "sicon": "icon_cheshenzhj", + "describe": "intr_item_describe_61104", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61705": { + "id": 61705, + "name": "intr_item_name_61705", + "undefined": "很多部件不一定精细,但不能没有。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_qianwd", + "sicon": "icon_qianwd", + "describe": "intr_item_describe_61105", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61801": { + "id": 61801, + "name": "intr_item_name_61801", + "undefined": "载具的合金材料决定了它是否能让载具扛得住更强大的火力。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_qianchuangfh", + "sicon": "icon_qianchuangfh", + "describe": "intr_item_describe_61101", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61802": { + "id": 61802, + "name": "intr_item_name_61802", + "undefined": "一切的大型器械都逃不开内部有非常多精修的零部件,而这些走私来的高端零部件则是我们的基础。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_ceweid", + "sicon": "icon_ceweid", + "describe": "intr_item_describe_61102", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61803": { + "id": 61803, + "name": "intr_item_name_61803", + "undefined": "没有好用的工具是没法高效地组装起一台载具的。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chedengfh", + "sicon": "icon_chedengfh", + "describe": "intr_item_describe_61103", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61804": { + "id": 61804, + "name": "intr_item_name_61804", + "undefined": "齿轮的硬度决定了载具是否能正常顺利运转。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_cheshenzhj", + "sicon": "icon_cheshenzhj", + "describe": "intr_item_describe_61104", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61805": { + "id": 61805, + "name": "intr_item_name_61805", + "undefined": "很多部件不一定精细,但不能没有。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_qianwd", + "sicon": "icon_qianwd", + "describe": "intr_item_describe_61105", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "61901": { + "id": 61901, + "name": "intr_item_name_61901", + "undefined": "载具的合金材料决定了它是否能让载具扛得住更强大的火力。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_qianchuangfh", + "sicon": "icon_qianchuangfh", + "describe": "intr_item_describe_61101", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "61902": { + "id": 61902, + "name": "intr_item_name_61902", + "undefined": "一切的大型器械都逃不开内部有非常多精修的零部件,而这些走私来的高端零部件则是我们的基础。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_ceweid", + "sicon": "icon_ceweid", + "describe": "intr_item_describe_61102", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "61903": { + "id": 61903, + "name": "intr_item_name_61903", + "undefined": "没有好用的工具是没法高效地组装起一台载具的。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chedengfh", + "sicon": "icon_chedengfh", + "describe": "intr_item_describe_61103", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "61904": { + "id": 61904, + "name": "intr_item_name_61904", + "undefined": "齿轮的硬度决定了载具是否能正常顺利运转。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_cheshenzhj", + "sicon": "icon_cheshenzhj", + "describe": "intr_item_describe_61104", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "61905": { + "id": 61905, + "name": "intr_item_name_61905", + "undefined": "很多部件不一定精细,但不能没有。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_qianwd", + "sicon": "icon_qianwd", + "describe": "intr_item_describe_61105", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "62001": { + "id": 62001, + "name": "intr_item_name_62001", + "undefined": "载具的合金材料决定了它是否能让载具扛得住更强大的火力。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_qianchuangfh", + "sicon": "icon_qianchuangfh", + "describe": "intr_item_describe_61101", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "62002": { + "id": 62002, + "name": "intr_item_name_62002", + "undefined": "一切的大型器械都逃不开内部有非常多精修的零部件,而这些走私来的高端零部件则是我们的基础。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_ceweid", + "sicon": "icon_ceweid", + "describe": "intr_item_describe_61102", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "62003": { + "id": 62003, + "name": "intr_item_name_62003", + "undefined": "没有好用的工具是没法高效地组装起一台载具的。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_chedengfh", + "sicon": "icon_chedengfh", + "describe": "intr_item_describe_61103", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "62004": { + "id": 62004, + "name": "intr_item_name_62004", + "undefined": "齿轮的硬度决定了载具是否能正常顺利运转。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_cheshenzhj", + "sicon": "icon_cheshenzhj", + "describe": "intr_item_describe_61104", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "62005": { + "id": 62005, + "name": "intr_item_name_62005", + "undefined": "很多部件不一定精细,但不能没有。可以在维修厂合成进阶。", + "type": 1, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_qianwd", + "sicon": "icon_qianwd", + "describe": "intr_item_describe_61105", + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "70001": { + "id": 70001, + "name": "intr_item_name_70001", + "undefined": "打开后随机获得1件25级橙色饰品", + "type": 2, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_4", + "sicon": "icon_swBox_4", + "describe": "intr_item_describe_70001", + "diaoluo": 20001, + "lv": 25, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "70002": { + "id": 70002, + "name": "intr_item_name_70002", + "undefined": "打开后随机获得1件30级橙色饰品", + "type": 2, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_4", + "sicon": "icon_swBox_4", + "describe": "intr_item_describe_70002", + "diaoluo": 20002, + "lv": 30, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "70003": { + "id": 70003, + "name": "intr_item_name_70003", + "undefined": "打开后随机获得1件35级橙色饰品", + "type": 2, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_4", + "sicon": "icon_swBox_4", + "describe": "intr_item_describe_70003", + "diaoluo": 20003, + "lv": 35, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "70004": { + "id": 70004, + "name": "intr_item_name_70004", + "undefined": "打开后随机获得1件40级橙色饰品", + "type": 2, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_4", + "sicon": "icon_swBox_4", + "describe": "intr_item_describe_70004", + "diaoluo": 20004, + "lv": 40, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "70005": { + "id": 70005, + "name": "intr_item_name_70005", + "undefined": "打开后随机获得1件45级橙色饰品", + "type": 2, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_4", + "sicon": "icon_swBox_4", + "describe": "intr_item_describe_70005", + "diaoluo": 20005, + "lv": 45, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "70006": { + "id": 70006, + "name": "intr_item_name_70006", + "undefined": "打开后随机获得1件50级橙色饰品", + "type": 2, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_4", + "sicon": "icon_swBox_4", + "describe": "intr_item_describe_70006", + "diaoluo": 20006, + "lv": 50, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "70007": { + "id": 70007, + "name": "intr_item_name_70007", + "undefined": "打开后随机获得1件55级橙色饰品", + "type": 2, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_4", + "sicon": "icon_swBox_4", + "describe": "intr_item_describe_70007", + "diaoluo": 20007, + "lv": 55, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "70008": { + "id": 70008, + "name": "intr_item_name_70008", + "undefined": "打开后随机获得1件60级橙色饰品", + "type": 2, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_4", + "sicon": "icon_swBox_4", + "describe": "intr_item_describe_70008", + "diaoluo": 20008, + "lv": 60, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "70009": { + "id": 70009, + "name": "intr_item_name_70009", + "undefined": "打开后随机获得1件65级橙色饰品", + "type": 2, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_4", + "sicon": "icon_swBox_4", + "describe": "intr_item_describe_70009", + "diaoluo": 20009, + "lv": 65, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "70010": { + "id": 70010, + "name": "intr_item_name_70010", + "undefined": "打开后随机获得1件70级橙色饰品", + "type": 2, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_4", + "sicon": "icon_swBox_4", + "describe": "intr_item_describe_70010", + "diaoluo": 20010, + "lv": 70, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "70011": { + "id": 70011, + "name": "intr_item_name_70011", + "undefined": "打开后随机获得1件75级橙色饰品", + "type": 2, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_4", + "sicon": "icon_swBox_4", + "describe": "intr_item_describe_70011", + "diaoluo": 20011, + "lv": 75, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "70012": { + "id": 70012, + "name": "intr_item_name_70012", + "undefined": "打开后随机获得1件80级橙色饰品", + "type": 2, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_4", + "sicon": "icon_swBox_4", + "describe": "intr_item_describe_70012", + "diaoluo": 20012, + "lv": 80, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "70013": { + "id": 70013, + "name": "intr_item_name_70013", + "undefined": "打开后随机获得1件85级橙色饰品", + "type": 2, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_4", + "sicon": "icon_swBox_4", + "describe": "intr_item_describe_70013", + "diaoluo": 20013, + "lv": 85, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "70014": { + "id": 70014, + "name": "intr_item_name_70014", + "undefined": "打开后随机获得1件90级橙色饰品", + "type": 2, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_4", + "sicon": "icon_swBox_4", + "describe": "intr_item_describe_70014", + "diaoluo": 20014, + "lv": 90, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "70015": { + "id": 70015, + "name": "intr_item_name_70015", + "undefined": "打开后随机获得1件95级橙色饰品", + "type": 2, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_4", + "sicon": "icon_swBox_4", + "describe": "intr_item_describe_70015", + "diaoluo": 20015, + "lv": 95, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "70016": { + "id": 70016, + "name": "intr_item_name_70016", + "undefined": "打开后随机获得1件100级橙色饰品", + "type": 2, + "sort": 1, + "colour": 5, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_4", + "sicon": "icon_swBox_4", + "describe": "intr_item_describe_70016", + "diaoluo": 20016, + "lv": 100, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "ani_xiangzikuang" + }, + "70017": { + "id": 70017, + "name": "intr_item_name_70017", + "undefined": "打开后获得随机1件25级紫色饰品", + "type": 2, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_3", + "sicon": "icon_swBox_3", + "describe": "intr_item_describe_70017", + "diaoluo": 20001, + "lv": 25, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70018": { + "id": 70018, + "name": "intr_item_name_70018", + "undefined": "打开后获得随机1件30级紫色饰品", + "type": 2, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_3", + "sicon": "icon_swBox_3", + "describe": "intr_item_describe_70018", + "diaoluo": 20002, + "lv": 30, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70019": { + "id": 70019, + "name": "intr_item_name_70019", + "undefined": "打开后获得随机1件35级紫色饰品", + "type": 2, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_3", + "sicon": "icon_swBox_3", + "describe": "intr_item_describe_70019", + "diaoluo": 20003, + "lv": 35, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70020": { + "id": 70020, + "name": "intr_item_name_70020", + "undefined": "打开后获得随机1件40级紫色饰品", + "type": 2, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_3", + "sicon": "icon_swBox_3", + "describe": "intr_item_describe_70020", + "diaoluo": 20004, + "lv": 40, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70021": { + "id": 70021, + "name": "intr_item_name_70021", + "undefined": "打开后获得随机1件45级紫色饰品", + "type": 2, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_3", + "sicon": "icon_swBox_3", + "describe": "intr_item_describe_70021", + "diaoluo": 20005, + "lv": 45, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70022": { + "id": 70022, + "name": "intr_item_name_70022", + "undefined": "打开后获得随机1件50级紫色饰品", + "type": 2, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_3", + "sicon": "icon_swBox_3", + "describe": "intr_item_describe_70022", + "diaoluo": 20006, + "lv": 50, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70023": { + "id": 70023, + "name": "intr_item_name_70023", + "undefined": "打开后获得随机1件55级紫色饰品", + "type": 2, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_3", + "sicon": "icon_swBox_3", + "describe": "intr_item_describe_70023", + "diaoluo": 20007, + "lv": 55, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70024": { + "id": 70024, + "name": "intr_item_name_70024", + "undefined": "打开后获得随机1件60级紫色饰品", + "type": 2, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_3", + "sicon": "icon_swBox_3", + "describe": "intr_item_describe_70024", + "diaoluo": 20008, + "lv": 60, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70025": { + "id": 70025, + "name": "intr_item_name_70025", + "undefined": "打开后获得随机1件65级紫色饰品", + "type": 2, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_3", + "sicon": "icon_swBox_3", + "describe": "intr_item_describe_70025", + "diaoluo": 20009, + "lv": 65, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70026": { + "id": 70026, + "name": "intr_item_name_70026", + "undefined": "打开后获得随机1件70级紫色饰品", + "type": 2, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_3", + "sicon": "icon_swBox_3", + "describe": "intr_item_describe_70026", + "diaoluo": 20010, + "lv": 70, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70027": { + "id": 70027, + "name": "intr_item_name_70027", + "undefined": "打开后获得随机1件75级紫色饰品", + "type": 2, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_3", + "sicon": "icon_swBox_3", + "describe": "intr_item_describe_70027", + "diaoluo": 20011, + "lv": 75, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70028": { + "id": 70028, + "name": "intr_item_name_70028", + "undefined": "打开后获得随机1件80级紫色饰品", + "type": 2, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_3", + "sicon": "icon_swBox_3", + "describe": "intr_item_describe_70028", + "diaoluo": 20012, + "lv": 80, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70029": { + "id": 70029, + "name": "intr_item_name_70029", + "undefined": "打开后获得随机1件85级紫色饰品", + "type": 2, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_3", + "sicon": "icon_swBox_3", + "describe": "intr_item_describe_70029", + "diaoluo": 20013, + "lv": 85, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70030": { + "id": 70030, + "name": "intr_item_name_70030", + "undefined": "打开后获得随机1件90级紫色饰品", + "type": 2, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_3", + "sicon": "icon_swBox_3", + "describe": "intr_item_describe_70030", + "diaoluo": 20014, + "lv": 90, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70031": { + "id": 70031, + "name": "intr_item_name_70031", + "undefined": "打开后获得随机1件95级紫色饰品", + "type": 2, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_3", + "sicon": "icon_swBox_3", + "describe": "intr_item_describe_70031", + "diaoluo": 20015, + "lv": 95, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70032": { + "id": 70032, + "name": "intr_item_name_70032", + "undefined": "打开后获得随机1件100级紫色饰品", + "type": 2, + "sort": 1, + "colour": 4, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_3", + "sicon": "icon_swBox_3", + "describe": "intr_item_describe_70032", + "diaoluo": 20016, + "lv": 100, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70033": { + "id": 70033, + "name": "intr_item_name_70033", + "undefined": "打开后获得随机1件25级蓝色饰品", + "type": 2, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_2", + "sicon": "icon_swBox_2", + "describe": "intr_item_describe_70033", + "diaoluo": 20001, + "lv": 25, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70034": { + "id": 70034, + "name": "intr_item_name_70034", + "undefined": "打开后获得随机1件30级蓝色饰品", + "type": 2, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_2", + "sicon": "icon_swBox_2", + "describe": "intr_item_describe_70034", + "diaoluo": 20002, + "lv": 30, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70035": { + "id": 70035, + "name": "intr_item_name_70035", + "undefined": "打开后获得随机1件35级蓝色饰品", + "type": 2, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_2", + "sicon": "icon_swBox_2", + "describe": "intr_item_describe_70035", + "diaoluo": 20003, + "lv": 35, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70036": { + "id": 70036, + "name": "intr_item_name_70036", + "undefined": "打开后获得随机1件40级蓝色饰品", + "type": 2, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_2", + "sicon": "icon_swBox_2", + "describe": "intr_item_describe_70036", + "diaoluo": 20004, + "lv": 40, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70037": { + "id": 70037, + "name": "intr_item_name_70037", + "undefined": "打开后获得随机1件45级蓝色饰品", + "type": 2, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_2", + "sicon": "icon_swBox_2", + "describe": "intr_item_describe_70037", + "diaoluo": 20005, + "lv": 45, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70038": { + "id": 70038, + "name": "intr_item_name_70038", + "undefined": "打开后获得随机1件50级蓝色饰品", + "type": 2, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_2", + "sicon": "icon_swBox_2", + "describe": "intr_item_describe_70038", + "diaoluo": 20006, + "lv": 50, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70039": { + "id": 70039, + "name": "intr_item_name_70039", + "undefined": "打开后获得随机1件55级蓝色饰品", + "type": 2, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_2", + "sicon": "icon_swBox_2", + "describe": "intr_item_describe_70039", + "diaoluo": 20007, + "lv": 55, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70040": { + "id": 70040, + "name": "intr_item_name_70040", + "undefined": "打开后获得随机1件60级蓝色饰品", + "type": 2, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_2", + "sicon": "icon_swBox_2", + "describe": "intr_item_describe_70040", + "diaoluo": 20008, + "lv": 60, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70041": { + "id": 70041, + "name": "intr_item_name_70041", + "undefined": "打开后获得随机1件65级蓝色饰品", + "type": 2, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_2", + "sicon": "icon_swBox_2", + "describe": "intr_item_describe_70041", + "diaoluo": 20009, + "lv": 65, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70042": { + "id": 70042, + "name": "intr_item_name_70042", + "undefined": "打开后获得随机1件70级蓝色饰品", + "type": 2, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_2", + "sicon": "icon_swBox_2", + "describe": "intr_item_describe_70042", + "diaoluo": 20010, + "lv": 70, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70043": { + "id": 70043, + "name": "intr_item_name_70043", + "undefined": "打开后获得随机1件75级蓝色饰品", + "type": 2, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_2", + "sicon": "icon_swBox_2", + "describe": "intr_item_describe_70043", + "diaoluo": 20011, + "lv": 75, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70044": { + "id": 70044, + "name": "intr_item_name_70044", + "undefined": "打开后获得随机1件80级蓝色饰品", + "type": 2, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_2", + "sicon": "icon_swBox_2", + "describe": "intr_item_describe_70044", + "diaoluo": 20012, + "lv": 80, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70045": { + "id": 70045, + "name": "intr_item_name_70045", + "undefined": "打开后获得随机1件85级蓝色饰品", + "type": 2, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_2", + "sicon": "icon_swBox_2", + "describe": "intr_item_describe_70045", + "diaoluo": 20013, + "lv": 85, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70046": { + "id": 70046, + "name": "intr_item_name_70046", + "undefined": "打开后获得随机1件90级蓝色饰品", + "type": 2, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_2", + "sicon": "icon_swBox_2", + "describe": "intr_item_describe_70046", + "diaoluo": 20014, + "lv": 90, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70047": { + "id": 70047, + "name": "intr_item_name_70047", + "undefined": "打开后获得随机1件95级蓝色饰品", + "type": 2, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_2", + "sicon": "icon_swBox_2", + "describe": "intr_item_describe_70047", + "diaoluo": 20015, + "lv": 95, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70048": { + "id": 70048, + "name": "intr_item_name_70048", + "undefined": "打开后获得随机1件100级蓝色饰品", + "type": 2, + "sort": 1, + "colour": 3, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_2", + "sicon": "icon_swBox_2", + "describe": "intr_item_describe_70048", + "diaoluo": 20016, + "lv": 100, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70049": { + "id": 70049, + "name": "intr_item_name_70049", + "undefined": "打开后获得随机1件25级绿色饰品", + "type": 2, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_1", + "sicon": "icon_swBox_1", + "describe": "intr_item_describe_70049", + "diaoluo": 20001, + "lv": 25, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70050": { + "id": 70050, + "name": "intr_item_name_70050", + "undefined": "打开后获得随机1件30级绿色饰品", + "type": 2, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_1", + "sicon": "icon_swBox_1", + "describe": "intr_item_describe_70050", + "diaoluo": 20002, + "lv": 30, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70051": { + "id": 70051, + "name": "intr_item_name_70051", + "undefined": "打开后获得随机1件35级绿色饰品", + "type": 2, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_1", + "sicon": "icon_swBox_1", + "describe": "intr_item_describe_70051", + "diaoluo": 20003, + "lv": 35, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70052": { + "id": 70052, + "name": "intr_item_name_70052", + "undefined": "打开后获得随机1件40级绿色饰品", + "type": 2, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_1", + "sicon": "icon_swBox_1", + "describe": "intr_item_describe_70052", + "diaoluo": 20004, + "lv": 40, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70053": { + "id": 70053, + "name": "intr_item_name_70053", + "undefined": "打开后获得随机1件45级绿色饰品", + "type": 2, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_1", + "sicon": "icon_swBox_1", + "describe": "intr_item_describe_70053", + "diaoluo": 20005, + "lv": 45, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70054": { + "id": 70054, + "name": "intr_item_name_70054", + "undefined": "打开后获得随机1件50级绿色饰品", + "type": 2, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_1", + "sicon": "icon_swBox_1", + "describe": "intr_item_describe_70054", + "diaoluo": 20006, + "lv": 50, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70055": { + "id": 70055, + "name": "intr_item_name_70055", + "undefined": "打开后获得随机1件55级绿色饰品", + "type": 2, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_1", + "sicon": "icon_swBox_1", + "describe": "intr_item_describe_70055", + "diaoluo": 20007, + "lv": 55, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70056": { + "id": 70056, + "name": "intr_item_name_70056", + "undefined": "打开后获得随机1件60级绿色饰品", + "type": 2, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_1", + "sicon": "icon_swBox_1", + "describe": "intr_item_describe_70056", + "diaoluo": 20008, + "lv": 60, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70057": { + "id": 70057, + "name": "intr_item_name_70057", + "undefined": "打开后获得随机1件65级绿色饰品", + "type": 2, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_1", + "sicon": "icon_swBox_1", + "describe": "intr_item_describe_70057", + "diaoluo": 20009, + "lv": 65, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70058": { + "id": 70058, + "name": "intr_item_name_70058", + "undefined": "打开后获得随机1件70级绿色饰品", + "type": 2, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_1", + "sicon": "icon_swBox_1", + "describe": "intr_item_describe_70058", + "diaoluo": 20010, + "lv": 70, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70059": { + "id": 70059, + "name": "intr_item_name_70059", + "undefined": "打开后获得随机1件75级绿色饰品", + "type": 2, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_1", + "sicon": "icon_swBox_1", + "describe": "intr_item_describe_70059", + "diaoluo": 20011, + "lv": 75, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70060": { + "id": 70060, + "name": "intr_item_name_70060", + "undefined": "打开后获得随机1件80级绿色饰品", + "type": 2, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_1", + "sicon": "icon_swBox_1", + "describe": "intr_item_describe_70060", + "diaoluo": 20012, + "lv": 80, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70061": { + "id": 70061, + "name": "intr_item_name_70061", + "undefined": "打开后获得随机1件85级绿色饰品", + "type": 2, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_1", + "sicon": "icon_swBox_1", + "describe": "intr_item_describe_70061", + "diaoluo": 20013, + "lv": 85, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70062": { + "id": 70062, + "name": "intr_item_name_70062", + "undefined": "打开后获得随机1件90级绿色饰品", + "type": 2, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_1", + "sicon": "icon_swBox_1", + "describe": "intr_item_describe_70062", + "diaoluo": 20014, + "lv": 90, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70063": { + "id": 70063, + "name": "intr_item_name_70063", + "undefined": "打开后获得随机1件95级绿色饰品", + "type": 2, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_1", + "sicon": "icon_swBox_1", + "describe": "intr_item_describe_70063", + "diaoluo": 20015, + "lv": 95, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + }, + "70064": { + "id": 70064, + "name": "intr_item_name_70064", + "undefined": "打开后获得随机1件100级绿色饰品", + "type": 2, + "sort": 1, + "colour": 2, + "way": [ + 3 + ], + "go": "", + "icon": "icon_swBox_1", + "sicon": "icon_swBox_1", + "describe": "intr_item_describe_70064", + "diaoluo": 20016, + "lv": 100, + "useNeed": [], + "usePrize": [], + "selecPrize": [], + "payId": "", + "advancedEffects": "" + } +} \ No newline at end of file diff --git a/src/json/jierihuodong.json5 b/src/json/jierihuodong.json5 new file mode 100644 index 0000000..946804b --- /dev/null +++ b/src/json/jierihuodong.json5 @@ -0,0 +1,25 @@ +{ + //登陆福利 + denglufuli: [ + { total: 2, prize: [{a: 'attr', t: 'jinbi', n: 20000},{a: 'item', t: '1', n: 40000},{a: 'item', t: '12', n: 200}] }, + { total: 3, prize: [{a: 'attr', t: 'jinbi', n: 20000},{a: 'item', t: '1', n: 40000},{a: 'item', t: '12', n: 200}] }, + { total: 4, prize: [{a: 'attr', t: 'jinbi', n: 20000},{a: 'item', t: '1', n: 40000},{a: 'item', t: '12', n: 200}] }, + { total: 5, prize: [{a: 'attr', t: 'jinbi', n: 20000},{a: 'item', t: '1', n: 40000},{a: 'item', t: '12', n: 200}] }, + ], + //活动任务 + huodongrenwu: [ + {idx: 0, taskId: 'use_attr_rmbmoney', total: 300, prize: [{ a: 'item', t: '4', n: 5 }] , decs: 'intr_jierihuodong_1'}, + {idx: 1, taskId: 'tanxian/FastGuaJi', total: 3, prize: [{ a: 'item', t: '4', n: 5 }] , decs: 'intr_jierihuodong_2'}, + {idx: 2, taskId: 'jjc/Fight', total: 3, prize: [{ a: 'item', t: '4', n: 5 }] , decs: 'intr_jierihuodong_3'} + ], + //兑换 + duihuan: [ + { need: [{a: 'attr', t: 'jinbi', n: 200}], prize: [{a: 'item', t: '12', n: 200}], num: 10 }, + { need: [{a: 'attr', t: 'jinbi', n: 400}], prize: [{a: 'item', t: '12', n: 400}], num: 10 } + ], + //礼包 + libao: [ + { need: [{a: 'attr', t: 'jinbi', n: 200}], prize: [{a: 'item', t: '12', n: 200}], num: 10 }, + { need: [{a: 'attr', t: 'jinbi', n: 400}], prize: [{a: 'item', t: '12', n: 400}], num: 10 } + ] +} \ No newline at end of file diff --git a/src/json/jijin.json b/src/json/jijin.json new file mode 100644 index 0000000..bf75bdf --- /dev/null +++ b/src/json/jijin.json @@ -0,0 +1,1200 @@ +{ + "dengjijijin": [ + { + "type": "dengjijijin", + "total": 20, + "pt": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + } + ], + "tq": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1700 + } + ] + }, + { + "type": "dengjijijin", + "total": 25, + "pt": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + } + ], + "tq": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1700 + } + ] + }, + { + "type": "dengjijijin", + "total": 30, + "pt": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + } + ], + "tq": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1700 + } + ] + }, + { + "type": "dengjijijin", + "total": 35, + "pt": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + } + ], + "tq": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1700 + } + ] + }, + { + "type": "dengjijijin", + "total": 40, + "pt": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + } + ], + "tq": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1700 + } + ] + }, + { + "type": "dengjijijin", + "total": 45, + "pt": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + } + ], + "tq": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1700 + } + ] + }, + { + "type": "dengjijijin", + "total": 50, + "pt": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + } + ], + "tq": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1700 + } + ] + }, + { + "type": "dengjijijin", + "total": 55, + "pt": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + } + ], + "tq": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1700 + } + ] + } + ], + "guanqiajijin": [ + { + "type": "guanqiajijin", + "total": 30, + "pt": [], + "tq": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 2000 + } + ], + "des": "guanqiajijin_des_1" + }, + { + "type": "guanqiajijin", + "total": 50, + "pt": [], + "tq": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 2000 + } + ], + "des": "guanqiajijin_des_2" + }, + { + "type": "guanqiajijin", + "total": 70, + "pt": [], + "tq": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 2000 + } + ], + "des": "guanqiajijin_des_3" + }, + { + "type": "guanqiajijin", + "total": 90, + "pt": [], + "tq": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 2000 + } + ], + "des": "guanqiajijin_des_4" + }, + { + "type": "guanqiajijin", + "total": 110, + "pt": [], + "tq": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 2000 + } + ], + "des": "guanqiajijin_des_5" + }, + { + "type": "guanqiajijin", + "total": 150, + "pt": [], + "tq": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 2000 + } + ], + "des": "guanqiajijin_des_6" + }, + { + "type": "guanqiajijin", + "total": 180, + "pt": [], + "tq": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 2000 + } + ], + "des": "guanqiajijin_des_7" + }, + { + "type": "guanqiajijin", + "total": 250, + "pt": [], + "tq": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 2000 + } + ], + "des": "guanqiajijin_des_8" + } + ], + "dayjijin": [ + { + "type": "dayjijin", + "total": 5, + "pt": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "tq": [ + { + "a": "item", + "t": "4", + "n": 5 + } + ] + }, + { + "type": "dayjijin", + "total": 10, + "pt": [ + { + "a": "item", + "t": "2", + "n": 200 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 2000 + } + ] + }, + { + "type": "dayjijin", + "total": 15, + "pt": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "tq": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 888 + } + ] + }, + { + "type": "dayjijin", + "total": 20, + "pt": [ + { + "a": "item", + "t": "2", + "n": 200 + } + ], + "tq": [ + { + "a": "item", + "t": "615", + "n": 1 + } + ] + }, + { + "type": "dayjijin", + "total": 25, + "pt": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "tq": [ + { + "a": "item", + "t": "4", + "n": 5 + } + ] + }, + { + "type": "dayjijin", + "total": 30, + "pt": [ + { + "a": "item", + "t": "2", + "n": 300 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 2000 + } + ] + }, + { + "type": "dayjijin", + "total": 35, + "pt": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "tq": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 888 + } + ] + }, + { + "type": "dayjijin", + "total": 40, + "pt": [ + { + "a": "item", + "t": "2", + "n": 300 + } + ], + "tq": [ + { + "a": "item", + "t": "615", + "n": 1 + } + ] + }, + { + "type": "dayjijin", + "total": 45, + "pt": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "tq": [ + { + "a": "item", + "t": "4", + "n": 5 + } + ] + }, + { + "type": "dayjijin", + "total": 50, + "pt": [ + { + "a": "item", + "t": "2", + "n": 400 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 2000 + } + ] + }, + { + "type": "dayjijin", + "total": 60, + "pt": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "tq": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 888 + } + ] + }, + { + "type": "dayjijin", + "total": 70, + "pt": [ + { + "a": "item", + "t": "2", + "n": 400 + } + ], + "tq": [ + { + "a": "item", + "t": "615", + "n": 1 + } + ] + }, + { + "type": "dayjijin", + "total": 80, + "pt": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "tq": [ + { + "a": "item", + "t": "4", + "n": 5 + } + ] + }, + { + "type": "dayjijin", + "total": 90, + "pt": [ + { + "a": "item", + "t": "2", + "n": 500 + } + ], + "tq": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1888 + } + ] + } + ], + "tianshujijin": [ + { + "type": "tianshujijin", + "total": 1, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 2, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 3, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 4, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 5, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 6, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 7, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 8, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 9, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 10, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 11, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 12, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 13, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 14, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 15, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 16, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 17, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 18, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 19, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 20, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 21, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 22, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 23, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 24, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 25, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 26, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 27, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 28, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 29, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + }, + { + "type": "tianshujijin", + "total": 30, + "pt": [ + { + "a": "item", + "t": "2", + "n": 250 + } + ], + "tq": [ + { + "a": "item", + "t": "2", + "n": 600 + }, + { + "a": "item", + "t": "12", + "n": 500 + } + ] + } + ] +} \ No newline at end of file diff --git a/src/json/jjc_com.json5 b/src/json/jjc_com.json5 new file mode 100644 index 0000000..59de9cd --- /dev/null +++ b/src/json/jjc_com.json5 @@ -0,0 +1,41 @@ +{ + + //每日挑战次数 + fightNum: 5, + //挑战胜利奖励 + fightWinPrize: [{a: 'item', t: '11', n: 40}], + //挑战失败奖励 + fightFailPrize: [{a: 'item', t: '11', n: 20}], + //vip对应的可购买挑战次数 + buyFightNumVip: { + '0': 2, + '1': 2, + '2': 2, + '3': 3, + '4': 4, + '5': 5, + '6': 6, + '7': 7, + '8': 8, + '9': 9, + '10': 10, + '11': 11, + '12': 12, + '13': 14, + '14': 16, + '15': 18, + '16': 22, + '17': 30, + }, + //购买挑战次数消耗 + buyFightNumNeed: [{a: 'attr', t: 'rmbmoney', n: 20},{a: 'attr', t: 'rmbmoney', n: 20},{a: 'attr', t: 'rmbmoney', n: 20},{a: 'attr', t: 'rmbmoney', n: 25},{a: 'attr', t: 'rmbmoney', n: 30},{a: 'attr', t: 'rmbmoney', n: 35},{a: 'attr', t: 'rmbmoney', n: 40},{a: 'attr', t: 'rmbmoney', n: 45},{a: 'attr', t: 'rmbmoney', n: 50},{a: 'attr', t: 'rmbmoney', n: 55},{a: 'attr', t: 'rmbmoney', n: 60},{a: 'attr', t: 'rmbmoney', n: 65},{a: 'attr', t: 'rmbmoney', n: 70},{a: 'attr', t: 'rmbmoney', n: 80},{a: 'attr', t: 'rmbmoney', n: 90},{a: 'attr', t: 'rmbmoney', n: 100},{a: 'attr', t: 'rmbmoney', n: 120},{a: 'attr', t: 'rmbmoney', n: 160}], + //战斗日志最大记录 + fightLogMaxNum: 10, + //排名奖励邮件 + email: { + titel: 'intr_jjc_com_titel_1', + content: 'intr_jjc_com_content_1' + }, + //发奖时间 + sendPrizeTime: ['day', 75600] +} \ No newline at end of file diff --git a/src/json/jjc_npc.json b/src/json/jjc_npc.json new file mode 100644 index 0000000..57902c1 --- /dev/null +++ b/src/json/jjc_npc.json @@ -0,0 +1,8002 @@ +{ + "npc_1": { + "id": "npc_1", + "name": "jjc_npc_name_1", + "npcId": 1001, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_2": { + "id": "npc_2", + "name": "jjc_npc_name_2", + "npcId": 1002, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_3": { + "id": "npc_3", + "name": "jjc_npc_name_3", + "npcId": 1003, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_4": { + "id": "npc_4", + "name": "jjc_npc_name_4", + "npcId": 1004, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_5": { + "id": "npc_5", + "name": "jjc_npc_name_5", + "npcId": 1005, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_6": { + "id": "npc_6", + "name": "jjc_npc_name_6", + "npcId": 1006, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_7": { + "id": "npc_7", + "name": "jjc_npc_name_1", + "npcId": 1007, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_8": { + "id": "npc_8", + "name": "jjc_npc_name_2", + "npcId": 1008, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_9": { + "id": "npc_9", + "name": "jjc_npc_name_3", + "npcId": 1009, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_10": { + "id": "npc_10", + "name": "jjc_npc_name_4", + "npcId": 1010, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_11": { + "id": "npc_11", + "name": "jjc_npc_name_5", + "npcId": 1011, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_12": { + "id": "npc_12", + "name": "jjc_npc_name_6", + "npcId": 1012, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_13": { + "id": "npc_13", + "name": "jjc_npc_name_1", + "npcId": 1013, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_14": { + "id": "npc_14", + "name": "jjc_npc_name_2", + "npcId": 1014, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_15": { + "id": "npc_15", + "name": "jjc_npc_name_3", + "npcId": 1015, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_16": { + "id": "npc_16", + "name": "jjc_npc_name_4", + "npcId": 1016, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_17": { + "id": "npc_17", + "name": "jjc_npc_name_5", + "npcId": 1017, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_18": { + "id": "npc_18", + "name": "jjc_npc_name_6", + "npcId": 1018, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_19": { + "id": "npc_19", + "name": "jjc_npc_name_1", + "npcId": 1019, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_20": { + "id": "npc_20", + "name": "jjc_npc_name_2", + "npcId": 1020, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_21": { + "id": "npc_21", + "name": "jjc_npc_name_3", + "npcId": 1021, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_22": { + "id": "npc_22", + "name": "jjc_npc_name_4", + "npcId": 1022, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_23": { + "id": "npc_23", + "name": "jjc_npc_name_5", + "npcId": 1023, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_24": { + "id": "npc_24", + "name": "jjc_npc_name_6", + "npcId": 1024, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_25": { + "id": "npc_25", + "name": "jjc_npc_name_1", + "npcId": 1025, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_26": { + "id": "npc_26", + "name": "jjc_npc_name_2", + "npcId": 1026, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_27": { + "id": "npc_27", + "name": "jjc_npc_name_3", + "npcId": 1027, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_28": { + "id": "npc_28", + "name": "jjc_npc_name_4", + "npcId": 1028, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_29": { + "id": "npc_29", + "name": "jjc_npc_name_5", + "npcId": 1029, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_30": { + "id": "npc_30", + "name": "jjc_npc_name_6", + "npcId": 1030, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_31": { + "id": "npc_31", + "name": "jjc_npc_name_1", + "npcId": 1031, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_32": { + "id": "npc_32", + "name": "jjc_npc_name_2", + "npcId": 1032, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_33": { + "id": "npc_33", + "name": "jjc_npc_name_3", + "npcId": 1033, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_34": { + "id": "npc_34", + "name": "jjc_npc_name_4", + "npcId": 1034, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_35": { + "id": "npc_35", + "name": "jjc_npc_name_5", + "npcId": 1035, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_36": { + "id": "npc_36", + "name": "jjc_npc_name_6", + "npcId": 1036, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_37": { + "id": "npc_37", + "name": "jjc_npc_name_1", + "npcId": 1037, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_38": { + "id": "npc_38", + "name": "jjc_npc_name_2", + "npcId": 1038, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_39": { + "id": "npc_39", + "name": "jjc_npc_name_3", + "npcId": 1039, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_40": { + "id": "npc_40", + "name": "jjc_npc_name_4", + "npcId": 1040, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_41": { + "id": "npc_41", + "name": "jjc_npc_name_5", + "npcId": 1041, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_42": { + "id": "npc_42", + "name": "jjc_npc_name_6", + "npcId": 1042, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_43": { + "id": "npc_43", + "name": "jjc_npc_name_1", + "npcId": 1043, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_44": { + "id": "npc_44", + "name": "jjc_npc_name_2", + "npcId": 1044, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_45": { + "id": "npc_45", + "name": "jjc_npc_name_3", + "npcId": 1045, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_46": { + "id": "npc_46", + "name": "jjc_npc_name_4", + "npcId": 1046, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_47": { + "id": "npc_47", + "name": "jjc_npc_name_5", + "npcId": 1047, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_48": { + "id": "npc_48", + "name": "jjc_npc_name_6", + "npcId": 1048, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_49": { + "id": "npc_49", + "name": "jjc_npc_name_1", + "npcId": 1049, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_50": { + "id": "npc_50", + "name": "jjc_npc_name_2", + "npcId": 1050, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_51": { + "id": "npc_51", + "name": "jjc_npc_name_3", + "npcId": 1051, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_52": { + "id": "npc_52", + "name": "jjc_npc_name_4", + "npcId": 1052, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_53": { + "id": "npc_53", + "name": "jjc_npc_name_5", + "npcId": 1053, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_54": { + "id": "npc_54", + "name": "jjc_npc_name_6", + "npcId": 1054, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_55": { + "id": "npc_55", + "name": "jjc_npc_name_1", + "npcId": 1055, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_56": { + "id": "npc_56", + "name": "jjc_npc_name_2", + "npcId": 1056, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_57": { + "id": "npc_57", + "name": "jjc_npc_name_3", + "npcId": 1057, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_58": { + "id": "npc_58", + "name": "jjc_npc_name_4", + "npcId": 1058, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_59": { + "id": "npc_59", + "name": "jjc_npc_name_5", + "npcId": 1059, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_60": { + "id": "npc_60", + "name": "jjc_npc_name_6", + "npcId": 1060, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_61": { + "id": "npc_61", + "name": "jjc_npc_name_1", + "npcId": 1061, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_62": { + "id": "npc_62", + "name": "jjc_npc_name_2", + "npcId": 1062, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_63": { + "id": "npc_63", + "name": "jjc_npc_name_3", + "npcId": 1063, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_64": { + "id": "npc_64", + "name": "jjc_npc_name_4", + "npcId": 1064, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_65": { + "id": "npc_65", + "name": "jjc_npc_name_5", + "npcId": 1065, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_66": { + "id": "npc_66", + "name": "jjc_npc_name_6", + "npcId": 1066, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_67": { + "id": "npc_67", + "name": "jjc_npc_name_1", + "npcId": 1067, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_68": { + "id": "npc_68", + "name": "jjc_npc_name_2", + "npcId": 1068, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_69": { + "id": "npc_69", + "name": "jjc_npc_name_3", + "npcId": 1069, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_70": { + "id": "npc_70", + "name": "jjc_npc_name_4", + "npcId": 1070, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_71": { + "id": "npc_71", + "name": "jjc_npc_name_5", + "npcId": 1071, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_72": { + "id": "npc_72", + "name": "jjc_npc_name_6", + "npcId": 1072, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_73": { + "id": "npc_73", + "name": "jjc_npc_name_1", + "npcId": 1073, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_74": { + "id": "npc_74", + "name": "jjc_npc_name_2", + "npcId": 1074, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_75": { + "id": "npc_75", + "name": "jjc_npc_name_3", + "npcId": 1075, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_76": { + "id": "npc_76", + "name": "jjc_npc_name_4", + "npcId": 1076, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_77": { + "id": "npc_77", + "name": "jjc_npc_name_5", + "npcId": 1077, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_78": { + "id": "npc_78", + "name": "jjc_npc_name_6", + "npcId": 1078, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_79": { + "id": "npc_79", + "name": "jjc_npc_name_1", + "npcId": 1079, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_80": { + "id": "npc_80", + "name": "jjc_npc_name_2", + "npcId": 1080, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_81": { + "id": "npc_81", + "name": "jjc_npc_name_3", + "npcId": 1081, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_82": { + "id": "npc_82", + "name": "jjc_npc_name_4", + "npcId": 1082, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_83": { + "id": "npc_83", + "name": "jjc_npc_name_5", + "npcId": 1083, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_84": { + "id": "npc_84", + "name": "jjc_npc_name_6", + "npcId": 1084, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_85": { + "id": "npc_85", + "name": "jjc_npc_name_1", + "npcId": 1085, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_86": { + "id": "npc_86", + "name": "jjc_npc_name_2", + "npcId": 1086, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_87": { + "id": "npc_87", + "name": "jjc_npc_name_3", + "npcId": 1087, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_88": { + "id": "npc_88", + "name": "jjc_npc_name_4", + "npcId": 1088, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_89": { + "id": "npc_89", + "name": "jjc_npc_name_5", + "npcId": 1089, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_90": { + "id": "npc_90", + "name": "jjc_npc_name_6", + "npcId": 1090, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_91": { + "id": "npc_91", + "name": "jjc_npc_name_1", + "npcId": 1091, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_92": { + "id": "npc_92", + "name": "jjc_npc_name_2", + "npcId": 1092, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_93": { + "id": "npc_93", + "name": "jjc_npc_name_3", + "npcId": 1093, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_94": { + "id": "npc_94", + "name": "jjc_npc_name_4", + "npcId": 1094, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_95": { + "id": "npc_95", + "name": "jjc_npc_name_5", + "npcId": 1095, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_96": { + "id": "npc_96", + "name": "jjc_npc_name_6", + "npcId": 1096, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_97": { + "id": "npc_97", + "name": "jjc_npc_name_1", + "npcId": 1097, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_98": { + "id": "npc_98", + "name": "jjc_npc_name_2", + "npcId": 1098, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_99": { + "id": "npc_99", + "name": "jjc_npc_name_3", + "npcId": 1099, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_100": { + "id": "npc_100", + "name": "jjc_npc_name_4", + "npcId": 1100, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_101": { + "id": "npc_101", + "name": "jjc_npc_name_5", + "npcId": 1101, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_102": { + "id": "npc_102", + "name": "jjc_npc_name_6", + "npcId": 1102, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_103": { + "id": "npc_103", + "name": "jjc_npc_name_1", + "npcId": 1103, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_104": { + "id": "npc_104", + "name": "jjc_npc_name_2", + "npcId": 1104, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_105": { + "id": "npc_105", + "name": "jjc_npc_name_3", + "npcId": 1105, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_106": { + "id": "npc_106", + "name": "jjc_npc_name_4", + "npcId": 1106, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_107": { + "id": "npc_107", + "name": "jjc_npc_name_5", + "npcId": 1107, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_108": { + "id": "npc_108", + "name": "jjc_npc_name_6", + "npcId": 1108, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_109": { + "id": "npc_109", + "name": "jjc_npc_name_1", + "npcId": 1109, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_110": { + "id": "npc_110", + "name": "jjc_npc_name_2", + "npcId": 1110, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_111": { + "id": "npc_111", + "name": "jjc_npc_name_3", + "npcId": 1111, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_112": { + "id": "npc_112", + "name": "jjc_npc_name_4", + "npcId": 1112, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_113": { + "id": "npc_113", + "name": "jjc_npc_name_5", + "npcId": 1113, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_114": { + "id": "npc_114", + "name": "jjc_npc_name_6", + "npcId": 1114, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_115": { + "id": "npc_115", + "name": "jjc_npc_name_1", + "npcId": 1115, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_116": { + "id": "npc_116", + "name": "jjc_npc_name_2", + "npcId": 1116, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_117": { + "id": "npc_117", + "name": "jjc_npc_name_3", + "npcId": 1117, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_118": { + "id": "npc_118", + "name": "jjc_npc_name_4", + "npcId": 1118, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_119": { + "id": "npc_119", + "name": "jjc_npc_name_5", + "npcId": 1119, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_120": { + "id": "npc_120", + "name": "jjc_npc_name_6", + "npcId": 1120, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_121": { + "id": "npc_121", + "name": "jjc_npc_name_1", + "npcId": 1121, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_122": { + "id": "npc_122", + "name": "jjc_npc_name_2", + "npcId": 1122, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_123": { + "id": "npc_123", + "name": "jjc_npc_name_3", + "npcId": 1123, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_124": { + "id": "npc_124", + "name": "jjc_npc_name_4", + "npcId": 1124, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_125": { + "id": "npc_125", + "name": "jjc_npc_name_5", + "npcId": 1125, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_126": { + "id": "npc_126", + "name": "jjc_npc_name_6", + "npcId": 1126, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_127": { + "id": "npc_127", + "name": "jjc_npc_name_1", + "npcId": 1127, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_128": { + "id": "npc_128", + "name": "jjc_npc_name_2", + "npcId": 1128, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_129": { + "id": "npc_129", + "name": "jjc_npc_name_3", + "npcId": 1129, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_130": { + "id": "npc_130", + "name": "jjc_npc_name_4", + "npcId": 1130, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_131": { + "id": "npc_131", + "name": "jjc_npc_name_5", + "npcId": 1131, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_132": { + "id": "npc_132", + "name": "jjc_npc_name_6", + "npcId": 1132, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_133": { + "id": "npc_133", + "name": "jjc_npc_name_1", + "npcId": 1133, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_134": { + "id": "npc_134", + "name": "jjc_npc_name_2", + "npcId": 1134, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_135": { + "id": "npc_135", + "name": "jjc_npc_name_3", + "npcId": 1135, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_136": { + "id": "npc_136", + "name": "jjc_npc_name_4", + "npcId": 1136, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_137": { + "id": "npc_137", + "name": "jjc_npc_name_5", + "npcId": 1137, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_138": { + "id": "npc_138", + "name": "jjc_npc_name_6", + "npcId": 1138, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_139": { + "id": "npc_139", + "name": "jjc_npc_name_1", + "npcId": 1139, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_140": { + "id": "npc_140", + "name": "jjc_npc_name_2", + "npcId": 1140, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_141": { + "id": "npc_141", + "name": "jjc_npc_name_3", + "npcId": 1141, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_142": { + "id": "npc_142", + "name": "jjc_npc_name_4", + "npcId": 1142, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_143": { + "id": "npc_143", + "name": "jjc_npc_name_5", + "npcId": 1143, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_144": { + "id": "npc_144", + "name": "jjc_npc_name_6", + "npcId": 1144, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_145": { + "id": "npc_145", + "name": "jjc_npc_name_1", + "npcId": 1145, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_146": { + "id": "npc_146", + "name": "jjc_npc_name_2", + "npcId": 1146, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_147": { + "id": "npc_147", + "name": "jjc_npc_name_3", + "npcId": 1147, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_148": { + "id": "npc_148", + "name": "jjc_npc_name_4", + "npcId": 1148, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_149": { + "id": "npc_149", + "name": "jjc_npc_name_5", + "npcId": 1149, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_150": { + "id": "npc_150", + "name": "jjc_npc_name_6", + "npcId": 1150, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_151": { + "id": "npc_151", + "name": "jjc_npc_name_1", + "npcId": 1151, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_152": { + "id": "npc_152", + "name": "jjc_npc_name_2", + "npcId": 1152, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_153": { + "id": "npc_153", + "name": "jjc_npc_name_3", + "npcId": 1153, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_154": { + "id": "npc_154", + "name": "jjc_npc_name_4", + "npcId": 1154, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_155": { + "id": "npc_155", + "name": "jjc_npc_name_5", + "npcId": 1155, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_156": { + "id": "npc_156", + "name": "jjc_npc_name_6", + "npcId": 1156, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_157": { + "id": "npc_157", + "name": "jjc_npc_name_1", + "npcId": 1157, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_158": { + "id": "npc_158", + "name": "jjc_npc_name_2", + "npcId": 1158, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_159": { + "id": "npc_159", + "name": "jjc_npc_name_3", + "npcId": 1159, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_160": { + "id": "npc_160", + "name": "jjc_npc_name_4", + "npcId": 1160, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_161": { + "id": "npc_161", + "name": "jjc_npc_name_5", + "npcId": 1161, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_162": { + "id": "npc_162", + "name": "jjc_npc_name_6", + "npcId": 1162, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_163": { + "id": "npc_163", + "name": "jjc_npc_name_1", + "npcId": 1163, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_164": { + "id": "npc_164", + "name": "jjc_npc_name_2", + "npcId": 1164, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_165": { + "id": "npc_165", + "name": "jjc_npc_name_3", + "npcId": 1165, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_166": { + "id": "npc_166", + "name": "jjc_npc_name_4", + "npcId": 1166, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_167": { + "id": "npc_167", + "name": "jjc_npc_name_5", + "npcId": 1167, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_168": { + "id": "npc_168", + "name": "jjc_npc_name_6", + "npcId": 1168, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_169": { + "id": "npc_169", + "name": "jjc_npc_name_1", + "npcId": 1169, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_170": { + "id": "npc_170", + "name": "jjc_npc_name_2", + "npcId": 1170, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_171": { + "id": "npc_171", + "name": "jjc_npc_name_3", + "npcId": 1171, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_172": { + "id": "npc_172", + "name": "jjc_npc_name_4", + "npcId": 1172, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_173": { + "id": "npc_173", + "name": "jjc_npc_name_5", + "npcId": 1173, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_174": { + "id": "npc_174", + "name": "jjc_npc_name_6", + "npcId": 1174, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_175": { + "id": "npc_175", + "name": "jjc_npc_name_1", + "npcId": 1175, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_176": { + "id": "npc_176", + "name": "jjc_npc_name_2", + "npcId": 1176, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_177": { + "id": "npc_177", + "name": "jjc_npc_name_3", + "npcId": 1177, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_178": { + "id": "npc_178", + "name": "jjc_npc_name_4", + "npcId": 1178, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_179": { + "id": "npc_179", + "name": "jjc_npc_name_5", + "npcId": 1179, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_180": { + "id": "npc_180", + "name": "jjc_npc_name_6", + "npcId": 1180, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_181": { + "id": "npc_181", + "name": "jjc_npc_name_1", + "npcId": 1181, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_182": { + "id": "npc_182", + "name": "jjc_npc_name_2", + "npcId": 1182, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_183": { + "id": "npc_183", + "name": "jjc_npc_name_3", + "npcId": 1183, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_184": { + "id": "npc_184", + "name": "jjc_npc_name_4", + "npcId": 1184, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_185": { + "id": "npc_185", + "name": "jjc_npc_name_5", + "npcId": 1185, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_186": { + "id": "npc_186", + "name": "jjc_npc_name_6", + "npcId": 1186, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_187": { + "id": "npc_187", + "name": "jjc_npc_name_1", + "npcId": 1187, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_188": { + "id": "npc_188", + "name": "jjc_npc_name_2", + "npcId": 1188, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_189": { + "id": "npc_189", + "name": "jjc_npc_name_3", + "npcId": 1189, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_190": { + "id": "npc_190", + "name": "jjc_npc_name_4", + "npcId": 1190, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_191": { + "id": "npc_191", + "name": "jjc_npc_name_5", + "npcId": 1191, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_192": { + "id": "npc_192", + "name": "jjc_npc_name_6", + "npcId": 1192, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_193": { + "id": "npc_193", + "name": "jjc_npc_name_1", + "npcId": 1193, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_194": { + "id": "npc_194", + "name": "jjc_npc_name_2", + "npcId": 1194, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_195": { + "id": "npc_195", + "name": "jjc_npc_name_3", + "npcId": 1195, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_196": { + "id": "npc_196", + "name": "jjc_npc_name_4", + "npcId": 1196, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_197": { + "id": "npc_197", + "name": "jjc_npc_name_5", + "npcId": 1197, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_198": { + "id": "npc_198", + "name": "jjc_npc_name_6", + "npcId": 1198, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_199": { + "id": "npc_199", + "name": "jjc_npc_name_1", + "npcId": 1199, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_200": { + "id": "npc_200", + "name": "jjc_npc_name_2", + "npcId": 1200, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_201": { + "id": "npc_201", + "name": "jjc_npc_name_3", + "npcId": 1201, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_202": { + "id": "npc_202", + "name": "jjc_npc_name_4", + "npcId": 1202, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_203": { + "id": "npc_203", + "name": "jjc_npc_name_5", + "npcId": 1203, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_204": { + "id": "npc_204", + "name": "jjc_npc_name_6", + "npcId": 1204, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_205": { + "id": "npc_205", + "name": "jjc_npc_name_1", + "npcId": 1205, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_206": { + "id": "npc_206", + "name": "jjc_npc_name_2", + "npcId": 1206, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_207": { + "id": "npc_207", + "name": "jjc_npc_name_3", + "npcId": 1207, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_208": { + "id": "npc_208", + "name": "jjc_npc_name_4", + "npcId": 1208, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_209": { + "id": "npc_209", + "name": "jjc_npc_name_5", + "npcId": 1209, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_210": { + "id": "npc_210", + "name": "jjc_npc_name_6", + "npcId": 1210, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_211": { + "id": "npc_211", + "name": "jjc_npc_name_1", + "npcId": 1211, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_212": { + "id": "npc_212", + "name": "jjc_npc_name_2", + "npcId": 1212, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_213": { + "id": "npc_213", + "name": "jjc_npc_name_3", + "npcId": 1213, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_214": { + "id": "npc_214", + "name": "jjc_npc_name_4", + "npcId": 1214, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_215": { + "id": "npc_215", + "name": "jjc_npc_name_5", + "npcId": 1215, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_216": { + "id": "npc_216", + "name": "jjc_npc_name_6", + "npcId": 1216, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_217": { + "id": "npc_217", + "name": "jjc_npc_name_1", + "npcId": 1217, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_218": { + "id": "npc_218", + "name": "jjc_npc_name_2", + "npcId": 1218, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_219": { + "id": "npc_219", + "name": "jjc_npc_name_3", + "npcId": 1219, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_220": { + "id": "npc_220", + "name": "jjc_npc_name_4", + "npcId": 1220, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_221": { + "id": "npc_221", + "name": "jjc_npc_name_5", + "npcId": 1221, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_222": { + "id": "npc_222", + "name": "jjc_npc_name_6", + "npcId": 1222, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_223": { + "id": "npc_223", + "name": "jjc_npc_name_1", + "npcId": 1223, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_224": { + "id": "npc_224", + "name": "jjc_npc_name_2", + "npcId": 1224, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_225": { + "id": "npc_225", + "name": "jjc_npc_name_3", + "npcId": 1225, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_226": { + "id": "npc_226", + "name": "jjc_npc_name_4", + "npcId": 1226, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_227": { + "id": "npc_227", + "name": "jjc_npc_name_5", + "npcId": 1227, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_228": { + "id": "npc_228", + "name": "jjc_npc_name_6", + "npcId": 1228, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_229": { + "id": "npc_229", + "name": "jjc_npc_name_1", + "npcId": 1229, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_230": { + "id": "npc_230", + "name": "jjc_npc_name_2", + "npcId": 1230, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_231": { + "id": "npc_231", + "name": "jjc_npc_name_3", + "npcId": 1231, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_232": { + "id": "npc_232", + "name": "jjc_npc_name_4", + "npcId": 1232, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_233": { + "id": "npc_233", + "name": "jjc_npc_name_5", + "npcId": 1233, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_234": { + "id": "npc_234", + "name": "jjc_npc_name_6", + "npcId": 1234, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_235": { + "id": "npc_235", + "name": "jjc_npc_name_1", + "npcId": 1235, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_236": { + "id": "npc_236", + "name": "jjc_npc_name_2", + "npcId": 1236, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_237": { + "id": "npc_237", + "name": "jjc_npc_name_3", + "npcId": 1237, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_238": { + "id": "npc_238", + "name": "jjc_npc_name_4", + "npcId": 1238, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_239": { + "id": "npc_239", + "name": "jjc_npc_name_5", + "npcId": 1239, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_240": { + "id": "npc_240", + "name": "jjc_npc_name_6", + "npcId": 1240, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_241": { + "id": "npc_241", + "name": "jjc_npc_name_1", + "npcId": 1241, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_242": { + "id": "npc_242", + "name": "jjc_npc_name_2", + "npcId": 1242, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_243": { + "id": "npc_243", + "name": "jjc_npc_name_3", + "npcId": 1243, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_244": { + "id": "npc_244", + "name": "jjc_npc_name_4", + "npcId": 1244, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_245": { + "id": "npc_245", + "name": "jjc_npc_name_5", + "npcId": 1245, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_246": { + "id": "npc_246", + "name": "jjc_npc_name_6", + "npcId": 1246, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_247": { + "id": "npc_247", + "name": "jjc_npc_name_1", + "npcId": 1247, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_248": { + "id": "npc_248", + "name": "jjc_npc_name_2", + "npcId": 1248, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_249": { + "id": "npc_249", + "name": "jjc_npc_name_3", + "npcId": 1249, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_250": { + "id": "npc_250", + "name": "jjc_npc_name_4", + "npcId": 1250, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_251": { + "id": "npc_251", + "name": "jjc_npc_name_5", + "npcId": 1251, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_252": { + "id": "npc_252", + "name": "jjc_npc_name_6", + "npcId": 1252, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_253": { + "id": "npc_253", + "name": "jjc_npc_name_1", + "npcId": 1253, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_254": { + "id": "npc_254", + "name": "jjc_npc_name_2", + "npcId": 1254, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_255": { + "id": "npc_255", + "name": "jjc_npc_name_3", + "npcId": 1255, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_256": { + "id": "npc_256", + "name": "jjc_npc_name_4", + "npcId": 1256, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_257": { + "id": "npc_257", + "name": "jjc_npc_name_5", + "npcId": 1257, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_258": { + "id": "npc_258", + "name": "jjc_npc_name_6", + "npcId": 1258, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_259": { + "id": "npc_259", + "name": "jjc_npc_name_1", + "npcId": 1259, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_260": { + "id": "npc_260", + "name": "jjc_npc_name_2", + "npcId": 1260, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_261": { + "id": "npc_261", + "name": "jjc_npc_name_3", + "npcId": 1261, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_262": { + "id": "npc_262", + "name": "jjc_npc_name_4", + "npcId": 1262, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_263": { + "id": "npc_263", + "name": "jjc_npc_name_5", + "npcId": 1263, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_264": { + "id": "npc_264", + "name": "jjc_npc_name_6", + "npcId": 1264, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_265": { + "id": "npc_265", + "name": "jjc_npc_name_1", + "npcId": 1265, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_266": { + "id": "npc_266", + "name": "jjc_npc_name_2", + "npcId": 1266, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_267": { + "id": "npc_267", + "name": "jjc_npc_name_3", + "npcId": 1267, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_268": { + "id": "npc_268", + "name": "jjc_npc_name_4", + "npcId": 1268, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_269": { + "id": "npc_269", + "name": "jjc_npc_name_5", + "npcId": 1269, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_270": { + "id": "npc_270", + "name": "jjc_npc_name_6", + "npcId": 1270, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_271": { + "id": "npc_271", + "name": "jjc_npc_name_1", + "npcId": 1271, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_272": { + "id": "npc_272", + "name": "jjc_npc_name_2", + "npcId": 1272, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_273": { + "id": "npc_273", + "name": "jjc_npc_name_3", + "npcId": 1273, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_274": { + "id": "npc_274", + "name": "jjc_npc_name_4", + "npcId": 1274, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_275": { + "id": "npc_275", + "name": "jjc_npc_name_5", + "npcId": 1275, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_276": { + "id": "npc_276", + "name": "jjc_npc_name_6", + "npcId": 1276, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_277": { + "id": "npc_277", + "name": "jjc_npc_name_1", + "npcId": 1277, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_278": { + "id": "npc_278", + "name": "jjc_npc_name_2", + "npcId": 1278, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_279": { + "id": "npc_279", + "name": "jjc_npc_name_3", + "npcId": 1279, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_280": { + "id": "npc_280", + "name": "jjc_npc_name_4", + "npcId": 1280, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_281": { + "id": "npc_281", + "name": "jjc_npc_name_5", + "npcId": 1281, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_282": { + "id": "npc_282", + "name": "jjc_npc_name_6", + "npcId": 1282, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_283": { + "id": "npc_283", + "name": "jjc_npc_name_1", + "npcId": 1283, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_284": { + "id": "npc_284", + "name": "jjc_npc_name_2", + "npcId": 1284, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_285": { + "id": "npc_285", + "name": "jjc_npc_name_3", + "npcId": 1285, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_286": { + "id": "npc_286", + "name": "jjc_npc_name_4", + "npcId": 1286, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_287": { + "id": "npc_287", + "name": "jjc_npc_name_5", + "npcId": 1287, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_288": { + "id": "npc_288", + "name": "jjc_npc_name_6", + "npcId": 1288, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_289": { + "id": "npc_289", + "name": "jjc_npc_name_1", + "npcId": 1289, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_290": { + "id": "npc_290", + "name": "jjc_npc_name_2", + "npcId": 1290, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_291": { + "id": "npc_291", + "name": "jjc_npc_name_3", + "npcId": 1291, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_292": { + "id": "npc_292", + "name": "jjc_npc_name_4", + "npcId": 1292, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_293": { + "id": "npc_293", + "name": "jjc_npc_name_5", + "npcId": 1293, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_294": { + "id": "npc_294", + "name": "jjc_npc_name_6", + "npcId": 1294, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_295": { + "id": "npc_295", + "name": "jjc_npc_name_1", + "npcId": 1295, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_296": { + "id": "npc_296", + "name": "jjc_npc_name_2", + "npcId": 1296, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_297": { + "id": "npc_297", + "name": "jjc_npc_name_3", + "npcId": 1297, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_298": { + "id": "npc_298", + "name": "jjc_npc_name_4", + "npcId": 1298, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_299": { + "id": "npc_299", + "name": "jjc_npc_name_5", + "npcId": 1299, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_300": { + "id": "npc_300", + "name": "jjc_npc_name_6", + "npcId": 1300, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_301": { + "id": "npc_301", + "name": "jjc_npc_name_1", + "npcId": 1301, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_302": { + "id": "npc_302", + "name": "jjc_npc_name_2", + "npcId": 1302, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_303": { + "id": "npc_303", + "name": "jjc_npc_name_3", + "npcId": 1303, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_304": { + "id": "npc_304", + "name": "jjc_npc_name_4", + "npcId": 1304, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_305": { + "id": "npc_305", + "name": "jjc_npc_name_5", + "npcId": 1305, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_306": { + "id": "npc_306", + "name": "jjc_npc_name_6", + "npcId": 1306, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_307": { + "id": "npc_307", + "name": "jjc_npc_name_1", + "npcId": 1307, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_308": { + "id": "npc_308", + "name": "jjc_npc_name_2", + "npcId": 1308, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_309": { + "id": "npc_309", + "name": "jjc_npc_name_3", + "npcId": 1309, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_310": { + "id": "npc_310", + "name": "jjc_npc_name_4", + "npcId": 1310, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_311": { + "id": "npc_311", + "name": "jjc_npc_name_5", + "npcId": 1311, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_312": { + "id": "npc_312", + "name": "jjc_npc_name_6", + "npcId": 1312, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_313": { + "id": "npc_313", + "name": "jjc_npc_name_1", + "npcId": 1313, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_314": { + "id": "npc_314", + "name": "jjc_npc_name_2", + "npcId": 1314, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_315": { + "id": "npc_315", + "name": "jjc_npc_name_3", + "npcId": 1315, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_316": { + "id": "npc_316", + "name": "jjc_npc_name_4", + "npcId": 1316, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_317": { + "id": "npc_317", + "name": "jjc_npc_name_5", + "npcId": 1317, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_318": { + "id": "npc_318", + "name": "jjc_npc_name_6", + "npcId": 1318, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_319": { + "id": "npc_319", + "name": "jjc_npc_name_1", + "npcId": 1319, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_320": { + "id": "npc_320", + "name": "jjc_npc_name_2", + "npcId": 1320, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_321": { + "id": "npc_321", + "name": "jjc_npc_name_3", + "npcId": 1321, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_322": { + "id": "npc_322", + "name": "jjc_npc_name_4", + "npcId": 1322, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_323": { + "id": "npc_323", + "name": "jjc_npc_name_5", + "npcId": 1323, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_324": { + "id": "npc_324", + "name": "jjc_npc_name_6", + "npcId": 1324, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_325": { + "id": "npc_325", + "name": "jjc_npc_name_1", + "npcId": 1325, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_326": { + "id": "npc_326", + "name": "jjc_npc_name_2", + "npcId": 1326, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_327": { + "id": "npc_327", + "name": "jjc_npc_name_3", + "npcId": 1327, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_328": { + "id": "npc_328", + "name": "jjc_npc_name_4", + "npcId": 1328, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_329": { + "id": "npc_329", + "name": "jjc_npc_name_5", + "npcId": 1329, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_330": { + "id": "npc_330", + "name": "jjc_npc_name_6", + "npcId": 1330, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_331": { + "id": "npc_331", + "name": "jjc_npc_name_1", + "npcId": 1331, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_332": { + "id": "npc_332", + "name": "jjc_npc_name_2", + "npcId": 1332, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_333": { + "id": "npc_333", + "name": "jjc_npc_name_3", + "npcId": 1333, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_334": { + "id": "npc_334", + "name": "jjc_npc_name_4", + "npcId": 1334, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_335": { + "id": "npc_335", + "name": "jjc_npc_name_5", + "npcId": 1335, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_336": { + "id": "npc_336", + "name": "jjc_npc_name_6", + "npcId": 1336, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_337": { + "id": "npc_337", + "name": "jjc_npc_name_1", + "npcId": 1337, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_338": { + "id": "npc_338", + "name": "jjc_npc_name_2", + "npcId": 1338, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_339": { + "id": "npc_339", + "name": "jjc_npc_name_3", + "npcId": 1339, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_340": { + "id": "npc_340", + "name": "jjc_npc_name_4", + "npcId": 1340, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_341": { + "id": "npc_341", + "name": "jjc_npc_name_5", + "npcId": 1341, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_342": { + "id": "npc_342", + "name": "jjc_npc_name_6", + "npcId": 1342, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_343": { + "id": "npc_343", + "name": "jjc_npc_name_1", + "npcId": 1343, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_344": { + "id": "npc_344", + "name": "jjc_npc_name_2", + "npcId": 1344, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_345": { + "id": "npc_345", + "name": "jjc_npc_name_3", + "npcId": 1345, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_346": { + "id": "npc_346", + "name": "jjc_npc_name_4", + "npcId": 1346, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_347": { + "id": "npc_347", + "name": "jjc_npc_name_5", + "npcId": 1347, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_348": { + "id": "npc_348", + "name": "jjc_npc_name_6", + "npcId": 1348, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_349": { + "id": "npc_349", + "name": "jjc_npc_name_1", + "npcId": 1349, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_350": { + "id": "npc_350", + "name": "jjc_npc_name_2", + "npcId": 1350, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_351": { + "id": "npc_351", + "name": "jjc_npc_name_3", + "npcId": 1351, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_352": { + "id": "npc_352", + "name": "jjc_npc_name_4", + "npcId": 1352, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_353": { + "id": "npc_353", + "name": "jjc_npc_name_5", + "npcId": 1353, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_354": { + "id": "npc_354", + "name": "jjc_npc_name_6", + "npcId": 1354, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_355": { + "id": "npc_355", + "name": "jjc_npc_name_1", + "npcId": 1355, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_356": { + "id": "npc_356", + "name": "jjc_npc_name_2", + "npcId": 1356, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_357": { + "id": "npc_357", + "name": "jjc_npc_name_3", + "npcId": 1357, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_358": { + "id": "npc_358", + "name": "jjc_npc_name_4", + "npcId": 1358, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_359": { + "id": "npc_359", + "name": "jjc_npc_name_5", + "npcId": 1359, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_360": { + "id": "npc_360", + "name": "jjc_npc_name_6", + "npcId": 1360, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_361": { + "id": "npc_361", + "name": "jjc_npc_name_1", + "npcId": 1361, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_362": { + "id": "npc_362", + "name": "jjc_npc_name_2", + "npcId": 1362, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_363": { + "id": "npc_363", + "name": "jjc_npc_name_3", + "npcId": 1363, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_364": { + "id": "npc_364", + "name": "jjc_npc_name_4", + "npcId": 1364, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_365": { + "id": "npc_365", + "name": "jjc_npc_name_5", + "npcId": 1365, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_366": { + "id": "npc_366", + "name": "jjc_npc_name_6", + "npcId": 1366, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_367": { + "id": "npc_367", + "name": "jjc_npc_name_1", + "npcId": 1367, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_368": { + "id": "npc_368", + "name": "jjc_npc_name_2", + "npcId": 1368, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_369": { + "id": "npc_369", + "name": "jjc_npc_name_3", + "npcId": 1369, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_370": { + "id": "npc_370", + "name": "jjc_npc_name_4", + "npcId": 1370, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_371": { + "id": "npc_371", + "name": "jjc_npc_name_5", + "npcId": 1371, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_372": { + "id": "npc_372", + "name": "jjc_npc_name_6", + "npcId": 1372, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_373": { + "id": "npc_373", + "name": "jjc_npc_name_1", + "npcId": 1373, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_374": { + "id": "npc_374", + "name": "jjc_npc_name_2", + "npcId": 1374, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_375": { + "id": "npc_375", + "name": "jjc_npc_name_3", + "npcId": 1375, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_376": { + "id": "npc_376", + "name": "jjc_npc_name_4", + "npcId": 1376, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_377": { + "id": "npc_377", + "name": "jjc_npc_name_5", + "npcId": 1377, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_378": { + "id": "npc_378", + "name": "jjc_npc_name_6", + "npcId": 1378, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_379": { + "id": "npc_379", + "name": "jjc_npc_name_1", + "npcId": 1379, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_380": { + "id": "npc_380", + "name": "jjc_npc_name_2", + "npcId": 1380, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_381": { + "id": "npc_381", + "name": "jjc_npc_name_3", + "npcId": 1381, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_382": { + "id": "npc_382", + "name": "jjc_npc_name_4", + "npcId": 1382, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_383": { + "id": "npc_383", + "name": "jjc_npc_name_5", + "npcId": 1383, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_384": { + "id": "npc_384", + "name": "jjc_npc_name_6", + "npcId": 1384, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_385": { + "id": "npc_385", + "name": "jjc_npc_name_1", + "npcId": 1385, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_386": { + "id": "npc_386", + "name": "jjc_npc_name_2", + "npcId": 1386, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_387": { + "id": "npc_387", + "name": "jjc_npc_name_3", + "npcId": 1387, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_388": { + "id": "npc_388", + "name": "jjc_npc_name_4", + "npcId": 1388, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_389": { + "id": "npc_389", + "name": "jjc_npc_name_5", + "npcId": 1389, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_390": { + "id": "npc_390", + "name": "jjc_npc_name_6", + "npcId": 1390, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_391": { + "id": "npc_391", + "name": "jjc_npc_name_1", + "npcId": 1391, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_392": { + "id": "npc_392", + "name": "jjc_npc_name_2", + "npcId": 1392, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_393": { + "id": "npc_393", + "name": "jjc_npc_name_3", + "npcId": 1393, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_394": { + "id": "npc_394", + "name": "jjc_npc_name_4", + "npcId": 1394, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_395": { + "id": "npc_395", + "name": "jjc_npc_name_5", + "npcId": 1395, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_396": { + "id": "npc_396", + "name": "jjc_npc_name_6", + "npcId": 1396, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_397": { + "id": "npc_397", + "name": "jjc_npc_name_1", + "npcId": 1397, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_398": { + "id": "npc_398", + "name": "jjc_npc_name_2", + "npcId": 1398, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_399": { + "id": "npc_399", + "name": "jjc_npc_name_3", + "npcId": 1399, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_400": { + "id": "npc_400", + "name": "jjc_npc_name_4", + "npcId": 1400, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_401": { + "id": "npc_401", + "name": "jjc_npc_name_5", + "npcId": 1401, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_402": { + "id": "npc_402", + "name": "jjc_npc_name_6", + "npcId": 1402, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_403": { + "id": "npc_403", + "name": "jjc_npc_name_1", + "npcId": 1403, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_404": { + "id": "npc_404", + "name": "jjc_npc_name_2", + "npcId": 1404, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_405": { + "id": "npc_405", + "name": "jjc_npc_name_3", + "npcId": 1405, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_406": { + "id": "npc_406", + "name": "jjc_npc_name_4", + "npcId": 1406, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_407": { + "id": "npc_407", + "name": "jjc_npc_name_5", + "npcId": 1407, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_408": { + "id": "npc_408", + "name": "jjc_npc_name_6", + "npcId": 1408, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_409": { + "id": "npc_409", + "name": "jjc_npc_name_1", + "npcId": 1409, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_410": { + "id": "npc_410", + "name": "jjc_npc_name_2", + "npcId": 1410, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_411": { + "id": "npc_411", + "name": "jjc_npc_name_3", + "npcId": 1411, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_412": { + "id": "npc_412", + "name": "jjc_npc_name_4", + "npcId": 1412, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_413": { + "id": "npc_413", + "name": "jjc_npc_name_5", + "npcId": 1413, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_414": { + "id": "npc_414", + "name": "jjc_npc_name_6", + "npcId": 1414, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_415": { + "id": "npc_415", + "name": "jjc_npc_name_1", + "npcId": 1415, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_416": { + "id": "npc_416", + "name": "jjc_npc_name_2", + "npcId": 1416, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_417": { + "id": "npc_417", + "name": "jjc_npc_name_3", + "npcId": 1417, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_418": { + "id": "npc_418", + "name": "jjc_npc_name_4", + "npcId": 1418, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_419": { + "id": "npc_419", + "name": "jjc_npc_name_5", + "npcId": 1419, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_420": { + "id": "npc_420", + "name": "jjc_npc_name_6", + "npcId": 1420, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_421": { + "id": "npc_421", + "name": "jjc_npc_name_1", + "npcId": 1421, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_422": { + "id": "npc_422", + "name": "jjc_npc_name_2", + "npcId": 1422, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_423": { + "id": "npc_423", + "name": "jjc_npc_name_3", + "npcId": 1423, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_424": { + "id": "npc_424", + "name": "jjc_npc_name_4", + "npcId": 1424, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_425": { + "id": "npc_425", + "name": "jjc_npc_name_5", + "npcId": 1425, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_426": { + "id": "npc_426", + "name": "jjc_npc_name_6", + "npcId": 1426, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_427": { + "id": "npc_427", + "name": "jjc_npc_name_1", + "npcId": 1427, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_428": { + "id": "npc_428", + "name": "jjc_npc_name_2", + "npcId": 1428, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_429": { + "id": "npc_429", + "name": "jjc_npc_name_3", + "npcId": 1429, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_430": { + "id": "npc_430", + "name": "jjc_npc_name_4", + "npcId": 1430, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_431": { + "id": "npc_431", + "name": "jjc_npc_name_5", + "npcId": 1431, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_432": { + "id": "npc_432", + "name": "jjc_npc_name_6", + "npcId": 1432, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_433": { + "id": "npc_433", + "name": "jjc_npc_name_1", + "npcId": 1433, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_434": { + "id": "npc_434", + "name": "jjc_npc_name_2", + "npcId": 1434, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_435": { + "id": "npc_435", + "name": "jjc_npc_name_3", + "npcId": 1435, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_436": { + "id": "npc_436", + "name": "jjc_npc_name_4", + "npcId": 1436, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_437": { + "id": "npc_437", + "name": "jjc_npc_name_5", + "npcId": 1437, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_438": { + "id": "npc_438", + "name": "jjc_npc_name_6", + "npcId": 1438, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_439": { + "id": "npc_439", + "name": "jjc_npc_name_1", + "npcId": 1439, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_440": { + "id": "npc_440", + "name": "jjc_npc_name_2", + "npcId": 1440, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_441": { + "id": "npc_441", + "name": "jjc_npc_name_3", + "npcId": 1441, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_442": { + "id": "npc_442", + "name": "jjc_npc_name_4", + "npcId": 1442, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_443": { + "id": "npc_443", + "name": "jjc_npc_name_5", + "npcId": 1443, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_444": { + "id": "npc_444", + "name": "jjc_npc_name_6", + "npcId": 1444, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_445": { + "id": "npc_445", + "name": "jjc_npc_name_1", + "npcId": 1445, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_446": { + "id": "npc_446", + "name": "jjc_npc_name_2", + "npcId": 1446, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_447": { + "id": "npc_447", + "name": "jjc_npc_name_3", + "npcId": 1447, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_448": { + "id": "npc_448", + "name": "jjc_npc_name_4", + "npcId": 1448, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_449": { + "id": "npc_449", + "name": "jjc_npc_name_5", + "npcId": 1449, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_450": { + "id": "npc_450", + "name": "jjc_npc_name_6", + "npcId": 1450, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_451": { + "id": "npc_451", + "name": "jjc_npc_name_1", + "npcId": 1451, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_452": { + "id": "npc_452", + "name": "jjc_npc_name_2", + "npcId": 1452, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_453": { + "id": "npc_453", + "name": "jjc_npc_name_3", + "npcId": 1453, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_454": { + "id": "npc_454", + "name": "jjc_npc_name_4", + "npcId": 1454, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_455": { + "id": "npc_455", + "name": "jjc_npc_name_5", + "npcId": 1455, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_456": { + "id": "npc_456", + "name": "jjc_npc_name_6", + "npcId": 1456, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_457": { + "id": "npc_457", + "name": "jjc_npc_name_1", + "npcId": 1457, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_458": { + "id": "npc_458", + "name": "jjc_npc_name_2", + "npcId": 1458, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_459": { + "id": "npc_459", + "name": "jjc_npc_name_3", + "npcId": 1459, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_460": { + "id": "npc_460", + "name": "jjc_npc_name_4", + "npcId": 1460, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_461": { + "id": "npc_461", + "name": "jjc_npc_name_5", + "npcId": 1461, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_462": { + "id": "npc_462", + "name": "jjc_npc_name_6", + "npcId": 1462, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_463": { + "id": "npc_463", + "name": "jjc_npc_name_1", + "npcId": 1463, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_464": { + "id": "npc_464", + "name": "jjc_npc_name_2", + "npcId": 1464, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_465": { + "id": "npc_465", + "name": "jjc_npc_name_3", + "npcId": 1465, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_466": { + "id": "npc_466", + "name": "jjc_npc_name_4", + "npcId": 1466, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_467": { + "id": "npc_467", + "name": "jjc_npc_name_5", + "npcId": 1467, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_468": { + "id": "npc_468", + "name": "jjc_npc_name_6", + "npcId": 1468, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_469": { + "id": "npc_469", + "name": "jjc_npc_name_1", + "npcId": 1469, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_470": { + "id": "npc_470", + "name": "jjc_npc_name_2", + "npcId": 1470, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_471": { + "id": "npc_471", + "name": "jjc_npc_name_3", + "npcId": 1471, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_472": { + "id": "npc_472", + "name": "jjc_npc_name_4", + "npcId": 1472, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_473": { + "id": "npc_473", + "name": "jjc_npc_name_5", + "npcId": 1473, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_474": { + "id": "npc_474", + "name": "jjc_npc_name_6", + "npcId": 1474, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_475": { + "id": "npc_475", + "name": "jjc_npc_name_1", + "npcId": 1475, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_476": { + "id": "npc_476", + "name": "jjc_npc_name_2", + "npcId": 1476, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_477": { + "id": "npc_477", + "name": "jjc_npc_name_3", + "npcId": 1477, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_478": { + "id": "npc_478", + "name": "jjc_npc_name_4", + "npcId": 1478, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_479": { + "id": "npc_479", + "name": "jjc_npc_name_5", + "npcId": 1479, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_480": { + "id": "npc_480", + "name": "jjc_npc_name_6", + "npcId": 1480, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_481": { + "id": "npc_481", + "name": "jjc_npc_name_1", + "npcId": 1481, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_482": { + "id": "npc_482", + "name": "jjc_npc_name_2", + "npcId": 1482, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_483": { + "id": "npc_483", + "name": "jjc_npc_name_3", + "npcId": 1483, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_484": { + "id": "npc_484", + "name": "jjc_npc_name_4", + "npcId": 1484, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_485": { + "id": "npc_485", + "name": "jjc_npc_name_5", + "npcId": 1485, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_486": { + "id": "npc_486", + "name": "jjc_npc_name_6", + "npcId": 1486, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_487": { + "id": "npc_487", + "name": "jjc_npc_name_1", + "npcId": 1487, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_488": { + "id": "npc_488", + "name": "jjc_npc_name_2", + "npcId": 1488, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_489": { + "id": "npc_489", + "name": "jjc_npc_name_3", + "npcId": 1489, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_490": { + "id": "npc_490", + "name": "jjc_npc_name_4", + "npcId": 1490, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_491": { + "id": "npc_491", + "name": "jjc_npc_name_5", + "npcId": 1491, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_492": { + "id": "npc_492", + "name": "jjc_npc_name_6", + "npcId": 1492, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_493": { + "id": "npc_493", + "name": "jjc_npc_name_1", + "npcId": 1493, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_494": { + "id": "npc_494", + "name": "jjc_npc_name_2", + "npcId": 1494, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_495": { + "id": "npc_495", + "name": "jjc_npc_name_3", + "npcId": 1495, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_496": { + "id": "npc_496", + "name": "jjc_npc_name_4", + "npcId": 1496, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_497": { + "id": "npc_497", + "name": "jjc_npc_name_5", + "npcId": 1497, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_498": { + "id": "npc_498", + "name": "jjc_npc_name_6", + "npcId": 1498, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_499": { + "id": "npc_499", + "name": "jjc_npc_name_1", + "npcId": 1499, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_500": { + "id": "npc_500", + "name": "jjc_npc_name_2", + "npcId": 1500, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_501": { + "id": "npc_501", + "name": "jjc_npc_name_3", + "npcId": 1501, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_502": { + "id": "npc_502", + "name": "jjc_npc_name_4", + "npcId": 1502, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_503": { + "id": "npc_503", + "name": "jjc_npc_name_5", + "npcId": 1503, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_504": { + "id": "npc_504", + "name": "jjc_npc_name_6", + "npcId": 1504, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_505": { + "id": "npc_505", + "name": "jjc_npc_name_1", + "npcId": 1505, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_506": { + "id": "npc_506", + "name": "jjc_npc_name_2", + "npcId": 1506, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_507": { + "id": "npc_507", + "name": "jjc_npc_name_3", + "npcId": 1507, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_508": { + "id": "npc_508", + "name": "jjc_npc_name_4", + "npcId": 1508, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_509": { + "id": "npc_509", + "name": "jjc_npc_name_5", + "npcId": 1509, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_510": { + "id": "npc_510", + "name": "jjc_npc_name_6", + "npcId": 1510, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_511": { + "id": "npc_511", + "name": "jjc_npc_name_1", + "npcId": 1511, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_512": { + "id": "npc_512", + "name": "jjc_npc_name_2", + "npcId": 1512, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_513": { + "id": "npc_513", + "name": "jjc_npc_name_3", + "npcId": 1513, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_514": { + "id": "npc_514", + "name": "jjc_npc_name_4", + "npcId": 1514, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_515": { + "id": "npc_515", + "name": "jjc_npc_name_5", + "npcId": 1515, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_516": { + "id": "npc_516", + "name": "jjc_npc_name_6", + "npcId": 1516, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_517": { + "id": "npc_517", + "name": "jjc_npc_name_1", + "npcId": 1517, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_518": { + "id": "npc_518", + "name": "jjc_npc_name_2", + "npcId": 1518, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_519": { + "id": "npc_519", + "name": "jjc_npc_name_3", + "npcId": 1519, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_520": { + "id": "npc_520", + "name": "jjc_npc_name_4", + "npcId": 1520, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_521": { + "id": "npc_521", + "name": "jjc_npc_name_5", + "npcId": 1521, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_522": { + "id": "npc_522", + "name": "jjc_npc_name_6", + "npcId": 1522, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_523": { + "id": "npc_523", + "name": "jjc_npc_name_1", + "npcId": 1523, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_524": { + "id": "npc_524", + "name": "jjc_npc_name_2", + "npcId": 1524, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_525": { + "id": "npc_525", + "name": "jjc_npc_name_3", + "npcId": 1525, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_526": { + "id": "npc_526", + "name": "jjc_npc_name_4", + "npcId": 1526, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_527": { + "id": "npc_527", + "name": "jjc_npc_name_5", + "npcId": 1527, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_528": { + "id": "npc_528", + "name": "jjc_npc_name_6", + "npcId": 1528, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_529": { + "id": "npc_529", + "name": "jjc_npc_name_1", + "npcId": 1529, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_530": { + "id": "npc_530", + "name": "jjc_npc_name_2", + "npcId": 1530, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_531": { + "id": "npc_531", + "name": "jjc_npc_name_3", + "npcId": 1531, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_532": { + "id": "npc_532", + "name": "jjc_npc_name_4", + "npcId": 1532, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_533": { + "id": "npc_533", + "name": "jjc_npc_name_5", + "npcId": 1533, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_534": { + "id": "npc_534", + "name": "jjc_npc_name_6", + "npcId": 1534, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_535": { + "id": "npc_535", + "name": "jjc_npc_name_1", + "npcId": 1535, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_536": { + "id": "npc_536", + "name": "jjc_npc_name_2", + "npcId": 1536, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_537": { + "id": "npc_537", + "name": "jjc_npc_name_3", + "npcId": 1537, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_538": { + "id": "npc_538", + "name": "jjc_npc_name_4", + "npcId": 1538, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_539": { + "id": "npc_539", + "name": "jjc_npc_name_5", + "npcId": 1539, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_540": { + "id": "npc_540", + "name": "jjc_npc_name_6", + "npcId": 1540, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_541": { + "id": "npc_541", + "name": "jjc_npc_name_1", + "npcId": 1541, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_542": { + "id": "npc_542", + "name": "jjc_npc_name_2", + "npcId": 1542, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_543": { + "id": "npc_543", + "name": "jjc_npc_name_3", + "npcId": 1543, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_544": { + "id": "npc_544", + "name": "jjc_npc_name_4", + "npcId": 1544, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_545": { + "id": "npc_545", + "name": "jjc_npc_name_5", + "npcId": 1545, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_546": { + "id": "npc_546", + "name": "jjc_npc_name_6", + "npcId": 1546, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_547": { + "id": "npc_547", + "name": "jjc_npc_name_1", + "npcId": 1547, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_548": { + "id": "npc_548", + "name": "jjc_npc_name_2", + "npcId": 1548, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_549": { + "id": "npc_549", + "name": "jjc_npc_name_3", + "npcId": 1549, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_550": { + "id": "npc_550", + "name": "jjc_npc_name_4", + "npcId": 1550, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_551": { + "id": "npc_551", + "name": "jjc_npc_name_5", + "npcId": 1551, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_552": { + "id": "npc_552", + "name": "jjc_npc_name_6", + "npcId": 1552, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_553": { + "id": "npc_553", + "name": "jjc_npc_name_1", + "npcId": 1553, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_554": { + "id": "npc_554", + "name": "jjc_npc_name_2", + "npcId": 1554, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_555": { + "id": "npc_555", + "name": "jjc_npc_name_3", + "npcId": 1555, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_556": { + "id": "npc_556", + "name": "jjc_npc_name_4", + "npcId": 1556, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_557": { + "id": "npc_557", + "name": "jjc_npc_name_5", + "npcId": 1557, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_558": { + "id": "npc_558", + "name": "jjc_npc_name_6", + "npcId": 1558, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_559": { + "id": "npc_559", + "name": "jjc_npc_name_1", + "npcId": 1559, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_560": { + "id": "npc_560", + "name": "jjc_npc_name_2", + "npcId": 1560, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_561": { + "id": "npc_561", + "name": "jjc_npc_name_3", + "npcId": 1561, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_562": { + "id": "npc_562", + "name": "jjc_npc_name_4", + "npcId": 1562, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_563": { + "id": "npc_563", + "name": "jjc_npc_name_5", + "npcId": 1563, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_564": { + "id": "npc_564", + "name": "jjc_npc_name_6", + "npcId": 1564, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_565": { + "id": "npc_565", + "name": "jjc_npc_name_1", + "npcId": 1565, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_566": { + "id": "npc_566", + "name": "jjc_npc_name_2", + "npcId": 1566, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_567": { + "id": "npc_567", + "name": "jjc_npc_name_3", + "npcId": 1567, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_568": { + "id": "npc_568", + "name": "jjc_npc_name_4", + "npcId": 1568, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_569": { + "id": "npc_569", + "name": "jjc_npc_name_5", + "npcId": 1569, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_570": { + "id": "npc_570", + "name": "jjc_npc_name_6", + "npcId": 1570, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_571": { + "id": "npc_571", + "name": "jjc_npc_name_1", + "npcId": 1571, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_572": { + "id": "npc_572", + "name": "jjc_npc_name_2", + "npcId": 1572, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_573": { + "id": "npc_573", + "name": "jjc_npc_name_3", + "npcId": 1573, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_574": { + "id": "npc_574", + "name": "jjc_npc_name_4", + "npcId": 1574, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_575": { + "id": "npc_575", + "name": "jjc_npc_name_5", + "npcId": 1575, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_576": { + "id": "npc_576", + "name": "jjc_npc_name_6", + "npcId": 1576, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_577": { + "id": "npc_577", + "name": "jjc_npc_name_1", + "npcId": 1577, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_578": { + "id": "npc_578", + "name": "jjc_npc_name_2", + "npcId": 1578, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_579": { + "id": "npc_579", + "name": "jjc_npc_name_3", + "npcId": 1579, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_580": { + "id": "npc_580", + "name": "jjc_npc_name_4", + "npcId": 1580, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_581": { + "id": "npc_581", + "name": "jjc_npc_name_5", + "npcId": 1581, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_582": { + "id": "npc_582", + "name": "jjc_npc_name_6", + "npcId": 1582, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_583": { + "id": "npc_583", + "name": "jjc_npc_name_1", + "npcId": 1583, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_584": { + "id": "npc_584", + "name": "jjc_npc_name_2", + "npcId": 1584, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_585": { + "id": "npc_585", + "name": "jjc_npc_name_3", + "npcId": 1585, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_586": { + "id": "npc_586", + "name": "jjc_npc_name_4", + "npcId": 1586, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_587": { + "id": "npc_587", + "name": "jjc_npc_name_5", + "npcId": 1587, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_588": { + "id": "npc_588", + "name": "jjc_npc_name_6", + "npcId": 1588, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_589": { + "id": "npc_589", + "name": "jjc_npc_name_1", + "npcId": 1589, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_590": { + "id": "npc_590", + "name": "jjc_npc_name_2", + "npcId": 1590, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_591": { + "id": "npc_591", + "name": "jjc_npc_name_3", + "npcId": 1591, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_592": { + "id": "npc_592", + "name": "jjc_npc_name_4", + "npcId": 1592, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_593": { + "id": "npc_593", + "name": "jjc_npc_name_5", + "npcId": 1593, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_594": { + "id": "npc_594", + "name": "jjc_npc_name_6", + "npcId": 1594, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_595": { + "id": "npc_595", + "name": "jjc_npc_name_1", + "npcId": 1595, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_596": { + "id": "npc_596", + "name": "jjc_npc_name_2", + "npcId": 1596, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_597": { + "id": "npc_597", + "name": "jjc_npc_name_3", + "npcId": 1597, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_598": { + "id": "npc_598", + "name": "jjc_npc_name_4", + "npcId": 1598, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_599": { + "id": "npc_599", + "name": "jjc_npc_name_5", + "npcId": 1599, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_600": { + "id": "npc_600", + "name": "jjc_npc_name_6", + "npcId": 1600, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_601": { + "id": "npc_601", + "name": "jjc_npc_name_1", + "npcId": 1601, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_602": { + "id": "npc_602", + "name": "jjc_npc_name_2", + "npcId": 1602, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_603": { + "id": "npc_603", + "name": "jjc_npc_name_3", + "npcId": 1603, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_604": { + "id": "npc_604", + "name": "jjc_npc_name_4", + "npcId": 1604, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_605": { + "id": "npc_605", + "name": "jjc_npc_name_5", + "npcId": 1605, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_606": { + "id": "npc_606", + "name": "jjc_npc_name_6", + "npcId": 1606, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_607": { + "id": "npc_607", + "name": "jjc_npc_name_1", + "npcId": 1607, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_608": { + "id": "npc_608", + "name": "jjc_npc_name_2", + "npcId": 1608, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_609": { + "id": "npc_609", + "name": "jjc_npc_name_3", + "npcId": 1609, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_610": { + "id": "npc_610", + "name": "jjc_npc_name_4", + "npcId": 1610, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_611": { + "id": "npc_611", + "name": "jjc_npc_name_5", + "npcId": 1611, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_612": { + "id": "npc_612", + "name": "jjc_npc_name_6", + "npcId": 1612, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_613": { + "id": "npc_613", + "name": "jjc_npc_name_1", + "npcId": 1613, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_614": { + "id": "npc_614", + "name": "jjc_npc_name_2", + "npcId": 1614, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_615": { + "id": "npc_615", + "name": "jjc_npc_name_3", + "npcId": 1615, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_616": { + "id": "npc_616", + "name": "jjc_npc_name_4", + "npcId": 1616, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_617": { + "id": "npc_617", + "name": "jjc_npc_name_5", + "npcId": 1617, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_618": { + "id": "npc_618", + "name": "jjc_npc_name_6", + "npcId": 1618, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_619": { + "id": "npc_619", + "name": "jjc_npc_name_1", + "npcId": 1619, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_620": { + "id": "npc_620", + "name": "jjc_npc_name_2", + "npcId": 1620, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_621": { + "id": "npc_621", + "name": "jjc_npc_name_3", + "npcId": 1621, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_622": { + "id": "npc_622", + "name": "jjc_npc_name_4", + "npcId": 1622, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_623": { + "id": "npc_623", + "name": "jjc_npc_name_5", + "npcId": 1623, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_624": { + "id": "npc_624", + "name": "jjc_npc_name_6", + "npcId": 1624, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_625": { + "id": "npc_625", + "name": "jjc_npc_name_1", + "npcId": 1625, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_626": { + "id": "npc_626", + "name": "jjc_npc_name_2", + "npcId": 1626, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_627": { + "id": "npc_627", + "name": "jjc_npc_name_3", + "npcId": 1627, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_628": { + "id": "npc_628", + "name": "jjc_npc_name_4", + "npcId": 1628, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_629": { + "id": "npc_629", + "name": "jjc_npc_name_5", + "npcId": 1629, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_630": { + "id": "npc_630", + "name": "jjc_npc_name_6", + "npcId": 1630, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_631": { + "id": "npc_631", + "name": "jjc_npc_name_1", + "npcId": 1631, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_632": { + "id": "npc_632", + "name": "jjc_npc_name_2", + "npcId": 1632, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_633": { + "id": "npc_633", + "name": "jjc_npc_name_3", + "npcId": 1633, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_634": { + "id": "npc_634", + "name": "jjc_npc_name_4", + "npcId": 1634, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_635": { + "id": "npc_635", + "name": "jjc_npc_name_5", + "npcId": 1635, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_636": { + "id": "npc_636", + "name": "jjc_npc_name_6", + "npcId": 1636, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_637": { + "id": "npc_637", + "name": "jjc_npc_name_1", + "npcId": 1637, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_638": { + "id": "npc_638", + "name": "jjc_npc_name_2", + "npcId": 1638, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_639": { + "id": "npc_639", + "name": "jjc_npc_name_3", + "npcId": 1639, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_640": { + "id": "npc_640", + "name": "jjc_npc_name_4", + "npcId": 1640, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_641": { + "id": "npc_641", + "name": "jjc_npc_name_5", + "npcId": 1641, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_642": { + "id": "npc_642", + "name": "jjc_npc_name_6", + "npcId": 1642, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_643": { + "id": "npc_643", + "name": "jjc_npc_name_1", + "npcId": 1643, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_644": { + "id": "npc_644", + "name": "jjc_npc_name_2", + "npcId": 1644, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_645": { + "id": "npc_645", + "name": "jjc_npc_name_3", + "npcId": 1645, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_646": { + "id": "npc_646", + "name": "jjc_npc_name_4", + "npcId": 1646, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_647": { + "id": "npc_647", + "name": "jjc_npc_name_5", + "npcId": 1647, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_648": { + "id": "npc_648", + "name": "jjc_npc_name_6", + "npcId": 1648, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_649": { + "id": "npc_649", + "name": "jjc_npc_name_1", + "npcId": 1649, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_650": { + "id": "npc_650", + "name": "jjc_npc_name_2", + "npcId": 1650, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_651": { + "id": "npc_651", + "name": "jjc_npc_name_3", + "npcId": 1651, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_652": { + "id": "npc_652", + "name": "jjc_npc_name_4", + "npcId": 1652, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_653": { + "id": "npc_653", + "name": "jjc_npc_name_5", + "npcId": 1653, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_654": { + "id": "npc_654", + "name": "jjc_npc_name_6", + "npcId": 1654, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_655": { + "id": "npc_655", + "name": "jjc_npc_name_1", + "npcId": 1655, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_656": { + "id": "npc_656", + "name": "jjc_npc_name_2", + "npcId": 1656, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_657": { + "id": "npc_657", + "name": "jjc_npc_name_3", + "npcId": 1657, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_658": { + "id": "npc_658", + "name": "jjc_npc_name_4", + "npcId": 1658, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_659": { + "id": "npc_659", + "name": "jjc_npc_name_5", + "npcId": 1659, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_660": { + "id": "npc_660", + "name": "jjc_npc_name_6", + "npcId": 1660, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_661": { + "id": "npc_661", + "name": "jjc_npc_name_1", + "npcId": 1661, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_662": { + "id": "npc_662", + "name": "jjc_npc_name_2", + "npcId": 1662, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_663": { + "id": "npc_663", + "name": "jjc_npc_name_3", + "npcId": 1663, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_664": { + "id": "npc_664", + "name": "jjc_npc_name_4", + "npcId": 1664, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_665": { + "id": "npc_665", + "name": "jjc_npc_name_5", + "npcId": 1665, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_666": { + "id": "npc_666", + "name": "jjc_npc_name_6", + "npcId": 1666, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_667": { + "id": "npc_667", + "name": "jjc_npc_name_1", + "npcId": 1667, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_668": { + "id": "npc_668", + "name": "jjc_npc_name_2", + "npcId": 1668, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_669": { + "id": "npc_669", + "name": "jjc_npc_name_3", + "npcId": 1669, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_670": { + "id": "npc_670", + "name": "jjc_npc_name_4", + "npcId": 1670, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_671": { + "id": "npc_671", + "name": "jjc_npc_name_5", + "npcId": 1671, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_672": { + "id": "npc_672", + "name": "jjc_npc_name_6", + "npcId": 1672, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_673": { + "id": "npc_673", + "name": "jjc_npc_name_1", + "npcId": 1673, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_674": { + "id": "npc_674", + "name": "jjc_npc_name_2", + "npcId": 1674, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_675": { + "id": "npc_675", + "name": "jjc_npc_name_3", + "npcId": 1675, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_676": { + "id": "npc_676", + "name": "jjc_npc_name_4", + "npcId": 1676, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_677": { + "id": "npc_677", + "name": "jjc_npc_name_5", + "npcId": 1677, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_678": { + "id": "npc_678", + "name": "jjc_npc_name_6", + "npcId": 1678, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_679": { + "id": "npc_679", + "name": "jjc_npc_name_1", + "npcId": 1679, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_680": { + "id": "npc_680", + "name": "jjc_npc_name_2", + "npcId": 1680, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_681": { + "id": "npc_681", + "name": "jjc_npc_name_3", + "npcId": 1681, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_682": { + "id": "npc_682", + "name": "jjc_npc_name_4", + "npcId": 1682, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_683": { + "id": "npc_683", + "name": "jjc_npc_name_5", + "npcId": 1683, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_684": { + "id": "npc_684", + "name": "jjc_npc_name_6", + "npcId": 1684, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_685": { + "id": "npc_685", + "name": "jjc_npc_name_1", + "npcId": 1685, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_686": { + "id": "npc_686", + "name": "jjc_npc_name_2", + "npcId": 1686, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_687": { + "id": "npc_687", + "name": "jjc_npc_name_3", + "npcId": 1687, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_688": { + "id": "npc_688", + "name": "jjc_npc_name_4", + "npcId": 1688, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_689": { + "id": "npc_689", + "name": "jjc_npc_name_5", + "npcId": 1689, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_690": { + "id": "npc_690", + "name": "jjc_npc_name_6", + "npcId": 1690, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_691": { + "id": "npc_691", + "name": "jjc_npc_name_1", + "npcId": 1691, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_692": { + "id": "npc_692", + "name": "jjc_npc_name_2", + "npcId": 1692, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_693": { + "id": "npc_693", + "name": "jjc_npc_name_3", + "npcId": 1693, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_694": { + "id": "npc_694", + "name": "jjc_npc_name_4", + "npcId": 1694, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_695": { + "id": "npc_695", + "name": "jjc_npc_name_5", + "npcId": 1695, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_696": { + "id": "npc_696", + "name": "jjc_npc_name_6", + "npcId": 1696, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_697": { + "id": "npc_697", + "name": "jjc_npc_name_1", + "npcId": 1697, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_698": { + "id": "npc_698", + "name": "jjc_npc_name_2", + "npcId": 1698, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_699": { + "id": "npc_699", + "name": "jjc_npc_name_3", + "npcId": 1699, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_700": { + "id": "npc_700", + "name": "jjc_npc_name_4", + "npcId": 1700, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_701": { + "id": "npc_701", + "name": "jjc_npc_name_5", + "npcId": 1701, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_702": { + "id": "npc_702", + "name": "jjc_npc_name_6", + "npcId": 1702, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_703": { + "id": "npc_703", + "name": "jjc_npc_name_1", + "npcId": 1703, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_704": { + "id": "npc_704", + "name": "jjc_npc_name_2", + "npcId": 1704, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_705": { + "id": "npc_705", + "name": "jjc_npc_name_3", + "npcId": 1705, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_706": { + "id": "npc_706", + "name": "jjc_npc_name_4", + "npcId": 1706, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_707": { + "id": "npc_707", + "name": "jjc_npc_name_5", + "npcId": 1707, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_708": { + "id": "npc_708", + "name": "jjc_npc_name_6", + "npcId": 1708, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_709": { + "id": "npc_709", + "name": "jjc_npc_name_1", + "npcId": 1709, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_710": { + "id": "npc_710", + "name": "jjc_npc_name_2", + "npcId": 1710, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_711": { + "id": "npc_711", + "name": "jjc_npc_name_3", + "npcId": 1711, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_712": { + "id": "npc_712", + "name": "jjc_npc_name_4", + "npcId": 1712, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_713": { + "id": "npc_713", + "name": "jjc_npc_name_5", + "npcId": 1713, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_714": { + "id": "npc_714", + "name": "jjc_npc_name_6", + "npcId": 1714, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_715": { + "id": "npc_715", + "name": "jjc_npc_name_1", + "npcId": 1715, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_716": { + "id": "npc_716", + "name": "jjc_npc_name_2", + "npcId": 1716, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_717": { + "id": "npc_717", + "name": "jjc_npc_name_3", + "npcId": 1717, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_718": { + "id": "npc_718", + "name": "jjc_npc_name_4", + "npcId": 1718, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_719": { + "id": "npc_719", + "name": "jjc_npc_name_5", + "npcId": 1719, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_720": { + "id": "npc_720", + "name": "jjc_npc_name_6", + "npcId": 1720, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_721": { + "id": "npc_721", + "name": "jjc_npc_name_1", + "npcId": 1721, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_722": { + "id": "npc_722", + "name": "jjc_npc_name_2", + "npcId": 1722, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_723": { + "id": "npc_723", + "name": "jjc_npc_name_3", + "npcId": 1723, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_724": { + "id": "npc_724", + "name": "jjc_npc_name_4", + "npcId": 1724, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_725": { + "id": "npc_725", + "name": "jjc_npc_name_5", + "npcId": 1725, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_726": { + "id": "npc_726", + "name": "jjc_npc_name_6", + "npcId": 1726, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_727": { + "id": "npc_727", + "name": "jjc_npc_name_1", + "npcId": 1727, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_728": { + "id": "npc_728", + "name": "jjc_npc_name_2", + "npcId": 1728, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_729": { + "id": "npc_729", + "name": "jjc_npc_name_3", + "npcId": 1729, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_730": { + "id": "npc_730", + "name": "jjc_npc_name_4", + "npcId": 1730, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_731": { + "id": "npc_731", + "name": "jjc_npc_name_5", + "npcId": 1731, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_732": { + "id": "npc_732", + "name": "jjc_npc_name_6", + "npcId": 1732, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_733": { + "id": "npc_733", + "name": "jjc_npc_name_1", + "npcId": 1733, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_734": { + "id": "npc_734", + "name": "jjc_npc_name_2", + "npcId": 1734, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_735": { + "id": "npc_735", + "name": "jjc_npc_name_3", + "npcId": 1735, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_736": { + "id": "npc_736", + "name": "jjc_npc_name_4", + "npcId": 1736, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_737": { + "id": "npc_737", + "name": "jjc_npc_name_5", + "npcId": 1737, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_738": { + "id": "npc_738", + "name": "jjc_npc_name_6", + "npcId": 1738, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_739": { + "id": "npc_739", + "name": "jjc_npc_name_1", + "npcId": 1739, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_740": { + "id": "npc_740", + "name": "jjc_npc_name_2", + "npcId": 1740, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_741": { + "id": "npc_741", + "name": "jjc_npc_name_3", + "npcId": 1741, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_742": { + "id": "npc_742", + "name": "jjc_npc_name_4", + "npcId": 1742, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_743": { + "id": "npc_743", + "name": "jjc_npc_name_5", + "npcId": 1743, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_744": { + "id": "npc_744", + "name": "jjc_npc_name_6", + "npcId": 1744, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_745": { + "id": "npc_745", + "name": "jjc_npc_name_1", + "npcId": 1745, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_746": { + "id": "npc_746", + "name": "jjc_npc_name_2", + "npcId": 1746, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_747": { + "id": "npc_747", + "name": "jjc_npc_name_3", + "npcId": 1747, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_748": { + "id": "npc_748", + "name": "jjc_npc_name_4", + "npcId": 1748, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_749": { + "id": "npc_749", + "name": "jjc_npc_name_5", + "npcId": 1749, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_750": { + "id": "npc_750", + "name": "jjc_npc_name_6", + "npcId": 1750, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_751": { + "id": "npc_751", + "name": "jjc_npc_name_1", + "npcId": 1751, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_752": { + "id": "npc_752", + "name": "jjc_npc_name_2", + "npcId": 1752, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_753": { + "id": "npc_753", + "name": "jjc_npc_name_3", + "npcId": 1753, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_754": { + "id": "npc_754", + "name": "jjc_npc_name_4", + "npcId": 1754, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_755": { + "id": "npc_755", + "name": "jjc_npc_name_5", + "npcId": 1755, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_756": { + "id": "npc_756", + "name": "jjc_npc_name_6", + "npcId": 1756, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_757": { + "id": "npc_757", + "name": "jjc_npc_name_1", + "npcId": 1757, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_758": { + "id": "npc_758", + "name": "jjc_npc_name_2", + "npcId": 1758, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_759": { + "id": "npc_759", + "name": "jjc_npc_name_3", + "npcId": 1759, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_760": { + "id": "npc_760", + "name": "jjc_npc_name_4", + "npcId": 1760, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_761": { + "id": "npc_761", + "name": "jjc_npc_name_5", + "npcId": 1761, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_762": { + "id": "npc_762", + "name": "jjc_npc_name_6", + "npcId": 1762, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_763": { + "id": "npc_763", + "name": "jjc_npc_name_1", + "npcId": 1763, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_764": { + "id": "npc_764", + "name": "jjc_npc_name_2", + "npcId": 1764, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_765": { + "id": "npc_765", + "name": "jjc_npc_name_3", + "npcId": 1765, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_766": { + "id": "npc_766", + "name": "jjc_npc_name_4", + "npcId": 1766, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_767": { + "id": "npc_767", + "name": "jjc_npc_name_5", + "npcId": 1767, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_768": { + "id": "npc_768", + "name": "jjc_npc_name_6", + "npcId": 1768, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_769": { + "id": "npc_769", + "name": "jjc_npc_name_1", + "npcId": 1769, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_770": { + "id": "npc_770", + "name": "jjc_npc_name_2", + "npcId": 1770, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_771": { + "id": "npc_771", + "name": "jjc_npc_name_3", + "npcId": 1771, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_772": { + "id": "npc_772", + "name": "jjc_npc_name_4", + "npcId": 1772, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_773": { + "id": "npc_773", + "name": "jjc_npc_name_5", + "npcId": 1773, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_774": { + "id": "npc_774", + "name": "jjc_npc_name_6", + "npcId": 1774, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_775": { + "id": "npc_775", + "name": "jjc_npc_name_1", + "npcId": 1775, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_776": { + "id": "npc_776", + "name": "jjc_npc_name_2", + "npcId": 1776, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_777": { + "id": "npc_777", + "name": "jjc_npc_name_3", + "npcId": 1777, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_778": { + "id": "npc_778", + "name": "jjc_npc_name_4", + "npcId": 1778, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_779": { + "id": "npc_779", + "name": "jjc_npc_name_5", + "npcId": 1779, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_780": { + "id": "npc_780", + "name": "jjc_npc_name_6", + "npcId": 1780, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_781": { + "id": "npc_781", + "name": "jjc_npc_name_1", + "npcId": 1781, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_782": { + "id": "npc_782", + "name": "jjc_npc_name_2", + "npcId": 1782, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_783": { + "id": "npc_783", + "name": "jjc_npc_name_3", + "npcId": 1783, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_784": { + "id": "npc_784", + "name": "jjc_npc_name_4", + "npcId": 1784, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_785": { + "id": "npc_785", + "name": "jjc_npc_name_5", + "npcId": 1785, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_786": { + "id": "npc_786", + "name": "jjc_npc_name_6", + "npcId": 1786, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_787": { + "id": "npc_787", + "name": "jjc_npc_name_1", + "npcId": 1787, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_788": { + "id": "npc_788", + "name": "jjc_npc_name_2", + "npcId": 1788, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_789": { + "id": "npc_789", + "name": "jjc_npc_name_3", + "npcId": 1789, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_790": { + "id": "npc_790", + "name": "jjc_npc_name_4", + "npcId": 1790, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_791": { + "id": "npc_791", + "name": "jjc_npc_name_5", + "npcId": 1791, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_792": { + "id": "npc_792", + "name": "jjc_npc_name_6", + "npcId": 1792, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_793": { + "id": "npc_793", + "name": "jjc_npc_name_1", + "npcId": 1793, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_794": { + "id": "npc_794", + "name": "jjc_npc_name_2", + "npcId": 1794, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_795": { + "id": "npc_795", + "name": "jjc_npc_name_3", + "npcId": 1795, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_796": { + "id": "npc_796", + "name": "jjc_npc_name_4", + "npcId": 1796, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_797": { + "id": "npc_797", + "name": "jjc_npc_name_5", + "npcId": 1797, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_798": { + "id": "npc_798", + "name": "jjc_npc_name_6", + "npcId": 1798, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_799": { + "id": "npc_799", + "name": "jjc_npc_name_1", + "npcId": 1799, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_800": { + "id": "npc_800", + "name": "jjc_npc_name_2", + "npcId": 1800, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_801": { + "id": "npc_801", + "name": "jjc_npc_name_3", + "npcId": 1801, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_802": { + "id": "npc_802", + "name": "jjc_npc_name_4", + "npcId": 1802, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_803": { + "id": "npc_803", + "name": "jjc_npc_name_5", + "npcId": 1803, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_804": { + "id": "npc_804", + "name": "jjc_npc_name_6", + "npcId": 1804, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_805": { + "id": "npc_805", + "name": "jjc_npc_name_1", + "npcId": 1805, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_806": { + "id": "npc_806", + "name": "jjc_npc_name_2", + "npcId": 1806, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_807": { + "id": "npc_807", + "name": "jjc_npc_name_3", + "npcId": 1807, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_808": { + "id": "npc_808", + "name": "jjc_npc_name_4", + "npcId": 1808, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_809": { + "id": "npc_809", + "name": "jjc_npc_name_5", + "npcId": 1809, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_810": { + "id": "npc_810", + "name": "jjc_npc_name_6", + "npcId": 1810, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_811": { + "id": "npc_811", + "name": "jjc_npc_name_1", + "npcId": 1811, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_812": { + "id": "npc_812", + "name": "jjc_npc_name_2", + "npcId": 1812, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_813": { + "id": "npc_813", + "name": "jjc_npc_name_3", + "npcId": 1813, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_814": { + "id": "npc_814", + "name": "jjc_npc_name_4", + "npcId": 1814, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_815": { + "id": "npc_815", + "name": "jjc_npc_name_5", + "npcId": 1815, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_816": { + "id": "npc_816", + "name": "jjc_npc_name_6", + "npcId": 1816, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_817": { + "id": "npc_817", + "name": "jjc_npc_name_1", + "npcId": 1817, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_818": { + "id": "npc_818", + "name": "jjc_npc_name_2", + "npcId": 1818, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_819": { + "id": "npc_819", + "name": "jjc_npc_name_3", + "npcId": 1819, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_820": { + "id": "npc_820", + "name": "jjc_npc_name_4", + "npcId": 1820, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_821": { + "id": "npc_821", + "name": "jjc_npc_name_5", + "npcId": 1821, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_822": { + "id": "npc_822", + "name": "jjc_npc_name_6", + "npcId": 1822, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_823": { + "id": "npc_823", + "name": "jjc_npc_name_1", + "npcId": 1823, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_824": { + "id": "npc_824", + "name": "jjc_npc_name_2", + "npcId": 1824, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_825": { + "id": "npc_825", + "name": "jjc_npc_name_3", + "npcId": 1825, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_826": { + "id": "npc_826", + "name": "jjc_npc_name_4", + "npcId": 1826, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_827": { + "id": "npc_827", + "name": "jjc_npc_name_5", + "npcId": 1827, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_828": { + "id": "npc_828", + "name": "jjc_npc_name_6", + "npcId": 1828, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_829": { + "id": "npc_829", + "name": "jjc_npc_name_1", + "npcId": 1829, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_830": { + "id": "npc_830", + "name": "jjc_npc_name_2", + "npcId": 1830, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_831": { + "id": "npc_831", + "name": "jjc_npc_name_3", + "npcId": 1831, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_832": { + "id": "npc_832", + "name": "jjc_npc_name_4", + "npcId": 1832, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_833": { + "id": "npc_833", + "name": "jjc_npc_name_5", + "npcId": 1833, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_834": { + "id": "npc_834", + "name": "jjc_npc_name_6", + "npcId": 1834, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_835": { + "id": "npc_835", + "name": "jjc_npc_name_1", + "npcId": 1835, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_836": { + "id": "npc_836", + "name": "jjc_npc_name_2", + "npcId": 1836, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_837": { + "id": "npc_837", + "name": "jjc_npc_name_3", + "npcId": 1837, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_838": { + "id": "npc_838", + "name": "jjc_npc_name_4", + "npcId": 1838, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_839": { + "id": "npc_839", + "name": "jjc_npc_name_5", + "npcId": 1839, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_840": { + "id": "npc_840", + "name": "jjc_npc_name_6", + "npcId": 1840, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_841": { + "id": "npc_841", + "name": "jjc_npc_name_1", + "npcId": 1841, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_842": { + "id": "npc_842", + "name": "jjc_npc_name_2", + "npcId": 1842, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_843": { + "id": "npc_843", + "name": "jjc_npc_name_3", + "npcId": 1843, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_844": { + "id": "npc_844", + "name": "jjc_npc_name_4", + "npcId": 1844, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_845": { + "id": "npc_845", + "name": "jjc_npc_name_5", + "npcId": 1845, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_846": { + "id": "npc_846", + "name": "jjc_npc_name_6", + "npcId": 1846, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_847": { + "id": "npc_847", + "name": "jjc_npc_name_1", + "npcId": 1847, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_848": { + "id": "npc_848", + "name": "jjc_npc_name_2", + "npcId": 1848, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_849": { + "id": "npc_849", + "name": "jjc_npc_name_3", + "npcId": 1849, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_850": { + "id": "npc_850", + "name": "jjc_npc_name_4", + "npcId": 1850, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_851": { + "id": "npc_851", + "name": "jjc_npc_name_5", + "npcId": 1851, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_852": { + "id": "npc_852", + "name": "jjc_npc_name_6", + "npcId": 1852, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_853": { + "id": "npc_853", + "name": "jjc_npc_name_1", + "npcId": 1853, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_854": { + "id": "npc_854", + "name": "jjc_npc_name_2", + "npcId": 1854, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_855": { + "id": "npc_855", + "name": "jjc_npc_name_3", + "npcId": 1855, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_856": { + "id": "npc_856", + "name": "jjc_npc_name_4", + "npcId": 1856, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_857": { + "id": "npc_857", + "name": "jjc_npc_name_5", + "npcId": 1857, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_858": { + "id": "npc_858", + "name": "jjc_npc_name_6", + "npcId": 1858, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_859": { + "id": "npc_859", + "name": "jjc_npc_name_1", + "npcId": 1859, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_860": { + "id": "npc_860", + "name": "jjc_npc_name_2", + "npcId": 1860, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_861": { + "id": "npc_861", + "name": "jjc_npc_name_3", + "npcId": 1861, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_862": { + "id": "npc_862", + "name": "jjc_npc_name_4", + "npcId": 1862, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_863": { + "id": "npc_863", + "name": "jjc_npc_name_5", + "npcId": 1863, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_864": { + "id": "npc_864", + "name": "jjc_npc_name_6", + "npcId": 1864, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_865": { + "id": "npc_865", + "name": "jjc_npc_name_1", + "npcId": 1865, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_866": { + "id": "npc_866", + "name": "jjc_npc_name_2", + "npcId": 1866, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_867": { + "id": "npc_867", + "name": "jjc_npc_name_3", + "npcId": 1867, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_868": { + "id": "npc_868", + "name": "jjc_npc_name_4", + "npcId": 1868, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_869": { + "id": "npc_869", + "name": "jjc_npc_name_5", + "npcId": 1869, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_870": { + "id": "npc_870", + "name": "jjc_npc_name_6", + "npcId": 1870, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_871": { + "id": "npc_871", + "name": "jjc_npc_name_1", + "npcId": 1871, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_872": { + "id": "npc_872", + "name": "jjc_npc_name_2", + "npcId": 1872, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_873": { + "id": "npc_873", + "name": "jjc_npc_name_3", + "npcId": 1873, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_874": { + "id": "npc_874", + "name": "jjc_npc_name_4", + "npcId": 1874, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_875": { + "id": "npc_875", + "name": "jjc_npc_name_5", + "npcId": 1875, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_876": { + "id": "npc_876", + "name": "jjc_npc_name_6", + "npcId": 1876, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_877": { + "id": "npc_877", + "name": "jjc_npc_name_1", + "npcId": 1877, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_878": { + "id": "npc_878", + "name": "jjc_npc_name_2", + "npcId": 1878, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_879": { + "id": "npc_879", + "name": "jjc_npc_name_3", + "npcId": 1879, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_880": { + "id": "npc_880", + "name": "jjc_npc_name_4", + "npcId": 1880, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_881": { + "id": "npc_881", + "name": "jjc_npc_name_5", + "npcId": 1881, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_882": { + "id": "npc_882", + "name": "jjc_npc_name_6", + "npcId": 1882, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_883": { + "id": "npc_883", + "name": "jjc_npc_name_1", + "npcId": 1883, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_884": { + "id": "npc_884", + "name": "jjc_npc_name_2", + "npcId": 1884, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_885": { + "id": "npc_885", + "name": "jjc_npc_name_3", + "npcId": 1885, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_886": { + "id": "npc_886", + "name": "jjc_npc_name_4", + "npcId": 1886, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_887": { + "id": "npc_887", + "name": "jjc_npc_name_5", + "npcId": 1887, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_888": { + "id": "npc_888", + "name": "jjc_npc_name_6", + "npcId": 1888, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_889": { + "id": "npc_889", + "name": "jjc_npc_name_1", + "npcId": 1889, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_890": { + "id": "npc_890", + "name": "jjc_npc_name_2", + "npcId": 1890, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_891": { + "id": "npc_891", + "name": "jjc_npc_name_3", + "npcId": 1891, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_892": { + "id": "npc_892", + "name": "jjc_npc_name_4", + "npcId": 1892, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_893": { + "id": "npc_893", + "name": "jjc_npc_name_5", + "npcId": 1893, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_894": { + "id": "npc_894", + "name": "jjc_npc_name_6", + "npcId": 1894, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_895": { + "id": "npc_895", + "name": "jjc_npc_name_1", + "npcId": 1895, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_896": { + "id": "npc_896", + "name": "jjc_npc_name_2", + "npcId": 1896, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_897": { + "id": "npc_897", + "name": "jjc_npc_name_3", + "npcId": 1897, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_898": { + "id": "npc_898", + "name": "jjc_npc_name_4", + "npcId": 1898, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_899": { + "id": "npc_899", + "name": "jjc_npc_name_5", + "npcId": 1899, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_900": { + "id": "npc_900", + "name": "jjc_npc_name_6", + "npcId": 1900, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_901": { + "id": "npc_901", + "name": "jjc_npc_name_1", + "npcId": 1901, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_902": { + "id": "npc_902", + "name": "jjc_npc_name_2", + "npcId": 1902, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_903": { + "id": "npc_903", + "name": "jjc_npc_name_3", + "npcId": 1903, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_904": { + "id": "npc_904", + "name": "jjc_npc_name_4", + "npcId": 1904, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_905": { + "id": "npc_905", + "name": "jjc_npc_name_5", + "npcId": 1905, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_906": { + "id": "npc_906", + "name": "jjc_npc_name_6", + "npcId": 1906, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_907": { + "id": "npc_907", + "name": "jjc_npc_name_1", + "npcId": 1907, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_908": { + "id": "npc_908", + "name": "jjc_npc_name_2", + "npcId": 1908, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_909": { + "id": "npc_909", + "name": "jjc_npc_name_3", + "npcId": 1909, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_910": { + "id": "npc_910", + "name": "jjc_npc_name_4", + "npcId": 1910, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_911": { + "id": "npc_911", + "name": "jjc_npc_name_5", + "npcId": 1911, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_912": { + "id": "npc_912", + "name": "jjc_npc_name_6", + "npcId": 1912, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_913": { + "id": "npc_913", + "name": "jjc_npc_name_1", + "npcId": 1913, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_914": { + "id": "npc_914", + "name": "jjc_npc_name_2", + "npcId": 1914, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_915": { + "id": "npc_915", + "name": "jjc_npc_name_3", + "npcId": 1915, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_916": { + "id": "npc_916", + "name": "jjc_npc_name_4", + "npcId": 1916, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_917": { + "id": "npc_917", + "name": "jjc_npc_name_5", + "npcId": 1917, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_918": { + "id": "npc_918", + "name": "jjc_npc_name_6", + "npcId": 1918, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_919": { + "id": "npc_919", + "name": "jjc_npc_name_1", + "npcId": 1919, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_920": { + "id": "npc_920", + "name": "jjc_npc_name_2", + "npcId": 1920, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_921": { + "id": "npc_921", + "name": "jjc_npc_name_3", + "npcId": 1921, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_922": { + "id": "npc_922", + "name": "jjc_npc_name_4", + "npcId": 1922, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_923": { + "id": "npc_923", + "name": "jjc_npc_name_5", + "npcId": 1923, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_924": { + "id": "npc_924", + "name": "jjc_npc_name_6", + "npcId": 1924, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_925": { + "id": "npc_925", + "name": "jjc_npc_name_1", + "npcId": 1925, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_926": { + "id": "npc_926", + "name": "jjc_npc_name_2", + "npcId": 1926, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_927": { + "id": "npc_927", + "name": "jjc_npc_name_3", + "npcId": 1927, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_928": { + "id": "npc_928", + "name": "jjc_npc_name_4", + "npcId": 1928, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_929": { + "id": "npc_929", + "name": "jjc_npc_name_5", + "npcId": 1929, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_930": { + "id": "npc_930", + "name": "jjc_npc_name_6", + "npcId": 1930, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_931": { + "id": "npc_931", + "name": "jjc_npc_name_1", + "npcId": 1931, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_932": { + "id": "npc_932", + "name": "jjc_npc_name_2", + "npcId": 1932, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_933": { + "id": "npc_933", + "name": "jjc_npc_name_3", + "npcId": 1933, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_934": { + "id": "npc_934", + "name": "jjc_npc_name_4", + "npcId": 1934, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_935": { + "id": "npc_935", + "name": "jjc_npc_name_5", + "npcId": 1935, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_936": { + "id": "npc_936", + "name": "jjc_npc_name_6", + "npcId": 1936, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_937": { + "id": "npc_937", + "name": "jjc_npc_name_1", + "npcId": 1937, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_938": { + "id": "npc_938", + "name": "jjc_npc_name_2", + "npcId": 1938, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_939": { + "id": "npc_939", + "name": "jjc_npc_name_3", + "npcId": 1939, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_940": { + "id": "npc_940", + "name": "jjc_npc_name_4", + "npcId": 1940, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_941": { + "id": "npc_941", + "name": "jjc_npc_name_5", + "npcId": 1941, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_942": { + "id": "npc_942", + "name": "jjc_npc_name_6", + "npcId": 1942, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_943": { + "id": "npc_943", + "name": "jjc_npc_name_1", + "npcId": 1943, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_944": { + "id": "npc_944", + "name": "jjc_npc_name_2", + "npcId": 1944, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_945": { + "id": "npc_945", + "name": "jjc_npc_name_3", + "npcId": 1945, + "rongyu": 1000, + "power": 1000, + "lv": 53 + }, + "npc_946": { + "id": "npc_946", + "name": "jjc_npc_name_4", + "npcId": 1946, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_947": { + "id": "npc_947", + "name": "jjc_npc_name_5", + "npcId": 1947, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_948": { + "id": "npc_948", + "name": "jjc_npc_name_6", + "npcId": 1948, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_949": { + "id": "npc_949", + "name": "jjc_npc_name_1", + "npcId": 1949, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_950": { + "id": "npc_950", + "name": "jjc_npc_name_2", + "npcId": 1950, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_951": { + "id": "npc_951", + "name": "jjc_npc_name_3", + "npcId": 1951, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_952": { + "id": "npc_952", + "name": "jjc_npc_name_4", + "npcId": 1952, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_953": { + "id": "npc_953", + "name": "jjc_npc_name_5", + "npcId": 1953, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_954": { + "id": "npc_954", + "name": "jjc_npc_name_6", + "npcId": 1954, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_955": { + "id": "npc_955", + "name": "jjc_npc_name_1", + "npcId": 1955, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_956": { + "id": "npc_956", + "name": "jjc_npc_name_2", + "npcId": 1956, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_957": { + "id": "npc_957", + "name": "jjc_npc_name_3", + "npcId": 1957, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_958": { + "id": "npc_958", + "name": "jjc_npc_name_4", + "npcId": 1958, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_959": { + "id": "npc_959", + "name": "jjc_npc_name_5", + "npcId": 1959, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_960": { + "id": "npc_960", + "name": "jjc_npc_name_6", + "npcId": 1960, + "rongyu": 1000, + "power": 1000, + "lv": 45 + }, + "npc_961": { + "id": "npc_961", + "name": "jjc_npc_name_1", + "npcId": 1961, + "rongyu": 1000, + "power": 1000, + "lv": 40 + }, + "npc_962": { + "id": "npc_962", + "name": "jjc_npc_name_2", + "npcId": 1962, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_963": { + "id": "npc_963", + "name": "jjc_npc_name_3", + "npcId": 1963, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_964": { + "id": "npc_964", + "name": "jjc_npc_name_4", + "npcId": 1964, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_965": { + "id": "npc_965", + "name": "jjc_npc_name_5", + "npcId": 1965, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_966": { + "id": "npc_966", + "name": "jjc_npc_name_6", + "npcId": 1966, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_967": { + "id": "npc_967", + "name": "jjc_npc_name_1", + "npcId": 1967, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_968": { + "id": "npc_968", + "name": "jjc_npc_name_2", + "npcId": 1968, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_969": { + "id": "npc_969", + "name": "jjc_npc_name_3", + "npcId": 1969, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_970": { + "id": "npc_970", + "name": "jjc_npc_name_4", + "npcId": 1970, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_971": { + "id": "npc_971", + "name": "jjc_npc_name_5", + "npcId": 1971, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_972": { + "id": "npc_972", + "name": "jjc_npc_name_6", + "npcId": 1972, + "rongyu": 1000, + "power": 1000, + "lv": 41 + }, + "npc_973": { + "id": "npc_973", + "name": "jjc_npc_name_1", + "npcId": 1973, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_974": { + "id": "npc_974", + "name": "jjc_npc_name_2", + "npcId": 1974, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_975": { + "id": "npc_975", + "name": "jjc_npc_name_3", + "npcId": 1975, + "rongyu": 1000, + "power": 1000, + "lv": 55 + }, + "npc_976": { + "id": "npc_976", + "name": "jjc_npc_name_4", + "npcId": 1976, + "rongyu": 1000, + "power": 1000, + "lv": 54 + }, + "npc_977": { + "id": "npc_977", + "name": "jjc_npc_name_5", + "npcId": 1977, + "rongyu": 1000, + "power": 1000, + "lv": 60 + }, + "npc_978": { + "id": "npc_978", + "name": "jjc_npc_name_6", + "npcId": 1978, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_979": { + "id": "npc_979", + "name": "jjc_npc_name_1", + "npcId": 1979, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_980": { + "id": "npc_980", + "name": "jjc_npc_name_2", + "npcId": 1980, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_981": { + "id": "npc_981", + "name": "jjc_npc_name_3", + "npcId": 1981, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_982": { + "id": "npc_982", + "name": "jjc_npc_name_4", + "npcId": 1982, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_983": { + "id": "npc_983", + "name": "jjc_npc_name_5", + "npcId": 1983, + "rongyu": 1000, + "power": 1000, + "lv": 44 + }, + "npc_984": { + "id": "npc_984", + "name": "jjc_npc_name_6", + "npcId": 1984, + "rongyu": 1000, + "power": 1000, + "lv": 56 + }, + "npc_985": { + "id": "npc_985", + "name": "jjc_npc_name_1", + "npcId": 1985, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_986": { + "id": "npc_986", + "name": "jjc_npc_name_2", + "npcId": 1986, + "rongyu": 1000, + "power": 1000, + "lv": 50 + }, + "npc_987": { + "id": "npc_987", + "name": "jjc_npc_name_3", + "npcId": 1987, + "rongyu": 1000, + "power": 1000, + "lv": 52 + }, + "npc_988": { + "id": "npc_988", + "name": "jjc_npc_name_4", + "npcId": 1988, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_989": { + "id": "npc_989", + "name": "jjc_npc_name_5", + "npcId": 1989, + "rongyu": 1000, + "power": 1000, + "lv": 57 + }, + "npc_990": { + "id": "npc_990", + "name": "jjc_npc_name_6", + "npcId": 1990, + "rongyu": 1000, + "power": 1000, + "lv": 59 + }, + "npc_991": { + "id": "npc_991", + "name": "jjc_npc_name_1", + "npcId": 1991, + "rongyu": 1000, + "power": 1000, + "lv": 51 + }, + "npc_992": { + "id": "npc_992", + "name": "jjc_npc_name_2", + "npcId": 1992, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_993": { + "id": "npc_993", + "name": "jjc_npc_name_3", + "npcId": 1993, + "rongyu": 1000, + "power": 1000, + "lv": 58 + }, + "npc_994": { + "id": "npc_994", + "name": "jjc_npc_name_4", + "npcId": 1994, + "rongyu": 1000, + "power": 1000, + "lv": 47 + }, + "npc_995": { + "id": "npc_995", + "name": "jjc_npc_name_5", + "npcId": 1995, + "rongyu": 1000, + "power": 1000, + "lv": 49 + }, + "npc_996": { + "id": "npc_996", + "name": "jjc_npc_name_6", + "npcId": 1996, + "rongyu": 1000, + "power": 1000, + "lv": 43 + }, + "npc_997": { + "id": "npc_997", + "name": "jjc_npc_name_1", + "npcId": 1997, + "rongyu": 1000, + "power": 1000, + "lv": 48 + }, + "npc_998": { + "id": "npc_998", + "name": "jjc_npc_name_2", + "npcId": 1998, + "rongyu": 1000, + "power": 1000, + "lv": 46 + }, + "npc_999": { + "id": "npc_999", + "name": "jjc_npc_name_3", + "npcId": 1999, + "rongyu": 1000, + "power": 1000, + "lv": 42 + }, + "npc_1000": { + "id": "npc_1000", + "name": "jjc_npc_name_4", + "npcId": 2000, + "rongyu": 1000, + "power": 1000, + "lv": 52 + } +} \ No newline at end of file diff --git a/src/json/jjc_ph.json b/src/json/jjc_ph.json new file mode 100644 index 0000000..ad12d71 --- /dev/null +++ b/src/json/jjc_ph.json @@ -0,0 +1,142 @@ +{ + "1": { + "id": 1, + "ph": [ + 1, + 1 + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + }, + { + "a": "item", + "t": "607", + "n": 5 + } + ], + "rongyuprize": 3000 + }, + "2": { + "id": 2, + "ph": [ + 2, + 3 + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 180 + }, + { + "a": "item", + "t": "607", + "n": 4 + } + ], + "rongyuprize": "3000-(a-1)*15" + }, + "3": { + "id": 3, + "ph": [ + 4, + 10 + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 160 + }, + { + "a": "item", + "t": "607", + "n": 3 + } + ], + "rongyuprize": "3000-(a-1)*15" + }, + "4": { + "id": 4, + "ph": [ + 11, + 100 + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 140 + }, + { + "a": "item", + "t": "607", + "n": 2 + } + ], + "rongyuprize": "3000-(a-1)*15" + }, + "5": { + "id": 5, + "ph": [ + 101, + 200 + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + }, + { + "a": "item", + "t": "607", + "n": 2 + } + ], + "rongyuprize": "1800-a*3" + }, + "6": { + "id": 6, + "ph": [ + 201, + 500 + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 80 + }, + { + "a": "item", + "t": "607", + "n": 2 + } + ], + "rongyuprize": "1800-a*3" + }, + "7": { + "id": 7, + "ph": [ + 501, + 1000 + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 60 + }, + { + "a": "item", + "t": "607", + "n": 1 + } + ], + "rongyuprize": 300 + } +} \ No newline at end of file diff --git a/src/json/jjc_tz.json b/src/json/jjc_tz.json new file mode 100644 index 0000000..13cb559 --- /dev/null +++ b/src/json/jjc_tz.json @@ -0,0 +1,144 @@ +{ + "1": { + "id": 1, + "num": 1, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 10000 + }, + { + "a": "item", + "t": "11", + "n": 50 + } + ] + }, + "2": { + "id": 2, + "num": 3, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 20000 + }, + { + "a": "item", + "t": "11", + "n": 50 + } + ] + }, + "3": { + "id": 3, + "num": 5, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 30000 + }, + { + "a": "item", + "t": "11", + "n": 100 + }, + { + "a": "item", + "t": "1", + "n": 10000 + } + ] + }, + "4": { + "id": 4, + "num": 7, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 40000 + }, + { + "a": "item", + "t": "11", + "n": 100 + }, + { + "a": "item", + "t": "1", + "n": 20000 + } + ] + }, + "5": { + "id": 5, + "num": 9, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 60000 + }, + { + "a": "item", + "t": "11", + "n": 150 + }, + { + "a": "item", + "t": "1", + "n": 30000 + } + ] + }, + "6": { + "id": 6, + "num": 11, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 80000 + }, + { + "a": "item", + "t": "11", + "n": 150 + }, + { + "a": "item", + "t": "1", + "n": 40000 + } + ] + }, + "7": { + "id": 7, + "num": 15, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "11", + "n": 200 + }, + { + "a": "item", + "t": "1", + "n": 80000 + }, + { + "a": "item", + "t": "12", + "n": 200 + } + ] + } +} \ No newline at end of file diff --git a/src/json/kaifukuanghuan.json5 b/src/json/kaifukuanghuan.json5 new file mode 100644 index 0000000..4e98ca3 --- /dev/null +++ b/src/json/kaifukuanghuan.json5 @@ -0,0 +1,184 @@ +{ + //登陆奖励 + loginPrize: [ + [{ a: 'equip', t: '3003', n: 1 }], + [{ a: 'item', t: '618', n: 1 }], + [{ a: 'item', t: '12', n: 200 }], + [{ a: 'item', t: '2', n: 400 }], + [{ a: 'attr', t: 'rmbmoney', n: 1500 }], + [{ a: 'attr', t: 'jinbi', n: 300000 }], + [{ a: 'item', t: '617', n: 1 }] + ], + //商品 + shop: [ + { buyNum: 1, day: 1, vip: 1, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 400 }], prize: [{ a: 'item', t: '2', n: 1000 }] }, + { buyNum: 1, day: 1, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1200 }], prize: [{ a: 'hero', t: '4010', n: 1 }] }, + { buyNum: 1, day: 2, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 680 }], prize: [{ a: 'item', t: '27', n: 5000 }] }, + { buyNum: 1, day: 2, vip: 3, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 500 }], prize: [{ a: 'item', t: '620', n: 1 }] }, + { buyNum: 1, day: 3, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 670 }], prize: [{ a: 'item', t: '6', n: 20 }] }, + { buyNum: 1, day: 3, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 670 }], prize: [{ a: 'item', t: '615', n: 1 }] }, + { buyNum: 1, day: 4, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 600 }], prize: [{ a: 'item', t: '12', n: 800 }] }, + { buyNum: 1, day: 4, vip: 5, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1340 }], prize: [{ a: 'item', t: '621', n: 1 }] }, + { buyNum: 1, day: 5, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1250 }], prize: [{ a: 'item', t: '1', n: 3000000 }] }, + { buyNum: 1, day: 5, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1340 }], prize: [{ a: 'item', t: '621', n: 1 }] }, + { buyNum: 1, day: 6, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 625 }], prize: [{ a: 'attr', t: 'jinbi', n: 10000000 }] }, + { buyNum: 1, day: 6, vip: 6, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 4440 }], prize: [{ a: 'item', t: '18', n: 888 }] }, + { buyNum: 1, day: 7, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 500 }], prize: [{ a: 'item', t: '24', n: 10 }] }, + { buyNum: 1, day: 7, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 4500 }], prize: [{ a: 'item', t: '617', n: 1 }] }, + { buyNum: 1, day: 7, vip: 7, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1340 }], prize: [{ a: 'item', t: '625', n: 1 }] }, + ], + //任务 + taskType: { + '今日登陆': 'toDayLogin_x', + '今日累计充值x元': 'toDayPay_x', + '任意装备强化至x级': 'equip_qh_lv', + '竞技场排名达到x': 'jjc_rank', + '同时出战x名紫色干部': 'fight_hero_colour_4', + '通过黑暗塔关卡': 'zccg_level', + '拥有x件蓝色及以上装备': 'has_equip_color_3', + '拥有x名进阶+1的干部': 'has_hero_jieji_1', + '佣兵助战上阵x个干部 ': 'helpHeros', + '维修厂老实轿车突破到x阶x星 ': 'wxcLv', + '干部羁绊属性激活x条 ': 'hero_jiban', + '玩家等级达到x级': 'lv', + '玩家总战力达到x': 'power', + '主线关卡': 'mapId' + }, + task: { + '1': [ + { taskId:'intr_task_name_444', taskType: 'toDayLogin_1', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 100 },{ a:'attr', t:'jinbi', n: 20000 }],"tiaozhuan": 24 }, + { taskId:'intr_task_name_430', taskType: 'toDayPay_1', total: 100, prize: [{ a:'attr', t:'rmbmoney', n: 500 },{ a:'item', t:'2', n: 500 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_431', taskType: 'toDayPay_1', total: 300, prize: [{ a:'attr', t:'rmbmoney', n: 600 },{ a:'item', t:'12', n: 500 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_432', taskType: 'toDayPay_1', total: 500, prize: [{ a:'attr', t:'rmbmoney', n: 800 },{ a:'item', t:'2', n: 2000 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_433', taskType: 'toDayPay_1', total: 800, prize: [{ a:'attr', t:'rmbmoney', n: 1000 },{ a:'item', t:'12', n: 1000 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_434', taskType: 'mapId' , total: 20, prize: [{ a:'attr', t:'jinbi', n: 10000 },{ a:'item', t:'12', n: 30 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_435', taskType: 'mapId' , total: 30, prize: [{ a:'attr', t:'jinbi', n: 20000 },{ a:'item', t:'12', n: 30 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_436', taskType: 'mapId' , total: 40, prize: [{ a:'attr', t:'jinbi', n: 30000 },{ a:'item', t:'12', n: 30 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_437', taskType: 'mapId' , total: 50, prize: [{ a:'attr', t:'jinbi', n: 40000 },{ a:'item', t:'12', n: 50 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_438', taskType: 'mapId' , total: 60, prize: [{ a:'attr', t:'jinbi', n: 100000 },{ a:'item', t:'12', n: 50 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_439', taskType: 'equip_qh_lv', total: 10, prize: [{ a:'attr', t:'jinbi', n: 10000 },{ a:'item', t:'2', n: 20 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_440', taskType: 'equip_qh_lv', total: 20, prize: [{ a:'attr', t:'jinbi', n: 20000 },{ a:'item', t:'2', n: 30 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_441', taskType: 'equip_qh_lv', total: 30, prize: [{ a:'attr', t:'jinbi', n: 30000 },{ a:'item', t:'2', n: 50 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_442', taskType: 'equip_qh_lv', total: 40, prize: [{ a:'attr', t:'jinbi', n: 40000 },{ a:'item', t:'2', n: 100 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_443', taskType: 'equip_qh_lv', total: 50, prize: [{ a:'attr', t:'jinbi', n: 100000 },{ a:'item', t:'2', n: 150 }],"tiaozhuan": 2 } + ], + '2': [ + { taskId:'intr_task_name_444', taskType: 'toDayLogin_2', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 150 },{ a:'item', t:'618', n: 1 },{ a:'item', t:'12', n: 100 }],"tiaozhuan": 24 }, + { taskId:'intr_task_name_445', taskType: 'toDayPay_2', total: 200, prize: [{ a:'attr', t:'rmbmoney', n: 1000 },{ a:'item', t:'616', n: 5 },{ a:'item', t:'600', n: 2 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_446', taskType: 'toDayPay_2', total: 400, prize: [{ a:'attr', t:'rmbmoney', n: 600 },{ a:'attr', t:'nexp', n: 10000 },{ a:'item', t:'616', n: 5 },{ a:'item', t:'600', n: 3 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_447', taskType: 'toDayPay_2', total: 600, prize: [{ a:'attr', t:'rmbmoney', n: 800 },{ a:'attr', t:'nexp', n: 40000 },{ a:'item', t:'616', n: 10 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_448', taskType: 'toDayPay_2', total: 800, prize: [{ a:'attr', t:'rmbmoney', n: 1000 },{ a:'attr', t:'nexp', n: 100000 },{ a:'item', t:'616', n: 20 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_449', taskType: 'jjc_rank', total: 100, prize: [{ a:'attr', t:'rmbmoney', n: 100 }],"tiaozhuan": 28 }, + { taskId:'intr_task_name_450', taskType: 'jjc_rank', total: 50, prize: [{ a:'attr', t:'rmbmoney', n: 150 }],"tiaozhuan": 28 }, + { taskId:'intr_task_name_451', taskType: 'jjc_rank', total: 20, prize: [{ a:'attr', t:'rmbmoney', n: 200 }],"tiaozhuan": 28 }, + { taskId:'intr_task_name_452', taskType: 'jjc_rank', total: 10, prize: [{ a:'attr', t:'rmbmoney', n: 250 }],"tiaozhuan": 28 }, + { taskId:'intr_task_name_453', taskType: 'jjc_rank', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 300 }],"tiaozhuan": 28 }, + { taskId:'intr_task_name_454', taskType: 'fight_hero_colour_4', total: 2, prize: [{ a:'item', t:'2', n: 20 },{ a:'attr', t:'jinbi', n: 10000 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_455', taskType: 'fight_hero_colour_4', total: 3, prize: [{ a:'item', t:'2', n: 30 },{ a:'attr', t:'jinbi', n: 20000 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_456', taskType: 'fight_hero_colour_4', total: 4, prize: [{ a:'item', t:'2', n: 50 },{ a:'attr', t:'jinbi', n: 30000 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_457', taskType: 'fight_hero_colour_4', total: 5, prize: [{ a:'item', t:'2', n: 100 },{ a:'attr', t:'jinbi', n: 40000 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_458', taskType: 'fight_hero_colour_4', total: 6, prize: [{ a:'item', t:'2', n: 150 },{ a:'attr', t:'jinbi', n: 100000 }],"tiaozhuan": 2 } + ], + '3': [ + { taskId:'intr_task_name_459', taskType: 'toDayLogin_3', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 200 },{ a:'equip', t:'3003', n: 1 },{ a:'item', t:'2', n: 200 }],"tiaozhuan": 24 }, + { taskId:'intr_task_name_460', taskType: 'toDayPay_3', total: 300, prize: [{ a:'attr', t:'rmbmoney', n: 1500 },{ a:'item', t:'23', n: 50000 },{ a:'item', t:'601', n: 2 },{ a:'item', t:'600', n: 2 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_461', taskType: 'toDayPay_3', total: 500, prize: [{ a:'item', t:'12', n: 2500 },{ a:'attr', t:'nexp', n: 10000 },{ a:'item', t:'601', n: 5 },{ a:'item', t:'600', n: 3 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_462', taskType: 'toDayPay_3', total: 1000, prize: [{ a:'item', t:'2', n: 5000 },{ a:'attr', t:'nexp', n: 40000 },{ a:'item', t:'601', n: 10 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_463', taskType: 'toDayPay_3', total: 1500, prize: [{ a:'attr', t:'rmbmoney', n: 2000 },{ a:'attr', t:'nexp', n: 100000 },{ a:'item', t:'601', n: 20 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_464', taskType: 'zccg_level', total: 15, prize: [{ a:'item', t:'23', n: 10000 },{ a:'item', t:'26', n: 1 }],"tiaozhuan": 29 }, + { taskId:'intr_task_name_465', taskType: 'zccg_level', total: 17, prize: [{ a:'item', t:'23', n: 20000 },{ a:'item', t:'26', n: 2 }],"tiaozhuan": 29 }, + { taskId:'intr_task_name_466', taskType: 'zccg_level', total: 19, prize: [{ a:'item', t:'23', n: 20000 },{ a:'item', t:'26', n: 3 }],"tiaozhuan": 29 }, + { taskId:'intr_task_name_467', taskType: 'zccg_level', total: 22, prize: [{ a:'item', t:'23', n: 25000 },{ a:'item', t:'26', n: 4 }],"tiaozhuan": 29 }, + { taskId:'intr_task_name_468', taskType: 'zccg_level', total: 25, prize: [{ a:'item', t:'23', n: 25000 },{ a:'item', t:'26', n: 5 }],"tiaozhuan": 29 }, + { taskId:'intr_task_name_469', taskType: 'has_equip_color_3', total: 8, prize: [{ a:'item', t:'23', n: 10000 },{ a:'item', t:'70002', n: 1 }],"tiaozhuan": 8 }, + { taskId:'intr_task_name_470', taskType: 'has_equip_color_3', total: 12, prize: [{ a:'item', t:'23', n: 20000 },{ a:'item', t:'70002', n: 1 }],"tiaozhuan": 8 }, + { taskId:'intr_task_name_471', taskType: 'has_equip_color_4', total: 2, prize: [{ a:'item', t:'23', n: 20000 },{ a:'item', t:'70004', n: 1 }],"tiaozhuan": 8 }, + { taskId:'intr_task_name_472', taskType: 'has_equip_color_4', total: 4, prize: [{ a:'item', t:'23', n: 25000 },{ a:'item', t:'70004', n: 1 }],"tiaozhuan": 8 }, + { taskId:'intr_task_name_473', taskType: 'has_equip_color_4', total: 6, prize: [{ a:'item', t:'23', n: 25000 },{ a:'item', t:'70005', n: 1 }],"tiaozhuan": 8 } + ], + '4': [ + { taskId:'intr_task_name_474', taskType: 'toDayLogin_4', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 250 },{ a:'item', t:'12', n: 100 }],"tiaozhuan": 24 }, + { taskId:'intr_task_name_475', taskType: 'toDayPay_4', total: 500, prize: [{ a:'attr', t:'rmbmoney', n: 2500 },{ a:'item', t:'12', n: 1800 },{ a:'item', t:'616', n: 10 },{ a:'item', t:'600', n: 2 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_476', taskType: 'toDayPay_4', total: 800, prize: [{ a:'item', t:'12', n: 3000 },{ a:'attr', t:'nexp', n: 100000 },{ a:'item', t:'616', n: 10 },{ a:'item', t:'600', n: 3 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_477', taskType: 'toDayPay_4', total: 1500, prize: [{ a:'item', t:'9', n: 1250 },{ a:'attr', t:'nexp', n: 200000 },{ a:'item', t:'601', n: 10 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_478', taskType: 'toDayPay_4', total: 2000, prize: [{ a:'attr', t:'rmbmoney', n: 5000 },{ a:'attr', t:'nexp', n: 300000 },{ a:'item', t:'601', n: 10 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_479', taskType: 'mapId' , total: 70, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 1 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_480', taskType: 'mapId' , total: 75, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 2 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_481', taskType: 'mapId' , total: 80, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 3 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_482', taskType: 'mapId' , total: 85, prize: [{ a:'item', t:'12', n: 50 },{ a:'item', t:'25', n: 4 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_483', taskType: 'mapId' , total: 90, prize: [{ a:'item', t:'12', n: 50 },{ a:'item', t:'25', n: 5 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_484', taskType: 'has_hero_jieji_1', total: 6, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 20 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_485', taskType: 'has_hero_jieji_2', total: 5, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 30 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_486', taskType: 'has_hero_jieji_3', total: 3, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 50 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_487', taskType: 'has_hero_jieji_4', total: 1, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 100 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_488', taskType: 'has_hero_jieji_4', total: 2, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 150 }],"tiaozhuan": 2 } + ], + '5': [ + { taskId:'intr_task_name_489', taskType: 'toDayLogin_5', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 300 },{ a:'item', t:'2', n: 200 }],"tiaozhuan": 24 }, + { taskId:'intr_task_name_490', taskType: 'toDayPay_5', total: 1000, prize: [{ a:'attr', t:'rmbmoney', n: 5000 },{ a:'item', t:'600', n: 2 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_491', taskType: 'toDayPay_5', total: 1500, prize: [{ a:'item', t:'10', n: 250 },{ a:'attr', t:'nexp', n: 250000 },{ a:'item', t:'6', n: 40 },{ a:'item', t:'600', n: 3 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_492', taskType: 'toDayPay_5', total: 2000, prize: [{ a:'item', t:'9', n: 3000 },{ a:'attr', t:'nexp', n: 300000 },{ a:'item', t:'6', n: 50 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_493', taskType: 'toDayPay_5', total: 2800, prize: [{ a:'attr', t:'rmbmoney', n: 10000 },{ a:'attr', t:'nexp', n: 500000 },{ a:'item', t:'6', n: 60 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_494', taskType: 'helpHeros', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 50 },{ a:'item', t:'70004', n: 1 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_495', taskType: 'helpHeros', total: 2, prize: [{ a:'attr', t:'rmbmoney', n: 100 },{ a:'item', t:'70004', n: 1 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_496', taskType: 'helpHeros', total: 3, prize: [{ a:'attr', t:'rmbmoney', n: 150 },{ a:'item', t:'70005', n: 1 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_497', taskType: 'helpHeros', total: 4, prize: [{ a:'attr', t:'rmbmoney', n: 200 },{ a:'item', t:'70005', n: 1 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_498', taskType: 'helpHeros', total: 5, prize: [{ a:'attr', t:'rmbmoney', n: 250 },{ a:'item', t:'70006', n: 1 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_499', taskType: 'mapId' , total: 100, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 1 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_500', taskType: 'mapId' , total: 115, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 2 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_501', taskType: 'mapId' , total: 130, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 3 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_502', taskType: 'mapId' , total: 150, prize: [{ a:'item', t:'12', n: 50 },{ a:'item', t:'25', n: 4 }],"tiaozhuan": 3 }, + { taskId:'intr_task_name_503', taskType: 'mapId' , total: 170, prize: [{ a:'item', t:'12', n: 50 },{ a:'item', t:'25', n: 5 }],"tiaozhuan": 3 } + ], + '6': [ + { taskId:'intr_task_name_504', taskType: 'toDayLogin_6', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 350 },{ a:'attr', t:'jinbi', n: 300000 }],"tiaozhuan": 24 }, + { taskId:'intr_task_name_505', taskType: 'toDayPay_6', total: 1500, prize: [{ a:'attr', t:'rmbmoney', n: 7500 },{ a:'item', t:'6', n: 40 },{ a:'item', t:'617', n: 3 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_506', taskType: 'toDayPay_6', total: 2800, prize: [{ a:'item', t:'2', n: 4500 },{ a:'item', t:'6', n: 60 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_507', taskType: 'toDayPay_6', total: 4200, prize: [{ a:'item', t:'29', n: 800 },{ a:'item', t:'6', n: 70 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_508', taskType: 'toDayPay_6', total: 5500, prize: [{ a:'attr', t:'rmbmoney', n: 15000 },{ a:'item', t:'6', n: 80 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_509', taskType: 'wxcLv', total: 22, prize: [{ a:'item', t:'44', n: 5 }],"tiaozhuan": 6 }, + { taskId:'intr_task_name_510', taskType: 'wxcLv', total: 24, prize: [{ a:'item', t:'45', n: 5 }],"tiaozhuan": 6 }, + { taskId:'intr_task_name_511', taskType: 'wxcLv', total: 26, prize: [{ a:'item', t:'46', n: 5 }],"tiaozhuan": 6 }, + { taskId:'intr_task_name_512', taskType: 'wxcLv', total: 28, prize: [{ a:'item', t:'44', n: 5 },{ a:'item', t:'46', n: 5 }],"tiaozhuan": 6 }, + { taskId:'intr_task_name_513', taskType: 'wxcLv', total: 30, prize: [{ a:'item', t:'46', n: 5 },{ a:'item', t:'45', n: 5 }],"tiaozhuan": 6 }, + { taskId:'intr_task_name_514', taskType: 'hero_jiban', total: 12, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 20 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_515', taskType: 'hero_jiban', total: 14, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 30 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_516', taskType: 'hero_jiban', total: 16, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 50 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_517', taskType: 'hero_jiban', total: 18, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 100 }],"tiaozhuan": 2 }, + { taskId:'intr_task_name_518', taskType: 'hero_jiban', total: 20, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 150 }],"tiaozhuan": 2 } + ], + '7': [ + { taskId:'intr_task_name_519', taskType: 'toDayLogin_7', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 400 },{ a:'item', t:'617', n: 1 }],"tiaozhuan": 24 }, + { taskId:'intr_task_name_520', taskType: 'toDayPay_7', total: 1500, prize: [{ a:'attr', t:'rmbmoney', n: 7500 },{ a:'item', t:'24', n: 20 },{ a:'item', t:'617', n: 3 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_521', taskType: 'toDayPay_7', total: 2800, prize: [{ a:'item', t:'10', n: 120 },{ a:'item', t:'29', n: 500 },{ a:'item', t:'6', n: 60 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_522', taskType: 'toDayPay_7', total: 4200, prize: [{ a:'item', t:'9', n: 2000 },{ a:'item', t:'29', n: 1000 },{ a:'item', t:'6', n: 70 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_523', taskType: 'toDayPay_7', total: 5500, prize: [{ a:'attr', t:'rmbmoney', n: 15000 },{ a:'item', t:'20', n: 230 },{ a:'item', t:'6', n: 80 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, + { taskId:'intr_task_name_524', taskType: 'lv', total: 35, prize: [{ a:'attr', t:'rmbmoney', n: 50 },{ a:'item', t:'6', n: 1 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_525', taskType: 'lv', total: 38, prize: [{ a:'attr', t:'rmbmoney', n: 100 },{ a:'item', t:'6', n: 2 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_526', taskType: 'lv', total: 41, prize: [{ a:'attr', t:'rmbmoney', n: 150 },{ a:'item', t:'6', n: 3 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_527', taskType: 'lv', total: 44, prize: [{ a:'attr', t:'rmbmoney', n: 200 },{ a:'item', t:'6', n: 4 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_528', taskType: 'lv', total: 47, prize: [{ a:'attr', t:'rmbmoney', n: 250 },{ a:'item', t:'6', n: 5 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_529', taskType: 'power' , total: 200000, prize: [{ a:'attr', t:'rmbmoney', n: 50 },{ a:'item', t:'2', n: 20 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_530', taskType: 'power' , total: 400000, prize: [{ a:'attr', t:'rmbmoney', n: 100 },{ a:'item', t:'2', n: 30 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_531', taskType: 'power' , total: 600000, prize: [{ a:'attr', t:'rmbmoney', n: 150 },{ a:'item', t:'2', n: 50 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_532', taskType: 'power' , total: 1200000, prize: [{ a:'attr', t:'rmbmoney', n: 200 },{ a:'item', t:'2', n: 100 }],"tiaozhuan": 1 }, + { taskId:'intr_task_name_533', taskType: 'power' , total: 1800000, prize: [{ a:'attr', t:'rmbmoney', n: 250 },{ a:'item', t:'2', n: 150 }],"tiaozhuan": 1 } + ], + }, + //宝箱奖励 + taskBoxPrize: [ + { total: 60, prize: [{ a: 'attr', t: 'rmbmoney', n: 100 },{ a: 'item', t: '12', n: 200 },{ a: 'item', t: '2', n: 100 }] }, + { total: 70, prize: [{ a: 'attr', t: 'rmbmoney', n: 200 },{ a: 'item', t: '21', n: 200 },{ a: 'attr', t: 'jinbi', n: 2000000 }] }, + { total: 80, prize: [{ a: 'attr', t: 'rmbmoney', n: 300 },{ a: 'item', t: '10', n: 30 },{ a: 'item', t: '9', n: 200 }] }, + { total: 90, prize: [{ a: 'attr', t: 'rmbmoney', n: 500 },{ a: 'item', t: '19', n: 30 },{ a: 'item', t: '2', n: 300 }] }, + { total: 95, prize: [{ a: 'attr', t: 'rmbmoney', n: 1000 },{ a: 'item', t: '12', n: 500 },{ a: 'item', t: '28', n: 3000 },{ a: 'item', t: '6', n: 10 }] }, + { total: 100, prize: [{ a: 'attr', t: 'rmbmoney', n: 2000 },{ a: 'item', t: '12', n: 1000 },{ a: 'item', t: '609', n: 1 },{ a: 'item', t: '625', n: 1 },{ a: 'item', t: '50008', n: 1 }] }, + ], + //补发奖励邮件 + email: { + title: 'email_title_kfkh', + content: 'email_content_kfkh' + }, + //持续时间(秒数) + cxtime: 604800 +} \ No newline at end of file diff --git a/src/json/kbzz.json5 b/src/json/kbzz.json5 new file mode 100644 index 0000000..914c6d7 --- /dev/null +++ b/src/json/kbzz.json5 @@ -0,0 +1,85 @@ +{ + //自动报名vip条件 + autoApplyNeedVip: 0, + //活动时间段 + time: { + //报名开始 + apply: [0, 79200], + //报名结束 + applyEnd: [79200, 86400], + //活动周期 + eventCycle: [86400, 518400] + }, + //每组人数 + groupNum: 100, + //每组势力 + troop: [ + { + name: 'intr_kbzz_name_1' + }, + { + name: 'intr_kbzz_name_2' + }, + { + name: 'intr_kbzz_name_3' + } + ], + //势力初始积分 + troopScore: 12600, + //玩家初始积分 + playerScore: 1000, + //战斗胜利增加积分 + winScore: 10, + //战斗胜利奖励, + winPrize: [{ a: 'item', t: '41', n: 5 }], + //战斗失败增加积分 + failScore: 2, + //战斗失败奖励 + failPrize: [{ a: 'item', t: '41', n: 2 }], + //每日积分奖励 + scorePrize: [ + { total: 500, prize: [{ a: 'item', t: '41', n: 10},{ a: 'attr', t: 'jinbi', n: 50000}] }, + { total: 1000, prize: [{ a: 'item', t: '41', n: 25},{ a: 'attr', t: 'jinbi', n: 70000}] }, + { total: 2000, prize: [{ a: 'item', t: '41', n: 40},{ a: 'attr', t: 'jinbi', n: 90000}] }, + { total: 3000, prize: [{ a: 'item', t: '41', n: 60},{ a: 'attr', t: 'jinbi', n: 110000}] }, + { total: 5000, prize: [{ a: 'item', t: '41', n: 80},{ a: 'attr', t: 'jinbi', n: 130000}] }, + { total: 7500, prize: [{ a: 'item', t: '41', n: 100},{ a: 'attr', t: 'jinbi', n: 150000}] }, + { total: 10000, prize: [{ a: 'item', t: '41', n: 120},{ a: 'attr', t: 'jinbi', n: 200000}] }, + { total: 13000, prize: [{ a: 'item', t: '41', n: 140},{ a: 'attr', t: 'jinbi', n: 250000}] }, + { total: 16000, prize: [{ a: 'item', t: '41', n: 160},{ a: 'attr', t: 'jinbi', n: 300000}] }, + { total: 20000, prize: [{ a: 'item', t: '41', n: 180},{ a: 'attr', t: 'jinbi', n: 350000}] } + ], + //每日玩家排名奖励 + playerPrize: [ + { ph: [1,1], prize: [{a: 'item', t: '14', n: 10},{a: 'item', t: '41', n: 35}] }, + { ph: [2,3], prize: [{a: 'item', t: '14', n: 8},{a: 'item', t: '41', n: 30}] }, + { ph: [4,7], prize: [{a: 'item', t: '14', n: 6},{a: 'item', t: '41', n: 25}] }, + { ph: [8,15], prize: [{a: 'item', t: '14', n: 5},{a: 'item', t: '41', n: 20}] }, + { ph: [16,30], prize: [{a: 'item', t: '14', n: 3},{a: 'item', t: '41', n: 10}] }, + { ph: [31,9999], prize: [{a: 'item', t: '14', n: 2},{a: 'item', t: '41', n: 5}] } + ], + //每周势力排名奖励 + troopPrize: [ + { ph: [1,1], prize: [{a: 'item', t: '28', n: 60000},{a: 'item', t: '41', n: 4300}] }, + { ph: [2,2], prize: [{a: 'item', t: '28', n: 40000},{a: 'item', t: '41', n: 3200}] }, + { ph: [3,3], prize: [{a: 'item', t: '28', n: 20000},{a: 'item', t: '41', n: 2000}] } + ], + //初始战斗次数 + fightNum: 15, + //最大战斗次数 + maxFightNum: 142, + //每天恢复的战斗次数 + recoverFightNum: 12, + //vip可购买的战斗次数 + buyFightNum: [2, 3, 4, 6, 9, 12, 15, 18, 22, 27, 33, 40, 48, 57, 67, 82,102,127], + //挑战次数购买消耗 + buyFightNumNeed: [ + { nums: [1, 1], need: [{a: 'attr', t: 'rmbmoney', n: 10}] }, + { nums: [2, 3], need: [{a: 'attr', t: 'rmbmoney', n: 20}] }, + { nums: [4, 5], need: [{a: 'attr', t: 'rmbmoney', n: 30}] }, + { nums: [6, 10], need: [{a: 'attr', t: 'rmbmoney', n: 50}] }, + { nums: [11, 999], need: [{a: 'attr', t: 'rmbmoney', n: 80}] } + ], + //刷新的对手数量 + refreshEnemyNum: 4, +} \ No newline at end of file diff --git a/src/json/kfcb_content.json b/src/json/kfcb_content.json new file mode 100644 index 0000000..3746f7f --- /dev/null +++ b/src/json/kfcb_content.json @@ -0,0 +1,51 @@ +{ + "1": { + "id": 1, + "name": "intr_kfcb_name_1", + "tiaozhuan": 1, + "type": [], + "num": [] + }, + "2": { + "id": 2, + "name": "intr_kfcb_name_2", + "tiaozhuan": 1, + "type": [], + "num": [] + }, + "3": { + "id": 3, + "name": "intr_kfcb_name_3", + "tiaozhuan": 1, + "type": [], + "num": [] + }, + "4": { + "id": 4, + "name": "intr_kfcb_name_4", + "tiaozhuan": 1, + "type": [], + "num": [] + }, + "5": { + "id": 5, + "name": "intr_kfcb_name_5", + "tiaozhuan": 1, + "type": [], + "num": [] + }, + "6": { + "id": 6, + "name": "intr_kfcb_name_6", + "tiaozhuan": 1, + "type": [], + "num": [] + }, + "7": { + "id": 7, + "name": "intr_kfcb_name_7", + "tiaozhuan": 1, + "type": [], + "num": [] + } +} \ No newline at end of file diff --git a/src/json/kfcb_prize.json b/src/json/kfcb_prize.json new file mode 100644 index 0000000..1e08b15 --- /dev/null +++ b/src/json/kfcb_prize.json @@ -0,0 +1,1647 @@ +{ + "1": { + "id": 1, + "type": 1, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "600", + "n": 40 + }, + { + "a": "item", + "t": "1", + "n": 10000000 + }, + { + "a": "item", + "t": "50201", + "n": 1 + } + ] + }, + "2": { + "id": 2, + "type": 1, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "600", + "n": 30 + }, + { + "a": "item", + "t": "1", + "n": 6000000 + }, + { + "a": "item", + "t": "50201", + "n": 1 + } + ] + }, + "3": { + "id": 3, + "type": 1, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "600", + "n": 20 + }, + { + "a": "item", + "t": "1", + "n": 5000000 + }, + { + "a": "item", + "t": "50201", + "n": 1 + } + ] + }, + "4": { + "id": 4, + "type": 1, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "600", + "n": 15 + }, + { + "a": "item", + "t": "1", + "n": 4000000 + } + ] + }, + "5": { + "id": 5, + "type": 1, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "600", + "n": 10 + }, + { + "a": "item", + "t": "1", + "n": 3000000 + } + ] + }, + "6": { + "id": 6, + "type": 1, + "rank": [ + 11, + 20 + ], + "prize": [ + { + "a": "item", + "t": "600", + "n": 9 + }, + { + "a": "item", + "t": "1", + "n": 2000000 + } + ] + }, + "7": { + "id": 7, + "type": 1, + "rank": [ + 21, + 35 + ], + "prize": [ + { + "a": "item", + "t": "600", + "n": 8 + }, + { + "a": "item", + "t": "1", + "n": 1000000 + } + ] + }, + "8": { + "id": 8, + "type": 1, + "rank": [ + 36, + 50 + ], + "prize": [ + { + "a": "item", + "t": "600", + "n": 7 + }, + { + "a": "item", + "t": "1", + "n": 800000 + } + ] + }, + "9": { + "id": 9, + "type": 1, + "rank": [ + 51, + 75 + ], + "prize": [ + { + "a": "item", + "t": "600", + "n": 6 + }, + { + "a": "item", + "t": "1", + "n": 600000 + } + ] + }, + "10": { + "id": 10, + "type": 1, + "rank": [ + 76, + 100 + ], + "prize": [ + { + "a": "item", + "t": "600", + "n": 5 + }, + { + "a": "item", + "t": "1", + "n": 400000 + } + ] + }, + "11": { + "id": 11, + "type": 1, + "rank": [ + 101, + 9999 + ], + "prize": [ + { + "a": "item", + "t": "600", + "n": 4 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ] + }, + "12": { + "id": 12, + "type": 2, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 50000000 + }, + { + "a": "item", + "t": "50202", + "n": 1 + } + ] + }, + "13": { + "id": 13, + "type": 2, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 3500 + }, + { + "a": "attr", + "t": "jinbi", + "n": 35000000 + }, + { + "a": "item", + "t": "50202", + "n": 1 + } + ] + }, + "14": { + "id": 14, + "type": 2, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 2500 + }, + { + "a": "attr", + "t": "jinbi", + "n": 25000000 + }, + { + "a": "item", + "t": "50202", + "n": 1 + } + ] + }, + "15": { + "id": 15, + "type": 2, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 2250 + }, + { + "a": "attr", + "t": "jinbi", + "n": 22500000 + } + ] + }, + "16": { + "id": 16, + "type": 2, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000000 + } + ] + }, + "17": { + "id": 17, + "type": 2, + "rank": [ + 11, + 20 + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1750 + }, + { + "a": "attr", + "t": "jinbi", + "n": 17500000 + } + ] + }, + "18": { + "id": 18, + "type": 2, + "rank": [ + 21, + 35 + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1500 + }, + { + "a": "attr", + "t": "jinbi", + "n": 15000000 + } + ] + }, + "19": { + "id": 19, + "type": 2, + "rank": [ + 36, + 50 + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1250 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12500000 + } + ] + }, + "20": { + "id": 20, + "type": 2, + "rank": [ + 51, + 75 + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 10000000 + } + ] + }, + "21": { + "id": 21, + "type": 2, + "rank": [ + 76, + 100 + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 750 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7500000 + } + ] + }, + "22": { + "id": 22, + "type": 2, + "rank": [ + 101, + 9999 + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + } + ] + }, + "23": { + "id": 23, + "type": 3, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "611", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 10000 + }, + { + "a": "item", + "t": "50203", + "n": 1 + } + ] + }, + "24": { + "id": 24, + "type": 3, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "609", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 7500 + }, + { + "a": "item", + "t": "50203", + "n": 1 + } + ] + }, + "25": { + "id": 25, + "type": 3, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "615", + "n": 2 + }, + { + "a": "item", + "t": "2", + "n": 5000 + }, + { + "a": "item", + "t": "50203", + "n": 1 + } + ] + }, + "26": { + "id": 26, + "type": 3, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "615", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 4000 + } + ] + }, + "27": { + "id": 27, + "type": 3, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "615", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 3000 + } + ] + }, + "28": { + "id": 28, + "type": 3, + "rank": [ + 11, + 20 + ], + "prize": [ + { + "a": "item", + "t": "615", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 2000 + } + ] + }, + "29": { + "id": 29, + "type": 3, + "rank": [ + 21, + 35 + ], + "prize": [ + { + "a": "item", + "t": "620", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1500 + } + ] + }, + "30": { + "id": 30, + "type": 3, + "rank": [ + 36, + 50 + ], + "prize": [ + { + "a": "item", + "t": "620", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1000 + } + ] + }, + "31": { + "id": 31, + "type": 3, + "rank": [ + 51, + 75 + ], + "prize": [ + { + "a": "item", + "t": "620", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 800 + } + ] + }, + "32": { + "id": 32, + "type": 3, + "rank": [ + 76, + 100 + ], + "prize": [ + { + "a": "item", + "t": "620", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 600 + } + ] + }, + "33": { + "id": 33, + "type": 3, + "rank": [ + 101, + 9999 + ], + "prize": [ + { + "a": "item", + "t": "620", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 500 + } + ] + }, + "34": { + "id": 34, + "type": 4, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "29", + "n": 100 + }, + { + "a": "item", + "t": "28", + "n": 100000 + }, + { + "a": "item", + "t": "50204", + "n": 1 + } + ] + }, + "35": { + "id": 35, + "type": 4, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "29", + "n": 75 + }, + { + "a": "item", + "t": "28", + "n": 75000 + }, + { + "a": "item", + "t": "50204", + "n": 1 + } + ] + }, + "36": { + "id": 36, + "type": 4, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "29", + "n": 50 + }, + { + "a": "item", + "t": "28", + "n": 50000 + }, + { + "a": "item", + "t": "50204", + "n": 1 + } + ] + }, + "37": { + "id": 37, + "type": 4, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "29", + "n": 40 + }, + { + "a": "item", + "t": "28", + "n": 40000 + } + ] + }, + "38": { + "id": 38, + "type": 4, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "29", + "n": 35 + }, + { + "a": "item", + "t": "28", + "n": 30000 + } + ] + }, + "39": { + "id": 39, + "type": 4, + "rank": [ + 11, + 20 + ], + "prize": [ + { + "a": "item", + "t": "29", + "n": 30 + }, + { + "a": "item", + "t": "28", + "n": 20000 + } + ] + }, + "40": { + "id": 40, + "type": 4, + "rank": [ + 21, + 35 + ], + "prize": [ + { + "a": "item", + "t": "29", + "n": 25 + }, + { + "a": "item", + "t": "28", + "n": 15000 + } + ] + }, + "41": { + "id": 41, + "type": 4, + "rank": [ + 36, + 50 + ], + "prize": [ + { + "a": "item", + "t": "29", + "n": 20 + }, + { + "a": "item", + "t": "28", + "n": 12000 + } + ] + }, + "42": { + "id": 42, + "type": 4, + "rank": [ + 51, + 75 + ], + "prize": [ + { + "a": "item", + "t": "29", + "n": 15 + }, + { + "a": "item", + "t": "28", + "n": 10000 + } + ] + }, + "43": { + "id": 43, + "type": 4, + "rank": [ + 76, + 100 + ], + "prize": [ + { + "a": "item", + "t": "29", + "n": 12 + }, + { + "a": "item", + "t": "28", + "n": 8000 + } + ] + }, + "44": { + "id": 44, + "type": 4, + "rank": [ + 101, + 9999 + ], + "prize": [ + { + "a": "item", + "t": "29", + "n": 10 + }, + { + "a": "item", + "t": "28", + "n": 5000 + } + ] + }, + "45": { + "id": 45, + "type": 5, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "21", + "n": 1500 + }, + { + "a": "item", + "t": "6", + "n": 100 + }, + { + "a": "item", + "t": "50205", + "n": 1 + } + ] + }, + "46": { + "id": 46, + "type": 5, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "21", + "n": 1000 + }, + { + "a": "item", + "t": "6", + "n": 80 + }, + { + "a": "item", + "t": "50205", + "n": 1 + } + ] + }, + "47": { + "id": 47, + "type": 5, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "21", + "n": 800 + }, + { + "a": "item", + "t": "6", + "n": 60 + }, + { + "a": "item", + "t": "50205", + "n": 1 + } + ] + }, + "48": { + "id": 48, + "type": 5, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "21", + "n": 700 + }, + { + "a": "item", + "t": "6", + "n": 50 + } + ] + }, + "49": { + "id": 49, + "type": 5, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "21", + "n": 600 + }, + { + "a": "item", + "t": "6", + "n": 40 + } + ] + }, + "50": { + "id": 50, + "type": 5, + "rank": [ + 11, + 20 + ], + "prize": [ + { + "a": "item", + "t": "21", + "n": 500 + }, + { + "a": "item", + "t": "6", + "n": 30 + } + ] + }, + "51": { + "id": 51, + "type": 5, + "rank": [ + 21, + 35 + ], + "prize": [ + { + "a": "item", + "t": "21", + "n": 400 + }, + { + "a": "item", + "t": "6", + "n": 20 + } + ] + }, + "52": { + "id": 52, + "type": 5, + "rank": [ + 36, + 50 + ], + "prize": [ + { + "a": "item", + "t": "21", + "n": 300 + }, + { + "a": "item", + "t": "6", + "n": 18 + } + ] + }, + "53": { + "id": 53, + "type": 5, + "rank": [ + 51, + 75 + ], + "prize": [ + { + "a": "item", + "t": "21", + "n": 200 + }, + { + "a": "item", + "t": "6", + "n": 16 + } + ] + }, + "54": { + "id": 54, + "type": 5, + "rank": [ + 76, + 100 + ], + "prize": [ + { + "a": "item", + "t": "21", + "n": 100 + }, + { + "a": "item", + "t": "6", + "n": 14 + } + ] + }, + "55": { + "id": 55, + "type": 5, + "rank": [ + 101, + 9999 + ], + "prize": [ + { + "a": "item", + "t": "21", + "n": 100 + }, + { + "a": "item", + "t": "6", + "n": 12 + } + ] + }, + "56": { + "id": 56, + "type": 6, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "10", + "n": 800 + }, + { + "a": "item", + "t": "9", + "n": 10000 + }, + { + "a": "item", + "t": "50206", + "n": 1 + } + ] + }, + "57": { + "id": 57, + "type": 6, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "10", + "n": 600 + }, + { + "a": "item", + "t": "9", + "n": 7500 + }, + { + "a": "item", + "t": "50206", + "n": 1 + } + ] + }, + "58": { + "id": 58, + "type": 6, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "10", + "n": 400 + }, + { + "a": "item", + "t": "9", + "n": 5000 + }, + { + "a": "item", + "t": "50206", + "n": 1 + } + ] + }, + "59": { + "id": 59, + "type": 6, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "10", + "n": 300 + }, + { + "a": "item", + "t": "9", + "n": 3500 + } + ] + }, + "60": { + "id": 60, + "type": 6, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "10", + "n": 200 + }, + { + "a": "item", + "t": "9", + "n": 2500 + } + ] + }, + "61": { + "id": 61, + "type": 6, + "rank": [ + 11, + 20 + ], + "prize": [ + { + "a": "item", + "t": "10", + "n": 150 + }, + { + "a": "item", + "t": "9", + "n": 2000 + } + ] + }, + "62": { + "id": 62, + "type": 6, + "rank": [ + 21, + 35 + ], + "prize": [ + { + "a": "item", + "t": "10", + "n": 100 + }, + { + "a": "item", + "t": "9", + "n": 1500 + } + ] + }, + "63": { + "id": 63, + "type": 6, + "rank": [ + 36, + 50 + ], + "prize": [ + { + "a": "item", + "t": "10", + "n": 80 + }, + { + "a": "item", + "t": "9", + "n": 1000 + } + ] + }, + "64": { + "id": 64, + "type": 6, + "rank": [ + 51, + 75 + ], + "prize": [ + { + "a": "item", + "t": "10", + "n": 75 + }, + { + "a": "item", + "t": "9", + "n": 900 + } + ] + }, + "65": { + "id": 65, + "type": 6, + "rank": [ + 76, + 100 + ], + "prize": [ + { + "a": "item", + "t": "10", + "n": 70 + }, + { + "a": "item", + "t": "9", + "n": 800 + } + ] + }, + "66": { + "id": 66, + "type": 6, + "rank": [ + 101, + 9999 + ], + "prize": [ + { + "a": "item", + "t": "10", + "n": 60 + }, + { + "a": "item", + "t": "9", + "n": 700 + } + ] + }, + "67": { + "id": 67, + "type": 7, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "632", + "n": 30 + }, + { + "a": "item", + "t": "12", + "n": 6000 + }, + { + "a": "item", + "t": "50207", + "n": 1 + } + ] + }, + "68": { + "id": 68, + "type": 7, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "632", + "n": 20 + }, + { + "a": "item", + "t": "12", + "n": 4000 + }, + { + "a": "item", + "t": "50207", + "n": 1 + } + ] + }, + "69": { + "id": 69, + "type": 7, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "632", + "n": 15 + }, + { + "a": "item", + "t": "12", + "n": 3500 + }, + { + "a": "item", + "t": "50207", + "n": 1 + } + ] + }, + "70": { + "id": 70, + "type": 7, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "600", + "n": 15 + }, + { + "a": "item", + "t": "12", + "n": 3000 + } + ] + }, + "71": { + "id": 71, + "type": 7, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "600", + "n": 10 + }, + { + "a": "item", + "t": "12", + "n": 2500 + } + ] + }, + "72": { + "id": 72, + "type": 7, + "rank": [ + 11, + 20 + ], + "prize": [ + { + "a": "item", + "t": "600", + "n": 9 + }, + { + "a": "item", + "t": "12", + "n": 2000 + } + ] + }, + "73": { + "id": 73, + "type": 7, + "rank": [ + 21, + 35 + ], + "prize": [ + { + "a": "item", + "t": "600", + "n": 8 + }, + { + "a": "item", + "t": "12", + "n": 1500 + } + ] + }, + "74": { + "id": 74, + "type": 7, + "rank": [ + 36, + 50 + ], + "prize": [ + { + "a": "item", + "t": "600", + "n": 7 + }, + { + "a": "item", + "t": "12", + "n": 1000 + } + ] + }, + "75": { + "id": 75, + "type": 7, + "rank": [ + 51, + 75 + ], + "prize": [ + { + "a": "item", + "t": "600", + "n": 6 + }, + { + "a": "item", + "t": "12", + "n": 800 + } + ] + }, + "76": { + "id": 76, + "type": 7, + "rank": [ + 76, + 100 + ], + "prize": [ + { + "a": "item", + "t": "600", + "n": 5 + }, + { + "a": "item", + "t": "12", + "n": 600 + } + ] + }, + "77": { + "id": 77, + "type": 7, + "rank": [ + 101, + 9999 + ], + "prize": [ + { + "a": "item", + "t": "600", + "n": 4 + }, + { + "a": "item", + "t": "12", + "n": 400 + } + ] + } +} \ No newline at end of file diff --git a/src/json/land.json b/src/json/land.json new file mode 100644 index 0000000..18afc8b --- /dev/null +++ b/src/json/land.json @@ -0,0 +1,1199 @@ +{ + "1": { + "id": 1, + "type": 1, + "page": 1, + "name": "TerritoryFight_land_name_1", + "jieName": "TerritoryFight_jie_name_1", + "public_map": 1, + "intr": "顶级钻石区", + "png": "shangye3", + "reward": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1 + } + ], + "formula": "(gamer_lv/80+1)*0.0016*1", + "time": 28800 + }, + "2": { + "id": 2, + "type": 1, + "page": 2, + "name": "TerritoryFight_land_name_2", + "jieName": "TerritoryFight_jie_name_1", + "public_map": 1, + "intr": "顶级钻石区", + "png": "shangye3", + "reward": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1 + } + ], + "formula": "(gamer_lv/80+1)*0.0016*1", + "time": 28800 + }, + "3": { + "id": 3, + "type": 1, + "page": 3, + "name": "TerritoryFight_land_name_3", + "jieName": "TerritoryFight_jie_name_1", + "public_map": 1, + "intr": "高级钻石区", + "png": "shangye2", + "reward": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1 + } + ], + "formula": "(gamer_lv/80+1)*0.0016*0.9", + "time": 28800 + }, + "4": { + "id": 4, + "type": 1, + "page": 4, + "name": "TerritoryFight_land_name_4", + "jieName": "TerritoryFight_jie_name_1", + "public_map": 1, + "intr": "高级钻石区", + "png": "shangye2", + "reward": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1 + } + ], + "formula": "(gamer_lv/80+1)*0.0016*0.9", + "time": 28800 + }, + "5": { + "id": 5, + "type": 1, + "page": 5, + "name": "TerritoryFight_land_name_5", + "jieName": "TerritoryFight_jie_name_1", + "public_map": 1, + "intr": "高级钻石区", + "png": "shangye2", + "reward": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1 + } + ], + "formula": "(gamer_lv/80+1)*0.0016*0.9", + "time": 28800 + }, + "6": { + "id": 6, + "type": 1, + "page": 6, + "name": "TerritoryFight_land_name_6", + "jieName": "TerritoryFight_jie_name_1", + "public_map": 1, + "intr": "普通钻石区", + "png": "shangye1", + "reward": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1 + } + ], + "formula": "(gamer_lv/80+1)*0.0016*0.85", + "time": 28800 + }, + "7": { + "id": 7, + "type": 1, + "page": 7, + "name": "TerritoryFight_land_name_7", + "jieName": "TerritoryFight_jie_name_1", + "public_map": 1, + "intr": "普通钻石区", + "png": "shangye1", + "reward": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1 + } + ], + "formula": "(gamer_lv/80+1)*0.0016*0.85", + "time": 28800 + }, + "8": { + "id": 8, + "type": 1, + "page": 8, + "name": "TerritoryFight_land_name_8", + "jieName": "TerritoryFight_jie_name_1", + "public_map": 1, + "intr": "普通钻石区", + "png": "shangye1", + "reward": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1 + } + ], + "formula": "(gamer_lv/80+1)*0.0016*0.85", + "time": 28800 + }, + "9": { + "id": 9, + "type": 1, + "page": 9, + "name": "TerritoryFight_land_name_9", + "jieName": "TerritoryFight_jie_name_1", + "public_map": 1, + "intr": "普通钻石区", + "png": "shangye1", + "reward": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1 + } + ], + "formula": "(gamer_lv/80+1)*0.0016*0.85", + "time": 28800 + }, + "10": { + "id": 10, + "type": 1, + "page": 10, + "name": "TerritoryFight_land_name_10", + "jieName": "TerritoryFight_jie_name_1", + "public_map": 1, + "intr": "普通钻石区", + "png": "shangye1", + "reward": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1 + } + ], + "formula": "(gamer_lv/80+1)*0.0016*0.85", + "time": 28800 + }, + "11": { + "id": 11, + "type": 1, + "page": 11, + "name": "TerritoryFight_land_name_11", + "jieName": "TerritoryFight_jie_name_1", + "public_map": 1, + "intr": "低级钻石区", + "png": "shangye4", + "reward": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1 + } + ], + "formula": "(gamer_lv/80+1)*0.0016*0.8", + "time": 28800 + }, + "12": { + "id": 12, + "type": 1, + "page": 12, + "name": "TerritoryFight_land_name_12", + "jieName": "TerritoryFight_jie_name_1", + "public_map": 1, + "intr": "低级钻石区", + "png": "shangye4", + "reward": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1 + } + ], + "formula": "(gamer_lv/80+1)*0.0016*0.8", + "time": 28800 + }, + "13": { + "id": 13, + "type": 1, + "page": 13, + "name": "TerritoryFight_land_name_13", + "jieName": "TerritoryFight_jie_name_1", + "public_map": 1, + "intr": "低级钻石区", + "png": "shangye4", + "reward": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1 + } + ], + "formula": "(gamer_lv/80+1)*0.0016*0.8", + "time": 28800 + }, + "14": { + "id": 14, + "type": 1, + "page": 14, + "name": "TerritoryFight_land_name_14", + "jieName": "TerritoryFight_jie_name_1", + "public_map": 1, + "intr": "低级钻石区", + "png": "shangye4", + "reward": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1 + } + ], + "formula": "(gamer_lv/80+1)*0.0016*0.8", + "time": 28800 + }, + "15": { + "id": 15, + "type": 1, + "page": 15, + "name": "TerritoryFight_land_name_15", + "jieName": "TerritoryFight_jie_name_1", + "public_map": 1, + "intr": "低级钻石区", + "png": "shangye4", + "reward": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1 + } + ], + "formula": "(gamer_lv/80+1)*0.0016*0.8", + "time": 28800 + }, + "16": { + "id": 16, + "type": 1, + "page": 16, + "name": "TerritoryFight_land_name_16", + "jieName": "TerritoryFight_jie_name_1", + "public_map": 1, + "intr": "低级钻石区", + "png": "shangye4", + "reward": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1 + } + ], + "formula": "(gamer_lv/80+1)*0.0016*0.8", + "time": 28800 + }, + "17": { + "id": 17, + "type": 1, + "page": 17, + "name": "TerritoryFight_land_name_17", + "jieName": "TerritoryFight_jie_name_1", + "public_map": 1, + "intr": "低级钻石区", + "png": "shangye4", + "reward": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1 + } + ], + "formula": "(gamer_lv/80+1)*0.0016*0.8", + "time": 28800 + }, + "18": { + "id": 18, + "type": 1, + "page": 18, + "name": "TerritoryFight_land_name_18", + "jieName": "TerritoryFight_jie_name_1", + "public_map": 1, + "intr": "低级钻石区", + "png": "shangye4", + "reward": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1 + } + ], + "formula": "(gamer_lv/80+1)*0.0016*0.8", + "time": 28800 + }, + "19": { + "id": 19, + "type": 1, + "page": 19, + "name": "TerritoryFight_land_name_19", + "jieName": "TerritoryFight_jie_name_1", + "public_map": 1, + "intr": "低级钻石区", + "png": "shangye4", + "reward": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1 + } + ], + "formula": "(gamer_lv/80+1)*0.0016*0.8", + "time": 28800 + }, + "20": { + "id": 20, + "type": 1, + "page": 20, + "name": "TerritoryFight_land_name_20", + "jieName": "TerritoryFight_jie_name_1", + "public_map": 1, + "intr": "低级钻石区", + "png": "shangye4", + "reward": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1 + } + ], + "formula": "(gamer_lv/80+1)*0.0016*0.8", + "time": 28800 + }, + "21": { + "id": 21, + "type": 1, + "page": 21, + "name": "TerritoryFight_land_name_21", + "jieName": "TerritoryFight_jie_name_1", + "public_map": 0, + "intr": "废弃钻石区", + "png": "shangye4", + "reward": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1 + } + ], + "formula": "(gamer_lv/80+1)*0.0016*0.7", + "time": 28800 + }, + "22": { + "id": 22, + "type": 2, + "page": 1, + "name": "TerritoryFight_land_name_22", + "jieName": "TerritoryFight_jie_name_2", + "public_map": 1, + "intr": "顶级人才区", + "png": "juming3", + "reward": [ + { + "a": "item", + "t": "27", + "n": 1 + } + ], + "formula": "(gamer_lv/50+1)*0.01*1", + "time": 28800 + }, + "23": { + "id": 23, + "type": 2, + "page": 2, + "name": "TerritoryFight_land_name_23", + "jieName": "TerritoryFight_jie_name_2", + "public_map": 1, + "intr": "顶级人才区", + "png": "juming3", + "reward": [ + { + "a": "item", + "t": "27", + "n": 1 + } + ], + "formula": "(gamer_lv/50+1)*0.01*1", + "time": 28800 + }, + "24": { + "id": 24, + "type": 2, + "page": 3, + "name": "TerritoryFight_land_name_24", + "jieName": "TerritoryFight_jie_name_2", + "public_map": 1, + "intr": "高级人才区", + "png": "juming2", + "reward": [ + { + "a": "item", + "t": "27", + "n": 1 + } + ], + "formula": "(gamer_lv/50+1)*0.01*0.9", + "time": 28800 + }, + "25": { + "id": 25, + "type": 2, + "page": 4, + "name": "TerritoryFight_land_name_25", + "jieName": "TerritoryFight_jie_name_2", + "public_map": 1, + "intr": "高级人才区", + "png": "juming2", + "reward": [ + { + "a": "item", + "t": "27", + "n": 1 + } + ], + "formula": "(gamer_lv/50+1)*0.01*0.9", + "time": 28800 + }, + "26": { + "id": 26, + "type": 2, + "page": 5, + "name": "TerritoryFight_land_name_26", + "jieName": "TerritoryFight_jie_name_2", + "public_map": 1, + "intr": "高级人才区", + "png": "juming2", + "reward": [ + { + "a": "item", + "t": "27", + "n": 1 + } + ], + "formula": "(gamer_lv/50+1)*0.01*0.9", + "time": 28800 + }, + "27": { + "id": 27, + "type": 2, + "page": 6, + "name": "TerritoryFight_land_name_27", + "jieName": "TerritoryFight_jie_name_2", + "public_map": 1, + "intr": "普通人才区", + "png": "juming1", + "reward": [ + { + "a": "item", + "t": "27", + "n": 1 + } + ], + "formula": "(gamer_lv/50+1)*0.01*0.85", + "time": 28800 + }, + "28": { + "id": 28, + "type": 2, + "page": 7, + "name": "TerritoryFight_land_name_28", + "jieName": "TerritoryFight_jie_name_2", + "public_map": 1, + "intr": "普通人才区", + "png": "juming1", + "reward": [ + { + "a": "item", + "t": "27", + "n": 1 + } + ], + "formula": "(gamer_lv/50+1)*0.01*0.85", + "time": 28800 + }, + "29": { + "id": 29, + "type": 2, + "page": 8, + "name": "TerritoryFight_land_name_29", + "jieName": "TerritoryFight_jie_name_2", + "public_map": 1, + "intr": "普通人才区", + "png": "juming1", + "reward": [ + { + "a": "item", + "t": "27", + "n": 1 + } + ], + "formula": "(gamer_lv/50+1)*0.01*0.85", + "time": 28800 + }, + "30": { + "id": 30, + "type": 2, + "page": 9, + "name": "TerritoryFight_land_name_30", + "jieName": "TerritoryFight_jie_name_2", + "public_map": 1, + "intr": "普通人才区", + "png": "juming1", + "reward": [ + { + "a": "item", + "t": "27", + "n": 1 + } + ], + "formula": "(gamer_lv/50+1)*0.01*0.85", + "time": 28800 + }, + "31": { + "id": 31, + "type": 2, + "page": 10, + "name": "TerritoryFight_land_name_31", + "jieName": "TerritoryFight_jie_name_2", + "public_map": 1, + "intr": "普通人才区", + "png": "juming1", + "reward": [ + { + "a": "item", + "t": "27", + "n": 1 + } + ], + "formula": "(gamer_lv/50+1)*0.01*0.85", + "time": 28800 + }, + "32": { + "id": 32, + "type": 2, + "page": 11, + "name": "TerritoryFight_land_name_32", + "jieName": "TerritoryFight_jie_name_2", + "public_map": 1, + "intr": "低级人才区", + "png": "juming4", + "reward": [ + { + "a": "item", + "t": "27", + "n": 1 + } + ], + "formula": "(gamer_lv/50+1)*0.01*0.8", + "time": 28800 + }, + "33": { + "id": 33, + "type": 2, + "page": 12, + "name": "TerritoryFight_land_name_33", + "jieName": "TerritoryFight_jie_name_2", + "public_map": 1, + "intr": "低级人才区", + "png": "juming4", + "reward": [ + { + "a": "item", + "t": "27", + "n": 1 + } + ], + "formula": "(gamer_lv/50+1)*0.01*0.8", + "time": 28800 + }, + "34": { + "id": 34, + "type": 2, + "page": 13, + "name": "TerritoryFight_land_name_34", + "jieName": "TerritoryFight_jie_name_2", + "public_map": 1, + "intr": "低级人才区", + "png": "juming4", + "reward": [ + { + "a": "item", + "t": "27", + "n": 1 + } + ], + "formula": "(gamer_lv/50+1)*0.01*0.8", + "time": 28800 + }, + "35": { + "id": 35, + "type": 2, + "page": 14, + "name": "TerritoryFight_land_name_35", + "jieName": "TerritoryFight_jie_name_2", + "public_map": 1, + "intr": "低级人才区", + "png": "juming4", + "reward": [ + { + "a": "item", + "t": "27", + "n": 1 + } + ], + "formula": "(gamer_lv/50+1)*0.01*0.8", + "time": 28800 + }, + "36": { + "id": 36, + "type": 2, + "page": 15, + "name": "TerritoryFight_land_name_36", + "jieName": "TerritoryFight_jie_name_2", + "public_map": 1, + "intr": "低级人才区", + "png": "juming4", + "reward": [ + { + "a": "item", + "t": "27", + "n": 1 + } + ], + "formula": "(gamer_lv/50+1)*0.01*0.8", + "time": 28800 + }, + "37": { + "id": 37, + "type": 2, + "page": 16, + "name": "TerritoryFight_land_name_37", + "jieName": "TerritoryFight_jie_name_2", + "public_map": 1, + "intr": "低级人才区", + "png": "juming4", + "reward": [ + { + "a": "item", + "t": "27", + "n": 1 + } + ], + "formula": "(gamer_lv/50+1)*0.01*0.8", + "time": 28800 + }, + "38": { + "id": 38, + "type": 2, + "page": 17, + "name": "TerritoryFight_land_name_38", + "jieName": "TerritoryFight_jie_name_2", + "public_map": 1, + "intr": "低级人才区", + "png": "juming4", + "reward": [ + { + "a": "item", + "t": "27", + "n": 1 + } + ], + "formula": "(gamer_lv/50+1)*0.01*0.8", + "time": 28800 + }, + "39": { + "id": 39, + "type": 2, + "page": 18, + "name": "TerritoryFight_land_name_39", + "jieName": "TerritoryFight_jie_name_2", + "public_map": 1, + "intr": "低级人才区", + "png": "juming4", + "reward": [ + { + "a": "item", + "t": "27", + "n": 1 + } + ], + "formula": "(gamer_lv/50+1)*0.01*0.8", + "time": 28800 + }, + "40": { + "id": 40, + "type": 2, + "page": 19, + "name": "TerritoryFight_land_name_40", + "jieName": "TerritoryFight_jie_name_2", + "public_map": 1, + "intr": "低级人才区", + "png": "juming4", + "reward": [ + { + "a": "item", + "t": "27", + "n": 1 + } + ], + "formula": "(gamer_lv/50+1)*0.01*0.8", + "time": 28800 + }, + "41": { + "id": 41, + "type": 2, + "page": 20, + "name": "TerritoryFight_land_name_41", + "jieName": "TerritoryFight_jie_name_2", + "public_map": 1, + "intr": "低级人才区", + "png": "juming4", + "reward": [ + { + "a": "item", + "t": "27", + "n": 1 + } + ], + "formula": "(gamer_lv/50+1)*0.01*0.8", + "time": 28800 + }, + "42": { + "id": 42, + "type": 2, + "page": 21, + "name": "TerritoryFight_land_name_42", + "jieName": "TerritoryFight_jie_name_2", + "public_map": 0, + "intr": "废弃人才区", + "png": "juming4", + "reward": [ + { + "a": "item", + "t": "27", + "n": 1 + } + ], + "formula": "(gamer_lv/50+1)*0.01*0.7", + "time": 28800 + }, + "43": { + "id": 43, + "type": 3, + "page": 1, + "name": "TerritoryFight_land_name_43", + "jieName": "TerritoryFight_jie_name_3", + "public_map": 1, + "intr": "顶级零件区", + "png": "gongchang3", + "reward": [ + { + "a": "item", + "t": "23", + "n": 1 + } + ], + "formula": "(gamer_lv/60+1)*0.45*1", + "time": 28800 + }, + "44": { + "id": 44, + "type": 3, + "page": 2, + "name": "TerritoryFight_land_name_44", + "jieName": "TerritoryFight_jie_name_3", + "public_map": 1, + "intr": "顶级零件区", + "png": "gongchang3", + "reward": [ + { + "a": "item", + "t": "23", + "n": 1 + } + ], + "formula": "(gamer_lv/60+1)*0.45*1", + "time": 28800 + }, + "45": { + "id": 45, + "type": 3, + "page": 3, + "name": "TerritoryFight_land_name_45", + "jieName": "TerritoryFight_jie_name_3", + "public_map": 1, + "intr": "高级零件区", + "png": "gongchang2", + "reward": [ + { + "a": "item", + "t": "23", + "n": 1 + } + ], + "formula": "(gamer_lv/60+1)*0.45*0.9", + "time": 28800 + }, + "46": { + "id": 46, + "type": 3, + "page": 4, + "name": "TerritoryFight_land_name_46", + "jieName": "TerritoryFight_jie_name_3", + "public_map": 1, + "intr": "高级零件区", + "png": "gongchang2", + "reward": [ + { + "a": "item", + "t": "23", + "n": 1 + } + ], + "formula": "(gamer_lv/60+1)*0.45*0.9", + "time": 28800 + }, + "47": { + "id": 47, + "type": 3, + "page": 5, + "name": "TerritoryFight_land_name_47", + "jieName": "TerritoryFight_jie_name_3", + "public_map": 1, + "intr": "高级零件区", + "png": "gongchang2", + "reward": [ + { + "a": "item", + "t": "23", + "n": 1 + } + ], + "formula": "(gamer_lv/60+1)*0.45*0.9", + "time": 28800 + }, + "48": { + "id": 48, + "type": 3, + "page": 6, + "name": "TerritoryFight_land_name_48", + "jieName": "TerritoryFight_jie_name_3", + "public_map": 1, + "intr": "普通零件区", + "png": "gongchang1", + "reward": [ + { + "a": "item", + "t": "23", + "n": 1 + } + ], + "formula": "(gamer_lv/60+1)*0.45*0.85", + "time": 28800 + }, + "49": { + "id": 49, + "type": 3, + "page": 7, + "name": "TerritoryFight_land_name_49", + "jieName": "TerritoryFight_jie_name_3", + "public_map": 1, + "intr": "普通零件区", + "png": "gongchang1", + "reward": [ + { + "a": "item", + "t": "23", + "n": 1 + } + ], + "formula": "(gamer_lv/60+1)*0.45*0.85", + "time": 28800 + }, + "50": { + "id": 50, + "type": 3, + "page": 8, + "name": "TerritoryFight_land_name_50", + "jieName": "TerritoryFight_jie_name_3", + "public_map": 1, + "intr": "普通零件区", + "png": "gongchang1", + "reward": [ + { + "a": "item", + "t": "23", + "n": 1 + } + ], + "formula": "(gamer_lv/60+1)*0.45*0.85", + "time": 28800 + }, + "51": { + "id": 51, + "type": 3, + "page": 9, + "name": "TerritoryFight_land_name_51", + "jieName": "TerritoryFight_jie_name_3", + "public_map": 1, + "intr": "普通零件区", + "png": "gongchang1", + "reward": [ + { + "a": "item", + "t": "23", + "n": 1 + } + ], + "formula": "(gamer_lv/60+1)*0.45*0.85", + "time": 28800 + }, + "52": { + "id": 52, + "type": 3, + "page": 10, + "name": "TerritoryFight_land_name_52", + "jieName": "TerritoryFight_jie_name_3", + "public_map": 1, + "intr": "普通零件区", + "png": "gongchang1", + "reward": [ + { + "a": "item", + "t": "23", + "n": 1 + } + ], + "formula": "(gamer_lv/60+1)*0.45*0.85", + "time": 28800 + }, + "53": { + "id": 53, + "type": 3, + "page": 11, + "name": "TerritoryFight_land_name_53", + "jieName": "TerritoryFight_jie_name_3", + "public_map": 1, + "intr": "低级零件区", + "png": "gongchang4", + "reward": [ + { + "a": "item", + "t": "23", + "n": 1 + } + ], + "formula": "(gamer_lv/60+1)*0.45*0.8", + "time": 28800 + }, + "54": { + "id": 54, + "type": 3, + "page": 12, + "name": "TerritoryFight_land_name_54", + "jieName": "TerritoryFight_jie_name_3", + "public_map": 1, + "intr": "低级零件区", + "png": "gongchang4", + "reward": [ + { + "a": "item", + "t": "23", + "n": 1 + } + ], + "formula": "(gamer_lv/60+1)*0.45*0.8", + "time": 28800 + }, + "55": { + "id": 55, + "type": 3, + "page": 13, + "name": "TerritoryFight_land_name_55", + "jieName": "TerritoryFight_jie_name_3", + "public_map": 1, + "intr": "低级零件区", + "png": "gongchang4", + "reward": [ + { + "a": "item", + "t": "23", + "n": 1 + } + ], + "formula": "(gamer_lv/60+1)*0.45*0.8", + "time": 28800 + }, + "56": { + "id": 56, + "type": 3, + "page": 14, + "name": "TerritoryFight_land_name_56", + "jieName": "TerritoryFight_jie_name_3", + "public_map": 1, + "intr": "低级零件区", + "png": "gongchang4", + "reward": [ + { + "a": "item", + "t": "23", + "n": 1 + } + ], + "formula": "(gamer_lv/60+1)*0.45*0.8", + "time": 28800 + }, + "57": { + "id": 57, + "type": 3, + "page": 15, + "name": "TerritoryFight_land_name_57", + "jieName": "TerritoryFight_jie_name_3", + "public_map": 1, + "intr": "低级零件区", + "png": "gongchang4", + "reward": [ + { + "a": "item", + "t": "23", + "n": 1 + } + ], + "formula": "(gamer_lv/60+1)*0.45*0.8", + "time": 28800 + }, + "58": { + "id": 58, + "type": 3, + "page": 16, + "name": "TerritoryFight_land_name_58", + "jieName": "TerritoryFight_jie_name_3", + "public_map": 1, + "intr": "低级零件区", + "png": "gongchang4", + "reward": [ + { + "a": "item", + "t": "23", + "n": 1 + } + ], + "formula": "(gamer_lv/60+1)*0.45*0.8", + "time": 28800 + }, + "59": { + "id": 59, + "type": 3, + "page": 17, + "name": "TerritoryFight_land_name_59", + "jieName": "TerritoryFight_jie_name_3", + "public_map": 1, + "intr": "低级零件区", + "png": "gongchang4", + "reward": [ + { + "a": "item", + "t": "23", + "n": 1 + } + ], + "formula": "(gamer_lv/60+1)*0.45*0.8", + "time": 28800 + }, + "60": { + "id": 60, + "type": 3, + "page": 18, + "name": "TerritoryFight_land_name_60", + "jieName": "TerritoryFight_jie_name_3", + "public_map": 1, + "intr": "低级零件区", + "png": "gongchang4", + "reward": [ + { + "a": "item", + "t": "23", + "n": 1 + } + ], + "formula": "(gamer_lv/60+1)*0.45*0.8", + "time": 28800 + }, + "61": { + "id": 61, + "type": 3, + "page": 19, + "name": "TerritoryFight_land_name_61", + "jieName": "TerritoryFight_jie_name_3", + "public_map": 1, + "intr": "低级零件区", + "png": "gongchang4", + "reward": [ + { + "a": "item", + "t": "23", + "n": 1 + } + ], + "formula": "(gamer_lv/60+1)*0.45*0.8", + "time": 28800 + }, + "62": { + "id": 62, + "type": 3, + "page": 20, + "name": "TerritoryFight_land_name_62", + "jieName": "TerritoryFight_jie_name_3", + "public_map": 1, + "intr": "低级零件区", + "png": "gongchang4", + "reward": [ + { + "a": "item", + "t": "23", + "n": 1 + } + ], + "formula": "(gamer_lv/60+1)*0.45*0.8", + "time": 28800 + }, + "63": { + "id": 63, + "type": 3, + "page": 21, + "name": "TerritoryFight_land_name_63", + "jieName": "TerritoryFight_jie_name_3", + "public_map": 0, + "intr": "废弃零件区", + "png": "gongchang4", + "reward": [ + { + "a": "item", + "t": "23", + "n": 1 + } + ], + "formula": "(gamer_lv/60+1)*0.45*0.7", + "time": 28800 + } +} \ No newline at end of file diff --git a/src/json/leijichongzhi.json5 b/src/json/leijichongzhi.json5 new file mode 100644 index 0000000..82217db --- /dev/null +++ b/src/json/leijichongzhi.json5 @@ -0,0 +1,12 @@ +{ + time: 8640000, + tasks: [ + { total: 100, prize: [{a: 'attr', t: 'rmbmoney', n: 500},{a: 'item', t: '4', n: 2}] }, + { total: 200, prize: [{a: 'attr', t: 'rmbmoney', n: 1000},{a: 'item', t: '12', n: 500}]}, + { total: 500, prize: [{a: 'attr', t: 'rmbmoney', n: 1500},{a: 'item', t: '4', n: 5}]}, + { total: 1000, prize: [{a: 'attr', t: 'rmbmoney', n: 2000},{a: 'item', t: '600', n: 20}]}, + { total: 2000, prize: [{a: 'attr', t: 'rmbmoney', n: 3000},{a: 'item', t: '609', n: 1}]}, + { total: 3000, prize: [{a: 'attr', t: 'rmbmoney', n: 6000},{a: 'item', t: '611', n: 1}]}, + { total: 5000, prize: [{a: 'attr', t: 'rmbmoney', n: 10000},{a: 'item', t: '610', n: 1}]} + ] +} \ No newline at end of file diff --git a/src/json/meirishilian.json b/src/json/meirishilian.json new file mode 100644 index 0000000..fe79dc9 --- /dev/null +++ b/src/json/meirishilian.json @@ -0,0 +1,496 @@ +{ + "money": { + "1": { + "type": "money", + "difficulty": 1, + "openLv": 23, + "npcId": 30001, + "prize": [ + { + "a": "item", + "t": "1", + "n": 30000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "tjzl": 40000 + }, + "2": { + "type": "money", + "difficulty": 2, + "openLv": 30, + "npcId": 30002, + "prize": [ + { + "a": "item", + "t": "1", + "n": 50000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "tjzl": 105000 + }, + "3": { + "type": "money", + "difficulty": 3, + "openLv": 40, + "npcId": 30003, + "prize": [ + { + "a": "item", + "t": "1", + "n": 70000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "tjzl": 190000 + }, + "4": { + "type": "money", + "difficulty": 4, + "openLv": 50, + "npcId": 30004, + "prize": [ + { + "a": "item", + "t": "1", + "n": 90000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 400000 + } + ], + "tjzl": 320000 + }, + "5": { + "type": "money", + "difficulty": 5, + "openLv": 60, + "npcId": 30005, + "prize": [ + { + "a": "item", + "t": "1", + "n": 110000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "tjzl": 480000 + }, + "6": { + "type": "money", + "difficulty": 6, + "openLv": 70, + "npcId": 30006, + "prize": [ + { + "a": "item", + "t": "1", + "n": 130000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "tjzl": 700000 + }, + "7": { + "type": "money", + "difficulty": 7, + "openLv": 80, + "npcId": 30007, + "prize": [ + { + "a": "item", + "t": "1", + "n": 150000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 700000 + } + ], + "tjzl": 1000000 + }, + "8": { + "type": "money", + "difficulty": 8, + "openLv": 90, + "npcId": 30008, + "prize": [ + { + "a": "item", + "t": "1", + "n": 170000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "tjzl": 3000000 + }, + "9": { + "type": "money", + "difficulty": 9, + "openLv": 96, + "npcId": 30009, + "prize": [ + { + "a": "item", + "t": "1", + "n": 200000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "tjzl": 5000000 + } + }, + "exp": { + "1": { + "type": "exp", + "difficulty": 1, + "openLv": 24, + "npcId": 30001, + "prize": [ + { + "a": "item", + "t": "9", + "n": 30 + }, + { + "a": "item", + "t": "12", + "n": 10 + } + ], + "tjzl": 40000 + }, + "2": { + "type": "exp", + "difficulty": 2, + "openLv": 32, + "npcId": 30002, + "prize": [ + { + "a": "item", + "t": "9", + "n": 50 + }, + { + "a": "item", + "t": "12", + "n": 20 + } + ], + "tjzl": 105000 + }, + "3": { + "type": "exp", + "difficulty": 3, + "openLv": 42, + "npcId": 30003, + "prize": [ + { + "a": "item", + "t": "9", + "n": 80 + }, + { + "a": "item", + "t": "12", + "n": 30 + } + ], + "tjzl": 190000 + }, + "4": { + "type": "exp", + "difficulty": 4, + "openLv": 52, + "npcId": 30004, + "prize": [ + { + "a": "item", + "t": "9", + "n": 120 + }, + { + "a": "item", + "t": "12", + "n": 40 + } + ], + "tjzl": 320000 + }, + "5": { + "type": "exp", + "difficulty": 5, + "openLv": 62, + "npcId": 30005, + "prize": [ + { + "a": "item", + "t": "9", + "n": 160 + }, + { + "a": "item", + "t": "12", + "n": 50 + } + ], + "tjzl": 480000 + }, + "6": { + "type": "exp", + "difficulty": 6, + "openLv": 72, + "npcId": 30006, + "prize": [ + { + "a": "item", + "t": "9", + "n": 200 + }, + { + "a": "item", + "t": "12", + "n": 60 + } + ], + "tjzl": 700000 + }, + "7": { + "type": "exp", + "difficulty": 7, + "openLv": 82, + "npcId": 30007, + "prize": [ + { + "a": "item", + "t": "9", + "n": 240 + }, + { + "a": "item", + "t": "12", + "n": 70 + } + ], + "tjzl": 1000000 + }, + "8": { + "type": "exp", + "difficulty": 8, + "openLv": 92, + "npcId": 30008, + "prize": [ + { + "a": "item", + "t": "9", + "n": 300 + }, + { + "a": "item", + "t": "12", + "n": 90 + } + ], + "tjzl": 3000000 + }, + "9": { + "type": "exp", + "difficulty": 9, + "openLv": 98, + "npcId": 30009, + "prize": [ + { + "a": "item", + "t": "9", + "n": 400 + }, + { + "a": "item", + "t": "12", + "n": 120 + } + ], + "tjzl": 5000000 + } + }, + "qhs": { + "1": { + "type": "qhs", + "difficulty": 1, + "openLv": 25, + "npcId": 30001, + "prize": [ + { + "a": "item", + "t": "2", + "n": 50 + } + ], + "tjzl": 40000 + }, + "2": { + "type": "qhs", + "difficulty": 2, + "openLv": 34, + "npcId": 30002, + "prize": [ + { + "a": "item", + "t": "2", + "n": 70 + } + ], + "tjzl": 105000 + }, + "3": { + "type": "qhs", + "difficulty": 3, + "openLv": 44, + "npcId": 30003, + "prize": [ + { + "a": "item", + "t": "2", + "n": 100 + } + ], + "tjzl": 190000 + }, + "4": { + "type": "qhs", + "difficulty": 4, + "openLv": 54, + "npcId": 30004, + "prize": [ + { + "a": "item", + "t": "2", + "n": 130 + } + ], + "tjzl": 320000 + }, + "5": { + "type": "qhs", + "difficulty": 5, + "openLv": 64, + "npcId": 30005, + "prize": [ + { + "a": "item", + "t": "2", + "n": 160 + } + ], + "tjzl": 480000 + }, + "6": { + "type": "qhs", + "difficulty": 6, + "openLv": 74, + "npcId": 30006, + "prize": [ + { + "a": "item", + "t": "2", + "n": 200 + }, + { + "a": "item", + "t": "18", + "n": 3 + } + ], + "tjzl": 700000 + }, + "7": { + "type": "qhs", + "difficulty": 7, + "openLv": 84, + "npcId": 30007, + "prize": [ + { + "a": "item", + "t": "2", + "n": 240 + }, + { + "a": "item", + "t": "18", + "n": 5 + } + ], + "tjzl": 1000000 + }, + "8": { + "type": "qhs", + "difficulty": 8, + "openLv": 94, + "npcId": 30008, + "prize": [ + { + "a": "item", + "t": "2", + "n": 300 + }, + { + "a": "item", + "t": "18", + "n": 10 + } + ], + "tjzl": 3000000 + }, + "9": { + "type": "qhs", + "difficulty": 9, + "openLv": 100, + "npcId": 30009, + "prize": [ + { + "a": "item", + "t": "2", + "n": 400 + }, + { + "a": "item", + "t": "18", + "n": 12 + } + ], + "tjzl": 5000000 + } + } +} \ No newline at end of file diff --git a/src/json/meirishilian_com.json5 b/src/json/meirishilian_com.json5 new file mode 100644 index 0000000..8c1f393 --- /dev/null +++ b/src/json/meirishilian_com.json5 @@ -0,0 +1,12 @@ +{ + //每日初始战斗次数 + fightNum: 2, + fightBuyNum: 5, + fightBuyNumNeed: [ + { a: 'attr', t: 'rmbmoney', n: 50 }, + { a: 'attr', t: 'rmbmoney', n: 100 }, + { a: 'attr', t: 'rmbmoney', n: 150 }, + { a: 'attr', t: 'rmbmoney', n: 200 }, + { a: 'attr', t: 'rmbmoney', n: 200 }, + ] +} \ No newline at end of file diff --git a/src/json/mingdao.json b/src/json/mingdao.json new file mode 100644 index 0000000..4582145 --- /dev/null +++ b/src/json/mingdao.json @@ -0,0 +1,673 @@ +{ + "1": { + "id": 1, + "dao": 1001, + "condition": [ + [ + "loginDays", + 2 + ] + ], + "level": 20, + "need": { + "a": "item", + "t": "21", + "n": 1 + }, + "needExp": 555, + "reward": { + "5": { + "a": "equip", + "t": "1009", + "n": 1 + }, + "15": { + "a": "attr", + "t": "nexp", + "n": 250000 + } + }, + "buff": { + "atk": 8, + "def": 3, + "hp": 65 + }, + "upBuff": { + "atk": 8, + "def": 3, + "hp": 62 + }, + "privilege": { + "zjgy_xld": 10 + }, + "img": 1001, + "name": "mingDao_name_1", + "des": "mingDao_des_1", + "privilege_des": "mingDao_tequan_1" + }, + "2": { + "id": 2, + "dao": 1002, + "condition": [ + [ + "power", + 50000 + ] + ], + "level": 40, + "need": { + "a": "item", + "t": "21", + "n": 1 + }, + "needExp": 835, + "reward": { + "5": { + "a": "equip", + "t": "2009", + "n": 1 + }, + "15": { + "a": "item", + "t": "2", + "n": 2000 + }, + "25": { + "a": "attr", + "t": "nexp", + "n": 350000 + }, + "35": { + "a": "item", + "t": "12", + "n": 1000 + } + }, + "buff": { + "atk": 17, + "def": 7, + "hp": 130 + }, + "upBuff": { + "atk": 11, + "def": 4, + "hp": 83 + }, + "privilege": { + "wzsj_free": 1 + }, + "img": 1002, + "name": "mingDao_name_2", + "des": "mingDao_des_2", + "privilege_des": "mingDao_tequan_2" + }, + "3": { + "id": 3, + "dao": 1003, + "condition": [ + [ + "zccg", + 25 + ] + ], + "level": 60, + "need": { + "a": "item", + "t": "21", + "n": 1 + }, + "needExp": 850, + "reward": { + "5": { + "a": "equip", + "t": "3009", + "n": 1 + }, + "15": { + "a": "item", + "t": "18", + "n": 100 + }, + "25": { + "a": "attr", + "t": "nexp", + "n": 550000 + }, + "35": { + "a": "equip", + "t": "4009", + "n": 1 + }, + "55": { + "a": "hero", + "t": "5003", + "n": 1 + } + }, + "buff": { + "atk": 26, + "def": 10, + "hp": 196 + }, + "upBuff": { + "atk": 12, + "def": 5, + "hp": 93 + }, + "privilege": { + "zjgy_xld": 20 + }, + "img": 1003, + "name": "mingDao_name_3", + "des": "mingDao_des_3", + "privilege_des": "mingDao_tequan_3" + }, + "4": { + "id": 4, + "dao": 1004, + "condition": [ + [ + "use_attr_rmbmoney", + 20000 + ] + ], + "level": 80, + "need": { + "a": "item", + "t": "21", + "n": 1 + }, + "needExp": 1000, + "reward": { + "5": { + "a": "item", + "t": "24", + "n": 5 + }, + "15": { + "a": "equip", + "t": "1010", + "n": 1 + }, + "25": { + "a": "item", + "t": "18", + "n": 200 + }, + "35": { + "a": "attr", + "t": "nexp", + "n": 700000 + }, + "55": { + "a": "equip", + "t": "2010", + "n": 1 + }, + "75": { + "a": "hero", + "t": "5001", + "n": 1 + } + }, + "buff": { + "atk": 43, + "def": 18, + "hp": 326 + }, + "upBuff": { + "atk": 13, + "def": 5, + "hp": 99 + }, + "privilege": { + "dpzd_zl": 1 + }, + "img": 1004, + "name": "mingDao_name_4", + "des": "mingDao_des_4", + "privilege_des": "mingDao_tequan_4" + }, + "5": { + "id": 5, + "dao": 1005, + "condition": [ + [ + "equip_star_5", + 1 + ] + ], + "level": 100, + "need": { + "a": "item", + "t": "21", + "n": 1 + }, + "needExp": 1110, + "reward": { + "5": { + "a": "item", + "t": "24", + "n": 8 + }, + "15": { + "a": "equip", + "t": "3010", + "n": 1 + }, + "25": { + "a": "item", + "t": "10", + "n": 100 + }, + "35": { + "a": "equip", + "t": "4010", + "n": 1 + }, + "55": { + "a": "attr", + "t": "nexp", + "n": 900000 + }, + "75": { + "a": "item", + "t": "10", + "n": 100 + }, + "95": { + "a": "hero", + "t": "5005", + "n": 1 + } + }, + "buff": { + "atk": 52, + "def": 21, + "hp": 392 + }, + "upBuff": { + "atk": 14, + "def": 5, + "hp": 103 + }, + "privilege": { + "zccg_sd": 1 + }, + "img": 2001, + "name": "mingDao_name_5", + "des": "mingDao_des_5", + "privilege_des": "mingDao_tequan_5" + }, + "6": { + "id": 6, + "dao": 1006, + "condition": [ + [ + "zccg", + 50 + ] + ], + "level": 100, + "need": { + "a": "item", + "t": "21", + "n": 1 + }, + "needExp": 1110, + "reward": { + "5": { + "a": "item", + "t": "24", + "n": 10 + }, + "15": { + "a": "equip", + "t": "1010", + "n": 1 + }, + "25": { + "a": "item", + "t": "10", + "n": 100 + }, + "35": { + "a": "equip", + "t": "2010", + "n": 1 + }, + "55": { + "a": "item", + "t": "18", + "n": 100 + }, + "75": { + "a": "attr", + "t": "nexp", + "n": 1100000 + }, + "95": { + "a": "hero", + "t": "5003", + "n": 1 + } + }, + "buff": { + "atk": 61, + "def": 25, + "hp": 457 + }, + "upBuff": { + "atk": 14, + "def": 6, + "hp": 106 + }, + "privilege": { + "pjbb_rl": 100 + }, + "img": 2002, + "name": "mingDao_name_6", + "des": "mingDao_des_6", + "privilege_des": "mingDao_tequan_6" + }, + "7": { + "id": 7, + "dao": 1007, + "condition": [ + [ + "peijian_colour_5", + 2 + ] + ], + "level": 100, + "need": { + "a": "item", + "t": "21", + "n": 1 + }, + "needExp": 1110, + "reward": { + "5": { + "a": "item", + "t": "24", + "n": 12 + }, + "15": { + "a": "equip", + "t": "3010", + "n": 1 + }, + "25": { + "a": "item", + "t": "18", + "n": 150 + }, + "35": { + "a": "equip", + "t": "4010", + "n": 1 + }, + "55": { + "a": "item", + "t": "10", + "n": 120 + }, + "75": { + "a": "attr", + "t": "nexp", + "n": 1300000 + }, + "95": { + "a": "hero", + "t": "5001", + "n": 1 + } + }, + "buff": { + "atk": 70, + "def": 28, + "hp": 523 + }, + "upBuff": { + "atk": 14, + "def": 6, + "hp": 108 + }, + "privilege": { + "hero_buff": { + "xixuepro": 0.05 + } + }, + "img": 2003, + "name": "mingDao_name_7", + "des": "mingDao_des_7", + "privilege_des": "mingDao_tequan_7" + }, + "8": { + "id": 8, + "dao": 1008, + "condition": [ + [ + "equip_star_5", + 4 + ] + ], + "level": 100, + "need": { + "a": "item", + "t": "21", + "n": 1 + }, + "needExp": 1110, + "reward": { + "5": { + "a": "item", + "t": "24", + "n": 14 + }, + "15": { + "a": "equip", + "t": "1010", + "n": 1 + }, + "25": { + "a": "item", + "t": "18", + "n": 150 + }, + "35": { + "a": "equip", + "t": "2010", + "n": 1 + }, + "55": { + "a": "item", + "t": "10", + "n": 120 + }, + "75": { + "a": "attr", + "t": "nexp", + "n": 1500000 + }, + "95": { + "a": "hero", + "t": "5005", + "n": 1 + } + }, + "buff": { + "atk": 78, + "def": 32, + "hp": 588 + }, + "upBuff": { + "atk": 15, + "def": 6, + "hp": 110 + }, + "privilege": { + "hero_buff": { + "dpspro": 0.06 + } + }, + "img": 3001, + "name": "mingDao_name_8", + "des": "mingDao_des_8", + "privilege_des": "mingDao_tequan_8" + }, + "9": { + "id": 9, + "dao": 1009, + "condition": [ + [ + "power", + 1400000 + ] + ], + "level": 150, + "need": { + "a": "item", + "t": "21", + "n": 1 + }, + "needExp": 1850, + "reward": { + "5": { + "a": "attr", + "t": "jinbi", + "n": 1000000 + }, + "15": { + "a": "item", + "t": "24", + "n": 16 + }, + "25": { + "a": "equip", + "t": "3010", + "n": 1 + }, + "35": { + "a": "item", + "t": "18", + "n": 150 + }, + "55": { + "a": "equip", + "t": "4010", + "n": 1 + }, + "75": { + "a": "attr", + "t": "nexp", + "n": 1500000 + }, + "95": { + "a": "item", + "t": "10", + "n": 150 + }, + "125": { + "a": "hero", + "t": "5003", + "n": 1 + } + }, + "buff": { + "atk": 87, + "def": 36, + "hp": 653 + }, + "upBuff": { + "atk": 15, + "def": 6, + "hp": 112 + }, + "privilege": { + "pjbb_rl": 100 + }, + "img": 3002, + "name": "mingDao_name_9", + "des": "mingDao_des_9", + "privilege_des": "mingDao_tequan_9" + }, + "10": { + "id": 10, + "dao": 1010, + "condition": [ + [ + "peijian_colour_5", + 6 + ] + ], + "level": 150, + "need": { + "a": "item", + "t": "21", + "n": 1 + }, + "needExp": 1850, + "reward": { + "5": { + "a": "attr", + "t": "jinbi", + "n": 3000000 + }, + "15": { + "a": "item", + "t": "24", + "n": 18 + }, + "25": { + "a": "item", + "t": "611", + "n": 1 + }, + "35": { + "a": "item", + "t": "10", + "n": 150 + }, + "55": { + "a": "item", + "t": "611", + "n": 1 + }, + "75": { + "a": "attr", + "t": "nexp", + "n": 1500000 + }, + "95": { + "a": "item", + "t": "10", + "n": 150 + }, + "125": { + "a": "hero", + "t": "5001", + "n": 1 + } + }, + "buff": { + "atk": 87, + "def": 36, + "hp": 653 + }, + "upBuff": { + "atk": 16, + "def": 7, + "hp": 124 + }, + "privilege": { + "hero_buff": { + "undpspro": 0.06 + } + }, + "img": 3003, + "name": "mingDao_name_10", + "des": "mingDao_des_10", + "privilege_des": "mingDao_tequan_10" + } +} \ No newline at end of file diff --git a/src/json/mingdao_com.json5 b/src/json/mingdao_com.json5 new file mode 100644 index 0000000..2048900 --- /dev/null +++ b/src/json/mingdao_com.json5 @@ -0,0 +1,12 @@ +{ + //培养暴击几率 + crit: [ + { multiple: 10, p: 5 }, + { multiple: 3, p: 20 }, + { multiple: 1, p: 75 } + ], + //每次培养增加的培养值 + addExp: 5, + //培养材料不足的替代材料 + changeNeed: { a: 'attr', t: 'rmbmoney', 'n': 5 } +} \ No newline at end of file diff --git a/src/json/mw_com.json5 b/src/json/mw_com.json5 new file mode 100644 index 0000000..c56f320 --- /dev/null +++ b/src/json/mw_com.json5 @@ -0,0 +1,75 @@ +{ + //礼包 复制的养成目标格式,自行更改数值 + gift: [ + { + //第一个必须是特权的付费礼包 + index: 0, + need: [], + free: true, + payId: '', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 200} ] + }, + { + index: 1, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 500}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '2', 'n': 2000} ], + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_1_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '21', 'n': 200} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_1_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '21', 'n': 600} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_1_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '21', 'n': 1500} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_1_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '21', 'n': 2500} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_1_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '21', 'n': 6000} ] + }, + { + index: 7, + need: [], + free: false, + payId: 'ycmb_1_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '21', 'n': 12000} ] + } + ], + giftdayprize: { + "prize": [{'a': 'attr', 't': 'rmbmoney', 'n': 200}] + } + + +} \ No newline at end of file diff --git a/src/json/mw_dj.json b/src/json/mw_dj.json new file mode 100644 index 0000000..0035527 --- /dev/null +++ b/src/json/mw_dj.json @@ -0,0 +1,1916 @@ +{ + "0": { + "id": 0, + "name": "intr_mingwang_name_1", + "star": 0, + "lv": 1, + "need": [], + "buff": { + "zj_atk": 0, + "zj_def": 0, + "zj_liliang": 0, + "zj_zhishi": 0 + }, + "img": 0 + }, + "1": { + "id": 1, + "name": "intr_mingwang_name_1", + "star": 1, + "lv": 1, + "need": [ + { + "a": "item", + "t": "14", + "n": 30 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "buff": { + "zj_atk": 6, + "zj_def": 6, + "zj_liliang": 6, + "zj_zhishi": 6 + }, + "img": 0 + }, + "2": { + "id": 2, + "name": "intr_mingwang_name_1", + "star": 2, + "lv": 1, + "need": [ + { + "a": "item", + "t": "14", + "n": 30 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "buff": { + "zj_atk": 7, + "zj_def": 7, + "zj_liliang": 7, + "zj_zhishi": 7 + }, + "img": 0 + }, + "3": { + "id": 3, + "name": "intr_mingwang_name_1", + "star": 3, + "lv": 1, + "need": [ + { + "a": "item", + "t": "14", + "n": 30 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "buff": { + "zj_atk": 8, + "zj_def": 8, + "zj_liliang": 8, + "zj_zhishi": 8 + }, + "img": 0 + }, + "4": { + "id": 4, + "name": "intr_mingwang_name_1", + "star": 4, + "lv": 1, + "need": [ + { + "a": "item", + "t": "14", + "n": 30 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "buff": { + "zj_atk": 9, + "zj_def": 9, + "zj_liliang": 9, + "zj_zhishi": 9 + }, + "img": 0 + }, + "5": { + "id": 5, + "name": "intr_mingwang_name_1", + "star": 5, + "lv": 1, + "need": [ + { + "a": "item", + "t": "14", + "n": 30 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "buff": { + "zj_atk": 10, + "zj_def": 10, + "zj_liliang": 10, + "zj_zhishi": 10 + }, + "img": 0 + }, + "6": { + "id": 6, + "name": "intr_mingwang_name_1", + "star": 6, + "lv": 1, + "need": [ + { + "a": "item", + "t": "14", + "n": 30 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "buff": { + "zj_atk": 12, + "zj_def": 12, + "zj_liliang": 12, + "zj_zhishi": 12 + }, + "img": 0 + }, + "7": { + "id": 7, + "name": "intr_mingwang_name_1", + "star": 7, + "lv": 1, + "need": [ + { + "a": "item", + "t": "14", + "n": 30 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "buff": { + "zj_atk": 13, + "zj_def": 13, + "zj_liliang": 13, + "zj_zhishi": 13 + }, + "img": 0 + }, + "8": { + "id": 8, + "name": "intr_mingwang_name_1", + "star": 8, + "lv": 1, + "need": [ + { + "a": "item", + "t": "14", + "n": 30 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "buff": { + "zj_atk": 14, + "zj_def": 14, + "zj_liliang": 14, + "zj_zhishi": 14 + }, + "img": 0 + }, + "9": { + "id": 9, + "name": "intr_mingwang_name_1", + "star": 9, + "lv": 1, + "need": [ + { + "a": "item", + "t": "14", + "n": 30 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "buff": { + "zj_atk": 15, + "zj_def": 15, + "zj_liliang": 15, + "zj_zhishi": 15 + }, + "img": 0 + }, + "10": { + "id": 10, + "name": "intr_mingwang_name_1", + "star": 10, + "lv": 1, + "need": [ + { + "a": "item", + "t": "14", + "n": 30 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3000000 + } + ], + "buff": { + "zj_atk": 16, + "zj_def": 16, + "zj_liliang": 16, + "zj_zhishi": 16 + }, + "img": 0 + }, + "11": { + "id": 11, + "name": "intr_mingwang_name_6", + "star": 0, + "lv": 2, + "need": [ + { + "a": "item", + "t": "14", + "n": 80 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "buff": { + "zj_atk": 19, + "zj_def": 19, + "zj_liliang": 19, + "zj_zhishi": 19 + }, + "img": 1 + }, + "12": { + "id": 12, + "name": "intr_mingwang_name_6", + "star": 1, + "lv": 2, + "need": [ + { + "a": "item", + "t": "14", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "buff": { + "zj_atk": 20, + "zj_def": 20, + "zj_liliang": 20, + "zj_zhishi": 20 + }, + "img": 1 + }, + "13": { + "id": 13, + "name": "intr_mingwang_name_6", + "star": 2, + "lv": 2, + "need": [ + { + "a": "item", + "t": "14", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "buff": { + "zj_atk": 21, + "zj_def": 21, + "zj_liliang": 21, + "zj_zhishi": 21 + }, + "img": 1 + }, + "14": { + "id": 14, + "name": "intr_mingwang_name_6", + "star": 3, + "lv": 2, + "need": [ + { + "a": "item", + "t": "14", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "buff": { + "zj_atk": 22, + "zj_def": 22, + "zj_liliang": 22, + "zj_zhishi": 22 + }, + "img": 1 + }, + "15": { + "id": 15, + "name": "intr_mingwang_name_6", + "star": 4, + "lv": 2, + "need": [ + { + "a": "item", + "t": "14", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "buff": { + "zj_atk": 23, + "zj_def": 23, + "zj_liliang": 23, + "zj_zhishi": 23 + }, + "img": 1 + }, + "16": { + "id": 16, + "name": "intr_mingwang_name_6", + "star": 5, + "lv": 2, + "need": [ + { + "a": "item", + "t": "14", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "buff": { + "zj_atk": 27, + "zj_def": 27, + "zj_liliang": 27, + "zj_zhishi": 27 + }, + "img": 1 + }, + "17": { + "id": 17, + "name": "intr_mingwang_name_6", + "star": 6, + "lv": 2, + "need": [ + { + "a": "item", + "t": "14", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "buff": { + "zj_atk": 28, + "zj_def": 28, + "zj_liliang": 28, + "zj_zhishi": 28 + }, + "img": 1 + }, + "18": { + "id": 18, + "name": "intr_mingwang_name_6", + "star": 7, + "lv": 2, + "need": [ + { + "a": "item", + "t": "14", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "buff": { + "zj_atk": 29, + "zj_def": 29, + "zj_liliang": 29, + "zj_zhishi": 29 + }, + "img": 1 + }, + "19": { + "id": 19, + "name": "intr_mingwang_name_6", + "star": 8, + "lv": 2, + "need": [ + { + "a": "item", + "t": "14", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "buff": { + "zj_atk": 30, + "zj_def": 30, + "zj_liliang": 30, + "zj_zhishi": 30 + }, + "img": 1 + }, + "20": { + "id": 20, + "name": "intr_mingwang_name_6", + "star": 9, + "lv": 2, + "need": [ + { + "a": "item", + "t": "14", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "buff": { + "zj_atk": 31, + "zj_def": 31, + "zj_liliang": 31, + "zj_zhishi": 31 + }, + "img": 1 + }, + "21": { + "id": 21, + "name": "intr_mingwang_name_6", + "star": 10, + "lv": 2, + "need": [ + { + "a": "item", + "t": "14", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + } + ], + "buff": { + "zj_atk": 35, + "zj_def": 35, + "zj_liliang": 35, + "zj_zhishi": 35 + }, + "img": 1 + }, + "22": { + "id": 22, + "name": "intr_mingwang_name_11", + "star": 0, + "lv": 3, + "need": [ + { + "a": "item", + "t": "14", + "n": 120 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + } + ], + "buff": { + "zj_atk": 36, + "zj_def": 36, + "zj_liliang": 36, + "zj_zhishi": 36 + }, + "img": 2 + }, + "23": { + "id": 23, + "name": "intr_mingwang_name_11", + "star": 1, + "lv": 3, + "need": [ + { + "a": "item", + "t": "14", + "n": 70 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + } + ], + "buff": { + "zj_atk": 37, + "zj_def": 37, + "zj_liliang": 37, + "zj_zhishi": 37 + }, + "img": 2 + }, + "24": { + "id": 24, + "name": "intr_mingwang_name_11", + "star": 2, + "lv": 3, + "need": [ + { + "a": "item", + "t": "14", + "n": 70 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + } + ], + "buff": { + "zj_atk": 38, + "zj_def": 38, + "zj_liliang": 38, + "zj_zhishi": 38 + }, + "img": 2 + }, + "25": { + "id": 25, + "name": "intr_mingwang_name_11", + "star": 3, + "lv": 3, + "need": [ + { + "a": "item", + "t": "14", + "n": 70 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + } + ], + "buff": { + "zj_atk": 39, + "zj_def": 39, + "zj_liliang": 39, + "zj_zhishi": 39 + }, + "img": 2 + }, + "26": { + "id": 26, + "name": "intr_mingwang_name_11", + "star": 4, + "lv": 3, + "need": [ + { + "a": "item", + "t": "14", + "n": 70 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + } + ], + "buff": { + "zj_atk": 44, + "zj_def": 44, + "zj_liliang": 44, + "zj_zhishi": 44 + }, + "img": 2 + }, + "27": { + "id": 27, + "name": "intr_mingwang_name_11", + "star": 5, + "lv": 3, + "need": [ + { + "a": "item", + "t": "14", + "n": 70 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + } + ], + "buff": { + "zj_atk": 45, + "zj_def": 45, + "zj_liliang": 45, + "zj_zhishi": 45 + }, + "img": 2 + }, + "28": { + "id": 28, + "name": "intr_mingwang_name_11", + "star": 6, + "lv": 3, + "need": [ + { + "a": "item", + "t": "14", + "n": 70 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + } + ], + "buff": { + "zj_atk": 46, + "zj_def": 46, + "zj_liliang": 46, + "zj_zhishi": 46 + }, + "img": 2 + }, + "29": { + "id": 29, + "name": "intr_mingwang_name_11", + "star": 7, + "lv": 3, + "need": [ + { + "a": "item", + "t": "14", + "n": 70 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + } + ], + "buff": { + "zj_atk": 47, + "zj_def": 47, + "zj_liliang": 47, + "zj_zhishi": 47 + }, + "img": 2 + }, + "30": { + "id": 30, + "name": "intr_mingwang_name_11", + "star": 8, + "lv": 3, + "need": [ + { + "a": "item", + "t": "14", + "n": 70 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + } + ], + "buff": { + "zj_atk": 48, + "zj_def": 48, + "zj_liliang": 48, + "zj_zhishi": 48 + }, + "img": 2 + }, + "31": { + "id": 31, + "name": "intr_mingwang_name_11", + "star": 9, + "lv": 3, + "need": [ + { + "a": "item", + "t": "14", + "n": 70 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + } + ], + "buff": { + "zj_atk": 53, + "zj_def": 53, + "zj_liliang": 53, + "zj_zhishi": 53 + }, + "img": 2 + }, + "32": { + "id": 32, + "name": "intr_mingwang_name_11", + "star": 10, + "lv": 3, + "need": [ + { + "a": "item", + "t": "14", + "n": 70 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7000000 + } + ], + "buff": { + "zj_atk": 54, + "zj_def": 54, + "zj_liliang": 54, + "zj_zhishi": 54 + }, + "img": 2 + }, + "33": { + "id": 33, + "name": "intr_mingwang_name_16", + "star": 0, + "lv": 4, + "need": [ + { + "a": "item", + "t": "14", + "n": 240 + }, + { + "a": "attr", + "t": "jinbi", + "n": 8000000 + } + ], + "buff": { + "zj_atk": 55, + "zj_def": 55, + "zj_liliang": 55, + "zj_zhishi": 55 + }, + "img": 3 + }, + "34": { + "id": 34, + "name": "intr_mingwang_name_16", + "star": 1, + "lv": 4, + "need": [ + { + "a": "item", + "t": "14", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 8000000 + } + ], + "buff": { + "zj_atk": 56, + "zj_def": 56, + "zj_liliang": 56, + "zj_zhishi": 56 + }, + "img": 3 + }, + "35": { + "id": 35, + "name": "intr_mingwang_name_16", + "star": 2, + "lv": 4, + "need": [ + { + "a": "item", + "t": "14", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 8000000 + } + ], + "buff": { + "zj_atk": 57, + "zj_def": 57, + "zj_liliang": 57, + "zj_zhishi": 57 + }, + "img": 3 + }, + "36": { + "id": 36, + "name": "intr_mingwang_name_16", + "star": 3, + "lv": 4, + "need": [ + { + "a": "item", + "t": "14", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 8000000 + } + ], + "buff": { + "zj_atk": 58, + "zj_def": 58, + "zj_liliang": 58, + "zj_zhishi": 58 + }, + "img": 3 + }, + "37": { + "id": 37, + "name": "intr_mingwang_name_16", + "star": 4, + "lv": 4, + "need": [ + { + "a": "item", + "t": "14", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 8000000 + } + ], + "buff": { + "zj_atk": 59, + "zj_def": 59, + "zj_liliang": 59, + "zj_zhishi": 59 + }, + "img": 3 + }, + "38": { + "id": 38, + "name": "intr_mingwang_name_16", + "star": 5, + "lv": 4, + "need": [ + { + "a": "item", + "t": "14", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 8000000 + } + ], + "buff": { + "zj_atk": 60, + "zj_def": 60, + "zj_liliang": 60, + "zj_zhishi": 60 + }, + "img": 3 + }, + "39": { + "id": 39, + "name": "intr_mingwang_name_16", + "star": 6, + "lv": 4, + "need": [ + { + "a": "item", + "t": "14", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 8000000 + } + ], + "buff": { + "zj_atk": 63, + "zj_def": 63, + "zj_liliang": 63, + "zj_zhishi": 63 + }, + "img": 3 + }, + "40": { + "id": 40, + "name": "intr_mingwang_name_16", + "star": 7, + "lv": 4, + "need": [ + { + "a": "item", + "t": "14", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 8000000 + } + ], + "buff": { + "zj_atk": 64, + "zj_def": 64, + "zj_liliang": 64, + "zj_zhishi": 64 + }, + "img": 3 + }, + "41": { + "id": 41, + "name": "intr_mingwang_name_16", + "star": 8, + "lv": 4, + "need": [ + { + "a": "item", + "t": "14", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 8000000 + } + ], + "buff": { + "zj_atk": 65, + "zj_def": 65, + "zj_liliang": 65, + "zj_zhishi": 65 + }, + "img": 3 + }, + "42": { + "id": 42, + "name": "intr_mingwang_name_16", + "star": 9, + "lv": 4, + "need": [ + { + "a": "item", + "t": "14", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 8000000 + } + ], + "buff": { + "zj_atk": 66, + "zj_def": 66, + "zj_liliang": 66, + "zj_zhishi": 66 + }, + "img": 3 + }, + "43": { + "id": 43, + "name": "intr_mingwang_name_16", + "star": 10, + "lv": 4, + "need": [ + { + "a": "item", + "t": "14", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + } + ], + "buff": { + "zj_atk": 67, + "zj_def": 67, + "zj_liliang": 67, + "zj_zhishi": 67 + }, + "img": 3 + }, + "44": { + "id": 44, + "name": "intr_mingwang_name_21", + "star": 0, + "lv": 5, + "need": [ + { + "a": "item", + "t": "14", + "n": 360 + }, + { + "a": "attr", + "t": "jinbi", + "n": 10000000 + } + ], + "buff": { + "zj_atk": 73, + "zj_def": 73, + "zj_liliang": 73, + "zj_zhishi": 73 + }, + "img": 4 + }, + "45": { + "id": 45, + "name": "intr_mingwang_name_21", + "star": 1, + "lv": 5, + "need": [ + { + "a": "item", + "t": "14", + "n": 130 + }, + { + "a": "attr", + "t": "jinbi", + "n": 10000000 + } + ], + "buff": { + "zj_atk": 74, + "zj_def": 74, + "zj_liliang": 74, + "zj_zhishi": 74 + }, + "img": 4 + }, + "46": { + "id": 46, + "name": "intr_mingwang_name_21", + "star": 2, + "lv": 5, + "need": [ + { + "a": "item", + "t": "14", + "n": 130 + }, + { + "a": "attr", + "t": "jinbi", + "n": 10000000 + } + ], + "buff": { + "zj_atk": 75, + "zj_def": 75, + "zj_liliang": 75, + "zj_zhishi": 75 + }, + "img": 4 + }, + "47": { + "id": 47, + "name": "intr_mingwang_name_21", + "star": 3, + "lv": 5, + "need": [ + { + "a": "item", + "t": "14", + "n": 130 + }, + { + "a": "attr", + "t": "jinbi", + "n": 10000000 + } + ], + "buff": { + "zj_atk": 76, + "zj_def": 76, + "zj_liliang": 76, + "zj_zhishi": 76 + }, + "img": 4 + }, + "48": { + "id": 48, + "name": "intr_mingwang_name_21", + "star": 4, + "lv": 5, + "need": [ + { + "a": "item", + "t": "14", + "n": 130 + }, + { + "a": "attr", + "t": "jinbi", + "n": 10000000 + } + ], + "buff": { + "zj_atk": 77, + "zj_def": 77, + "zj_liliang": 77, + "zj_zhishi": 77 + }, + "img": 4 + }, + "49": { + "id": 49, + "name": "intr_mingwang_name_21", + "star": 5, + "lv": 5, + "need": [ + { + "a": "item", + "t": "14", + "n": 130 + }, + { + "a": "attr", + "t": "jinbi", + "n": 10000000 + } + ], + "buff": { + "zj_atk": 84, + "zj_def": 84, + "zj_liliang": 84, + "zj_zhishi": 84 + }, + "img": 4 + }, + "50": { + "id": 50, + "name": "intr_mingwang_name_21", + "star": 6, + "lv": 5, + "need": [ + { + "a": "item", + "t": "14", + "n": 130 + }, + { + "a": "attr", + "t": "jinbi", + "n": 10000000 + } + ], + "buff": { + "zj_atk": 85, + "zj_def": 85, + "zj_liliang": 85, + "zj_zhishi": 85 + }, + "img": 4 + }, + "51": { + "id": 51, + "name": "intr_mingwang_name_21", + "star": 7, + "lv": 5, + "need": [ + { + "a": "item", + "t": "14", + "n": 130 + }, + { + "a": "attr", + "t": "jinbi", + "n": 10000000 + } + ], + "buff": { + "zj_atk": 86, + "zj_def": 86, + "zj_liliang": 86, + "zj_zhishi": 86 + }, + "img": 4 + }, + "52": { + "id": 52, + "name": "intr_mingwang_name_21", + "star": 8, + "lv": 5, + "need": [ + { + "a": "item", + "t": "14", + "n": 130 + }, + { + "a": "attr", + "t": "jinbi", + "n": 10000000 + } + ], + "buff": { + "zj_atk": 87, + "zj_def": 87, + "zj_liliang": 87, + "zj_zhishi": 87 + }, + "img": 4 + }, + "53": { + "id": 53, + "name": "intr_mingwang_name_21", + "star": 9, + "lv": 5, + "need": [ + { + "a": "item", + "t": "14", + "n": 130 + }, + { + "a": "attr", + "t": "jinbi", + "n": 10000000 + } + ], + "buff": { + "zj_atk": 88, + "zj_def": 88, + "zj_liliang": 88, + "zj_zhishi": 88 + }, + "img": 4 + }, + "54": { + "id": 54, + "name": "intr_mingwang_name_21", + "star": 10, + "lv": 5, + "need": [ + { + "a": "item", + "t": "14", + "n": 130 + }, + { + "a": "attr", + "t": "jinbi", + "n": 11000000 + } + ], + "buff": { + "zj_atk": 95, + "zj_def": 95, + "zj_liliang": 95, + "zj_zhishi": 95 + }, + "img": 4 + }, + "55": { + "id": 55, + "name": "intr_mingwang_name_26", + "star": 0, + "lv": 6, + "need": [ + { + "a": "item", + "t": "14", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 11000000 + } + ], + "buff": { + "zj_atk": 96, + "zj_def": 96, + "zj_liliang": 96, + "zj_zhishi": 96 + }, + "img": 5 + }, + "56": { + "id": 56, + "name": "intr_mingwang_name_26", + "star": 1, + "lv": 6, + "need": [ + { + "a": "item", + "t": "14", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12000000 + } + ], + "buff": { + "zj_atk": 97, + "zj_def": 97, + "zj_liliang": 97, + "zj_zhishi": 97 + }, + "img": 5 + }, + "57": { + "id": 57, + "name": "intr_mingwang_name_26", + "star": 2, + "lv": 6, + "need": [ + { + "a": "item", + "t": "14", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12000000 + } + ], + "buff": { + "zj_atk": 98, + "zj_def": 98, + "zj_liliang": 98, + "zj_zhishi": 98 + }, + "img": 5 + }, + "58": { + "id": 58, + "name": "intr_mingwang_name_26", + "star": 3, + "lv": 6, + "need": [ + { + "a": "item", + "t": "14", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12000000 + } + ], + "buff": { + "zj_atk": 99, + "zj_def": 99, + "zj_liliang": 99, + "zj_zhishi": 99 + }, + "img": 5 + }, + "59": { + "id": 59, + "name": "intr_mingwang_name_26", + "star": 4, + "lv": 6, + "need": [ + { + "a": "item", + "t": "14", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12000000 + } + ], + "buff": { + "zj_atk": 107, + "zj_def": 107, + "zj_liliang": 107, + "zj_zhishi": 107 + }, + "img": 5 + }, + "60": { + "id": 60, + "name": "intr_mingwang_name_26", + "star": 5, + "lv": 6, + "need": [ + { + "a": "item", + "t": "14", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12000000 + } + ], + "buff": { + "zj_atk": 108, + "zj_def": 108, + "zj_liliang": 108, + "zj_zhishi": 108 + }, + "img": 5 + }, + "61": { + "id": 61, + "name": "intr_mingwang_name_26", + "star": 6, + "lv": 6, + "need": [ + { + "a": "item", + "t": "14", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12000000 + } + ], + "buff": { + "zj_atk": 109, + "zj_def": 109, + "zj_liliang": 109, + "zj_zhishi": 109 + }, + "img": 5 + }, + "62": { + "id": 62, + "name": "intr_mingwang_name_26", + "star": 7, + "lv": 6, + "need": [ + { + "a": "item", + "t": "14", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12000000 + } + ], + "buff": { + "zj_atk": 110, + "zj_def": 110, + "zj_liliang": 110, + "zj_zhishi": 110 + }, + "img": 5 + }, + "63": { + "id": 63, + "name": "intr_mingwang_name_26", + "star": 8, + "lv": 6, + "need": [ + { + "a": "item", + "t": "14", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12000000 + } + ], + "buff": { + "zj_atk": 111, + "zj_def": 111, + "zj_liliang": 111, + "zj_zhishi": 111 + }, + "img": 5 + }, + "64": { + "id": 64, + "name": "intr_mingwang_name_26", + "star": 9, + "lv": 6, + "need": [ + { + "a": "item", + "t": "14", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12000000 + } + ], + "buff": { + "zj_atk": 119, + "zj_def": 119, + "zj_liliang": 119, + "zj_zhishi": 119 + }, + "img": 5 + }, + "65": { + "id": 65, + "name": "intr_mingwang_name_26", + "star": 10, + "lv": 6, + "need": [ + { + "a": "item", + "t": "14", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 13000000 + } + ], + "buff": { + "zj_atk": 120, + "zj_def": 120, + "zj_liliang": 120, + "zj_zhishi": 120 + }, + "img": 5 + }, + "66": { + "id": 66, + "name": "intr_mingwang_name_31", + "star": 0, + "lv": 7, + "need": [ + { + "a": "item", + "t": "14", + "n": 520 + }, + { + "a": "attr", + "t": "jinbi", + "n": 14000000 + } + ], + "buff": { + "zj_atk": 121, + "zj_def": 121, + "zj_liliang": 121, + "zj_zhishi": 121 + }, + "img": 6 + }, + "67": { + "id": 67, + "name": "intr_mingwang_name_31", + "star": 1, + "lv": 7, + "need": [ + { + "a": "item", + "t": "14", + "n": 260 + }, + { + "a": "attr", + "t": "jinbi", + "n": 14000000 + } + ], + "buff": { + "zj_atk": 122, + "zj_def": 122, + "zj_liliang": 122, + "zj_zhishi": 122 + }, + "img": 6 + }, + "68": { + "id": 68, + "name": "intr_mingwang_name_31", + "star": 2, + "lv": 7, + "need": [ + { + "a": "item", + "t": "14", + "n": 260 + }, + { + "a": "attr", + "t": "jinbi", + "n": 14000000 + } + ], + "buff": { + "zj_atk": 123, + "zj_def": 123, + "zj_liliang": 123, + "zj_zhishi": 123 + }, + "img": 6 + }, + "69": { + "id": 69, + "name": "intr_mingwang_name_31", + "star": 3, + "lv": 7, + "need": [ + { + "a": "item", + "t": "14", + "n": 260 + }, + { + "a": "attr", + "t": "jinbi", + "n": 14000000 + } + ], + "buff": { + "zj_atk": 124, + "zj_def": 124, + "zj_liliang": 124, + "zj_zhishi": 124 + }, + "img": 6 + }, + "70": { + "id": 70, + "name": "intr_mingwang_name_31", + "star": 4, + "lv": 7, + "need": [ + { + "a": "item", + "t": "14", + "n": 260 + }, + { + "a": "attr", + "t": "jinbi", + "n": 14000000 + } + ], + "buff": { + "zj_atk": 125, + "zj_def": 125, + "zj_liliang": 125, + "zj_zhishi": 125 + }, + "img": 6 + }, + "71": { + "id": 71, + "name": "intr_mingwang_name_31", + "star": 5, + "lv": 7, + "need": [ + { + "a": "item", + "t": "14", + "n": 260 + }, + { + "a": "attr", + "t": "jinbi", + "n": 14000000 + } + ], + "buff": { + "zj_atk": 131, + "zj_def": 131, + "zj_liliang": 131, + "zj_zhishi": 131 + }, + "img": 6 + }, + "72": { + "id": 72, + "name": "intr_mingwang_name_31", + "star": 6, + "lv": 7, + "need": [ + { + "a": "item", + "t": "14", + "n": 260 + }, + { + "a": "attr", + "t": "jinbi", + "n": 14000000 + } + ], + "buff": { + "zj_atk": 132, + "zj_def": 132, + "zj_liliang": 132, + "zj_zhishi": 132 + }, + "img": 6 + }, + "73": { + "id": 73, + "name": "intr_mingwang_name_31", + "star": 7, + "lv": 7, + "need": [ + { + "a": "item", + "t": "14", + "n": 260 + }, + { + "a": "attr", + "t": "jinbi", + "n": 14000000 + } + ], + "buff": { + "zj_atk": 133, + "zj_def": 133, + "zj_liliang": 133, + "zj_zhishi": 133 + }, + "img": 6 + }, + "74": { + "id": 74, + "name": "intr_mingwang_name_31", + "star": 8, + "lv": 7, + "need": [ + { + "a": "item", + "t": "14", + "n": 260 + }, + { + "a": "attr", + "t": "jinbi", + "n": 14000000 + } + ], + "buff": { + "zj_atk": 134, + "zj_def": 134, + "zj_liliang": 134, + "zj_zhishi": 134 + }, + "img": 6 + }, + "75": { + "id": 75, + "name": "intr_mingwang_name_31", + "star": 9, + "lv": 7, + "need": [ + { + "a": "item", + "t": "14", + "n": 260 + }, + { + "a": "attr", + "t": "jinbi", + "n": 14000000 + } + ], + "buff": { + "zj_atk": 135, + "zj_def": 135, + "zj_liliang": 135, + "zj_zhishi": 135 + }, + "img": 6 + }, + "76": { + "id": 76, + "name": "intr_mingwang_name_31", + "star": 10, + "lv": 7, + "need": [ + { + "a": "item", + "t": "14", + "n": 260 + }, + { + "a": "attr", + "t": "jinbi", + "n": 15000000 + } + ], + "buff": { + "zj_atk": 145, + "zj_def": 145, + "zj_liliang": 145, + "zj_zhishi": 145 + }, + "img": 6 + } +} \ No newline at end of file diff --git a/src/json/name.json b/src/json/name.json new file mode 100644 index 0000000..cfc3890 --- /dev/null +++ b/src/json/name.json @@ -0,0 +1,502 @@ +{ + "1": { + "id": 1, + "qian": "-", + "hou": "I" + }, + "2": { + "id": 2, + "qian": "丿", + "hou": "II" + }, + "3": { + "id": 3, + "qian": "--", + "hou": "III" + }, + "4": { + "id": 4, + "qian": "丨", + "hou": "IV" + }, + "5": { + "id": 5, + "qian": "▼", + "hou": "V" + }, + "6": { + "id": 6, + "qian": "◆", + "hou": "VI" + }, + "7": { + "id": 7, + "qian": "◇", + "hou": "VII" + }, + "8": { + "id": 8, + "qian": "£", + "hou": "VIII" + }, + "9": { + "id": 9, + "qian": "① ", + "hou": "IX" + }, + "10": { + "id": 10, + "qian": "② ", + "hou": "X" + }, + "11": { + "id": 11, + "qian": "③", + "hou": "XI" + }, + "12": { + "id": 12, + "qian": "④", + "hou": "XII" + }, + "13": { + "id": 13, + "qian": "⑤", + "hou": "XIII" + }, + "14": { + "id": 14, + "qian": "⑥", + "hou": "XIV" + }, + "15": { + "id": 15, + "qian": "⑦", + "hou": "XV" + }, + "16": { + "id": 16, + "qian": "⑧", + "hou": "XVI" + }, + "17": { + "id": 17, + "qian": "⑨", + "hou": "XVII" + }, + "18": { + "id": 18, + "qian": "⑩", + "hou": "XVIII" + }, + "19": { + "id": 19, + "qian": "⑪", + "hou": "XIX" + }, + "20": { + "id": 20, + "qian": "⑫", + "hou": "XX" + }, + "21": { + "id": 21, + "qian": "⑬", + "hou": "XXI" + }, + "22": { + "id": 22, + "qian": "⑭", + "hou": "XXII" + }, + "23": { + "id": 23, + "qian": "⑮", + "hou": "XXIII" + }, + "24": { + "id": 24, + "qian": "⑯", + "hou": "XXIV" + }, + "25": { + "id": 25, + "qian": "⑰", + "hou": "XXV" + }, + "26": { + "id": 26, + "qian": "⑱", + "hou": "XXVI" + }, + "27": { + "id": 27, + "qian": "⑲", + "hou": "XXVII" + }, + "28": { + "id": 28, + "qian": "⑳", + "hou": "XXVIII" + }, + "29": { + "id": 29, + "qian": "+", + "hou": "XXIX" + }, + "30": { + "id": 30, + "qian": "-", + "hou": "XXX" + }, + "31": { + "id": 31, + "qian": "×", + "hou": "XXXI" + }, + "32": { + "id": 32, + "qian": "➗", + "hou": "XXXII" + }, + "33": { + "id": 33, + "qian": "α", + "hou": "XXXII" + }, + "34": { + "id": 34, + "qian": "β", + "hou": "XXXIV" + }, + "35": { + "id": 35, + "qian": "γ", + "hou": "XXXV" + }, + "36": { + "id": 36, + "qian": "δ", + "hou": "XXXVI" + }, + "37": { + "id": 37, + "qian": "ε", + "hou": "XXXVII" + }, + "38": { + "id": 38, + "qian": "ζ", + "hou": "XXXVIII" + }, + "39": { + "id": 39, + "qian": "ν", + "hou": "XXXIX" + }, + "40": { + "id": 40, + "qian": "ξ", + "hou": "XL" + }, + "41": { + "id": 41, + "qian": "ο", + "hou": "XLI" + }, + "42": { + "id": 42, + "qian": "π", + "hou": "XLII" + }, + "43": { + "id": 43, + "qian": "ρ", + "hou": "XLIII" + }, + "44": { + "id": 44, + "qian": "σ", + "hou": "XLIV" + }, + "45": { + "id": 45, + "qian": "η", + "hou": "XLV" + }, + "46": { + "id": 46, + "qian": "θ", + "hou": "XLVI" + }, + "47": { + "id": 47, + "qian": "ι", + "hou": "XLVII" + }, + "48": { + "id": 48, + "qian": "κ", + "hou": "XLVIII" + }, + "49": { + "id": 49, + "qian": "λ", + "hou": "XLIX" + }, + "50": { + "id": 50, + "qian": "μ", + "hou": "L" + }, + "51": { + "id": 51, + "qian": "τ", + "hou": "LI" + }, + "52": { + "id": 52, + "qian": "υ", + "hou": "LII" + }, + "53": { + "id": 53, + "qian": "φ", + "hou": "LIII" + }, + "54": { + "id": 54, + "qian": "χ", + "hou": "LIV" + }, + "55": { + "id": 55, + "qian": "ψ", + "hou": "LV" + }, + "56": { + "id": 56, + "qian": "ω", + "hou": "LVI" + }, + "57": { + "id": 57, + "qian": "Θ", + "hou": "LVII" + }, + "58": { + "id": 58, + "qian": "Δ", + "hou": "LVIII" + }, + "59": { + "id": 59, + "qian": "Λ", + "hou": "LVIX" + }, + "60": { + "id": 60, + "qian": "Ξ", + "hou": "LX" + }, + "61": { + "id": 61, + "qian": "Π", + "hou": "LXI" + }, + "62": { + "id": 62, + "qian": "Σ", + "hou": "LXII" + }, + "63": { + "id": 63, + "qian": "Φ", + "hou": "LXIII" + }, + "64": { + "id": 64, + "qian": "Ψ", + "hou": "XIV" + }, + "65": { + "id": 65, + "qian": "Ω", + "hou": "XV" + }, + "66": { + "id": 66, + "qian": "∞", + "hou": "LXVI" + }, + "67": { + "id": 67, + "qian": "♩", + "hou": "LXVII" + }, + "68": { + "id": 68, + "qian": "♪", + "hou": "LXVIII" + }, + "69": { + "id": 69, + "qian": "♫", + "hou": "LXIX" + }, + "70": { + "id": 70, + "qian": "♬", + "hou": "LXX" + }, + "71": { + "id": 71, + "qian": "¶", + "hou": "LXXI" + }, + "72": { + "id": 72, + "qian": "♭", + "hou": "LXXII" + }, + "73": { + "id": 73, + "qian": "♯", + "hou": "LXXIII" + }, + "74": { + "id": 74, + "qian": "♮", + "hou": "LXXIV" + }, + "75": { + "id": 75, + "qian": "∮", + "hou": "LXXV" + }, + "76": { + "id": 76, + "qian": "‖", + "hou": "LXXVI" + }, + "77": { + "id": 77, + "qian": "Ψ", + "hou": "LXXVII" + }, + "78": { + "id": 78, + "qian": "☀", + "hou": "LXXVIII" + }, + "79": { + "id": 79, + "qian": "☼", + "hou": "LXXIX" + }, + "80": { + "id": 80, + "qian": "♨", + "hou": "LXXX" + }, + "81": { + "id": 81, + "qian": "☁", + "hou": "LXXXI" + }, + "82": { + "id": 82, + "qian": "☂", + "hou": "LXXXII" + }, + "83": { + "id": 83, + "qian": "☽", + "hou": "LXXXIII" + }, + "84": { + "id": 84, + "qian": "☾", + "hou": "LXXXIV" + }, + "85": { + "id": 85, + "qian": "❄", + "hou": "LXXXV" + }, + "86": { + "id": 86, + "qian": "❅", + "hou": "LXXXVI" + }, + "87": { + "id": 87, + "qian": "❆", + "hou": "LXXXVII" + }, + "88": { + "id": 88, + "qian": "☃", + "hou": "LXXXVIII" + }, + "89": { + "id": 89, + "qian": "$", + "hou": "LXXXIX" + }, + "90": { + "id": 90, + "qian": "✪", + "hou": "XC" + }, + "91": { + "id": 91, + "qian": "☑", + "hou": "XCI" + }, + "92": { + "id": 92, + "qian": "☓", + "hou": "XCII" + }, + "93": { + "id": 93, + "qian": "✪", + "hou": "XCIII" + }, + "94": { + "id": 94, + "qian": "❋", + "hou": "XCIV" + }, + "95": { + "id": 95, + "qian": "✴", + "hou": "XCV" + }, + "96": { + "id": 96, + "qian": "✵", + "hou": "XCVI" + }, + "97": { + "id": 97, + "qian": "✾ ", + "hou": "XCVII" + }, + "98": { + "id": 98, + "qian": "∑", + "hou": "XCVIII" + }, + "99": { + "id": 99, + "qian": "⊿", + "hou": "XCIX" + }, + "100": { + "id": 100, + "qian": "‰", + "hou": "C" + } +} \ No newline at end of file diff --git a/src/json/niudanji.json5 b/src/json/niudanji.json5 new file mode 100644 index 0000000..641ba51 --- /dev/null +++ b/src/json/niudanji.json5 @@ -0,0 +1,54 @@ +{ + //每充值x充值经验获得一次扭蛋次数 + pay2num: 500, + //每抽取x次必定获得终级大奖 + num2lottery: 50, + //奖励 + lottery: [ + { + p: 1, + pmd: true, + prize: [{a: 'item', t: '611', n: 1}] + }, + { + p: 2, + pmd: false, + prize: [{a: 'item', t: '5002', n: 20}, {a: 'item', t: '5004', n: 20}] + }, + { + p: 4, + pmd: true, + prize: [{a: 'item', t: '600', n: 20}] + }, + { + p: 5, + pmd: false, + prize: [{a: 'item', t: '18', n:300},{a: 'item', t: '20', n: 350}] + }, + { + p: 6, + pmd: true, + prize: [{a: 'item', t: '609', n:1}] + }, + { + p: 8, + pmd: false, + prize: [{a: 'item', t: '2', n:3000},{a: 'item', t: '12', n:1500}] + }, + { + p: 10, + pmd: false, + prize: [{a: 'item', t: '13', n:500},{a: 'item', t: '9', n: 1500}] + }, + { + p: 13, + pmd: false, + prize: [{a: 'attr', t: 'rmbmoney', n:1500}] + }, + { + p: 30, + pmd: false, + prize: [{a: 'attr', t: 'jinbi', n:5000000}] + }, + ] +} \ No newline at end of file diff --git a/src/json/npc.json b/src/json/npc.json new file mode 100644 index 0000000..75fa10b --- /dev/null +++ b/src/json/npc.json @@ -0,0 +1,37585 @@ +{ + "1": { + "npcId": 1, + "attr": {}, + "npclist": "1001_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "2": { + "npcId": 2, + "attr": {}, + "npclist": "1002_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "3": { + "npcId": 3, + "attr": {}, + "npclist": "2001_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "4": { + "npcId": 4, + "attr": {}, + "npclist": "2002_31_90002", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "5": { + "npcId": 5, + "attr": {}, + "npclist": "3001_32_90002", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "6": { + "npcId": 6, + "attr": {}, + "npclist": "3007_33_90002#3012_33_90002", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "7": { + "npcId": 7, + "attr": {}, + "npclist": "3008_34_90002#3013_34_90002", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "8": { + "npcId": 8, + "attr": {}, + "npclist": "3009_35_90002#3014_35_90002", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "9": { + "npcId": 9, + "attr": {}, + "npclist": "3010_36_90002#3015_36_90002", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "10": { + "npcId": 10, + "attr": {}, + "npclist": "3011_37_90002#4001_37_90002", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "11": { + "npcId": 11, + "attr": {}, + "npclist": "3012_38_90002#4002_38_90002", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "12": { + "npcId": 12, + "attr": {}, + "npclist": "3013_39_90002#4003_39_90002", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "13": { + "npcId": 13, + "attr": {}, + "npclist": "3014_40_90002#4004_40_90002", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "14": { + "npcId": 14, + "attr": {}, + "npclist": "3015_42_90002#4005_42_90002", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15": { + "npcId": 15, + "attr": {}, + "npclist": "4001_44_90002#4006_44_90002", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "16": { + "npcId": 16, + "attr": {}, + "npclist": "4002_46_90002#4007_46_90002#4012_46_90002", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "17": { + "npcId": 17, + "attr": {}, + "npclist": "4003_47_90002#4008_47_90002#4013_47_90002", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "18": { + "npcId": 18, + "attr": {}, + "npclist": "4004_48_90002#4009_48_90002#4014_48_90002", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "19": { + "npcId": 19, + "attr": {}, + "npclist": "4005_49_90002#4010_49_90002#4015_49_90002", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "20": { + "npcId": 20, + "attr": {}, + "npclist": "4006_50_90002#4011_50_90002#5001_50_90002", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "21": { + "npcId": 21, + "attr": {}, + "npclist": "4007_51_90002#4012_51_90002#5002_51_90002#3002_51_90002", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "22": { + "npcId": 22, + "attr": {}, + "npclist": "4008_52_90002#4013_52_90002#5003_52_90002#3003_52_90002", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "23": { + "npcId": 23, + "attr": {}, + "npclist": "4009_53_90002#4014_53_90002#5004_53_90002#3004_53_90002", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "24": { + "npcId": 24, + "attr": {}, + "npclist": "4010_54_90004#4015_54_90004#5005_54_90004#3005_54_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "25": { + "npcId": 25, + "attr": {}, + "npclist": "4011_55_90004#5001_55_90004#3001_55_90004#3006_55_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "26": { + "npcId": 26, + "attr": {}, + "npclist": "4012_56_90004#5002_56_90004#3002_56_90004#3007_56_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "27": { + "npcId": 27, + "attr": {}, + "npclist": "4013_57_90004#5003_57_90004#3003_57_90004#3008_57_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "28": { + "npcId": 28, + "attr": {}, + "npclist": "4014_58_90004#5004_58_90004#3004_58_90004#3009_58_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "29": { + "npcId": 29, + "attr": {}, + "npclist": "4015_59_90004#5005_59_90004#3005_59_90004#3010_59_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "30": { + "npcId": 30, + "attr": {}, + "npclist": "5001_60_90003#3001_60_90003#3006_60_90003#3011_60_90003#4001_60_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "31": { + "npcId": 31, + "attr": {}, + "npclist": "5002_61_90003#3002_61_90003#3007_61_90003#3012_61_90003#4002_61_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "32": { + "npcId": 32, + "attr": {}, + "npclist": "5003_62_90003#3003_62_90003#3008_62_90003#3013_62_90003#4003_62_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "33": { + "npcId": 33, + "attr": {}, + "npclist": "5004_63_90003#3004_63_90003#3009_63_90003#3014_63_90003#4004_63_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "34": { + "npcId": 34, + "attr": {}, + "npclist": "5005_64_90003#3005_64_90003#3010_64_90003#3015_64_90003#4005_64_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "35": { + "npcId": 35, + "attr": {}, + "npclist": "3001_65_90001#3006_65_90004#3011_65_90001#4001_65_90001#4006_65_90001#4011_65_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "36": { + "npcId": 36, + "attr": {}, + "npclist": "3002_66_90001#3007_66_90004#3012_66_90001#4002_66_90001#4007_66_90001#4012_66_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "37": { + "npcId": 37, + "attr": {}, + "npclist": "3003_67_90001#3008_67_90004#3013_67_90001#4003_67_90001#4008_67_90001#4013_67_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "38": { + "npcId": 38, + "attr": {}, + "npclist": "3004_68_90001#3009_68_90004#3014_68_90001#4004_68_90001#4009_68_90001#4014_68_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "39": { + "npcId": 39, + "attr": {}, + "npclist": "3005_69_90001#3010_69_90004#3015_69_90001#4005_69_90001#4010_69_90001#4015_69_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40": { + "npcId": 40, + "attr": {}, + "npclist": "3006_70_90001#3011_70_90004#4001_70_90001#4006_70_90001#4011_70_90001#5001_70_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "41": { + "npcId": 41, + "attr": {}, + "npclist": "3007_71_90001#3012_71_90004#4002_71_90001#4007_71_90001#4012_71_90001#5002_71_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "42": { + "npcId": 42, + "attr": {}, + "npclist": "3008_72_90001#3013_72_90004#4003_72_90001#4008_72_90001#4013_72_90001#5003_72_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "43": { + "npcId": 43, + "attr": {}, + "npclist": "3009_73_90001#3014_73_90004#4004_73_90001#4009_73_90001#4014_73_90001#5004_73_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "44": { + "npcId": 44, + "attr": {}, + "npclist": "3010_74_90001#3015_74_90004#4005_74_90001#4010_74_90001#4015_74_90001#5005_74_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "45": { + "npcId": 45, + "attr": {}, + "npclist": "3011_75_90001#4001_75_90004#4006_75_90001#4011_75_90001#5001_75_90001#3001_75_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "46": { + "npcId": 46, + "attr": {}, + "npclist": "3012_76_90001#4002_76_90004#4007_76_90001#4012_76_90001#5002_76_90001#3002_76_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "47": { + "npcId": 47, + "attr": {}, + "npclist": "3013_77_90001#4003_77_90004#4008_77_90001#4013_77_90001#5003_77_90001#3003_77_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "48": { + "npcId": 48, + "attr": {}, + "npclist": "3014_78_90001#4004_78_90004#4009_78_90001#4014_78_90001#5004_78_90001#3004_78_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "49": { + "npcId": 49, + "attr": {}, + "npclist": "3015_79_90001#4005_79_90004#4010_79_90001#4015_79_90001#5005_79_90001#3005_79_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "50": { + "npcId": 50, + "attr": {}, + "npclist": "4001_80_90001#4006_80_90004#4011_80_90001#5001_80_90001#3001_80_90001#3006_80_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "51": { + "npcId": 51, + "attr": {}, + "npclist": "4002_38_90001#4007_38_90004#4012_38_90001#5002_38_90001#3002_38_90001#3007_38_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "52": { + "npcId": 52, + "attr": {}, + "npclist": "4003_38_90001#4008_38_90004#4013_38_90001#5003_38_90001#3003_38_90001#3008_38_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "53": { + "npcId": 53, + "attr": {}, + "npclist": "4004_39_90001#4009_39_90004#4014_39_90001#5004_39_90001#3004_39_90001#3009_39_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "54": { + "npcId": 54, + "attr": {}, + "npclist": "4005_38_90001#4010_38_90004#4015_38_90001#5005_38_90001#3005_38_90001#3010_38_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "55": { + "npcId": 55, + "attr": {}, + "npclist": "4006_38_90001#4011_38_90004#5001_38_90001#3001_38_90001#3006_38_90001#3011_38_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "56": { + "npcId": 56, + "attr": {}, + "npclist": "4007_37_90001#4012_37_90004#5002_37_90001#3002_37_90001#3007_37_90001#3012_37_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "57": { + "npcId": 57, + "attr": {}, + "npclist": "4008_37_90001#4013_37_90004#5003_37_90001#3003_37_90001#3008_37_90001#3013_37_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "58": { + "npcId": 58, + "attr": {}, + "npclist": "4009_36_90001#4014_36_90004#5004_36_90001#3004_36_90001#3009_36_90001#3014_36_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "59": { + "npcId": 59, + "attr": {}, + "npclist": "4010_36_90001#4015_36_90004#5005_36_90001#3005_36_90001#3010_36_90001#3015_36_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "60": { + "npcId": 60, + "attr": {}, + "npclist": "4011_35_90001#5001_35_90004#3001_35_90001#3006_35_90001#3011_35_90001#4001_35_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "61": { + "npcId": 61, + "attr": {}, + "npclist": "4012_35_90001#5002_35_90004#3002_35_90001#3007_35_90001#3012_35_90001#4002_35_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "62": { + "npcId": 62, + "attr": {}, + "npclist": "4013_34_90001#5003_34_90004#3003_34_90001#3008_34_90001#3013_34_90001#4003_34_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "63": { + "npcId": 63, + "attr": {}, + "npclist": "4014_34_90001#5004_34_90004#3004_34_90001#3009_34_90001#3014_34_90001#4004_34_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "64": { + "npcId": 64, + "attr": {}, + "npclist": "4015_33_90001#5005_33_90004#3005_33_90001#3010_33_90001#3015_33_90001#4005_33_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "65": { + "npcId": 65, + "attr": {}, + "npclist": "5001_33_90001#3001_33_90004#3006_33_90001#3011_33_90001#4001_33_90001#4006_33_90004", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "66": { + "npcId": 66, + "attr": {}, + "npclist": "5002_34_90001#3002_34_90004#3007_34_90001#3012_34_90001#4002_34_90001#4007_34_90001", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "67": { + "npcId": 67, + "attr": {}, + "npclist": "5003_34_90001#3003_34_90004#3008_34_90001#3013_34_90001#4003_34_90001#4008_34_90001", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "68": { + "npcId": 68, + "attr": {}, + "npclist": "5004_35_90001#3004_35_90004#3009_35_90001#3014_35_90001#4004_35_90001#4009_35_90001", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "69": { + "npcId": 69, + "attr": {}, + "npclist": "5005_35_90001#3005_35_90004#3010_35_90001#3015_35_90001#4005_35_90001#4010_35_90001", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "70": { + "npcId": 70, + "attr": {}, + "npclist": "3001_36_90001#3006_36_90004#3011_36_90001#4001_36_90001#4006_36_90001#4011_36_90001", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "71": { + "npcId": 71, + "attr": {}, + "npclist": "3002_36_90001#3007_36_90004#3012_36_90001#4002_36_90001#4007_36_90001#4012_36_90001", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "72": { + "npcId": 72, + "attr": {}, + "npclist": "3003_37_90001#3008_37_90004#3013_37_90001#4003_37_90001#4008_37_90001#4013_37_90001", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "73": { + "npcId": 73, + "attr": {}, + "npclist": "3004_37_90001#3009_37_90004#3014_37_90001#4004_37_90001#4009_37_90001#4014_37_90001", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "74": { + "npcId": 74, + "attr": {}, + "npclist": "3005_38_90001#3010_38_90004#3015_38_90001#4005_38_90001#4010_38_90001#4015_38_90001", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "75": { + "npcId": 75, + "attr": {}, + "npclist": "3006_38_90001#3011_38_90004#4001_38_90001#4006_38_90001#4011_38_90001#5001_38_90001", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "76": { + "npcId": 76, + "attr": {}, + "npclist": "3007_37_90001#3012_37_90005#4002_37_90001#4007_37_90005#4012_37_90001#5002_37_90005", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "77": { + "npcId": 77, + "attr": {}, + "npclist": "3008_37_90001#3013_37_90005#4003_37_90001#4008_37_90005#4013_37_90001#5003_37_90005", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "78": { + "npcId": 78, + "attr": {}, + "npclist": "3009_38_90001#3014_38_90005#4004_38_90001#4009_38_90005#4014_38_90001#5004_38_90005", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "79": { + "npcId": 79, + "attr": {}, + "npclist": "3010_38_90001#3015_38_90005#4005_38_90001#4010_38_90005#4015_38_90001#5005_38_90005", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "80": { + "npcId": 80, + "attr": {}, + "npclist": "3011_37_90001#4001_37_90005#4006_37_90001#4011_37_90005#5001_37_90001#3001_37_90005", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "81": { + "npcId": 81, + "attr": {}, + "npclist": "3012_37_90001#4002_37_90005#4007_37_90001#4012_37_90005#5002_37_90001#3002_37_90005", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "82": { + "npcId": 82, + "attr": {}, + "npclist": "3013_38_90001#4003_38_90005#4008_38_90001#4013_38_90005#5003_38_90001#3003_38_90005", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "83": { + "npcId": 83, + "attr": {}, + "npclist": "3014_38_90001#4004_38_90005#4009_38_90001#4014_38_90005#5004_38_90001#3004_38_90005", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "84": { + "npcId": 84, + "attr": {}, + "npclist": "3015_37_90001#4005_37_90005#4010_37_90001#4015_37_90005#5005_37_90001#3005_37_90005", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "85": { + "npcId": 85, + "attr": {}, + "npclist": "4001_37_90001#4006_37_90005#4011_37_90001#5001_37_90005#3001_37_90001#3006_37_90005", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "86": { + "npcId": 86, + "attr": {}, + "npclist": "4002_36_90001#4007_36_90005#4012_36_90001#5002_36_90005#3002_36_90001#3007_36_90005", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "87": { + "npcId": 87, + "attr": {}, + "npclist": "4003_36_90001#4008_36_90005#4013_36_90001#5003_36_90005#3003_36_90001#3008_36_90005", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "88": { + "npcId": 88, + "attr": {}, + "npclist": "4004_35_90001#4009_35_90005#4014_35_90001#5004_35_90005#3004_35_90001#3009_35_90005", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "89": { + "npcId": 89, + "attr": {}, + "npclist": "4005_35_90001#4010_35_90070#4015_35_90001#5005_35_90001#3005_35_90001#3010_35_90070", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "90": { + "npcId": 90, + "attr": {}, + "npclist": "4006_36_90001#4011_36_90070#5001_36_90001#3001_36_90001#3006_36_90001#3011_36_90070", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "91": { + "npcId": 91, + "attr": {}, + "npclist": "4007_36_90073#4012_36_90070#5002_36_90001#3002_36_90001#3007_36_90001#3012_36_90070", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "92": { + "npcId": 92, + "attr": {}, + "npclist": "4008_37_90073#4013_37_90070#5003_37_90074#3003_37_90001#3008_37_90001#3013_37_90070", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "93": { + "npcId": 93, + "attr": {}, + "npclist": "4009_37_90073#4014_37_90070#5004_37_90074#3004_37_90070#3009_37_90070#3014_37_90070", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "94": { + "npcId": 94, + "attr": {}, + "npclist": "4010_38_90073#4015_38_90070#5005_38_90074#3005_38_90070#3010_38_90073#3015_38_90070", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "95": { + "npcId": 95, + "attr": {}, + "npclist": "4011_38_90073#5001_38_90070#3001_38_90074#3006_38_90070#3011_38_90073#4001_38_90070", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "96": { + "npcId": 96, + "attr": {}, + "npclist": "4012_39_90073#5002_39_90070#3002_39_90074#3007_39_90070#3012_39_90073#4002_39_90070", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "97": { + "npcId": 97, + "attr": {}, + "npclist": "4013_39_90073#5003_39_90070#3003_39_90074#3008_39_90070#3013_39_90073#4003_39_90070", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "98": { + "npcId": 98, + "attr": {}, + "npclist": "4014_40_90073#5004_40_90070#3004_40_90074#3009_40_90070#3014_40_90073#4004_40_90070", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "99": { + "npcId": 99, + "attr": {}, + "npclist": "4015_40_90073#5005_40_90070#3005_40_90074#3010_40_90070#3015_40_90073#4005_40_90070", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "100": { + "npcId": 100, + "attr": {}, + "npclist": "5001_41_90073#3001_41_90070#3006_41_90074#3011_41_90070#4001_41_90073#4006_41_90070", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "101": { + "npcId": 101, + "attr": {}, + "npclist": "1001_70_90093#1002_71_90093#2001_72_90093#2002_73_90093#3001_74_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "102": { + "npcId": 102, + "attr": {}, + "npclist": "1001_72_90093#1002_73_90093#2001_74_90093#2002_75_90093#3001_76_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "103": { + "npcId": 103, + "attr": {}, + "npclist": "1001_74_90093#1002_75_90093#2001_76_90093#2002_77_90093#3001_78_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "104": { + "npcId": 104, + "attr": {}, + "npclist": "1001_76_90093#1002_77_90093#2001_78_90093#2002_79_90093#3001_80_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "105": { + "npcId": 105, + "attr": {}, + "npclist": "1001_78_90093#1002_79_90093#2001_80_90093#2002_81_90093#3001_82_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "106": { + "npcId": 106, + "attr": {}, + "npclist": "1001_80_90093#1002_81_90093#2001_82_90093#2002_83_90093#3001_84_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "107": { + "npcId": 107, + "attr": {}, + "npclist": "1001_82_90093#1002_83_90093#2001_84_90093#2002_85_90093#3001_86_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "108": { + "npcId": 108, + "attr": {}, + "npclist": "1001_84_90093#1002_85_90093#2001_86_90093#2002_87_90093#3001_88_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "109": { + "npcId": 109, + "attr": {}, + "npclist": "1001_86_90093#1002_87_90093#2001_88_90093#2002_89_90093#3001_90_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "110": { + "npcId": 110, + "attr": {}, + "npclist": "1001_88_90093#1002_89_90093#2001_90_90093#2002_91_90093#3001_92_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "111": { + "npcId": 111, + "attr": {}, + "npclist": "1001_90_90093#1002_91_90093#2001_92_90093#2002_93_90093#3001_94_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "112": { + "npcId": 112, + "attr": {}, + "npclist": "1001_92_90093#1002_93_90093#2001_94_90093#2002_95_90093#3001_96_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "113": { + "npcId": 113, + "attr": {}, + "npclist": "1001_94_90093#1002_95_90093#2001_96_90093#2002_97_90093#3001_98_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "114": { + "npcId": 114, + "attr": {}, + "npclist": "1001_96_90093#1002_97_90093#2001_98_90093#2002_99_90093#3001_100_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "115": { + "npcId": 115, + "attr": {}, + "npclist": "1001_101_90093#1002_102_90093#2001_103_90093#2002_104_90093#3001_105_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "116": { + "npcId": 116, + "attr": {}, + "npclist": "1001_106_90093#1002_107_90093#2001_108_90093#2002_109_90093#3001_110_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "117": { + "npcId": 117, + "attr": {}, + "npclist": "1001_111_90093#1002_112_90093#2001_113_90093#2002_114_90093#3001_115_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "118": { + "npcId": 118, + "attr": {}, + "npclist": "1001_116_90093#1002_117_90093#2001_118_90093#2002_119_90093#3001_120_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "119": { + "npcId": 119, + "attr": {}, + "npclist": "1001_121_90093#1002_122_90093#2001_123_90093#2002_124_90093#3001_125_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "120": { + "npcId": 120, + "attr": {}, + "npclist": "1001_126_90093#1002_127_90093#2001_128_90093#2002_129_90093#3001_130_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "121": { + "npcId": 121, + "attr": {}, + "npclist": "1001_131_90093#1002_132_90093#2001_133_90093#2002_134_90093#3001_135_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "122": { + "npcId": 122, + "attr": {}, + "npclist": "1001_136_90093#1002_137_90093#2001_138_90093#2002_139_90093#3001_140_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "123": { + "npcId": 123, + "attr": {}, + "npclist": "1001_141_90093#1002_142_90093#2001_143_90093#2002_144_90093#3001_145_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "124": { + "npcId": 124, + "attr": {}, + "npclist": "1001_146_90093#1002_147_90093#2001_148_90093#2002_149_90093#3001_150_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "125": { + "npcId": 125, + "attr": {}, + "npclist": "1001_151_90093#1002_152_90093#2001_153_90093#2002_154_90093#3001_155_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "126": { + "npcId": 126, + "attr": {}, + "npclist": "1001_156_90093#1002_157_90093#2001_158_90093#2002_159_90093#3001_160_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "127": { + "npcId": 127, + "attr": {}, + "npclist": "1001_161_90093#1002_162_90093#2001_163_90093#2002_164_90093#3001_165_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "128": { + "npcId": 128, + "attr": {}, + "npclist": "1001_166_90093#1002_167_90093#2001_168_90093#2002_169_90093#3001_170_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "129": { + "npcId": 129, + "attr": {}, + "npclist": "1001_171_90093#1002_172_90093#2001_173_90093#2002_174_90093#3001_175_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "130": { + "npcId": 130, + "attr": {}, + "npclist": "1001_176_90093#1002_177_90093#2001_178_90093#2002_179_90093#3001_180_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "131": { + "npcId": 131, + "attr": {}, + "npclist": "1001_181_90093#1002_182_90093#2001_183_90093#2002_184_90093#3001_185_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "132": { + "npcId": 132, + "attr": {}, + "npclist": "1001_186_90093#1002_187_90093#2001_188_90093#2002_189_90093#3001_190_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "133": { + "npcId": 133, + "attr": {}, + "npclist": "1001_191_90093#1002_192_90093#2001_193_90093#2002_194_90093#3001_195_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "134": { + "npcId": 134, + "attr": {}, + "npclist": "1001_196_90093#1002_197_90093#2001_198_90093#2002_199_90093#3001_200_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "135": { + "npcId": 135, + "attr": {}, + "npclist": "1001_201_90093#1002_202_90093#2001_203_90093#2002_204_90093#3001_205_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "136": { + "npcId": 136, + "attr": {}, + "npclist": "1001_206_90093#1002_207_90093#2001_208_90093#2002_209_90093#3001_210_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "137": { + "npcId": 137, + "attr": {}, + "npclist": "1001_211_90093#1002_212_90093#2001_213_90093#2002_214_90093#3001_215_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "138": { + "npcId": 138, + "attr": {}, + "npclist": "1001_216_90093#1002_217_90093#2001_218_90093#2002_219_90093#3001_220_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "139": { + "npcId": 139, + "attr": {}, + "npclist": "1001_221_90093#1002_222_90093#2001_223_90093#2002_224_90093#3001_225_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "140": { + "npcId": 140, + "attr": {}, + "npclist": "1001_226_90093#1002_227_90093#2001_228_90093#2002_229_90093#3001_230_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "141": { + "npcId": 141, + "attr": {}, + "npclist": "1001_231_90093#1002_232_90093#2001_233_90093#2002_234_90093#3001_235_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "142": { + "npcId": 142, + "attr": {}, + "npclist": "1001_236_90093#1002_237_90093#2001_238_90093#2002_239_90093#3001_240_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "143": { + "npcId": 143, + "attr": {}, + "npclist": "1001_241_90093#1002_242_90093#2001_243_90093#2002_244_90093#3001_245_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "144": { + "npcId": 144, + "attr": {}, + "npclist": "1001_246_90093#1002_247_90093#2001_248_90093#2002_249_90093#3001_250_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "145": { + "npcId": 145, + "attr": {}, + "npclist": "1001_251_90093#1002_252_90093#2001_253_90093#2002_254_90093#3001_255_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "146": { + "npcId": 146, + "attr": {}, + "npclist": "1001_256_90093#1002_257_90093#2001_258_90093#2002_259_90093#3001_260_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "147": { + "npcId": 147, + "attr": {}, + "npclist": "1001_261_90093#1002_262_90093#2001_263_90093#2002_264_90093#3001_265_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "148": { + "npcId": 148, + "attr": {}, + "npclist": "1001_266_90093#1002_267_90093#2001_268_90093#2002_269_90093#3001_270_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "149": { + "npcId": 149, + "attr": {}, + "npclist": "1001_271_90093#1002_272_90093#2001_273_90093#2002_274_90093#3001_275_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "150": { + "npcId": 150, + "attr": {}, + "npclist": "1001_276_90093#1002_277_90093#2001_278_90093#2002_279_90093#3001_280_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "151": { + "npcId": 151, + "attr": {}, + "npclist": "1001_281_90093#1002_282_90093#2001_283_90093#2002_284_90093#3001_285_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "152": { + "npcId": 152, + "attr": {}, + "npclist": "1001_286_90093#1002_287_90093#2001_288_90093#2002_289_90093#3001_290_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "153": { + "npcId": 153, + "attr": {}, + "npclist": "1001_291_90093#1002_292_90093#2001_293_90093#2002_294_90093#3001_295_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "154": { + "npcId": 154, + "attr": {}, + "npclist": "1001_296_90093#1002_297_90093#2001_298_90093#2002_299_90093#3001_300_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "155": { + "npcId": 155, + "attr": {}, + "npclist": "1001_301_90093#1002_302_90093#2001_303_90093#2002_304_90093#3001_305_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "156": { + "npcId": 156, + "attr": {}, + "npclist": "1001_306_90093#1002_307_90093#2001_308_90093#2002_309_90093#3001_310_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "157": { + "npcId": 157, + "attr": {}, + "npclist": "1001_311_90093#1002_312_90093#2001_313_90093#2002_314_90093#3001_315_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "158": { + "npcId": 158, + "attr": {}, + "npclist": "1001_316_90093#1002_317_90093#2001_318_90093#2002_319_90093#3001_320_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "159": { + "npcId": 159, + "attr": {}, + "npclist": "1001_321_90093#1002_322_90093#2001_323_90093#2002_324_90093#3001_325_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "160": { + "npcId": 160, + "attr": {}, + "npclist": "1001_326_90093#1002_327_90093#2001_328_90093#2002_329_90093#3001_330_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "161": { + "npcId": 161, + "attr": {}, + "npclist": "1001_331_90093#1002_332_90093#2001_333_90093#2002_334_90093#3001_335_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "162": { + "npcId": 162, + "attr": {}, + "npclist": "1001_336_90093#1002_337_90093#2001_338_90093#2002_339_90093#3001_340_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "163": { + "npcId": 163, + "attr": {}, + "npclist": "1001_341_90093#1002_342_90093#2001_343_90093#2002_344_90093#3001_345_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "164": { + "npcId": 164, + "attr": {}, + "npclist": "1001_346_90093#1002_347_90093#2001_348_90093#2002_349_90093#3001_350_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "165": { + "npcId": 165, + "attr": {}, + "npclist": "1001_351_90093#1002_352_90093#2001_353_90093#2002_354_90093#3001_355_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "166": { + "npcId": 166, + "attr": {}, + "npclist": "1001_356_90093#1002_357_90093#2001_358_90093#2002_359_90093#3001_360_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "167": { + "npcId": 167, + "attr": {}, + "npclist": "1001_361_90093#1002_362_90093#2001_363_90093#2002_364_90093#3001_365_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "168": { + "npcId": 168, + "attr": {}, + "npclist": "1001_366_90093#1002_367_90093#2001_368_90093#2002_369_90093#3001_370_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "169": { + "npcId": 169, + "attr": {}, + "npclist": "1001_371_90093#1002_372_90093#2001_373_90093#2002_374_90093#3001_375_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "170": { + "npcId": 170, + "attr": {}, + "npclist": "1001_376_90093#1002_377_90093#2001_378_90093#2002_379_90093#3001_380_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "171": { + "npcId": 171, + "attr": {}, + "npclist": "1001_381_90093#1002_382_90093#2001_383_90093#2002_384_90093#3001_385_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "172": { + "npcId": 172, + "attr": {}, + "npclist": "1001_386_90093#1002_387_90093#2001_388_90093#2002_389_90093#3001_390_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "173": { + "npcId": 173, + "attr": {}, + "npclist": "1001_391_90093#1002_392_90093#2001_393_90093#2002_394_90093#3001_395_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "174": { + "npcId": 174, + "attr": {}, + "npclist": "1001_396_90093#1002_397_90093#2001_398_90093#2002_399_90093#3001_400_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "175": { + "npcId": 175, + "attr": {}, + "npclist": "1001_401_90093#1002_402_90093#2001_403_90093#2002_404_90093#3001_405_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "176": { + "npcId": 176, + "attr": {}, + "npclist": "1001_406_90093#1002_407_90093#2001_408_90093#2002_409_90093#3001_410_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "177": { + "npcId": 177, + "attr": {}, + "npclist": "1001_411_90093#1002_412_90093#2001_413_90093#2002_414_90093#3001_415_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "178": { + "npcId": 178, + "attr": {}, + "npclist": "1001_416_90093#1002_417_90093#2001_418_90093#2002_419_90093#3001_420_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "179": { + "npcId": 179, + "attr": {}, + "npclist": "1001_421_90093#1002_422_90093#2001_423_90093#2002_424_90093#3001_425_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "180": { + "npcId": 180, + "attr": {}, + "npclist": "1001_426_90093#1002_427_90093#2001_428_90093#2002_429_90093#3001_430_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "181": { + "npcId": 181, + "attr": {}, + "npclist": "1001_431_90093#1002_432_90093#2001_433_90093#2002_434_90093#3001_435_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "182": { + "npcId": 182, + "attr": {}, + "npclist": "1001_436_90093#1002_437_90093#2001_438_90093#2002_439_90093#3001_440_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "183": { + "npcId": 183, + "attr": {}, + "npclist": "1001_441_90093#1002_442_90093#2001_443_90093#2002_444_90093#3001_445_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "184": { + "npcId": 184, + "attr": {}, + "npclist": "1001_446_90093#1002_447_90093#2001_448_90093#2002_449_90093#3001_450_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "185": { + "npcId": 185, + "attr": {}, + "npclist": "1001_451_90093#1002_452_90093#2001_453_90093#2002_454_90093#3001_455_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "186": { + "npcId": 186, + "attr": {}, + "npclist": "1001_456_90093#1002_457_90093#2001_458_90093#2002_459_90093#3001_460_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "187": { + "npcId": 187, + "attr": {}, + "npclist": "1001_461_90093#1002_462_90093#2001_463_90093#2002_464_90093#3001_465_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "188": { + "npcId": 188, + "attr": {}, + "npclist": "1001_466_90093#1002_467_90093#2001_468_90093#2002_469_90093#3001_470_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "189": { + "npcId": 189, + "attr": {}, + "npclist": "1001_471_90093#1002_472_90093#2001_473_90093#2002_474_90093#3001_475_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "190": { + "npcId": 190, + "attr": {}, + "npclist": "1001_476_90093#1002_477_90093#2001_478_90093#2002_479_90093#3001_480_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "191": { + "npcId": 191, + "attr": {}, + "npclist": "1001_481_90093#1002_482_90093#2001_483_90093#2002_484_90093#3001_485_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "192": { + "npcId": 192, + "attr": {}, + "npclist": "1001_486_90093#1002_487_90093#2001_488_90093#2002_489_90093#3001_490_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "193": { + "npcId": 193, + "attr": {}, + "npclist": "1001_491_90093#1002_492_90093#2001_493_90093#2002_494_90093#3001_495_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "194": { + "npcId": 194, + "attr": {}, + "npclist": "1001_496_90093#1002_497_90093#2001_498_90093#2002_499_90093#3001_500_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "195": { + "npcId": 195, + "attr": {}, + "npclist": "1001_501_90093#1002_502_90093#2001_503_90093#2002_504_90093#3001_505_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "196": { + "npcId": 196, + "attr": {}, + "npclist": "1001_506_90093#1002_507_90093#2001_508_90093#2002_509_90093#3001_510_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "197": { + "npcId": 197, + "attr": {}, + "npclist": "1001_511_90093#1002_512_90093#2001_513_90093#2002_514_90093#3001_515_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "198": { + "npcId": 198, + "attr": {}, + "npclist": "1001_516_90093#1002_517_90093#2001_518_90093#2002_519_90093#3001_520_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "199": { + "npcId": 199, + "attr": {}, + "npclist": "1001_521_90093#1002_522_90093#2001_523_90093#2002_524_90093#3001_525_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "200": { + "npcId": 200, + "attr": {}, + "npclist": "1001_526_90093#1002_527_90093#2001_528_90093#2002_529_90093#3001_530_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "501": { + "npcId": 501, + "attr": {}, + "npclist": "3001_2_90002#3001_2_90002#3001_2_90005#3001_2_90001#3001_2_90003#3001_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "502": { + "npcId": 502, + "attr": {}, + "npclist": "3002_2_90002#3002_2_90002#3002_2_90005#3002_2_90001#3002_2_90003#3002_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "503": { + "npcId": 503, + "attr": {}, + "npclist": "3003_2_90002#3003_2_90002#3003_2_90005#3003_2_90001#3003_2_90003#3003_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "504": { + "npcId": 504, + "attr": {}, + "npclist": "3004_2_90002#3004_2_90002#3004_2_90005#3004_2_90001#3004_2_90003#3004_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "505": { + "npcId": 505, + "attr": {}, + "npclist": "3005_2_90002#3005_2_90002#3005_2_90005#3005_2_90001#3005_2_90003#3005_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "506": { + "npcId": 506, + "attr": {}, + "npclist": "3006_2_90002#3006_2_90002#3006_2_90005#3006_2_90001#3006_2_90003#3006_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "507": { + "npcId": 507, + "attr": {}, + "npclist": "3007_2_90002#3007_2_90002#3007_2_90005#3007_2_90001#3007_2_90003#3007_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "508": { + "npcId": 508, + "attr": {}, + "npclist": "3008_2_90002#3008_2_90002#3008_2_90005#3008_2_90001#3008_2_90003#3008_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "509": { + "npcId": 509, + "attr": {}, + "npclist": "3009_2_90002#3009_2_90002#3009_2_90005#3009_2_90001#3009_2_90003#3009_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "510": { + "npcId": 510, + "attr": {}, + "npclist": "3010_2_90002#3010_2_90002#3010_2_90005#3010_2_90001#3010_2_90003#3010_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "511": { + "npcId": 511, + "attr": {}, + "npclist": "3011_2_90002#3011_2_90002#3011_2_90005#3011_2_90001#3011_2_90003#3011_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "512": { + "npcId": 512, + "attr": {}, + "npclist": "3012_2_90002#3012_2_90002#3012_2_90005#3012_2_90001#3012_2_90003#3012_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "513": { + "npcId": 513, + "attr": {}, + "npclist": "3013_2_90002#3013_2_90002#3013_2_90005#3013_2_90001#3013_2_90003#3013_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "514": { + "npcId": 514, + "attr": {}, + "npclist": "3014_2_90002#3014_2_90002#3014_2_90005#3014_2_90001#3014_2_90003#3014_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "515": { + "npcId": 515, + "attr": {}, + "npclist": "3015_2_90002#3015_2_90002#3015_2_90005#3015_2_90001#3015_2_90003#3015_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "516": { + "npcId": 516, + "attr": {}, + "npclist": "4001_2_90002#4001_2_90002#4001_2_90005#4001_2_90001#4001_2_90003#4001_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "517": { + "npcId": 517, + "attr": {}, + "npclist": "4002_2_90002#4002_2_90002#4002_2_90005#4002_2_90001#4002_2_90003#4002_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "518": { + "npcId": 518, + "attr": {}, + "npclist": "4003_2_90002#4003_2_90002#4003_2_90005#4003_2_90001#4003_2_90003#4003_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "519": { + "npcId": 519, + "attr": {}, + "npclist": "4004_2_90002#4004_2_90002#4004_2_90005#4004_2_90001#4004_2_90003#4004_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "520": { + "npcId": 520, + "attr": {}, + "npclist": "4005_2_90002#4005_2_90002#4005_2_90005#4005_2_90001#4005_2_90003#4005_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "521": { + "npcId": 521, + "attr": {}, + "npclist": "4006_2_90002#4006_2_90002#4006_2_90005#4006_2_90001#4006_2_90003#4006_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "522": { + "npcId": 522, + "attr": {}, + "npclist": "4007_2_90002#4007_2_90002#4007_2_90005#4007_2_90001#4007_2_90003#4007_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "523": { + "npcId": 523, + "attr": {}, + "npclist": "4008_2_90002#4008_2_90002#4008_2_90005#4008_2_90001#4008_2_90003#4008_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "524": { + "npcId": 524, + "attr": {}, + "npclist": "4009_2_90002#4009_2_90002#4009_2_90005#4009_2_90001#4009_2_90003#4009_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "525": { + "npcId": 525, + "attr": {}, + "npclist": "4010_2_90002#4010_2_90002#4010_2_90005#4010_2_90001#4010_2_90003#4010_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "526": { + "npcId": 526, + "attr": {}, + "npclist": "4011_2_90002#4011_2_90002#4011_2_90005#4011_2_90001#4011_2_90003#4011_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "527": { + "npcId": 527, + "attr": {}, + "npclist": "4012_2_90002#4012_2_90002#4012_2_90005#4012_2_90001#4012_2_90003#4012_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "528": { + "npcId": 528, + "attr": {}, + "npclist": "4013_2_90002#4013_2_90002#4013_2_90005#4013_2_90001#4013_2_90003#4013_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "529": { + "npcId": 529, + "attr": {}, + "npclist": "4014_2_90002#4014_2_90002#4014_2_90005#4014_2_90001#4014_2_90003#4014_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "530": { + "npcId": 530, + "attr": {}, + "npclist": "4015_2_90002#4015_2_90002#4015_2_90005#4015_2_90001#4015_2_90003#4015_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "531": { + "npcId": 531, + "attr": {}, + "npclist": "5001_2_90002#5001_2_90002#5001_2_90005#5001_2_90001#5001_2_90003#5001_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "532": { + "npcId": 532, + "attr": {}, + "npclist": "5003_2_90002#5003_2_90002#5003_2_90005#5003_2_90001#5003_2_90003#5003_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "533": { + "npcId": 533, + "attr": {}, + "npclist": "5005_2_90002#5005_2_90002#5005_2_90005#5005_2_90001#5005_2_90003#5005_2_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1001": { + "npcId": 1001, + "attr": {}, + "npclist": "3009_37_90018#5001_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1002": { + "npcId": 1002, + "attr": {}, + "npclist": "3011_30_90018#3008_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1003": { + "npcId": 1003, + "attr": {}, + "npclist": "1002_30_90018#3014_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1004": { + "npcId": 1004, + "attr": {}, + "npclist": "3008_26_90018#3007_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1005": { + "npcId": 1005, + "attr": {}, + "npclist": "4005_33_90018#5001_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1006": { + "npcId": 1006, + "attr": {}, + "npclist": "5001_33_90018#3008_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1007": { + "npcId": 1007, + "attr": {}, + "npclist": "2002_30_90018#4008_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1008": { + "npcId": 1008, + "attr": {}, + "npclist": "1002_33_90018#4006_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1009": { + "npcId": 1009, + "attr": {}, + "npclist": "4007_29_90018#4004_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1010": { + "npcId": 1010, + "attr": {}, + "npclist": "1002_26_90018#2002_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1011": { + "npcId": 1011, + "attr": {}, + "npclist": "3003_29_90018#3013_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1012": { + "npcId": 1012, + "attr": {}, + "npclist": "4007_30_90018#4012_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1013": { + "npcId": 1013, + "attr": {}, + "npclist": "4013_25_90018#1002_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1014": { + "npcId": 1014, + "attr": {}, + "npclist": "4005_35_90018#3001_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1015": { + "npcId": 1015, + "attr": {}, + "npclist": "5003_30_90018#4001_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1016": { + "npcId": 1016, + "attr": {}, + "npclist": "2002_26_90018#5001_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1017": { + "npcId": 1017, + "attr": {}, + "npclist": "3003_33_90018#4003_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1018": { + "npcId": 1018, + "attr": {}, + "npclist": "1001_32_90018#4014_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1019": { + "npcId": 1019, + "attr": {}, + "npclist": "4010_31_90018#3010_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1020": { + "npcId": 1020, + "attr": {}, + "npclist": "4001_31_90018#4015_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1021": { + "npcId": 1021, + "attr": {}, + "npclist": "3003_25_90018#1001_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1022": { + "npcId": 1022, + "attr": {}, + "npclist": "3007_29_90018#3010_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1023": { + "npcId": 1023, + "attr": {}, + "npclist": "3002_26_90018#5002_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1024": { + "npcId": 1024, + "attr": {}, + "npclist": "5005_26_90018#1002_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1025": { + "npcId": 1025, + "attr": {}, + "npclist": "3010_27_90018#4012_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1026": { + "npcId": 1026, + "attr": {}, + "npclist": "3006_30_90018#4011_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1027": { + "npcId": 1027, + "attr": {}, + "npclist": "4014_31_90018#1002_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1028": { + "npcId": 1028, + "attr": {}, + "npclist": "3014_35_90018#5003_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1029": { + "npcId": 1029, + "attr": {}, + "npclist": "4015_29_90018#1001_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1030": { + "npcId": 1030, + "attr": {}, + "npclist": "3011_32_90018#4015_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1031": { + "npcId": 1031, + "attr": {}, + "npclist": "3001_25_90018#3012_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1032": { + "npcId": 1032, + "attr": {}, + "npclist": "4010_33_90018#5005_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1033": { + "npcId": 1033, + "attr": {}, + "npclist": "4003_28_90018#4009_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1034": { + "npcId": 1034, + "attr": {}, + "npclist": "4007_27_90018#4004_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1035": { + "npcId": 1035, + "attr": {}, + "npclist": "3004_31_90018#4011_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1036": { + "npcId": 1036, + "attr": {}, + "npclist": "2001_29_90018#4013_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1037": { + "npcId": 1037, + "attr": {}, + "npclist": "4003_31_90018#4013_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1038": { + "npcId": 1038, + "attr": {}, + "npclist": "3011_25_90018#3002_32_90018#4001_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1039": { + "npcId": 1039, + "attr": {}, + "npclist": "4007_30_90018#3006_33_90018#4002_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1040": { + "npcId": 1040, + "attr": {}, + "npclist": "4006_34_90018#2001_34_90018#4003_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1041": { + "npcId": 1041, + "attr": {}, + "npclist": "4012_25_90018#3011_35_90018#3005_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1042": { + "npcId": 1042, + "attr": {}, + "npclist": "4006_33_90018#5003_28_90018#4012_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1043": { + "npcId": 1043, + "attr": {}, + "npclist": "4001_30_90018#4013_30_90018#4004_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1044": { + "npcId": 1044, + "attr": {}, + "npclist": "4003_29_90018#4003_25_90018#4006_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1045": { + "npcId": 1045, + "attr": {}, + "npclist": "3007_28_90018#3005_33_90018#3001_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1046": { + "npcId": 1046, + "attr": {}, + "npclist": "3011_34_90018#3015_34_90018#1002_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1047": { + "npcId": 1047, + "attr": {}, + "npclist": "3008_34_90018#4008_27_90018#4003_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1048": { + "npcId": 1048, + "attr": {}, + "npclist": "4012_32_90018#3004_30_90018#3012_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1049": { + "npcId": 1049, + "attr": {}, + "npclist": "1001_29_90018#3012_30_90018#3006_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1050": { + "npcId": 1050, + "attr": {}, + "npclist": "3003_29_90018#4009_29_90018#5003_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1051": { + "npcId": 1051, + "attr": {}, + "npclist": "5001_30_90018#4002_27_90018#3014_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1052": { + "npcId": 1052, + "attr": {}, + "npclist": "4005_27_90018#5003_29_90018#4015_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1053": { + "npcId": 1053, + "attr": {}, + "npclist": "4013_26_90018#4004_25_90018#5005_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1054": { + "npcId": 1054, + "attr": {}, + "npclist": "5004_35_90018#3008_31_90018#4005_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1055": { + "npcId": 1055, + "attr": {}, + "npclist": "4004_30_90018#4013_34_90018#1001_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1056": { + "npcId": 1056, + "attr": {}, + "npclist": "4003_30_90018#3001_34_90018#3003_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1057": { + "npcId": 1057, + "attr": {}, + "npclist": "3011_34_90018#4012_28_90018#1002_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1058": { + "npcId": 1058, + "attr": {}, + "npclist": "2002_26_90018#3015_33_90018#3001_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1059": { + "npcId": 1059, + "attr": {}, + "npclist": "5003_32_90018#3008_26_90018#4011_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1060": { + "npcId": 1060, + "attr": {}, + "npclist": "4011_26_90018#3003_26_90018#4005_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1061": { + "npcId": 1061, + "attr": {}, + "npclist": "5005_35_90018#3014_35_90018#3015_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1062": { + "npcId": 1062, + "attr": {}, + "npclist": "3011_29_90018#3005_33_90018#4001_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1063": { + "npcId": 1063, + "attr": {}, + "npclist": "3005_26_90018#4014_34_90018#1002_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1064": { + "npcId": 1064, + "attr": {}, + "npclist": "3011_33_90018#5001_31_90018#4005_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1065": { + "npcId": 1065, + "attr": {}, + "npclist": "5002_32_90018#4008_25_90018#3007_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1066": { + "npcId": 1066, + "attr": {}, + "npclist": "3002_33_90018#3002_26_90018#3012_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1067": { + "npcId": 1067, + "attr": {}, + "npclist": "2002_33_90018#4011_27_90018#4002_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1068": { + "npcId": 1068, + "attr": {}, + "npclist": "4012_34_90018#4013_35_90018#3012_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1069": { + "npcId": 1069, + "attr": {}, + "npclist": "2002_34_90018#3007_28_90018#4015_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1070": { + "npcId": 1070, + "attr": {}, + "npclist": "4009_25_90018#4009_31_90018#4014_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1071": { + "npcId": 1071, + "attr": {}, + "npclist": "4011_35_90018#3006_29_90018#3005_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1072": { + "npcId": 1072, + "attr": {}, + "npclist": "4008_29_90018#3009_31_90018#4004_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1073": { + "npcId": 1073, + "attr": {}, + "npclist": "4004_26_90018#3012_32_90018#4006_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1074": { + "npcId": 1074, + "attr": {}, + "npclist": "4005_30_90018#4006_34_90018#3002_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1075": { + "npcId": 1075, + "attr": {}, + "npclist": "4013_32_90018#5005_26_90018#3009_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1076": { + "npcId": 1076, + "attr": {}, + "npclist": "5001_29_90018#3005_28_90018#4004_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1077": { + "npcId": 1077, + "attr": {}, + "npclist": "4010_27_90018#3008_29_90018#5002_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1078": { + "npcId": 1078, + "attr": {}, + "npclist": "4005_25_90018#4012_27_90018#4001_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1079": { + "npcId": 1079, + "attr": {}, + "npclist": "3005_28_90018#3004_33_90018#4005_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1080": { + "npcId": 1080, + "attr": {}, + "npclist": "3004_30_90018#4008_34_90018#3014_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1081": { + "npcId": 1081, + "attr": {}, + "npclist": "3001_32_90018#3010_29_90018#5003_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1082": { + "npcId": 1082, + "attr": {}, + "npclist": "3010_31_90018#4012_31_90018#4015_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1083": { + "npcId": 1083, + "attr": {}, + "npclist": "3002_34_90018#5005_29_90018#4015_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1084": { + "npcId": 1084, + "attr": {}, + "npclist": "3002_30_90018#4013_32_90018#4015_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1085": { + "npcId": 1085, + "attr": {}, + "npclist": "5005_26_90018#4013_29_90018#3013_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1086": { + "npcId": 1086, + "attr": {}, + "npclist": "4012_35_90018#3011_33_90018#3008_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1087": { + "npcId": 1087, + "attr": {}, + "npclist": "1002_25_90018#5001_31_90018#5003_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1088": { + "npcId": 1088, + "attr": {}, + "npclist": "3001_29_90018#3011_32_90018#4009_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1089": { + "npcId": 1089, + "attr": {}, + "npclist": "5004_28_90018#3005_33_90018#4001_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1090": { + "npcId": 1090, + "attr": {}, + "npclist": "1002_27_90018#3005_34_90018#3002_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1091": { + "npcId": 1091, + "attr": {}, + "npclist": "4011_29_90018#3004_31_90018#3015_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1092": { + "npcId": 1092, + "attr": {}, + "npclist": "1001_35_90018#3002_34_90018#3003_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1093": { + "npcId": 1093, + "attr": {}, + "npclist": "3015_32_90018#3006_28_90018#4005_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1094": { + "npcId": 1094, + "attr": {}, + "npclist": "4010_31_90018#3003_28_90018#4013_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1095": { + "npcId": 1095, + "attr": {}, + "npclist": "4015_35_90018#4008_35_90018#2002_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1096": { + "npcId": 1096, + "attr": {}, + "npclist": "4006_26_90018#4010_33_90018#3014_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1097": { + "npcId": 1097, + "attr": {}, + "npclist": "4006_30_90018#2002_32_90018#4013_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1098": { + "npcId": 1098, + "attr": {}, + "npclist": "5001_30_90018#4013_32_90018#3008_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1099": { + "npcId": 1099, + "attr": {}, + "npclist": "4010_35_90018#3006_29_90018#3005_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1100": { + "npcId": 1100, + "attr": {}, + "npclist": "5001_30_90018#4012_32_90018#3008_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1101": { + "npcId": 1101, + "attr": {}, + "npclist": "3003_32_90018#3013_25_90018#4014_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1102": { + "npcId": 1102, + "attr": {}, + "npclist": "4013_26_90018#4015_25_90018#3002_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1103": { + "npcId": 1103, + "attr": {}, + "npclist": "4003_29_90018#3015_25_90018#4009_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1104": { + "npcId": 1104, + "attr": {}, + "npclist": "3010_40_90018#3002_25_90018#3006_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1105": { + "npcId": 1105, + "attr": {}, + "npclist": "4002_39_90018#4005_25_90018#5001_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1106": { + "npcId": 1106, + "attr": {}, + "npclist": "5003_36_90018#4007_25_90018#2001_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1107": { + "npcId": 1107, + "attr": {}, + "npclist": "4005_30_90018#3006_25_90018#4013_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1108": { + "npcId": 1108, + "attr": {}, + "npclist": "3008_29_90018#3013_25_90018#4005_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1109": { + "npcId": 1109, + "attr": {}, + "npclist": "2002_36_90018#5003_25_90018#4013_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1110": { + "npcId": 1110, + "attr": {}, + "npclist": "3008_27_90018#4005_25_90018#4009_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1111": { + "npcId": 1111, + "attr": {}, + "npclist": "3010_31_90018#3001_25_90018#4014_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1112": { + "npcId": 1112, + "attr": {}, + "npclist": "3008_36_90018#4010_25_90018#3009_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1113": { + "npcId": 1113, + "attr": {}, + "npclist": "4002_38_90018#3003_25_90018#4013_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1114": { + "npcId": 1114, + "attr": {}, + "npclist": "4007_35_90018#3001_25_90018#4006_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1115": { + "npcId": 1115, + "attr": {}, + "npclist": "3015_32_90018#4011_25_90018#4006_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1116": { + "npcId": 1116, + "attr": {}, + "npclist": "4001_35_90018#4003_25_90018#3005_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1117": { + "npcId": 1117, + "attr": {}, + "npclist": "3002_33_90018#4003_25_90018#3015_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1118": { + "npcId": 1118, + "attr": {}, + "npclist": "4013_35_90018#4006_25_90018#1001_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1119": { + "npcId": 1119, + "attr": {}, + "npclist": "4011_32_90018#1001_25_90018#4015_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1120": { + "npcId": 1120, + "attr": {}, + "npclist": "4011_37_90018#4014_25_90018#4012_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1121": { + "npcId": 1121, + "attr": {}, + "npclist": "3003_25_90018#3001_25_90018#5002_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1122": { + "npcId": 1122, + "attr": {}, + "npclist": "3015_28_90018#4003_25_90018#4007_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1123": { + "npcId": 1123, + "attr": {}, + "npclist": "5004_36_90018#3011_25_90018#4003_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1124": { + "npcId": 1124, + "attr": {}, + "npclist": "3007_34_90018#4009_25_90018#4008_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1125": { + "npcId": 1125, + "attr": {}, + "npclist": "4014_32_90018#3006_25_90018#5002_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1126": { + "npcId": 1126, + "attr": {}, + "npclist": "4012_30_90018#4009_25_90018#4013_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1127": { + "npcId": 1127, + "attr": {}, + "npclist": "4002_36_90018#3013_25_90018#4014_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1128": { + "npcId": 1128, + "attr": {}, + "npclist": "3004_34_90018#5004_25_90018#4013_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1129": { + "npcId": 1129, + "attr": {}, + "npclist": "2001_25_90018#3002_25_90018#5001_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1130": { + "npcId": 1130, + "attr": {}, + "npclist": "3005_35_90018#3011_25_90018#4009_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1131": { + "npcId": 1131, + "attr": {}, + "npclist": "4006_25_90018#3011_25_90018#3009_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1132": { + "npcId": 1132, + "attr": {}, + "npclist": "4014_37_90018#4015_25_90018#4006_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1133": { + "npcId": 1133, + "attr": {}, + "npclist": "3012_34_90018#1001_25_90018#4011_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1134": { + "npcId": 1134, + "attr": {}, + "npclist": "4013_38_90018#2001_25_90018#4005_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1135": { + "npcId": 1135, + "attr": {}, + "npclist": "3008_30_90018#3012_25_90018#3011_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1136": { + "npcId": 1136, + "attr": {}, + "npclist": "4001_25_90018#3010_25_90018#2002_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1137": { + "npcId": 1137, + "attr": {}, + "npclist": "3008_31_90018#1001_25_90018#3002_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1138": { + "npcId": 1138, + "attr": {}, + "npclist": "5004_30_90018#4015_25_90018#3012_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1139": { + "npcId": 1139, + "attr": {}, + "npclist": "3014_35_90018#4007_25_90018#3014_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1140": { + "npcId": 1140, + "attr": {}, + "npclist": "4002_27_90018#5002_25_90018#2001_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1141": { + "npcId": 1141, + "attr": {}, + "npclist": "3010_29_90018#4004_25_90018#3006_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1142": { + "npcId": 1142, + "attr": {}, + "npclist": "5001_27_90018#4003_25_90018#4001_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1143": { + "npcId": 1143, + "attr": {}, + "npclist": "3005_39_90018#3015_25_90018#5005_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1144": { + "npcId": 1144, + "attr": {}, + "npclist": "4004_34_90018#4015_25_90018#1001_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1145": { + "npcId": 1145, + "attr": {}, + "npclist": "4003_39_90018#3006_25_90018#3014_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1146": { + "npcId": 1146, + "attr": {}, + "npclist": "4009_25_90018#4013_25_90018#3002_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1147": { + "npcId": 1147, + "attr": {}, + "npclist": "1002_36_90018#3015_25_90018#4004_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1148": { + "npcId": 1148, + "attr": {}, + "npclist": "3015_25_90018#4009_25_90018#3011_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1149": { + "npcId": 1149, + "attr": {}, + "npclist": "4003_33_90018#1001_25_90018#1001_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1150": { + "npcId": 1150, + "attr": {}, + "npclist": "4013_26_90018#1002_25_90018#3007_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1151": { + "npcId": 1151, + "attr": {}, + "npclist": "3005_29_90018#3006_25_90018#3007_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1152": { + "npcId": 1152, + "attr": {}, + "npclist": "3014_36_90018#2002_25_90018#4014_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1153": { + "npcId": 1153, + "attr": {}, + "npclist": "4012_28_90018#5005_25_90018#3013_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1154": { + "npcId": 1154, + "attr": {}, + "npclist": "4006_32_90018#4007_26_90018#3011_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1155": { + "npcId": 1155, + "attr": {}, + "npclist": "3002_38_90018#4011_26_90018#5002_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1156": { + "npcId": 1156, + "attr": {}, + "npclist": "3009_28_90018#4008_26_90018#5005_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1157": { + "npcId": 1157, + "attr": {}, + "npclist": "3008_28_90018#3009_26_90018#2002_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1158": { + "npcId": 1158, + "attr": {}, + "npclist": "3008_29_90018#5001_26_90018#3009_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1159": { + "npcId": 1159, + "attr": {}, + "npclist": "4005_28_90018#3014_26_90018#3006_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1160": { + "npcId": 1160, + "attr": {}, + "npclist": "4014_39_90018#5004_26_90018#4010_25_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1161": { + "npcId": 1161, + "attr": {}, + "npclist": "4009_38_90018#3014_26_90018#5003_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1162": { + "npcId": 1162, + "attr": {}, + "npclist": "5001_27_90018#3012_26_90018#4007_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1163": { + "npcId": 1163, + "attr": {}, + "npclist": "3007_28_90018#4014_26_90018#5002_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1164": { + "npcId": 1164, + "attr": {}, + "npclist": "4002_32_90018#1001_26_90018#3010_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1165": { + "npcId": 1165, + "attr": {}, + "npclist": "3007_25_90018#4003_26_90018#3005_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1166": { + "npcId": 1166, + "attr": {}, + "npclist": "3014_28_90018#4001_26_90018#1002_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1167": { + "npcId": 1167, + "attr": {}, + "npclist": "3010_40_90018#3008_26_90018#3003_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1168": { + "npcId": 1168, + "attr": {}, + "npclist": "3003_34_90018#3009_26_90018#4002_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1169": { + "npcId": 1169, + "attr": {}, + "npclist": "4008_34_90018#5005_26_90018#3014_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1170": { + "npcId": 1170, + "attr": {}, + "npclist": "4015_25_90018#3005_26_90018#4003_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1171": { + "npcId": 1171, + "attr": {}, + "npclist": "5005_28_90018#3006_26_90018#4005_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1172": { + "npcId": 1172, + "attr": {}, + "npclist": "4007_35_90018#3008_26_90018#3010_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1173": { + "npcId": 1173, + "attr": {}, + "npclist": "3002_40_90018#3002_26_90018#4007_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1174": { + "npcId": 1174, + "attr": {}, + "npclist": "4006_35_90018#4012_26_90018#4006_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1175": { + "npcId": 1175, + "attr": {}, + "npclist": "3011_37_90018#4010_26_90018#5003_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1176": { + "npcId": 1176, + "attr": {}, + "npclist": "3009_37_90018#4004_26_90018#2001_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1177": { + "npcId": 1177, + "attr": {}, + "npclist": "4013_39_90018#5005_26_90018#4004_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1178": { + "npcId": 1178, + "attr": {}, + "npclist": "1002_40_90018#4011_26_90018#1001_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1179": { + "npcId": 1179, + "attr": {}, + "npclist": "3006_26_90018#2001_26_90018#3001_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1180": { + "npcId": 1180, + "attr": {}, + "npclist": "3005_31_90018#4015_26_90018#1002_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1181": { + "npcId": 1181, + "attr": {}, + "npclist": "4010_26_90018#2001_26_90018#3006_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1182": { + "npcId": 1182, + "attr": {}, + "npclist": "3004_35_90018#3005_26_90018#3005_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1183": { + "npcId": 1183, + "attr": {}, + "npclist": "3001_27_90018#3014_26_90018#3009_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1184": { + "npcId": 1184, + "attr": {}, + "npclist": "3003_37_90018#3010_26_90018#5005_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1185": { + "npcId": 1185, + "attr": {}, + "npclist": "5004_25_90018#1002_26_90018#4015_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1186": { + "npcId": 1186, + "attr": {}, + "npclist": "4006_33_90018#4009_26_90018#4015_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1187": { + "npcId": 1187, + "attr": {}, + "npclist": "4015_26_90018#4005_26_90018#2001_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1188": { + "npcId": 1188, + "attr": {}, + "npclist": "5004_39_90018#4015_26_90018#3014_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1189": { + "npcId": 1189, + "attr": {}, + "npclist": "3001_27_90018#2001_26_90018#4003_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1190": { + "npcId": 1190, + "attr": {}, + "npclist": "5003_33_90018#3009_26_90018#4006_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1191": { + "npcId": 1191, + "attr": {}, + "npclist": "5002_25_90018#3009_26_90018#4009_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1192": { + "npcId": 1192, + "attr": {}, + "npclist": "3015_26_90018#3015_26_90018#3002_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1193": { + "npcId": 1193, + "attr": {}, + "npclist": "3011_29_90018#3001_26_90018#3010_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1194": { + "npcId": 1194, + "attr": {}, + "npclist": "4011_37_90018#5004_26_90018#3002_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1195": { + "npcId": 1195, + "attr": {}, + "npclist": "3001_39_90018#2001_26_90018#3015_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1196": { + "npcId": 1196, + "attr": {}, + "npclist": "5003_38_90018#4015_26_90018#4001_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1197": { + "npcId": 1197, + "attr": {}, + "npclist": "5001_32_90018#4013_26_90018#4011_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1198": { + "npcId": 1198, + "attr": {}, + "npclist": "5001_35_90018#3015_26_90018#4015_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1199": { + "npcId": 1199, + "attr": {}, + "npclist": "5002_35_90018#3003_26_90018#4009_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1200": { + "npcId": 1200, + "attr": {}, + "npclist": "4011_28_90018#4012_26_90018#3005_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1201": { + "npcId": 1201, + "attr": {}, + "npclist": "3007_35_90018#3015_26_90018#3009_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1202": { + "npcId": 1202, + "attr": {}, + "npclist": "3007_31_90018#3002_26_90018#1002_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1203": { + "npcId": 1203, + "attr": {}, + "npclist": "3005_39_90018#4010_26_90018#3001_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1204": { + "npcId": 1204, + "attr": {}, + "npclist": "3014_28_90018#1001_26_90018#3003_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1205": { + "npcId": 1205, + "attr": {}, + "npclist": "4013_33_90018#4005_26_90018#2001_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1206": { + "npcId": 1206, + "attr": {}, + "npclist": "4014_35_90018#4009_26_90018#4012_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1207": { + "npcId": 1207, + "attr": {}, + "npclist": "3006_38_90018#4010_26_90018#3004_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1208": { + "npcId": 1208, + "attr": {}, + "npclist": "4006_26_90018#3009_26_90018#4015_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1209": { + "npcId": 1209, + "attr": {}, + "npclist": "4003_37_90018#1001_26_90018#5001_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1210": { + "npcId": 1210, + "attr": {}, + "npclist": "1002_28_90018#4007_27_90018#3015_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1211": { + "npcId": 1211, + "attr": {}, + "npclist": "3003_40_90018#5004_27_90018#5003_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1212": { + "npcId": 1212, + "attr": {}, + "npclist": "3009_26_90018#5001_27_90018#3014_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1213": { + "npcId": 1213, + "attr": {}, + "npclist": "5003_32_90018#3015_27_90018#4007_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1214": { + "npcId": 1214, + "attr": {}, + "npclist": "3005_31_90018#4001_27_90018#5002_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1215": { + "npcId": 1215, + "attr": {}, + "npclist": "3007_34_90018#3015_27_90018#1002_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1216": { + "npcId": 1216, + "attr": {}, + "npclist": "4013_39_90018#4002_27_90018#3003_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1217": { + "npcId": 1217, + "attr": {}, + "npclist": "4001_26_90018#5004_27_90018#3006_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1218": { + "npcId": 1218, + "attr": {}, + "npclist": "3014_40_90018#4013_27_90018#4006_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1219": { + "npcId": 1219, + "attr": {}, + "npclist": "3004_27_90018#3008_27_90018#2002_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1220": { + "npcId": 1220, + "attr": {}, + "npclist": "4009_27_90018#3008_27_90018#5005_26_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1221": { + "npcId": 1221, + "attr": {}, + "npclist": "5005_37_90018#5001_27_90018#5004_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1222": { + "npcId": 1222, + "attr": {}, + "npclist": "3010_26_90018#3013_27_90018#4001_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1223": { + "npcId": 1223, + "attr": {}, + "npclist": "4001_31_90018#3003_27_90018#4001_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1224": { + "npcId": 1224, + "attr": {}, + "npclist": "4007_29_90018#4008_27_90018#4012_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1225": { + "npcId": 1225, + "attr": {}, + "npclist": "3014_25_90018#3011_27_90018#4014_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1226": { + "npcId": 1226, + "attr": {}, + "npclist": "5005_29_90018#5002_27_90018#3005_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1227": { + "npcId": 1227, + "attr": {}, + "npclist": "3007_26_90018#4013_27_90018#3008_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1228": { + "npcId": 1228, + "attr": {}, + "npclist": "1002_29_90018#3009_27_90018#4005_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1229": { + "npcId": 1229, + "attr": {}, + "npclist": "5003_38_90018#3001_27_90018#4008_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1230": { + "npcId": 1230, + "attr": {}, + "npclist": "4003_37_90018#3010_27_90018#1001_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1231": { + "npcId": 1231, + "attr": {}, + "npclist": "4004_34_90018#4007_27_90018#4009_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1232": { + "npcId": 1232, + "attr": {}, + "npclist": "5005_35_90018#4015_27_90018#4009_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1233": { + "npcId": 1233, + "attr": {}, + "npclist": "2001_39_90018#3013_27_90018#3005_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1234": { + "npcId": 1234, + "attr": {}, + "npclist": "4014_29_90018#3014_27_90018#3001_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1235": { + "npcId": 1235, + "attr": {}, + "npclist": "3014_39_90018#3003_27_90018#2002_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1236": { + "npcId": 1236, + "attr": {}, + "npclist": "3013_38_90018#3008_27_90018#4015_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1237": { + "npcId": 1237, + "attr": {}, + "npclist": "3014_38_90018#3002_27_90018#4012_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1238": { + "npcId": 1238, + "attr": {}, + "npclist": "4014_37_90018#3012_27_90018#4004_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1239": { + "npcId": 1239, + "attr": {}, + "npclist": "5004_27_90018#3006_27_90018#1002_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1240": { + "npcId": 1240, + "attr": {}, + "npclist": "3009_36_90018#3010_27_90018#3012_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1241": { + "npcId": 1241, + "attr": {}, + "npclist": "4009_30_90018#4004_27_90018#4002_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1242": { + "npcId": 1242, + "attr": {}, + "npclist": "4003_25_90018#4004_27_90018#4001_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1243": { + "npcId": 1243, + "attr": {}, + "npclist": "2002_25_90018#4008_27_90018#5003_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1244": { + "npcId": 1244, + "attr": {}, + "npclist": "3003_37_90018#4004_27_90018#3003_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1245": { + "npcId": 1245, + "attr": {}, + "npclist": "4009_39_90018#4011_27_90018#5003_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1246": { + "npcId": 1246, + "attr": {}, + "npclist": "4010_26_90018#4014_27_90018#3002_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1247": { + "npcId": 1247, + "attr": {}, + "npclist": "3006_26_90018#3006_27_90018#3011_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1248": { + "npcId": 1248, + "attr": {}, + "npclist": "4010_40_90018#3001_27_90018#4007_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1249": { + "npcId": 1249, + "attr": {}, + "npclist": "2001_36_90018#1002_27_90018#2002_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1250": { + "npcId": 1250, + "attr": {}, + "npclist": "4006_30_90018#3004_27_90018#5005_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1251": { + "npcId": 1251, + "attr": {}, + "npclist": "3015_32_90018#4008_27_90018#4005_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1252": { + "npcId": 1252, + "attr": {}, + "npclist": "4013_35_90018#4006_27_90018#5001_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1253": { + "npcId": 1253, + "attr": {}, + "npclist": "3003_27_90018#3007_27_90018#4004_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1254": { + "npcId": 1254, + "attr": {}, + "npclist": "4012_31_90018#2001_27_90018#4002_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1255": { + "npcId": 1255, + "attr": {}, + "npclist": "4009_29_90018#3001_27_90018#5005_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1256": { + "npcId": 1256, + "attr": {}, + "npclist": "4006_39_90018#3006_27_90018#5002_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1257": { + "npcId": 1257, + "attr": {}, + "npclist": "3015_28_90018#3007_27_90018#5001_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1258": { + "npcId": 1258, + "attr": {}, + "npclist": "5005_29_90018#3006_28_90018#4015_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1259": { + "npcId": 1259, + "attr": {}, + "npclist": "3004_34_90018#3010_28_90018#4003_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1260": { + "npcId": 1260, + "attr": {}, + "npclist": "4003_32_90018#5003_28_90018#4008_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1261": { + "npcId": 1261, + "attr": {}, + "npclist": "4006_40_90018#4001_28_90018#3008_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1262": { + "npcId": 1262, + "attr": {}, + "npclist": "4003_35_90018#5004_28_90018#4011_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1263": { + "npcId": 1263, + "attr": {}, + "npclist": "3002_33_90018#3006_28_90018#4014_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1264": { + "npcId": 1264, + "attr": {}, + "npclist": "5004_27_90018#4014_28_90018#3011_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1265": { + "npcId": 1265, + "attr": {}, + "npclist": "4004_35_90018#5005_28_90018#4012_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1266": { + "npcId": 1266, + "attr": {}, + "npclist": "3006_38_90018#3014_28_90018#4002_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1267": { + "npcId": 1267, + "attr": {}, + "npclist": "4006_26_90018#4003_28_90018#3015_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1268": { + "npcId": 1268, + "attr": {}, + "npclist": "4004_37_90018#3012_28_90018#3007_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1269": { + "npcId": 1269, + "attr": {}, + "npclist": "5003_40_90018#4008_28_90018#5005_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1270": { + "npcId": 1270, + "attr": {}, + "npclist": "4001_38_90018#3007_28_90018#4011_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1271": { + "npcId": 1271, + "attr": {}, + "npclist": "4003_33_90018#4004_28_90018#2001_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1272": { + "npcId": 1272, + "attr": {}, + "npclist": "4010_39_90018#1001_28_90018#3009_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1273": { + "npcId": 1273, + "attr": {}, + "npclist": "4012_36_90018#2002_28_90018#3003_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1274": { + "npcId": 1274, + "attr": {}, + "npclist": "3011_31_90018#4003_28_90018#3009_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1275": { + "npcId": 1275, + "attr": {}, + "npclist": "5001_30_90018#3010_28_90018#3001_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1276": { + "npcId": 1276, + "attr": {}, + "npclist": "3004_27_90018#4012_28_90018#4012_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1277": { + "npcId": 1277, + "attr": {}, + "npclist": "4004_29_90018#2002_28_90018#3014_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1278": { + "npcId": 1278, + "attr": {}, + "npclist": "3013_28_90018#4005_28_90018#4013_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1279": { + "npcId": 1279, + "attr": {}, + "npclist": "3007_38_90018#3008_28_90018#4002_27_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1280": { + "npcId": 1280, + "attr": {}, + "npclist": "3009_31_90018#4012_28_90018#4004_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1281": { + "npcId": 1281, + "attr": {}, + "npclist": "4008_31_90018#4013_28_90018#4013_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1282": { + "npcId": 1282, + "attr": {}, + "npclist": "3010_27_90018#3001_28_90018#3002_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1283": { + "npcId": 1283, + "attr": {}, + "npclist": "3009_25_90018#3013_28_90018#3015_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1284": { + "npcId": 1284, + "attr": {}, + "npclist": "5004_27_90018#4015_28_90018#4003_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1285": { + "npcId": 1285, + "attr": {}, + "npclist": "3009_34_90018#4002_28_90018#5002_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1286": { + "npcId": 1286, + "attr": {}, + "npclist": "3006_32_90018#3005_28_90018#3015_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1287": { + "npcId": 1287, + "attr": {}, + "npclist": "5004_36_90018#4002_28_90018#4015_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1288": { + "npcId": 1288, + "attr": {}, + "npclist": "5002_30_90018#3007_28_90018#3002_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1289": { + "npcId": 1289, + "attr": {}, + "npclist": "4010_37_90018#4014_28_90018#3013_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1290": { + "npcId": 1290, + "attr": {}, + "npclist": "3012_34_90018#3014_28_90018#3002_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1291": { + "npcId": 1291, + "attr": {}, + "npclist": "3007_28_90018#4005_28_90018#4010_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1292": { + "npcId": 1292, + "attr": {}, + "npclist": "3009_33_90018#4005_28_90018#3010_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1293": { + "npcId": 1293, + "attr": {}, + "npclist": "3011_25_90018#4007_28_90018#4008_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1294": { + "npcId": 1294, + "attr": {}, + "npclist": "4005_34_90018#4011_28_90018#5003_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1295": { + "npcId": 1295, + "attr": {}, + "npclist": "5001_33_90018#5002_28_90018#3007_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1296": { + "npcId": 1296, + "attr": {}, + "npclist": "4005_39_90018#3008_28_90018#4005_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1297": { + "npcId": 1297, + "attr": {}, + "npclist": "4005_31_90018#3008_28_90018#3001_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1298": { + "npcId": 1298, + "attr": {}, + "npclist": "3001_38_90018#3007_28_90018#4009_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1299": { + "npcId": 1299, + "attr": {}, + "npclist": "5004_40_90018#4001_28_90018#3003_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1300": { + "npcId": 1300, + "attr": {}, + "npclist": "5003_38_90018#4014_28_90018#5003_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1301": { + "npcId": 1301, + "attr": {}, + "npclist": "5005_25_90018#4002_28_90018#4004_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1302": { + "npcId": 1302, + "attr": {}, + "npclist": "3005_31_90018#3011_28_90018#3004_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1303": { + "npcId": 1303, + "attr": {}, + "npclist": "4006_29_90018#3009_28_90018#3002_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1304": { + "npcId": 1304, + "attr": {}, + "npclist": "4008_26_90018#5004_28_90018#3014_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1305": { + "npcId": 1305, + "attr": {}, + "npclist": "3014_35_90018#4012_28_90018#3011_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1306": { + "npcId": 1306, + "attr": {}, + "npclist": "3006_31_90018#5003_28_90018#3014_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1307": { + "npcId": 1307, + "attr": {}, + "npclist": "5003_26_90018#4007_28_90018#5005_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1308": { + "npcId": 1308, + "attr": {}, + "npclist": "3002_28_90018#3005_28_90018#3007_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1309": { + "npcId": 1309, + "attr": {}, + "npclist": "1001_26_90018#3002_28_90018#3004_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1310": { + "npcId": 1310, + "attr": {}, + "npclist": "3012_39_90018#5004_28_90018#4005_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1311": { + "npcId": 1311, + "attr": {}, + "npclist": "4003_40_90018#4011_28_90018#4014_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1312": { + "npcId": 1312, + "attr": {}, + "npclist": "4001_33_90018#3012_28_90018#5004_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1313": { + "npcId": 1313, + "attr": {}, + "npclist": "3004_39_90018#5005_28_90018#3013_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1314": { + "npcId": 1314, + "attr": {}, + "npclist": "1001_29_90018#3013_28_90018#3007_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1315": { + "npcId": 1315, + "attr": {}, + "npclist": "5005_33_90018#2002_28_90018#5003_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1316": { + "npcId": 1316, + "attr": {}, + "npclist": "1001_31_90018#3010_28_90018#4003_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1317": { + "npcId": 1317, + "attr": {}, + "npclist": "3015_34_90018#4010_28_90018#3014_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1318": { + "npcId": 1318, + "attr": {}, + "npclist": "5001_34_90018#5002_28_90018#5005_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1319": { + "npcId": 1319, + "attr": {}, + "npclist": "3010_29_90018#3011_28_90018#3008_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1320": { + "npcId": 1320, + "attr": {}, + "npclist": "5003_34_90018#4006_28_90018#3009_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1321": { + "npcId": 1321, + "attr": {}, + "npclist": "5001_34_90018#4007_28_90018#4003_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1322": { + "npcId": 1322, + "attr": {}, + "npclist": "4013_28_90018#4008_28_90018#3005_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1323": { + "npcId": 1323, + "attr": {}, + "npclist": "4002_31_90018#4002_29_90018#3008_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1324": { + "npcId": 1324, + "attr": {}, + "npclist": "2001_32_90018#4007_29_90018#3013_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1325": { + "npcId": 1325, + "attr": {}, + "npclist": "2001_37_90018#4011_29_90018#1001_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1326": { + "npcId": 1326, + "attr": {}, + "npclist": "4015_29_90018#3015_29_90018#3014_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1327": { + "npcId": 1327, + "attr": {}, + "npclist": "3006_29_90018#3006_29_90018#2001_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1328": { + "npcId": 1328, + "attr": {}, + "npclist": "3006_28_90018#5004_29_90018#3014_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1329": { + "npcId": 1329, + "attr": {}, + "npclist": "4008_36_90018#4013_29_90018#3001_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1330": { + "npcId": 1330, + "attr": {}, + "npclist": "4008_34_90018#3004_29_90018#3004_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1331": { + "npcId": 1331, + "attr": {}, + "npclist": "1002_39_90018#3004_29_90018#5001_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1332": { + "npcId": 1332, + "attr": {}, + "npclist": "5002_33_90018#3005_29_90018#3011_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1333": { + "npcId": 1333, + "attr": {}, + "npclist": "4002_32_90018#4005_29_90018#4006_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1334": { + "npcId": 1334, + "attr": {}, + "npclist": "3001_40_90018#3012_29_90018#3004_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1335": { + "npcId": 1335, + "attr": {}, + "npclist": "4013_36_90018#4005_29_90018#3010_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1336": { + "npcId": 1336, + "attr": {}, + "npclist": "2002_28_90018#5003_29_90018#3006_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1337": { + "npcId": 1337, + "attr": {}, + "npclist": "1002_27_90018#3014_29_90018#3014_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1338": { + "npcId": 1338, + "attr": {}, + "npclist": "4001_29_90018#4010_29_90018#4008_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1339": { + "npcId": 1339, + "attr": {}, + "npclist": "3014_37_90018#3001_29_90018#2002_28_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1340": { + "npcId": 1340, + "attr": {}, + "npclist": "5002_31_90018#4008_29_90018#3012_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1341": { + "npcId": 1341, + "attr": {}, + "npclist": "4001_34_90018#4001_29_90018#4002_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1342": { + "npcId": 1342, + "attr": {}, + "npclist": "4006_27_90018#3009_29_90018#3006_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1343": { + "npcId": 1343, + "attr": {}, + "npclist": "4007_29_90018#3013_29_90018#3010_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1344": { + "npcId": 1344, + "attr": {}, + "npclist": "3003_25_90018#3015_29_90018#4005_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1345": { + "npcId": 1345, + "attr": {}, + "npclist": "4004_34_90018#4008_29_90018#3001_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1346": { + "npcId": 1346, + "attr": {}, + "npclist": "5001_27_90018#4001_29_90018#4015_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1347": { + "npcId": 1347, + "attr": {}, + "npclist": "3006_31_90018#4013_29_90018#1002_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1348": { + "npcId": 1348, + "attr": {}, + "npclist": "5003_29_90018#3004_29_90018#3007_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1349": { + "npcId": 1349, + "attr": {}, + "npclist": "3007_25_90018#4008_29_90018#5002_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1350": { + "npcId": 1350, + "attr": {}, + "npclist": "4001_27_90018#4010_29_90018#3013_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1351": { + "npcId": 1351, + "attr": {}, + "npclist": "3009_31_90018#4009_29_90018#4004_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1352": { + "npcId": 1352, + "attr": {}, + "npclist": "3006_32_90018#1002_29_90018#5005_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1353": { + "npcId": 1353, + "attr": {}, + "npclist": "3013_27_90018#3007_29_90018#1002_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1354": { + "npcId": 1354, + "attr": {}, + "npclist": "3002_26_90018#4008_29_90018#4013_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1355": { + "npcId": 1355, + "attr": {}, + "npclist": "4006_36_90018#5004_29_90018#5005_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1356": { + "npcId": 1356, + "attr": {}, + "npclist": "2001_29_90018#4005_29_90018#4012_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1357": { + "npcId": 1357, + "attr": {}, + "npclist": "2001_32_90018#3003_29_90018#4004_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1358": { + "npcId": 1358, + "attr": {}, + "npclist": "4003_35_90018#4006_29_90018#2002_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1359": { + "npcId": 1359, + "attr": {}, + "npclist": "3002_38_90018#4014_29_90018#3007_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1360": { + "npcId": 1360, + "attr": {}, + "npclist": "4015_39_90018#5001_29_90018#5005_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1361": { + "npcId": 1361, + "attr": {}, + "npclist": "4002_32_90018#3008_29_90018#3012_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1362": { + "npcId": 1362, + "attr": {}, + "npclist": "5003_30_90018#4002_29_90018#5001_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1363": { + "npcId": 1363, + "attr": {}, + "npclist": "4002_27_90018#4013_29_90018#5001_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1364": { + "npcId": 1364, + "attr": {}, + "npclist": "5003_37_90018#5004_29_90018#4009_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1365": { + "npcId": 1365, + "attr": {}, + "npclist": "4003_35_90018#3013_29_90018#3006_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1366": { + "npcId": 1366, + "attr": {}, + "npclist": "4001_36_90018#3002_29_90018#4010_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1367": { + "npcId": 1367, + "attr": {}, + "npclist": "4011_28_90018#5001_29_90018#4001_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1368": { + "npcId": 1368, + "attr": {}, + "npclist": "3004_30_90018#3011_29_90018#2001_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1369": { + "npcId": 1369, + "attr": {}, + "npclist": "4001_27_90018#3014_29_90018#4008_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1370": { + "npcId": 1370, + "attr": {}, + "npclist": "5001_40_90018#3002_29_90018#3009_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1371": { + "npcId": 1371, + "attr": {}, + "npclist": "3011_40_90018#3002_29_90018#3010_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1372": { + "npcId": 1372, + "attr": {}, + "npclist": "3008_27_90018#4015_29_90018#5003_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1373": { + "npcId": 1373, + "attr": {}, + "npclist": "3007_30_90018#3014_29_90018#3012_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1374": { + "npcId": 1374, + "attr": {}, + "npclist": "3005_38_90018#4005_29_90018#4002_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1375": { + "npcId": 1375, + "attr": {}, + "npclist": "2001_31_90018#3005_29_90018#5005_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1376": { + "npcId": 1376, + "attr": {}, + "npclist": "4009_37_90018#3001_29_90018#4003_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1377": { + "npcId": 1377, + "attr": {}, + "npclist": "3003_40_90018#4013_29_90018#3008_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1378": { + "npcId": 1378, + "attr": {}, + "npclist": "5001_26_90018#2001_29_90018#4009_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1379": { + "npcId": 1379, + "attr": {}, + "npclist": "3010_34_90018#3003_29_90018#4004_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1380": { + "npcId": 1380, + "attr": {}, + "npclist": "3014_25_90018#5003_29_90018#5002_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1381": { + "npcId": 1381, + "attr": {}, + "npclist": "4001_34_90018#4010_29_90018#5004_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1382": { + "npcId": 1382, + "attr": {}, + "npclist": "4010_39_90018#4008_29_90018#4010_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1383": { + "npcId": 1383, + "attr": {}, + "npclist": "4002_35_90018#4008_29_90018#4011_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1384": { + "npcId": 1384, + "attr": {}, + "npclist": "3012_34_90018#4001_29_90018#3014_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1385": { + "npcId": 1385, + "attr": {}, + "npclist": "5001_36_90018#4001_29_90018#3009_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1386": { + "npcId": 1386, + "attr": {}, + "npclist": "3001_25_90018#5003_29_90018#3001_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1387": { + "npcId": 1387, + "attr": {}, + "npclist": "3001_30_90018#5002_29_90018#4012_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1388": { + "npcId": 1388, + "attr": {}, + "npclist": "3012_33_90018#3005_29_90018#5003_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1389": { + "npcId": 1389, + "attr": {}, + "npclist": "2001_25_90018#3010_29_90018#4014_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1390": { + "npcId": 1390, + "attr": {}, + "npclist": "1002_36_90018#4012_30_90018#4008_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1391": { + "npcId": 1391, + "attr": {}, + "npclist": "4006_37_90018#5005_30_90018#3010_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1392": { + "npcId": 1392, + "attr": {}, + "npclist": "3009_33_90018#3002_30_90018#3011_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1393": { + "npcId": 1393, + "attr": {}, + "npclist": "3001_35_90018#4010_30_90018#2001_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1394": { + "npcId": 1394, + "attr": {}, + "npclist": "5005_33_90018#3002_30_90018#3001_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1395": { + "npcId": 1395, + "attr": {}, + "npclist": "3008_26_90018#4015_30_90018#3002_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1396": { + "npcId": 1396, + "attr": {}, + "npclist": "1002_35_90018#3001_30_90018#4005_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1397": { + "npcId": 1397, + "attr": {}, + "npclist": "4005_39_90018#3010_30_90018#5002_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1398": { + "npcId": 1398, + "attr": {}, + "npclist": "4010_38_90018#3009_30_90018#3005_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1399": { + "npcId": 1399, + "attr": {}, + "npclist": "4012_35_90018#3007_30_90018#3011_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1400": { + "npcId": 1400, + "attr": {}, + "npclist": "4003_28_90018#3008_30_90018#5001_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1401": { + "npcId": 1401, + "attr": {}, + "npclist": "5003_36_90018#2001_30_90018#4010_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1402": { + "npcId": 1402, + "attr": {}, + "npclist": "5003_31_90018#3012_30_90018#1002_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1403": { + "npcId": 1403, + "attr": {}, + "npclist": "4006_29_90018#2001_30_90018#3011_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1404": { + "npcId": 1404, + "attr": {}, + "npclist": "3001_34_90018#4010_30_90018#4009_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1405": { + "npcId": 1405, + "attr": {}, + "npclist": "4008_27_90018#4007_30_90018#3010_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1406": { + "npcId": 1406, + "attr": {}, + "npclist": "3004_25_90018#5002_30_90018#3013_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1407": { + "npcId": 1407, + "attr": {}, + "npclist": "3009_26_90018#3006_30_90018#3003_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1408": { + "npcId": 1408, + "attr": {}, + "npclist": "4005_34_90018#3012_30_90018#3014_29_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1409": { + "npcId": 1409, + "attr": {}, + "npclist": "3012_27_90018#4005_30_90018#5003_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1410": { + "npcId": 1410, + "attr": {}, + "npclist": "3006_39_90018#4008_30_90018#4005_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1411": { + "npcId": 1411, + "attr": {}, + "npclist": "4015_32_90018#3004_30_90018#4010_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1412": { + "npcId": 1412, + "attr": {}, + "npclist": "4006_31_90018#3010_30_90018#2001_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1413": { + "npcId": 1413, + "attr": {}, + "npclist": "2001_37_90018#3006_30_90018#1002_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1414": { + "npcId": 1414, + "attr": {}, + "npclist": "4003_30_90018#3004_30_90018#3006_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1415": { + "npcId": 1415, + "attr": {}, + "npclist": "1001_30_90018#5005_30_90018#3011_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1416": { + "npcId": 1416, + "attr": {}, + "npclist": "3013_25_90018#4014_30_90018#3013_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1417": { + "npcId": 1417, + "attr": {}, + "npclist": "4008_26_90018#3005_30_90018#3009_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1418": { + "npcId": 1418, + "attr": {}, + "npclist": "3006_29_90018#4011_30_90018#5004_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1419": { + "npcId": 1419, + "attr": {}, + "npclist": "4002_37_90018#4014_30_90018#4012_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1420": { + "npcId": 1420, + "attr": {}, + "npclist": "3005_40_90018#5003_30_90018#4005_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1421": { + "npcId": 1421, + "attr": {}, + "npclist": "3004_29_90018#2001_30_90018#1001_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1422": { + "npcId": 1422, + "attr": {}, + "npclist": "1001_34_90018#4006_30_90018#3013_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1423": { + "npcId": 1423, + "attr": {}, + "npclist": "3014_37_90018#3007_30_90018#4015_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1424": { + "npcId": 1424, + "attr": {}, + "npclist": "4011_38_90018#4006_30_90018#4007_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1425": { + "npcId": 1425, + "attr": {}, + "npclist": "4002_30_90018#4007_30_90018#2001_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1426": { + "npcId": 1426, + "attr": {}, + "npclist": "4014_31_90018#4010_30_90018#3006_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1427": { + "npcId": 1427, + "attr": {}, + "npclist": "4012_39_90018#4004_30_90018#4013_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1428": { + "npcId": 1428, + "attr": {}, + "npclist": "5002_27_90018#5002_30_90018#3012_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1429": { + "npcId": 1429, + "attr": {}, + "npclist": "4011_29_90018#3014_30_90018#4005_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1430": { + "npcId": 1430, + "attr": {}, + "npclist": "4005_28_90018#3011_30_90018#5001_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1431": { + "npcId": 1431, + "attr": {}, + "npclist": "5001_38_90018#4007_30_90018#3001_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1432": { + "npcId": 1432, + "attr": {}, + "npclist": "3002_27_90018#2001_30_90018#3010_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1433": { + "npcId": 1433, + "attr": {}, + "npclist": "4003_33_90018#3008_30_90018#3008_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1434": { + "npcId": 1434, + "attr": {}, + "npclist": "3014_33_90018#4008_30_90018#3014_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1435": { + "npcId": 1435, + "attr": {}, + "npclist": "4014_34_90018#4003_30_90018#1002_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1436": { + "npcId": 1436, + "attr": {}, + "npclist": "3012_40_90018#2001_30_90018#4009_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1437": { + "npcId": 1437, + "attr": {}, + "npclist": "3014_33_90018#3015_30_90018#5001_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1438": { + "npcId": 1438, + "attr": {}, + "npclist": "1002_26_90018#3005_30_90018#1002_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1439": { + "npcId": 1439, + "attr": {}, + "npclist": "3012_37_90018#4001_30_90018#3004_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1440": { + "npcId": 1440, + "attr": {}, + "npclist": "3014_36_90018#3009_30_90018#3009_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1441": { + "npcId": 1441, + "attr": {}, + "npclist": "4003_33_90018#3014_30_90018#4007_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1442": { + "npcId": 1442, + "attr": {}, + "npclist": "3010_39_90018#3007_30_90018#3007_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1443": { + "npcId": 1443, + "attr": {}, + "npclist": "4014_32_90018#4009_30_90018#3009_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1444": { + "npcId": 1444, + "attr": {}, + "npclist": "3011_30_90018#3005_30_90018#2002_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1445": { + "npcId": 1445, + "attr": {}, + "npclist": "1002_33_90018#4007_30_90018#3010_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1446": { + "npcId": 1446, + "attr": {}, + "npclist": "4007_31_90018#1002_30_90018#4006_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1447": { + "npcId": 1447, + "attr": {}, + "npclist": "4001_29_90018#3015_30_90018#5001_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1448": { + "npcId": 1448, + "attr": {}, + "npclist": "4006_39_90018#4006_30_90018#3007_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1449": { + "npcId": 1449, + "attr": {}, + "npclist": "3012_31_90018#4001_30_90018#5004_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1450": { + "npcId": 1450, + "attr": {}, + "npclist": "4013_40_90018#3013_30_90018#5003_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1451": { + "npcId": 1451, + "attr": {}, + "npclist": "5002_30_90018#3011_30_90018#3007_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1452": { + "npcId": 1452, + "attr": {}, + "npclist": "4005_26_90018#4015_30_90018#4014_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1453": { + "npcId": 1453, + "attr": {}, + "npclist": "3006_34_90018#5001_30_90018#4015_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1454": { + "npcId": 1454, + "attr": {}, + "npclist": "4008_39_90018#4014_30_90018#3013_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1455": { + "npcId": 1455, + "attr": {}, + "npclist": "3007_27_90018#4011_31_90018#2002_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1456": { + "npcId": 1456, + "attr": {}, + "npclist": "4010_27_90018#5002_31_90018#3001_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1457": { + "npcId": 1457, + "attr": {}, + "npclist": "4006_33_90018#4005_31_90018#3010_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1458": { + "npcId": 1458, + "attr": {}, + "npclist": "4010_39_90018#3010_31_90018#2001_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1459": { + "npcId": 1459, + "attr": {}, + "npclist": "3005_29_90018#4009_31_90018#3012_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1460": { + "npcId": 1460, + "attr": {}, + "npclist": "3009_26_90018#3005_31_90018#5002_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1461": { + "npcId": 1461, + "attr": {}, + "npclist": "4004_32_90018#5004_31_90018#5003_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1462": { + "npcId": 1462, + "attr": {}, + "npclist": "4011_37_90018#3008_31_90018#4015_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1463": { + "npcId": 1463, + "attr": {}, + "npclist": "3014_38_90018#3015_31_90018#4006_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1464": { + "npcId": 1464, + "attr": {}, + "npclist": "4004_40_90018#4001_31_90018#4013_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1465": { + "npcId": 1465, + "attr": {}, + "npclist": "3005_28_90018#4015_31_90018#4008_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1466": { + "npcId": 1466, + "attr": {}, + "npclist": "3010_32_90018#4007_31_90018#2001_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1467": { + "npcId": 1467, + "attr": {}, + "npclist": "4006_33_90018#4005_31_90018#3006_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1468": { + "npcId": 1468, + "attr": {}, + "npclist": "3001_28_90018#2001_31_90018#3006_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1469": { + "npcId": 1469, + "attr": {}, + "npclist": "4008_28_90018#3007_31_90018#4005_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1470": { + "npcId": 1470, + "attr": {}, + "npclist": "2002_26_90018#3005_31_90018#1002_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1471": { + "npcId": 1471, + "attr": {}, + "npclist": "3004_38_90018#3011_31_90018#3010_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1472": { + "npcId": 1472, + "attr": {}, + "npclist": "5005_33_90018#3008_31_90018#5001_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1473": { + "npcId": 1473, + "attr": {}, + "npclist": "3008_35_90018#3010_31_90018#3006_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1474": { + "npcId": 1474, + "attr": {}, + "npclist": "4015_32_90018#3010_31_90018#3007_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1475": { + "npcId": 1475, + "attr": {}, + "npclist": "2001_39_90018#3011_31_90018#4001_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1476": { + "npcId": 1476, + "attr": {}, + "npclist": "3011_29_90018#3005_31_90018#1001_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1477": { + "npcId": 1477, + "attr": {}, + "npclist": "4007_35_90018#3014_31_90018#3014_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1478": { + "npcId": 1478, + "attr": {}, + "npclist": "3002_27_90018#4014_31_90018#4004_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1479": { + "npcId": 1479, + "attr": {}, + "npclist": "4005_29_90018#5002_31_90018#1002_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1480": { + "npcId": 1480, + "attr": {}, + "npclist": "3008_29_90018#4015_31_90018#4014_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1481": { + "npcId": 1481, + "attr": {}, + "npclist": "5002_37_90018#4013_31_90018#4009_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1482": { + "npcId": 1482, + "attr": {}, + "npclist": "4010_39_90018#3001_31_90018#3012_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1483": { + "npcId": 1483, + "attr": {}, + "npclist": "3015_25_90018#4011_31_90018#4005_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1484": { + "npcId": 1484, + "attr": {}, + "npclist": "5001_36_90018#4009_31_90018#3002_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1485": { + "npcId": 1485, + "attr": {}, + "npclist": "5004_33_90018#4013_31_90018#5004_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1486": { + "npcId": 1486, + "attr": {}, + "npclist": "4002_35_90018#3013_31_90018#3004_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1487": { + "npcId": 1487, + "attr": {}, + "npclist": "5005_28_90018#4012_31_90018#3002_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1488": { + "npcId": 1488, + "attr": {}, + "npclist": "4013_37_90018#3001_31_90018#5003_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1489": { + "npcId": 1489, + "attr": {}, + "npclist": "4011_33_90018#5002_31_90018#4015_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1490": { + "npcId": 1490, + "attr": {}, + "npclist": "3005_30_90018#5005_31_90018#4011_30_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1491": { + "npcId": 1491, + "attr": {}, + "npclist": "4010_38_90018#4001_31_90018#4012_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1492": { + "npcId": 1492, + "attr": {}, + "npclist": "3002_29_90018#3014_31_90018#3013_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1493": { + "npcId": 1493, + "attr": {}, + "npclist": "3014_27_90018#3004_31_90018#5005_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1494": { + "npcId": 1494, + "attr": {}, + "npclist": "3013_35_90018#4006_31_90018#1001_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1495": { + "npcId": 1495, + "attr": {}, + "npclist": "3005_36_90018#3001_31_90018#3015_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1496": { + "npcId": 1496, + "attr": {}, + "npclist": "3005_27_90018#3014_31_90018#4009_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1497": { + "npcId": 1497, + "attr": {}, + "npclist": "5001_33_90018#3011_31_90018#4015_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1498": { + "npcId": 1498, + "attr": {}, + "npclist": "3010_37_90018#3005_31_90018#3004_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1499": { + "npcId": 1499, + "attr": {}, + "npclist": "4005_36_90018#3002_31_90018#4015_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1500": { + "npcId": 1500, + "attr": {}, + "npclist": "4002_39_90018#4004_31_90018#3004_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1501": { + "npcId": 1501, + "attr": {}, + "npclist": "5004_36_90018#3013_31_90018#2002_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1502": { + "npcId": 1502, + "attr": {}, + "npclist": "3006_37_90018#3005_31_90018#4011_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1503": { + "npcId": 1503, + "attr": {}, + "npclist": "3008_32_90018#3013_31_90018#3006_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1504": { + "npcId": 1504, + "attr": {}, + "npclist": "4002_40_90018#1001_31_90018#4002_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1505": { + "npcId": 1505, + "attr": {}, + "npclist": "3002_39_90018#4005_31_90018#4010_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1506": { + "npcId": 1506, + "attr": {}, + "npclist": "4002_28_90018#4010_31_90018#4012_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1507": { + "npcId": 1507, + "attr": {}, + "npclist": "5002_35_90018#4009_31_90018#5002_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1508": { + "npcId": 1508, + "attr": {}, + "npclist": "3004_32_90018#1002_31_90018#3010_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1509": { + "npcId": 1509, + "attr": {}, + "npclist": "5002_31_90018#4011_31_90018#1001_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1510": { + "npcId": 1510, + "attr": {}, + "npclist": "1002_25_90018#5003_31_90018#4011_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1511": { + "npcId": 1511, + "attr": {}, + "npclist": "4008_31_90018#3005_31_90018#2001_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1512": { + "npcId": 1512, + "attr": {}, + "npclist": "4007_29_90018#5005_31_90018#4007_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1513": { + "npcId": 1513, + "attr": {}, + "npclist": "4013_38_90018#3002_31_90018#3004_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1514": { + "npcId": 1514, + "attr": {}, + "npclist": "4012_35_90018#3014_31_90018#3008_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1515": { + "npcId": 1515, + "attr": {}, + "npclist": "4012_37_90018#3001_31_90018#3006_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1516": { + "npcId": 1516, + "attr": {}, + "npclist": "5002_35_90018#5003_31_90018#2002_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1517": { + "npcId": 1517, + "attr": {}, + "npclist": "4002_32_90018#5005_31_90018#4003_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1518": { + "npcId": 1518, + "attr": {}, + "npclist": "3013_32_90018#3001_31_90018#3015_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1519": { + "npcId": 1519, + "attr": {}, + "npclist": "3004_28_90018#3009_31_90018#3010_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1520": { + "npcId": 1520, + "attr": {}, + "npclist": "3006_26_90018#3013_31_90018#2001_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1521": { + "npcId": 1521, + "attr": {}, + "npclist": "3015_37_90018#4004_31_90018#4015_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1522": { + "npcId": 1522, + "attr": {}, + "npclist": "3003_29_90018#3006_31_90018#1002_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1523": { + "npcId": 1523, + "attr": {}, + "npclist": "4005_35_90018#5002_31_90018#4011_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1524": { + "npcId": 1524, + "attr": {}, + "npclist": "3005_31_90018#1001_31_90018#4004_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1525": { + "npcId": 1525, + "attr": {}, + "npclist": "4001_32_90018#5002_31_90018#3008_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1526": { + "npcId": 1526, + "attr": {}, + "npclist": "1002_35_90018#4005_31_90018#3008_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1527": { + "npcId": 1527, + "attr": {}, + "npclist": "4012_27_90018#3011_31_90018#3009_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1528": { + "npcId": 1528, + "attr": {}, + "npclist": "4013_36_90018#3001_31_90018#3010_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1529": { + "npcId": 1529, + "attr": {}, + "npclist": "4004_25_90018#4014_32_90018#2001_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1530": { + "npcId": 1530, + "attr": {}, + "npclist": "4009_25_90018#3014_32_90018#4009_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1531": { + "npcId": 1531, + "attr": {}, + "npclist": "3011_34_90018#3002_32_90018#3003_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1532": { + "npcId": 1532, + "attr": {}, + "npclist": "5005_35_90018#4006_32_90018#4011_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1533": { + "npcId": 1533, + "attr": {}, + "npclist": "4009_33_90018#4002_32_90018#4001_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1534": { + "npcId": 1534, + "attr": {}, + "npclist": "5001_26_90018#4001_32_90018#5002_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1535": { + "npcId": 1535, + "attr": {}, + "npclist": "4011_27_90018#1001_32_90018#4006_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1536": { + "npcId": 1536, + "attr": {}, + "npclist": "4006_36_90018#4002_32_90018#3011_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1537": { + "npcId": 1537, + "attr": {}, + "npclist": "4010_32_90018#5002_32_90018#4007_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1538": { + "npcId": 1538, + "attr": {}, + "npclist": "3006_31_90018#3003_32_90018#4010_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1539": { + "npcId": 1539, + "attr": {}, + "npclist": "3010_26_90018#4004_32_90018#4005_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1540": { + "npcId": 1540, + "attr": {}, + "npclist": "5002_30_90018#3011_32_90018#4010_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1541": { + "npcId": 1541, + "attr": {}, + "npclist": "3001_37_90018#1002_32_90018#5002_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1542": { + "npcId": 1542, + "attr": {}, + "npclist": "4012_39_90018#4004_32_90018#4008_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1543": { + "npcId": 1543, + "attr": {}, + "npclist": "4007_26_90018#5005_32_90018#3012_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1544": { + "npcId": 1544, + "attr": {}, + "npclist": "4008_32_90018#2001_32_90018#4009_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1545": { + "npcId": 1545, + "attr": {}, + "npclist": "2002_27_90018#1002_32_90018#4005_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1546": { + "npcId": 1546, + "attr": {}, + "npclist": "4015_32_90018#4008_32_90018#4005_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1547": { + "npcId": 1547, + "attr": {}, + "npclist": "3004_33_90018#3011_32_90018#4010_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1548": { + "npcId": 1548, + "attr": {}, + "npclist": "3014_33_90018#3008_32_90018#5005_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1549": { + "npcId": 1549, + "attr": {}, + "npclist": "4005_28_90018#4004_32_90018#3007_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1550": { + "npcId": 1550, + "attr": {}, + "npclist": "4009_32_90018#4003_32_90018#4002_31_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1551": { + "npcId": 1551, + "attr": {}, + "npclist": "3008_37_90018#3007_32_90018#4001_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1552": { + "npcId": 1552, + "attr": {}, + "npclist": "4002_32_90018#3012_32_90018#4006_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1553": { + "npcId": 1553, + "attr": {}, + "npclist": "3002_33_90018#3010_32_90018#5005_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1554": { + "npcId": 1554, + "attr": {}, + "npclist": "4005_29_90018#3005_32_90018#2001_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1555": { + "npcId": 1555, + "attr": {}, + "npclist": "3010_36_90018#4005_32_90018#4004_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1556": { + "npcId": 1556, + "attr": {}, + "npclist": "3006_29_90018#5002_32_90018#3002_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1557": { + "npcId": 1557, + "attr": {}, + "npclist": "4008_30_90018#4001_32_90018#5004_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1558": { + "npcId": 1558, + "attr": {}, + "npclist": "4004_37_90018#5003_32_90018#4010_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1559": { + "npcId": 1559, + "attr": {}, + "npclist": "4007_37_90018#5003_32_90018#3006_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1560": { + "npcId": 1560, + "attr": {}, + "npclist": "3001_34_90018#3015_32_90018#5004_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1561": { + "npcId": 1561, + "attr": {}, + "npclist": "2002_26_90018#4002_32_90018#3002_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1562": { + "npcId": 1562, + "attr": {}, + "npclist": "3013_27_90018#4012_32_90018#4013_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1563": { + "npcId": 1563, + "attr": {}, + "npclist": "1001_33_90018#4013_32_90018#3002_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1564": { + "npcId": 1564, + "attr": {}, + "npclist": "4004_34_90018#3001_32_90018#2002_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1565": { + "npcId": 1565, + "attr": {}, + "npclist": "4005_34_90018#4006_32_90018#1002_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1566": { + "npcId": 1566, + "attr": {}, + "npclist": "1001_25_90018#1002_32_90018#5004_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1567": { + "npcId": 1567, + "attr": {}, + "npclist": "3001_27_90018#4001_32_90018#4001_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1568": { + "npcId": 1568, + "attr": {}, + "npclist": "3011_31_90018#4005_32_90018#3004_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1569": { + "npcId": 1569, + "attr": {}, + "npclist": "3004_30_90018#5001_32_90018#3010_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1570": { + "npcId": 1570, + "attr": {}, + "npclist": "3007_40_90018#4008_32_90018#3009_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1571": { + "npcId": 1571, + "attr": {}, + "npclist": "5002_30_90018#4007_32_90018#4015_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1572": { + "npcId": 1572, + "attr": {}, + "npclist": "3004_36_90018#3004_32_90018#1001_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1573": { + "npcId": 1573, + "attr": {}, + "npclist": "3006_38_90018#4005_32_90018#2002_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1574": { + "npcId": 1574, + "attr": {}, + "npclist": "3009_28_90018#3015_32_90018#5003_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1575": { + "npcId": 1575, + "attr": {}, + "npclist": "4010_31_90018#4008_32_90018#3003_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1576": { + "npcId": 1576, + "attr": {}, + "npclist": "3001_25_90018#4008_32_90018#4013_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1577": { + "npcId": 1577, + "attr": {}, + "npclist": "4008_27_90018#4004_32_90018#4005_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1578": { + "npcId": 1578, + "attr": {}, + "npclist": "4004_35_90018#2002_32_90018#3013_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1579": { + "npcId": 1579, + "attr": {}, + "npclist": "3014_30_90018#3010_32_90018#3011_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1580": { + "npcId": 1580, + "attr": {}, + "npclist": "3005_26_90018#1001_32_90018#4015_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1581": { + "npcId": 1581, + "attr": {}, + "npclist": "4001_29_90018#4007_32_90018#3012_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1582": { + "npcId": 1582, + "attr": {}, + "npclist": "3014_38_90018#4005_32_90018#4007_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1583": { + "npcId": 1583, + "attr": {}, + "npclist": "3012_37_90018#5001_32_90018#3001_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1584": { + "npcId": 1584, + "attr": {}, + "npclist": "4015_28_90018#3003_32_90018#3013_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1585": { + "npcId": 1585, + "attr": {}, + "npclist": "1002_34_90018#2001_32_90018#3006_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1586": { + "npcId": 1586, + "attr": {}, + "npclist": "3004_27_90018#5004_32_90018#2002_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1587": { + "npcId": 1587, + "attr": {}, + "npclist": "4003_30_90018#3013_32_90018#1002_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1588": { + "npcId": 1588, + "attr": {}, + "npclist": "4013_33_90018#3007_32_90018#4006_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1589": { + "npcId": 1589, + "attr": {}, + "npclist": "3013_36_90018#3008_33_90018#3001_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1590": { + "npcId": 1590, + "attr": {}, + "npclist": "3007_25_90018#3001_33_90018#3011_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1591": { + "npcId": 1591, + "attr": {}, + "npclist": "3010_28_90018#4001_33_90018#4013_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1592": { + "npcId": 1592, + "attr": {}, + "npclist": "4015_25_90018#2002_33_90018#4012_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1593": { + "npcId": 1593, + "attr": {}, + "npclist": "5003_40_90018#5003_33_90018#3005_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1594": { + "npcId": 1594, + "attr": {}, + "npclist": "3007_27_90018#3001_33_90018#4015_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1595": { + "npcId": 1595, + "attr": {}, + "npclist": "3002_28_90018#4012_33_90018#4001_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1596": { + "npcId": 1596, + "attr": {}, + "npclist": "3015_39_90018#3010_33_90018#4013_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1597": { + "npcId": 1597, + "attr": {}, + "npclist": "4011_26_90018#1001_33_90018#4010_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1598": { + "npcId": 1598, + "attr": {}, + "npclist": "3014_30_90018#3007_33_90018#3003_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1599": { + "npcId": 1599, + "attr": {}, + "npclist": "3015_32_90018#3015_33_90018#3006_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1600": { + "npcId": 1600, + "attr": {}, + "npclist": "3010_40_90018#5002_33_90018#3012_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1601": { + "npcId": 1601, + "attr": {}, + "npclist": "2002_33_90018#3010_33_90018#4008_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1602": { + "npcId": 1602, + "attr": {}, + "npclist": "4013_30_90018#4011_33_90018#5003_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1603": { + "npcId": 1603, + "attr": {}, + "npclist": "3013_33_90018#3003_33_90018#4003_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1604": { + "npcId": 1604, + "attr": {}, + "npclist": "3010_38_90018#3008_33_90018#5004_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1605": { + "npcId": 1605, + "attr": {}, + "npclist": "3006_36_90018#3010_33_90018#4002_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1606": { + "npcId": 1606, + "attr": {}, + "npclist": "4010_33_90018#3001_33_90018#4007_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1607": { + "npcId": 1607, + "attr": {}, + "npclist": "4003_26_90018#3012_33_90018#5002_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1608": { + "npcId": 1608, + "attr": {}, + "npclist": "4011_35_90018#5005_33_90018#3011_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1609": { + "npcId": 1609, + "attr": {}, + "npclist": "4007_31_90018#3003_33_90018#1001_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1610": { + "npcId": 1610, + "attr": {}, + "npclist": "4006_39_90018#4008_33_90018#3009_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1611": { + "npcId": 1611, + "attr": {}, + "npclist": "4004_27_90018#4012_33_90018#3005_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1612": { + "npcId": 1612, + "attr": {}, + "npclist": "2002_37_90018#4003_33_90018#5003_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1613": { + "npcId": 1613, + "attr": {}, + "npclist": "4012_35_90018#3004_33_90018#3011_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1614": { + "npcId": 1614, + "attr": {}, + "npclist": "4010_38_90018#4001_33_90018#1001_32_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1615": { + "npcId": 1615, + "attr": {}, + "npclist": "4003_27_90018#4012_33_90018#5005_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1616": { + "npcId": 1616, + "attr": {}, + "npclist": "2001_25_90018#4011_33_90018#3008_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1617": { + "npcId": 1617, + "attr": {}, + "npclist": "5001_26_90018#3014_33_90018#4007_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1618": { + "npcId": 1618, + "attr": {}, + "npclist": "4001_35_90018#5004_33_90018#4004_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1619": { + "npcId": 1619, + "attr": {}, + "npclist": "4014_29_90018#3004_33_90018#4002_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1620": { + "npcId": 1620, + "attr": {}, + "npclist": "4015_40_90018#4003_33_90018#5004_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1621": { + "npcId": 1621, + "attr": {}, + "npclist": "4011_25_90018#3015_33_90018#4002_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1622": { + "npcId": 1622, + "attr": {}, + "npclist": "4010_25_90018#3007_33_90018#4015_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1623": { + "npcId": 1623, + "attr": {}, + "npclist": "3003_26_90018#3003_33_90018#5002_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1624": { + "npcId": 1624, + "attr": {}, + "npclist": "5001_30_90018#3005_33_90018#4007_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1625": { + "npcId": 1625, + "attr": {}, + "npclist": "4004_25_90018#4001_33_90018#4009_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1626": { + "npcId": 1626, + "attr": {}, + "npclist": "1001_27_90018#3002_33_90018#5004_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1627": { + "npcId": 1627, + "attr": {}, + "npclist": "4013_36_90018#3005_33_90018#4008_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1628": { + "npcId": 1628, + "attr": {}, + "npclist": "2002_39_90018#5001_33_90018#4009_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1629": { + "npcId": 1629, + "attr": {}, + "npclist": "3013_25_90018#4010_33_90018#4015_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1630": { + "npcId": 1630, + "attr": {}, + "npclist": "3010_39_90018#3013_33_90018#3013_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1631": { + "npcId": 1631, + "attr": {}, + "npclist": "4009_34_90018#3006_33_90018#4011_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1632": { + "npcId": 1632, + "attr": {}, + "npclist": "5004_39_90018#4005_33_90018#4015_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1633": { + "npcId": 1633, + "attr": {}, + "npclist": "4012_38_90018#4001_33_90018#2002_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1634": { + "npcId": 1634, + "attr": {}, + "npclist": "3007_35_90018#2001_33_90018#4015_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1635": { + "npcId": 1635, + "attr": {}, + "npclist": "3015_29_90018#3011_33_90018#4011_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1636": { + "npcId": 1636, + "attr": {}, + "npclist": "2002_32_90018#4011_33_90018#4001_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1637": { + "npcId": 1637, + "attr": {}, + "npclist": "4014_27_90018#5001_33_90018#4003_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1638": { + "npcId": 1638, + "attr": {}, + "npclist": "4002_25_90018#4010_33_90018#4014_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1639": { + "npcId": 1639, + "attr": {}, + "npclist": "3002_27_90018#3007_33_90018#3007_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1640": { + "npcId": 1640, + "attr": {}, + "npclist": "3010_32_90018#2002_33_90018#1001_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1641": { + "npcId": 1641, + "attr": {}, + "npclist": "3008_39_90018#3002_33_90018#4006_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1642": { + "npcId": 1642, + "attr": {}, + "npclist": "4001_30_90018#4008_33_90018#3007_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1643": { + "npcId": 1643, + "attr": {}, + "npclist": "5003_26_90018#4014_33_90018#4014_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1644": { + "npcId": 1644, + "attr": {}, + "npclist": "3015_39_90018#4004_33_90018#3004_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1645": { + "npcId": 1645, + "attr": {}, + "npclist": "5002_38_90018#4015_33_90018#3012_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1646": { + "npcId": 1646, + "attr": {}, + "npclist": "5003_40_90018#3015_33_90018#4014_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1647": { + "npcId": 1647, + "attr": {}, + "npclist": "3003_38_90018#3010_33_90018#2002_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1648": { + "npcId": 1648, + "attr": {}, + "npclist": "4013_39_90018#4001_33_90018#4006_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1649": { + "npcId": 1649, + "attr": {}, + "npclist": "3007_31_90018#2002_33_90018#3001_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1650": { + "npcId": 1650, + "attr": {}, + "npclist": "3005_34_90018#4015_33_90018#5005_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1651": { + "npcId": 1651, + "attr": {}, + "npclist": "5004_30_90018#5005_33_90018#3015_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1652": { + "npcId": 1652, + "attr": {}, + "npclist": "3014_25_90018#2002_33_90018#3014_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1653": { + "npcId": 1653, + "attr": {}, + "npclist": "3009_31_90018#3014_33_90018#3011_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1654": { + "npcId": 1654, + "attr": {}, + "npclist": "4007_31_90018#4003_33_90018#4004_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1655": { + "npcId": 1655, + "attr": {}, + "npclist": "4012_39_90018#3011_34_90018#2001_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1656": { + "npcId": 1656, + "attr": {}, + "npclist": "3014_40_90018#5005_34_90018#4003_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1657": { + "npcId": 1657, + "attr": {}, + "npclist": "4011_25_90018#3014_34_90018#3005_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1658": { + "npcId": 1658, + "attr": {}, + "npclist": "4012_37_90018#2001_34_90018#4010_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1659": { + "npcId": 1659, + "attr": {}, + "npclist": "3014_29_90018#4003_34_90018#4003_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1660": { + "npcId": 1660, + "attr": {}, + "npclist": "4009_36_90018#3002_34_90018#4009_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1661": { + "npcId": 1661, + "attr": {}, + "npclist": "2002_26_90018#3014_34_90018#3006_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1662": { + "npcId": 1662, + "attr": {}, + "npclist": "3014_32_90018#4006_34_90018#3014_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1663": { + "npcId": 1663, + "attr": {}, + "npclist": "2001_37_90018#4001_34_90018#2002_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1664": { + "npcId": 1664, + "attr": {}, + "npclist": "3014_35_90018#5001_34_90018#3005_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1665": { + "npcId": 1665, + "attr": {}, + "npclist": "4010_32_90018#4009_34_90018#3001_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1666": { + "npcId": 1666, + "attr": {}, + "npclist": "4011_39_90018#3001_34_90018#2001_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1667": { + "npcId": 1667, + "attr": {}, + "npclist": "5003_31_90018#3002_34_90018#3004_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1668": { + "npcId": 1668, + "attr": {}, + "npclist": "1002_38_90018#4003_34_90018#4015_33_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1669": { + "npcId": 1669, + "attr": {}, + "npclist": "3012_40_90018#3006_34_90018#3011_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1670": { + "npcId": 1670, + "attr": {}, + "npclist": "1001_30_90018#3004_34_90018#3002_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1671": { + "npcId": 1671, + "attr": {}, + "npclist": "3003_26_90018#3007_34_90018#4005_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1672": { + "npcId": 1672, + "attr": {}, + "npclist": "3001_25_90018#4001_34_90018#3012_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1673": { + "npcId": 1673, + "attr": {}, + "npclist": "5002_39_90018#4003_34_90018#4008_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1674": { + "npcId": 1674, + "attr": {}, + "npclist": "3009_30_90018#5004_34_90018#3014_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1675": { + "npcId": 1675, + "attr": {}, + "npclist": "2002_26_90018#3011_34_90018#4001_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1676": { + "npcId": 1676, + "attr": {}, + "npclist": "4007_32_90018#3015_34_90018#3012_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1677": { + "npcId": 1677, + "attr": {}, + "npclist": "1002_31_90018#4010_34_90018#5003_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1678": { + "npcId": 1678, + "attr": {}, + "npclist": "1001_34_90018#3008_34_90018#4013_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1679": { + "npcId": 1679, + "attr": {}, + "npclist": "4001_37_90018#3015_34_90018#4013_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1680": { + "npcId": 1680, + "attr": {}, + "npclist": "4001_28_90018#2001_34_90018#2001_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1681": { + "npcId": 1681, + "attr": {}, + "npclist": "3003_28_90018#3008_34_90018#4001_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1682": { + "npcId": 1682, + "attr": {}, + "npclist": "3006_37_90018#2002_34_90018#4001_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1683": { + "npcId": 1683, + "attr": {}, + "npclist": "5005_29_90018#4007_34_90018#3009_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1684": { + "npcId": 1684, + "attr": {}, + "npclist": "5002_38_90018#3004_34_90018#4007_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1685": { + "npcId": 1685, + "attr": {}, + "npclist": "3002_37_90018#5002_34_90018#3005_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1686": { + "npcId": 1686, + "attr": {}, + "npclist": "4004_40_90018#5005_34_90018#1001_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1687": { + "npcId": 1687, + "attr": {}, + "npclist": "3013_26_90018#3015_34_90018#4010_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1688": { + "npcId": 1688, + "attr": {}, + "npclist": "3013_29_90018#2001_34_90018#4001_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1689": { + "npcId": 1689, + "attr": {}, + "npclist": "3005_37_90018#4008_34_90018#1001_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1690": { + "npcId": 1690, + "attr": {}, + "npclist": "3007_29_90018#4007_34_90018#3005_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1691": { + "npcId": 1691, + "attr": {}, + "npclist": "3013_33_90018#3009_34_90018#4007_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1692": { + "npcId": 1692, + "attr": {}, + "npclist": "3013_30_90018#4003_34_90018#4007_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1693": { + "npcId": 1693, + "attr": {}, + "npclist": "3002_38_90018#3013_34_90018#3010_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1694": { + "npcId": 1694, + "attr": {}, + "npclist": "3011_26_90018#5001_34_90018#4013_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1695": { + "npcId": 1695, + "attr": {}, + "npclist": "3010_39_90018#3014_34_90018#1001_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1696": { + "npcId": 1696, + "attr": {}, + "npclist": "5002_35_90018#5005_34_90018#3003_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1697": { + "npcId": 1697, + "attr": {}, + "npclist": "3012_37_90018#4004_34_90018#4003_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1698": { + "npcId": 1698, + "attr": {}, + "npclist": "4011_31_90018#1001_34_90018#4006_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1699": { + "npcId": 1699, + "attr": {}, + "npclist": "4002_34_90018#3013_34_90018#3010_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1700": { + "npcId": 1700, + "attr": {}, + "npclist": "5004_34_90018#4008_34_90018#2001_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1701": { + "npcId": 1701, + "attr": {}, + "npclist": "4014_25_90018#5005_34_90018#2002_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1702": { + "npcId": 1702, + "attr": {}, + "npclist": "4013_39_90018#3002_34_90018#4013_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1703": { + "npcId": 1703, + "attr": {}, + "npclist": "3005_28_90018#5001_34_90018#3004_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1704": { + "npcId": 1704, + "attr": {}, + "npclist": "4010_29_90018#4008_34_90018#4006_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1705": { + "npcId": 1705, + "attr": {}, + "npclist": "4001_32_90018#5004_34_90018#5001_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1706": { + "npcId": 1706, + "attr": {}, + "npclist": "3013_36_90018#5005_34_90018#2002_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1707": { + "npcId": 1707, + "attr": {}, + "npclist": "3004_39_90018#4015_34_90018#4004_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1708": { + "npcId": 1708, + "attr": {}, + "npclist": "3013_32_90018#1001_34_90018#4001_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1709": { + "npcId": 1709, + "attr": {}, + "npclist": "4015_30_90018#3009_35_90018#2002_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1710": { + "npcId": 1710, + "attr": {}, + "npclist": "3004_30_90018#3003_35_90018#4013_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1711": { + "npcId": 1711, + "attr": {}, + "npclist": "5002_29_90018#4010_35_90018#3011_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1712": { + "npcId": 1712, + "attr": {}, + "npclist": "4013_29_90018#3014_35_90018#4008_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1713": { + "npcId": 1713, + "attr": {}, + "npclist": "3004_40_90018#4004_35_90018#4007_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1714": { + "npcId": 1714, + "attr": {}, + "npclist": "2002_26_90018#5001_35_90018#4011_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1715": { + "npcId": 1715, + "attr": {}, + "npclist": "4012_28_90018#4004_35_90018#4008_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1716": { + "npcId": 1716, + "attr": {}, + "npclist": "5004_40_90018#5003_35_90018#4007_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1717": { + "npcId": 1717, + "attr": {}, + "npclist": "3011_40_90018#3012_35_90018#4003_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1718": { + "npcId": 1718, + "attr": {}, + "npclist": "4010_28_90018#3009_35_90018#1002_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1719": { + "npcId": 1719, + "attr": {}, + "npclist": "3005_27_90018#2001_35_90018#3013_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1720": { + "npcId": 1720, + "attr": {}, + "npclist": "3010_33_90018#4015_35_90018#3008_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1721": { + "npcId": 1721, + "attr": {}, + "npclist": "3013_32_90018#3015_35_90018#3006_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1722": { + "npcId": 1722, + "attr": {}, + "npclist": "3006_30_90018#1002_35_90018#4013_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1723": { + "npcId": 1723, + "attr": {}, + "npclist": "3001_28_90018#4011_35_90018#3013_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1724": { + "npcId": 1724, + "attr": {}, + "npclist": "4001_40_90018#5003_35_90018#1001_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1725": { + "npcId": 1725, + "attr": {}, + "npclist": "5005_27_90018#3012_35_90018#1001_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1726": { + "npcId": 1726, + "attr": {}, + "npclist": "5001_28_90018#4008_35_90018#3010_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1727": { + "npcId": 1727, + "attr": {}, + "npclist": "4013_28_90018#4009_35_90018#3002_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1728": { + "npcId": 1728, + "attr": {}, + "npclist": "3013_40_90018#4006_35_90018#1001_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1729": { + "npcId": 1729, + "attr": {}, + "npclist": "1002_27_90018#3001_35_90018#4001_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1730": { + "npcId": 1730, + "attr": {}, + "npclist": "3012_36_90018#5005_35_90018#4009_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1731": { + "npcId": 1731, + "attr": {}, + "npclist": "3010_35_90018#4001_35_90018#4012_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1732": { + "npcId": 1732, + "attr": {}, + "npclist": "1001_27_90018#4004_35_90018#4009_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1733": { + "npcId": 1733, + "attr": {}, + "npclist": "3003_29_90018#3005_35_90018#2001_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1734": { + "npcId": 1734, + "attr": {}, + "npclist": "3009_39_90018#3012_35_90018#3003_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1735": { + "npcId": 1735, + "attr": {}, + "npclist": "3005_34_90018#4005_35_90018#4005_34_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1736": { + "npcId": 1736, + "attr": {}, + "npclist": "3009_36_90018#3012_35_90018#4008_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1737": { + "npcId": 1737, + "attr": {}, + "npclist": "2002_25_90018#5002_35_90018#5001_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1738": { + "npcId": 1738, + "attr": {}, + "npclist": "1002_40_90018#4011_35_90018#5003_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1739": { + "npcId": 1739, + "attr": {}, + "npclist": "4003_36_90018#3010_35_90018#3006_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1740": { + "npcId": 1740, + "attr": {}, + "npclist": "3009_36_90018#4001_35_90018#2002_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1741": { + "npcId": 1741, + "attr": {}, + "npclist": "5001_25_90018#3012_35_90018#4009_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1742": { + "npcId": 1742, + "attr": {}, + "npclist": "3002_35_90018#1002_35_90018#1001_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1743": { + "npcId": 1743, + "attr": {}, + "npclist": "3003_33_90018#4002_35_90018#4008_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1744": { + "npcId": 1744, + "attr": {}, + "npclist": "2001_36_90018#3005_35_90018#4013_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1745": { + "npcId": 1745, + "attr": {}, + "npclist": "3004_38_90018#1002_35_90018#5002_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1746": { + "npcId": 1746, + "attr": {}, + "npclist": "3015_31_90018#4014_35_90018#3001_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1747": { + "npcId": 1747, + "attr": {}, + "npclist": "3004_34_90018#3009_35_90018#4006_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1748": { + "npcId": 1748, + "attr": {}, + "npclist": "4001_27_90018#4015_35_90018#3013_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1749": { + "npcId": 1749, + "attr": {}, + "npclist": "3003_27_90018#4014_35_90018#4010_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1750": { + "npcId": 1750, + "attr": {}, + "npclist": "3004_37_90018#3007_35_90018#5003_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1751": { + "npcId": 1751, + "attr": {}, + "npclist": "3013_30_90018#4004_35_90018#3006_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1752": { + "npcId": 1752, + "attr": {}, + "npclist": "4010_35_90018#4011_35_90018#3003_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1753": { + "npcId": 1753, + "attr": {}, + "npclist": "3015_30_90018#4013_35_90018#3008_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1754": { + "npcId": 1754, + "attr": {}, + "npclist": "4014_37_90018#4008_35_90018#4012_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1755": { + "npcId": 1755, + "attr": {}, + "npclist": "5003_31_90018#3003_35_90018#5005_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1756": { + "npcId": 1756, + "attr": {}, + "npclist": "3005_36_90018#4010_35_90018#3007_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1757": { + "npcId": 1757, + "attr": {}, + "npclist": "5002_40_90018#4010_35_90018#4011_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1758": { + "npcId": 1758, + "attr": {}, + "npclist": "4004_38_90018#4010_35_90018#3011_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1759": { + "npcId": 1759, + "attr": {}, + "npclist": "3004_35_90018#4005_35_90018#1002_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1760": { + "npcId": 1760, + "attr": {}, + "npclist": "3010_26_90018#4001_35_90018#4015_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1761": { + "npcId": 1761, + "attr": {}, + "npclist": "3015_38_90018#4006_35_90018#4013_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1762": { + "npcId": 1762, + "attr": {}, + "npclist": "4015_39_90018#3010_35_90018#3004_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1763": { + "npcId": 1763, + "attr": {}, + "npclist": "3006_29_90018#3007_35_90018#2002_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1764": { + "npcId": 1764, + "attr": {}, + "npclist": "1002_35_90018#1002_35_90018#3002_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1765": { + "npcId": 1765, + "attr": {}, + "npclist": "4009_33_90018#5002_35_90018#3005_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1766": { + "npcId": 1766, + "attr": {}, + "npclist": "3010_26_90018#3002_35_90018#5004_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1767": { + "npcId": 1767, + "attr": {}, + "npclist": "4007_29_90018#4009_35_90018#3003_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1768": { + "npcId": 1768, + "attr": {}, + "npclist": "4007_32_90018#4012_35_90018#3004_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1769": { + "npcId": 1769, + "attr": {}, + "npclist": "3014_27_90018#4002_35_90018#4007_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1770": { + "npcId": 1770, + "attr": {}, + "npclist": "3010_25_90018#5001_36_90018#2002_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1771": { + "npcId": 1771, + "attr": {}, + "npclist": "3011_37_90018#4012_36_90018#4007_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1772": { + "npcId": 1772, + "attr": {}, + "npclist": "1002_32_90018#4004_36_90018#5002_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1773": { + "npcId": 1773, + "attr": {}, + "npclist": "4008_39_90018#3006_36_90018#2001_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1774": { + "npcId": 1774, + "attr": {}, + "npclist": "3008_32_90018#3001_36_90018#3006_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1775": { + "npcId": 1775, + "attr": {}, + "npclist": "3014_31_90018#1001_36_90018#5003_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1776": { + "npcId": 1776, + "attr": {}, + "npclist": "1001_32_90018#3010_36_90018#5001_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1777": { + "npcId": 1777, + "attr": {}, + "npclist": "4002_40_90018#3001_36_90018#3006_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1778": { + "npcId": 1778, + "attr": {}, + "npclist": "3003_40_90018#4003_36_90018#5005_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1779": { + "npcId": 1779, + "attr": {}, + "npclist": "3011_25_90018#5002_36_90018#1001_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1780": { + "npcId": 1780, + "attr": {}, + "npclist": "4007_27_90018#4008_36_90018#1002_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1781": { + "npcId": 1781, + "attr": {}, + "npclist": "3013_38_90018#3013_36_90018#4009_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1782": { + "npcId": 1782, + "attr": {}, + "npclist": "5005_40_90018#4002_36_90018#1002_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1783": { + "npcId": 1783, + "attr": {}, + "npclist": "3012_37_90018#1002_36_90018#3015_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1784": { + "npcId": 1784, + "attr": {}, + "npclist": "4012_33_90018#4010_36_90018#3003_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1785": { + "npcId": 1785, + "attr": {}, + "npclist": "3014_29_90018#4007_36_90018#5003_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1786": { + "npcId": 1786, + "attr": {}, + "npclist": "4010_31_90018#3013_36_90018#5002_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1787": { + "npcId": 1787, + "attr": {}, + "npclist": "5005_27_90018#2001_36_90018#3013_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1788": { + "npcId": 1788, + "attr": {}, + "npclist": "4008_25_90018#5001_36_90018#3001_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1789": { + "npcId": 1789, + "attr": {}, + "npclist": "4014_36_90018#1002_36_90018#4001_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1790": { + "npcId": 1790, + "attr": {}, + "npclist": "4007_33_90018#5005_36_90018#3006_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1791": { + "npcId": 1791, + "attr": {}, + "npclist": "4006_25_90018#3011_36_90018#5003_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1792": { + "npcId": 1792, + "attr": {}, + "npclist": "3002_26_90018#3014_36_90018#4012_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1793": { + "npcId": 1793, + "attr": {}, + "npclist": "4013_36_90018#4009_36_90018#2002_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1794": { + "npcId": 1794, + "attr": {}, + "npclist": "4012_30_90018#3009_36_90018#5001_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1795": { + "npcId": 1795, + "attr": {}, + "npclist": "3004_31_90018#3004_36_90018#3011_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1796": { + "npcId": 1796, + "attr": {}, + "npclist": "4007_32_90018#5005_36_90018#4011_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1797": { + "npcId": 1797, + "attr": {}, + "npclist": "5003_33_90018#3011_36_90018#5003_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1798": { + "npcId": 1798, + "attr": {}, + "npclist": "3003_29_90018#4009_36_90018#4015_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1799": { + "npcId": 1799, + "attr": {}, + "npclist": "4004_26_90018#4003_36_90018#3012_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1800": { + "npcId": 1800, + "attr": {}, + "npclist": "4011_38_90018#4014_36_90018#4015_35_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1801": { + "npcId": 1801, + "attr": {}, + "npclist": "4015_35_90018#5001_36_90018#4014_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1802": { + "npcId": 1802, + "attr": {}, + "npclist": "4009_29_90018#4001_36_90018#4007_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1803": { + "npcId": 1803, + "attr": {}, + "npclist": "4008_33_90018#5004_36_90018#4003_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1804": { + "npcId": 1804, + "attr": {}, + "npclist": "4002_38_90018#5002_36_90018#3010_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1805": { + "npcId": 1805, + "attr": {}, + "npclist": "4002_36_90018#3001_36_90018#5001_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1806": { + "npcId": 1806, + "attr": {}, + "npclist": "5002_40_90018#2001_36_90018#4006_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1807": { + "npcId": 1807, + "attr": {}, + "npclist": "3008_35_90018#2001_36_90018#3009_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1808": { + "npcId": 1808, + "attr": {}, + "npclist": "4008_25_90018#3013_36_90018#3008_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1809": { + "npcId": 1809, + "attr": {}, + "npclist": "3011_34_90018#4011_36_90018#3001_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1810": { + "npcId": 1810, + "attr": {}, + "npclist": "3009_39_90018#3014_36_90018#1002_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1811": { + "npcId": 1811, + "attr": {}, + "npclist": "1002_25_90018#4015_36_90018#4013_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1812": { + "npcId": 1812, + "attr": {}, + "npclist": "3001_28_90018#4004_36_90018#3012_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1813": { + "npcId": 1813, + "attr": {}, + "npclist": "4006_38_90018#4015_36_90018#1002_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1814": { + "npcId": 1814, + "attr": {}, + "npclist": "4014_35_90018#3001_36_90018#4009_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1815": { + "npcId": 1815, + "attr": {}, + "npclist": "3003_28_90018#3012_36_90018#4015_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1816": { + "npcId": 1816, + "attr": {}, + "npclist": "4004_26_90018#3014_36_90018#4013_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1817": { + "npcId": 1817, + "attr": {}, + "npclist": "3004_30_90018#4005_36_90018#3001_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1818": { + "npcId": 1818, + "attr": {}, + "npclist": "3009_25_90018#4006_36_90018#3010_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1819": { + "npcId": 1819, + "attr": {}, + "npclist": "3004_25_90018#3004_36_90018#3002_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1820": { + "npcId": 1820, + "attr": {}, + "npclist": "4010_37_90018#3002_36_90018#3009_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1821": { + "npcId": 1821, + "attr": {}, + "npclist": "3012_28_90018#1001_36_90018#3006_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1822": { + "npcId": 1822, + "attr": {}, + "npclist": "4015_31_90018#3004_36_90018#3011_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1823": { + "npcId": 1823, + "attr": {}, + "npclist": "3011_34_90018#2001_36_90018#3009_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1824": { + "npcId": 1824, + "attr": {}, + "npclist": "4001_27_90018#3012_36_90018#4005_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1825": { + "npcId": 1825, + "attr": {}, + "npclist": "3015_34_90018#4007_36_90018#3007_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1826": { + "npcId": 1826, + "attr": {}, + "npclist": "4009_32_90018#3010_36_90018#3004_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1827": { + "npcId": 1827, + "attr": {}, + "npclist": "1002_40_90018#4002_36_90018#3004_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1828": { + "npcId": 1828, + "attr": {}, + "npclist": "5002_34_90018#3002_36_90018#4006_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1829": { + "npcId": 1829, + "attr": {}, + "npclist": "3015_25_90018#1001_36_90018#4011_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1830": { + "npcId": 1830, + "attr": {}, + "npclist": "5004_27_90018#4001_36_90018#4011_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1831": { + "npcId": 1831, + "attr": {}, + "npclist": "4014_30_90018#5005_36_90018#4002_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1832": { + "npcId": 1832, + "attr": {}, + "npclist": "3007_33_90018#3011_36_90018#4003_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1833": { + "npcId": 1833, + "attr": {}, + "npclist": "4011_30_90018#3015_36_90018#3012_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1834": { + "npcId": 1834, + "attr": {}, + "npclist": "5004_34_90018#5005_36_90018#2001_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1835": { + "npcId": 1835, + "attr": {}, + "npclist": "4002_40_90018#3005_36_90018#4007_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1836": { + "npcId": 1836, + "attr": {}, + "npclist": "4007_37_90018#3003_36_90018#4004_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1837": { + "npcId": 1837, + "attr": {}, + "npclist": "3004_34_90018#3015_36_90018#1001_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1838": { + "npcId": 1838, + "attr": {}, + "npclist": "4013_30_90018#4002_36_90018#3015_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1839": { + "npcId": 1839, + "attr": {}, + "npclist": "4005_32_90018#5004_36_90018#3011_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1840": { + "npcId": 1840, + "attr": {}, + "npclist": "4015_31_90018#3002_37_90018#4009_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1841": { + "npcId": 1841, + "attr": {}, + "npclist": "3005_32_90018#3009_37_90018#4006_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1842": { + "npcId": 1842, + "attr": {}, + "npclist": "3006_39_90018#4010_37_90018#3014_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1843": { + "npcId": 1843, + "attr": {}, + "npclist": "5003_36_90018#5002_37_90018#3014_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1844": { + "npcId": 1844, + "attr": {}, + "npclist": "4012_29_90018#3002_37_90018#5001_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1845": { + "npcId": 1845, + "attr": {}, + "npclist": "3011_26_90018#4014_37_90018#5004_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1846": { + "npcId": 1846, + "attr": {}, + "npclist": "5005_33_90018#5004_37_90018#4015_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1847": { + "npcId": 1847, + "attr": {}, + "npclist": "4001_37_90018#4007_37_90018#3009_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1848": { + "npcId": 1848, + "attr": {}, + "npclist": "3006_36_90018#4004_37_90018#4015_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1849": { + "npcId": 1849, + "attr": {}, + "npclist": "4011_25_90018#2002_37_90018#3003_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1850": { + "npcId": 1850, + "attr": {}, + "npclist": "4006_26_90018#1002_37_90018#4011_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1851": { + "npcId": 1851, + "attr": {}, + "npclist": "4005_32_90018#3013_37_90018#4008_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1852": { + "npcId": 1852, + "attr": {}, + "npclist": "5003_34_90018#5001_37_90018#4008_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1853": { + "npcId": 1853, + "attr": {}, + "npclist": "3012_29_90018#4015_37_90018#2002_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1854": { + "npcId": 1854, + "attr": {}, + "npclist": "4005_40_90018#3009_37_90018#3005_36_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1855": { + "npcId": 1855, + "attr": {}, + "npclist": "4010_37_90018#4008_37_90018#4009_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1856": { + "npcId": 1856, + "attr": {}, + "npclist": "4002_36_90018#5003_37_90018#4003_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1857": { + "npcId": 1857, + "attr": {}, + "npclist": "4013_39_90018#2001_37_90018#3009_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1858": { + "npcId": 1858, + "attr": {}, + "npclist": "2002_33_90018#3010_37_90018#1001_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1859": { + "npcId": 1859, + "attr": {}, + "npclist": "4009_27_90018#3006_37_90018#3001_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1860": { + "npcId": 1860, + "attr": {}, + "npclist": "4010_31_90018#4014_37_90018#3002_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1861": { + "npcId": 1861, + "attr": {}, + "npclist": "4004_38_90018#1002_37_90018#4009_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1862": { + "npcId": 1862, + "attr": {}, + "npclist": "4014_38_90018#1002_37_90018#5002_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1863": { + "npcId": 1863, + "attr": {}, + "npclist": "4007_34_90018#4001_37_90018#2001_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1864": { + "npcId": 1864, + "attr": {}, + "npclist": "4003_39_90018#4001_37_90018#5003_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1865": { + "npcId": 1865, + "attr": {}, + "npclist": "3007_31_90018#5004_37_90018#3015_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1866": { + "npcId": 1866, + "attr": {}, + "npclist": "1002_30_90018#4006_37_90018#4010_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1867": { + "npcId": 1867, + "attr": {}, + "npclist": "5003_28_90018#4001_37_90018#2002_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1868": { + "npcId": 1868, + "attr": {}, + "npclist": "3008_35_90018#3004_37_90018#4010_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1869": { + "npcId": 1869, + "attr": {}, + "npclist": "4004_35_90018#1001_37_90018#3009_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1870": { + "npcId": 1870, + "attr": {}, + "npclist": "2001_25_90018#3009_37_90018#4003_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1871": { + "npcId": 1871, + "attr": {}, + "npclist": "5004_27_90018#3014_37_90018#4006_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1872": { + "npcId": 1872, + "attr": {}, + "npclist": "1001_31_90018#3014_37_90018#4014_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1873": { + "npcId": 1873, + "attr": {}, + "npclist": "3014_27_90018#4015_37_90018#3001_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1874": { + "npcId": 1874, + "attr": {}, + "npclist": "3003_35_90018#5005_37_90018#3002_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1875": { + "npcId": 1875, + "attr": {}, + "npclist": "3014_39_90018#3014_37_90018#1001_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1876": { + "npcId": 1876, + "attr": {}, + "npclist": "1002_36_90018#3009_37_90018#4013_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1877": { + "npcId": 1877, + "attr": {}, + "npclist": "4004_26_90018#3010_37_90018#4011_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1878": { + "npcId": 1878, + "attr": {}, + "npclist": "5003_40_90018#3002_37_90018#5005_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1879": { + "npcId": 1879, + "attr": {}, + "npclist": "5002_34_90018#4007_37_90018#4003_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1880": { + "npcId": 1880, + "attr": {}, + "npclist": "1002_34_90018#3002_37_90018#3003_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1881": { + "npcId": 1881, + "attr": {}, + "npclist": "4005_31_90018#2002_37_90018#1001_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1882": { + "npcId": 1882, + "attr": {}, + "npclist": "3002_29_90018#4006_37_90018#3015_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1883": { + "npcId": 1883, + "attr": {}, + "npclist": "3004_32_90018#4012_37_90018#3001_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1884": { + "npcId": 1884, + "attr": {}, + "npclist": "3005_37_90018#3010_37_90018#5002_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1885": { + "npcId": 1885, + "attr": {}, + "npclist": "4014_32_90018#4004_37_90018#3003_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1886": { + "npcId": 1886, + "attr": {}, + "npclist": "4006_38_90018#2001_37_90018#3004_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1887": { + "npcId": 1887, + "attr": {}, + "npclist": "4004_34_90018#5003_37_90018#2002_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1888": { + "npcId": 1888, + "attr": {}, + "npclist": "3004_26_90018#2001_37_90018#2001_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1889": { + "npcId": 1889, + "attr": {}, + "npclist": "3005_36_90018#5005_37_90018#4003_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1890": { + "npcId": 1890, + "attr": {}, + "npclist": "4009_35_90018#4004_37_90018#3008_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1891": { + "npcId": 1891, + "attr": {}, + "npclist": "3004_39_90018#5004_37_90018#3007_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1892": { + "npcId": 1892, + "attr": {}, + "npclist": "3014_27_90018#3005_37_90018#5003_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1893": { + "npcId": 1893, + "attr": {}, + "npclist": "3008_38_90018#5003_37_90018#1002_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1894": { + "npcId": 1894, + "attr": {}, + "npclist": "5004_26_90018#4001_37_90018#3002_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1895": { + "npcId": 1895, + "attr": {}, + "npclist": "3009_27_90018#4010_37_90018#4001_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1896": { + "npcId": 1896, + "attr": {}, + "npclist": "3012_27_90018#4005_37_90018#4004_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1897": { + "npcId": 1897, + "attr": {}, + "npclist": "3002_36_90018#4003_37_90018#3002_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1898": { + "npcId": 1898, + "attr": {}, + "npclist": "1002_32_90018#3004_37_90018#3003_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1899": { + "npcId": 1899, + "attr": {}, + "npclist": "3010_35_90018#3012_37_90018#3008_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1900": { + "npcId": 1900, + "attr": {}, + "npclist": "2001_29_90018#3013_38_90018#3015_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1901": { + "npcId": 1901, + "attr": {}, + "npclist": "4009_27_90018#3008_38_90018#4010_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1902": { + "npcId": 1902, + "attr": {}, + "npclist": "3001_33_90018#3014_38_90018#3006_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1903": { + "npcId": 1903, + "attr": {}, + "npclist": "3007_25_90018#4004_38_90018#4008_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1904": { + "npcId": 1904, + "attr": {}, + "npclist": "3011_37_90018#4003_38_90018#4001_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1905": { + "npcId": 1905, + "attr": {}, + "npclist": "4012_37_90018#3002_38_90018#5001_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1906": { + "npcId": 1906, + "attr": {}, + "npclist": "4001_33_90018#5004_38_90018#4002_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1907": { + "npcId": 1907, + "attr": {}, + "npclist": "4008_33_90018#2001_38_90018#4005_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1908": { + "npcId": 1908, + "attr": {}, + "npclist": "3011_30_90018#5002_38_90018#1002_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1909": { + "npcId": 1909, + "attr": {}, + "npclist": "4005_39_90018#3003_38_90018#3009_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1910": { + "npcId": 1910, + "attr": {}, + "npclist": "3005_31_90018#3008_38_90018#5002_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1911": { + "npcId": 1911, + "attr": {}, + "npclist": "3001_31_90018#4007_38_90018#4011_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1912": { + "npcId": 1912, + "attr": {}, + "npclist": "3005_28_90018#4004_38_90018#4006_37_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1913": { + "npcId": 1913, + "attr": {}, + "npclist": "5002_28_90018#4002_38_90018#5001_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1914": { + "npcId": 1914, + "attr": {}, + "npclist": "5002_34_90018#3014_38_90018#3007_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1915": { + "npcId": 1915, + "attr": {}, + "npclist": "4012_35_90018#3015_38_90018#4009_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1916": { + "npcId": 1916, + "attr": {}, + "npclist": "4011_30_90018#1001_38_90018#3006_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1917": { + "npcId": 1917, + "attr": {}, + "npclist": "4005_38_90018#2002_38_90018#4014_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1918": { + "npcId": 1918, + "attr": {}, + "npclist": "4007_34_90018#4008_38_90018#4015_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1919": { + "npcId": 1919, + "attr": {}, + "npclist": "1002_29_90018#5001_38_90018#3002_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1920": { + "npcId": 1920, + "attr": {}, + "npclist": "4008_38_90018#4015_38_90018#4003_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1921": { + "npcId": 1921, + "attr": {}, + "npclist": "3012_39_90018#4012_38_90018#1001_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1922": { + "npcId": 1922, + "attr": {}, + "npclist": "4014_34_90018#4002_38_90018#4013_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1923": { + "npcId": 1923, + "attr": {}, + "npclist": "4003_36_90018#4005_38_90018#3003_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1924": { + "npcId": 1924, + "attr": {}, + "npclist": "4007_31_90018#4003_38_90018#3004_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1925": { + "npcId": 1925, + "attr": {}, + "npclist": "3003_33_90018#4015_38_90018#3007_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1926": { + "npcId": 1926, + "attr": {}, + "npclist": "5001_26_90018#3013_38_90018#3003_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1927": { + "npcId": 1927, + "attr": {}, + "npclist": "3010_30_90018#3011_38_90018#3007_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1928": { + "npcId": 1928, + "attr": {}, + "npclist": "4008_33_90018#3007_38_90018#4008_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1929": { + "npcId": 1929, + "attr": {}, + "npclist": "4012_27_90018#4011_38_90018#3007_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1930": { + "npcId": 1930, + "attr": {}, + "npclist": "4006_27_90018#1002_38_90018#4008_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1931": { + "npcId": 1931, + "attr": {}, + "npclist": "5003_35_90018#4001_38_90018#3012_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1932": { + "npcId": 1932, + "attr": {}, + "npclist": "2001_39_90018#3015_38_90018#4007_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1933": { + "npcId": 1933, + "attr": {}, + "npclist": "3007_34_90018#5003_38_90018#3005_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1934": { + "npcId": 1934, + "attr": {}, + "npclist": "3010_33_90018#3011_38_90018#3002_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1935": { + "npcId": 1935, + "attr": {}, + "npclist": "3005_39_90018#2001_38_90018#4004_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1936": { + "npcId": 1936, + "attr": {}, + "npclist": "1002_37_90018#4006_38_90018#3005_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1937": { + "npcId": 1937, + "attr": {}, + "npclist": "4011_40_90018#4003_38_90018#3002_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1938": { + "npcId": 1938, + "attr": {}, + "npclist": "3015_32_90018#5003_38_90018#5001_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1939": { + "npcId": 1939, + "attr": {}, + "npclist": "4009_39_90018#5002_38_90018#3002_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1940": { + "npcId": 1940, + "attr": {}, + "npclist": "4005_32_90018#4013_38_90018#4008_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1941": { + "npcId": 1941, + "attr": {}, + "npclist": "4006_40_90018#4002_38_90018#2001_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1942": { + "npcId": 1942, + "attr": {}, + "npclist": "4014_31_90018#4001_38_90018#4012_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1943": { + "npcId": 1943, + "attr": {}, + "npclist": "3008_36_90018#5002_38_90018#2002_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1944": { + "npcId": 1944, + "attr": {}, + "npclist": "3002_28_90018#3011_38_90018#3011_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1945": { + "npcId": 1945, + "attr": {}, + "npclist": "3014_32_90018#3003_38_90018#4010_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1946": { + "npcId": 1946, + "attr": {}, + "npclist": "1001_30_90018#3008_38_90018#4005_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1947": { + "npcId": 1947, + "attr": {}, + "npclist": "3015_34_90018#1001_38_90018#3015_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1948": { + "npcId": 1948, + "attr": {}, + "npclist": "3009_28_90018#4013_38_90018#4009_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1949": { + "npcId": 1949, + "attr": {}, + "npclist": "4013_25_90018#5004_38_90018#3013_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1950": { + "npcId": 1950, + "attr": {}, + "npclist": "2001_26_90018#5004_38_90018#4011_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1951": { + "npcId": 1951, + "attr": {}, + "npclist": "4015_27_90018#1002_38_90018#4001_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1952": { + "npcId": 1952, + "attr": {}, + "npclist": "4010_39_90018#3004_38_90018#5005_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1953": { + "npcId": 1953, + "attr": {}, + "npclist": "1002_40_90018#4004_38_90018#4014_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1954": { + "npcId": 1954, + "attr": {}, + "npclist": "3015_35_90018#4002_38_90018#4002_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1955": { + "npcId": 1955, + "attr": {}, + "npclist": "3004_26_90018#1001_38_90018#4009_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1956": { + "npcId": 1956, + "attr": {}, + "npclist": "4007_25_90018#5004_38_90018#4003_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1957": { + "npcId": 1957, + "attr": {}, + "npclist": "3009_30_90018#5005_38_90018#3013_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1958": { + "npcId": 1958, + "attr": {}, + "npclist": "4003_35_90018#3009_38_90018#4014_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1959": { + "npcId": 1959, + "attr": {}, + "npclist": "4008_31_90018#3002_38_90018#4009_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1960": { + "npcId": 1960, + "attr": {}, + "npclist": "2002_35_90018#3014_38_90018#4005_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1961": { + "npcId": 1961, + "attr": {}, + "npclist": "4006_40_90018#5004_38_90018#3009_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1962": { + "npcId": 1962, + "attr": {}, + "npclist": "3002_37_90018#3012_38_90018#5004_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1963": { + "npcId": 1963, + "attr": {}, + "npclist": "4003_40_90018#5005_38_90018#4010_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1964": { + "npcId": 1964, + "attr": {}, + "npclist": "4010_32_90018#2001_39_90018#4010_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1965": { + "npcId": 1965, + "attr": {}, + "npclist": "3014_34_90018#4015_39_90018#4002_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1966": { + "npcId": 1966, + "attr": {}, + "npclist": "3009_34_90018#5003_39_90018#4013_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1967": { + "npcId": 1967, + "attr": {}, + "npclist": "3007_31_90018#4007_39_90018#4012_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1968": { + "npcId": 1968, + "attr": {}, + "npclist": "3010_30_90018#4013_39_90018#3004_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1969": { + "npcId": 1969, + "attr": {}, + "npclist": "3011_33_90018#4005_39_90018#3007_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1970": { + "npcId": 1970, + "attr": {}, + "npclist": "1002_37_90018#4013_39_90018#4002_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1971": { + "npcId": 1971, + "attr": {}, + "npclist": "1002_35_90018#4010_39_90018#3013_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1972": { + "npcId": 1972, + "attr": {}, + "npclist": "4001_27_90018#3004_39_90018#4001_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1973": { + "npcId": 1973, + "attr": {}, + "npclist": "3013_37_90018#4006_39_90018#3009_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1974": { + "npcId": 1974, + "attr": {}, + "npclist": "2002_34_90018#4005_39_90018#4003_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1975": { + "npcId": 1975, + "attr": {}, + "npclist": "5002_29_90018#2001_39_90018#4007_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1976": { + "npcId": 1976, + "attr": {}, + "npclist": "4015_35_90018#3006_39_90018#2002_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1977": { + "npcId": 1977, + "attr": {}, + "npclist": "5001_28_90018#4008_39_90018#4005_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1978": { + "npcId": 1978, + "attr": {}, + "npclist": "5004_39_90018#4012_39_90018#5002_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1979": { + "npcId": 1979, + "attr": {}, + "npclist": "3007_34_90018#3003_39_90018#3009_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1980": { + "npcId": 1980, + "attr": {}, + "npclist": "5004_32_90018#4013_39_90018#4006_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1981": { + "npcId": 1981, + "attr": {}, + "npclist": "3002_37_90018#5001_39_90018#3013_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1982": { + "npcId": 1982, + "attr": {}, + "npclist": "4004_29_90018#3013_39_90018#4005_38_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1983": { + "npcId": 1983, + "attr": {}, + "npclist": "3004_32_90018#4007_39_90018#4012_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1984": { + "npcId": 1984, + "attr": {}, + "npclist": "4002_38_90018#4013_39_90018#3005_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1985": { + "npcId": 1985, + "attr": {}, + "npclist": "3007_31_90018#3012_39_90018#5005_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1986": { + "npcId": 1986, + "attr": {}, + "npclist": "3002_32_90018#3015_39_90018#3014_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1987": { + "npcId": 1987, + "attr": {}, + "npclist": "5005_27_90018#4001_39_90018#4010_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1988": { + "npcId": 1988, + "attr": {}, + "npclist": "5001_39_90018#4004_39_90018#3013_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1989": { + "npcId": 1989, + "attr": {}, + "npclist": "3006_32_90018#3006_39_90018#5005_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1990": { + "npcId": 1990, + "attr": {}, + "npclist": "3007_33_90018#5001_39_90018#3009_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1991": { + "npcId": 1991, + "attr": {}, + "npclist": "4005_37_90018#5005_39_90018#4004_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1992": { + "npcId": 1992, + "attr": {}, + "npclist": "3009_26_90018#4007_39_90018#3006_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1993": { + "npcId": 1993, + "attr": {}, + "npclist": "5002_30_90018#4012_39_90018#3014_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "1994": { + "npcId": 1994, + "attr": {}, + "npclist": "4007_26_90018#2001_39_90018#2002_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "1995": { + "npcId": 1995, + "attr": {}, + "npclist": "3001_32_90018#2001_39_90018#3006_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "1996": { + "npcId": 1996, + "attr": {}, + "npclist": "4002_30_90018#3005_39_90018#3003_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "1997": { + "npcId": 1997, + "attr": {}, + "npclist": "3002_37_90018#4015_39_90018#2001_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "1998": { + "npcId": 1998, + "attr": {}, + "npclist": "4013_36_90018#5003_39_90018#5005_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "1999": { + "npcId": 1999, + "attr": {}, + "npclist": "4002_30_90018#3015_39_90018#4002_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "2000": { + "npcId": 2000, + "attr": {}, + "npclist": "5002_37_90018#4015_39_90018#3007_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "2001": { + "npcId": 2001, + "attr": {}, + "npclist": "5002_37_90018#3002_39_90018#5001_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "2002": { + "npcId": 2002, + "attr": {}, + "npclist": "3002_38_90018#4009_39_90018#4003_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "2003": { + "npcId": 2003, + "attr": {}, + "npclist": "4006_34_90018#4013_39_90018#4001_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "2004": { + "npcId": 2004, + "attr": {}, + "npclist": "4003_27_90018#4009_39_90018#3011_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "2005": { + "npcId": 2005, + "attr": {}, + "npclist": "4001_38_90018#4014_39_90018#5004_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "2006": { + "npcId": 2006, + "attr": {}, + "npclist": "3011_31_90018#3011_39_90018#4005_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "2007": { + "npcId": 2007, + "attr": {}, + "npclist": "3009_40_90018#5005_39_90018#3009_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "2008": { + "npcId": 2008, + "attr": {}, + "npclist": "5004_29_90018#3013_39_90018#4010_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "2009": { + "npcId": 2009, + "attr": {}, + "npclist": "4012_36_90018#3012_39_90018#3009_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "2010": { + "npcId": 2010, + "attr": {}, + "npclist": "4007_37_90018#5003_39_90018#4011_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "2011": { + "npcId": 2011, + "attr": {}, + "npclist": "3014_26_90018#3014_39_90018#5002_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "2012": { + "npcId": 2012, + "attr": {}, + "npclist": "4002_36_90018#3010_39_90018#4007_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "2013": { + "npcId": 2013, + "attr": {}, + "npclist": "3009_25_90018#4004_39_90018#2002_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "2014": { + "npcId": 2014, + "attr": {}, + "npclist": "4005_26_90018#4007_39_90018#3003_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "2015": { + "npcId": 2015, + "attr": {}, + "npclist": "4006_35_90018#4003_39_90018#4015_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "2016": { + "npcId": 2016, + "attr": {}, + "npclist": "5003_31_90018#3010_39_90018#3014_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "2017": { + "npcId": 2017, + "attr": {}, + "npclist": "3010_26_90018#3009_39_90018#4013_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "2018": { + "npcId": 2018, + "attr": {}, + "npclist": "4010_30_90018#3010_39_90018#4007_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "2019": { + "npcId": 2019, + "attr": {}, + "npclist": "5001_27_90018#4005_39_90018#3008_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "2020": { + "npcId": 2020, + "attr": {}, + "npclist": "1002_31_90018#3002_39_90018#3001_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "2021": { + "npcId": 2021, + "attr": {}, + "npclist": "3013_32_90018#4002_39_90018#5001_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "2022": { + "npcId": 2022, + "attr": {}, + "npclist": "3010_40_90018#2002_39_90018#3003_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "2023": { + "npcId": 2023, + "attr": {}, + "npclist": "3008_25_90018#3008_39_90018#5003_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "2024": { + "npcId": 2024, + "attr": {}, + "npclist": "3011_38_90018#2001_39_90018#5003_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "2025": { + "npcId": 2025, + "attr": {}, + "npclist": "4011_27_90018#2002_39_90018#4008_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "2026": { + "npcId": 2026, + "attr": {}, + "npclist": "4001_29_90018#4010_39_90018#3002_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "2027": { + "npcId": 2027, + "attr": {}, + "npclist": "4011_32_90018#4014_39_90018#3001_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "2028": { + "npcId": 2028, + "attr": {}, + "npclist": "3004_31_90018#4014_39_90018#4013_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "2029": { + "npcId": 2029, + "attr": {}, + "npclist": "4002_32_90018#3003_39_90018#3012_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "2030": { + "npcId": 2030, + "attr": {}, + "npclist": "4005_33_90018#3015_39_90018#3013_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "2031": { + "npcId": 2031, + "attr": {}, + "npclist": "5004_27_90018#4005_40_90018#4006_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "2032": { + "npcId": 2032, + "attr": {}, + "npclist": "3006_26_90018#2001_40_90018#4009_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "2033": { + "npcId": 2033, + "attr": {}, + "npclist": "4013_27_90018#4014_40_90018#1001_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "2034": { + "npcId": 2034, + "attr": {}, + "npclist": "3002_30_90018#5002_40_90018#3012_39_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "2035": { + "npcId": 2035, + "attr": {}, + "npclist": "5002_37_90018#3003_40_90018#1001_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "2036": { + "npcId": 2036, + "attr": {}, + "npclist": "4003_25_90018#3009_40_90018#3011_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "2037": { + "npcId": 2037, + "attr": {}, + "npclist": "3004_25_90018#5004_40_90018#3004_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "2038": { + "npcId": 2038, + "attr": {}, + "npclist": "4010_31_90018#3009_40_90018#4007_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "2039": { + "npcId": 2039, + "attr": {}, + "npclist": "3002_34_90018#5002_40_90018#4004_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "2040": { + "npcId": 2040, + "attr": {}, + "npclist": "3012_30_90018#1001_40_90018#4006_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "2041": { + "npcId": 2041, + "attr": {}, + "npclist": "5004_35_90018#5002_40_90018#4010_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "2042": { + "npcId": 2042, + "attr": {}, + "npclist": "3014_30_90018#3011_40_90018#1001_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "2043": { + "npcId": 2043, + "attr": {}, + "npclist": "5002_32_90018#4001_40_90018#4003_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "2044": { + "npcId": 2044, + "attr": {}, + "npclist": "3014_35_90018#4007_40_90018#3010_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "2045": { + "npcId": 2045, + "attr": {}, + "npclist": "3015_34_90018#3006_40_90018#1001_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "2046": { + "npcId": 2046, + "attr": {}, + "npclist": "3004_31_90018#4005_40_90018#4001_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "2047": { + "npcId": 2047, + "attr": {}, + "npclist": "3009_37_90018#3006_40_90018#3014_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "2048": { + "npcId": 2048, + "attr": {}, + "npclist": "2001_36_90018#4002_40_90018#3003_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "2049": { + "npcId": 2049, + "attr": {}, + "npclist": "4011_32_90018#3006_40_90018#3002_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "2050": { + "npcId": 2050, + "attr": {}, + "npclist": "3008_38_90018#5003_40_90018#1001_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "2051": { + "npcId": 2051, + "attr": {}, + "npclist": "4009_31_90018#2001_40_90018#3010_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "2052": { + "npcId": 2052, + "attr": {}, + "npclist": "5001_40_90018#3009_40_90018#5002_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "2053": { + "npcId": 2053, + "attr": {}, + "npclist": "5004_37_90018#3001_40_90018#3013_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "2054": { + "npcId": 2054, + "attr": {}, + "npclist": "3009_38_90018#4013_40_90018#3003_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "2055": { + "npcId": 2055, + "attr": {}, + "npclist": "4005_32_90018#3002_40_90018#1002_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "2056": { + "npcId": 2056, + "attr": {}, + "npclist": "3008_27_90018#3003_40_90018#4001_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "2057": { + "npcId": 2057, + "attr": {}, + "npclist": "4005_28_90018#4007_40_90018#3009_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "2058": { + "npcId": 2058, + "attr": {}, + "npclist": "3003_26_90018#1002_40_90018#4005_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "2059": { + "npcId": 2059, + "attr": {}, + "npclist": "2001_33_90018#4001_40_90018#3010_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "2060": { + "npcId": 2060, + "attr": {}, + "npclist": "3007_26_90018#3010_40_90018#4002_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "2061": { + "npcId": 2061, + "attr": {}, + "npclist": "4005_35_90018#3006_40_90018#3010_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "2062": { + "npcId": 2062, + "attr": {}, + "npclist": "3010_25_90018#4007_40_90018#4015_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "2063": { + "npcId": 2063, + "attr": {}, + "npclist": "3010_38_90018#3011_40_90018#3002_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "2064": { + "npcId": 2064, + "attr": {}, + "npclist": "3008_36_90018#4001_40_90018#3013_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "2065": { + "npcId": 2065, + "attr": {}, + "npclist": "5001_25_90018#3013_40_90018#4005_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "2066": { + "npcId": 2066, + "attr": {}, + "npclist": "5003_35_90018#4013_40_90018#3014_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "2067": { + "npcId": 2067, + "attr": {}, + "npclist": "1002_29_90018#3002_40_90018#5001_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "2068": { + "npcId": 2068, + "attr": {}, + "npclist": "3005_26_90018#4014_40_90018#4012_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "2069": { + "npcId": 2069, + "attr": {}, + "npclist": "5005_37_90018#4013_40_90018#3003_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "2070": { + "npcId": 2070, + "attr": {}, + "npclist": "3003_27_90018#1001_40_90018#3012_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "2071": { + "npcId": 2071, + "attr": {}, + "npclist": "5002_31_90018#3003_40_90018#4011_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "2072": { + "npcId": 2072, + "attr": {}, + "npclist": "3002_35_90018#4004_40_90018#3001_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "2073": { + "npcId": 2073, + "attr": {}, + "npclist": "3005_31_90018#4009_40_90018#4012_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "2074": { + "npcId": 2074, + "attr": {}, + "npclist": "3013_39_90018#2001_40_90018#4002_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "2075": { + "npcId": 2075, + "attr": {}, + "npclist": "5004_38_90018#4006_40_90018#3006_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "2076": { + "npcId": 2076, + "attr": {}, + "npclist": "3006_29_90018#5004_40_90018#5002_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "2077": { + "npcId": 2077, + "attr": {}, + "npclist": "5003_31_90018#4007_40_90018#4006_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "2078": { + "npcId": 2078, + "attr": {}, + "npclist": "3003_27_90018#3011_40_90018#1002_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "2079": { + "npcId": 2079, + "attr": {}, + "npclist": "3014_39_90018#1002_40_90018#4008_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "2080": { + "npcId": 2080, + "attr": {}, + "npclist": "4002_31_90018#3004_40_90018#4015_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "2081": { + "npcId": 2081, + "attr": {}, + "npclist": "1002_27_90018#3007_40_90018#4012_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "2082": { + "npcId": 2082, + "attr": {}, + "npclist": "4011_31_90018#4001_40_90018#5005_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "2083": { + "npcId": 2083, + "attr": {}, + "npclist": "3008_29_90018#4015_40_90018#3002_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "2084": { + "npcId": 2084, + "attr": {}, + "npclist": "4001_36_90018#4006_40_90018#4008_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "2085": { + "npcId": 2085, + "attr": {}, + "npclist": "3012_25_90018#5003_40_90018#1001_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "2086": { + "npcId": 2086, + "attr": {}, + "npclist": "3001_39_90018#3015_40_90018#3005_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "2087": { + "npcId": 2087, + "attr": {}, + "npclist": "4005_32_90018#5001_40_90018#3015_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "2088": { + "npcId": 2088, + "attr": {}, + "npclist": "3011_26_90018#2002_40_90018#3013_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "2089": { + "npcId": 2089, + "attr": {}, + "npclist": "4012_33_90018#4006_40_90018#4011_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "2090": { + "npcId": 2090, + "attr": {}, + "npclist": "4006_34_90018#5003_40_90018#4010_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "2091": { + "npcId": 2091, + "attr": {}, + "npclist": "3001_27_90018#3005_40_90018#2001_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "2092": { + "npcId": 2092, + "attr": {}, + "npclist": "3010_35_90018#3001_40_90018#3001_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "2093": { + "npcId": 2093, + "attr": {}, + "npclist": "3012_29_90018#4003_40_90018#3001_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "2094": { + "npcId": 2094, + "attr": {}, + "npclist": "5005_32_90018#3011_40_90018#4014_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "2095": { + "npcId": 2095, + "attr": {}, + "npclist": "5005_34_90018#3006_40_90018#2002_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "2096": { + "npcId": 2096, + "attr": {}, + "npclist": "3003_26_90018#3015_40_90018#2002_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "2097": { + "npcId": 2097, + "attr": {}, + "npclist": "4001_33_90018#4011_40_90018#2001_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "2098": { + "npcId": 2098, + "attr": {}, + "npclist": "4003_38_90018#3013_40_90018#4014_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "2099": { + "npcId": 2099, + "attr": {}, + "npclist": "1001_40_90018#4003_40_90018#4010_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "2100": { + "npcId": 2100, + "attr": {}, + "npclist": "5002_35_90018#2002_40_90018#3009_40_90018", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "10001": { + "npcId": 10001, + "attr": {}, + "npclist": "4011_45_90081#4001_45_90081#3001_45_90081#3002_45_90081#3003_45_90081#3004_45_90081", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "10002": { + "npcId": 10002, + "attr": {}, + "npclist": "5001_55_90082#4002_55_90082#3005_55_90082#3006_55_90082#3007_55_90082#3008_55_90082", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "10003": { + "npcId": 10003, + "attr": {}, + "npclist": "5002_65_90083#4003_65_90083#3009_65_90083#3010_65_90083#3011_65_90083#3012_65_90083", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "10004": { + "npcId": 10004, + "attr": {}, + "npclist": "5003_75_90084#4004_75_90084#3013_75_90084#3014_75_90084#3015_75_90084#2001_75_90084", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "10005": { + "npcId": 10005, + "attr": {}, + "npclist": "5004_85_90085#4005_85_90085#4006_85_90085#4007_85_90085#4008_85_90085#4009_85_90085", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "10006": { + "npcId": 10006, + "attr": {}, + "npclist": "5005_95_90086#4010_95_90086#4011_95_90086#4012_95_90086#4013_95_90086#4014_95_90086", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "12001": { + "npcId": 12001, + "attr": {}, + "npclist": "3001_30_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "12002": { + "npcId": 12002, + "attr": {}, + "npclist": "3002_45_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "12003": { + "npcId": 12003, + "attr": {}, + "npclist": "3003_60_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "12004": { + "npcId": 12004, + "attr": {}, + "npclist": "3004_75_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "12005": { + "npcId": 12005, + "attr": {}, + "npclist": "3005_90_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "12006": { + "npcId": 12006, + "attr": {}, + "npclist": "3006_120_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "12007": { + "npcId": 12007, + "attr": {}, + "npclist": "3007_150_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "12008": { + "npcId": 12008, + "attr": {}, + "npclist": "3008_180_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "12009": { + "npcId": 12009, + "attr": {}, + "npclist": "3009_210_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "12010": { + "npcId": 12010, + "attr": {}, + "npclist": "3010_240_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "12011": { + "npcId": 12011, + "attr": {}, + "npclist": "3011_270_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "12012": { + "npcId": 12012, + "attr": {}, + "npclist": "3012_300_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "12013": { + "npcId": 12013, + "attr": {}, + "npclist": "3013_350_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "12014": { + "npcId": 12014, + "attr": {}, + "npclist": "3014_400_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "12015": { + "npcId": 12015, + "attr": {}, + "npclist": "3015_450_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "12016": { + "npcId": 12016, + "attr": {}, + "npclist": "4001_500_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "12017": { + "npcId": 12017, + "attr": {}, + "npclist": "4002_550_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "12018": { + "npcId": 12018, + "attr": {}, + "npclist": "4003_600_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "12019": { + "npcId": 12019, + "attr": {}, + "npclist": "4004_650_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "12020": { + "npcId": 12020, + "attr": {}, + "npclist": "4005_700_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "12021": { + "npcId": 12021, + "attr": {}, + "npclist": "4006_800_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "12022": { + "npcId": 12022, + "attr": {}, + "npclist": "4007_900_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "12023": { + "npcId": 12023, + "attr": {}, + "npclist": "4008_1000_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "12024": { + "npcId": 12024, + "attr": {}, + "npclist": "4009_1100_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "12025": { + "npcId": 12025, + "attr": {}, + "npclist": "4010_1200_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "12026": { + "npcId": 12026, + "attr": {}, + "npclist": "4011_1400_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "12027": { + "npcId": 12027, + "attr": {}, + "npclist": "4012_1600_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "12028": { + "npcId": 12028, + "attr": {}, + "npclist": "4013_1800_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "12029": { + "npcId": 12029, + "attr": {}, + "npclist": "4014_2000_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "12030": { + "npcId": 12030, + "attr": {}, + "npclist": "4015_2200_90400", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "15001": { + "npcId": 15001, + "attr": {}, + "npclist": "1001_15_90002#2001_15_90002#1002_15_90002", + "npcLv": [ + 24, + 24, + 24 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15002": { + "npcId": 15002, + "attr": {}, + "npclist": "1002_15_90002#2002_15_90002#1001_15_90002", + "npcLv": [ + 24, + 24, + 24 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15003": { + "npcId": 15003, + "attr": {}, + "npclist": "1002_15_90002#1001_15_90002#3001_15_90002", + "npcLv": [ + 24, + 24, + 24 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15004": { + "npcId": 15004, + "attr": {}, + "npclist": "2002_15_90002#2001_15_90002#1002_15_90002#3006_15_90002", + "npcLv": [ + 24, + 24, + 24, + 24 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15005": { + "npcId": 15005, + "attr": {}, + "npclist": "3002_15_90002#3005_15_90002#3008_15_90002#1001_15_90002", + "npcLv": [ + 24, + 24, + 24, + 24 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15006": { + "npcId": 15006, + "attr": {}, + "npclist": "3003_15_90002#2001_15_90002#1001_15_90002#2002_15_90002", + "npcLv": [ + 24, + 24, + 24, + 24 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15007": { + "npcId": 15007, + "attr": {}, + "npclist": "3007_15_90002#2002_15_90002#3009_15_90002#1002_15_90002", + "npcLv": [ + 24, + 24, + 24, + 24 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15008": { + "npcId": 15008, + "attr": {}, + "npclist": "2001_19_90002#1002_19_90002#3001_19_90002#1001_19_90002", + "npcLv": [ + 31, + 31, + 31, + 31 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15009": { + "npcId": 15009, + "attr": {}, + "npclist": "3003_19_90002#3004_19_90002#2001_19_90002#1001_19_90002", + "npcLv": [ + 31, + 31, + 31, + 31 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15010": { + "npcId": 15010, + "attr": {}, + "npclist": "3010_23_90002#1001_23_90002#3003_23_90002#2001_23_90002#3001_23_90002", + "npcLv": [ + 38, + 38, + 38, + 38, + 38 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15011": { + "npcId": 15011, + "attr": {}, + "npclist": "3011_23_90003#3004_23_90003#3002_23_90003#3005_23_90003#3015_23_90003", + "npcLv": [ + 38, + 38, + 38, + 38, + 38 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15012": { + "npcId": 15012, + "attr": {}, + "npclist": "3012_27_90003#3002_27_90003#3009_27_90003#1002_27_90003#3003_27_90003", + "npcLv": [ + 46, + 46, + 46, + 46, + 46 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15013": { + "npcId": 15013, + "attr": {}, + "npclist": "3006_27_90003#3013_27_90003#3006_27_90003#2002_27_90003#3004_27_90003", + "npcLv": [ + 46, + 46, + 46, + 46, + 46 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15014": { + "npcId": 15014, + "attr": {}, + "npclist": "1001_31_90003#1002_31_90003#2001_31_90003#3014_31_90003#2001_31_90003", + "npcLv": [ + 53, + 53, + 53, + 53, + 53 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15015": { + "npcId": 15015, + "attr": {}, + "npclist": "4001_31_90003#2002_31_90003#3007_31_90003#3001_31_90003#1001_31_90003#3007_31_90003", + "npcLv": [ + 53, + 53, + 53, + 53, + 53, + 53 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15016": { + "npcId": 15016, + "attr": {}, + "npclist": "3002_35_90003#1001_35_90003#2002_35_90003#3010_35_90003#3009_35_90003#3005_35_90003", + "npcLv": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15017": { + "npcId": 15017, + "attr": {}, + "npclist": "1002_35_90003#3015_35_90003#3003_35_90003#1001_35_90003#3002_35_90003#3015_35_90003", + "npcLv": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15018": { + "npcId": 15018, + "attr": {}, + "npclist": "2002_39_90003#3006_39_90003#4002_39_90003#3005_39_90003#3014_39_90003#2001_39_90003", + "npcLv": [ + 69, + 69, + 69, + 69, + 69, + 69 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15019": { + "npcId": 15019, + "attr": {}, + "npclist": "3003_39_90003#1002_39_90003#1001_39_90003#3011_39_90003#3001_39_90003#3007_39_90003", + "npcLv": [ + 69, + 69, + 69, + 69, + 69, + 69 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15020": { + "npcId": 15020, + "attr": {}, + "npclist": "3009_43_90003#3006_43_90003#4003_43_90003#1002_43_90003#3002_43_90003#3003_43_90003", + "npcLv": [ + 77, + 77, + 77, + 77, + 77, + 77 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15021": { + "npcId": 15021, + "attr": {}, + "npclist": "3004_43_90003#4004_43_90003#3007_43_90003#2002_43_90003#1001_43_90003#3015_43_90003", + "npcLv": [ + 77, + 77, + 77, + 77, + 77, + 77 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15022": { + "npcId": 15022, + "attr": {}, + "npclist": "4005_47_90003#2002_47_90003#3004_47_90003#3010_47_90003#1002_47_90003#4001_47_90003", + "npcLv": [ + 85, + 85, + 85, + 85, + 85, + 85 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15023": { + "npcId": 15023, + "attr": {}, + "npclist": "1002_47_90003#3014_47_90003#3009_47_90003#3011_47_90003#3001_47_90003#3003_47_90003", + "npcLv": [ + 85, + 85, + 85, + 85, + 85, + 85 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15024": { + "npcId": 15024, + "attr": {}, + "npclist": "3005_51_90003#3006_51_90003#3010_51_90003#1002_51_90003#3015_51_90003#2001_51_90003", + "npcLv": [ + 93, + 93, + 93, + 93, + 93, + 93 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15025": { + "npcId": 15025, + "attr": {}, + "npclist": "2001_51_90003#3003_51_90003#3001_51_90003#4005_51_90003#3012_51_90003#1002_51_90003", + "npcLv": [ + 93, + 93, + 93, + 93, + 93, + 93 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15026": { + "npcId": 15026, + "attr": {}, + "npclist": "3009_55_90003#3010_55_90003#3007_55_90003#4004_55_90003#3003_55_90003#2001_55_90003", + "npcLv": [ + 102, + 102, + 102, + 102, + 102, + 102 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15027": { + "npcId": 15027, + "attr": {}, + "npclist": "3001_55_90003#3007_55_90003#3015_55_90003#2002_55_90003#4006_55_90003#1001_55_90003", + "npcLv": [ + 102, + 102, + 102, + 102, + 102, + 102 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15028": { + "npcId": 15028, + "attr": {}, + "npclist": "3002_59_90003#3011_59_90003#3005_59_90003#3015_59_90003#3002_59_90003#4007_59_90003", + "npcLv": [ + 110, + 110, + 110, + 110, + 110, + 110 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15029": { + "npcId": 15029, + "attr": {}, + "npclist": "3015_59_90003#2002_59_90003#3014_59_90003#3012_59_90003#4005_59_90003#1001_59_90003", + "npcLv": [ + 110, + 110, + 110, + 110, + 110, + 110 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15030": { + "npcId": 15030, + "attr": {}, + "npclist": "2002_61_90003#3008_61_90003#3010_61_90003#3009_61_90003#1002_61_90003#4001_61_90003", + "npcLv": [ + 115, + 115, + 115, + 115, + 115, + 115 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15031": { + "npcId": 15031, + "attr": {}, + "npclist": "1002_61_90003#2002_61_90003#4002_61_90003#3001_61_90003#3009_61_90003#3002_61_90003", + "npcLv": [ + 115, + 115, + 115, + 115, + 115, + 115 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15032": { + "npcId": 15032, + "attr": {}, + "npclist": "3012_61_90003#4004_61_90003#3002_61_90003#3008_61_90003#2002_61_90003#3013_61_90003", + "npcLv": [ + 115, + 115, + 115, + 115, + 115, + 115 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15033": { + "npcId": 15033, + "attr": {}, + "npclist": "3003_62_90003#4003_62_90003#3007_62_90003#3015_62_90003#1001_62_90003#2002_62_90003", + "npcLv": [ + 117, + 117, + 117, + 117, + 117, + 117 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15034": { + "npcId": 15034, + "attr": {}, + "npclist": "3008_62_90003#3001_62_90003#4007_62_90003#3015_62_90003#2002_62_90003#4008_62_90003", + "npcLv": [ + 117, + 117, + 117, + 117, + 117, + 117 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15035": { + "npcId": 15035, + "attr": {}, + "npclist": "3013_62_90003#4006_62_90003#4005_62_90003#3003_62_90003#3004_62_90003#1001_62_90003", + "npcLv": [ + 117, + 117, + 117, + 117, + 117, + 117 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15036": { + "npcId": 15036, + "attr": {}, + "npclist": "3014_63_90003#3013_63_90003#2002_63_90003#4009_63_90003#1002_63_90003#4007_63_90003", + "npcLv": [ + 119, + 119, + 119, + 119, + 119, + 119 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15037": { + "npcId": 15037, + "attr": {}, + "npclist": "3003_63_90003#3006_63_90003#2002_63_90003#4004_63_90003#3008_63_90003#1002_63_90003", + "npcLv": [ + 119, + 119, + 119, + 119, + 119, + 119 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15038": { + "npcId": 15038, + "attr": {}, + "npclist": "1001_63_90003#3015_63_90003#3013_63_90003#3001_63_90003#3010_63_90003#3004_63_90003", + "npcLv": [ + 119, + 119, + 119, + 119, + 119, + 119 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15039": { + "npcId": 15039, + "attr": {}, + "npclist": "2002_64_90003#1002_64_90003#4008_64_90003#4010_64_90003#4002_64_90003#3012_64_90003", + "npcLv": [ + 121, + 121, + 121, + 121, + 121, + 121 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15040": { + "npcId": 15040, + "attr": {}, + "npclist": "3011_64_90003#3006_64_90003#4003_64_90003#2001_64_90003#4006_64_90003#3001_64_90003", + "npcLv": [ + 121, + 121, + 121, + 121, + 121, + 121 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15041": { + "npcId": 15041, + "attr": {}, + "npclist": "1002_64_90003#4004_64_90003#3009_64_90003#3004_64_90003#3006_64_90003#3015_64_90003", + "npcLv": [ + 121, + 121, + 121, + 121, + 121, + 121 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15042": { + "npcId": 15042, + "attr": {}, + "npclist": "4002_65_90003#2002_65_90003#4009_65_90003#3004_65_90003#3012_65_90003#4005_65_90003", + "npcLv": [ + 123, + 123, + 123, + 123, + 123, + 123 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15043": { + "npcId": 15043, + "attr": {}, + "npclist": "3001_65_90003#4007_65_90003#1001_65_90003#4001_65_90003#3008_65_90003#3002_65_90003", + "npcLv": [ + 123, + 123, + 123, + 123, + 123, + 123 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15044": { + "npcId": 15044, + "attr": {}, + "npclist": "3009_65_90003#4001_65_90003#3010_65_90003#2001_65_90003#4009_65_90003#3014_65_90003", + "npcLv": [ + 123, + 123, + 123, + 123, + 123, + 123 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15045": { + "npcId": 15045, + "attr": {}, + "npclist": "1001_66_90003#4008_66_90003#2002_66_90003#3008_66_90003#3009_66_90003#3010_66_90003", + "npcLv": [ + 125, + 125, + 125, + 125, + 125, + 125 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15046": { + "npcId": 15046, + "attr": {}, + "npclist": "3007_66_90003#3004_66_90003#2002_66_90003#3005_66_90003#4004_66_90003#3015_66_90003", + "npcLv": [ + 125, + 125, + 125, + 125, + 125, + 125 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15047": { + "npcId": 15047, + "attr": {}, + "npclist": "3012_66_90003#3002_66_90003#3011_66_90003#4007_66_90003#3001_66_90003#4010_66_90003", + "npcLv": [ + 125, + 125, + 125, + 125, + 125, + 125 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15048": { + "npcId": 15048, + "attr": {}, + "npclist": "3008_67_90003#4003_67_90003#3001_67_90003#3005_67_90003#2001_67_90003#4009_67_90003", + "npcLv": [ + 127, + 127, + 127, + 127, + 127, + 127 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15049": { + "npcId": 15049, + "attr": {}, + "npclist": "3009_67_90003#4011_67_90003#4010_67_90003#4004_67_90003#4008_67_90003#2002_67_90003", + "npcLv": [ + 127, + 127, + 127, + 127, + 127, + 127 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15050": { + "npcId": 15050, + "attr": {}, + "npclist": "2001_67_90003#3014_67_90003#4005_67_90003#3002_67_90003#3004_67_90003#3001_67_90003", + "npcLv": [ + 127, + 127, + 127, + 127, + 127, + 127 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15051": { + "npcId": 15051, + "attr": {}, + "npclist": "1002_68_90003#3006_68_90003#4012_68_90003#3011_68_90003#3005_68_90003#3002_68_90003", + "npcLv": [ + 130, + 130, + 130, + 130, + 130, + 130 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15052": { + "npcId": 15052, + "attr": {}, + "npclist": "2002_68_90003#4009_68_90003#4007_68_90003#3005_68_90003#3012_68_90003#3001_68_90003", + "npcLv": [ + 130, + 130, + 130, + 130, + 130, + 130 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15053": { + "npcId": 15053, + "attr": {}, + "npclist": "3015_68_90003#4004_68_90003#3009_68_90003#3015_68_90003#4007_68_90003#4011_68_90003", + "npcLv": [ + 130, + 130, + 130, + 130, + 130, + 130 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15054": { + "npcId": 15054, + "attr": {}, + "npclist": "4010_69_90003#4012_69_90003#3003_69_90003#3008_69_90003#3014_69_90003#3011_69_90003", + "npcLv": [ + 132, + 132, + 132, + 132, + 132, + 132 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15055": { + "npcId": 15055, + "attr": {}, + "npclist": "3003_69_90003#3001_69_90003#3006_69_90003#1001_69_90003#3007_69_90003#3004_69_90003", + "npcLv": [ + 132, + 132, + 132, + 132, + 132, + 132 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15056": { + "npcId": 15056, + "attr": {}, + "npclist": "4005_69_90003#4011_69_90003#4009_69_90003#4004_69_90003#4007_69_90003#3003_69_90003", + "npcLv": [ + 132, + 132, + 132, + 132, + 132, + 132 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15057": { + "npcId": 15057, + "attr": {}, + "npclist": "3012_70_90003#2002_70_90003#3004_70_90003#3007_70_90003#4008_70_90003#4010_70_90003", + "npcLv": [ + 134, + 134, + 134, + 134, + 134, + 134 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15058": { + "npcId": 15058, + "attr": {}, + "npclist": "2002_70_90003#3011_70_90003#4001_70_90003#3001_70_90003#4003_70_90003#3009_70_90003", + "npcLv": [ + 134, + 134, + 134, + 134, + 134, + 134 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15059": { + "npcId": 15059, + "attr": {}, + "npclist": "3014_70_90003#4007_70_90003#4008_70_90003#4012_70_90003#4005_70_90003#4004_70_90003", + "npcLv": [ + 134, + 134, + 134, + 134, + 134, + 134 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15060": { + "npcId": 15060, + "attr": {}, + "npclist": "3004_71_90003#2002_71_90003#4007_71_90003#4006_71_90003#1002_71_90003#3014_71_90003", + "npcLv": [ + 136, + 136, + 136, + 136, + 136, + 136 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15061": { + "npcId": 15061, + "attr": {}, + "npclist": "4008_71_90003#3007_71_90003#3012_71_90003#4010_71_90003#3001_71_90003#3013_71_90003", + "npcLv": [ + 136, + 136, + 136, + 136, + 136, + 136 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15062": { + "npcId": 15062, + "attr": {}, + "npclist": "3004_71_90003#4011_71_90003#3015_71_90003#4007_71_90003#3001_71_90003#4012_71_90003", + "npcLv": [ + 136, + 136, + 136, + 136, + 136, + 136 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15063": { + "npcId": 15063, + "attr": {}, + "npclist": "4004_72_90003#4006_72_90003#3004_72_90003#3003_72_90003#3014_72_90003#4009_72_90003", + "npcLv": [ + 138, + 138, + 138, + 138, + 138, + 138 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15064": { + "npcId": 15064, + "attr": {}, + "npclist": "4007_72_90003#3003_72_90003#1001_72_90003#3004_72_90003#3007_72_90003#3015_72_90003", + "npcLv": [ + 138, + 138, + 138, + 138, + 138, + 138 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15065": { + "npcId": 15065, + "attr": {}, + "npclist": "3001_72_90003#3014_72_90003#3002_72_90003#4002_72_90003#3015_72_90003#1002_72_90003", + "npcLv": [ + 138, + 138, + 138, + 138, + 138, + 138 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15066": { + "npcId": 15066, + "attr": {}, + "npclist": "4012_73_90003#3009_73_90003#4008_73_90003#3008_73_90003#4011_73_90003#4005_73_90003", + "npcLv": [ + 140, + 140, + 140, + 140, + 140, + 140 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15067": { + "npcId": 15067, + "attr": {}, + "npclist": "4009_73_90003#4010_73_90003#4003_73_90003#3011_73_90003#1001_73_90003#3009_73_90003", + "npcLv": [ + 140, + 140, + 140, + 140, + 140, + 140 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15068": { + "npcId": 15068, + "attr": {}, + "npclist": "3013_73_90003#3010_73_90003#4007_73_90003#4012_73_90003#1001_73_90003#4007_73_90003", + "npcLv": [ + 140, + 140, + 140, + 140, + 140, + 140 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15069": { + "npcId": 15069, + "attr": {}, + "npclist": "1002_74_90003#3008_74_90003#3011_74_90003#4008_74_90003#4010_74_90003#3007_74_90003", + "npcLv": [ + 143, + 143, + 143, + 143, + 143, + 143 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15070": { + "npcId": 15070, + "attr": {}, + "npclist": "3014_74_90003#3015_74_90003#3006_74_90003#3012_74_90003#4006_74_90003#4011_74_90003", + "npcLv": [ + 143, + 143, + 143, + 143, + 143, + 143 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15071": { + "npcId": 15071, + "attr": {}, + "npclist": "1001_74_90003#3004_74_90003#4005_74_90003#3002_74_90003#3012_74_90003#3011_74_90003", + "npcLv": [ + 143, + 143, + 143, + 143, + 143, + 143 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15072": { + "npcId": 15072, + "attr": {}, + "npclist": "1002_75_90003#4009_75_90003#4007_75_90003#2001_75_90003#4004_75_90003#4007_75_90003", + "npcLv": [ + 145, + 145, + 145, + 145, + 145, + 145 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15073": { + "npcId": 15073, + "attr": {}, + "npclist": "3002_75_90003#4011_75_90003#2002_75_90003#4002_75_90003#4001_75_90003#4012_75_90003", + "npcLv": [ + 145, + 145, + 145, + 145, + 145, + 145 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15074": { + "npcId": 15074, + "attr": {}, + "npclist": "3009_75_90003#4001_75_90003#3010_75_90003#3014_75_90003#4008_75_90003#3003_75_90003", + "npcLv": [ + 145, + 145, + 145, + 145, + 145, + 145 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15075": { + "npcId": 15075, + "attr": {}, + "npclist": "3001_76_90001#4008_76_90001#3007_76_90001#4007_76_90001#3003_76_90001#4010_76_90001", + "npcLv": [ + 147, + 147, + 147, + 147, + 147, + 147 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15076": { + "npcId": 15076, + "attr": {}, + "npclist": "3015_76_90001#4006_76_90001#2001_76_90001#4005_76_90001#4009_76_90001#4004_76_90001", + "npcLv": [ + 147, + 147, + 147, + 147, + 147, + 147 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15077": { + "npcId": 15077, + "attr": {}, + "npclist": "3008_76_90001#3006_76_90001#3014_76_90001#2002_76_90001#4003_76_90001#3015_76_90001", + "npcLv": [ + 147, + 147, + 147, + 147, + 147, + 147 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15078": { + "npcId": 15078, + "attr": {}, + "npclist": "4011_77_90001#4007_77_90001#4010_77_90001#4012_77_90001#3005_77_90001#3012_77_90001", + "npcLv": [ + 149, + 149, + 149, + 149, + 149, + 149 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15079": { + "npcId": 15079, + "attr": {}, + "npclist": "4007_77_90001#4003_77_90001#3004_77_90001#4008_77_90001#4006_77_90001#1002_77_90001", + "npcLv": [ + 149, + 149, + 149, + 149, + 149, + 149 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15080": { + "npcId": 15080, + "attr": {}, + "npclist": "4004_77_90001#3002_77_90001#2002_77_90001#3002_77_90001#3014_77_90001#4009_77_90001", + "npcLv": [ + 149, + 149, + 149, + 149, + 149, + 149 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15081": { + "npcId": 15081, + "attr": {}, + "npclist": "3011_78_90001#3009_78_90001#4005_78_90001#3006_78_90001#2001_78_90001#4003_78_90001", + "npcLv": [ + 151, + 151, + 151, + 151, + 151, + 151 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15082": { + "npcId": 15082, + "attr": {}, + "npclist": "4007_78_90001#3015_78_90001#4002_78_90001#4007_78_90001#3001_78_90001#3002_78_90001", + "npcLv": [ + 151, + 151, + 151, + 151, + 151, + 151 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15083": { + "npcId": 15083, + "attr": {}, + "npclist": "4009_78_90001#3014_78_90001#2001_78_90001#3010_78_90001#4011_78_90001#4012_78_90001", + "npcLv": [ + 151, + 151, + 151, + 151, + 151, + 151 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15084": { + "npcId": 15084, + "attr": {}, + "npclist": "3009_79_90001#3012_79_90001#3007_79_90001#4007_79_90001#2002_79_90001#3014_79_90001", + "npcLv": [ + 154, + 154, + 154, + 154, + 154, + 154 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15085": { + "npcId": 15085, + "attr": {}, + "npclist": "3008_79_90001#3009_79_90001#1001_79_90001#4004_79_90001#3001_79_90001#3013_79_90001", + "npcLv": [ + 154, + 154, + 154, + 154, + 154, + 154 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15086": { + "npcId": 15086, + "attr": {}, + "npclist": "2002_79_90001#3005_79_90001#3001_79_90001#4013_79_90001#4008_79_90001#3009_79_90001", + "npcLv": [ + 154, + 154, + 154, + 154, + 154, + 154 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15087": { + "npcId": 15087, + "attr": {}, + "npclist": "3004_80_90001#4012_80_90001#2002_80_90001#3013_80_90001#4007_80_90001#4006_80_90001", + "npcLv": [ + 156, + 156, + 156, + 156, + 156, + 156 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15088": { + "npcId": 15088, + "attr": {}, + "npclist": "2001_80_90001#4005_80_90001#3014_80_90001#3001_80_90001#3005_80_90001#3005_80_90001", + "npcLv": [ + 156, + 156, + 156, + 156, + 156, + 156 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15089": { + "npcId": 15089, + "attr": {}, + "npclist": "4010_80_90001#3003_80_90001#4007_80_90001#3008_80_90001#3011_80_90001#4004_80_90001", + "npcLv": [ + 156, + 156, + 156, + 156, + 156, + 156 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15090": { + "npcId": 15090, + "attr": {}, + "npclist": "3007_81_90001#1001_81_90001#3015_81_90001#3004_81_90001#4002_81_90001#3013_81_90001", + "npcLv": [ + 158, + 158, + 158, + 158, + 158, + 158 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15091": { + "npcId": 15091, + "attr": {}, + "npclist": "3014_81_90001#4013_81_90001#3003_81_90001#4014_81_90001#4005_81_90001#3008_81_90001", + "npcLv": [ + 158, + 158, + 158, + 158, + 158, + 158 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15092": { + "npcId": 15092, + "attr": {}, + "npclist": "4012_81_90001#1001_81_90001#4008_81_90001#4004_81_90001#3009_81_90001#4011_81_90001", + "npcLv": [ + 158, + 158, + 158, + 158, + 158, + 158 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15093": { + "npcId": 15093, + "attr": {}, + "npclist": "4015_82_90001#3002_82_90001#4010_82_90001#4009_82_90001#3001_82_90001#3008_82_90001", + "npcLv": [ + 160, + 160, + 160, + 160, + 160, + 160 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15094": { + "npcId": 15094, + "attr": {}, + "npclist": "3003_82_90001#4006_82_90001#4008_82_90001#4001_82_90001#4007_82_90001#3007_82_90001", + "npcLv": [ + 160, + 160, + 160, + 160, + 160, + 160 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15095": { + "npcId": 15095, + "attr": {}, + "npclist": "4014_82_90001#3007_82_90001#3011_82_90001#3002_82_90001#3015_82_90001#4007_82_90001", + "npcLv": [ + 160, + 160, + 160, + 160, + 160, + 160 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15096": { + "npcId": 15096, + "attr": {}, + "npclist": "3010_83_90001#4004_83_90001#3002_83_90001#3014_83_90001#4012_83_90001#4015_83_90001", + "npcLv": [ + 163, + 163, + 163, + 163, + 163, + 163 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15097": { + "npcId": 15097, + "attr": {}, + "npclist": "4002_83_90001#2002_83_90001#4011_83_90001#3005_83_90001#3004_83_90001#3010_83_90001", + "npcLv": [ + 163, + 163, + 163, + 163, + 163, + 163 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15098": { + "npcId": 15098, + "attr": {}, + "npclist": "3011_83_90001#4008_83_90001#4006_83_90001#3001_83_90001#4010_83_90001#4012_83_90001", + "npcLv": [ + 163, + 163, + 163, + 163, + 163, + 163 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15099": { + "npcId": 15099, + "attr": {}, + "npclist": "4004_84_90001#3010_84_90001#4009_84_90001#4014_84_90001#3002_84_90001#3005_84_90001", + "npcLv": [ + 165, + 165, + 165, + 165, + 165, + 165 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15100": { + "npcId": 15100, + "attr": {}, + "npclist": "3006_84_90001#3014_84_90001#3012_84_90001#4003_84_90001#4005_84_90001#4008_84_90001", + "npcLv": [ + 165, + 165, + 165, + 165, + 165, + 165 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15101": { + "npcId": 15101, + "attr": {}, + "npclist": "3009_84_90001#3003_84_90001#4012_84_90001#4015_84_90001#3007_84_90001#4013_84_90001", + "npcLv": [ + 165, + 165, + 165, + 165, + 165, + 165 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15102": { + "npcId": 15102, + "attr": {}, + "npclist": "4011_85_90001#4007_85_90001#4004_85_90001#4008_85_90001#4001_85_90001#3002_85_90001", + "npcLv": [ + 167, + 167, + 167, + 167, + 167, + 167 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15103": { + "npcId": 15103, + "attr": {}, + "npclist": "3009_85_90001#3008_85_90001#3004_85_90001#3011_85_90001#3015_85_90001#4003_85_90001", + "npcLv": [ + 167, + 167, + 167, + 167, + 167, + 167 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15104": { + "npcId": 15104, + "attr": {}, + "npclist": "4015_85_90001#4013_85_90001#3013_85_90001#3007_85_90001#4004_85_90001#3007_85_90001", + "npcLv": [ + 167, + 167, + 167, + 167, + 167, + 167 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15105": { + "npcId": 15105, + "attr": {}, + "npclist": "3015_86_90001#3013_86_90001#4011_86_90001#3012_86_90001#3003_86_90001#4012_86_90001", + "npcLv": [ + 169, + 169, + 169, + 169, + 169, + 169 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15106": { + "npcId": 15106, + "attr": {}, + "npclist": "3011_86_90001#3002_86_90001#4007_86_90001#3002_86_90001#3009_86_90001#3014_86_90001", + "npcLv": [ + 169, + 169, + 169, + 169, + 169, + 169 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15107": { + "npcId": 15107, + "attr": {}, + "npclist": "3014_86_90001#2002_86_90001#4005_86_90001#4010_86_90001#4011_86_90001#4014_86_90001", + "npcLv": [ + 169, + 169, + 169, + 169, + 169, + 169 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15108": { + "npcId": 15108, + "attr": {}, + "npclist": "3013_87_90001#4012_87_90001#3007_87_90001#4003_87_90001#4006_87_90001#3011_87_90001", + "npcLv": [ + 171, + 171, + 171, + 171, + 171, + 171 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15109": { + "npcId": 15109, + "attr": {}, + "npclist": "3013_87_90001#3006_87_90001#4001_87_90001#4015_87_90001#3012_87_90001#4009_87_90001", + "npcLv": [ + 171, + 171, + 171, + 171, + 171, + 171 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15110": { + "npcId": 15110, + "attr": {}, + "npclist": "4012_87_90001#3002_87_90005#4008_87_90001#3015_87_90005#4007_87_90001#3003_87_90001", + "npcLv": [ + 171, + 171, + 171, + 171, + 171, + 171 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15111": { + "npcId": 15111, + "attr": {}, + "npclist": "3015_88_90001#3014_88_90005#4011_88_90001#4013_88_90005#3008_88_90001#3010_88_90005", + "npcLv": [ + 174, + 174, + 174, + 174, + 174, + 174 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15112": { + "npcId": 15112, + "attr": {}, + "npclist": "3007_88_90001#4014_88_90005#4010_88_90001#3009_88_90005#4012_88_90001#4008_88_90005", + "npcLv": [ + 174, + 174, + 174, + 174, + 174, + 174 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15113": { + "npcId": 15113, + "attr": {}, + "npclist": "4015_88_90001#4009_88_90005#3011_88_90001#4004_88_90005#3006_88_90001#3015_88_90005", + "npcLv": [ + 174, + 174, + 174, + 174, + 174, + 174 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15114": { + "npcId": 15114, + "attr": {}, + "npclist": "4003_89_90001#3015_89_90005#3013_89_90001#4006_89_90005#3011_89_90001#3003_89_90005", + "npcLv": [ + 176, + 176, + 176, + 176, + 176, + 176 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15115": { + "npcId": 15115, + "attr": {}, + "npclist": "4014_89_90001#4011_89_90005#4012_89_90001#3002_89_90005#4015_89_90001#4013_89_90005", + "npcLv": [ + 176, + 176, + 176, + 176, + 176, + 176 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15116": { + "npcId": 15116, + "attr": {}, + "npclist": "3010_89_90001#3008_89_90005#3013_89_90001#3014_89_90005#4007_89_90001#3009_89_90005", + "npcLv": [ + 176, + 176, + 176, + 176, + 176, + 176 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15117": { + "npcId": 15117, + "attr": {}, + "npclist": "4004_90_90001#3002_90_90005#4014_90_90001#4007_90_90005#3015_90_90001#3004_90_90005", + "npcLv": [ + 178, + 178, + 178, + 178, + 178, + 178 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15118": { + "npcId": 15118, + "attr": {}, + "npclist": "3014_90_90001#4006_90_90005#3007_90_90001#3013_90_90005#3002_90_90001#4009_90_90005", + "npcLv": [ + 178, + 178, + 178, + 178, + 178, + 178 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15119": { + "npcId": 15119, + "attr": {}, + "npclist": "4008_90_90001#3005_90_90005#4012_90_90001#3010_90_90005#4015_90_90001#3013_90_90005", + "npcLv": [ + 178, + 178, + 178, + 178, + 178, + 178 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15120": { + "npcId": 15120, + "attr": {}, + "npclist": "3001_91_90001#4007_91_90005#3003_91_90001#4004_91_90005#4014_91_90001#3011_91_90005", + "npcLv": [ + 181, + 181, + 181, + 181, + 181, + 181 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15121": { + "npcId": 15121, + "attr": {}, + "npclist": "3005_91_90001#3015_91_90005#3008_91_90001#3002_91_90005#3013_91_90001#4002_91_90005", + "npcLv": [ + 181, + 181, + 181, + 181, + 181, + 181 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15122": { + "npcId": 15122, + "attr": {}, + "npclist": "4013_91_90001#4010_91_90005#3009_91_90001#4011_91_90005#4012_91_90001#3007_91_90005", + "npcLv": [ + 181, + 181, + 181, + 181, + 181, + 181 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15123": { + "npcId": 15123, + "attr": {}, + "npclist": "4009_92_90001#3009_92_90005#3015_92_90001#3006_92_90005#3002_92_90001#3013_92_90005", + "npcLv": [ + 183, + 183, + 183, + 183, + 183, + 183 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15124": { + "npcId": 15124, + "attr": {}, + "npclist": "4005_92_90001#4007_92_90005#4015_92_90001#3013_92_90005#3003_92_90001#4014_92_90005", + "npcLv": [ + 183, + 183, + 183, + 183, + 183, + 183 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15125": { + "npcId": 15125, + "attr": {}, + "npclist": "3012_92_90001#4012_92_90005#4010_92_90001#4013_92_90005#3002_92_90001#4004_92_90005", + "npcLv": [ + 183, + 183, + 183, + 183, + 183, + 183 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15126": { + "npcId": 15126, + "attr": {}, + "npclist": "3002_93_90001#3004_93_90005#4014_93_90001#3015_93_90005#4007_93_90001#3014_93_90005", + "npcLv": [ + 185, + 185, + 185, + 185, + 185, + 185 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15127": { + "npcId": 15127, + "attr": {}, + "npclist": "3008_93_90001#4011_93_90005#3013_93_90001#4005_93_90005#3015_93_90001#3009_93_90005", + "npcLv": [ + 185, + 185, + 185, + 185, + 185, + 185 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15128": { + "npcId": 15128, + "attr": {}, + "npclist": "4006_93_90001#4008_93_90005#3001_93_90001#4012_93_90005#3010_93_90001#3008_93_90005", + "npcLv": [ + 185, + 185, + 185, + 185, + 185, + 185 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15129": { + "npcId": 15129, + "attr": {}, + "npclist": "3009_94_90001#4014_94_90005#3013_94_90001#3011_94_90005#2002_94_90001#4015_94_90005", + "npcLv": [ + 187, + 187, + 187, + 187, + 187, + 187 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15130": { + "npcId": 15130, + "attr": {}, + "npclist": "3007_94_90001#3011_94_90005#4004_94_90001#3010_94_90005#3012_94_90001#4003_94_90005", + "npcLv": [ + 187, + 187, + 187, + 187, + 187, + 187 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15131": { + "npcId": 15131, + "attr": {}, + "npclist": "4014_94_90001#3002_94_90005#3007_94_90001#4007_94_90005#4012_94_90001#3015_94_90005", + "npcLv": [ + 187, + 187, + 187, + 187, + 187, + 187 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15132": { + "npcId": 15132, + "attr": {}, + "npclist": "3008_95_90001#3008_95_90005#3003_95_90001#3001_95_90005#4011_95_90001#3006_95_90005", + "npcLv": [ + 190, + 190, + 190, + 190, + 190, + 190 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15133": { + "npcId": 15133, + "attr": {}, + "npclist": "4001_95_90001#4012_95_90005#4006_95_90001#4009_95_90005#3007_95_90001#3002_95_90005", + "npcLv": [ + 190, + 190, + 190, + 190, + 190, + 190 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15134": { + "npcId": 15134, + "attr": {}, + "npclist": "4015_95_90001#4002_95_90005#3011_95_90001#3009_95_90005#4010_95_90001#4008_95_90005", + "npcLv": [ + 190, + 190, + 190, + 190, + 190, + 190 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15135": { + "npcId": 15135, + "attr": {}, + "npclist": "3015_96_90001#3007_96_90005#3013_96_90001#3014_96_90005#3001_96_90001#4002_96_90005", + "npcLv": [ + 192, + 192, + 192, + 192, + 192, + 192 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15136": { + "npcId": 15136, + "attr": {}, + "npclist": "4004_96_90001#4011_96_90005#4015_96_90001#3012_96_90005#4006_96_90001#4013_96_90005", + "npcLv": [ + 192, + 192, + 192, + 192, + 192, + 192 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15137": { + "npcId": 15137, + "attr": {}, + "npclist": "4008_96_90001#4007_96_90005#4001_96_90001#3001_96_90005#3012_96_90001#4005_96_90005", + "npcLv": [ + 192, + 192, + 192, + 192, + 192, + 192 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15138": { + "npcId": 15138, + "attr": {}, + "npclist": "4012_97_90001#3014_97_90005#3015_97_90001#3015_97_90005#3011_97_90001#3009_97_90005", + "npcLv": [ + 194, + 194, + 194, + 194, + 194, + 194 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15139": { + "npcId": 15139, + "attr": {}, + "npclist": "3004_97_90001#4004_97_90005#4013_97_90001#3002_97_90005#3008_97_90001#4009_97_90005", + "npcLv": [ + 194, + 194, + 194, + 194, + 194, + 194 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15140": { + "npcId": 15140, + "attr": {}, + "npclist": "3013_97_90001#4014_97_90005#4012_97_90001#4002_97_90005#4004_97_90001#4015_97_90005", + "npcLv": [ + 194, + 194, + 194, + 194, + 194, + 194 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15141": { + "npcId": 15141, + "attr": {}, + "npclist": "4013_98_90001#3008_98_90005#3006_98_90001#3011_98_90005#3002_98_90001#3007_98_90005", + "npcLv": [ + 196, + 196, + 196, + 196, + 196, + 196 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15142": { + "npcId": 15142, + "attr": {}, + "npclist": "3007_98_90001#4015_98_90005#3012_98_90001#4003_98_90005#4012_98_90001#4007_98_90005", + "npcLv": [ + 196, + 196, + 196, + 196, + 196, + 196 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15143": { + "npcId": 15143, + "attr": {}, + "npclist": "3015_98_90001#4005_98_90005#4009_98_90001#4014_98_90005#4011_98_90001#4006_98_90005", + "npcLv": [ + 196, + 196, + 196, + 196, + 196, + 196 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15144": { + "npcId": 15144, + "attr": {}, + "npclist": "4012_99_90001#3002_99_90005#3002_99_90001#4013_99_90005#3009_99_90001#4010_99_90005", + "npcLv": [ + 199, + 199, + 199, + 199, + 199, + 199 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15145": { + "npcId": 15145, + "attr": {}, + "npclist": "4015_99_90001#3004_99_90005#4008_99_90001#4011_99_90005#4003_99_90001#3010_99_90005", + "npcLv": [ + 199, + 199, + 199, + 199, + 199, + 199 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15146": { + "npcId": 15146, + "attr": {}, + "npclist": "3007_99_90001#3010_99_90005#3001_99_90001#4007_99_90005#3012_99_90001#4014_99_90005", + "npcLv": [ + 199, + 199, + 199, + 199, + 199, + 199 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15147": { + "npcId": 15147, + "attr": {}, + "npclist": "3008_100_90001#3014_100_90005#3010_100_90001#3011_100_90005#4013_100_90001#4004_100_90005", + "npcLv": [ + 201, + 201, + 201, + 201, + 201, + 201 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15148": { + "npcId": 15148, + "attr": {}, + "npclist": "4008_100_90001#4010_100_90005#4015_100_90001#4012_100_90005#3006_100_90001#3009_100_90005", + "npcLv": [ + 201, + 201, + 201, + 201, + 201, + 201 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15149": { + "npcId": 15149, + "attr": {}, + "npclist": "4003_100_90001#4009_100_90005#4011_100_90001#4006_100_90005#3013_100_90001#3015_100_90005", + "npcLv": [ + 201, + 201, + 201, + 201, + 201, + 201 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15150": { + "npcId": 15150, + "attr": {}, + "npclist": "4002_102_90001#3009_102_90005#4005_102_90001#3004_102_90005#3015_102_90001#4012_102_90005", + "npcLv": [ + 206, + 206, + 206, + 206, + 206, + 206 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15151": { + "npcId": 15151, + "attr": {}, + "npclist": "3002_102_90001#3007_102_90005#3010_102_90001#3001_102_90005#4013_102_90001#2002_102_90005", + "npcLv": [ + 206, + 206, + 206, + 206, + 206, + 206 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15152": { + "npcId": 15152, + "attr": {}, + "npclist": "4009_104_90001#4004_104_90005#3013_104_90001#3009_104_90005#4011_104_90001#4005_104_90005", + "npcLv": [ + 210, + 210, + 210, + 210, + 210, + 210 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15153": { + "npcId": 15153, + "attr": {}, + "npclist": "3009_104_90001#3002_104_90005#3012_104_90001#4007_104_90005#4008_104_90001#4015_104_90005", + "npcLv": [ + 210, + 210, + 210, + 210, + 210, + 210 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15154": { + "npcId": 15154, + "attr": {}, + "npclist": "3011_106_90001#3014_106_90005#4012_106_90001#3002_106_90005#3008_106_90001#3007_106_90005", + "npcLv": [ + 215, + 215, + 215, + 215, + 215, + 215 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15155": { + "npcId": 15155, + "attr": {}, + "npclist": "3013_106_90001#3015_106_90005#4006_106_90001#4005_106_90005#4002_106_90001#3012_106_90005", + "npcLv": [ + 215, + 215, + 215, + 215, + 215, + 215 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15156": { + "npcId": 15156, + "attr": {}, + "npclist": "4012_108_90001#4015_108_90005#3001_108_90001#3007_108_90005#3002_108_90001#4011_108_90005", + "npcLv": [ + 219, + 219, + 219, + 219, + 219, + 219 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15157": { + "npcId": 15157, + "attr": {}, + "npclist": "4010_108_90001#3005_108_90005#3003_108_90001#4009_108_90005#4004_108_90001#3007_108_90005", + "npcLv": [ + 219, + 219, + 219, + 219, + 219, + 219 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15158": { + "npcId": 15158, + "attr": {}, + "npclist": "4015_110_90001#4013_110_90005#4012_110_90001#3008_110_90005#3013_110_90001#4003_110_90005", + "npcLv": [ + 224, + 224, + 224, + 224, + 224, + 224 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15159": { + "npcId": 15159, + "attr": {}, + "npclist": "3004_110_90001#4006_110_90005#4007_110_90001#4014_110_90005#4001_110_90001#3008_110_90005", + "npcLv": [ + 224, + 224, + 224, + 224, + 224, + 224 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15160": { + "npcId": 15160, + "attr": {}, + "npclist": "3009_112_90001#4003_112_90005#3011_112_90001#3007_112_90005#3002_112_90001#3003_112_90005", + "npcLv": [ + 229, + 229, + 229, + 229, + 229, + 229 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15161": { + "npcId": 15161, + "attr": {}, + "npclist": "4011_112_90001#3013_112_90005#4013_112_90001#4006_112_90005#3014_112_90001#3012_112_90005", + "npcLv": [ + 229, + 229, + 229, + 229, + 229, + 229 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15162": { + "npcId": 15162, + "attr": {}, + "npclist": "4015_114_90001#4010_114_90005#4005_114_90001#3010_114_90005#4012_114_90001#4004_114_90005", + "npcLv": [ + 233, + 233, + 233, + 233, + 233, + 233 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15163": { + "npcId": 15163, + "attr": {}, + "npclist": "3010_114_90001#4014_114_90005#4002_114_90001#4011_114_90005#3007_114_90001#4013_114_90005", + "npcLv": [ + 233, + 233, + 233, + 233, + 233, + 233 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15164": { + "npcId": 15164, + "attr": {}, + "npclist": "2001_116_90001#4004_116_90005#3001_116_90001#4008_116_90005#3011_116_90001#3013_116_90005", + "npcLv": [ + 238, + 238, + 238, + 238, + 238, + 238 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15165": { + "npcId": 15165, + "attr": {}, + "npclist": "3013_116_90001#4012_116_90005#4003_116_90001#3014_116_90005#4006_116_90001#3002_116_90005", + "npcLv": [ + 238, + 238, + 238, + 238, + 238, + 238 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15166": { + "npcId": 15166, + "attr": {}, + "npclist": "3015_118_90001#3007_118_90005#3005_118_90001#3002_118_90005#3011_118_90001#4009_118_90005", + "npcLv": [ + 243, + 243, + 243, + 243, + 243, + 243 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15167": { + "npcId": 15167, + "attr": {}, + "npclist": "4014_118_90001#3010_118_90005#4008_118_90001#4010_118_90005#4003_118_90001#4011_118_90005", + "npcLv": [ + 243, + 243, + 243, + 243, + 243, + 243 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15168": { + "npcId": 15168, + "attr": {}, + "npclist": "3006_120_90001#4014_120_90005#4013_120_90001#4015_120_90005#3015_120_90001#4003_120_90005", + "npcLv": [ + 248, + 248, + 248, + 248, + 248, + 248 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15169": { + "npcId": 15169, + "attr": {}, + "npclist": "3008_120_90001#4012_120_90005#3009_120_90001#3013_120_90005#4007_120_90001#3007_120_90005", + "npcLv": [ + 248, + 248, + 248, + 248, + 248, + 248 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15170": { + "npcId": 15170, + "attr": {}, + "npclist": "4013_122_90001#2002_122_90005#4011_122_90001#3009_122_90005#3003_122_90001#4015_122_90005", + "npcLv": [ + 252, + 252, + 252, + 252, + 252, + 252 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15171": { + "npcId": 15171, + "attr": {}, + "npclist": "3012_122_90001#3011_122_90005#3015_122_90001#4009_122_90005#3011_122_90001#3008_122_90005", + "npcLv": [ + 252, + 252, + 252, + 252, + 252, + 252 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15172": { + "npcId": 15172, + "attr": {}, + "npclist": "3010_124_90001#3002_124_90005#4014_124_90001#4012_124_90005#4006_124_90001#4010_124_90005", + "npcLv": [ + 257, + 257, + 257, + 257, + 257, + 257 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15173": { + "npcId": 15173, + "attr": {}, + "npclist": "4002_124_90001#3014_124_90005#4013_124_90001#4003_124_90005#3013_124_90001#4005_124_90005", + "npcLv": [ + 257, + 257, + 257, + 257, + 257, + 257 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15174": { + "npcId": 15174, + "attr": {}, + "npclist": "3001_126_90001#4008_126_90005#4004_126_90001#3008_126_90005#3009_126_90001#3011_126_90005", + "npcLv": [ + 262, + 262, + 262, + 262, + 262, + 262 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15175": { + "npcId": 15175, + "attr": {}, + "npclist": "4011_126_90001#4009_126_90005#3002_126_90001#4014_126_90005#4012_126_90001#4013_126_90005", + "npcLv": [ + 262, + 262, + 262, + 262, + 262, + 262 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15176": { + "npcId": 15176, + "attr": {}, + "npclist": "3009_128_90001#4005_128_90005#3008_128_90001#4006_128_90005#3007_128_90001#4001_128_90005", + "npcLv": [ + 267, + 267, + 267, + 267, + 267, + 267 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15177": { + "npcId": 15177, + "attr": {}, + "npclist": "4015_128_90001#3004_128_90005#3001_128_90001#4011_128_90005#4007_128_90001#3002_128_90005", + "npcLv": [ + 267, + 267, + 267, + 267, + 267, + 267 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15178": { + "npcId": 15178, + "attr": {}, + "npclist": "4009_130_90001#3010_130_90005#4010_130_90001#3005_130_90005#4004_130_90001#4008_130_90005", + "npcLv": [ + 271, + 271, + 271, + 271, + 271, + 271 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15179": { + "npcId": 15179, + "attr": {}, + "npclist": "3015_130_90001#3008_130_90005#3007_130_90001#3013_130_90005#3009_130_90001#4014_130_90005", + "npcLv": [ + 271, + 271, + 271, + 271, + 271, + 271 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15180": { + "npcId": 15180, + "attr": {}, + "npclist": "3002_132_90001#4007_132_90005#4005_132_90001#3007_132_90005#3015_132_90001#3007_132_90005", + "npcLv": [ + 276, + 276, + 276, + 276, + 276, + 276 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15181": { + "npcId": 15181, + "attr": {}, + "npclist": "3012_132_90001#3009_132_90005#4014_132_90001#3014_132_90005#3015_132_90001#4012_132_90005", + "npcLv": [ + 276, + 276, + 276, + 276, + 276, + 276 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15182": { + "npcId": 15182, + "attr": {}, + "npclist": "4014_134_90001#3013_134_90005#3011_134_90001#3010_134_90005#3001_134_90001#3009_134_90005", + "npcLv": [ + 281, + 281, + 281, + 281, + 281, + 281 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15183": { + "npcId": 15183, + "attr": {}, + "npclist": "3011_134_90001#4006_134_90005#4009_134_90001#4013_134_90005#4002_134_90001#4011_134_90005", + "npcLv": [ + 281, + 281, + 281, + 281, + 281, + 281 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15184": { + "npcId": 15184, + "attr": {}, + "npclist": "3007_136_90001#4001_136_90005#3013_136_90001#3011_136_90005#4003_136_90001#3007_136_90005", + "npcLv": [ + 286, + 286, + 286, + 286, + 286, + 286 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15185": { + "npcId": 15185, + "attr": {}, + "npclist": "4013_136_90001#4012_136_90005#4015_136_90001#3010_136_90005#4014_136_90001#3014_136_90005", + "npcLv": [ + 286, + 286, + 286, + 286, + 286, + 286 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15186": { + "npcId": 15186, + "attr": {}, + "npclist": "4010_138_90001#4008_138_90005#4011_138_90001#3002_138_90005#3013_138_90001#3001_138_90005", + "npcLv": [ + 290, + 290, + 290, + 290, + 290, + 290 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15187": { + "npcId": 15187, + "attr": {}, + "npclist": "3009_138_90001#4014_138_90005#3015_138_90001#4007_138_90005#4006_138_90001#4009_138_90005", + "npcLv": [ + 290, + 290, + 290, + 290, + 290, + 290 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15188": { + "npcId": 15188, + "attr": {}, + "npclist": "3007_140_90001#3003_140_90005#3007_140_90001#3012_140_90005#3005_140_90001#4002_140_90005", + "npcLv": [ + 295, + 295, + 295, + 295, + 295, + 295 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15189": { + "npcId": 15189, + "attr": {}, + "npclist": "4012_140_90001#3013_140_90005#4013_140_90001#2002_140_90005#4005_140_90001#3002_140_90005", + "npcLv": [ + 295, + 295, + 295, + 295, + 295, + 295 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15190": { + "npcId": 15190, + "attr": {}, + "npclist": "4008_142_90001#4003_142_90005#4010_142_90001#3005_142_90005#4015_142_90001#4004_142_90005", + "npcLv": [ + 300, + 300, + 300, + 300, + 300, + 300 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15191": { + "npcId": 15191, + "attr": {}, + "npclist": "4011_142_90001#3007_142_90005#4009_142_90001#3012_142_90005#4007_142_90001#3005_142_90005", + "npcLv": [ + 300, + 300, + 300, + 300, + 300, + 300 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15192": { + "npcId": 15192, + "attr": {}, + "npclist": "3013_144_90001#3014_144_90005#3015_144_90001#3009_144_90005#3010_144_90001#4014_144_90005", + "npcLv": [ + 305, + 305, + 305, + 305, + 305, + 305 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15193": { + "npcId": 15193, + "attr": {}, + "npclist": "4015_144_90001#3005_144_90005#3010_144_90001#3002_144_90005#4013_144_90001#3015_144_90005", + "npcLv": [ + 305, + 305, + 305, + 305, + 305, + 305 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15194": { + "npcId": 15194, + "attr": {}, + "npclist": "3013_146_90001#4002_146_90005#4012_146_90001#4010_146_90005#3001_146_90001#3002_146_90005", + "npcLv": [ + 310, + 310, + 310, + 310, + 310, + 310 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15195": { + "npcId": 15195, + "attr": {}, + "npclist": "4009_146_90001#4004_146_90005#4008_146_90001#4011_146_90005#3013_146_90001#4006_146_90005", + "npcLv": [ + 310, + 310, + 310, + 310, + 310, + 310 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15196": { + "npcId": 15196, + "attr": {}, + "npclist": "3004_148_90001#3010_148_90005#4007_148_90001#3015_148_90005#3012_148_90001#3009_148_90005", + "npcLv": [ + 315, + 315, + 315, + 315, + 315, + 315 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15197": { + "npcId": 15197, + "attr": {}, + "npclist": "4014_148_90001#3008_148_90005#3002_148_90001#3013_148_90005#3011_148_90001#4010_148_90005", + "npcLv": [ + 315, + 315, + 315, + 315, + 315, + 315 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15198": { + "npcId": 15198, + "attr": {}, + "npclist": "3005_150_90001#4013_150_90005#4006_150_90001#3013_150_90005#4005_150_90001#3011_150_90005", + "npcLv": [ + 320, + 320, + 320, + 320, + 320, + 320 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15199": { + "npcId": 15199, + "attr": {}, + "npclist": "3008_150_90001#4009_150_90005#4002_150_90001#4015_150_90005#4012_150_90001#2001_150_90005", + "npcLv": [ + 320, + 320, + 320, + 320, + 320, + 320 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15200": { + "npcId": 15200, + "attr": {}, + "npclist": "4001_152_90070#3015_152_90005#3009_152_90005#3004_152_90005#3010_152_90005#4011_152_90005", + "npcLv": [ + 324, + 324, + 324, + 324, + 324, + 324 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15201": { + "npcId": 15201, + "attr": {}, + "npclist": "4006_152_90070#4014_152_90070#4003_152_90005#3005_152_90070#3013_152_90070#3012_152_90005", + "npcLv": [ + 324, + 324, + 324, + 324, + 324, + 324 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15202": { + "npcId": 15202, + "attr": {}, + "npclist": "4013_154_90070#4005_154_90070#3001_154_90072#4015_154_90073#3008_154_90070#3015_154_90074", + "npcLv": [ + 329, + 329, + 329, + 329, + 329, + 329 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15203": { + "npcId": 15203, + "attr": {}, + "npclist": "2002_154_90070#3005_154_90070#3006_154_90072#4009_154_90073#4003_154_90070#4012_154_90074", + "npcLv": [ + 329, + 329, + 329, + 329, + 329, + 329 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15204": { + "npcId": 15204, + "attr": {}, + "npclist": "3011_156_90070#4007_156_90070#4011_156_90072#4014_156_90073#3009_156_90070#3013_156_90074", + "npcLv": [ + 334, + 334, + 334, + 334, + 334, + 334 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15205": { + "npcId": 15205, + "attr": {}, + "npclist": "4004_156_90070#3012_156_90070#3010_156_90072#3014_156_90073#4008_156_90070#3006_156_90074", + "npcLv": [ + 334, + 334, + 334, + 334, + 334, + 334 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15206": { + "npcId": 15206, + "attr": {}, + "npclist": "4010_158_90070#4005_158_90070#4012_158_90072#3007_158_90073#3005_158_90070#3011_158_90074", + "npcLv": [ + 339, + 339, + 339, + 339, + 339, + 339 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15207": { + "npcId": 15207, + "attr": {}, + "npclist": "3015_158_90070#4001_158_90070#3013_158_90072#4007_158_90073#3009_158_90070#4009_158_90074", + "npcLv": [ + 339, + 339, + 339, + 339, + 339, + 339 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15208": { + "npcId": 15208, + "attr": {}, + "npclist": "4014_160_90070#4011_160_90070#4008_160_90072#4006_160_90073#3014_160_90070#3015_160_90074", + "npcLv": [ + 344, + 344, + 344, + 344, + 344, + 344 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15209": { + "npcId": 15209, + "attr": {}, + "npclist": "3007_160_90070#4012_160_90070#3009_160_90072#3002_160_90073#3013_160_90070#4007_160_90074", + "npcLv": [ + 344, + 344, + 344, + 344, + 344, + 344 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15210": { + "npcId": 15210, + "attr": {}, + "npclist": "4015_162_90070#3002_162_90070#3001_162_90072#4005_162_90073#3008_162_90070#3005_162_90074", + "npcLv": [ + 349, + 349, + 349, + 349, + 349, + 349 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15211": { + "npcId": 15211, + "attr": {}, + "npclist": "4011_162_90070#3003_162_90070#4010_162_90072#4002_162_90073#4009_162_90070#3006_162_90074", + "npcLv": [ + 349, + 349, + 349, + 349, + 349, + 349 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15212": { + "npcId": 15212, + "attr": {}, + "npclist": "3012_164_90070#3008_164_90070#3005_164_90072#4004_164_90073#3013_164_90070#4006_164_90074", + "npcLv": [ + 354, + 354, + 354, + 354, + 354, + 354 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15213": { + "npcId": 15213, + "attr": {}, + "npclist": "3013_164_90070#4008_164_90070#4011_164_90072#3005_164_90073#3007_164_90070#3010_164_90074", + "npcLv": [ + 354, + 354, + 354, + 354, + 354, + 354 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15214": { + "npcId": 15214, + "attr": {}, + "npclist": "3008_166_90070#4007_166_90070#3005_166_90072#3011_166_90073#4010_166_90070#4003_166_90074", + "npcLv": [ + 359, + 359, + 359, + 359, + 359, + 359 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15215": { + "npcId": 15215, + "attr": {}, + "npclist": "4009_166_90070#4006_166_90070#4012_166_90072#3015_166_90073#3004_166_90070#3014_166_90074", + "npcLv": [ + 359, + 359, + 359, + 359, + 359, + 359 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15216": { + "npcId": 15216, + "attr": {}, + "npclist": "3013_168_90070#4004_168_90070#3007_168_90072#4015_168_90073#4012_168_90070#4014_168_90074", + "npcLv": [ + 364, + 364, + 364, + 364, + 364, + 364 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15217": { + "npcId": 15217, + "attr": {}, + "npclist": "3009_168_90070#3008_168_90070#3013_168_90072#4007_168_90073#4011_168_90070#4005_168_90074", + "npcLv": [ + 364, + 364, + 364, + 364, + 364, + 364 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15218": { + "npcId": 15218, + "attr": {}, + "npclist": "3002_170_90070#4012_170_90070#4014_170_90072#3011_170_90073#2002_170_90070#3002_170_90074", + "npcLv": [ + 369, + 369, + 369, + 369, + 369, + 369 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15219": { + "npcId": 15219, + "attr": {}, + "npclist": "3006_170_90070#3008_170_90070#3010_170_90072#4009_170_90073#4007_170_90070#3009_170_90074", + "npcLv": [ + 369, + 369, + 369, + 369, + 369, + 369 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15220": { + "npcId": 15220, + "attr": {}, + "npclist": "3012_172_90070#3015_172_90070#4003_172_90072#3013_172_90073#4013_172_90070#4015_172_90074", + "npcLv": [ + 374, + 374, + 374, + 374, + 374, + 374 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15221": { + "npcId": 15221, + "attr": {}, + "npclist": "4014_172_90070#3005_172_90070#3002_172_90072#4012_172_90073#3001_172_90070#4008_172_90074", + "npcLv": [ + 374, + 374, + 374, + 374, + 374, + 374 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15222": { + "npcId": 15222, + "attr": {}, + "npclist": "4007_174_90070#4005_174_90070#4013_174_90072#3006_174_90073#3007_174_90070#3015_174_90074", + "npcLv": [ + 379, + 379, + 379, + 379, + 379, + 379 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15223": { + "npcId": 15223, + "attr": {}, + "npclist": "3010_174_90070#3006_174_90070#4002_174_90072#4001_174_90073#4007_174_90070#4010_174_90074", + "npcLv": [ + 379, + 379, + 379, + 379, + 379, + 379 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15224": { + "npcId": 15224, + "attr": {}, + "npclist": "3015_176_90070#3007_176_90070#3005_176_90072#4011_176_90073#3008_176_90070#4012_176_90074", + "npcLv": [ + 384, + 384, + 384, + 384, + 384, + 384 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15225": { + "npcId": 15225, + "attr": {}, + "npclist": "4014_176_90070#4009_176_90070#4006_176_90072#3001_176_90073#4004_176_90070#4005_176_90074", + "npcLv": [ + 384, + 384, + 384, + 384, + 384, + 384 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15226": { + "npcId": 15226, + "attr": {}, + "npclist": "4015_178_90070#3014_178_90070#3002_178_90072#4012_178_90073#3013_178_90070#3010_178_90074", + "npcLv": [ + 389, + 389, + 389, + 389, + 389, + 389 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15227": { + "npcId": 15227, + "attr": {}, + "npclist": "4008_178_90070#4010_178_90070#3007_178_90072#4009_178_90073#3005_178_90070#3013_178_90074", + "npcLv": [ + 389, + 389, + 389, + 389, + 389, + 389 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15228": { + "npcId": 15228, + "attr": {}, + "npclist": "4011_180_90070#3010_180_90070#4012_180_90072#4004_180_90073#3003_180_90070#3008_180_90074", + "npcLv": [ + 394, + 394, + 394, + 394, + 394, + 394 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15229": { + "npcId": 15229, + "attr": {}, + "npclist": "3007_180_90070#4007_180_90070#3010_180_90072#4014_180_90073#3001_180_90070#3005_180_90074", + "npcLv": [ + 394, + 394, + 394, + 394, + 394, + 394 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15230": { + "npcId": 15230, + "attr": {}, + "npclist": "4010_182_90070#4005_182_90070#4011_182_90072#3007_182_90073#3002_182_90070#4009_182_90074", + "npcLv": [ + 399, + 399, + 399, + 399, + 399, + 399 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15231": { + "npcId": 15231, + "attr": {}, + "npclist": "4012_182_90070#4015_182_90070#4003_182_90072#3011_182_90073#3013_182_90070#3012_182_90074", + "npcLv": [ + 399, + 399, + 399, + 399, + 399, + 399 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15232": { + "npcId": 15232, + "attr": {}, + "npclist": "4007_184_90070#3007_184_90070#3005_184_90072#3002_184_90073#3009_184_90070#4007_184_90074", + "npcLv": [ + 404, + 404, + 404, + 404, + 404, + 404 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15233": { + "npcId": 15233, + "attr": {}, + "npclist": "3008_184_90070#4008_184_90070#4014_184_90072#3002_184_90073#4011_184_90070#4014_184_90074", + "npcLv": [ + 404, + 404, + 404, + 404, + 404, + 404 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15234": { + "npcId": 15234, + "attr": {}, + "npclist": "3010_186_90070#4012_186_90070#4010_186_90072#4009_186_90073#4006_186_90070#4003_186_90074", + "npcLv": [ + 409, + 409, + 409, + 409, + 409, + 409 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15235": { + "npcId": 15235, + "attr": {}, + "npclist": "3011_186_90070#3013_186_90070#3004_186_90072#3014_186_90073#3012_186_90070#3013_186_90074", + "npcLv": [ + 409, + 409, + 409, + 409, + 409, + 409 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15236": { + "npcId": 15236, + "attr": {}, + "npclist": "3011_188_90070#4013_188_90070#3009_188_90072#4008_188_90073#4012_188_90070#3003_188_90074", + "npcLv": [ + 414, + 414, + 414, + 414, + 414, + 414 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15237": { + "npcId": 15237, + "attr": {}, + "npclist": "4004_188_90070#4009_188_90070#4005_188_90072#3005_188_90073#4010_188_90070#4011_188_90074", + "npcLv": [ + 414, + 414, + 414, + 414, + 414, + 414 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15238": { + "npcId": 15238, + "attr": {}, + "npclist": "3003_190_90070#3005_190_90070#3002_190_90072#3006_190_90073#4002_190_90070#3001_190_90074", + "npcLv": [ + 419, + 419, + 419, + 419, + 419, + 419 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15239": { + "npcId": 15239, + "attr": {}, + "npclist": "3012_190_90070#4014_190_90070#3010_190_90072#4012_190_90073#3002_190_90070#4005_190_90074", + "npcLv": [ + 419, + 419, + 419, + 419, + 419, + 419 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15240": { + "npcId": 15240, + "attr": {}, + "npclist": "4007_192_90070#4006_192_90070#4011_192_90072#4007_192_90073#3014_192_90070#3007_192_90074", + "npcLv": [ + 424, + 424, + 424, + 424, + 424, + 424 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15241": { + "npcId": 15241, + "attr": {}, + "npclist": "4003_192_90070#3013_192_90070#3005_192_90072#4015_192_90073#3005_192_90070#4004_192_90074", + "npcLv": [ + 424, + 424, + 424, + 424, + 424, + 424 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15242": { + "npcId": 15242, + "attr": {}, + "npclist": "3009_194_90070#3001_194_90070#3011_194_90072#4013_194_90073#3015_194_90070#4015_194_90074", + "npcLv": [ + 429, + 429, + 429, + 429, + 429, + 429 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15243": { + "npcId": 15243, + "attr": {}, + "npclist": "4014_194_90070#4012_194_90070#4009_194_90072#3013_194_90073#3010_194_90070#4001_194_90074", + "npcLv": [ + 429, + 429, + 429, + 429, + 429, + 429 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15244": { + "npcId": 15244, + "attr": {}, + "npclist": "3008_196_90070#4010_196_90070#3002_196_90072#3008_196_90073#3003_196_90070#4008_196_90074", + "npcLv": [ + 434, + 434, + 434, + 434, + 434, + 434 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15245": { + "npcId": 15245, + "attr": {}, + "npclist": "4011_196_90070#3014_196_90070#4004_196_90072#3001_196_90073#3007_196_90070#3005_196_90074", + "npcLv": [ + 434, + 434, + 434, + 434, + 434, + 434 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15246": { + "npcId": 15246, + "attr": {}, + "npclist": "4015_198_90070#3002_198_90070#2002_198_90072#4014_198_90073#4009_198_90070#4007_198_90074", + "npcLv": [ + 439, + 439, + 439, + 439, + 439, + 439 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15247": { + "npcId": 15247, + "attr": {}, + "npclist": "4010_198_90070#4012_198_90070#4011_198_90072#3010_198_90073#4013_198_90070#3011_198_90074", + "npcLv": [ + 439, + 439, + 439, + 439, + 439, + 439 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15248": { + "npcId": 15248, + "attr": {}, + "npclist": "3005_200_90070#3004_200_90070#4007_200_90072#3015_200_90073#4006_200_90070#3009_200_90074", + "npcLv": [ + 444, + 444, + 444, + 444, + 444, + 444 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15249": { + "npcId": 15249, + "attr": {}, + "npclist": "4001_200_90070#4008_200_90070#4002_200_90072#3013_200_90073#4005_200_90070#4014_200_90074", + "npcLv": [ + 444, + 444, + 444, + 444, + 444, + 444 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15250": { + "npcId": 15250, + "attr": {}, + "npclist": "3002_203_90070#4013_203_90070#4012_203_90072#4004_203_90073#3010_203_90070#4009_203_90074", + "npcLv": [ + 452, + 452, + 452, + 452, + 452, + 452 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15251": { + "npcId": 15251, + "attr": {}, + "npclist": "3002_203_90070#4007_203_90070#3003_203_90072#4008_203_90073#4011_203_90070#4003_203_90074", + "npcLv": [ + 452, + 452, + 452, + 452, + 452, + 452 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15252": { + "npcId": 15252, + "attr": {}, + "npclist": "4014_206_90070#2002_206_90070#4015_206_90072#3008_206_90073#3010_206_90070#4013_206_90074", + "npcLv": [ + 460, + 460, + 460, + 460, + 460, + 460 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15253": { + "npcId": 15253, + "attr": {}, + "npclist": "3006_206_90070#3012_206_90070#4005_206_90072#3013_206_90073#4010_206_90070#3001_206_90074", + "npcLv": [ + 460, + 460, + 460, + 460, + 460, + 460 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15254": { + "npcId": 15254, + "attr": {}, + "npclist": "3012_209_90070#3005_209_90070#4009_209_90072#3007_209_90073#3011_209_90070#3013_209_90074", + "npcLv": [ + 467, + 467, + 467, + 467, + 467, + 467 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15255": { + "npcId": 15255, + "attr": {}, + "npclist": "4015_209_90070#4010_209_90070#3014_209_90072#4007_209_90073#4012_209_90070#3009_209_90074", + "npcLv": [ + 467, + 467, + 467, + 467, + 467, + 467 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15256": { + "npcId": 15256, + "attr": {}, + "npclist": "3012_212_90070#4005_212_90070#3013_212_90072#3010_212_90073#4006_212_90070#4011_212_90074", + "npcLv": [ + 475, + 475, + 475, + 475, + 475, + 475 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15257": { + "npcId": 15257, + "attr": {}, + "npclist": "4008_212_90070#4004_212_90070#4006_212_90072#4014_212_90073#3002_212_90070#3008_212_90074", + "npcLv": [ + 475, + 475, + 475, + 475, + 475, + 475 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15258": { + "npcId": 15258, + "attr": {}, + "npclist": "4012_215_90070#3011_215_90070#3007_215_90072#4005_215_90073#3006_215_90070#3007_215_90074", + "npcLv": [ + 483, + 483, + 483, + 483, + 483, + 483 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15259": { + "npcId": 15259, + "attr": {}, + "npclist": "2002_215_90070#4009_215_90070#3002_215_90072#3005_215_90073#3001_215_90070#4012_215_90074", + "npcLv": [ + 483, + 483, + 483, + 483, + 483, + 483 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15260": { + "npcId": 15260, + "attr": {}, + "npclist": "3015_218_90070#3005_218_90070#4011_218_90072#4008_218_90073#4007_218_90070#4010_218_90074", + "npcLv": [ + 490, + 490, + 490, + 490, + 490, + 490 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15261": { + "npcId": 15261, + "attr": {}, + "npclist": "3008_218_90070#4014_218_90070#3009_218_90072#3007_218_90073#4015_218_90070#3015_218_90074", + "npcLv": [ + 490, + 490, + 490, + 490, + 490, + 490 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15262": { + "npcId": 15262, + "attr": {}, + "npclist": "3004_221_90070#4013_221_90070#4005_221_90072#3014_221_90073#4003_221_90070#3005_221_90074", + "npcLv": [ + 498, + 498, + 498, + 498, + 498, + 498 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15263": { + "npcId": 15263, + "attr": {}, + "npclist": "4011_221_90070#4007_221_90070#4002_221_90072#4009_221_90073#3011_221_90070#4008_221_90074", + "npcLv": [ + 498, + 498, + 498, + 498, + 498, + 498 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15264": { + "npcId": 15264, + "attr": {}, + "npclist": "4010_224_90070#3012_224_90070#3001_224_90072#4004_224_90073#3005_224_90070#4014_224_90074", + "npcLv": [ + 506, + 506, + 506, + 506, + 506, + 506 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15265": { + "npcId": 15265, + "attr": {}, + "npclist": "3010_224_90070#4012_224_90070#3013_224_90072#3005_224_90073#3002_224_90070#4007_224_90074", + "npcLv": [ + 506, + 506, + 506, + 506, + 506, + 506 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15266": { + "npcId": 15266, + "attr": {}, + "npclist": "4015_227_90070#4014_227_90070#4013_227_90072#3008_227_90073#3002_227_90070#4009_227_90074", + "npcLv": [ + 514, + 514, + 514, + 514, + 514, + 514 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15267": { + "npcId": 15267, + "attr": {}, + "npclist": "4002_227_90070#4006_227_90070#4008_227_90072#5001_227_90073#4007_227_90070#4004_227_90074", + "npcLv": [ + 514, + 514, + 514, + 514, + 514, + 514 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15268": { + "npcId": 15268, + "attr": {}, + "npclist": "3002_230_90070#3007_230_90070#3013_230_90072#4012_230_90073#3011_230_90070#3006_230_90074", + "npcLv": [ + 521, + 521, + 521, + 521, + 521, + 521 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15269": { + "npcId": 15269, + "attr": {}, + "npclist": "4014_230_90070#4003_230_90070#4011_230_90072#3004_230_90073#5002_230_90070#4012_230_90074", + "npcLv": [ + 521, + 521, + 521, + 521, + 521, + 521 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15270": { + "npcId": 15270, + "attr": {}, + "npclist": "3010_233_90070#2002_233_90070#4010_233_90072#4009_233_90073#5003_233_90070#4005_233_90074", + "npcLv": [ + 529, + 529, + 529, + 529, + 529, + 529 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15271": { + "npcId": 15271, + "attr": {}, + "npclist": "5001_233_90070#3005_233_90070#2002_233_90072#4013_233_90073#3008_233_90070#5002_233_90074", + "npcLv": [ + 529, + 529, + 529, + 529, + 529, + 529 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15272": { + "npcId": 15272, + "attr": {}, + "npclist": "4008_236_90070#4009_236_90070#4012_236_90072#5003_236_90073#5004_236_90070#4002_236_90074", + "npcLv": [ + 537, + 537, + 537, + 537, + 537, + 537 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15273": { + "npcId": 15273, + "attr": {}, + "npclist": "3003_236_90070#4004_236_90070#3002_236_90072#4014_236_90073#4011_236_90070#2001_236_90074", + "npcLv": [ + 537, + 537, + 537, + 537, + 537, + 537 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15274": { + "npcId": 15274, + "attr": {}, + "npclist": "3015_239_90070#4007_239_90070#4007_239_90072#4003_239_90073#4010_239_90070#4013_239_90074", + "npcLv": [ + 545, + 545, + 545, + 545, + 545, + 545 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15275": { + "npcId": 15275, + "attr": {}, + "npclist": "4009_239_90070#5002_239_90070#4015_239_90072#4012_239_90073#4005_239_90070#3008_239_90074", + "npcLv": [ + 545, + 545, + 545, + 545, + 545, + 545 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15276": { + "npcId": 15276, + "attr": {}, + "npclist": "3003_242_90070#4008_242_90070#3008_242_90072#3006_242_90073#5001_242_90070#4011_242_90074", + "npcLv": [ + 553, + 553, + 553, + 553, + 553, + 553 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15277": { + "npcId": 15277, + "attr": {}, + "npclist": "4013_242_90070#5003_242_90070#4009_242_90072#4004_242_90073#3010_242_90070#4014_242_90074", + "npcLv": [ + 553, + 553, + 553, + 553, + 553, + 553 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15278": { + "npcId": 15278, + "attr": {}, + "npclist": "4012_245_90070#4005_245_90070#4008_245_90072#3008_245_90073#5003_245_90070#3006_245_90074", + "npcLv": [ + 561, + 561, + 561, + 561, + 561, + 561 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15279": { + "npcId": 15279, + "attr": {}, + "npclist": "5002_245_90070#3011_245_90070#4011_245_90072#4006_245_90073#4003_245_90070#5004_245_90074", + "npcLv": [ + 561, + 561, + 561, + 561, + 561, + 561 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15280": { + "npcId": 15280, + "attr": {}, + "npclist": "4002_248_90070#4007_248_90070#3015_248_90072#4012_248_90073#4004_248_90070#5001_248_90074", + "npcLv": [ + 569, + 569, + 569, + 569, + 569, + 569 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15281": { + "npcId": 15281, + "attr": {}, + "npclist": "4014_248_90070#5002_248_90070#5003_248_90072#3007_248_90073#4001_248_90070#4010_248_90074", + "npcLv": [ + 569, + 569, + 569, + 569, + 569, + 569 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15282": { + "npcId": 15282, + "attr": {}, + "npclist": "4011_251_90070#3004_251_90070#5003_251_90072#4013_251_90073#4009_251_90070#5004_251_90074", + "npcLv": [ + 576, + 576, + 576, + 576, + 576, + 576 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15283": { + "npcId": 15283, + "attr": {}, + "npclist": "3008_251_90070#4014_251_90070#3012_251_90072#4008_251_90073#5005_251_90070#3015_251_90074", + "npcLv": [ + 576, + 576, + 576, + 576, + 576, + 576 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15284": { + "npcId": 15284, + "attr": {}, + "npclist": "5001_254_90070#4010_254_90070#5004_254_90072#5002_254_90073#3012_254_90070#4012_254_90074", + "npcLv": [ + 584, + 584, + 584, + 584, + 584, + 584 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15285": { + "npcId": 15285, + "attr": {}, + "npclist": "5003_254_90070#4006_254_90070#4011_254_90072#3013_254_90073#4015_254_90070#4003_254_90074", + "npcLv": [ + 584, + 584, + 584, + 584, + 584, + 584 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15286": { + "npcId": 15286, + "attr": {}, + "npclist": "4014_257_90070#3012_257_90070#4007_257_90072#5003_257_90073#4007_257_90070#4004_257_90074", + "npcLv": [ + 592, + 592, + 592, + 592, + 592, + 592 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15287": { + "npcId": 15287, + "attr": {}, + "npclist": "3013_257_90070#5001_257_90070#4005_257_90072#4011_257_90073#3002_257_90070#4009_257_90074", + "npcLv": [ + 592, + 592, + 592, + 592, + 592, + 592 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15288": { + "npcId": 15288, + "attr": {}, + "npclist": "5002_260_90070#4001_260_90070#3003_260_90072#5003_260_90073#4008_260_90070#3008_260_90074", + "npcLv": [ + 600, + 600, + 600, + 600, + 600, + 600 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15289": { + "npcId": 15289, + "attr": {}, + "npclist": "4010_260_90070#4012_260_90070#4004_260_90072#4009_260_90073#4014_260_90070#4013_260_90074", + "npcLv": [ + 600, + 600, + 600, + 600, + 600, + 600 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15290": { + "npcId": 15290, + "attr": {}, + "npclist": "3002_263_90070#4015_263_90070#5002_263_90072#3005_263_90073#4005_263_90070#4011_263_90074", + "npcLv": [ + 608, + 608, + 608, + 608, + 608, + 608 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15291": { + "npcId": 15291, + "attr": {}, + "npclist": "3007_263_90070#4009_263_90070#4010_263_90072#5001_263_90073#5004_263_90070#5005_263_90074", + "npcLv": [ + 608, + 608, + 608, + 608, + 608, + 608 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15292": { + "npcId": 15292, + "attr": {}, + "npclist": "4012_266_90070#3006_266_90070#5003_266_90072#5005_266_90073#3014_266_90070#4006_266_90074", + "npcLv": [ + 616, + 616, + 616, + 616, + 616, + 616 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15293": { + "npcId": 15293, + "attr": {}, + "npclist": "4015_266_90070#4013_266_90070#4005_266_90072#4011_266_90073#5003_266_90070#4014_266_90074", + "npcLv": [ + 616, + 616, + 616, + 616, + 616, + 616 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15294": { + "npcId": 15294, + "attr": {}, + "npclist": "5005_269_90070#4004_269_90070#3009_269_90072#4002_269_90073#5001_269_90070#4008_269_90074", + "npcLv": [ + 624, + 624, + 624, + 624, + 624, + 624 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15295": { + "npcId": 15295, + "attr": {}, + "npclist": "3012_269_90070#4009_269_90070#4012_269_90072#5002_269_90073#4006_269_90070#4001_269_90074", + "npcLv": [ + 624, + 624, + 624, + 624, + 624, + 624 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15296": { + "npcId": 15296, + "attr": {}, + "npclist": "4014_272_90070#3015_272_90070#4011_272_90072#5003_272_90073#4015_272_90070#4007_272_90074", + "npcLv": [ + 632, + 632, + 632, + 632, + 632, + 632 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15297": { + "npcId": 15297, + "attr": {}, + "npclist": "4013_272_90070#5002_272_90070#4003_272_90072#4004_272_90073#4012_272_90070#4005_272_90074", + "npcLv": [ + 632, + 632, + 632, + 632, + 632, + 632 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15298": { + "npcId": 15298, + "attr": {}, + "npclist": "5001_275_90070#4014_275_90070#5004_275_90072#4009_275_90073#5003_275_90070#5005_275_90074", + "npcLv": [ + 640, + 640, + 640, + 640, + 640, + 640 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15299": { + "npcId": 15299, + "attr": {}, + "npclist": "3006_275_90070#3007_275_90070#4008_275_90072#4013_275_90073#3003_275_90070#4002_275_90074", + "npcLv": [ + 640, + 640, + 640, + 640, + 640, + 640 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15300": { + "npcId": 15300, + "attr": {}, + "npclist": "4011_278_90072#4012_278_90070#4006_278_90071#3012_278_90070#5003_278_90074#3006_278_90073", + "npcLv": [ + 648, + 648, + 648, + 648, + 648, + 648 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15301": { + "npcId": 15301, + "attr": {}, + "npclist": "4003_278_90072#5004_278_90070#3006_278_90071#4007_278_90070#4014_278_90074#5005_278_90073", + "npcLv": [ + 648, + 648, + 648, + 648, + 648, + 648 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15302": { + "npcId": 15302, + "attr": {}, + "npclist": "5002_281_90072#3014_281_90070#5005_281_90071#4010_281_90072#4009_281_90074#4004_281_90073", + "npcLv": [ + 656, + 656, + 656, + 656, + 656, + 656 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15303": { + "npcId": 15303, + "attr": {}, + "npclist": "4008_281_90072#5005_281_90070#4005_281_90071#4015_281_90072#4012_281_90074#4013_281_90073", + "npcLv": [ + 656, + 656, + 656, + 656, + 656, + 656 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15304": { + "npcId": 15304, + "attr": {}, + "npclist": "5005_284_90072#3010_284_90070#4011_284_90071#4003_284_90072#5001_284_90074#5003_284_90073", + "npcLv": [ + 664, + 664, + 664, + 664, + 664, + 664 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15305": { + "npcId": 15305, + "attr": {}, + "npclist": "4010_284_90072#5002_284_90070#3013_284_90071#3002_284_90072#4014_284_90074#3012_284_90073", + "npcLv": [ + 664, + 664, + 664, + 664, + 664, + 664 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15306": { + "npcId": 15306, + "attr": {}, + "npclist": "3014_287_90072#4005_287_90070#4015_287_90071#4012_287_90072#3006_287_90074#4009_287_90073", + "npcLv": [ + 672, + 672, + 672, + 672, + 672, + 672 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15307": { + "npcId": 15307, + "attr": {}, + "npclist": "4014_287_90072#4013_287_90070#4004_287_90071#5005_287_90072#5004_287_90074#3002_287_90073", + "npcLv": [ + 672, + 672, + 672, + 672, + 672, + 672 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15308": { + "npcId": 15308, + "attr": {}, + "npclist": "4011_290_90072#3005_290_90070#5003_290_90071#4008_290_90072#5001_290_90074#4003_290_90073", + "npcLv": [ + 680, + 680, + 680, + 680, + 680, + 680 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15309": { + "npcId": 15309, + "attr": {}, + "npclist": "4012_290_90072#4007_290_90070#4002_290_90071#3013_290_90072#4015_290_90074#3004_290_90073", + "npcLv": [ + 680, + 680, + 680, + 680, + 680, + 680 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15310": { + "npcId": 15310, + "attr": {}, + "npclist": "4004_293_90072#4006_293_90070#4009_293_90071#5002_293_90072#4010_293_90074#5004_293_90073", + "npcLv": [ + 688, + 688, + 688, + 688, + 688, + 688 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15311": { + "npcId": 15311, + "attr": {}, + "npclist": "4013_293_90072#4001_293_90070#3007_293_90071#4011_293_90072#3013_293_90074#4008_293_90073", + "npcLv": [ + 688, + 688, + 688, + 688, + 688, + 688 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15312": { + "npcId": 15312, + "attr": {}, + "npclist": "3004_296_90072#4014_296_90070#5004_296_90071#5003_296_90072#5005_296_90074#5001_296_90073", + "npcLv": [ + 697, + 697, + 697, + 697, + 697, + 697 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15313": { + "npcId": 15313, + "attr": {}, + "npclist": "5002_296_90072#2002_296_90070#4012_296_90071#3009_296_90072#4005_296_90074#4015_296_90073", + "npcLv": [ + 697, + 697, + 697, + 697, + 697, + 697 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15314": { + "npcId": 15314, + "attr": {}, + "npclist": "4009_299_90072#4013_299_90070#4003_299_90071#4008_299_90072#4014_299_90074#4010_299_90073", + "npcLv": [ + 705, + 705, + 705, + 705, + 705, + 705 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15315": { + "npcId": 15315, + "attr": {}, + "npclist": "3012_299_90072#3008_299_90070#3002_299_90071#5004_299_90072#4012_299_90074#3013_299_90073", + "npcLv": [ + 705, + 705, + 705, + 705, + 705, + 705 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15316": { + "npcId": 15316, + "attr": {}, + "npclist": "4007_302_90072#4014_302_90070#4004_302_90071#4013_302_90072#3005_302_90074#5003_302_90073", + "npcLv": [ + 713, + 713, + 713, + 713, + 713, + 713 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15317": { + "npcId": 15317, + "attr": {}, + "npclist": "5001_302_90072#4015_302_90070#3013_302_90071#5002_302_90072#5005_302_90074#4005_302_90073", + "npcLv": [ + 713, + 713, + 713, + 713, + 713, + 713 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15318": { + "npcId": 15318, + "attr": {}, + "npclist": "4012_305_90072#4003_305_90070#4009_305_90071#4010_305_90072#4006_305_90074#4011_305_90073", + "npcLv": [ + 721, + 721, + 721, + 721, + 721, + 721 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15319": { + "npcId": 15319, + "attr": {}, + "npclist": "4008_305_90072#4002_305_90070#5003_305_90071#3015_305_90072#4004_305_90074#5004_305_90073", + "npcLv": [ + 721, + 721, + 721, + 721, + 721, + 721 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15320": { + "npcId": 15320, + "attr": {}, + "npclist": "3013_308_90072#3012_308_90070#4011_308_90071#5005_308_90072#5002_308_90074#4013_308_90073", + "npcLv": [ + 729, + 729, + 729, + 729, + 729, + 729 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15321": { + "npcId": 15321, + "attr": {}, + "npclist": "4014_308_90072#5004_308_90070#4012_308_90071#4005_308_90072#4009_308_90074#3009_308_90073", + "npcLv": [ + 729, + 729, + 729, + 729, + 729, + 729 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15322": { + "npcId": 15322, + "attr": {}, + "npclist": "3015_311_90072#4010_311_90070#4007_311_90071#4015_311_90072#3014_311_90074#3001_311_90073", + "npcLv": [ + 737, + 737, + 737, + 737, + 737, + 737 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15323": { + "npcId": 15323, + "attr": {}, + "npclist": "4003_311_90072#4008_311_90070#5002_311_90071#3007_311_90072#3010_311_90074#4004_311_90073", + "npcLv": [ + 737, + 737, + 737, + 737, + 737, + 737 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15324": { + "npcId": 15324, + "attr": {}, + "npclist": "5003_314_90072#4005_314_90070#5005_314_90071#3005_314_90072#4013_314_90074#4006_314_90073", + "npcLv": [ + 745, + 745, + 745, + 745, + 745, + 745 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15325": { + "npcId": 15325, + "attr": {}, + "npclist": "5002_314_90072#4014_314_90070#3013_314_90071#4006_314_90072#4012_314_90074#4015_314_90073", + "npcLv": [ + 745, + 745, + 745, + 745, + 745, + 745 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15326": { + "npcId": 15326, + "attr": {}, + "npclist": "4010_317_90072#3009_317_90070#4003_317_90071#5004_317_90072#3002_317_90074#3012_317_90073", + "npcLv": [ + 754, + 754, + 754, + 754, + 754, + 754 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15327": { + "npcId": 15327, + "attr": {}, + "npclist": "3001_317_90072#4011_317_90070#5001_317_90071#4005_317_90072#3011_317_90074#4009_317_90073", + "npcLv": [ + 754, + 754, + 754, + 754, + 754, + 754 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15328": { + "npcId": 15328, + "attr": {}, + "npclist": "3006_320_90072#4013_320_90070#4012_320_90071#4014_320_90072#5005_320_90074#4008_320_90073", + "npcLv": [ + 762, + 762, + 762, + 762, + 762, + 762 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15329": { + "npcId": 15329, + "attr": {}, + "npclist": "4015_320_90072#4004_320_90070#3015_320_90071#3013_320_90072#5001_320_90074#3010_320_90073", + "npcLv": [ + 762, + 762, + 762, + 762, + 762, + 762 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15330": { + "npcId": 15330, + "attr": {}, + "npclist": "4013_323_90072#4001_323_90070#4006_323_90071#5003_323_90072#4014_323_90074#4005_323_90073", + "npcLv": [ + 770, + 770, + 770, + 770, + 770, + 770 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15331": { + "npcId": 15331, + "attr": {}, + "npclist": "4008_323_90072#4012_323_90070#4002_323_90071#4009_323_90072#2002_323_90074#5005_323_90073", + "npcLv": [ + 770, + 770, + 770, + 770, + 770, + 770 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15332": { + "npcId": 15332, + "attr": {}, + "npclist": "4011_326_90072#4015_326_90070#5002_326_90071#4003_326_90072#5005_326_90074#4014_326_90073", + "npcLv": [ + 778, + 778, + 778, + 778, + 778, + 778 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15333": { + "npcId": 15333, + "attr": {}, + "npclist": "3008_326_90072#4006_326_90070#5003_326_90071#4010_326_90072#5001_326_90074#3010_326_90073", + "npcLv": [ + 778, + 778, + 778, + 778, + 778, + 778 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15334": { + "npcId": 15334, + "attr": {}, + "npclist": "4009_329_90072#3012_329_90070#4004_329_90071#4013_329_90072#4014_329_90074#4010_329_90073", + "npcLv": [ + 786, + 786, + 786, + 786, + 786, + 786 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15335": { + "npcId": 15335, + "attr": {}, + "npclist": "5005_329_90072#5004_329_90070#4012_329_90071#3005_329_90072#3015_329_90074#4003_329_90073", + "npcLv": [ + 786, + 786, + 786, + 786, + 786, + 786 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15336": { + "npcId": 15336, + "attr": {}, + "npclist": "4006_332_90072#4005_332_90070#3014_332_90071#5002_332_90072#4013_332_90074#3008_332_90073", + "npcLv": [ + 795, + 795, + 795, + 795, + 795, + 795 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15337": { + "npcId": 15337, + "attr": {}, + "npclist": "4014_332_90072#3005_332_90070#4008_332_90071#4012_332_90072#4007_332_90074#3001_332_90073", + "npcLv": [ + 795, + 795, + 795, + 795, + 795, + 795 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15338": { + "npcId": 15338, + "attr": {}, + "npclist": "4003_335_90072#4015_335_90070#4009_335_90071#4011_335_90072#4002_335_90074#4008_335_90073", + "npcLv": [ + 803, + 803, + 803, + 803, + 803, + 803 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15339": { + "npcId": 15339, + "attr": {}, + "npclist": "5001_335_90072#3014_335_90070#4014_335_90071#4005_335_90072#5003_335_90074#4013_335_90073", + "npcLv": [ + 803, + 803, + 803, + 803, + 803, + 803 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15340": { + "npcId": 15340, + "attr": {}, + "npclist": "3006_338_90072#5002_338_90070#3010_338_90071#4012_338_90072#3007_338_90074#3015_338_90073", + "npcLv": [ + 811, + 811, + 811, + 811, + 811, + 811 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15341": { + "npcId": 15341, + "attr": {}, + "npclist": "5005_338_90072#5001_338_90070#4010_338_90071#4001_338_90072#4009_338_90074#5004_338_90073", + "npcLv": [ + 811, + 811, + 811, + 811, + 811, + 811 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15342": { + "npcId": 15342, + "attr": {}, + "npclist": "4004_341_90072#4013_341_90070#4003_341_90071#3010_341_90072#4008_341_90074#4015_341_90073", + "npcLv": [ + 819, + 819, + 819, + 819, + 819, + 819 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15343": { + "npcId": 15343, + "attr": {}, + "npclist": "3005_341_90072#4006_341_90070#3002_341_90071#4014_341_90072#4012_341_90074#4009_341_90073", + "npcLv": [ + 819, + 819, + 819, + 819, + 819, + 819 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15344": { + "npcId": 15344, + "attr": {}, + "npclist": "4010_344_90072#3006_344_90070#5005_344_90071#4008_344_90072#5002_344_90074#3013_344_90073", + "npcLv": [ + 828, + 828, + 828, + 828, + 828, + 828 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15345": { + "npcId": 15345, + "attr": {}, + "npclist": "3011_344_90072#5004_344_90070#4011_344_90071#5001_344_90072#3010_344_90074#5003_344_90073", + "npcLv": [ + 828, + 828, + 828, + 828, + 828, + 828 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15346": { + "npcId": 15346, + "attr": {}, + "npclist": "4013_347_90072#4012_347_90070#4004_347_90071#4009_347_90072#4003_347_90074#4014_347_90073", + "npcLv": [ + 836, + 836, + 836, + 836, + 836, + 836 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15347": { + "npcId": 15347, + "attr": {}, + "npclist": "3012_347_90072#3010_347_90070#4015_347_90071#4002_347_90072#3007_347_90074#4005_347_90073", + "npcLv": [ + 836, + 836, + 836, + 836, + 836, + 836 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15348": { + "npcId": 15348, + "attr": {}, + "npclist": "4014_350_90072#4009_350_90070#4011_350_90071#3013_350_90072#3005_350_90074#5001_350_90073", + "npcLv": [ + 844, + 844, + 844, + 844, + 844, + 844 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15349": { + "npcId": 15349, + "attr": {}, + "npclist": "3010_350_90072#4008_350_90070#3007_350_90071#5003_350_90072#5005_350_90074#5002_350_90073", + "npcLv": [ + 844, + 844, + 844, + 844, + 844, + 844 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15350": { + "npcId": 15350, + "attr": {}, + "npclist": "3009_353_90072#4013_353_90070#3005_353_90071#4006_353_90072#3001_353_90074#3011_353_90073", + "npcLv": [ + 853, + 853, + 853, + 853, + 853, + 853 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15351": { + "npcId": 15351, + "attr": {}, + "npclist": "4012_353_90072#3011_353_90070#4015_353_90071#5005_353_90072#4014_353_90074#3002_353_90073", + "npcLv": [ + 853, + 853, + 853, + 853, + 853, + 853 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15352": { + "npcId": 15352, + "attr": {}, + "npclist": "4009_356_90072#2002_356_90070#4008_356_90071#4010_356_90072#4004_356_90074#4007_356_90073", + "npcLv": [ + 861, + 861, + 861, + 861, + 861, + 861 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15353": { + "npcId": 15353, + "attr": {}, + "npclist": "5001_356_90072#4011_356_90070#3015_356_90071#3009_356_90072#5002_356_90074#5003_356_90073", + "npcLv": [ + 861, + 861, + 861, + 861, + 861, + 861 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15354": { + "npcId": 15354, + "attr": {}, + "npclist": "4015_359_90072#4012_359_90070#5001_359_90071#4013_359_90072#4008_359_90074#4002_359_90073", + "npcLv": [ + 869, + 869, + 869, + 869, + 869, + 869 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15355": { + "npcId": 15355, + "attr": {}, + "npclist": "3010_359_90072#3008_359_90070#4009_359_90071#4014_359_90072#4001_359_90074#4004_359_90073", + "npcLv": [ + 869, + 869, + 869, + 869, + 869, + 869 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15356": { + "npcId": 15356, + "attr": {}, + "npclist": "4014_362_90072#5002_362_90070#4015_362_90071#4012_362_90072#5004_362_90074#3005_362_90073", + "npcLv": [ + 878, + 878, + 878, + 878, + 878, + 878 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15357": { + "npcId": 15357, + "attr": {}, + "npclist": "3009_362_90072#5001_362_90070#3013_362_90071#5003_362_90072#4009_362_90074#4013_362_90073", + "npcLv": [ + 878, + 878, + 878, + 878, + 878, + 878 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15358": { + "npcId": 15358, + "attr": {}, + "npclist": "3007_365_90072#4008_365_90070#4013_365_90071#4003_365_90072#3008_365_90074#3012_365_90073", + "npcLv": [ + 886, + 886, + 886, + 886, + 886, + 886 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15359": { + "npcId": 15359, + "attr": {}, + "npclist": "5005_365_90072#4001_365_90070#3013_365_90071#3007_365_90072#3010_365_90074#3011_365_90073", + "npcLv": [ + 886, + 886, + 886, + 886, + 886, + 886 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15360": { + "npcId": 15360, + "attr": {}, + "npclist": "4013_368_90072#4014_368_90070#5004_368_90071#5002_368_90072#4012_368_90074#4010_368_90073", + "npcLv": [ + 894, + 894, + 894, + 894, + 894, + 894 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15361": { + "npcId": 15361, + "attr": {}, + "npclist": "5001_368_90072#4004_368_90070#4002_368_90071#4011_368_90072#4006_368_90074#3002_368_90073", + "npcLv": [ + 894, + 894, + 894, + 894, + 894, + 894 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15362": { + "npcId": 15362, + "attr": {}, + "npclist": "4008_371_90072#4013_371_90070#4005_371_90071#5005_371_90072#3014_371_90074#3008_371_90073", + "npcLv": [ + 903, + 903, + 903, + 903, + 903, + 903 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15363": { + "npcId": 15363, + "attr": {}, + "npclist": "3013_371_90072#3010_371_90070#4007_371_90071#4004_371_90072#4014_371_90074#4009_371_90073", + "npcLv": [ + 903, + 903, + 903, + 903, + 903, + 903 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15364": { + "npcId": 15364, + "attr": {}, + "npclist": "4014_374_90072#4012_374_90070#3007_374_90071#5001_374_90072#4013_374_90074#4015_374_90073", + "npcLv": [ + 911, + 911, + 911, + 911, + 911, + 911 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15365": { + "npcId": 15365, + "attr": {}, + "npclist": "5003_374_90072#3013_374_90070#4008_374_90071#4003_374_90072#5002_374_90074#5004_374_90073", + "npcLv": [ + 911, + 911, + 911, + 911, + 911, + 911 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15366": { + "npcId": 15366, + "attr": {}, + "npclist": "4011_377_90072#4002_377_90070#3007_377_90071#4010_377_90072#4009_377_90074#4004_377_90073", + "npcLv": [ + 919, + 919, + 919, + 919, + 919, + 919 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15367": { + "npcId": 15367, + "attr": {}, + "npclist": "3001_377_90072#4014_377_90070#4015_377_90071#3009_377_90072#3013_377_90074#4013_377_90073", + "npcLv": [ + 919, + 919, + 919, + 919, + 919, + 919 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15368": { + "npcId": 15368, + "attr": {}, + "npclist": "5002_380_90072#4012_380_90070#4011_380_90071#3010_380_90072#3005_380_90074#5005_380_90073", + "npcLv": [ + 928, + 928, + 928, + 928, + 928, + 928 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15369": { + "npcId": 15369, + "attr": {}, + "npclist": "3015_380_90072#3012_380_90070#3002_380_90071#4014_380_90072#4005_380_90074#4008_380_90073", + "npcLv": [ + 928, + 928, + 928, + 928, + 928, + 928 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15370": { + "npcId": 15370, + "attr": {}, + "npclist": "4010_383_90072#4013_383_90070#3010_383_90071#4009_383_90072#5001_383_90074#4003_383_90073", + "npcLv": [ + 936, + 936, + 936, + 936, + 936, + 936 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15371": { + "npcId": 15371, + "attr": {}, + "npclist": "4007_383_90072#4004_383_90070#5003_383_90071#5004_383_90072#2002_383_90074#3011_383_90073", + "npcLv": [ + 936, + 936, + 936, + 936, + 936, + 936 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15372": { + "npcId": 15372, + "attr": {}, + "npclist": "4013_386_90072#4015_386_90070#4012_386_90071#5002_386_90072#4014_386_90074#5003_386_90073", + "npcLv": [ + 945, + 945, + 945, + 945, + 945, + 945 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15373": { + "npcId": 15373, + "attr": {}, + "npclist": "4001_386_90072#4002_386_90070#5001_386_90071#4004_386_90072#5005_386_90074#3009_386_90073", + "npcLv": [ + 945, + 945, + 945, + 945, + 945, + 945 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15374": { + "npcId": 15374, + "attr": {}, + "npclist": "3010_389_90072#4009_389_90070#4007_389_90071#3015_389_90072#5002_389_90074#5005_389_90073", + "npcLv": [ + 953, + 953, + 953, + 953, + 953, + 953 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15375": { + "npcId": 15375, + "attr": {}, + "npclist": "4014_389_90072#4008_389_90070#4003_389_90071#4012_389_90072#4001_389_90074#4011_389_90073", + "npcLv": [ + 953, + 953, + 953, + 953, + 953, + 953 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15376": { + "npcId": 15376, + "attr": {}, + "npclist": "4003_392_90072#5001_392_90070#4013_392_90071#4015_392_90072#5003_392_90074#4006_392_90073", + "npcLv": [ + 962, + 962, + 962, + 962, + 962, + 962 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15377": { + "npcId": 15377, + "attr": {}, + "npclist": "3005_392_90072#3007_392_90070#4010_392_90071#3005_392_90072#4013_392_90074#5002_392_90073", + "npcLv": [ + 962, + 962, + 962, + 962, + 962, + 962 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15378": { + "npcId": 15378, + "attr": {}, + "npclist": "4009_395_90072#4014_395_90070#3014_395_90071#3006_395_90072#3011_395_90074#4012_395_90073", + "npcLv": [ + 970, + 970, + 970, + 970, + 970, + 970 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15379": { + "npcId": 15379, + "attr": {}, + "npclist": "4008_395_90072#5004_395_90070#5005_395_90071#4014_395_90072#3001_395_90074#4013_395_90073", + "npcLv": [ + 970, + 970, + 970, + 970, + 970, + 970 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15380": { + "npcId": 15380, + "attr": {}, + "npclist": "3011_398_90072#4013_398_90070#5003_398_90071#5002_398_90072#4010_398_90074#4001_398_90073", + "npcLv": [ + 978, + 978, + 978, + 978, + 978, + 978 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15381": { + "npcId": 15381, + "attr": {}, + "npclist": "4014_398_90072#2002_398_90070#4004_398_90071#4011_398_90072#3010_398_90074#4015_398_90073", + "npcLv": [ + 978, + 978, + 978, + 978, + 978, + 978 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15382": { + "npcId": 15382, + "attr": {}, + "npclist": "5004_401_90072#4009_401_90070#4012_401_90071#4006_401_90072#3013_401_90074#3008_401_90073", + "npcLv": [ + 987, + 987, + 987, + 987, + 987, + 987 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15383": { + "npcId": 15383, + "attr": {}, + "npclist": "4013_401_90072#4005_401_90070#3005_401_90071#5005_401_90072#4003_401_90074#4014_401_90073", + "npcLv": [ + 987, + 987, + 987, + 987, + 987, + 987 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15384": { + "npcId": 15384, + "attr": {}, + "npclist": "5002_404_90072#4015_404_90070#4008_404_90071#4009_404_90072#3006_404_90074#3001_404_90073", + "npcLv": [ + 995, + 995, + 995, + 995, + 995, + 995 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15385": { + "npcId": 15385, + "attr": {}, + "npclist": "4004_404_90072#4011_404_90070#3005_404_90071#5001_404_90072#3007_404_90074#4010_404_90073", + "npcLv": [ + 995, + 995, + 995, + 995, + 995, + 995 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15386": { + "npcId": 15386, + "attr": {}, + "npclist": "3010_407_90072#4013_407_90070#5004_407_90071#4003_407_90072#4007_407_90074#5005_407_90073", + "npcLv": [ + 1004, + 1004, + 1004, + 1004, + 1004, + 1004 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15387": { + "npcId": 15387, + "attr": {}, + "npclist": "4012_407_90072#3014_407_90070#4013_407_90071#5005_407_90072#5003_407_90074#4009_407_90073", + "npcLv": [ + 1004, + 1004, + 1004, + 1004, + 1004, + 1004 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15388": { + "npcId": 15388, + "attr": {}, + "npclist": "4011_410_90072#4014_410_90070#4010_410_90071#4002_410_90072#4008_410_90074#3015_410_90073", + "npcLv": [ + 1012, + 1012, + 1012, + 1012, + 1012, + 1012 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15389": { + "npcId": 15389, + "attr": {}, + "npclist": "3002_410_90072#5001_410_90070#5002_410_90071#3007_410_90072#4013_410_90074#5004_410_90073", + "npcLv": [ + 1012, + 1012, + 1012, + 1012, + 1012, + 1012 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15390": { + "npcId": 15390, + "attr": {}, + "npclist": "5003_413_90072#4012_413_90070#4011_413_90071#4014_413_90072#3015_413_90074#4013_413_90073", + "npcLv": [ + 1021, + 1021, + 1021, + 1021, + 1021, + 1021 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15391": { + "npcId": 15391, + "attr": {}, + "npclist": "4015_413_90072#3008_413_90070#4003_413_90071#3007_413_90072#3005_413_90074#4007_413_90073", + "npcLv": [ + 1021, + 1021, + 1021, + 1021, + 1021, + 1021 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15392": { + "npcId": 15392, + "attr": {}, + "npclist": "4008_416_90072#5001_416_90070#5005_416_90071#5004_416_90072#4005_416_90074#5002_416_90073", + "npcLv": [ + 1029, + 1029, + 1029, + 1029, + 1029, + 1029 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15393": { + "npcId": 15393, + "attr": {}, + "npclist": "4014_416_90072#4006_416_90070#5004_416_90071#4004_416_90072#3010_416_90074#3011_416_90073", + "npcLv": [ + 1029, + 1029, + 1029, + 1029, + 1029, + 1029 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15394": { + "npcId": 15394, + "attr": {}, + "npclist": "3013_419_90072#4013_419_90070#4012_419_90071#5001_419_90072#5002_419_90074#4003_419_90073", + "npcLv": [ + 1038, + 1038, + 1038, + 1038, + 1038, + 1038 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15395": { + "npcId": 15395, + "attr": {}, + "npclist": "4010_419_90072#5003_419_90070#4015_419_90071#4008_419_90072#4009_419_90074#5005_419_90073", + "npcLv": [ + 1038, + 1038, + 1038, + 1038, + 1038, + 1038 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15396": { + "npcId": 15396, + "attr": {}, + "npclist": "3010_422_90072#3015_422_90070#4001_422_90071#3001_422_90072#4007_422_90074#3007_422_90073", + "npcLv": [ + 1046, + 1046, + 1046, + 1046, + 1046, + 1046 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15397": { + "npcId": 15397, + "attr": {}, + "npclist": "4013_422_90072#5004_422_90070#3002_422_90071#4012_422_90072#4015_422_90074#3007_422_90073", + "npcLv": [ + 1046, + 1046, + 1046, + 1046, + 1046, + 1046 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15398": { + "npcId": 15398, + "attr": {}, + "npclist": "5002_425_90072#4013_425_90070#3010_425_90071#3013_425_90072#4011_425_90074#3005_425_90073", + "npcLv": [ + 1055, + 1055, + 1055, + 1055, + 1055, + 1055 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15399": { + "npcId": 15399, + "attr": {}, + "npclist": "3007_425_90072#4009_425_90070#4014_425_90071#5001_425_90072#5005_425_90074#4015_425_90073", + "npcLv": [ + 1055, + 1055, + 1055, + 1055, + 1055, + 1055 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15400": { + "npcId": 15400, + "attr": {}, + "npclist": "3010_428_90072#3009_428_90070#5003_428_90071#4013_428_90072#3010_428_90074#4004_428_90073", + "npcLv": [ + 1064, + 1064, + 1064, + 1064, + 1064, + 1064 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15401": { + "npcId": 15401, + "attr": {}, + "npclist": "4014_428_90072#5002_428_90070#4010_428_90071#4006_428_90072#3009_428_90074#4012_428_90073", + "npcLv": [ + 1064, + 1064, + 1064, + 1064, + 1064, + 1064 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15402": { + "npcId": 15402, + "attr": {}, + "npclist": "5004_431_90072#4005_431_90070#5005_431_90071#3002_431_90072#4002_431_90074#3001_431_90073", + "npcLv": [ + 1072, + 1072, + 1072, + 1072, + 1072, + 1072 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15403": { + "npcId": 15403, + "attr": {}, + "npclist": "4008_431_90072#3005_431_90070#4002_431_90071#3011_431_90072#4013_431_90074#4011_431_90073", + "npcLv": [ + 1072, + 1072, + 1072, + 1072, + 1072, + 1072 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15404": { + "npcId": 15404, + "attr": {}, + "npclist": "5001_434_90072#4003_434_90070#3011_434_90071#5002_434_90072#5003_434_90074#3013_434_90073", + "npcLv": [ + 1081, + 1081, + 1081, + 1081, + 1081, + 1081 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15405": { + "npcId": 15405, + "attr": {}, + "npclist": "3005_434_90072#5004_434_90070#4012_434_90071#4010_434_90072#4014_434_90074#3002_434_90073", + "npcLv": [ + 1081, + 1081, + 1081, + 1081, + 1081, + 1081 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15406": { + "npcId": 15406, + "attr": {}, + "npclist": "4001_437_90072#3015_437_90070#4004_437_90071#3010_437_90072#4001_437_90074#4013_437_90073", + "npcLv": [ + 1089, + 1089, + 1089, + 1089, + 1089, + 1089 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15407": { + "npcId": 15407, + "attr": {}, + "npclist": "4015_437_90072#4012_437_90070#5004_437_90071#5003_437_90072#5005_437_90074#5002_437_90073", + "npcLv": [ + 1089, + 1089, + 1089, + 1089, + 1089, + 1089 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15408": { + "npcId": 15408, + "attr": {}, + "npclist": "4009_440_90072#4014_440_90070#4013_440_90071#4007_440_90072#4010_440_90074#3010_440_90073", + "npcLv": [ + 1098, + 1098, + 1098, + 1098, + 1098, + 1098 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15409": { + "npcId": 15409, + "attr": {}, + "npclist": "4012_440_90072#4011_440_90070#4001_440_90071#3015_440_90072#3013_440_90074#3001_440_90073", + "npcLv": [ + 1098, + 1098, + 1098, + 1098, + 1098, + 1098 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15410": { + "npcId": 15410, + "attr": {}, + "npclist": "3012_443_90072#5005_443_90070#4015_443_90071#3005_443_90072#4008_443_90074#5004_443_90073", + "npcLv": [ + 1107, + 1107, + 1107, + 1107, + 1107, + 1107 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15411": { + "npcId": 15411, + "attr": {}, + "npclist": "3013_443_90072#3011_443_90070#5003_443_90071#5002_443_90072#3005_443_90074#4005_443_90073", + "npcLv": [ + 1107, + 1107, + 1107, + 1107, + 1107, + 1107 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15412": { + "npcId": 15412, + "attr": {}, + "npclist": "4013_446_90072#3009_446_90070#4006_446_90071#4003_446_90072#4015_446_90074#3007_446_90073", + "npcLv": [ + 1115, + 1115, + 1115, + 1115, + 1115, + 1115 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15413": { + "npcId": 15413, + "attr": {}, + "npclist": "5005_446_90072#4007_446_90070#4012_446_90071#5004_446_90072#3001_446_90074#4010_446_90073", + "npcLv": [ + 1115, + 1115, + 1115, + 1115, + 1115, + 1115 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15414": { + "npcId": 15414, + "attr": {}, + "npclist": "4011_449_90072#3010_449_90070#2002_449_90071#4004_449_90072#4014_449_90074#5004_449_90073", + "npcLv": [ + 1124, + 1124, + 1124, + 1124, + 1124, + 1124 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15415": { + "npcId": 15415, + "attr": {}, + "npclist": "5003_449_90072#5002_449_90070#5005_449_90071#3010_449_90072#4006_449_90074#4003_449_90073", + "npcLv": [ + 1124, + 1124, + 1124, + 1124, + 1124, + 1124 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15416": { + "npcId": 15416, + "attr": {}, + "npclist": "3013_452_90072#5001_452_90070#4009_452_90071#3008_452_90072#4012_452_90074#3009_452_90073", + "npcLv": [ + 1132, + 1132, + 1132, + 1132, + 1132, + 1132 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15417": { + "npcId": 15417, + "attr": {}, + "npclist": "4004_452_90072#4011_452_90070#5004_452_90071#3001_452_90072#4005_452_90074#4015_452_90073", + "npcLv": [ + 1132, + 1132, + 1132, + 1132, + 1132, + 1132 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15418": { + "npcId": 15418, + "attr": {}, + "npclist": "5002_455_90072#4002_455_90070#3006_455_90071#4010_455_90072#5005_455_90074#3009_455_90073", + "npcLv": [ + 1141, + 1141, + 1141, + 1141, + 1141, + 1141 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15419": { + "npcId": 15419, + "attr": {}, + "npclist": "3014_455_90072#5004_455_90070#5003_455_90071#4003_455_90072#4015_455_90074#4011_455_90073", + "npcLv": [ + 1141, + 1141, + 1141, + 1141, + 1141, + 1141 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15420": { + "npcId": 15420, + "attr": {}, + "npclist": "3001_458_90072#4014_458_90070#4013_458_90071#3002_458_90072#4009_458_90074#3014_458_90073", + "npcLv": [ + 1150, + 1150, + 1150, + 1150, + 1150, + 1150 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15421": { + "npcId": 15421, + "attr": {}, + "npclist": "5004_458_90072#3009_458_90070#5002_458_90071#4013_458_90072#3005_458_90074#4012_458_90073", + "npcLv": [ + 1150, + 1150, + 1150, + 1150, + 1150, + 1150 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15422": { + "npcId": 15422, + "attr": {}, + "npclist": "5001_461_90072#4015_461_90070#4005_461_90071#3011_461_90072#4003_461_90074#5005_461_90073", + "npcLv": [ + 1158, + 1158, + 1158, + 1158, + 1158, + 1158 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15423": { + "npcId": 15423, + "attr": {}, + "npclist": "4014_461_90072#3007_461_90070#3013_461_90071#4002_461_90072#5002_461_90074#4009_461_90073", + "npcLv": [ + 1158, + 1158, + 1158, + 1158, + 1158, + 1158 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15424": { + "npcId": 15424, + "attr": {}, + "npclist": "4015_464_90072#4007_464_90070#5004_464_90071#4012_464_90072#4011_464_90074#4001_464_90073", + "npcLv": [ + 1167, + 1167, + 1167, + 1167, + 1167, + 1167 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15425": { + "npcId": 15425, + "attr": {}, + "npclist": "3006_464_90072#4004_464_90070#3015_464_90071#5005_464_90072#5003_464_90074#4013_464_90073", + "npcLv": [ + 1167, + 1167, + 1167, + 1167, + 1167, + 1167 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15426": { + "npcId": 15426, + "attr": {}, + "npclist": "3002_467_90072#4010_467_90070#5001_467_90071#4007_467_90072#3013_467_90074#4008_467_90073", + "npcLv": [ + 1176, + 1176, + 1176, + 1176, + 1176, + 1176 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15427": { + "npcId": 15427, + "attr": {}, + "npclist": "5005_467_90072#2002_467_90070#3010_467_90071#4013_467_90072#3011_467_90074#5002_467_90073", + "npcLv": [ + 1176, + 1176, + 1176, + 1176, + 1176, + 1176 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15428": { + "npcId": 15428, + "attr": {}, + "npclist": "4010_470_90072#4011_470_90070#4006_470_90071#4003_470_90072#3009_470_90074#5004_470_90073", + "npcLv": [ + 1184, + 1184, + 1184, + 1184, + 1184, + 1184 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15429": { + "npcId": 15429, + "attr": {}, + "npclist": "3001_470_90072#4014_470_90070#4015_470_90071#5005_470_90072#5001_470_90074#4002_470_90073", + "npcLv": [ + 1184, + 1184, + 1184, + 1184, + 1184, + 1184 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15430": { + "npcId": 15430, + "attr": {}, + "npclist": "3010_473_90072#4013_473_90070#4005_473_90071#5002_473_90072#4007_473_90074#3013_473_90073", + "npcLv": [ + 1193, + 1193, + 1193, + 1193, + 1193, + 1193 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15431": { + "npcId": 15431, + "attr": {}, + "npclist": "4011_473_90072#4001_473_90070#4012_473_90071#4009_473_90072#4015_473_90074#5003_473_90073", + "npcLv": [ + 1193, + 1193, + 1193, + 1193, + 1193, + 1193 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15432": { + "npcId": 15432, + "attr": {}, + "npclist": "3015_476_90072#5002_476_90070#4003_476_90071#5004_476_90072#5005_476_90074#4014_476_90073", + "npcLv": [ + 1202, + 1202, + 1202, + 1202, + 1202, + 1202 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15433": { + "npcId": 15433, + "attr": {}, + "npclist": "4013_476_90072#4006_476_90070#3002_476_90071#3007_476_90072#3015_476_90074#3007_476_90073", + "npcLv": [ + 1202, + 1202, + 1202, + 1202, + 1202, + 1202 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15434": { + "npcId": 15434, + "attr": {}, + "npclist": "4012_479_90072#5004_479_90070#4011_479_90071#3013_479_90072#3007_479_90074#4015_479_90073", + "npcLv": [ + 1210, + 1210, + 1210, + 1210, + 1210, + 1210 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15435": { + "npcId": 15435, + "attr": {}, + "npclist": "5002_479_90072#4008_479_90070#4010_479_90071#5001_479_90072#4004_479_90074#3007_479_90073", + "npcLv": [ + 1210, + 1210, + 1210, + 1210, + 1210, + 1210 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15436": { + "npcId": 15436, + "attr": {}, + "npclist": "3010_482_90072#3005_482_90070#4006_482_90071#4015_482_90072#5003_482_90074#4014_482_90073", + "npcLv": [ + 1219, + 1219, + 1219, + 1219, + 1219, + 1219 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15437": { + "npcId": 15437, + "attr": {}, + "npclist": "4009_482_90072#4015_482_90070#4013_482_90071#4010_482_90072#4005_482_90074#4003_482_90073", + "npcLv": [ + 1219, + 1219, + 1219, + 1219, + 1219, + 1219 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15438": { + "npcId": 15438, + "attr": {}, + "npclist": "4002_485_90072#4012_485_90070#5002_485_90071#5005_485_90072#3009_485_90074#4011_485_90073", + "npcLv": [ + 1228, + 1228, + 1228, + 1228, + 1228, + 1228 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15439": { + "npcId": 15439, + "attr": {}, + "npclist": "3013_485_90072#3005_485_90070#3014_485_90071#4013_485_90072#3011_485_90074#5004_485_90073", + "npcLv": [ + 1228, + 1228, + 1228, + 1228, + 1228, + 1228 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15440": { + "npcId": 15440, + "attr": {}, + "npclist": "4014_488_90072#4007_488_90070#4011_488_90071#4012_488_90072#5002_488_90074#4010_488_90073", + "npcLv": [ + 1237, + 1237, + 1237, + 1237, + 1237, + 1237 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15441": { + "npcId": 15441, + "attr": {}, + "npclist": "4008_488_90072#4015_488_90070#5003_488_90071#4006_488_90072#4009_488_90074#3002_488_90073", + "npcLv": [ + 1237, + 1237, + 1237, + 1237, + 1237, + 1237 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15442": { + "npcId": 15442, + "attr": {}, + "npclist": "3005_491_90072#5001_491_90070#5005_491_90071#4003_491_90072#3009_491_90074#5002_491_90073", + "npcLv": [ + 1245, + 1245, + 1245, + 1245, + 1245, + 1245 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15443": { + "npcId": 15443, + "attr": {}, + "npclist": "4015_491_90072#4011_491_90070#4004_491_90071#5004_491_90072#4012_491_90074#4001_491_90073", + "npcLv": [ + 1245, + 1245, + 1245, + 1245, + 1245, + 1245 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15444": { + "npcId": 15444, + "attr": {}, + "npclist": "4007_494_90072#3009_494_90070#5003_494_90071#3013_494_90072#4006_494_90074#4009_494_90073", + "npcLv": [ + 1254, + 1254, + 1254, + 1254, + 1254, + 1254 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15445": { + "npcId": 15445, + "attr": {}, + "npclist": "3010_494_90072#4014_494_90070#4002_494_90071#4005_494_90072#4013_494_90074#3007_494_90073", + "npcLv": [ + 1254, + 1254, + 1254, + 1254, + 1254, + 1254 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15446": { + "npcId": 15446, + "attr": {}, + "npclist": "4011_497_90072#5004_497_90070#4015_497_90071#5005_497_90072#5002_497_90074#4012_497_90073", + "npcLv": [ + 1263, + 1263, + 1263, + 1263, + 1263, + 1263 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15447": { + "npcId": 15447, + "attr": {}, + "npclist": "3009_497_90072#3015_497_90070#4010_497_90071#4014_497_90072#3002_497_90074#4013_497_90073", + "npcLv": [ + 1263, + 1263, + 1263, + 1263, + 1263, + 1263 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15448": { + "npcId": 15448, + "attr": {}, + "npclist": "5001_500_90072#5002_500_90070#3002_500_90071#4012_500_90072#3006_500_90074#2002_500_90073", + "npcLv": [ + 1272, + 1272, + 1272, + 1272, + 1272, + 1272 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15449": { + "npcId": 15449, + "attr": {}, + "npclist": "3011_500_90072#4009_500_90070#4011_500_90071#4015_500_90072#3001_500_90074#4006_500_90073", + "npcLv": [ + 1272, + 1272, + 1272, + 1272, + 1272, + 1272 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15450": { + "npcId": 15450, + "attr": {}, + "npclist": "4010_503_90072#3013_503_90070#4008_503_90071#3010_503_90072#4014_503_90074#3012_503_90073", + "npcLv": [ + 1280, + 1280, + 1280, + 1280, + 1280, + 1280 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15451": { + "npcId": 15451, + "attr": {}, + "npclist": "5002_503_90072#3007_503_90070#3009_503_90071#5003_503_90072#4005_503_90074#5005_503_90073", + "npcLv": [ + 1280, + 1280, + 1280, + 1280, + 1280, + 1280 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15452": { + "npcId": 15452, + "attr": {}, + "npclist": "4001_506_90072#3010_506_90070#4003_506_90071#5004_506_90072#4011_506_90074#4014_506_90073", + "npcLv": [ + 1289, + 1289, + 1289, + 1289, + 1289, + 1289 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15453": { + "npcId": 15453, + "attr": {}, + "npclist": "3007_506_90072#4013_506_90070#5002_506_90071#5005_506_90072#4015_506_90074#3001_506_90073", + "npcLv": [ + 1289, + 1289, + 1289, + 1289, + 1289, + 1289 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15454": { + "npcId": 15454, + "attr": {}, + "npclist": "4013_509_90072#5003_509_90070#4012_509_90071#3015_509_90072#3010_509_90074#4011_509_90073", + "npcLv": [ + 1298, + 1298, + 1298, + 1298, + 1298, + 1298 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15455": { + "npcId": 15455, + "attr": {}, + "npclist": "4003_509_90072#4014_509_90070#3011_509_90071#4008_509_90072#4002_509_90074#3007_509_90073", + "npcLv": [ + 1298, + 1298, + 1298, + 1298, + 1298, + 1298 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15456": { + "npcId": 15456, + "attr": {}, + "npclist": "3002_512_90072#3009_512_90070#4009_512_90071#5001_512_90072#5002_512_90074#4015_512_90073", + "npcLv": [ + 1307, + 1307, + 1307, + 1307, + 1307, + 1307 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15457": { + "npcId": 15457, + "attr": {}, + "npclist": "4012_512_90072#3005_512_90070#3009_512_90071#4010_512_90072#4014_512_90074#5004_512_90073", + "npcLv": [ + 1307, + 1307, + 1307, + 1307, + 1307, + 1307 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15458": { + "npcId": 15458, + "attr": {}, + "npclist": "4014_515_90072#4013_515_90070#4007_515_90071#5005_515_90072#3011_515_90074#5002_515_90073", + "npcLv": [ + 1315, + 1315, + 1315, + 1315, + 1315, + 1315 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15459": { + "npcId": 15459, + "attr": {}, + "npclist": "3005_515_90072#4006_515_90070#3014_515_90071#4003_515_90072#5001_515_90074#4002_515_90073", + "npcLv": [ + 1315, + 1315, + 1315, + 1315, + 1315, + 1315 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15460": { + "npcId": 15460, + "attr": {}, + "npclist": "5003_518_90072#4012_518_90070#4015_518_90071#4013_518_90072#4007_518_90074#3010_518_90073", + "npcLv": [ + 1324, + 1324, + 1324, + 1324, + 1324, + 1324 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15461": { + "npcId": 15461, + "attr": {}, + "npclist": "4014_518_90072#5002_518_90070#4011_518_90071#5004_518_90072#3014_518_90074#4009_518_90073", + "npcLv": [ + 1324, + 1324, + 1324, + 1324, + 1324, + 1324 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15462": { + "npcId": 15462, + "attr": {}, + "npclist": "4006_521_90072#4015_521_90070#4005_521_90071#4004_521_90072#4013_521_90074#3015_521_90073", + "npcLv": [ + 1333, + 1333, + 1333, + 1333, + 1333, + 1333 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15463": { + "npcId": 15463, + "attr": {}, + "npclist": "3013_521_90072#3015_521_90070#5004_521_90071#4012_521_90072#4010_521_90074#3005_521_90073", + "npcLv": [ + 1333, + 1333, + 1333, + 1333, + 1333, + 1333 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15464": { + "npcId": 15464, + "attr": {}, + "npclist": "4011_524_90072#4014_524_90070#5003_524_90071#3001_524_90072#5005_524_90074#4010_524_90073", + "npcLv": [ + 1342, + 1342, + 1342, + 1342, + 1342, + 1342 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15465": { + "npcId": 15465, + "attr": {}, + "npclist": "4015_524_90072#4005_524_90070#5002_524_90071#4002_524_90072#3005_524_90074#4013_524_90073", + "npcLv": [ + 1342, + 1342, + 1342, + 1342, + 1342, + 1342 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15466": { + "npcId": 15466, + "attr": {}, + "npclist": "3014_527_90072#5004_527_90070#4011_527_90071#3002_527_90072#4008_527_90074#3006_527_90073", + "npcLv": [ + 1351, + 1351, + 1351, + 1351, + 1351, + 1351 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15467": { + "npcId": 15467, + "attr": {}, + "npclist": "3007_527_90072#4015_527_90070#4003_527_90071#4010_527_90072#5002_527_90074#4012_527_90073", + "npcLv": [ + 1351, + 1351, + 1351, + 1351, + 1351, + 1351 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15468": { + "npcId": 15468, + "attr": {}, + "npclist": "3009_530_90072#4013_530_90070#3001_530_90071#4014_530_90072#2002_530_90074#4007_530_90073", + "npcLv": [ + 1360, + 1360, + 1360, + 1360, + 1360, + 1360 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15469": { + "npcId": 15469, + "attr": {}, + "npclist": "5002_530_90072#3006_530_90070#4006_530_90071#3013_530_90072#5003_530_90074#5005_530_90073", + "npcLv": [ + 1360, + 1360, + 1360, + 1360, + 1360, + 1360 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15470": { + "npcId": 15470, + "attr": {}, + "npclist": "5004_533_90072#3010_533_90070#3007_533_90071#4012_533_90072#4014_533_90074#4011_533_90073", + "npcLv": [ + 1368, + 1368, + 1368, + 1368, + 1368, + 1368 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15471": { + "npcId": 15471, + "attr": {}, + "npclist": "4013_533_90072#4008_533_90070#4009_533_90071#3010_533_90072#4002_533_90074#3002_533_90073", + "npcLv": [ + 1368, + 1368, + 1368, + 1368, + 1368, + 1368 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15472": { + "npcId": 15472, + "attr": {}, + "npclist": "3001_536_90072#4002_536_90070#5001_536_90071#4005_536_90072#5002_536_90074#4001_536_90073", + "npcLv": [ + 1377, + 1377, + 1377, + 1377, + 1377, + 1377 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15473": { + "npcId": 15473, + "attr": {}, + "npclist": "3013_536_90072#4013_536_90070#4007_536_90071#4015_536_90072#5005_536_90074#4014_536_90073", + "npcLv": [ + 1377, + 1377, + 1377, + 1377, + 1377, + 1377 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15474": { + "npcId": 15474, + "attr": {}, + "npclist": "4009_539_90072#4010_539_90070#5004_539_90071#4011_539_90072#4012_539_90074#4003_539_90073", + "npcLv": [ + 1386, + 1386, + 1386, + 1386, + 1386, + 1386 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15475": { + "npcId": 15475, + "attr": {}, + "npclist": "4002_539_90072#5001_539_90070#3007_539_90071#5003_539_90072#3007_539_90074#4015_539_90073", + "npcLv": [ + 1386, + 1386, + 1386, + 1386, + 1386, + 1386 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15476": { + "npcId": 15476, + "attr": {}, + "npclist": "4008_542_90072#4014_542_90070#4013_542_90071#5005_542_90072#5002_542_90074#3011_542_90073", + "npcLv": [ + 1395, + 1395, + 1395, + 1395, + 1395, + 1395 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15477": { + "npcId": 15477, + "attr": {}, + "npclist": "4001_542_90072#4003_542_90070#4011_542_90071#4006_542_90072#4005_542_90074#4012_542_90073", + "npcLv": [ + 1395, + 1395, + 1395, + 1395, + 1395, + 1395 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15478": { + "npcId": 15478, + "attr": {}, + "npclist": "4014_545_90072#5003_545_90070#4013_545_90071#3010_545_90072#5001_545_90074#5004_545_90073", + "npcLv": [ + 1404, + 1404, + 1404, + 1404, + 1404, + 1404 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15479": { + "npcId": 15479, + "attr": {}, + "npclist": "4010_545_90072#4014_545_90070#4008_545_90071#4004_545_90072#4013_545_90074#3007_545_90073", + "npcLv": [ + 1404, + 1404, + 1404, + 1404, + 1404, + 1404 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15480": { + "npcId": 15480, + "attr": {}, + "npclist": "4015_548_90072#3015_548_90070#4002_548_90071#3005_548_90072#3001_548_90074#3002_548_90073", + "npcLv": [ + 1413, + 1413, + 1413, + 1413, + 1413, + 1413 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15481": { + "npcId": 15481, + "attr": {}, + "npclist": "4011_548_90072#5002_548_90070#5004_548_90071#4014_548_90072#3014_548_90074#4012_548_90073", + "npcLv": [ + 1413, + 1413, + 1413, + 1413, + 1413, + 1413 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15482": { + "npcId": 15482, + "attr": {}, + "npclist": "4007_551_90072#3010_551_90070#4009_551_90071#3005_551_90072#3009_551_90074#5005_551_90073", + "npcLv": [ + 1422, + 1422, + 1422, + 1422, + 1422, + 1422 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15483": { + "npcId": 15483, + "attr": {}, + "npclist": "5003_551_90072#4013_551_90070#4015_551_90071#3011_551_90072#4010_551_90074#5001_551_90073", + "npcLv": [ + 1422, + 1422, + 1422, + 1422, + 1422, + 1422 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15484": { + "npcId": 15484, + "attr": {}, + "npclist": "5004_554_90072#4004_554_90070#4006_554_90071#3013_554_90072#4015_554_90074#4003_554_90073", + "npcLv": [ + 1431, + 1431, + 1431, + 1431, + 1431, + 1431 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15485": { + "npcId": 15485, + "attr": {}, + "npclist": "3006_554_90072#4012_554_90070#3002_554_90071#5005_554_90072#4006_554_90074#5002_554_90073", + "npcLv": [ + 1431, + 1431, + 1431, + 1431, + 1431, + 1431 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15486": { + "npcId": 15486, + "attr": {}, + "npclist": "4013_557_90072#4011_557_90070#4007_557_90071#4009_557_90072#4014_557_90074#3001_557_90073", + "npcLv": [ + 1439, + 1439, + 1439, + 1439, + 1439, + 1439 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15487": { + "npcId": 15487, + "attr": {}, + "npclist": "3011_557_90072#3005_557_90070#5002_557_90071#5003_557_90072#4004_557_90074#4010_557_90073", + "npcLv": [ + 1439, + 1439, + 1439, + 1439, + 1439, + 1439 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15488": { + "npcId": 15488, + "attr": {}, + "npclist": "5004_560_90072#4003_560_90070#4013_560_90071#4011_560_90072#4008_560_90074#4015_560_90073", + "npcLv": [ + 1448, + 1448, + 1448, + 1448, + 1448, + 1448 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15489": { + "npcId": 15489, + "attr": {}, + "npclist": "3013_560_90072#5001_560_90070#4014_560_90071#4002_560_90072#5003_560_90074#4009_560_90073", + "npcLv": [ + 1448, + 1448, + 1448, + 1448, + 1448, + 1448 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15490": { + "npcId": 15490, + "attr": {}, + "npclist": "4014_563_90072#3015_563_90070#5005_563_90071#5004_563_90072#3010_563_90074#4011_563_90073", + "npcLv": [ + 1457, + 1457, + 1457, + 1457, + 1457, + 1457 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15491": { + "npcId": 15491, + "attr": {}, + "npclist": "4013_563_90072#4015_563_90070#4010_563_90071#3007_563_90072#3002_563_90074#3014_563_90073", + "npcLv": [ + 1457, + 1457, + 1457, + 1457, + 1457, + 1457 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15492": { + "npcId": 15492, + "attr": {}, + "npclist": "5001_566_90072#5002_566_90070#4012_566_90071#4007_566_90072#4002_566_90074#4004_566_90073", + "npcLv": [ + 1466, + 1466, + 1466, + 1466, + 1466, + 1466 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15493": { + "npcId": 15493, + "attr": {}, + "npclist": "4015_566_90072#4014_566_90070#3010_566_90071#4011_566_90072#4013_566_90074#5003_566_90073", + "npcLv": [ + 1466, + 1466, + 1466, + 1466, + 1466, + 1466 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15494": { + "npcId": 15494, + "attr": {}, + "npclist": "4003_569_90072#4010_569_90070#4001_569_90071#4005_569_90072#5005_569_90074#5004_569_90073", + "npcLv": [ + 1475, + 1475, + 1475, + 1475, + 1475, + 1475 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "15495": { + "npcId": 15495, + "attr": {}, + "npclist": "3010_569_90072#4015_569_90070#3007_569_90071#5003_569_90072#5002_569_90074#4002_569_90073", + "npcLv": [ + 1475, + 1475, + 1475, + 1475, + 1475, + 1475 + ], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "15496": { + "npcId": 15496, + "attr": {}, + "npclist": "4012_572_90072#4009_572_90070#4014_572_90071#3009_572_90072#3002_572_90074#5005_572_90073", + "npcLv": [ + 1484, + 1484, + 1484, + 1484, + 1484, + 1484 + ], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "15497": { + "npcId": 15497, + "attr": {}, + "npclist": "3007_572_90072#4008_572_90070#5004_572_90071#5002_572_90072#4006_572_90074#4015_572_90073", + "npcLv": [ + 1484, + 1484, + 1484, + 1484, + 1484, + 1484 + ], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "15498": { + "npcId": 15498, + "attr": {}, + "npclist": "4005_575_90072#3010_575_90070#5001_575_90071#4015_575_90072#3013_575_90074#4012_575_90073", + "npcLv": [ + 1493, + 1493, + 1493, + 1493, + 1493, + 1493 + ], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "15499": { + "npcId": 15499, + "attr": {}, + "npclist": "5004_575_90072#5002_575_90070#3012_575_90071#4010_575_90072#4013_575_90074#5003_575_90073", + "npcLv": [ + 1493, + 1493, + 1493, + 1493, + 1493, + 1493 + ], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "15500": { + "npcId": 15500, + "attr": {}, + "npclist": "5002_578_90072#4004_578_90070#4011_578_90071#5005_578_90072#5001_578_90074#4007_578_90073", + "npcLv": [ + 1502, + 1502, + 1502, + 1502, + 1502, + 1502 + ], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "17001": { + "npcId": 17001, + "attr": {}, + "npclist": "5001_60_90301#5001_60_90301#5001_60_90301#5001_60_90301#5001_60_90301#5001_60_90301", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "17002": { + "npcId": 17002, + "attr": {}, + "npclist": "5003_60_90302#5003_60_90302#5003_60_90302#5003_60_90302#5003_60_90302#5003_60_90302", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "17003": { + "npcId": 17003, + "attr": {}, + "npclist": "5005_60_90303#5005_60_90303#5005_60_90303#5005_60_90303#5005_60_90303#5005_60_90303", + "npcLv": [], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20001": { + "npcId": 20001, + "attr": {}, + "npclist": "1001_3_90018", + "npcLv": [ + 9 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20002": { + "npcId": 20002, + "attr": {}, + "npclist": "1002_4_90018#1001_4_90018", + "npcLv": [ + 9, + 9 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20003": { + "npcId": 20003, + "attr": {}, + "npclist": "2001_4_90018#2002_4_90018", + "npcLv": [ + 10, + 10 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20004": { + "npcId": 20004, + "attr": {}, + "npclist": "2002_5_90018#1002_5_90018", + "npcLv": [ + 10, + 10 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20005": { + "npcId": 20005, + "attr": {}, + "npclist": "3001_5_90018#3002_5_90018", + "npcLv": [ + 10, + 10 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20006": { + "npcId": 20006, + "attr": {}, + "npclist": "3007_5_90018#3012_5_90018", + "npcLv": [ + 12, + 12 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20007": { + "npcId": 20007, + "attr": {}, + "npclist": "3008_6_90018#3013_6_90018", + "npcLv": [ + 12, + 12 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20008": { + "npcId": 20008, + "attr": {}, + "npclist": "3009_7_90018#3014_7_90018", + "npcLv": [ + 12, + 12 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20009": { + "npcId": 20009, + "attr": {}, + "npclist": "3010_8_90018#3015_8_90018", + "npcLv": [ + 13, + 13 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20010": { + "npcId": 20010, + "attr": {}, + "npclist": "3011_8_90018#4001_8_90018", + "npcLv": [ + 13, + 13 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20011": { + "npcId": 20011, + "attr": {}, + "npclist": "3012_9_90018#4002_9_90018", + "npcLv": [ + 15, + 15 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20012": { + "npcId": 20012, + "attr": {}, + "npclist": "3013_9_90018#4003_9_90018", + "npcLv": [ + 15, + 15 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20013": { + "npcId": 20013, + "attr": {}, + "npclist": "3014_10_90002#4004_10_90018", + "npcLv": [ + 17, + 17 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20014": { + "npcId": 20014, + "attr": {}, + "npclist": "3015_11_90002#4005_11_90018", + "npcLv": [ + 18, + 18 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20015": { + "npcId": 20015, + "attr": {}, + "npclist": "4001_12_90002#4006_12_90018", + "npcLv": [ + 20, + 20 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20016": { + "npcId": 20016, + "attr": {}, + "npclist": "4002_13_90002#4007_13_90018#4012_13_90002", + "npcLv": [ + 22, + 22, + 22 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20017": { + "npcId": 20017, + "attr": {}, + "npclist": "4003_14_90002#4008_14_90018#4011_14_90002", + "npcLv": [ + 23, + 23, + 23 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20018": { + "npcId": 20018, + "attr": {}, + "npclist": "4004_16_90002#4009_16_90018#4014_16_90002", + "npcLv": [ + 25, + 25, + 25 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20019": { + "npcId": 20019, + "attr": {}, + "npclist": "4005_18_90002#4010_18_90018#4015_18_90002", + "npcLv": [ + 27, + 27, + 27 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20020": { + "npcId": 20020, + "attr": {}, + "npclist": "4006_18_90002#4011_18_90018#5001_18_90002", + "npcLv": [ + 29, + 29, + 29 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20021": { + "npcId": 20021, + "attr": {}, + "npclist": "4007_18_90002#4009_18_90002#5002_18_90002#3002_18_90002", + "npcLv": [ + 30, + 30, + 30, + 30 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20022": { + "npcId": 20022, + "attr": {}, + "npclist": "4008_18_90002#4012_18_90002#5003_18_90002#3003_18_90002", + "npcLv": [ + 32, + 32, + 32, + 32 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20023": { + "npcId": 20023, + "attr": {}, + "npclist": "4009_19_90002#4014_19_90002#5004_19_90002#3004_19_90002", + "npcLv": [ + 34, + 34, + 34, + 34 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20024": { + "npcId": 20024, + "attr": {}, + "npclist": "4010_20_90004#4015_20_90004#5005_20_90004#3005_20_90004", + "npcLv": [ + 36, + 36, + 36, + 36 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20025": { + "npcId": 20025, + "attr": {}, + "npclist": "4011_21_90004#5001_21_90004#3001_21_90004#3006_21_90004", + "npcLv": [ + 37, + 37, + 37, + 37 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20026": { + "npcId": 20026, + "attr": {}, + "npclist": "4006_23_90004#5002_23_90004#3002_23_90004#3007_23_90004", + "npcLv": [ + 39, + 39, + 39, + 39 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20027": { + "npcId": 20027, + "attr": {}, + "npclist": "4001_25_90004#5003_25_90004#3003_25_90004#3008_25_90004", + "npcLv": [ + 41, + 41, + 41, + 41 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20028": { + "npcId": 20028, + "attr": {}, + "npclist": "4002_25_90004#5004_25_90004#3004_25_90004#3009_25_90004", + "npcLv": [ + 43, + 43, + 43, + 43 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20029": { + "npcId": 20029, + "attr": {}, + "npclist": "4015_29_90004#5005_29_90004#3005_29_90004#3010_29_90004", + "npcLv": [ + 45, + 45, + 45, + 45 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20030": { + "npcId": 20030, + "attr": {}, + "npclist": "5001_30_90003#3001_30_90003#3006_30_90003#3011_30_90003#4001_30_90003", + "npcLv": [ + 47, + 47, + 47, + 47, + 47 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20031": { + "npcId": 20031, + "attr": {}, + "npclist": "5002_31_90003#3002_31_90003#3007_31_90003#3012_31_90003#4002_31_90003", + "npcLv": [ + 49, + 49, + 49, + 49, + 49 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20032": { + "npcId": 20032, + "attr": {}, + "npclist": "5003_32_90003#3003_32_90003#3008_32_90003#3013_32_90003#4003_32_90003", + "npcLv": [ + 51, + 51, + 51, + 51, + 51 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20033": { + "npcId": 20033, + "attr": {}, + "npclist": "5004_33_90003#3004_33_90003#3009_33_90003#3014_33_90003#4004_33_90003", + "npcLv": [ + 52, + 52, + 52, + 52, + 52 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20034": { + "npcId": 20034, + "attr": {}, + "npclist": "5005_34_90003#3005_34_90003#3010_34_90003#3015_34_90003#4005_34_90003", + "npcLv": [ + 54, + 54, + 54, + 54, + 54 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20035": { + "npcId": 20035, + "attr": {}, + "npclist": "3001_37_90001#3006_37_90004#3011_37_90001#4001_37_90001#4006_37_90001#4011_37_90004", + "npcLv": [ + 56, + 56, + 56, + 56, + 56, + 56 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20036": { + "npcId": 20036, + "attr": {}, + "npclist": "3002_36_90001#3007_36_90004#3012_36_90001#4002_36_90001#4007_36_90001#4003_36_90004", + "npcLv": [ + 58, + 58, + 58, + 58, + 58, + 58 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20037": { + "npcId": 20037, + "attr": {}, + "npclist": "3003_36_90001#3008_36_90004#3013_36_90001#4003_36_90001#4008_36_90001#4012_36_90004", + "npcLv": [ + 60, + 60, + 60, + 60, + 60, + 60 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20038": { + "npcId": 20038, + "attr": {}, + "npclist": "3004_35_90001#3009_35_90004#3014_35_90001#4004_35_90001#4009_35_90001#4014_35_90004", + "npcLv": [ + 62, + 62, + 62, + 62, + 62, + 62 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20039": { + "npcId": 20039, + "attr": {}, + "npclist": "3005_35_90001#3010_35_90004#3015_35_90001#4005_35_90001#4010_35_90001#4015_35_90004", + "npcLv": [ + 64, + 64, + 64, + 64, + 64, + 64 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20040": { + "npcId": 20040, + "attr": {}, + "npclist": "3006_34_90001#3011_34_90004#4001_34_90001#4006_34_90001#4011_34_90001#5001_34_90004", + "npcLv": [ + 64, + 64, + 64, + 64, + 64, + 64 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20041": { + "npcId": 20041, + "attr": {}, + "npclist": "3007_34_90001#3012_34_90004#4002_34_90001#4007_34_90001#4012_34_90001#5002_34_90004", + "npcLv": [ + 64, + 64, + 64, + 64, + 64, + 64 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20042": { + "npcId": 20042, + "attr": {}, + "npclist": "3008_33_90001#3013_33_90004#4003_33_90001#4008_33_90001#4012_33_90001#5003_33_90004", + "npcLv": [ + 66, + 66, + 66, + 66, + 66, + 66 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20043": { + "npcId": 20043, + "attr": {}, + "npclist": "3009_33_90001#3014_33_90004#4004_33_90001#4009_33_90001#4014_33_90001#5004_33_90004", + "npcLv": [ + 66, + 66, + 66, + 66, + 66, + 66 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20044": { + "npcId": 20044, + "attr": {}, + "npclist": "3010_34_90001#3015_34_90004#4005_34_90001#4010_34_90001#4015_34_90001#5005_34_90004", + "npcLv": [ + 66, + 66, + 66, + 66, + 66, + 66 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20045": { + "npcId": 20045, + "attr": {}, + "npclist": "3011_34_90001#4001_34_90004#4006_34_90001#4011_34_90001#5001_34_90001#3001_34_90004", + "npcLv": [ + 66, + 66, + 66, + 66, + 66, + 66 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20046": { + "npcId": 20046, + "attr": {}, + "npclist": "3012_35_90001#4002_35_90004#4007_35_90001#4012_35_90001#5002_35_90001#3002_35_90004", + "npcLv": [ + 68, + 68, + 68, + 68, + 68, + 68 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20047": { + "npcId": 20047, + "attr": {}, + "npclist": "3013_35_90001#4003_35_90004#4008_35_90001#4012_35_90001#5003_35_90001#3003_35_90004", + "npcLv": [ + 68, + 68, + 68, + 68, + 68, + 68 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20048": { + "npcId": 20048, + "attr": {}, + "npclist": "3014_36_90001#4004_36_90004#4009_36_90001#4014_36_90001#5004_36_90001#3004_36_90004", + "npcLv": [ + 68, + 68, + 68, + 68, + 68, + 68 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20049": { + "npcId": 20049, + "attr": {}, + "npclist": "3015_37_90001#4005_37_90004#4010_37_90001#4015_37_90001#5005_37_90001#3005_37_90004", + "npcLv": [ + 68, + 68, + 68, + 68, + 68, + 68 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20050": { + "npcId": 20050, + "attr": {}, + "npclist": "4001_39_90001#4006_39_90004#4011_39_90001#5001_39_90001#3001_39_90001#3006_39_90004", + "npcLv": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20051": { + "npcId": 20051, + "attr": {}, + "npclist": "4002_38_90001#4007_38_90004#4012_38_90001#5002_38_90001#3002_38_90001#3007_38_90004", + "npcLv": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20052": { + "npcId": 20052, + "attr": {}, + "npclist": "4003_38_90001#4008_38_90004#4012_38_90001#5003_38_90001#3003_38_90001#3008_38_90004", + "npcLv": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20053": { + "npcId": 20053, + "attr": {}, + "npclist": "4004_39_90001#4009_39_90004#4014_39_90001#5004_39_90001#3004_39_90001#3009_39_90004", + "npcLv": [ + 70, + 70, + 70, + 70, + 70, + 70 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20054": { + "npcId": 20054, + "attr": {}, + "npclist": "4005_38_90001#4010_38_90004#4015_38_90001#5005_38_90001#3005_38_90001#3010_38_90004", + "npcLv": [ + 72, + 72, + 72, + 72, + 72, + 72 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20055": { + "npcId": 20055, + "attr": {}, + "npclist": "4006_38_90001#4011_38_90004#5001_38_90001#3001_38_90001#3006_38_90001#3011_38_90004", + "npcLv": [ + 72, + 72, + 72, + 72, + 72, + 72 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20056": { + "npcId": 20056, + "attr": {}, + "npclist": "4007_37_90001#4012_37_90004#5002_37_90001#3002_37_90001#3007_37_90001#3012_37_90004", + "npcLv": [ + 72, + 72, + 72, + 72, + 72, + 72 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20057": { + "npcId": 20057, + "attr": {}, + "npclist": "4008_37_90001#4012_37_90004#5003_37_90001#3003_37_90001#3008_37_90001#3013_37_90004", + "npcLv": [ + 72, + 72, + 72, + 72, + 72, + 72 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20058": { + "npcId": 20058, + "attr": {}, + "npclist": "4009_36_90001#4014_36_90004#5004_36_90001#3004_36_90001#3009_36_90001#3014_36_90004", + "npcLv": [ + 74, + 74, + 74, + 74, + 74, + 74 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20059": { + "npcId": 20059, + "attr": {}, + "npclist": "4010_36_90001#4015_36_90004#5005_36_90001#3005_36_90001#3010_36_90001#3015_36_90004", + "npcLv": [ + 74, + 74, + 74, + 74, + 74, + 74 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20060": { + "npcId": 20060, + "attr": {}, + "npclist": "4011_40_90001#5001_40_90004#3001_40_90001#3006_40_90001#3011_40_90001#4001_40_90004", + "npcLv": [ + 74, + 74, + 74, + 74, + 74, + 74 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20061": { + "npcId": 20061, + "attr": {}, + "npclist": "4012_35_90001#5002_35_90004#3002_35_90001#3007_35_90001#3012_35_90001#4002_35_90004", + "npcLv": [ + 74, + 74, + 74, + 74, + 74, + 74 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20062": { + "npcId": 20062, + "attr": {}, + "npclist": "4012_34_90001#5003_34_90004#3003_34_90001#3008_34_90001#3013_34_90001#4003_34_90004", + "npcLv": [ + 76, + 76, + 76, + 76, + 76, + 76 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20063": { + "npcId": 20063, + "attr": {}, + "npclist": "4014_34_90001#5004_34_90004#3004_34_90001#3009_34_90001#3014_34_90001#4004_34_90004", + "npcLv": [ + 76, + 76, + 76, + 76, + 76, + 76 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20064": { + "npcId": 20064, + "attr": {}, + "npclist": "4015_33_90001#5005_33_90004#3005_33_90001#3010_33_90001#3015_33_90001#4005_33_90004", + "npcLv": [ + 76, + 76, + 76, + 76, + 76, + 76 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20065": { + "npcId": 20065, + "attr": {}, + "npclist": "5001_38_90001#3001_38_90004#3006_38_90001#3011_38_90001#4001_38_90001#4006_38_90004", + "npcLv": [ + 76, + 76, + 76, + 76, + 76, + 76 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20066": { + "npcId": 20066, + "attr": {}, + "npclist": "5002_34_90001#3002_34_90004#3007_34_90001#3012_34_90001#4002_34_90001#4007_34_90001", + "npcLv": [ + 78, + 78, + 78, + 78, + 78, + 78 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20067": { + "npcId": 20067, + "attr": {}, + "npclist": "5003_34_90001#3003_34_90004#3008_34_90001#3013_34_90001#4003_34_90001#4008_34_90001", + "npcLv": [ + 78, + 78, + 78, + 78, + 78, + 78 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20068": { + "npcId": 20068, + "attr": {}, + "npclist": "5004_35_90001#3004_35_90004#3009_35_90001#3014_35_90001#4004_35_90001#4009_35_90001", + "npcLv": [ + 78, + 78, + 78, + 78, + 78, + 78 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20069": { + "npcId": 20069, + "attr": {}, + "npclist": "5005_35_90001#3005_35_90004#3010_35_90001#3015_35_90001#4005_35_90001#4010_35_90001", + "npcLv": [ + 78, + 78, + 78, + 78, + 78, + 78 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20070": { + "npcId": 20070, + "attr": {}, + "npclist": "3001_41_90001#3006_41_90004#3011_41_90001#4013_41_90001#4006_41_90001#4011_41_90001", + "npcLv": [ + 80, + 80, + 80, + 80, + 80, + 80 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20071": { + "npcId": 20071, + "attr": {}, + "npclist": "3002_36_90001#3007_36_90004#3012_36_90001#4002_36_90001#4007_36_90001#4012_36_90001", + "npcLv": [ + 80, + 80, + 80, + 80, + 80, + 80 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20072": { + "npcId": 20072, + "attr": {}, + "npclist": "3003_37_90001#3008_37_90004#3013_37_90001#4003_37_90001#4008_37_90001#4012_37_90001", + "npcLv": [ + 80, + 80, + 80, + 80, + 80, + 80 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20073": { + "npcId": 20073, + "attr": {}, + "npclist": "3004_37_90001#3009_37_90004#3014_37_90001#4004_37_90001#4009_37_90001#4014_37_90001", + "npcLv": [ + 80, + 80, + 80, + 80, + 80, + 80 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20074": { + "npcId": 20074, + "attr": {}, + "npclist": "3005_38_90001#3010_38_90004#3015_38_90001#4005_38_90001#4010_38_90001#4015_38_90001", + "npcLv": [ + 82, + 82, + 82, + 82, + 82, + 82 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20075": { + "npcId": 20075, + "attr": {}, + "npclist": "3006_40_90001#3011_40_90004#4001_40_90001#4006_40_90001#4011_40_90001#5001_40_90001", + "npcLv": [ + 82, + 82, + 82, + 82, + 82, + 82 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20076": { + "npcId": 20076, + "attr": {}, + "npclist": "3007_39_90001#3012_39_90005#4002_39_90001#4007_39_90005#4012_39_90001#5002_39_90005", + "npcLv": [ + 82, + 82, + 82, + 82, + 82, + 82 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20077": { + "npcId": 20077, + "attr": {}, + "npclist": "3008_39_90001#3013_39_90005#4003_39_90001#4008_39_90005#4012_39_90001#5003_39_90005", + "npcLv": [ + 82, + 82, + 82, + 82, + 82, + 82 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20078": { + "npcId": 20078, + "attr": {}, + "npclist": "3009_40_90001#3014_40_90005#4004_40_90001#4009_40_90005#4014_40_90001#5004_40_90005", + "npcLv": [ + 84, + 84, + 84, + 84, + 84, + 84 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20079": { + "npcId": 20079, + "attr": {}, + "npclist": "3010_40_90001#3015_40_90005#4005_40_90001#4010_40_90005#4015_40_90001#5005_40_90005", + "npcLv": [ + 84, + 84, + 84, + 84, + 84, + 84 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20080": { + "npcId": 20080, + "attr": {}, + "npclist": "3011_42_90001#4013_42_90005#4006_42_90001#4011_42_90005#5001_42_90001#3001_42_90005", + "npcLv": [ + 84, + 84, + 84, + 84, + 84, + 84 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20081": { + "npcId": 20081, + "attr": {}, + "npclist": "3012_39_90001#4002_39_90005#4007_39_90001#4012_39_90005#5002_39_90001#3002_39_90005", + "npcLv": [ + 84, + 84, + 84, + 84, + 84, + 84 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20082": { + "npcId": 20082, + "attr": {}, + "npclist": "3013_38_90001#4003_38_90005#4008_38_90001#4012_38_90005#5003_38_90001#3003_38_90005", + "npcLv": [ + 86, + 86, + 86, + 86, + 86, + 86 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20083": { + "npcId": 20083, + "attr": {}, + "npclist": "3014_38_90001#4004_38_90005#4009_38_90001#4014_38_90005#5004_38_90001#3004_38_90005", + "npcLv": [ + 86, + 86, + 86, + 86, + 86, + 86 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20084": { + "npcId": 20084, + "attr": {}, + "npclist": "3015_37_90001#4005_37_90005#4010_37_90001#4015_37_90005#5005_37_90001#3005_37_90005", + "npcLv": [ + 86, + 86, + 86, + 86, + 86, + 86 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20085": { + "npcId": 20085, + "attr": {}, + "npclist": "4001_37_90001#4006_37_90005#4011_37_90001#5001_37_90005#3001_37_90001#3006_37_90005", + "npcLv": [ + 86, + 86, + 86, + 86, + 86, + 86 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20086": { + "npcId": 20086, + "attr": {}, + "npclist": "4002_36_90001#4007_36_90005#4012_36_90001#5002_36_90005#3002_36_90001#3007_36_90005", + "npcLv": [ + 88, + 88, + 88, + 88, + 88, + 88 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20087": { + "npcId": 20087, + "attr": {}, + "npclist": "4003_36_90001#4008_36_90005#4012_36_90001#5003_36_90005#3003_36_90001#3008_36_90005", + "npcLv": [ + 88, + 88, + 88, + 88, + 88, + 88 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20088": { + "npcId": 20088, + "attr": {}, + "npclist": "4004_35_90001#4009_35_90005#4014_35_90001#5004_35_90005#3004_35_90001#3009_35_90005", + "npcLv": [ + 88, + 88, + 88, + 88, + 88, + 88 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20089": { + "npcId": 20089, + "attr": {}, + "npclist": "4005_35_90001#4010_35_90070#4015_35_90001#5005_35_90001#3005_35_90001#3010_35_90070", + "npcLv": [ + 88, + 88, + 88, + 88, + 88, + 88 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20090": { + "npcId": 20090, + "attr": {}, + "npclist": "4006_42_90001#4011_42_90070#5001_42_90001#3001_42_90001#3006_42_90001#3011_42_90070", + "npcLv": [ + 90, + 90, + 90, + 90, + 90, + 90 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20091": { + "npcId": 20091, + "attr": {}, + "npclist": "4007_40_90073#4012_40_90070#5002_40_90001#3002_40_90001#3007_40_90001#3012_40_90070", + "npcLv": [ + 90, + 90, + 90, + 90, + 90, + 90 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20092": { + "npcId": 20092, + "attr": {}, + "npclist": "4008_40_90073#4012_40_90070#5003_40_90074#3003_40_90001#3008_40_90001#3013_40_90070", + "npcLv": [ + 90, + 90, + 90, + 90, + 90, + 90 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20093": { + "npcId": 20093, + "attr": {}, + "npclist": "4009_41_90073#4014_41_90070#5004_41_90074#3004_41_90070#3009_41_90070#3014_41_90070", + "npcLv": [ + 90, + 90, + 90, + 90, + 90, + 90 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20094": { + "npcId": 20094, + "attr": {}, + "npclist": "4010_41_90073#4015_41_90070#5005_41_90074#3005_41_90070#3010_41_90073#3015_41_90070", + "npcLv": [ + 92, + 92, + 92, + 92, + 92, + 92 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20095": { + "npcId": 20095, + "attr": {}, + "npclist": "4011_42_90073#5001_42_90070#3001_42_90074#3006_42_90070#3011_42_90073#4001_42_90070", + "npcLv": [ + 92, + 92, + 92, + 92, + 92, + 92 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20096": { + "npcId": 20096, + "attr": {}, + "npclist": "4012_42_90073#5002_42_90070#3002_42_90074#3007_42_90070#3012_42_90073#4002_42_90070", + "npcLv": [ + 92, + 92, + 92, + 92, + 92, + 92 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20097": { + "npcId": 20097, + "attr": {}, + "npclist": "4012_43_90073#5003_43_90070#3003_43_90074#3008_43_90070#3013_43_90073#4003_43_90070", + "npcLv": [ + 92, + 92, + 92, + 92, + 92, + 92 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20098": { + "npcId": 20098, + "attr": {}, + "npclist": "4014_43_90073#5004_43_90070#3004_43_90074#3009_43_90070#3014_43_90073#4004_43_90070", + "npcLv": [ + 94, + 94, + 94, + 94, + 94, + 94 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20099": { + "npcId": 20099, + "attr": {}, + "npclist": "4015_44_90073#5005_44_90070#3005_44_90074#3010_44_90070#3015_44_90073#4005_44_90070", + "npcLv": [ + 94, + 94, + 94, + 94, + 94, + 94 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20100": { + "npcId": 20100, + "attr": {}, + "npclist": "5001_51_90073#3001_51_90070#3006_51_90074#3011_51_90070#4013_51_90073#4006_51_90070", + "npcLv": [ + 94, + 94, + 94, + 94, + 94, + 94 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20101": { + "npcId": 20101, + "attr": {}, + "npclist": "5002_41_90073#3002_41_90070#3007_41_90074#3012_41_90070#4002_41_90073#4007_41_90070", + "npcLv": [ + 94, + 94, + 94, + 94, + 94, + 94 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20102": { + "npcId": 20102, + "attr": {}, + "npclist": "5003_40_90073#3003_40_90070#3008_40_90074#3013_40_90070#4003_40_90071#4008_40_90072", + "npcLv": [ + 97, + 97, + 97, + 97, + 97, + 97 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20103": { + "npcId": 20103, + "attr": {}, + "npclist": "5004_40_90073#3004_40_90070#3009_40_90074#3014_40_90070#4004_40_90071#4009_40_90072", + "npcLv": [ + 97, + 97, + 97, + 97, + 97, + 97 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20104": { + "npcId": 20104, + "attr": {}, + "npclist": "5005_41_90073#3005_41_90070#3010_41_90074#3015_41_90070#4005_41_90071#4010_41_90072", + "npcLv": [ + 97, + 97, + 97, + 97, + 97, + 97 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20105": { + "npcId": 20105, + "attr": {}, + "npclist": "3001_41_90072#3006_41_90071#3011_41_90076#4001_41_90077#4006_41_90077#4011_41_90077", + "npcLv": [ + 97, + 97, + 97, + 97, + 97, + 97 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20106": { + "npcId": 20106, + "attr": {}, + "npclist": "3002_42_90072#3007_42_90071#3012_42_90076#4002_42_90077#4007_42_90077#4012_42_90077", + "npcLv": [ + 99, + 99, + 99, + 99, + 99, + 99 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20107": { + "npcId": 20107, + "attr": {}, + "npclist": "3003_42_90072#3008_42_90071#3013_42_90076#4003_42_90077#4008_42_90077#4012_42_90077", + "npcLv": [ + 99, + 99, + 99, + 99, + 99, + 99 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20108": { + "npcId": 20108, + "attr": {}, + "npclist": "3004_44_90072#3009_44_90071#3014_44_90076#4004_44_90077#4009_44_90077#4014_44_90077", + "npcLv": [ + 99, + 99, + 99, + 99, + 99, + 99 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20109": { + "npcId": 20109, + "attr": {}, + "npclist": "3005_44_90072#3010_44_90071#3015_44_90076#4004_44_90077#4010_44_90077#4015_44_90077", + "npcLv": [ + 99, + 99, + 99, + 99, + 99, + 99 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20110": { + "npcId": 20110, + "attr": {}, + "npclist": "3006_53_90072#3011_53_90071#4001_53_90076#4006_53_90077#4011_53_90077#5001_53_90077", + "npcLv": [ + 101, + 101, + 101, + 101, + 101, + 101 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20111": { + "npcId": 20111, + "attr": {}, + "npclist": "3007_45_90072#3012_45_90071#4002_45_90076#4007_45_90077#4012_45_90077#5002_45_90077", + "npcLv": [ + 101, + 101, + 101, + 101, + 101, + 101 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20112": { + "npcId": 20112, + "attr": {}, + "npclist": "3008_44_90072#3013_44_90071#4003_44_90076#4008_44_90077#4012_44_90077#5003_44_90077", + "npcLv": [ + 101, + 101, + 101, + 101, + 101, + 101 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20113": { + "npcId": 20113, + "attr": {}, + "npclist": "3009_44_90072#3014_44_90071#4004_44_90076#4009_44_90077#4014_44_90077#5004_44_90077", + "npcLv": [ + 101, + 101, + 101, + 101, + 101, + 101 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20114": { + "npcId": 20114, + "attr": {}, + "npclist": "3010_44_90072#3015_44_90071#4005_44_90076#4010_44_90077#4015_44_90077#5005_44_90077", + "npcLv": [ + 103, + 103, + 103, + 103, + 103, + 103 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20115": { + "npcId": 20115, + "attr": {}, + "npclist": "3011_45_90072#4001_45_90071#4006_45_90076#4011_45_90077#5001_45_90077#3001_45_90077", + "npcLv": [ + 103, + 103, + 103, + 103, + 103, + 103 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20116": { + "npcId": 20116, + "attr": {}, + "npclist": "3012_45_90072#4002_45_90071#4007_45_90076#4012_45_90077#5002_45_90077#3002_45_90077", + "npcLv": [ + 103, + 103, + 103, + 103, + 103, + 103 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20117": { + "npcId": 20117, + "attr": {}, + "npclist": "3013_46_90072#4003_46_90071#4008_46_90076#4012_46_90077#5003_46_90077#3003_46_90077", + "npcLv": [ + 103, + 103, + 103, + 103, + 103, + 103 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20118": { + "npcId": 20118, + "attr": {}, + "npclist": "3014_46_90072#4004_46_90071#4009_46_90076#4014_46_90077#5004_46_90077#3004_46_90077", + "npcLv": [ + 105, + 105, + 105, + 105, + 105, + 105 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20119": { + "npcId": 20119, + "attr": {}, + "npclist": "3015_47_90072#4005_47_90071#4010_47_90076#4015_47_90077#5005_47_90077#3005_47_90077", + "npcLv": [ + 105, + 105, + 105, + 105, + 105, + 105 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20120": { + "npcId": 20120, + "attr": {}, + "npclist": "4001_55_90072#4006_55_90071#4011_55_90076#5001_55_90077#3001_55_90077#3006_55_90077", + "npcLv": [ + 105, + 105, + 105, + 105, + 105, + 105 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20121": { + "npcId": 20121, + "attr": {}, + "npclist": "4002_45_90072#4007_45_90071#4012_45_90076#5002_45_90077#3002_45_90078#3007_45_90078", + "npcLv": [ + 105, + 105, + 105, + 105, + 105, + 105 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20122": { + "npcId": 20122, + "attr": {}, + "npclist": "4003_43_90072#4008_43_90071#4012_43_90076#5003_43_90077#3003_43_90078#3008_43_90078", + "npcLv": [ + 107, + 107, + 107, + 107, + 107, + 107 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20123": { + "npcId": 20123, + "attr": {}, + "npclist": "4004_43_90072#4009_43_90071#4014_43_90076#5004_43_90077#3004_43_90078#3009_43_90078", + "npcLv": [ + 107, + 107, + 107, + 107, + 107, + 107 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20124": { + "npcId": 20124, + "attr": {}, + "npclist": "4005_45_90072#4010_45_90071#4015_45_90076#5005_45_90077#3005_45_90078#3010_45_90078", + "npcLv": [ + 107, + 107, + 107, + 107, + 107, + 107 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20125": { + "npcId": 20125, + "attr": {}, + "npclist": "4006_45_90072#4011_45_90071#5001_45_90076#3001_45_90077#3006_45_90078#3011_45_90078", + "npcLv": [ + 107, + 107, + 107, + 107, + 107, + 107 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20126": { + "npcId": 20126, + "attr": {}, + "npclist": "4007_46_90072#4012_46_90071#5002_46_90076#3002_46_90077#3007_46_90078#3012_46_90078", + "npcLv": [ + 109, + 109, + 109, + 109, + 109, + 109 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20127": { + "npcId": 20127, + "attr": {}, + "npclist": "4008_46_90072#4012_46_90071#5003_46_90076#3003_46_90077#3008_46_90078#3013_46_90078", + "npcLv": [ + 109, + 109, + 109, + 109, + 109, + 109 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20128": { + "npcId": 20128, + "attr": {}, + "npclist": "4009_47_90072#4014_47_90071#5004_47_90076#3004_47_90077#3009_47_90078#3014_47_90078", + "npcLv": [ + 109, + 109, + 109, + 109, + 109, + 109 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20129": { + "npcId": 20129, + "attr": {}, + "npclist": "4010_47_90072#4015_47_90071#5005_47_90076#3005_47_90077#3010_47_90078#3015_47_90078", + "npcLv": [ + 109, + 109, + 109, + 109, + 109, + 109 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20130": { + "npcId": 20130, + "attr": {}, + "npclist": "4011_53_90072#5001_53_90071#3001_53_90076#3006_53_90077#3011_53_90078#4001_53_90078", + "npcLv": [ + 111, + 111, + 111, + 111, + 111, + 111 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20131": { + "npcId": 20131, + "attr": {}, + "npclist": "4012_48_90072#5002_48_90071#3002_48_90076#3007_48_90077#3012_48_90078#4002_48_90078", + "npcLv": [ + 111, + 111, + 111, + 111, + 111, + 111 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20132": { + "npcId": 20132, + "attr": {}, + "npclist": "4012_50_90072#5003_50_90071#3003_50_90076#3008_50_90077#3013_50_90078#4003_50_90078", + "npcLv": [ + 111, + 111, + 111, + 111, + 111, + 111 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20133": { + "npcId": 20133, + "attr": {}, + "npclist": "4014_50_90072#5004_50_90071#3004_50_90076#3009_50_90077#3014_50_90078#4004_50_90078", + "npcLv": [ + 111, + 111, + 111, + 111, + 111, + 111 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20134": { + "npcId": 20134, + "attr": {}, + "npclist": "4015_51_90072#5005_51_90071#3005_51_90076#3010_51_90077#3015_51_90078#4005_51_90078", + "npcLv": [ + 113, + 113, + 113, + 113, + 113, + 113 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20135": { + "npcId": 20135, + "attr": {}, + "npclist": "5001_51_90072#3001_51_90071#3006_51_90076#3011_51_90077#4001_51_90078#4006_51_90078", + "npcLv": [ + 113, + 113, + 113, + 113, + 113, + 113 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20136": { + "npcId": 20136, + "attr": {}, + "npclist": "5002_52_90072#3002_52_90071#3007_52_90076#3012_52_90077#4002_52_90078#4007_52_90078", + "npcLv": [ + 113, + 113, + 113, + 113, + 113, + 113 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20137": { + "npcId": 20137, + "attr": {}, + "npclist": "5003_53_90072#3003_53_90071#3008_53_90076#3013_53_90077#4003_53_90079#4008_53_90079", + "npcLv": [ + 113, + 113, + 113, + 113, + 113, + 113 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20138": { + "npcId": 20138, + "attr": {}, + "npclist": "5004_53_90072#3004_53_90071#3009_53_90076#3014_53_90077#4004_53_90079#4009_53_90079", + "npcLv": [ + 116, + 116, + 116, + 116, + 116, + 116 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20139": { + "npcId": 20139, + "attr": {}, + "npclist": "5005_55_90072#3005_55_90071#3010_55_90076#3015_55_90077#4005_55_90079#4010_55_90079", + "npcLv": [ + 116, + 116, + 116, + 116, + 116, + 116 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20140": { + "npcId": 20140, + "attr": {}, + "npclist": "3001_67_90072#3006_67_90071#3011_67_90076#4001_67_90077#4006_67_90079#4011_67_90079", + "npcLv": [ + 116, + 116, + 116, + 116, + 116, + 116 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20141": { + "npcId": 20141, + "attr": {}, + "npclist": "3002_60_90072#3007_60_90071#3012_60_90076#4002_60_90077#4007_60_90079#4012_60_90079", + "npcLv": [ + 116, + 116, + 116, + 116, + 116, + 116 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20142": { + "npcId": 20142, + "attr": {}, + "npclist": "3003_62_90072#3008_62_90071#3013_62_90076#4003_62_90077#4008_62_90079#4012_62_90079", + "npcLv": [ + 118, + 118, + 118, + 118, + 118, + 118 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20143": { + "npcId": 20143, + "attr": {}, + "npclist": "3004_62_90072#3009_62_90071#3014_62_90076#4004_62_90077#4009_62_90079#4014_62_90079", + "npcLv": [ + 118, + 118, + 118, + 118, + 118, + 118 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20144": { + "npcId": 20144, + "attr": {}, + "npclist": "3005_60_90072#3010_60_90071#3015_60_90076#4005_60_90077#4010_60_90079#4015_60_90079", + "npcLv": [ + 118, + 118, + 118, + 118, + 118, + 118 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20145": { + "npcId": 20145, + "attr": {}, + "npclist": "3006_60_90072#3011_60_90071#4001_60_90076#4006_60_90077#4011_60_90079#5001_60_90079", + "npcLv": [ + 118, + 118, + 118, + 118, + 118, + 118 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20146": { + "npcId": 20146, + "attr": {}, + "npclist": "3007_59_90072#3012_59_90071#4002_59_90076#4007_59_90077#4012_59_90079#5002_59_90079", + "npcLv": [ + 120, + 120, + 120, + 120, + 120, + 120 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20147": { + "npcId": 20147, + "attr": {}, + "npclist": "3008_59_90072#3013_59_90071#4003_59_90076#4008_59_90077#4012_59_90079#5003_59_90079", + "npcLv": [ + 120, + 120, + 120, + 120, + 120, + 120 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20148": { + "npcId": 20148, + "attr": {}, + "npclist": "3009_58_90072#3014_58_90071#4004_58_90076#4009_58_90077#4014_58_90079#5004_58_90079", + "npcLv": [ + 120, + 120, + 120, + 120, + 120, + 120 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20149": { + "npcId": 20149, + "attr": {}, + "npclist": "3010_58_90072#3015_58_90071#4005_58_90076#4010_58_90077#4015_58_90079#5005_58_90079", + "npcLv": [ + 120, + 120, + 120, + 120, + 120, + 120 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20150": { + "npcId": 20150, + "attr": {}, + "npclist": "3011_65_90072#4001_65_90071#4006_65_90076#4011_65_90077#5001_65_90079#3001_65_90079", + "npcLv": [ + 122, + 122, + 122, + 122, + 122, + 122 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20151": { + "npcId": 20151, + "attr": {}, + "npclist": "3012_63_90072#4002_63_90071#4007_63_90076#4012_63_90077#5002_63_90079#3002_63_90079", + "npcLv": [ + 122, + 122, + 122, + 122, + 122, + 122 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20152": { + "npcId": 20152, + "attr": {}, + "npclist": "3013_61_90072#4003_61_90071#4008_61_90076#4013_61_90077#5003_61_90079#3003_61_90079", + "npcLv": [ + 122, + 122, + 122, + 122, + 122, + 122 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20153": { + "npcId": 20153, + "attr": {}, + "npclist": "3014_61_90072#4004_61_90071#4009_61_90076#4014_61_90078#5004_61_90079#3004_61_90079", + "npcLv": [ + 122, + 122, + 122, + 122, + 122, + 122 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20154": { + "npcId": 20154, + "attr": {}, + "npclist": "3015_60_90072#4005_60_90071#4010_60_90076#4015_60_90078#5005_60_90079#3005_60_90079", + "npcLv": [ + 124, + 124, + 124, + 124, + 124, + 124 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20155": { + "npcId": 20155, + "attr": {}, + "npclist": "4001_60_90072#4006_60_90071#4011_60_90076#5001_60_90078#3001_60_90079#3006_60_90079", + "npcLv": [ + 124, + 124, + 124, + 124, + 124, + 124 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20156": { + "npcId": 20156, + "attr": {}, + "npclist": "4002_61_90072#4007_61_90071#4012_61_90076#5002_61_90078#3002_61_90079#3007_61_90079", + "npcLv": [ + 124, + 124, + 124, + 124, + 124, + 124 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20157": { + "npcId": 20157, + "attr": {}, + "npclist": "4003_61_90072#4008_61_90071#4013_61_90076#5003_61_90078#3003_61_90079#3008_61_90079", + "npcLv": [ + 124, + 124, + 124, + 124, + 124, + 124 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20158": { + "npcId": 20158, + "attr": {}, + "npclist": "4004_63_90072#4009_63_90071#4014_63_90076#5004_63_90078#3004_63_90079#3009_63_90079", + "npcLv": [ + 126, + 126, + 126, + 126, + 126, + 126 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20159": { + "npcId": 20159, + "attr": {}, + "npclist": "4005_63_90072#4010_63_90071#4015_63_90076#5005_63_90078#3005_63_90079#3010_63_90079", + "npcLv": [ + 126, + 126, + 126, + 126, + 126, + 126 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20160": { + "npcId": 20160, + "attr": {}, + "npclist": "4006_77_90072#4011_77_90071#5001_77_90076#3001_77_90078#3006_77_90079#3011_77_90079", + "npcLv": [ + 126, + 126, + 126, + 126, + 126, + 126 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20161": { + "npcId": 20161, + "attr": {}, + "npclist": "4007_64_90072#4012_64_90071#5002_64_90076#3002_64_90078#3007_64_90079#3012_64_90079", + "npcLv": [ + 126, + 126, + 126, + 126, + 126, + 126 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20162": { + "npcId": 20162, + "attr": {}, + "npclist": "4008_66_90072#4013_66_90071#5003_66_90076#3003_66_90078#3008_66_90079#3013_66_90079", + "npcLv": [ + 128, + 128, + 128, + 128, + 128, + 128 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20163": { + "npcId": 20163, + "attr": {}, + "npclist": "4009_66_90072#4014_66_90071#5004_66_90076#3004_66_90078#3009_66_90079#3014_66_90079", + "npcLv": [ + 128, + 128, + 128, + 128, + 128, + 128 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20164": { + "npcId": 20164, + "attr": {}, + "npclist": "4010_67_90072#4015_67_90071#5005_67_90076#3005_67_90078#3010_67_90079#3015_67_90079", + "npcLv": [ + 128, + 128, + 128, + 128, + 128, + 128 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20165": { + "npcId": 20165, + "attr": {}, + "npclist": "4011_67_90072#5001_67_90071#3001_67_90076#3006_67_90078#3011_67_90079#4001_67_90079", + "npcLv": [ + 128, + 128, + 128, + 128, + 128, + 128 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20166": { + "npcId": 20166, + "attr": {}, + "npclist": "4012_69_90072#5002_69_90071#3002_69_90076#3007_69_90078#3012_69_90079#4002_69_90079", + "npcLv": [ + 131, + 131, + 131, + 131, + 131, + 131 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20167": { + "npcId": 20167, + "attr": {}, + "npclist": "4013_69_90072#5003_69_90071#3003_69_90076#3008_69_90078#3013_69_90079#4003_69_90079", + "npcLv": [ + 131, + 131, + 131, + 131, + 131, + 131 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20168": { + "npcId": 20168, + "attr": {}, + "npclist": "4014_70_90072#5004_70_90071#3004_70_90076#3009_70_90078#3014_70_90079#4004_70_90079", + "npcLv": [ + 131, + 131, + 131, + 131, + 131, + 131 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20169": { + "npcId": 20169, + "attr": {}, + "npclist": "4015_70_90072#5005_70_90071#3005_70_90076#3010_70_90079#3015_70_90079#4005_70_90079", + "npcLv": [ + 131, + 131, + 131, + 131, + 131, + 131 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20170": { + "npcId": 20170, + "attr": {}, + "npclist": "5001_79_90072#3001_79_90071#3006_79_90076#3011_79_90079#4001_79_90079#4006_79_90079", + "npcLv": [ + 133, + 133, + 133, + 133, + 133, + 133 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20171": { + "npcId": 20171, + "attr": {}, + "npclist": "5002_67_90072#3002_67_90071#3007_67_90076#3012_67_90079#4002_67_90079#4007_67_90079", + "npcLv": [ + 133, + 133, + 133, + 133, + 133, + 133 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20172": { + "npcId": 20172, + "attr": {}, + "npclist": "5003_68_90072#3003_68_90071#3008_68_90076#3013_68_90079#4003_68_90079#4008_68_90079", + "npcLv": [ + 133, + 133, + 133, + 133, + 133, + 133 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20173": { + "npcId": 20173, + "attr": {}, + "npclist": "5004_68_90072#3004_68_90071#3009_68_90076#3014_68_90079#4004_68_90079#4009_68_90079", + "npcLv": [ + 133, + 133, + 133, + 133, + 133, + 133 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20174": { + "npcId": 20174, + "attr": {}, + "npclist": "5005_70_90072#3005_70_90071#3010_70_90076#3015_70_90079#4005_70_90079#4010_70_90079", + "npcLv": [ + 135, + 135, + 135, + 135, + 135, + 135 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20175": { + "npcId": 20175, + "attr": {}, + "npclist": "3001_70_90072#3006_70_90071#3011_70_90076#4001_70_90079#4006_70_90079#4011_70_90079", + "npcLv": [ + 135, + 135, + 135, + 135, + 135, + 135 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20176": { + "npcId": 20176, + "attr": {}, + "npclist": "3002_71_90072#3007_71_90071#3012_71_90076#4002_71_90079#4007_71_90079#4012_71_90079", + "npcLv": [ + 135, + 135, + 135, + 135, + 135, + 135 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20177": { + "npcId": 20177, + "attr": {}, + "npclist": "3003_71_90072#3008_71_90071#3013_71_90076#4003_71_90079#4008_71_90079#4013_71_90079", + "npcLv": [ + 135, + 135, + 135, + 135, + 135, + 135 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20178": { + "npcId": 20178, + "attr": {}, + "npclist": "3004_72_90072#3009_72_90071#3014_72_90076#4004_72_90079#4009_72_90079#4014_72_90079", + "npcLv": [ + 137, + 137, + 137, + 137, + 137, + 137 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20179": { + "npcId": 20179, + "attr": {}, + "npclist": "3005_72_90072#3010_72_90071#3015_72_90076#4005_72_90079#4010_72_90079#4015_72_90079", + "npcLv": [ + 137, + 137, + 137, + 137, + 137, + 137 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20180": { + "npcId": 20180, + "attr": {}, + "npclist": "3006_85_90072#3011_85_90071#4001_85_90076#4006_85_90079#4011_85_90079#5001_85_90079", + "npcLv": [ + 137, + 137, + 137, + 137, + 137, + 137 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20181": { + "npcId": 20181, + "attr": {}, + "npclist": "3007_68_90072#3012_68_90071#4002_68_90076#4007_68_90079#4012_68_90079#5002_68_90079", + "npcLv": [ + 137, + 137, + 137, + 137, + 137, + 137 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20182": { + "npcId": 20182, + "attr": {}, + "npclist": "3008_70_90072#3013_70_90071#4003_70_90076#4008_70_90079#4013_70_90079#5003_70_90079", + "npcLv": [ + 139, + 139, + 139, + 139, + 139, + 139 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20183": { + "npcId": 20183, + "attr": {}, + "npclist": "3009_70_90072#3014_70_90071#4004_70_90076#4009_70_90079#4014_70_90079#5004_70_90079", + "npcLv": [ + 139, + 139, + 139, + 139, + 139, + 139 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20184": { + "npcId": 20184, + "attr": {}, + "npclist": "3010_71_90072#3015_71_90071#4005_71_90076#4010_71_90079#4015_71_90079#5005_71_90079", + "npcLv": [ + 139, + 139, + 139, + 139, + 139, + 139 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20185": { + "npcId": 20185, + "attr": {}, + "npclist": "3011_71_90072#4001_71_90071#4006_71_90076#4011_71_90079#5001_71_90079#3001_71_90079", + "npcLv": [ + 139, + 139, + 139, + 139, + 139, + 139 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20186": { + "npcId": 20186, + "attr": {}, + "npclist": "3012_72_90072#4002_72_90071#4007_72_90076#4012_72_90079#5002_72_90079#3002_72_90079", + "npcLv": [ + 141, + 141, + 141, + 141, + 141, + 141 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20187": { + "npcId": 20187, + "attr": {}, + "npclist": "3013_72_90072#4003_72_90071#4008_72_90076#4013_72_90079#5003_72_90079#3003_72_90079", + "npcLv": [ + 141, + 141, + 141, + 141, + 141, + 141 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20188": { + "npcId": 20188, + "attr": {}, + "npclist": "3014_74_90072#4004_74_90071#4009_74_90076#4014_74_90079#5004_74_90079#3004_74_90079", + "npcLv": [ + 141, + 141, + 141, + 141, + 141, + 141 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20189": { + "npcId": 20189, + "attr": {}, + "npclist": "3015_74_90072#4005_74_90071#4010_74_90076#4015_74_90079#5005_74_90079#3005_74_90079", + "npcLv": [ + 141, + 141, + 141, + 141, + 141, + 141 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20190": { + "npcId": 20190, + "attr": {}, + "npclist": "4001_88_90072#4006_88_90071#4011_88_90076#5001_88_90079#3001_88_90079#3006_88_90079", + "npcLv": [ + 144, + 144, + 144, + 144, + 144, + 144 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20191": { + "npcId": 20191, + "attr": {}, + "npclist": "4002_75_90072#4007_75_90071#4012_75_90076#5002_75_90079#3002_75_90079#3007_75_90079", + "npcLv": [ + 144, + 144, + 144, + 144, + 144, + 144 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20192": { + "npcId": 20192, + "attr": {}, + "npclist": "4003_76_90072#4008_76_90071#4013_76_90076#5003_76_90079#3003_76_90079#3008_76_90079", + "npcLv": [ + 144, + 144, + 144, + 144, + 144, + 144 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20193": { + "npcId": 20193, + "attr": {}, + "npclist": "4004_76_90072#4009_76_90071#4014_76_90076#5004_76_90079#3004_76_90079#3009_76_90079", + "npcLv": [ + 144, + 144, + 144, + 144, + 144, + 144 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20194": { + "npcId": 20194, + "attr": {}, + "npclist": "4005_78_90072#4010_78_90071#4015_78_90076#5005_78_90079#3005_78_90079#3010_78_90079", + "npcLv": [ + 146, + 146, + 146, + 146, + 146, + 146 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20195": { + "npcId": 20195, + "attr": {}, + "npclist": "4006_78_90072#4011_78_90071#5001_78_90076#3001_78_90079#3006_78_90079#3011_78_90079", + "npcLv": [ + 146, + 146, + 146, + 146, + 146, + 146 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20196": { + "npcId": 20196, + "attr": {}, + "npclist": "4007_79_90072#4012_79_90071#5002_79_90076#3002_79_90079#3007_79_90079#3012_79_90079", + "npcLv": [ + 146, + 146, + 146, + 146, + 146, + 146 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20197": { + "npcId": 20197, + "attr": {}, + "npclist": "4008_79_90072#4013_79_90071#5003_79_90076#3003_79_90079#3008_79_90079#3013_79_90079", + "npcLv": [ + 146, + 146, + 146, + 146, + 146, + 146 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20198": { + "npcId": 20198, + "attr": {}, + "npclist": "4009_80_90072#4014_80_90071#5004_80_90076#3004_80_90079#3009_80_90079#3014_80_90079", + "npcLv": [ + 148, + 148, + 148, + 148, + 148, + 148 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20199": { + "npcId": 20199, + "attr": {}, + "npclist": "4010_80_90072#4015_80_90071#5005_80_90076#3005_80_90079#3010_80_90079#3015_80_90079", + "npcLv": [ + 148, + 148, + 148, + 148, + 148, + 148 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20200": { + "npcId": 20200, + "attr": {}, + "npclist": "4011_94_90072#5001_94_90071#3001_94_90076#3006_94_90079#3011_94_90079#4001_94_90079", + "npcLv": [ + 148, + 148, + 148, + 148, + 148, + 148 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20201": { + "npcId": 20201, + "attr": {}, + "npclist": "4012_81_90072#5002_81_90071#3002_81_90076#3007_81_90079#3012_81_90079#4002_81_90079", + "npcLv": [ + 148, + 148, + 148, + 148, + 148, + 148 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20202": { + "npcId": 20202, + "attr": {}, + "npclist": "4013_83_90072#5003_83_90071#3003_83_90076#3008_83_90079#3013_83_90079#4003_83_90079", + "npcLv": [ + 150, + 150, + 150, + 150, + 150, + 150 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20203": { + "npcId": 20203, + "attr": {}, + "npclist": "4014_83_90072#5004_83_90071#3004_83_90076#3009_83_90079#3014_83_90079#4004_83_90079", + "npcLv": [ + 150, + 150, + 150, + 150, + 150, + 150 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20204": { + "npcId": 20204, + "attr": {}, + "npclist": "4015_84_90072#5005_84_90071#3005_84_90076#3010_84_90079#3015_84_90079#4005_84_90079", + "npcLv": [ + 150, + 150, + 150, + 150, + 150, + 150 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20205": { + "npcId": 20205, + "attr": {}, + "npclist": "5001_84_90072#3001_84_90071#3006_84_90076#3011_84_90079#4001_84_90079#4006_84_90079", + "npcLv": [ + 150, + 150, + 150, + 150, + 150, + 150 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20206": { + "npcId": 20206, + "attr": {}, + "npclist": "5002_85_90072#3002_85_90071#3007_85_90076#3012_85_90079#4002_85_90079#4007_85_90079", + "npcLv": [ + 152, + 152, + 152, + 152, + 152, + 152 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20207": { + "npcId": 20207, + "attr": {}, + "npclist": "5003_85_90072#3003_85_90071#3008_85_90076#3013_85_90079#4003_85_90079#4008_85_90079", + "npcLv": [ + 152, + 152, + 152, + 152, + 152, + 152 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20208": { + "npcId": 20208, + "attr": {}, + "npclist": "5004_87_90072#3004_87_90071#3009_87_90076#3014_87_90079#4004_87_90079#4009_87_90079", + "npcLv": [ + 152, + 152, + 152, + 152, + 152, + 152 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20209": { + "npcId": 20209, + "attr": {}, + "npclist": "5005_87_90072#3005_87_90071#3010_87_90076#3015_87_90079#4005_87_90079#4010_87_90079", + "npcLv": [ + 152, + 152, + 152, + 152, + 152, + 152 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20210": { + "npcId": 20210, + "attr": {}, + "npclist": "3001_98_90072#3006_98_90071#3011_98_90076#4001_98_90079#4006_98_90079#4011_98_90079", + "npcLv": [ + 155, + 155, + 155, + 155, + 155, + 155 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20211": { + "npcId": 20211, + "attr": {}, + "npclist": "3002_88_90072#3007_88_90071#3012_88_90076#4002_88_90079#4007_88_90079#4012_88_90079", + "npcLv": [ + 155, + 155, + 155, + 155, + 155, + 155 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20212": { + "npcId": 20212, + "attr": {}, + "npclist": "3003_89_90072#3008_89_90071#3013_89_90076#4003_89_90079#4008_89_90079#4013_89_90079", + "npcLv": [ + 155, + 155, + 155, + 155, + 155, + 155 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20213": { + "npcId": 20213, + "attr": {}, + "npclist": "3004_89_90072#3009_89_90071#3014_89_90076#4004_89_90079#4009_89_90079#4014_89_90079", + "npcLv": [ + 155, + 155, + 155, + 155, + 155, + 155 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20214": { + "npcId": 20214, + "attr": {}, + "npclist": "3005_91_90072#3010_91_90071#3015_91_90076#4005_91_90079#4010_91_90079#4015_91_90079", + "npcLv": [ + 157, + 157, + 157, + 157, + 157, + 157 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20215": { + "npcId": 20215, + "attr": {}, + "npclist": "3006_91_90072#3011_91_90071#4001_91_90076#4006_91_90079#4011_91_90079#5001_91_90079", + "npcLv": [ + 157, + 157, + 157, + 157, + 157, + 157 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20216": { + "npcId": 20216, + "attr": {}, + "npclist": "3007_92_90072#3012_92_90071#4002_92_90076#4007_92_90079#4012_92_90079#5002_92_90079", + "npcLv": [ + 157, + 157, + 157, + 157, + 157, + 157 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20217": { + "npcId": 20217, + "attr": {}, + "npclist": "3008_92_90072#3013_92_90071#4003_92_90076#4008_92_90079#4013_92_90079#5003_92_90079", + "npcLv": [ + 157, + 157, + 157, + 157, + 157, + 157 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20218": { + "npcId": 20218, + "attr": {}, + "npclist": "3009_93_90072#3014_93_90071#4004_93_90076#4009_93_90079#4014_93_90079#5004_93_90079", + "npcLv": [ + 161, + 161, + 161, + 161, + 161, + 161 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20219": { + "npcId": 20219, + "attr": {}, + "npclist": "3010_93_90072#3015_93_90071#4005_93_90076#4010_93_90079#4015_93_90079#5005_93_90079", + "npcLv": [ + 166, + 166, + 166, + 166, + 166, + 166 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20220": { + "npcId": 20220, + "attr": {}, + "npclist": "3011_105_90072#4001_105_90071#4006_105_90076#4011_105_90079#5001_105_90079#3001_105_90079", + "npcLv": [ + 170, + 170, + 170, + 170, + 170, + 170 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20221": { + "npcId": 20221, + "attr": {}, + "npclist": "3012_94_90072#4002_94_90071#4007_94_90076#4012_94_90079#5002_94_90079#3002_94_90079", + "npcLv": [ + 175, + 175, + 175, + 175, + 175, + 175 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20222": { + "npcId": 20222, + "attr": {}, + "npclist": "3013_96_90072#4003_96_90071#4008_96_90076#4013_96_90079#5003_96_90079#3003_96_90079", + "npcLv": [ + 179, + 179, + 179, + 179, + 179, + 179 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20223": { + "npcId": 20223, + "attr": {}, + "npclist": "3014_96_90072#4004_96_90071#4009_96_90076#4014_96_90079#5004_96_90079#3004_96_90079", + "npcLv": [ + 184, + 184, + 184, + 184, + 184, + 184 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20224": { + "npcId": 20224, + "attr": {}, + "npclist": "3015_97_90072#4005_97_90071#4010_97_90076#4015_97_90079#5005_97_90079#3005_97_90079", + "npcLv": [ + 188, + 188, + 188, + 188, + 188, + 188 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20225": { + "npcId": 20225, + "attr": {}, + "npclist": "4001_97_90072#4006_97_90071#4011_97_90076#5001_97_90079#3001_97_90079#3006_97_90079", + "npcLv": [ + 193, + 193, + 193, + 193, + 193, + 193 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20226": { + "npcId": 20226, + "attr": {}, + "npclist": "4002_98_90072#4007_98_90071#4012_98_90076#5002_98_90079#3002_98_90079#3007_98_90079", + "npcLv": [ + 197, + 197, + 197, + 197, + 197, + 197 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20227": { + "npcId": 20227, + "attr": {}, + "npclist": "4003_98_90072#4008_98_90071#4013_98_90076#5003_98_90079#3003_98_90079#3008_98_90079", + "npcLv": [ + 202, + 202, + 202, + 202, + 202, + 202 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20228": { + "npcId": 20228, + "attr": {}, + "npclist": "4004_100_90072#4009_100_90071#4014_100_90076#5004_100_90079#3004_100_90079#3009_100_90079", + "npcLv": [ + 204, + 204, + 204, + 204, + 204, + 204 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20229": { + "npcId": 20229, + "attr": {}, + "npclist": "4005_100_90072#4010_100_90071#4015_100_90076#5005_100_90079#3005_100_90079#3010_100_90079", + "npcLv": [ + 207, + 207, + 207, + 207, + 207, + 207 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20230": { + "npcId": 20230, + "attr": {}, + "npclist": "4006_101_90072#4011_101_90071#5001_101_90076#3001_101_90079#3006_101_90079#3011_101_90079", + "npcLv": [ + 209, + 209, + 209, + 209, + 209, + 209 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20231": { + "npcId": 20231, + "attr": {}, + "npclist": "4007_101_90072#4012_101_90071#5002_101_90076#3002_101_90079#3007_101_90079#3012_101_90079", + "npcLv": [ + 211, + 211, + 211, + 211, + 211, + 211 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20232": { + "npcId": 20232, + "attr": {}, + "npclist": "4008_102_90072#4013_102_90071#5003_102_90076#3003_102_90079#3008_102_90079#3013_102_90079", + "npcLv": [ + 214, + 214, + 214, + 214, + 214, + 214 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20233": { + "npcId": 20233, + "attr": {}, + "npclist": "4009_102_90072#4014_102_90071#5004_102_90076#3004_102_90079#3009_102_90079#3014_102_90079", + "npcLv": [ + 216, + 216, + 216, + 216, + 216, + 216 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20234": { + "npcId": 20234, + "attr": {}, + "npclist": "4010_104_90072#4015_104_90071#5005_104_90076#3005_104_90079#3010_104_90079#3015_104_90079", + "npcLv": [ + 218, + 218, + 218, + 218, + 218, + 218 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20235": { + "npcId": 20235, + "attr": {}, + "npclist": "4011_104_90072#5001_104_90071#3001_104_90076#3006_104_90079#3011_104_90079#4001_104_90079", + "npcLv": [ + 220, + 220, + 220, + 220, + 220, + 220 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20236": { + "npcId": 20236, + "attr": {}, + "npclist": "4012_105_90072#5002_105_90071#3002_105_90076#3007_105_90079#3012_105_90079#4002_105_90079", + "npcLv": [ + 223, + 223, + 223, + 223, + 223, + 223 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20237": { + "npcId": 20237, + "attr": {}, + "npclist": "4013_105_90072#5003_105_90071#3003_105_90076#3008_105_90079#3013_105_90079#4003_105_90079", + "npcLv": [ + 225, + 225, + 225, + 225, + 225, + 225 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20238": { + "npcId": 20238, + "attr": {}, + "npclist": "4014_106_90072#5004_106_90071#3004_106_90076#3009_106_90079#3014_106_90079#4004_106_90079", + "npcLv": [ + 227, + 227, + 227, + 227, + 227, + 227 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20239": { + "npcId": 20239, + "attr": {}, + "npclist": "4015_106_90072#5005_106_90071#3005_106_90076#3010_106_90079#3015_106_90079#4005_106_90079", + "npcLv": [ + 230, + 230, + 230, + 230, + 230, + 230 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20240": { + "npcId": 20240, + "attr": {}, + "npclist": "5001_116_90072#3001_116_90071#3006_116_90076#3011_116_90079#4001_116_90079#4006_116_90079", + "npcLv": [ + 232, + 232, + 232, + 232, + 232, + 232 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20241": { + "npcId": 20241, + "attr": {}, + "npclist": "5002_107_90072#3002_107_90071#3007_107_90076#3012_107_90079#4002_107_90079#4007_107_90079", + "npcLv": [ + 234, + 234, + 234, + 234, + 234, + 234 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20242": { + "npcId": 20242, + "attr": {}, + "npclist": "5003_109_90072#3003_109_90071#3008_109_90076#3013_109_90079#4003_109_90079#4008_109_90079", + "npcLv": [ + 237, + 237, + 237, + 237, + 237, + 237 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20243": { + "npcId": 20243, + "attr": {}, + "npclist": "5004_109_90072#3004_109_90071#3009_109_90076#3014_109_90079#4004_109_90079#4009_109_90079", + "npcLv": [ + 239, + 239, + 239, + 239, + 239, + 239 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20244": { + "npcId": 20244, + "attr": {}, + "npclist": "5005_110_90072#3005_110_90071#3010_110_90076#3015_110_90079#4005_110_90079#4010_110_90079", + "npcLv": [ + 242, + 242, + 242, + 242, + 242, + 242 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20245": { + "npcId": 20245, + "attr": {}, + "npclist": "3001_110_90072#3006_110_90071#3011_110_90076#4001_110_90079#4006_110_90079#4011_110_90079", + "npcLv": [ + 244, + 244, + 244, + 244, + 244, + 244 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20246": { + "npcId": 20246, + "attr": {}, + "npclist": "3002_111_90072#3007_111_90071#3012_111_90076#4002_111_90079#4007_111_90079#4012_111_90079", + "npcLv": [ + 246, + 246, + 246, + 246, + 246, + 246 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20247": { + "npcId": 20247, + "attr": {}, + "npclist": "3003_111_90072#3008_111_90071#3013_111_90076#4003_111_90079#4008_111_90079#4013_111_90079", + "npcLv": [ + 249, + 249, + 249, + 249, + 249, + 249 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20248": { + "npcId": 20248, + "attr": {}, + "npclist": "3004_113_90072#3009_113_90071#3014_113_90076#4004_113_90079#4009_113_90079#4014_113_90079", + "npcLv": [ + 251, + 251, + 251, + 251, + 251, + 251 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20249": { + "npcId": 20249, + "attr": {}, + "npclist": "3005_113_90072#3010_113_90071#3015_113_90076#4005_113_90079#4010_113_90079#4015_113_90079", + "npcLv": [ + 253, + 253, + 253, + 253, + 253, + 253 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20250": { + "npcId": 20250, + "attr": {}, + "npclist": "3006_114_90072#3011_114_90071#4001_114_90076#4006_114_90079#4011_114_90079#5001_114_90079", + "npcLv": [ + 256, + 256, + 256, + 256, + 256, + 256 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20251": { + "npcId": 20251, + "attr": {}, + "npclist": "3007_114_90072#3012_114_90071#4002_114_90076#4007_114_90079#4012_114_90079#5002_114_90079", + "npcLv": [ + 258, + 258, + 258, + 258, + 258, + 258 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20252": { + "npcId": 20252, + "attr": {}, + "npclist": "3008_115_90072#3013_115_90071#4003_115_90076#4008_115_90079#4013_115_90079#5003_115_90079", + "npcLv": [ + 260, + 260, + 260, + 260, + 260, + 260 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20253": { + "npcId": 20253, + "attr": {}, + "npclist": "3009_115_90072#3014_115_90071#4004_115_90076#4009_115_90079#4014_115_90079#5004_115_90079", + "npcLv": [ + 263, + 263, + 263, + 263, + 263, + 263 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20254": { + "npcId": 20254, + "attr": {}, + "npclist": "3010_117_90072#3015_117_90071#4005_117_90076#4010_117_90079#4015_117_90079#5005_117_90079", + "npcLv": [ + 265, + 265, + 265, + 265, + 265, + 265 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20255": { + "npcId": 20255, + "attr": {}, + "npclist": "3011_117_90072#4001_117_90071#4006_117_90076#4011_117_90079#5001_117_90079#3001_117_90079", + "npcLv": [ + 268, + 268, + 268, + 268, + 268, + 268 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20256": { + "npcId": 20256, + "attr": {}, + "npclist": "3012_118_90072#4002_118_90071#4007_118_90076#4012_118_90079#5002_118_90079#3002_118_90079", + "npcLv": [ + 270, + 270, + 270, + 270, + 270, + 270 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20257": { + "npcId": 20257, + "attr": {}, + "npclist": "3013_118_90072#4003_118_90071#4008_118_90076#4013_118_90079#5003_118_90079#3003_118_90079", + "npcLv": [ + 272, + 272, + 272, + 272, + 272, + 272 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20258": { + "npcId": 20258, + "attr": {}, + "npclist": "3014_119_90072#4004_119_90071#4009_119_90076#4014_119_90079#5004_119_90079#3004_119_90079", + "npcLv": [ + 275, + 275, + 275, + 275, + 275, + 275 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20259": { + "npcId": 20259, + "attr": {}, + "npclist": "3015_119_90072#4005_119_90071#4010_119_90076#4015_119_90079#5005_119_90079#3005_119_90079", + "npcLv": [ + 277, + 277, + 277, + 277, + 277, + 277 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20260": { + "npcId": 20260, + "attr": {}, + "npclist": "4001_125_90072#4006_125_90071#4011_125_90076#5001_125_90079#3001_125_90079#3006_125_90079", + "npcLv": [ + 279, + 279, + 279, + 279, + 279, + 279 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20261": { + "npcId": 20261, + "attr": {}, + "npclist": "4002_120_90072#4007_120_90071#4012_120_90076#5002_120_90079#3002_120_90079#3007_120_90079", + "npcLv": [ + 282, + 282, + 282, + 282, + 282, + 282 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20262": { + "npcId": 20262, + "attr": {}, + "npclist": "4003_122_90072#4008_122_90071#4013_122_90076#5003_122_90079#3003_122_90079#3008_122_90079", + "npcLv": [ + 284, + 284, + 284, + 284, + 284, + 284 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20263": { + "npcId": 20263, + "attr": {}, + "npclist": "4004_122_90072#4009_122_90071#4014_122_90076#5004_122_90079#3004_122_90079#3009_122_90079", + "npcLv": [ + 287, + 287, + 287, + 287, + 287, + 287 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20264": { + "npcId": 20264, + "attr": {}, + "npclist": "4005_123_90072#4010_123_90071#4015_123_90076#5005_123_90079#3005_123_90079#3010_123_90079", + "npcLv": [ + 289, + 289, + 289, + 289, + 289, + 289 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20265": { + "npcId": 20265, + "attr": {}, + "npclist": "4006_123_90072#4011_123_90071#5001_123_90076#3001_123_90079#3006_123_90079#3011_123_90079", + "npcLv": [ + 291, + 291, + 291, + 291, + 291, + 291 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20266": { + "npcId": 20266, + "attr": {}, + "npclist": "4007_124_90072#4012_124_90071#5002_124_90076#3002_124_90079#3007_124_90079#3012_124_90079", + "npcLv": [ + 294, + 294, + 294, + 294, + 294, + 294 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20267": { + "npcId": 20267, + "attr": {}, + "npclist": "4008_124_90072#4013_124_90071#5003_124_90076#3003_124_90079#3008_124_90079#3013_124_90079", + "npcLv": [ + 296, + 296, + 296, + 296, + 296, + 296 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20268": { + "npcId": 20268, + "attr": {}, + "npclist": "4009_126_90072#4014_126_90071#5004_126_90076#3004_126_90079#3009_126_90079#3014_126_90079", + "npcLv": [ + 299, + 299, + 299, + 299, + 299, + 299 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20269": { + "npcId": 20269, + "attr": {}, + "npclist": "4010_126_90072#4015_126_90071#5005_126_90076#3005_126_90079#3010_126_90079#3015_126_90079", + "npcLv": [ + 301, + 301, + 301, + 301, + 301, + 301 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20270": { + "npcId": 20270, + "attr": {}, + "npclist": "4011_127_90072#5001_127_90071#3001_127_90076#3006_127_90079#3011_127_90079#4001_127_90079", + "npcLv": [ + 304, + 304, + 304, + 304, + 304, + 304 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20271": { + "npcId": 20271, + "attr": {}, + "npclist": "4012_127_90072#5002_127_90071#3002_127_90076#3007_127_90079#3012_127_90079#4002_127_90079", + "npcLv": [ + 306, + 306, + 306, + 306, + 306, + 306 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20272": { + "npcId": 20272, + "attr": {}, + "npclist": "4013_128_90072#5003_128_90071#3003_128_90076#3008_128_90079#3013_128_90079#4003_128_90079", + "npcLv": [ + 308, + 308, + 308, + 308, + 308, + 308 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20273": { + "npcId": 20273, + "attr": {}, + "npclist": "4014_128_90072#5004_128_90071#3004_128_90076#3009_128_90079#3014_128_90079#4004_128_90079", + "npcLv": [ + 311, + 311, + 311, + 311, + 311, + 311 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20274": { + "npcId": 20274, + "attr": {}, + "npclist": "4015_130_90072#5005_130_90071#3005_130_90076#3010_130_90079#3015_130_90079#4005_130_90079", + "npcLv": [ + 313, + 313, + 313, + 313, + 313, + 313 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20275": { + "npcId": 20275, + "attr": {}, + "npclist": "5001_130_90072#3001_130_90071#3006_130_90076#3011_130_90079#4001_130_90079#4006_130_90079", + "npcLv": [ + 316, + 316, + 316, + 316, + 316, + 316 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20276": { + "npcId": 20276, + "attr": {}, + "npclist": "5002_131_90072#3002_131_90071#3007_131_90076#3012_131_90079#4002_131_90079#4007_131_90079", + "npcLv": [ + 318, + 318, + 318, + 318, + 318, + 318 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20277": { + "npcId": 20277, + "attr": {}, + "npclist": "5003_131_90072#3003_131_90071#3008_131_90076#3013_131_90079#4003_131_90079#4008_131_90079", + "npcLv": [ + 321, + 321, + 321, + 321, + 321, + 321 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20278": { + "npcId": 20278, + "attr": {}, + "npclist": "5004_132_90072#3004_132_90071#3009_132_90076#3014_132_90079#4004_132_90079#4009_132_90079", + "npcLv": [ + 321, + 321, + 321, + 321, + 321, + 321 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20279": { + "npcId": 20279, + "attr": {}, + "npclist": "5005_132_90072#3005_132_90071#3010_132_90076#3015_132_90079#4005_132_90079#4010_132_90079", + "npcLv": [ + 321, + 321, + 321, + 321, + 321, + 321 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20280": { + "npcId": 20280, + "attr": {}, + "npclist": "3001_135_90072#3006_135_90071#3011_135_90076#4001_135_90079#4006_135_90079#4011_135_90079", + "npcLv": [ + 321, + 321, + 321, + 321, + 321, + 321 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20281": { + "npcId": 20281, + "attr": {}, + "npclist": "3002_133_90072#3007_133_90071#3012_133_90076#4002_133_90079#4007_133_90079#4012_133_90079", + "npcLv": [ + 321, + 321, + 321, + 321, + 321, + 321 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20282": { + "npcId": 20282, + "attr": {}, + "npclist": "3003_135_90072#3008_135_90071#3013_135_90076#4003_135_90079#4008_135_90079#4013_135_90079", + "npcLv": [ + 323, + 323, + 323, + 323, + 323, + 323 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20283": { + "npcId": 20283, + "attr": {}, + "npclist": "3004_135_90072#3009_135_90071#3014_135_90076#4004_135_90079#4009_135_90079#4014_135_90079", + "npcLv": [ + 323, + 323, + 323, + 323, + 323, + 323 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20284": { + "npcId": 20284, + "attr": {}, + "npclist": "3005_136_90072#3010_136_90071#3015_136_90076#4005_136_90079#4010_136_90079#4015_136_90079", + "npcLv": [ + 323, + 323, + 323, + 323, + 323, + 323 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20285": { + "npcId": 20285, + "attr": {}, + "npclist": "3006_136_90072#3011_136_90071#4001_136_90076#4006_136_90079#4011_136_90079#5001_136_90079", + "npcLv": [ + 323, + 323, + 323, + 323, + 323, + 323 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20286": { + "npcId": 20286, + "attr": {}, + "npclist": "3007_137_90072#3012_137_90071#4002_137_90076#4007_137_90079#4012_137_90079#5002_137_90079", + "npcLv": [ + 323, + 323, + 323, + 323, + 323, + 323 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20287": { + "npcId": 20287, + "attr": {}, + "npclist": "3008_137_90072#3013_137_90071#4003_137_90076#4008_137_90079#4013_137_90079#5003_137_90079", + "npcLv": [ + 325, + 325, + 325, + 325, + 325, + 325 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20288": { + "npcId": 20288, + "attr": {}, + "npclist": "3009_139_90072#3014_139_90071#4004_139_90076#4009_139_90079#4014_139_90079#5004_139_90079", + "npcLv": [ + 325, + 325, + 325, + 325, + 325, + 325 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20289": { + "npcId": 20289, + "attr": {}, + "npclist": "3010_139_90072#3015_139_90071#4005_139_90076#4010_139_90079#4015_139_90079#5005_139_90079", + "npcLv": [ + 325, + 325, + 325, + 325, + 325, + 325 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20290": { + "npcId": 20290, + "attr": {}, + "npclist": "3011_140_90072#4001_140_90071#4006_140_90076#4011_140_90079#5001_140_90079#3001_140_90079", + "npcLv": [ + 325, + 325, + 325, + 325, + 325, + 325 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20291": { + "npcId": 20291, + "attr": {}, + "npclist": "3012_140_90072#4002_140_90071#4007_140_90076#4012_140_90079#5002_140_90079#3002_140_90079", + "npcLv": [ + 325, + 325, + 325, + 325, + 325, + 325 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20292": { + "npcId": 20292, + "attr": {}, + "npclist": "3013_141_90072#4003_141_90071#4008_141_90076#4013_141_90079#5003_141_90079#3003_141_90079", + "npcLv": [ + 328, + 328, + 328, + 328, + 328, + 328 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20293": { + "npcId": 20293, + "attr": {}, + "npclist": "3014_141_90072#4004_141_90071#4009_141_90076#4014_141_90079#5004_141_90079#3004_141_90079", + "npcLv": [ + 328, + 328, + 328, + 328, + 328, + 328 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20294": { + "npcId": 20294, + "attr": {}, + "npclist": "3015_143_90072#4005_143_90071#4010_143_90076#4015_143_90079#5005_143_90079#3005_143_90079", + "npcLv": [ + 328, + 328, + 328, + 328, + 328, + 328 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20295": { + "npcId": 20295, + "attr": {}, + "npclist": "4001_143_90072#4006_143_90071#4011_143_90076#5001_143_90079#3001_143_90079#3006_143_90079", + "npcLv": [ + 328, + 328, + 328, + 328, + 328, + 328 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20296": { + "npcId": 20296, + "attr": {}, + "npclist": "4002_144_90072#4007_144_90071#4012_144_90076#5002_144_90079#3002_144_90079#3007_144_90079", + "npcLv": [ + 328, + 328, + 328, + 328, + 328, + 328 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20297": { + "npcId": 20297, + "attr": {}, + "npclist": "4003_144_90072#4008_144_90071#4013_144_90076#5003_144_90079#3003_144_90079#3008_144_90079", + "npcLv": [ + 330, + 330, + 330, + 330, + 330, + 330 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20298": { + "npcId": 20298, + "attr": {}, + "npclist": "4004_145_90072#4009_145_90071#4014_145_90076#5004_145_90079#3004_145_90079#3009_145_90079", + "npcLv": [ + 330, + 330, + 330, + 330, + 330, + 330 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20299": { + "npcId": 20299, + "attr": {}, + "npclist": "4005_145_90072#4010_145_90071#4015_145_90076#5005_145_90079#3005_145_90079#3010_145_90079", + "npcLv": [ + 330, + 330, + 330, + 330, + 330, + 330 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20300": { + "npcId": 20300, + "attr": {}, + "npclist": "4006_152_90072#4011_152_90071#5001_152_90076#3001_152_90079#3006_152_90079#3011_152_90079", + "npcLv": [ + 330, + 330, + 330, + 330, + 330, + 330 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20301": { + "npcId": 20301, + "attr": {}, + "npclist": "4007_146_90072#4012_146_90071#5002_146_90076#3002_146_90079#3007_146_90079#3012_146_90079", + "npcLv": [ + 330, + 330, + 330, + 330, + 330, + 330 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20302": { + "npcId": 20302, + "attr": {}, + "npclist": "4008_148_90072#4013_148_90071#5003_148_90076#3003_148_90079#3008_148_90079#3013_148_90079", + "npcLv": [ + 333, + 333, + 333, + 333, + 333, + 333 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20303": { + "npcId": 20303, + "attr": {}, + "npclist": "4009_148_90072#4014_148_90071#5004_148_90076#3004_148_90079#3009_148_90079#3014_148_90079", + "npcLv": [ + 333, + 333, + 333, + 333, + 333, + 333 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20304": { + "npcId": 20304, + "attr": {}, + "npclist": "4010_149_90072#4015_149_90071#5005_149_90076#3005_149_90079#3010_149_90079#3015_149_90079", + "npcLv": [ + 333, + 333, + 333, + 333, + 333, + 333 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20305": { + "npcId": 20305, + "attr": {}, + "npclist": "4011_149_90072#5001_149_90071#3001_149_90076#3006_149_90079#3011_149_90079#4001_149_90079", + "npcLv": [ + 333, + 333, + 333, + 333, + 333, + 333 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20306": { + "npcId": 20306, + "attr": {}, + "npclist": "4012_150_90072#5002_150_90071#3002_150_90076#3007_150_90079#3012_150_90079#4002_150_90079", + "npcLv": [ + 333, + 333, + 333, + 333, + 333, + 333 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20307": { + "npcId": 20307, + "attr": {}, + "npclist": "4013_150_90072#5003_150_90071#3003_150_90076#3008_150_90079#3013_150_90079#4003_150_90079", + "npcLv": [ + 335, + 335, + 335, + 335, + 335, + 335 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20308": { + "npcId": 20308, + "attr": {}, + "npclist": "4014_152_90072#5004_152_90071#3004_152_90076#3009_152_90079#3014_152_90079#4004_152_90079", + "npcLv": [ + 335, + 335, + 335, + 335, + 335, + 335 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20309": { + "npcId": 20309, + "attr": {}, + "npclist": "4015_152_90072#5005_152_90071#3005_152_90076#3010_152_90079#3015_152_90079#4005_152_90079", + "npcLv": [ + 335, + 335, + 335, + 335, + 335, + 335 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20310": { + "npcId": 20310, + "attr": {}, + "npclist": "5001_158_90072#3001_158_90071#3006_158_90076#3011_158_90079#4001_158_90079#4006_158_90079", + "npcLv": [ + 335, + 335, + 335, + 335, + 335, + 335 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20311": { + "npcId": 20311, + "attr": {}, + "npclist": "5002_153_90072#3002_153_90071#3007_153_90076#3012_153_90079#4002_153_90079#4007_153_90079", + "npcLv": [ + 335, + 335, + 335, + 335, + 335, + 335 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20312": { + "npcId": 20312, + "attr": {}, + "npclist": "5003_154_90072#3003_154_90071#3008_154_90076#3013_154_90079#4003_154_90079#4008_154_90079", + "npcLv": [ + 338, + 338, + 338, + 338, + 338, + 338 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20313": { + "npcId": 20313, + "attr": {}, + "npclist": "5004_154_90072#3004_154_90071#3009_154_90076#3014_154_90079#4004_154_90079#4009_154_90079", + "npcLv": [ + 338, + 338, + 338, + 338, + 338, + 338 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20314": { + "npcId": 20314, + "attr": {}, + "npclist": "5005_156_90072#3005_156_90071#3010_156_90076#3015_156_90079#4005_156_90079#4010_156_90079", + "npcLv": [ + 338, + 338, + 338, + 338, + 338, + 338 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20315": { + "npcId": 20315, + "attr": {}, + "npclist": "3001_156_90072#3006_156_90071#3011_156_90076#4001_156_90079#4006_156_90079#4011_156_90079", + "npcLv": [ + 338, + 338, + 338, + 338, + 338, + 338 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20316": { + "npcId": 20316, + "attr": {}, + "npclist": "3002_157_90072#3007_157_90071#3012_157_90076#4002_157_90079#4007_157_90079#4012_157_90079", + "npcLv": [ + 338, + 338, + 338, + 338, + 338, + 338 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20317": { + "npcId": 20317, + "attr": {}, + "npclist": "3003_157_90072#3008_157_90071#3013_157_90076#4003_157_90079#4008_157_90079#4013_157_90079", + "npcLv": [ + 340, + 340, + 340, + 340, + 340, + 340 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20318": { + "npcId": 20318, + "attr": {}, + "npclist": "3004_158_90072#3009_158_90071#3014_158_90076#4004_158_90079#4009_158_90079#4014_158_90079", + "npcLv": [ + 340, + 340, + 340, + 340, + 340, + 340 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20319": { + "npcId": 20319, + "attr": {}, + "npclist": "3005_158_90072#3010_158_90071#3015_158_90076#4005_158_90079#4010_158_90079#4015_158_90079", + "npcLv": [ + 340, + 340, + 340, + 340, + 340, + 340 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20320": { + "npcId": 20320, + "attr": {}, + "npclist": "3006_164_90072#3011_164_90071#4001_164_90076#4006_164_90079#4011_164_90079#5001_164_90079", + "npcLv": [ + 340, + 340, + 340, + 340, + 340, + 340 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20321": { + "npcId": 20321, + "attr": {}, + "npclist": "3007_159_90072#3012_159_90071#4002_159_90076#4007_159_90079#4012_159_90079#5002_159_90079", + "npcLv": [ + 340, + 340, + 340, + 340, + 340, + 340 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20322": { + "npcId": 20322, + "attr": {}, + "npclist": "3008_161_90072#3013_161_90071#4003_161_90076#4008_161_90079#4013_161_90079#5003_161_90079", + "npcLv": [ + 343, + 343, + 343, + 343, + 343, + 343 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20323": { + "npcId": 20323, + "attr": {}, + "npclist": "3009_161_90072#3014_161_90071#4004_161_90076#4009_161_90079#4014_161_90079#5004_161_90079", + "npcLv": [ + 343, + 343, + 343, + 343, + 343, + 343 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20324": { + "npcId": 20324, + "attr": {}, + "npclist": "3010_162_90072#3015_162_90071#4005_162_90076#4010_162_90079#4015_162_90079#5005_162_90079", + "npcLv": [ + 343, + 343, + 343, + 343, + 343, + 343 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20325": { + "npcId": 20325, + "attr": {}, + "npclist": "3011_162_90072#4001_162_90071#4006_162_90076#4011_162_90079#5001_162_90079#3001_162_90079", + "npcLv": [ + 343, + 343, + 343, + 343, + 343, + 343 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20326": { + "npcId": 20326, + "attr": {}, + "npclist": "3012_163_90072#4002_163_90071#4007_163_90076#4012_163_90079#5002_163_90079#3002_163_90079", + "npcLv": [ + 343, + 343, + 343, + 343, + 343, + 343 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20327": { + "npcId": 20327, + "attr": {}, + "npclist": "3013_163_90072#4003_163_90071#4008_163_90076#4013_163_90079#5003_163_90079#3003_163_90079", + "npcLv": [ + 345, + 345, + 345, + 345, + 345, + 345 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20328": { + "npcId": 20328, + "attr": {}, + "npclist": "3014_165_90072#4004_165_90071#4009_165_90076#4014_165_90079#5004_165_90079#3004_165_90079", + "npcLv": [ + 345, + 345, + 345, + 345, + 345, + 345 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20329": { + "npcId": 20329, + "attr": {}, + "npclist": "3015_165_90072#4005_165_90071#4010_165_90076#4015_165_90079#5005_165_90079#3005_165_90079", + "npcLv": [ + 345, + 345, + 345, + 345, + 345, + 345 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20330": { + "npcId": 20330, + "attr": {}, + "npclist": "4001_172_90072#4006_172_90071#4011_172_90076#5001_172_90079#3001_172_90079#3006_172_90079", + "npcLv": [ + 350, + 350, + 350, + 350, + 350, + 350 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20331": { + "npcId": 20331, + "attr": {}, + "npclist": "4002_166_90072#4007_166_90071#4012_166_90076#5002_166_90079#3002_166_90079#3007_166_90079", + "npcLv": [ + 350, + 350, + 350, + 350, + 350, + 350 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20332": { + "npcId": 20332, + "attr": {}, + "npclist": "4003_167_90072#4008_167_90071#4013_167_90076#5003_167_90079#3003_167_90079#3008_167_90079", + "npcLv": [ + 350, + 350, + 350, + 350, + 350, + 350 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20333": { + "npcId": 20333, + "attr": {}, + "npclist": "4004_167_90072#4009_167_90071#4014_167_90076#5004_167_90079#3004_167_90079#3009_167_90079", + "npcLv": [ + 355, + 355, + 355, + 355, + 355, + 355 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20334": { + "npcId": 20334, + "attr": {}, + "npclist": "4005_169_90072#4010_169_90071#4015_169_90076#5005_169_90079#3005_169_90079#3010_169_90079", + "npcLv": [ + 355, + 355, + 355, + 355, + 355, + 355 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20335": { + "npcId": 20335, + "attr": {}, + "npclist": "4006_169_90072#4011_169_90071#5001_169_90076#3001_169_90079#3006_169_90079#3011_169_90079", + "npcLv": [ + 355, + 355, + 355, + 355, + 355, + 355 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20336": { + "npcId": 20336, + "attr": {}, + "npclist": "4007_170_90072#4012_170_90071#5002_170_90076#3002_170_90079#3007_170_90079#3012_170_90079", + "npcLv": [ + 360, + 360, + 360, + 360, + 360, + 360 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20337": { + "npcId": 20337, + "attr": {}, + "npclist": "4008_170_90072#4013_170_90071#5003_170_90076#3003_170_90079#3008_170_90079#3013_170_90079", + "npcLv": [ + 360, + 360, + 360, + 360, + 360, + 360 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20338": { + "npcId": 20338, + "attr": {}, + "npclist": "4009_171_90072#4014_171_90071#5004_171_90076#3004_171_90079#3009_171_90079#3014_171_90079", + "npcLv": [ + 360, + 360, + 360, + 360, + 360, + 360 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20339": { + "npcId": 20339, + "attr": {}, + "npclist": "4010_171_90072#4015_171_90071#5005_171_90076#3005_171_90079#3010_171_90079#3015_171_90079", + "npcLv": [ + 365, + 365, + 365, + 365, + 365, + 365 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20340": { + "npcId": 20340, + "attr": {}, + "npclist": "4011_179_90072#5001_179_90071#3001_179_90076#3006_179_90079#3011_179_90079#4001_179_90079", + "npcLv": [ + 365, + 365, + 365, + 365, + 365, + 365 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20341": { + "npcId": 20341, + "attr": {}, + "npclist": "4012_172_90072#5002_172_90071#3002_172_90076#3007_172_90079#3012_172_90079#4002_172_90079", + "npcLv": [ + 365, + 365, + 365, + 365, + 365, + 365 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20342": { + "npcId": 20342, + "attr": {}, + "npclist": "4013_174_90072#5003_174_90071#3003_174_90076#3008_174_90079#3013_174_90079#4003_174_90079", + "npcLv": [ + 370, + 370, + 370, + 370, + 370, + 370 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20343": { + "npcId": 20343, + "attr": {}, + "npclist": "4014_174_90072#5004_174_90071#3004_174_90076#3009_174_90079#3014_174_90079#4004_174_90079", + "npcLv": [ + 370, + 370, + 370, + 370, + 370, + 370 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20344": { + "npcId": 20344, + "attr": {}, + "npclist": "4015_175_90072#5005_175_90071#3005_175_90076#3010_175_90079#3015_175_90079#4005_175_90079", + "npcLv": [ + 370, + 370, + 370, + 370, + 370, + 370 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20345": { + "npcId": 20345, + "attr": {}, + "npclist": "5001_175_90072#3001_175_90071#3006_175_90076#3011_175_90079#4001_175_90079#4006_175_90079", + "npcLv": [ + 375, + 375, + 375, + 375, + 375, + 375 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20346": { + "npcId": 20346, + "attr": {}, + "npclist": "5002_176_90072#3002_176_90071#3007_176_90076#3012_176_90079#4002_176_90079#4007_176_90079", + "npcLv": [ + 375, + 375, + 375, + 375, + 375, + 375 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20347": { + "npcId": 20347, + "attr": {}, + "npclist": "5003_176_90072#3003_176_90071#3008_176_90076#3013_176_90079#4003_176_90079#4008_176_90079", + "npcLv": [ + 375, + 375, + 375, + 375, + 375, + 375 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20348": { + "npcId": 20348, + "attr": {}, + "npclist": "5004_178_90072#3004_178_90071#3009_178_90076#3014_178_90079#4004_178_90079#4009_178_90079", + "npcLv": [ + 380, + 380, + 380, + 380, + 380, + 380 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20349": { + "npcId": 20349, + "attr": {}, + "npclist": "5005_178_90072#3005_178_90071#3010_178_90076#3015_178_90079#4005_178_90079#4010_178_90079", + "npcLv": [ + 380, + 380, + 380, + 380, + 380, + 380 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20350": { + "npcId": 20350, + "attr": {}, + "npclist": "3001_186_90072#3006_186_90071#3011_186_90076#4001_186_90079#4006_186_90079#4011_186_90079", + "npcLv": [ + 380, + 380, + 380, + 380, + 380, + 380 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20351": { + "npcId": 20351, + "attr": {}, + "npclist": "3002_179_90072#3007_179_90071#3012_179_90076#4002_179_90079#4007_179_90079#4012_179_90079", + "npcLv": [ + 385, + 385, + 385, + 385, + 385, + 385 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20352": { + "npcId": 20352, + "attr": {}, + "npclist": "3003_180_90072#3008_180_90071#3013_180_90076#4003_180_90079#4008_180_90079#4013_180_90079", + "npcLv": [ + 385, + 385, + 385, + 385, + 385, + 385 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20353": { + "npcId": 20353, + "attr": {}, + "npclist": "3004_180_90072#3009_180_90071#3014_180_90076#4004_180_90079#4009_180_90079#4014_180_90079", + "npcLv": [ + 385, + 385, + 385, + 385, + 385, + 385 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20354": { + "npcId": 20354, + "attr": {}, + "npclist": "3005_182_90072#3010_182_90071#3015_182_90076#4005_182_90079#4010_182_90079#4015_182_90079", + "npcLv": [ + 390, + 390, + 390, + 390, + 390, + 390 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20355": { + "npcId": 20355, + "attr": {}, + "npclist": "3006_182_90072#3011_182_90071#4001_182_90076#4006_182_90079#4011_182_90079#5001_182_90079", + "npcLv": [ + 390, + 390, + 390, + 390, + 390, + 390 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20356": { + "npcId": 20356, + "attr": {}, + "npclist": "3007_183_90072#3012_183_90071#4002_183_90076#4007_183_90079#4012_183_90079#5002_183_90079", + "npcLv": [ + 390, + 390, + 390, + 390, + 390, + 390 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20357": { + "npcId": 20357, + "attr": {}, + "npclist": "3008_183_90072#3013_183_90071#4003_183_90076#4008_183_90079#4013_183_90079#5003_183_90079", + "npcLv": [ + 395, + 395, + 395, + 395, + 395, + 395 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20358": { + "npcId": 20358, + "attr": {}, + "npclist": "3009_184_90072#3014_184_90071#4004_184_90076#4009_184_90079#4014_184_90079#5004_184_90079", + "npcLv": [ + 395, + 395, + 395, + 395, + 395, + 395 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20359": { + "npcId": 20359, + "attr": {}, + "npclist": "3010_184_90072#3015_184_90071#4005_184_90076#4010_184_90079#4015_184_90079#5005_184_90079", + "npcLv": [ + 395, + 395, + 395, + 395, + 395, + 395 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20360": { + "npcId": 20360, + "attr": {}, + "npclist": "3011_193_90072#4001_193_90071#4006_193_90076#4011_193_90079#5001_193_90079#3001_193_90079", + "npcLv": [ + 400, + 400, + 400, + 400, + 400, + 400 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20361": { + "npcId": 20361, + "attr": {}, + "npclist": "3012_185_90072#4002_185_90071#4007_185_90076#4012_185_90079#5002_185_90079#3002_185_90079", + "npcLv": [ + 400, + 400, + 400, + 400, + 400, + 400 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20362": { + "npcId": 20362, + "attr": {}, + "npclist": "3013_187_90072#4003_187_90071#4008_187_90076#4013_187_90079#5003_187_90079#3003_187_90079", + "npcLv": [ + 400, + 400, + 400, + 400, + 400, + 400 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20363": { + "npcId": 20363, + "attr": {}, + "npclist": "3014_187_90072#4004_187_90071#4009_187_90076#4014_187_90079#5004_187_90079#3004_187_90079", + "npcLv": [ + 405, + 405, + 405, + 405, + 405, + 405 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20364": { + "npcId": 20364, + "attr": {}, + "npclist": "3015_188_90072#4005_188_90071#4010_188_90076#4015_188_90079#5005_188_90079#3005_188_90079", + "npcLv": [ + 405, + 405, + 405, + 405, + 405, + 405 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20365": { + "npcId": 20365, + "attr": {}, + "npclist": "4001_188_90072#4006_188_90071#4011_188_90076#5001_188_90079#3001_188_90079#3006_188_90079", + "npcLv": [ + 405, + 405, + 405, + 405, + 405, + 405 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20366": { + "npcId": 20366, + "attr": {}, + "npclist": "4002_189_90072#4007_189_90071#4012_189_90076#5002_189_90079#3002_189_90079#3007_189_90079", + "npcLv": [ + 410, + 410, + 410, + 410, + 410, + 410 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20367": { + "npcId": 20367, + "attr": {}, + "npclist": "4003_189_90072#4008_189_90071#4013_189_90076#5003_189_90079#3003_189_90079#3008_189_90079", + "npcLv": [ + 410, + 410, + 410, + 410, + 410, + 410 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20368": { + "npcId": 20368, + "attr": {}, + "npclist": "4004_191_90072#4009_191_90071#4014_191_90076#5004_191_90079#3004_191_90079#3009_191_90079", + "npcLv": [ + 410, + 410, + 410, + 410, + 410, + 410 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20369": { + "npcId": 20369, + "attr": {}, + "npclist": "4005_191_90072#4010_191_90071#4015_191_90076#5005_191_90079#3005_191_90079#3010_191_90079", + "npcLv": [ + 415, + 415, + 415, + 415, + 415, + 415 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20370": { + "npcId": 20370, + "attr": {}, + "npclist": "4006_199_90072#4011_199_90071#5001_199_90076#3001_199_90079#3006_199_90079#3011_199_90079", + "npcLv": [ + 415, + 415, + 415, + 415, + 415, + 415 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20371": { + "npcId": 20371, + "attr": {}, + "npclist": "4007_192_90072#4012_192_90071#5002_192_90076#3002_192_90079#3007_192_90079#3012_192_90079", + "npcLv": [ + 415, + 415, + 415, + 415, + 415, + 415 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20372": { + "npcId": 20372, + "attr": {}, + "npclist": "4008_193_90072#4013_193_90071#5003_193_90076#3003_193_90079#3008_193_90079#3013_193_90079", + "npcLv": [ + 420, + 420, + 420, + 420, + 420, + 420 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20373": { + "npcId": 20373, + "attr": {}, + "npclist": "4009_193_90072#4014_193_90071#5004_193_90076#3004_193_90079#3009_193_90079#3014_193_90079", + "npcLv": [ + 420, + 420, + 420, + 420, + 420, + 420 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20374": { + "npcId": 20374, + "attr": {}, + "npclist": "4010_195_90072#4015_195_90071#5005_195_90076#3005_195_90079#3010_195_90079#3015_195_90079", + "npcLv": [ + 420, + 420, + 420, + 420, + 420, + 420 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20375": { + "npcId": 20375, + "attr": {}, + "npclist": "4011_195_90072#5001_195_90071#3001_195_90076#3006_195_90079#3011_195_90079#4001_195_90079", + "npcLv": [ + 425, + 425, + 425, + 425, + 425, + 425 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20376": { + "npcId": 20376, + "attr": {}, + "npclist": "4012_196_90072#5002_196_90071#3002_196_90076#3007_196_90079#3012_196_90079#4002_196_90079", + "npcLv": [ + 425, + 425, + 425, + 425, + 425, + 425 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20377": { + "npcId": 20377, + "attr": {}, + "npclist": "4013_196_90072#5003_196_90071#3003_196_90076#3008_196_90079#3013_196_90079#4003_196_90079", + "npcLv": [ + 425, + 425, + 425, + 425, + 425, + 425 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20378": { + "npcId": 20378, + "attr": {}, + "npclist": "4014_197_90072#5004_197_90071#3004_197_90076#3009_197_90079#3014_197_90079#4004_197_90079", + "npcLv": [ + 430, + 430, + 430, + 430, + 430, + 430 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20379": { + "npcId": 20379, + "attr": {}, + "npclist": "4015_197_90072#5005_197_90071#3005_197_90076#3010_197_90079#3015_197_90079#4005_197_90079", + "npcLv": [ + 430, + 430, + 430, + 430, + 430, + 430 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20380": { + "npcId": 20380, + "attr": {}, + "npclist": "5001_211_90072#3001_211_90071#3006_211_90076#3011_211_90079#4001_211_90079#4006_211_90079", + "npcLv": [ + 430, + 430, + 430, + 430, + 430, + 430 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20381": { + "npcId": 20381, + "attr": {}, + "npclist": "5002_198_90072#3002_198_90071#3007_198_90076#3012_198_90079#4002_198_90079#4007_198_90079", + "npcLv": [ + 435, + 435, + 435, + 435, + 435, + 435 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20382": { + "npcId": 20382, + "attr": {}, + "npclist": "5003_200_90072#3003_200_90071#3008_200_90076#3013_200_90079#4003_200_90079#4008_200_90079", + "npcLv": [ + 435, + 435, + 435, + 435, + 435, + 435 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20383": { + "npcId": 20383, + "attr": {}, + "npclist": "5004_200_90072#3004_200_90071#3009_200_90076#3014_200_90079#4004_200_90079#4009_200_90079", + "npcLv": [ + 435, + 435, + 435, + 435, + 435, + 435 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20384": { + "npcId": 20384, + "attr": {}, + "npclist": "5005_201_90072#3005_201_90071#3010_201_90076#3015_201_90079#4005_201_90079#4010_201_90079", + "npcLv": [ + 440, + 440, + 440, + 440, + 440, + 440 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20385": { + "npcId": 20385, + "attr": {}, + "npclist": "3001_201_90072#3006_201_90071#3011_201_90076#4001_201_90079#4006_201_90079#4011_201_90079", + "npcLv": [ + 440, + 440, + 440, + 440, + 440, + 440 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20386": { + "npcId": 20386, + "attr": {}, + "npclist": "3002_202_90072#3007_202_90071#3012_202_90076#4002_202_90079#4007_202_90079#4012_202_90079", + "npcLv": [ + 440, + 440, + 440, + 440, + 440, + 440 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20387": { + "npcId": 20387, + "attr": {}, + "npclist": "3003_202_90072#3008_202_90071#3013_202_90076#4003_202_90079#4008_202_90079#4013_202_90079", + "npcLv": [ + 445, + 445, + 445, + 445, + 445, + 445 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20388": { + "npcId": 20388, + "attr": {}, + "npclist": "3004_204_90072#3009_204_90071#3014_204_90076#4004_204_90079#4009_204_90079#4014_204_90079", + "npcLv": [ + 445, + 445, + 445, + 445, + 445, + 445 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20389": { + "npcId": 20389, + "attr": {}, + "npclist": "3005_204_90072#3010_204_90071#3015_204_90076#4005_204_90079#4010_204_90079#4015_204_90079", + "npcLv": [ + 445, + 445, + 445, + 445, + 445, + 445 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20390": { + "npcId": 20390, + "attr": {}, + "npclist": "3006_219_90072#3011_219_90071#4001_219_90076#4006_219_90079#4011_219_90079#5001_219_90079", + "npcLv": [ + 450, + 450, + 450, + 450, + 450, + 450 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20391": { + "npcId": 20391, + "attr": {}, + "npclist": "3007_205_90072#3012_205_90071#4002_205_90076#4007_205_90079#4012_205_90079#5002_205_90079", + "npcLv": [ + 450, + 450, + 450, + 450, + 450, + 450 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20392": { + "npcId": 20392, + "attr": {}, + "npclist": "3008_206_90072#3013_206_90071#4003_206_90076#4008_206_90079#4013_206_90079#5003_206_90079", + "npcLv": [ + 450, + 450, + 450, + 450, + 450, + 450 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20393": { + "npcId": 20393, + "attr": {}, + "npclist": "3009_206_90072#3014_206_90071#4004_206_90076#4009_206_90079#4014_206_90079#5004_206_90079", + "npcLv": [ + 455, + 455, + 455, + 455, + 455, + 455 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20394": { + "npcId": 20394, + "attr": {}, + "npclist": "3010_208_90072#3015_208_90071#4005_208_90076#4010_208_90079#4015_208_90079#5005_208_90079", + "npcLv": [ + 455, + 455, + 455, + 455, + 455, + 455 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20395": { + "npcId": 20395, + "attr": {}, + "npclist": "3011_208_90072#4001_208_90071#4006_208_90076#4011_208_90079#5001_208_90079#3001_208_90079", + "npcLv": [ + 455, + 455, + 455, + 455, + 455, + 455 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20396": { + "npcId": 20396, + "attr": {}, + "npclist": "3012_209_90072#4002_209_90071#4007_209_90076#4012_209_90079#5002_209_90079#3002_209_90079", + "npcLv": [ + 461, + 461, + 461, + 461, + 461, + 461 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20397": { + "npcId": 20397, + "attr": {}, + "npclist": "3013_209_90072#4003_209_90071#4008_209_90076#4013_209_90079#5003_209_90079#3003_209_90079", + "npcLv": [ + 461, + 461, + 461, + 461, + 461, + 461 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20398": { + "npcId": 20398, + "attr": {}, + "npclist": "3014_210_90072#4004_210_90071#4009_210_90076#4014_210_90079#5004_210_90079#3004_210_90079", + "npcLv": [ + 461, + 461, + 461, + 461, + 461, + 461 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20399": { + "npcId": 20399, + "attr": {}, + "npclist": "3015_210_90072#4005_210_90071#4010_210_90076#4015_210_90079#5005_210_90079#3005_210_90079", + "npcLv": [ + 466, + 466, + 466, + 466, + 466, + 466 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20400": { + "npcId": 20400, + "attr": {}, + "npclist": "4001_226_90072#4006_226_90071#4011_226_90076#5001_226_90079#3001_226_90079#3006_226_90079", + "npcLv": [ + 466, + 466, + 466, + 466, + 466, + 466 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20401": { + "npcId": 20401, + "attr": {}, + "npclist": "4002_211_90072#4007_211_90071#4012_211_90076#5002_211_90079#3002_211_90079#3007_211_90079", + "npcLv": [ + 466, + 466, + 466, + 466, + 466, + 466 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20402": { + "npcId": 20402, + "attr": {}, + "npclist": "4003_212_90072#4008_212_90071#4013_212_90076#5003_212_90079#3003_212_90079#3008_212_90079", + "npcLv": [ + 471, + 471, + 471, + 471, + 471, + 471 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20403": { + "npcId": 20403, + "attr": {}, + "npclist": "4004_213_90072#4009_213_90071#4014_213_90076#5004_213_90079#3004_213_90079#3009_213_90079", + "npcLv": [ + 471, + 471, + 471, + 471, + 471, + 471 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20404": { + "npcId": 20404, + "attr": {}, + "npclist": "4005_214_90072#4010_214_90071#4015_214_90076#5005_214_90079#3005_214_90079#3010_214_90079", + "npcLv": [ + 471, + 471, + 471, + 471, + 471, + 471 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20405": { + "npcId": 20405, + "attr": {}, + "npclist": "4006_214_90072#4011_214_90071#5001_214_90076#3001_214_90079#3006_214_90079#3011_214_90079", + "npcLv": [ + 476, + 476, + 476, + 476, + 476, + 476 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20406": { + "npcId": 20406, + "attr": {}, + "npclist": "4007_215_90072#4012_215_90071#5002_215_90076#3002_215_90079#3007_215_90079#3012_215_90079", + "npcLv": [ + 476, + 476, + 476, + 476, + 476, + 476 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20407": { + "npcId": 20407, + "attr": {}, + "npclist": "4008_215_90072#4013_215_90071#5003_215_90076#3003_215_90079#3008_215_90079#3013_215_90079", + "npcLv": [ + 476, + 476, + 476, + 476, + 476, + 476 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20408": { + "npcId": 20408, + "attr": {}, + "npclist": "4009_217_90072#4014_217_90071#5004_217_90076#3004_217_90079#3009_217_90079#3014_217_90079", + "npcLv": [ + 481, + 481, + 481, + 481, + 481, + 481 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20409": { + "npcId": 20409, + "attr": {}, + "npclist": "4010_217_90072#4015_217_90071#5005_217_90076#3005_217_90079#3010_217_90079#3015_217_90079", + "npcLv": [ + 481, + 481, + 481, + 481, + 481, + 481 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20410": { + "npcId": 20410, + "attr": {}, + "npclist": "4011_231_90072#5001_231_90071#3001_231_90076#3006_231_90079#3011_231_90079#4001_231_90079", + "npcLv": [ + 481, + 481, + 481, + 481, + 481, + 481 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20411": { + "npcId": 20411, + "attr": {}, + "npclist": "4012_218_90072#5002_218_90071#3002_218_90076#3007_218_90079#3012_218_90079#4002_218_90079", + "npcLv": [ + 486, + 486, + 486, + 486, + 486, + 486 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20412": { + "npcId": 20412, + "attr": {}, + "npclist": "4013_219_90072#5003_219_90071#3003_219_90076#3008_219_90079#3013_219_90079#4003_219_90079", + "npcLv": [ + 486, + 486, + 486, + 486, + 486, + 486 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20413": { + "npcId": 20413, + "attr": {}, + "npclist": "4014_219_90072#5004_219_90071#3004_219_90076#3009_219_90079#3014_219_90079#4004_219_90079", + "npcLv": [ + 486, + 486, + 486, + 486, + 486, + 486 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20414": { + "npcId": 20414, + "attr": {}, + "npclist": "4015_221_90072#5005_221_90071#3005_221_90076#3010_221_90079#3015_221_90079#4005_221_90079", + "npcLv": [ + 491, + 491, + 491, + 491, + 491, + 491 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20415": { + "npcId": 20415, + "attr": {}, + "npclist": "5001_221_90072#3001_221_90071#3006_221_90076#3011_221_90079#4001_221_90079#4006_221_90079", + "npcLv": [ + 491, + 491, + 491, + 491, + 491, + 491 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20416": { + "npcId": 20416, + "attr": {}, + "npclist": "5002_222_90072#3002_222_90071#3007_222_90076#3012_222_90079#4002_222_90079#4007_222_90079", + "npcLv": [ + 491, + 491, + 491, + 491, + 491, + 491 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20417": { + "npcId": 20417, + "attr": {}, + "npclist": "5003_222_90072#3003_222_90071#3008_222_90076#3013_222_90079#4003_222_90079#4008_222_90079", + "npcLv": [ + 497, + 497, + 497, + 497, + 497, + 497 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20418": { + "npcId": 20418, + "attr": {}, + "npclist": "5004_223_90072#3004_223_90071#3009_223_90076#3014_223_90079#4004_223_90079#4009_223_90079", + "npcLv": [ + 497, + 497, + 497, + 497, + 497, + 497 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20419": { + "npcId": 20419, + "attr": {}, + "npclist": "5005_223_90072#3005_223_90071#3010_223_90076#3015_223_90079#4005_223_90079#4010_223_90079", + "npcLv": [ + 497, + 497, + 497, + 497, + 497, + 497 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20420": { + "npcId": 20420, + "attr": {}, + "npclist": "3001_235_90072#3006_235_90071#3011_235_90076#4001_235_90079#4006_235_90079#4011_235_90079", + "npcLv": [ + 502, + 502, + 502, + 502, + 502, + 502 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20421": { + "npcId": 20421, + "attr": {}, + "npclist": "3002_224_90072#3007_224_90071#3012_224_90076#4002_224_90079#4007_224_90079#4012_224_90079", + "npcLv": [ + 502, + 502, + 502, + 502, + 502, + 502 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20422": { + "npcId": 20422, + "attr": {}, + "npclist": "3003_226_90072#3008_226_90071#3013_226_90076#4003_226_90079#4008_226_90079#4013_226_90079", + "npcLv": [ + 502, + 502, + 502, + 502, + 502, + 502 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20423": { + "npcId": 20423, + "attr": {}, + "npclist": "3004_226_90072#3009_226_90071#3014_226_90076#4004_226_90079#4009_226_90079#4014_226_90079", + "npcLv": [ + 507, + 507, + 507, + 507, + 507, + 507 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20424": { + "npcId": 20424, + "attr": {}, + "npclist": "3005_227_90072#3010_227_90071#3015_227_90076#4005_227_90079#4010_227_90079#4015_227_90079", + "npcLv": [ + 507, + 507, + 507, + 507, + 507, + 507 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20425": { + "npcId": 20425, + "attr": {}, + "npclist": "3006_227_90072#3011_227_90071#4001_227_90076#4006_227_90079#4011_227_90079#5001_227_90079", + "npcLv": [ + 507, + 507, + 507, + 507, + 507, + 507 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20426": { + "npcId": 20426, + "attr": {}, + "npclist": "3007_228_90072#3012_228_90071#4002_228_90076#4007_228_90079#4012_228_90079#5002_228_90079", + "npcLv": [ + 512, + 512, + 512, + 512, + 512, + 512 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20427": { + "npcId": 20427, + "attr": {}, + "npclist": "3008_228_90072#3013_228_90071#4003_228_90076#4008_228_90079#4013_228_90079#5003_228_90079", + "npcLv": [ + 512, + 512, + 512, + 512, + 512, + 512 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20428": { + "npcId": 20428, + "attr": {}, + "npclist": "3009_230_90072#3014_230_90071#4004_230_90076#4009_230_90079#4014_230_90079#5004_230_90079", + "npcLv": [ + 512, + 512, + 512, + 512, + 512, + 512 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20429": { + "npcId": 20429, + "attr": {}, + "npclist": "3010_230_90072#3015_230_90071#4005_230_90076#4010_230_90079#4015_230_90079#5005_230_90079", + "npcLv": [ + 517, + 517, + 517, + 517, + 517, + 517 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20430": { + "npcId": 20430, + "attr": {}, + "npclist": "3011_242_90072#4001_242_90071#4006_242_90076#4011_242_90079#5001_242_90079#3001_242_90079", + "npcLv": [ + 517, + 517, + 517, + 517, + 517, + 517 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20431": { + "npcId": 20431, + "attr": {}, + "npclist": "3012_231_90072#4002_231_90071#4007_231_90076#4012_231_90079#5002_231_90079#3002_231_90079", + "npcLv": [ + 517, + 517, + 517, + 517, + 517, + 517 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20432": { + "npcId": 20432, + "attr": {}, + "npclist": "3013_232_90072#4003_232_90071#4008_232_90076#4013_232_90079#5003_232_90079#3003_232_90079", + "npcLv": [ + 522, + 522, + 522, + 522, + 522, + 522 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20433": { + "npcId": 20433, + "attr": {}, + "npclist": "3014_232_90072#4004_232_90071#4009_232_90076#4014_232_90079#5004_232_90079#3004_232_90079", + "npcLv": [ + 522, + 522, + 522, + 522, + 522, + 522 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20434": { + "npcId": 20434, + "attr": {}, + "npclist": "3015_234_90072#4005_234_90071#4010_234_90076#4015_234_90079#5005_234_90079#3005_234_90079", + "npcLv": [ + 522, + 522, + 522, + 522, + 522, + 522 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20435": { + "npcId": 20435, + "attr": {}, + "npclist": "4001_234_90072#4006_234_90071#4011_234_90076#5001_234_90079#3001_234_90079#3006_234_90079", + "npcLv": [ + 528, + 528, + 528, + 528, + 528, + 528 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20436": { + "npcId": 20436, + "attr": {}, + "npclist": "4002_235_90072#4007_235_90071#4012_235_90076#5002_235_90079#3002_235_90079#3007_235_90079", + "npcLv": [ + 528, + 528, + 528, + 528, + 528, + 528 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20437": { + "npcId": 20437, + "attr": {}, + "npclist": "4003_235_90072#4008_235_90071#4013_235_90076#5003_235_90079#3003_235_90079#3008_235_90079", + "npcLv": [ + 528, + 528, + 528, + 528, + 528, + 528 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20438": { + "npcId": 20438, + "attr": {}, + "npclist": "4004_236_90072#4009_236_90071#4014_236_90076#5004_236_90079#3004_236_90079#3009_236_90079", + "npcLv": [ + 533, + 533, + 533, + 533, + 533, + 533 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20439": { + "npcId": 20439, + "attr": {}, + "npclist": "4005_236_90072#4010_236_90071#4015_236_90076#5005_236_90079#3005_236_90079#3010_236_90079", + "npcLv": [ + 533, + 533, + 533, + 533, + 533, + 533 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20440": { + "npcId": 20440, + "attr": {}, + "npclist": "4006_250_90072#4011_250_90071#5001_250_90076#3001_250_90079#3006_250_90079#3011_250_90079", + "npcLv": [ + 533, + 533, + 533, + 533, + 533, + 533 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20441": { + "npcId": 20441, + "attr": {}, + "npclist": "4007_237_90072#4012_237_90071#5002_237_90076#3002_237_90079#3007_237_90079#3012_237_90079", + "npcLv": [ + 538, + 538, + 538, + 538, + 538, + 538 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20442": { + "npcId": 20442, + "attr": {}, + "npclist": "4008_239_90072#4013_239_90071#5003_239_90076#3003_239_90079#3008_239_90079#3013_239_90079", + "npcLv": [ + 538, + 538, + 538, + 538, + 538, + 538 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20443": { + "npcId": 20443, + "attr": {}, + "npclist": "4009_239_90072#4014_239_90071#5004_239_90076#3004_239_90079#3009_239_90079#3014_239_90079", + "npcLv": [ + 538, + 538, + 538, + 538, + 538, + 538 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20444": { + "npcId": 20444, + "attr": {}, + "npclist": "4010_240_90072#4015_240_90071#5005_240_90076#3005_240_90079#3010_240_90079#3015_240_90079", + "npcLv": [ + 543, + 543, + 543, + 543, + 543, + 543 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20445": { + "npcId": 20445, + "attr": {}, + "npclist": "4011_240_90072#5001_240_90071#3001_240_90076#3006_240_90079#3011_240_90079#4001_240_90079", + "npcLv": [ + 543, + 543, + 543, + 543, + 543, + 543 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20446": { + "npcId": 20446, + "attr": {}, + "npclist": "4012_241_90072#5002_241_90071#3002_241_90076#3007_241_90079#3012_241_90079#4002_241_90079", + "npcLv": [ + 543, + 543, + 543, + 543, + 543, + 543 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20447": { + "npcId": 20447, + "attr": {}, + "npclist": "4013_241_90072#5003_241_90071#3003_241_90076#3008_241_90079#3013_241_90079#4003_241_90079", + "npcLv": [ + 549, + 549, + 549, + 549, + 549, + 549 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20448": { + "npcId": 20448, + "attr": {}, + "npclist": "4014_243_90072#5004_243_90071#3004_243_90076#3009_243_90079#3014_243_90079#4004_243_90079", + "npcLv": [ + 549, + 549, + 549, + 549, + 549, + 549 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20449": { + "npcId": 20449, + "attr": {}, + "npclist": "4015_243_90072#5005_243_90071#3005_243_90076#3010_243_90079#3015_243_90079#4005_243_90079", + "npcLv": [ + 549, + 549, + 549, + 549, + 549, + 549 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20450": { + "npcId": 20450, + "attr": {}, + "npclist": "5001_255_90072#3001_255_90071#3006_255_90076#3011_255_90079#4001_255_90079#4006_255_90079", + "npcLv": [ + 554, + 554, + 554, + 554, + 554, + 554 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20451": { + "npcId": 20451, + "attr": {}, + "npclist": "5002_244_90072#3002_244_90071#3007_244_90076#3012_244_90079#4002_244_90079#4007_244_90079", + "npcLv": [ + 554, + 554, + 554, + 554, + 554, + 554 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20452": { + "npcId": 20452, + "attr": {}, + "npclist": "5003_245_90072#3003_245_90071#3008_245_90076#3013_245_90079#4003_245_90079#4008_245_90079", + "npcLv": [ + 554, + 554, + 554, + 554, + 554, + 554 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20453": { + "npcId": 20453, + "attr": {}, + "npclist": "5004_245_90072#3004_245_90071#3009_245_90076#3014_245_90079#4004_245_90079#4009_245_90079", + "npcLv": [ + 559, + 559, + 559, + 559, + 559, + 559 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20454": { + "npcId": 20454, + "attr": {}, + "npclist": "5005_247_90072#3005_247_90071#3010_247_90076#3015_247_90079#4005_247_90079#4010_247_90079", + "npcLv": [ + 559, + 559, + 559, + 559, + 559, + 559 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20455": { + "npcId": 20455, + "attr": {}, + "npclist": "3001_247_90072#3006_247_90071#3011_247_90076#4001_247_90079#4006_247_90079#4011_247_90079", + "npcLv": [ + 559, + 559, + 559, + 559, + 559, + 559 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20456": { + "npcId": 20456, + "attr": {}, + "npclist": "3002_248_90072#3007_248_90071#3012_248_90076#4002_248_90079#4007_248_90079#4012_248_90079", + "npcLv": [ + 564, + 564, + 564, + 564, + 564, + 564 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20457": { + "npcId": 20457, + "attr": {}, + "npclist": "3003_248_90072#3008_248_90071#3013_248_90076#4003_248_90079#4008_248_90079#4013_248_90079", + "npcLv": [ + 564, + 564, + 564, + 564, + 564, + 564 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20458": { + "npcId": 20458, + "attr": {}, + "npclist": "3004_249_90072#3009_249_90071#3014_249_90076#4004_249_90079#4009_249_90079#4014_249_90079", + "npcLv": [ + 564, + 564, + 564, + 564, + 564, + 564 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20459": { + "npcId": 20459, + "attr": {}, + "npclist": "3005_249_90072#3010_249_90071#3015_249_90076#4005_249_90079#4010_249_90079#4015_249_90079", + "npcLv": [ + 570, + 570, + 570, + 570, + 570, + 570 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20460": { + "npcId": 20460, + "attr": {}, + "npclist": "3006_260_90072#3011_260_90071#4001_260_90076#4006_260_90079#4011_260_90079#5001_260_90079", + "npcLv": [ + 570, + 570, + 570, + 570, + 570, + 570 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20461": { + "npcId": 20461, + "attr": {}, + "npclist": "3007_250_90072#3012_250_90071#4002_250_90076#4007_250_90079#4012_250_90079#5002_250_90079", + "npcLv": [ + 570, + 570, + 570, + 570, + 570, + 570 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20462": { + "npcId": 20462, + "attr": {}, + "npclist": "3008_252_90072#3013_252_90071#4003_252_90076#4008_252_90079#4013_252_90079#5003_252_90079", + "npcLv": [ + 575, + 575, + 575, + 575, + 575, + 575 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20463": { + "npcId": 20463, + "attr": {}, + "npclist": "3009_252_90072#3014_252_90071#4004_252_90076#4009_252_90079#4014_252_90079#5004_252_90079", + "npcLv": [ + 575, + 575, + 575, + 575, + 575, + 575 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20464": { + "npcId": 20464, + "attr": {}, + "npclist": "3010_253_90072#3015_253_90071#4005_253_90076#4010_253_90079#4015_253_90079#5005_253_90079", + "npcLv": [ + 575, + 575, + 575, + 575, + 575, + 575 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20465": { + "npcId": 20465, + "attr": {}, + "npclist": "3011_253_90072#4001_253_90071#4006_253_90076#4011_253_90079#5001_253_90079#3001_253_90079", + "npcLv": [ + 580, + 580, + 580, + 580, + 580, + 580 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20466": { + "npcId": 20466, + "attr": {}, + "npclist": "3012_254_90072#4002_254_90071#4007_254_90076#4012_254_90079#5002_254_90079#3002_254_90079", + "npcLv": [ + 580, + 580, + 580, + 580, + 580, + 580 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20467": { + "npcId": 20467, + "attr": {}, + "npclist": "3013_254_90072#4003_254_90071#4008_254_90076#4013_254_90079#5003_254_90079#3003_254_90079", + "npcLv": [ + 580, + 580, + 580, + 580, + 580, + 580 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20468": { + "npcId": 20468, + "attr": {}, + "npclist": "3014_256_90072#4004_256_90071#4009_256_90076#4014_256_90079#5004_256_90079#3004_256_90079", + "npcLv": [ + 585, + 585, + 585, + 585, + 585, + 585 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20469": { + "npcId": 20469, + "attr": {}, + "npclist": "3015_256_90072#4005_256_90071#4010_256_90076#4015_256_90079#5005_256_90079#3005_256_90079", + "npcLv": [ + 585, + 585, + 585, + 585, + 585, + 585 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20470": { + "npcId": 20470, + "attr": {}, + "npclist": "4001_267_90072#4006_267_90071#4011_267_90076#5001_267_90079#3001_267_90079#3006_267_90079", + "npcLv": [ + 585, + 585, + 585, + 585, + 585, + 585 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20471": { + "npcId": 20471, + "attr": {}, + "npclist": "4002_257_90072#4007_257_90071#4012_257_90076#5002_257_90079#3002_257_90079#3007_257_90079", + "npcLv": [ + 591, + 591, + 591, + 591, + 591, + 591 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20472": { + "npcId": 20472, + "attr": {}, + "npclist": "4003_258_90072#4008_258_90071#4013_258_90076#5003_258_90079#3003_258_90079#3008_258_90079", + "npcLv": [ + 591, + 591, + 591, + 591, + 591, + 591 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20473": { + "npcId": 20473, + "attr": {}, + "npclist": "4004_258_90072#4009_258_90071#4014_258_90076#5004_258_90079#3004_258_90079#3009_258_90079", + "npcLv": [ + 591, + 591, + 591, + 591, + 591, + 591 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20474": { + "npcId": 20474, + "attr": {}, + "npclist": "4005_260_90072#4010_260_90071#4015_260_90076#5005_260_90079#3005_260_90079#3010_260_90079", + "npcLv": [ + 596, + 596, + 596, + 596, + 596, + 596 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20475": { + "npcId": 20475, + "attr": {}, + "npclist": "4006_260_90072#4011_260_90071#5001_260_90076#3001_260_90079#3006_260_90079#3011_260_90079", + "npcLv": [ + 596, + 596, + 596, + 596, + 596, + 596 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20476": { + "npcId": 20476, + "attr": {}, + "npclist": "4007_261_90072#4012_261_90071#5002_261_90076#3002_261_90079#3007_261_90079#3012_261_90079", + "npcLv": [ + 596, + 596, + 596, + 596, + 596, + 596 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20477": { + "npcId": 20477, + "attr": {}, + "npclist": "4008_261_90072#4013_261_90071#5003_261_90076#3003_261_90079#3008_261_90079#3013_261_90079", + "npcLv": [ + 601, + 601, + 601, + 601, + 601, + 601 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20478": { + "npcId": 20478, + "attr": {}, + "npclist": "4009_262_90072#4014_262_90071#5004_262_90076#3004_262_90079#3009_262_90079#3014_262_90079", + "npcLv": [ + 601, + 601, + 601, + 601, + 601, + 601 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20479": { + "npcId": 20479, + "attr": {}, + "npclist": "4010_262_90072#4015_262_90071#5005_262_90076#3005_262_90079#3010_262_90079#3015_262_90079", + "npcLv": [ + 601, + 601, + 601, + 601, + 601, + 601 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20480": { + "npcId": 20480, + "attr": {}, + "npclist": "4011_272_90072#5001_272_90071#3001_272_90076#3006_272_90079#3011_272_90079#4001_272_90079", + "npcLv": [ + 607, + 607, + 607, + 607, + 607, + 607 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20481": { + "npcId": 20481, + "attr": {}, + "npclist": "4012_263_90072#5002_263_90071#3002_263_90076#3007_263_90079#3012_263_90079#4002_263_90079", + "npcLv": [ + 607, + 607, + 607, + 607, + 607, + 607 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20482": { + "npcId": 20482, + "attr": {}, + "npclist": "4013_265_90072#5003_265_90071#3003_265_90076#3008_265_90079#3013_265_90079#4003_265_90079", + "npcLv": [ + 607, + 607, + 607, + 607, + 607, + 607 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20483": { + "npcId": 20483, + "attr": {}, + "npclist": "4014_265_90072#5004_265_90071#3004_265_90076#3009_265_90079#3014_265_90079#4004_265_90079", + "npcLv": [ + 612, + 612, + 612, + 612, + 612, + 612 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20484": { + "npcId": 20484, + "attr": {}, + "npclist": "4015_266_90072#5005_266_90071#3005_266_90076#3010_266_90079#3015_266_90079#4005_266_90079", + "npcLv": [ + 612, + 612, + 612, + 612, + 612, + 612 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20485": { + "npcId": 20485, + "attr": {}, + "npclist": "5001_266_90072#3001_266_90071#3006_266_90076#3011_266_90079#4001_266_90079#4006_266_90079", + "npcLv": [ + 612, + 612, + 612, + 612, + 612, + 612 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20486": { + "npcId": 20486, + "attr": {}, + "npclist": "5002_267_90072#3002_267_90071#3007_267_90076#3012_267_90079#4002_267_90079#4007_267_90079", + "npcLv": [ + 617, + 617, + 617, + 617, + 617, + 617 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20487": { + "npcId": 20487, + "attr": {}, + "npclist": "5003_267_90072#3003_267_90071#3008_267_90076#3013_267_90079#4003_267_90079#4008_267_90079", + "npcLv": [ + 617, + 617, + 617, + 617, + 617, + 617 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20488": { + "npcId": 20488, + "attr": {}, + "npclist": "5004_269_90072#3004_269_90071#3009_269_90076#3014_269_90079#4004_269_90079#4009_269_90079", + "npcLv": [ + 617, + 617, + 617, + 617, + 617, + 617 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20489": { + "npcId": 20489, + "attr": {}, + "npclist": "5005_269_90072#3005_269_90071#3010_269_90076#3015_269_90079#4005_269_90079#4010_269_90079", + "npcLv": [ + 622, + 622, + 622, + 622, + 622, + 622 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20490": { + "npcId": 20490, + "attr": {}, + "npclist": "3001_280_90072#3006_280_90071#3011_280_90076#4001_280_90079#4006_280_90079#4011_280_90079", + "npcLv": [ + 622, + 622, + 622, + 622, + 622, + 622 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20491": { + "npcId": 20491, + "attr": {}, + "npclist": "3002_270_90072#3007_270_90071#3012_270_90076#4002_270_90079#4007_270_90079#4012_270_90079", + "npcLv": [ + 622, + 622, + 622, + 622, + 622, + 622 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20492": { + "npcId": 20492, + "attr": {}, + "npclist": "3003_271_90072#3008_271_90071#3013_271_90076#4003_271_90079#4008_271_90079#4013_271_90079", + "npcLv": [ + 628, + 628, + 628, + 628, + 628, + 628 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20493": { + "npcId": 20493, + "attr": {}, + "npclist": "3004_271_90072#3009_271_90071#3014_271_90076#4004_271_90079#4009_271_90079#4014_271_90079", + "npcLv": [ + 628, + 628, + 628, + 628, + 628, + 628 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20494": { + "npcId": 20494, + "attr": {}, + "npclist": "3005_273_90072#3010_273_90071#3015_273_90076#4005_273_90079#4010_273_90079#4015_273_90079", + "npcLv": [ + 628, + 628, + 628, + 628, + 628, + 628 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20495": { + "npcId": 20495, + "attr": {}, + "npclist": "3006_273_90072#3011_273_90071#4001_273_90076#4006_273_90079#4011_273_90079#5001_273_90079", + "npcLv": [ + 633, + 633, + 633, + 633, + 633, + 633 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20496": { + "npcId": 20496, + "attr": {}, + "npclist": "3007_274_90072#3012_274_90071#4002_274_90076#4007_274_90079#4012_274_90079#5002_274_90079", + "npcLv": [ + 633, + 633, + 633, + 633, + 633, + 633 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20497": { + "npcId": 20497, + "attr": {}, + "npclist": "3008_274_90072#3013_274_90071#4003_274_90076#4008_274_90079#4013_274_90079#5003_274_90079", + "npcLv": [ + 633, + 633, + 633, + 633, + 633, + 633 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20498": { + "npcId": 20498, + "attr": {}, + "npclist": "3009_275_90072#3014_275_90071#4004_275_90076#4009_275_90079#4014_275_90079#5004_275_90079", + "npcLv": [ + 638, + 638, + 638, + 638, + 638, + 638 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20499": { + "npcId": 20499, + "attr": {}, + "npclist": "3010_275_90072#3015_275_90071#4005_275_90076#4010_275_90079#4015_275_90079#5005_275_90079", + "npcLv": [ + 638, + 638, + 638, + 638, + 638, + 638 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20500": { + "npcId": 20500, + "attr": {}, + "npclist": "3011_283_90072#4001_283_90071#4006_283_90076#4011_283_90079#5001_283_90079#3001_283_90079", + "npcLv": [ + 638, + 638, + 638, + 638, + 638, + 638 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20501": { + "npcId": 20501, + "attr": {}, + "npclist": "3012_276_90072#4002_276_90071#4007_276_90076#4012_276_90079#5002_276_90079#3002_276_90079", + "npcLv": [ + 644, + 644, + 644, + 644, + 644, + 644 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20502": { + "npcId": 20502, + "attr": {}, + "npclist": "3013_278_90072#4003_278_90071#4008_278_90076#4013_278_90079#5003_278_90079#3003_278_90079", + "npcLv": [ + 644, + 644, + 644, + 644, + 644, + 644 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20503": { + "npcId": 20503, + "attr": {}, + "npclist": "3014_278_90072#4004_278_90071#4009_278_90076#4014_278_90079#5004_278_90079#3004_278_90079", + "npcLv": [ + 644, + 644, + 644, + 644, + 644, + 644 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20504": { + "npcId": 20504, + "attr": {}, + "npclist": "3015_279_90072#4005_279_90071#4010_279_90076#4015_279_90079#5005_279_90079#3005_279_90079", + "npcLv": [ + 649, + 649, + 649, + 649, + 649, + 649 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20505": { + "npcId": 20505, + "attr": {}, + "npclist": "4001_279_90072#4006_279_90071#4011_279_90076#5001_279_90079#3001_279_90079#3006_279_90079", + "npcLv": [ + 649, + 649, + 649, + 649, + 649, + 649 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20506": { + "npcId": 20506, + "attr": {}, + "npclist": "4002_280_90072#4007_280_90071#4012_280_90076#5002_280_90079#3002_280_90079#3007_280_90079", + "npcLv": [ + 649, + 649, + 649, + 649, + 649, + 649 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20507": { + "npcId": 20507, + "attr": {}, + "npclist": "4003_280_90072#4008_280_90071#4013_280_90076#5003_280_90079#3003_280_90079#3008_280_90079", + "npcLv": [ + 654, + 654, + 654, + 654, + 654, + 654 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20508": { + "npcId": 20508, + "attr": {}, + "npclist": "4004_282_90072#4009_282_90071#4014_282_90076#5004_282_90079#3004_282_90079#3009_282_90079", + "npcLv": [ + 654, + 654, + 654, + 654, + 654, + 654 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20509": { + "npcId": 20509, + "attr": {}, + "npclist": "4005_282_90072#4010_282_90071#4015_282_90076#5005_282_90079#3005_282_90079#3010_282_90079", + "npcLv": [ + 654, + 654, + 654, + 654, + 654, + 654 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20510": { + "npcId": 20510, + "attr": {}, + "npclist": "4006_289_90072#4011_289_90071#5001_289_90076#3001_289_90079#3006_289_90079#3011_289_90079", + "npcLv": [ + 660, + 660, + 660, + 660, + 660, + 660 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20511": { + "npcId": 20511, + "attr": {}, + "npclist": "4007_281_90072#4012_281_90071#5002_281_90076#3002_281_90079#3007_281_90079#3012_281_90079", + "npcLv": [ + 660, + 660, + 660, + 660, + 660, + 660 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20512": { + "npcId": 20512, + "attr": {}, + "npclist": "4008_282_90072#4013_282_90071#5003_282_90076#3003_282_90079#3008_282_90079#3013_282_90079", + "npcLv": [ + 660, + 660, + 660, + 660, + 660, + 660 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20513": { + "npcId": 20513, + "attr": {}, + "npclist": "4009_282_90072#4014_282_90071#5004_282_90076#3004_282_90079#3009_282_90079#3014_282_90079", + "npcLv": [ + 665, + 665, + 665, + 665, + 665, + 665 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20514": { + "npcId": 20514, + "attr": {}, + "npclist": "4010_283_90072#4015_283_90071#5005_283_90076#3005_283_90079#3010_283_90079#3015_283_90079", + "npcLv": [ + 665, + 665, + 665, + 665, + 665, + 665 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20515": { + "npcId": 20515, + "attr": {}, + "npclist": "4011_283_90072#5001_283_90071#3001_283_90076#3006_283_90079#3011_283_90079#4001_283_90079", + "npcLv": [ + 665, + 665, + 665, + 665, + 665, + 665 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20516": { + "npcId": 20516, + "attr": {}, + "npclist": "4012_285_90072#5002_285_90071#3002_285_90076#3007_285_90079#3012_285_90079#4002_285_90079", + "npcLv": [ + 671, + 671, + 671, + 671, + 671, + 671 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20517": { + "npcId": 20517, + "attr": {}, + "npclist": "4013_285_90072#5003_285_90071#3003_285_90076#3008_285_90079#3013_285_90079#4003_285_90079", + "npcLv": [ + 671, + 671, + 671, + 671, + 671, + 671 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20518": { + "npcId": 20518, + "attr": {}, + "npclist": "4014_286_90072#5004_286_90071#3004_286_90076#3009_286_90079#3014_286_90079#4004_286_90079", + "npcLv": [ + 671, + 671, + 671, + 671, + 671, + 671 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20519": { + "npcId": 20519, + "attr": {}, + "npclist": "4015_286_90072#5005_286_90071#3005_286_90076#3010_286_90079#3015_286_90079#4005_286_90079", + "npcLv": [ + 676, + 676, + 676, + 676, + 676, + 676 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20520": { + "npcId": 20520, + "attr": {}, + "npclist": "5001_296_90072#3001_296_90071#3006_296_90076#3011_296_90079#4001_296_90079#4006_296_90079", + "npcLv": [ + 676, + 676, + 676, + 676, + 676, + 676 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20521": { + "npcId": 20521, + "attr": {}, + "npclist": "5002_285_90072#3002_285_90071#3007_285_90076#3012_285_90079#4002_285_90079#4007_285_90079", + "npcLv": [ + 676, + 676, + 676, + 676, + 676, + 676 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20522": { + "npcId": 20522, + "attr": {}, + "npclist": "5003_286_90072#3003_286_90071#3008_286_90076#3013_286_90079#4003_286_90079#4008_286_90079", + "npcLv": [ + 681, + 681, + 681, + 681, + 681, + 681 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20523": { + "npcId": 20523, + "attr": {}, + "npclist": "5004_286_90072#3004_286_90071#3009_286_90076#3014_286_90079#4004_286_90079#4009_286_90079", + "npcLv": [ + 681, + 681, + 681, + 681, + 681, + 681 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20524": { + "npcId": 20524, + "attr": {}, + "npclist": "5005_288_90072#3005_288_90071#3010_288_90076#3015_288_90079#4005_288_90079#4010_288_90079", + "npcLv": [ + 681, + 681, + 681, + 681, + 681, + 681 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20525": { + "npcId": 20525, + "attr": {}, + "npclist": "3001_288_90072#3006_288_90071#3011_288_90076#4001_288_90079#4006_288_90079#4011_288_90079", + "npcLv": [ + 687, + 687, + 687, + 687, + 687, + 687 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20526": { + "npcId": 20526, + "attr": {}, + "npclist": "3002_289_90072#3007_289_90071#3012_289_90076#4002_289_90079#4007_289_90079#4012_289_90079", + "npcLv": [ + 687, + 687, + 687, + 687, + 687, + 687 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20527": { + "npcId": 20527, + "attr": {}, + "npclist": "3003_289_90072#3008_289_90071#3013_289_90076#4003_289_90079#4008_289_90079#4013_289_90079", + "npcLv": [ + 687, + 687, + 687, + 687, + 687, + 687 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20528": { + "npcId": 20528, + "attr": {}, + "npclist": "3004_290_90072#3009_290_90071#3014_290_90076#4004_290_90079#4009_290_90079#4014_290_90079", + "npcLv": [ + 692, + 692, + 692, + 692, + 692, + 692 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20529": { + "npcId": 20529, + "attr": {}, + "npclist": "3005_290_90072#3010_290_90071#3015_290_90076#4005_290_90079#4010_290_90079#4015_290_90079", + "npcLv": [ + 692, + 692, + 692, + 692, + 692, + 692 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20530": { + "npcId": 20530, + "attr": {}, + "npclist": "3006_303_90072#3011_303_90071#4001_303_90076#4006_303_90079#4011_303_90079#5001_303_90079", + "npcLv": [ + 692, + 692, + 692, + 692, + 692, + 692 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20531": { + "npcId": 20531, + "attr": {}, + "npclist": "3007_291_90072#3012_291_90071#4002_291_90076#4007_291_90079#4012_291_90079#5002_291_90079", + "npcLv": [ + 698, + 698, + 698, + 698, + 698, + 698 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20532": { + "npcId": 20532, + "attr": {}, + "npclist": "3008_293_90072#3013_293_90071#4003_293_90076#4008_293_90079#4013_293_90079#5003_293_90079", + "npcLv": [ + 698, + 698, + 698, + 698, + 698, + 698 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20533": { + "npcId": 20533, + "attr": {}, + "npclist": "3009_293_90072#3014_293_90071#4004_293_90076#4009_293_90079#4014_293_90079#5004_293_90079", + "npcLv": [ + 698, + 698, + 698, + 698, + 698, + 698 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20534": { + "npcId": 20534, + "attr": {}, + "npclist": "3010_294_90072#3015_294_90071#4005_294_90076#4010_294_90079#4015_294_90079#5005_294_90079", + "npcLv": [ + 703, + 703, + 703, + 703, + 703, + 703 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20535": { + "npcId": 20535, + "attr": {}, + "npclist": "3011_294_90072#4001_294_90071#4006_294_90076#4011_294_90079#5001_294_90079#3001_294_90079", + "npcLv": [ + 703, + 703, + 703, + 703, + 703, + 703 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20536": { + "npcId": 20536, + "attr": {}, + "npclist": "3012_295_90072#4002_295_90071#4007_295_90076#4012_295_90079#5002_295_90079#3002_295_90079", + "npcLv": [ + 703, + 703, + 703, + 703, + 703, + 703 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20537": { + "npcId": 20537, + "attr": {}, + "npclist": "3013_295_90072#4003_295_90071#4008_295_90076#4013_295_90079#5003_295_90079#3003_295_90079", + "npcLv": [ + 708, + 708, + 708, + 708, + 708, + 708 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20538": { + "npcId": 20538, + "attr": {}, + "npclist": "3014_296_90072#4004_296_90071#4009_296_90076#4014_296_90079#5004_296_90079#3004_296_90079", + "npcLv": [ + 708, + 708, + 708, + 708, + 708, + 708 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20539": { + "npcId": 20539, + "attr": {}, + "npclist": "3015_296_90072#4005_296_90071#4010_296_90076#4015_296_90079#5005_296_90079#3005_296_90079", + "npcLv": [ + 708, + 708, + 708, + 708, + 708, + 708 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20540": { + "npcId": 20540, + "attr": {}, + "npclist": "4001_307_90072#4006_307_90071#4011_307_90076#5001_307_90079#3001_307_90079#3006_307_90079", + "npcLv": [ + 714, + 714, + 714, + 714, + 714, + 714 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20541": { + "npcId": 20541, + "attr": {}, + "npclist": "4002_291_90072#4007_291_90071#4012_291_90076#5002_291_90079#3002_291_90079#3007_291_90079", + "npcLv": [ + 714, + 714, + 714, + 714, + 714, + 714 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20542": { + "npcId": 20542, + "attr": {}, + "npclist": "4003_292_90072#4008_292_90071#4013_292_90076#5003_292_90079#3003_292_90079#3008_292_90079", + "npcLv": [ + 714, + 714, + 714, + 714, + 714, + 714 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20543": { + "npcId": 20543, + "attr": {}, + "npclist": "4004_292_90072#4009_292_90071#4014_292_90076#5004_292_90079#3004_292_90079#3009_292_90079", + "npcLv": [ + 719, + 719, + 719, + 719, + 719, + 719 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20544": { + "npcId": 20544, + "attr": {}, + "npclist": "4005_293_90072#4010_293_90071#4015_293_90076#5005_293_90079#3005_293_90079#3010_293_90079", + "npcLv": [ + 719, + 719, + 719, + 719, + 719, + 719 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20545": { + "npcId": 20545, + "attr": {}, + "npclist": "4006_293_90072#4011_293_90071#5001_293_90076#3001_293_90079#3006_293_90079#3011_293_90079", + "npcLv": [ + 719, + 719, + 719, + 719, + 719, + 719 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20546": { + "npcId": 20546, + "attr": {}, + "npclist": "4007_295_90072#4012_295_90071#5002_295_90076#3002_295_90079#3007_295_90079#3012_295_90079", + "npcLv": [ + 725, + 725, + 725, + 725, + 725, + 725 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20547": { + "npcId": 20547, + "attr": {}, + "npclist": "4008_295_90072#4013_295_90071#5003_295_90076#3003_295_90079#3008_295_90079#3013_295_90079", + "npcLv": [ + 725, + 725, + 725, + 725, + 725, + 725 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20548": { + "npcId": 20548, + "attr": {}, + "npclist": "4009_296_90072#4014_296_90071#5004_296_90076#3004_296_90079#3009_296_90079#3014_296_90079", + "npcLv": [ + 725, + 725, + 725, + 725, + 725, + 725 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20549": { + "npcId": 20549, + "attr": {}, + "npclist": "4010_296_90072#4015_296_90071#5005_296_90076#3005_296_90079#3010_296_90079#3015_296_90079", + "npcLv": [ + 730, + 730, + 730, + 730, + 730, + 730 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20550": { + "npcId": 20550, + "attr": {}, + "npclist": "4011_311_90072#5001_311_90071#3001_311_90076#3006_311_90079#3011_311_90079#4001_311_90079", + "npcLv": [ + 730, + 730, + 730, + 730, + 730, + 730 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20551": { + "npcId": 20551, + "attr": {}, + "npclist": "4012_297_90072#5002_297_90071#3002_297_90076#3007_297_90079#3012_297_90079#4002_297_90079", + "npcLv": [ + 730, + 730, + 730, + 730, + 730, + 730 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20552": { + "npcId": 20552, + "attr": {}, + "npclist": "4013_298_90072#5003_298_90071#3003_298_90076#3008_298_90079#3013_298_90079#4003_298_90079", + "npcLv": [ + 735, + 735, + 735, + 735, + 735, + 735 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20553": { + "npcId": 20553, + "attr": {}, + "npclist": "4014_298_90072#5004_298_90071#3004_298_90076#3009_298_90079#3014_298_90079#4004_298_90079", + "npcLv": [ + 735, + 735, + 735, + 735, + 735, + 735 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20554": { + "npcId": 20554, + "attr": {}, + "npclist": "4015_300_90072#5005_300_90071#3005_300_90076#3010_300_90079#3015_300_90079#4005_300_90079", + "npcLv": [ + 735, + 735, + 735, + 735, + 735, + 735 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20555": { + "npcId": 20555, + "attr": {}, + "npclist": "5001_300_90072#3001_300_90071#3006_300_90076#3011_300_90079#4001_300_90079#4006_300_90079", + "npcLv": [ + 741, + 741, + 741, + 741, + 741, + 741 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20556": { + "npcId": 20556, + "attr": {}, + "npclist": "5002_301_90072#3002_301_90071#3007_301_90076#3012_301_90079#4002_301_90079#4007_301_90079", + "npcLv": [ + 741, + 741, + 741, + 741, + 741, + 741 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20557": { + "npcId": 20557, + "attr": {}, + "npclist": "5003_301_90072#3003_301_90071#3008_301_90076#3013_301_90079#4003_301_90079#4008_301_90079", + "npcLv": [ + 741, + 741, + 741, + 741, + 741, + 741 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20558": { + "npcId": 20558, + "attr": {}, + "npclist": "5004_302_90072#3004_302_90071#3009_302_90076#3014_302_90079#4004_302_90079#4009_302_90079", + "npcLv": [ + 746, + 746, + 746, + 746, + 746, + 746 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20559": { + "npcId": 20559, + "attr": {}, + "npclist": "5005_302_90072#3005_302_90071#3010_302_90076#3015_302_90079#4005_302_90079#4010_302_90079", + "npcLv": [ + 746, + 746, + 746, + 746, + 746, + 746 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20560": { + "npcId": 20560, + "attr": {}, + "npclist": "3001_315_90072#3006_315_90071#3011_315_90076#4001_315_90079#4006_315_90079#4011_315_90079", + "npcLv": [ + 746, + 746, + 746, + 746, + 746, + 746 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20561": { + "npcId": 20561, + "attr": {}, + "npclist": "3002_303_90072#3007_303_90071#3012_303_90076#4002_303_90079#4007_303_90079#4012_303_90079", + "npcLv": [ + 752, + 752, + 752, + 752, + 752, + 752 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20562": { + "npcId": 20562, + "attr": {}, + "npclist": "3003_305_90072#3008_305_90071#3013_305_90076#4003_305_90079#4008_305_90079#4013_305_90079", + "npcLv": [ + 752, + 752, + 752, + 752, + 752, + 752 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20563": { + "npcId": 20563, + "attr": {}, + "npclist": "3004_305_90072#3009_305_90071#3014_305_90076#4004_305_90079#4009_305_90079#4014_305_90079", + "npcLv": [ + 752, + 752, + 752, + 752, + 752, + 752 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20564": { + "npcId": 20564, + "attr": {}, + "npclist": "3005_306_90072#3010_306_90071#3015_306_90076#4005_306_90079#4010_306_90079#4015_306_90079", + "npcLv": [ + 757, + 757, + 757, + 757, + 757, + 757 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20565": { + "npcId": 20565, + "attr": {}, + "npclist": "3006_306_90072#3011_306_90071#4001_306_90076#4006_306_90079#4011_306_90079#5001_306_90079", + "npcLv": [ + 757, + 757, + 757, + 757, + 757, + 757 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20566": { + "npcId": 20566, + "attr": {}, + "npclist": "3007_307_90072#3012_307_90071#4002_307_90076#4007_307_90079#4012_307_90079#5002_307_90079", + "npcLv": [ + 757, + 757, + 757, + 757, + 757, + 757 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20567": { + "npcId": 20567, + "attr": {}, + "npclist": "3008_307_90072#3013_307_90071#4003_307_90076#4008_307_90079#4013_307_90079#5003_307_90079", + "npcLv": [ + 763, + 763, + 763, + 763, + 763, + 763 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20568": { + "npcId": 20568, + "attr": {}, + "npclist": "3009_308_90072#3014_308_90071#4004_308_90076#4009_308_90079#4014_308_90079#5004_308_90079", + "npcLv": [ + 763, + 763, + 763, + 763, + 763, + 763 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20569": { + "npcId": 20569, + "attr": {}, + "npclist": "3010_308_90072#3015_308_90071#4005_308_90076#4010_308_90079#4015_308_90079#5005_308_90079", + "npcLv": [ + 763, + 763, + 763, + 763, + 763, + 763 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20570": { + "npcId": 20570, + "attr": {}, + "npclist": "3011_319_90072#4001_319_90071#4006_319_90076#4011_319_90079#5001_319_90079#3001_319_90079", + "npcLv": [ + 768, + 768, + 768, + 768, + 768, + 768 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20571": { + "npcId": 20571, + "attr": {}, + "npclist": "3012_310_90072#4002_310_90071#4007_310_90076#4012_310_90079#5002_310_90079#3002_310_90079", + "npcLv": [ + 768, + 768, + 768, + 768, + 768, + 768 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20572": { + "npcId": 20572, + "attr": {}, + "npclist": "3013_307_90072#4003_307_90071#4008_307_90076#4013_307_90079#5003_307_90079#3003_307_90079", + "npcLv": [ + 768, + 768, + 768, + 768, + 768, + 768 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20573": { + "npcId": 20573, + "attr": {}, + "npclist": "3014_307_90072#4004_307_90071#4009_307_90076#4014_307_90079#5004_307_90079#3004_307_90079", + "npcLv": [ + 774, + 774, + 774, + 774, + 774, + 774 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20574": { + "npcId": 20574, + "attr": {}, + "npclist": "3015_308_90072#4005_308_90071#4010_308_90076#4015_308_90079#5005_308_90079#3005_308_90079", + "npcLv": [ + 774, + 774, + 774, + 774, + 774, + 774 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20575": { + "npcId": 20575, + "attr": {}, + "npclist": "4001_308_90072#4006_308_90071#4011_308_90076#5001_308_90079#3001_308_90079#3006_308_90079", + "npcLv": [ + 774, + 774, + 774, + 774, + 774, + 774 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20576": { + "npcId": 20576, + "attr": {}, + "npclist": "4002_309_90072#4007_309_90071#4012_309_90076#5002_309_90079#3002_309_90079#3007_309_90079", + "npcLv": [ + 779, + 779, + 779, + 779, + 779, + 779 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20577": { + "npcId": 20577, + "attr": {}, + "npclist": "4003_309_90072#4008_309_90071#4013_309_90076#5003_309_90079#3003_309_90079#3008_309_90079", + "npcLv": [ + 779, + 779, + 779, + 779, + 779, + 779 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20578": { + "npcId": 20578, + "attr": {}, + "npclist": "4004_311_90072#4009_311_90071#4014_311_90076#5004_311_90079#3004_311_90079#3009_311_90079", + "npcLv": [ + 779, + 779, + 779, + 779, + 779, + 779 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20579": { + "npcId": 20579, + "attr": {}, + "npclist": "4005_311_90072#4010_311_90071#4015_311_90076#5005_311_90079#3005_311_90079#3010_311_90079", + "npcLv": [ + 785, + 785, + 785, + 785, + 785, + 785 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20580": { + "npcId": 20580, + "attr": {}, + "npclist": "4006_326_90072#4011_326_90071#5001_326_90076#3001_326_90079#3006_326_90079#3011_326_90079", + "npcLv": [ + 785, + 785, + 785, + 785, + 785, + 785 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20581": { + "npcId": 20581, + "attr": {}, + "npclist": "4007_316_90072#4012_316_90071#5002_316_90076#3002_316_90079#3007_316_90079#3012_316_90079", + "npcLv": [ + 785, + 785, + 785, + 785, + 785, + 785 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20582": { + "npcId": 20582, + "attr": {}, + "npclist": "4008_317_90072#4013_317_90071#5003_317_90076#3003_317_90079#3008_317_90079#3013_317_90079", + "npcLv": [ + 790, + 790, + 790, + 790, + 790, + 790 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20583": { + "npcId": 20583, + "attr": {}, + "npclist": "4009_317_90072#4014_317_90071#5004_317_90076#3004_317_90079#3009_317_90079#3014_317_90079", + "npcLv": [ + 790, + 790, + 790, + 790, + 790, + 790 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20584": { + "npcId": 20584, + "attr": {}, + "npclist": "4010_318_90072#4015_318_90071#5005_318_90076#3005_318_90079#3010_318_90079#3015_318_90079", + "npcLv": [ + 790, + 790, + 790, + 790, + 790, + 790 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20585": { + "npcId": 20585, + "attr": {}, + "npclist": "4011_318_90072#5001_318_90071#3001_318_90076#3006_318_90079#3011_318_90079#4001_318_90079", + "npcLv": [ + 796, + 796, + 796, + 796, + 796, + 796 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20586": { + "npcId": 20586, + "attr": {}, + "npclist": "4012_320_90072#5002_320_90071#3002_320_90076#3007_320_90079#3012_320_90079#4002_320_90079", + "npcLv": [ + 796, + 796, + 796, + 796, + 796, + 796 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20587": { + "npcId": 20587, + "attr": {}, + "npclist": "4013_320_90072#5003_320_90071#3003_320_90076#3008_320_90079#3013_320_90079#4003_320_90079", + "npcLv": [ + 796, + 796, + 796, + 796, + 796, + 796 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20588": { + "npcId": 20588, + "attr": {}, + "npclist": "4014_321_90072#5004_321_90071#3004_321_90076#3009_321_90079#3014_321_90079#4004_321_90079", + "npcLv": [ + 801, + 801, + 801, + 801, + 801, + 801 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20589": { + "npcId": 20589, + "attr": {}, + "npclist": "4015_321_90072#5005_321_90071#3005_321_90076#3010_321_90079#3015_321_90079#4005_321_90079", + "npcLv": [ + 801, + 801, + 801, + 801, + 801, + 801 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20590": { + "npcId": 20590, + "attr": {}, + "npclist": "5001_332_90072#3001_332_90071#3006_332_90076#3011_332_90079#4001_332_90079#4006_332_90079", + "npcLv": [ + 801, + 801, + 801, + 801, + 801, + 801 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20591": { + "npcId": 20591, + "attr": {}, + "npclist": "5002_322_90072#3002_322_90071#3007_322_90076#3012_322_90079#4002_322_90079#4007_322_90079", + "npcLv": [ + 807, + 807, + 807, + 807, + 807, + 807 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20592": { + "npcId": 20592, + "attr": {}, + "npclist": "5003_323_90072#3003_323_90071#3008_323_90076#3013_323_90079#4003_323_90079#4008_323_90079", + "npcLv": [ + 807, + 807, + 807, + 807, + 807, + 807 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20593": { + "npcId": 20593, + "attr": {}, + "npclist": "5004_323_90072#3004_323_90071#3009_323_90076#3014_323_90079#4004_323_90079#4009_323_90079", + "npcLv": [ + 807, + 807, + 807, + 807, + 807, + 807 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20594": { + "npcId": 20594, + "attr": {}, + "npclist": "5005_325_90072#3005_325_90071#3010_325_90076#3015_325_90079#4005_325_90079#4010_325_90079", + "npcLv": [ + 812, + 812, + 812, + 812, + 812, + 812 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20595": { + "npcId": 20595, + "attr": {}, + "npclist": "3001_325_90072#3006_325_90071#3011_325_90076#4001_325_90079#4006_325_90079#4011_325_90079", + "npcLv": [ + 812, + 812, + 812, + 812, + 812, + 812 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20596": { + "npcId": 20596, + "attr": {}, + "npclist": "3002_326_90072#3007_326_90071#3012_326_90076#4002_326_90079#4007_326_90079#4012_326_90079", + "npcLv": [ + 812, + 812, + 812, + 812, + 812, + 812 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20597": { + "npcId": 20597, + "attr": {}, + "npclist": "3003_326_90072#3008_326_90071#3013_326_90076#4003_326_90079#4008_326_90079#4013_326_90079", + "npcLv": [ + 818, + 818, + 818, + 818, + 818, + 818 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20598": { + "npcId": 20598, + "attr": {}, + "npclist": "3004_327_90072#3009_327_90071#3014_327_90076#4004_327_90079#4009_327_90079#4014_327_90079", + "npcLv": [ + 818, + 818, + 818, + 818, + 818, + 818 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20599": { + "npcId": 20599, + "attr": {}, + "npclist": "3005_327_90072#3010_327_90071#3015_327_90076#4005_327_90079#4010_327_90079#4015_327_90079", + "npcLv": [ + 818, + 818, + 818, + 818, + 818, + 818 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20600": { + "npcId": 20600, + "attr": {}, + "npclist": "3006_339_90072#3011_339_90071#4001_339_90076#4006_339_90079#4011_339_90079#5001_339_90079", + "npcLv": [ + 823, + 823, + 823, + 823, + 823, + 823 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20601": { + "npcId": 20601, + "attr": {}, + "npclist": "3007_328_90072#3012_328_90071#4002_328_90076#4007_328_90079#4012_328_90079#5002_328_90079", + "npcLv": [ + 823, + 823, + 823, + 823, + 823, + 823 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20602": { + "npcId": 20602, + "attr": {}, + "npclist": "3008_330_90072#3013_330_90071#4003_330_90076#4008_330_90079#4013_330_90079#5003_330_90079", + "npcLv": [ + 823, + 823, + 823, + 823, + 823, + 823 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20603": { + "npcId": 20603, + "attr": {}, + "npclist": "3009_330_90072#3014_330_90071#4004_330_90076#4009_330_90079#4014_330_90079#5004_330_90079", + "npcLv": [ + 829, + 829, + 829, + 829, + 829, + 829 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20604": { + "npcId": 20604, + "attr": {}, + "npclist": "3010_331_90072#3015_331_90071#4005_331_90076#4010_331_90079#4015_331_90079#5005_331_90079", + "npcLv": [ + 829, + 829, + 829, + 829, + 829, + 829 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20605": { + "npcId": 20605, + "attr": {}, + "npclist": "3011_331_90072#4001_331_90071#4006_331_90076#4011_331_90079#5001_331_90079#3001_331_90079", + "npcLv": [ + 829, + 829, + 829, + 829, + 829, + 829 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20606": { + "npcId": 20606, + "attr": {}, + "npclist": "3012_332_90072#4002_332_90071#4007_332_90076#4012_332_90079#5002_332_90079#3002_332_90079", + "npcLv": [ + 834, + 834, + 834, + 834, + 834, + 834 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20607": { + "npcId": 20607, + "attr": {}, + "npclist": "3013_332_90072#4003_332_90071#4008_332_90076#4013_332_90079#5003_332_90079#3003_332_90079", + "npcLv": [ + 834, + 834, + 834, + 834, + 834, + 834 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20608": { + "npcId": 20608, + "attr": {}, + "npclist": "3014_333_90072#4004_333_90071#4009_333_90076#4014_333_90079#5004_333_90079#3004_333_90079", + "npcLv": [ + 834, + 834, + 834, + 834, + 834, + 834 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20609": { + "npcId": 20609, + "attr": {}, + "npclist": "3015_333_90072#4005_333_90071#4010_333_90076#4015_333_90079#5005_333_90079#3005_333_90079", + "npcLv": [ + 840, + 840, + 840, + 840, + 840, + 840 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20610": { + "npcId": 20610, + "attr": {}, + "npclist": "4001_345_90072#4006_345_90071#4011_345_90076#5001_345_90079#3001_345_90079#3006_345_90079", + "npcLv": [ + 840, + 840, + 840, + 840, + 840, + 840 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20611": { + "npcId": 20611, + "attr": {}, + "npclist": "4002_335_90072#4007_335_90071#4012_335_90076#5002_335_90079#3002_335_90079#3007_335_90079", + "npcLv": [ + 840, + 840, + 840, + 840, + 840, + 840 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20612": { + "npcId": 20612, + "attr": {}, + "npclist": "4003_336_90072#4008_336_90071#4013_336_90076#5003_336_90079#3003_336_90079#3008_336_90079", + "npcLv": [ + 845, + 845, + 845, + 845, + 845, + 845 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20613": { + "npcId": 20613, + "attr": {}, + "npclist": "4004_336_90072#4009_336_90071#4014_336_90076#5004_336_90079#3004_336_90079#3009_336_90079", + "npcLv": [ + 845, + 845, + 845, + 845, + 845, + 845 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20614": { + "npcId": 20614, + "attr": {}, + "npclist": "4005_337_90072#4010_337_90071#4015_337_90076#5005_337_90079#3005_337_90079#3010_337_90079", + "npcLv": [ + 845, + 845, + 845, + 845, + 845, + 845 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20615": { + "npcId": 20615, + "attr": {}, + "npclist": "4006_337_90072#4011_337_90071#5001_337_90076#3001_337_90079#3006_337_90079#3011_337_90079", + "npcLv": [ + 851, + 851, + 851, + 851, + 851, + 851 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20616": { + "npcId": 20616, + "attr": {}, + "npclist": "4007_338_90072#4012_338_90071#5002_338_90076#3002_338_90079#3007_338_90079#3012_338_90079", + "npcLv": [ + 851, + 851, + 851, + 851, + 851, + 851 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20617": { + "npcId": 20617, + "attr": {}, + "npclist": "4008_338_90072#4013_338_90071#5003_338_90076#3003_338_90079#3008_338_90079#3013_338_90079", + "npcLv": [ + 851, + 851, + 851, + 851, + 851, + 851 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20618": { + "npcId": 20618, + "attr": {}, + "npclist": "4009_340_90072#4014_340_90071#5004_340_90076#3004_340_90079#3009_340_90079#3014_340_90079", + "npcLv": [ + 856, + 856, + 856, + 856, + 856, + 856 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20619": { + "npcId": 20619, + "attr": {}, + "npclist": "4010_340_90072#4015_340_90071#5005_340_90076#3005_340_90079#3010_340_90079#3015_340_90079", + "npcLv": [ + 856, + 856, + 856, + 856, + 856, + 856 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20620": { + "npcId": 20620, + "attr": {}, + "npclist": "4011_352_90072#5001_352_90071#3001_352_90076#3006_352_90079#3011_352_90079#4001_352_90079", + "npcLv": [ + 856, + 856, + 856, + 856, + 856, + 856 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20621": { + "npcId": 20621, + "attr": {}, + "npclist": "4012_341_90072#5002_341_90071#3002_341_90076#3007_341_90079#3012_341_90079#4002_341_90079", + "npcLv": [ + 862, + 862, + 862, + 862, + 862, + 862 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20622": { + "npcId": 20622, + "attr": {}, + "npclist": "4013_342_90072#5003_342_90071#3003_342_90076#3008_342_90079#3013_342_90079#4003_342_90079", + "npcLv": [ + 862, + 862, + 862, + 862, + 862, + 862 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20623": { + "npcId": 20623, + "attr": {}, + "npclist": "4014_342_90072#5004_342_90071#3004_342_90076#3009_342_90079#3014_342_90079#4004_342_90079", + "npcLv": [ + 862, + 862, + 862, + 862, + 862, + 862 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20624": { + "npcId": 20624, + "attr": {}, + "npclist": "4015_343_90072#5005_343_90071#3005_343_90076#3010_343_90079#3015_343_90079#4005_343_90079", + "npcLv": [ + 867, + 867, + 867, + 867, + 867, + 867 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20625": { + "npcId": 20625, + "attr": {}, + "npclist": "5001_343_90072#3001_343_90071#3006_343_90076#3011_343_90079#4001_343_90079#4006_343_90079", + "npcLv": [ + 867, + 867, + 867, + 867, + 867, + 867 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20626": { + "npcId": 20626, + "attr": {}, + "npclist": "5002_345_90072#3002_345_90071#3007_345_90076#3012_345_90079#4002_345_90079#4007_345_90079", + "npcLv": [ + 867, + 867, + 867, + 867, + 867, + 867 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20627": { + "npcId": 20627, + "attr": {}, + "npclist": "5003_345_90072#3003_345_90071#3008_345_90076#3013_345_90079#4003_345_90079#4008_345_90079", + "npcLv": [ + 873, + 873, + 873, + 873, + 873, + 873 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20628": { + "npcId": 20628, + "attr": {}, + "npclist": "5004_346_90072#3004_346_90071#3009_346_90076#3014_346_90079#4004_346_90079#4009_346_90079", + "npcLv": [ + 873, + 873, + 873, + 873, + 873, + 873 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20629": { + "npcId": 20629, + "attr": {}, + "npclist": "5005_346_90072#3005_346_90071#3010_346_90076#3015_346_90079#4005_346_90079#4010_346_90079", + "npcLv": [ + 873, + 873, + 873, + 873, + 873, + 873 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20630": { + "npcId": 20630, + "attr": {}, + "npclist": "3001_358_90072#3006_358_90071#3011_358_90076#4001_358_90079#4006_358_90079#4011_358_90079", + "npcLv": [ + 879, + 879, + 879, + 879, + 879, + 879 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20631": { + "npcId": 20631, + "attr": {}, + "npclist": "3002_347_90072#3007_347_90071#3012_347_90076#4002_347_90079#4007_347_90079#4012_347_90079", + "npcLv": [ + 879, + 879, + 879, + 879, + 879, + 879 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20632": { + "npcId": 20632, + "attr": {}, + "npclist": "3003_348_90072#3008_348_90071#3013_348_90076#4003_348_90079#4008_348_90079#4013_348_90079", + "npcLv": [ + 879, + 879, + 879, + 879, + 879, + 879 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20633": { + "npcId": 20633, + "attr": {}, + "npclist": "3004_348_90072#3009_348_90071#3014_348_90076#4004_348_90079#4009_348_90079#4014_348_90079", + "npcLv": [ + 884, + 884, + 884, + 884, + 884, + 884 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20634": { + "npcId": 20634, + "attr": {}, + "npclist": "3005_350_90072#3010_350_90071#3015_350_90076#4005_350_90079#4010_350_90079#4015_350_90079", + "npcLv": [ + 884, + 884, + 884, + 884, + 884, + 884 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20635": { + "npcId": 20635, + "attr": {}, + "npclist": "3006_350_90072#3011_350_90071#4001_350_90076#4006_350_90079#4011_350_90079#5001_350_90079", + "npcLv": [ + 884, + 884, + 884, + 884, + 884, + 884 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20636": { + "npcId": 20636, + "attr": {}, + "npclist": "3007_351_90072#3012_351_90071#4002_351_90076#4007_351_90079#4012_351_90079#5002_351_90079", + "npcLv": [ + 890, + 890, + 890, + 890, + 890, + 890 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20637": { + "npcId": 20637, + "attr": {}, + "npclist": "3008_351_90072#3013_351_90071#4003_351_90076#4008_351_90079#4013_351_90079#5003_351_90079", + "npcLv": [ + 890, + 890, + 890, + 890, + 890, + 890 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20638": { + "npcId": 20638, + "attr": {}, + "npclist": "3009_352_90072#3014_352_90071#4004_352_90076#4009_352_90079#4014_352_90079#5004_352_90079", + "npcLv": [ + 890, + 890, + 890, + 890, + 890, + 890 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20639": { + "npcId": 20639, + "attr": {}, + "npclist": "3010_352_90072#3015_352_90071#4005_352_90076#4010_352_90079#4015_352_90079#5005_352_90079", + "npcLv": [ + 895, + 895, + 895, + 895, + 895, + 895 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20640": { + "npcId": 20640, + "attr": {}, + "npclist": "3011_365_90072#4001_365_90071#4006_365_90076#4011_365_90079#5001_365_90079#3001_365_90079", + "npcLv": [ + 895, + 895, + 895, + 895, + 895, + 895 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20641": { + "npcId": 20641, + "attr": {}, + "npclist": "3012_353_90072#4002_353_90071#4007_353_90076#4012_353_90079#5002_353_90079#3002_353_90079", + "npcLv": [ + 895, + 895, + 895, + 895, + 895, + 895 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20642": { + "npcId": 20642, + "attr": {}, + "npclist": "3013_355_90072#4003_355_90071#4008_355_90076#4013_355_90079#5003_355_90079#3003_355_90079", + "npcLv": [ + 901, + 901, + 901, + 901, + 901, + 901 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20643": { + "npcId": 20643, + "attr": {}, + "npclist": "3014_355_90072#4004_355_90071#4009_355_90076#4014_355_90079#5004_355_90079#3004_355_90079", + "npcLv": [ + 901, + 901, + 901, + 901, + 901, + 901 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20644": { + "npcId": 20644, + "attr": {}, + "npclist": "3015_356_90072#4005_356_90071#4010_356_90076#4015_356_90079#5005_356_90079#3005_356_90079", + "npcLv": [ + 901, + 901, + 901, + 901, + 901, + 901 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20645": { + "npcId": 20645, + "attr": {}, + "npclist": "4001_356_90072#4006_356_90071#4011_356_90076#5001_356_90079#3001_356_90079#3006_356_90079", + "npcLv": [ + 906, + 906, + 906, + 906, + 906, + 906 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20646": { + "npcId": 20646, + "attr": {}, + "npclist": "4002_357_90072#4007_357_90071#4012_357_90076#5002_357_90079#3002_357_90079#3007_357_90079", + "npcLv": [ + 906, + 906, + 906, + 906, + 906, + 906 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20647": { + "npcId": 20647, + "attr": {}, + "npclist": "4003_357_90072#4008_357_90071#4013_357_90076#5003_357_90079#3003_357_90079#3008_357_90079", + "npcLv": [ + 906, + 906, + 906, + 906, + 906, + 906 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20648": { + "npcId": 20648, + "attr": {}, + "npclist": "4004_358_90072#4009_358_90071#4014_358_90076#5004_358_90079#3004_358_90079#3009_358_90079", + "npcLv": [ + 912, + 912, + 912, + 912, + 912, + 912 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20649": { + "npcId": 20649, + "attr": {}, + "npclist": "4005_358_90072#4010_358_90071#4015_358_90076#5005_358_90079#3005_358_90079#3010_358_90079", + "npcLv": [ + 912, + 912, + 912, + 912, + 912, + 912 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20650": { + "npcId": 20650, + "attr": {}, + "npclist": "4006_371_90072#4011_371_90071#5001_371_90076#3001_371_90079#3006_371_90079#3011_371_90079", + "npcLv": [ + 912, + 912, + 912, + 912, + 912, + 912 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20651": { + "npcId": 20651, + "attr": {}, + "npclist": "4007_360_90072#4012_360_90071#5002_360_90076#3002_360_90079#3007_360_90079#3012_360_90079", + "npcLv": [ + 918, + 918, + 918, + 918, + 918, + 918 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20652": { + "npcId": 20652, + "attr": {}, + "npclist": "4008_361_90072#4013_361_90071#5003_361_90076#3003_361_90079#3008_361_90079#3013_361_90079", + "npcLv": [ + 918, + 918, + 918, + 918, + 918, + 918 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20653": { + "npcId": 20653, + "attr": {}, + "npclist": "4009_361_90072#4014_361_90071#5004_361_90076#3004_361_90079#3009_361_90079#3014_361_90079", + "npcLv": [ + 918, + 918, + 918, + 918, + 918, + 918 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20654": { + "npcId": 20654, + "attr": {}, + "npclist": "4010_362_90072#4015_362_90071#5005_362_90076#3005_362_90079#3010_362_90079#3015_362_90079", + "npcLv": [ + 923, + 923, + 923, + 923, + 923, + 923 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20655": { + "npcId": 20655, + "attr": {}, + "npclist": "4011_362_90072#5001_362_90071#3001_362_90076#3006_362_90079#3011_362_90079#4001_362_90079", + "npcLv": [ + 923, + 923, + 923, + 923, + 923, + 923 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20656": { + "npcId": 20656, + "attr": {}, + "npclist": "4012_363_90072#5002_363_90071#3002_363_90076#3007_363_90079#3012_363_90079#4002_363_90079", + "npcLv": [ + 923, + 923, + 923, + 923, + 923, + 923 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20657": { + "npcId": 20657, + "attr": {}, + "npclist": "4013_363_90072#5003_363_90071#3003_363_90076#3008_363_90079#3013_363_90079#4003_363_90079", + "npcLv": [ + 929, + 929, + 929, + 929, + 929, + 929 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20658": { + "npcId": 20658, + "attr": {}, + "npclist": "4014_365_90072#5004_365_90071#3004_365_90076#3009_365_90079#3014_365_90079#4004_365_90079", + "npcLv": [ + 929, + 929, + 929, + 929, + 929, + 929 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20659": { + "npcId": 20659, + "attr": {}, + "npclist": "4015_365_90072#5005_365_90071#3005_365_90076#3010_365_90079#3015_365_90079#4005_365_90079", + "npcLv": [ + 929, + 929, + 929, + 929, + 929, + 929 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20660": { + "npcId": 20660, + "attr": {}, + "npclist": "5001_377_90072#3001_377_90071#3006_377_90076#3011_377_90079#4001_377_90079#4006_377_90079", + "npcLv": [ + 934, + 934, + 934, + 934, + 934, + 934 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20661": { + "npcId": 20661, + "attr": {}, + "npclist": "5002_366_90072#3002_366_90071#3007_366_90076#3012_366_90079#4002_366_90079#4007_366_90079", + "npcLv": [ + 934, + 934, + 934, + 934, + 934, + 934 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20662": { + "npcId": 20662, + "attr": {}, + "npclist": "5003_367_90072#3003_367_90071#3008_367_90076#3013_367_90079#4003_367_90079#4008_367_90079", + "npcLv": [ + 934, + 934, + 934, + 934, + 934, + 934 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20663": { + "npcId": 20663, + "attr": {}, + "npclist": "5004_367_90072#3004_367_90071#3009_367_90076#3014_367_90079#4004_367_90079#4009_367_90079", + "npcLv": [ + 940, + 940, + 940, + 940, + 940, + 940 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20664": { + "npcId": 20664, + "attr": {}, + "npclist": "5005_368_90072#3005_368_90071#3010_368_90076#3015_368_90079#4005_368_90079#4010_368_90079", + "npcLv": [ + 940, + 940, + 940, + 940, + 940, + 940 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20665": { + "npcId": 20665, + "attr": {}, + "npclist": "3001_368_90072#3006_368_90071#3011_368_90076#4001_368_90079#4006_368_90079#4011_368_90079", + "npcLv": [ + 940, + 940, + 940, + 940, + 940, + 940 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20666": { + "npcId": 20666, + "attr": {}, + "npclist": "3002_370_90072#3007_370_90071#3012_370_90076#4002_370_90079#4007_370_90079#4012_370_90079", + "npcLv": [ + 946, + 946, + 946, + 946, + 946, + 946 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20667": { + "npcId": 20667, + "attr": {}, + "npclist": "3003_370_90072#3008_370_90071#3013_370_90076#4003_370_90079#4008_370_90079#4013_370_90079", + "npcLv": [ + 946, + 946, + 946, + 946, + 946, + 946 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20668": { + "npcId": 20668, + "attr": {}, + "npclist": "3004_371_90072#3009_371_90071#3014_371_90076#4004_371_90079#4009_371_90079#4014_371_90079", + "npcLv": [ + 946, + 946, + 946, + 946, + 946, + 946 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20669": { + "npcId": 20669, + "attr": {}, + "npclist": "3005_371_90072#3010_371_90071#3015_371_90076#4005_371_90079#4010_371_90079#4015_371_90079", + "npcLv": [ + 951, + 951, + 951, + 951, + 951, + 951 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20670": { + "npcId": 20670, + "attr": {}, + "npclist": "3006_384_90072#3011_384_90071#4001_384_90076#4006_384_90079#4011_384_90079#5001_384_90079", + "npcLv": [ + 951, + 951, + 951, + 951, + 951, + 951 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20671": { + "npcId": 20671, + "attr": {}, + "npclist": "3007_372_90072#3012_372_90071#4002_372_90076#4007_372_90079#4012_372_90079#5002_372_90079", + "npcLv": [ + 951, + 951, + 951, + 951, + 951, + 951 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20672": { + "npcId": 20672, + "attr": {}, + "npclist": "3008_373_90072#3013_373_90071#4003_373_90076#4008_373_90079#4013_373_90079#5003_373_90079", + "npcLv": [ + 957, + 957, + 957, + 957, + 957, + 957 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20673": { + "npcId": 20673, + "attr": {}, + "npclist": "3009_373_90072#3014_373_90071#4004_373_90076#4009_373_90079#4014_373_90079#5004_373_90079", + "npcLv": [ + 957, + 957, + 957, + 957, + 957, + 957 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20674": { + "npcId": 20674, + "attr": {}, + "npclist": "3010_375_90072#3015_375_90071#4005_375_90076#4010_375_90079#4015_375_90079#5005_375_90079", + "npcLv": [ + 957, + 957, + 957, + 957, + 957, + 957 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20675": { + "npcId": 20675, + "attr": {}, + "npclist": "3011_375_90072#4001_375_90071#4006_375_90076#4011_375_90079#5001_375_90079#3001_375_90079", + "npcLv": [ + 963, + 963, + 963, + 963, + 963, + 963 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20676": { + "npcId": 20676, + "attr": {}, + "npclist": "3012_376_90072#4002_376_90071#4007_376_90076#4012_376_90079#5002_376_90079#3002_376_90079", + "npcLv": [ + 963, + 963, + 963, + 963, + 963, + 963 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20677": { + "npcId": 20677, + "attr": {}, + "npclist": "3013_376_90072#4003_376_90071#4008_376_90076#4013_376_90079#5003_376_90079#3003_376_90079", + "npcLv": [ + 963, + 963, + 963, + 963, + 963, + 963 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20678": { + "npcId": 20678, + "attr": {}, + "npclist": "3014_377_90072#4004_377_90071#4009_377_90076#4014_377_90079#5004_377_90079#3004_377_90079", + "npcLv": [ + 968, + 968, + 968, + 968, + 968, + 968 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20679": { + "npcId": 20679, + "attr": {}, + "npclist": "3015_377_90072#4005_377_90071#4010_377_90076#4015_377_90079#5005_377_90079#3005_377_90079", + "npcLv": [ + 968, + 968, + 968, + 968, + 968, + 968 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20680": { + "npcId": 20680, + "attr": {}, + "npclist": "4001_390_90072#4006_390_90071#4011_390_90076#5001_390_90079#3001_390_90079#3006_390_90079", + "npcLv": [ + 968, + 968, + 968, + 968, + 968, + 968 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20681": { + "npcId": 20681, + "attr": {}, + "npclist": "4002_378_90072#4007_378_90071#4012_378_90076#5002_378_90079#3002_378_90079#3007_378_90079", + "npcLv": [ + 974, + 974, + 974, + 974, + 974, + 974 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20682": { + "npcId": 20682, + "attr": {}, + "npclist": "4003_380_90072#4008_380_90071#4013_380_90076#5003_380_90079#3003_380_90079#3008_380_90079", + "npcLv": [ + 974, + 974, + 974, + 974, + 974, + 974 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20683": { + "npcId": 20683, + "attr": {}, + "npclist": "4004_380_90072#4009_380_90071#4014_380_90076#5004_380_90079#3004_380_90079#3009_380_90079", + "npcLv": [ + 974, + 974, + 974, + 974, + 974, + 974 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20684": { + "npcId": 20684, + "attr": {}, + "npclist": "4005_381_90072#4010_381_90071#4015_381_90076#5005_381_90079#3005_381_90079#3010_381_90079", + "npcLv": [ + 979, + 979, + 979, + 979, + 979, + 979 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20685": { + "npcId": 20685, + "attr": {}, + "npclist": "4006_381_90072#4011_381_90071#5001_381_90076#3001_381_90079#3006_381_90079#3011_381_90079", + "npcLv": [ + 979, + 979, + 979, + 979, + 979, + 979 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20686": { + "npcId": 20686, + "attr": {}, + "npclist": "4007_382_90072#4012_382_90071#5002_382_90076#3002_382_90079#3007_382_90079#3012_382_90079", + "npcLv": [ + 979, + 979, + 979, + 979, + 979, + 979 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20687": { + "npcId": 20687, + "attr": {}, + "npclist": "4008_382_90072#4013_382_90071#5003_382_90076#3003_382_90079#3008_382_90079#3013_382_90079", + "npcLv": [ + 985, + 985, + 985, + 985, + 985, + 985 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20688": { + "npcId": 20688, + "attr": {}, + "npclist": "4009_383_90072#4014_383_90071#5004_383_90076#3004_383_90079#3009_383_90079#3014_383_90079", + "npcLv": [ + 985, + 985, + 985, + 985, + 985, + 985 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20689": { + "npcId": 20689, + "attr": {}, + "npclist": "4010_383_90072#4015_383_90071#5005_383_90076#3005_383_90079#3010_383_90079#3015_383_90079", + "npcLv": [ + 985, + 985, + 985, + 985, + 985, + 985 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20690": { + "npcId": 20690, + "attr": {}, + "npclist": "4011_397_90072#5001_397_90071#3001_397_90076#3006_397_90079#3011_397_90079#4001_397_90079", + "npcLv": [ + 991, + 991, + 991, + 991, + 991, + 991 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20691": { + "npcId": 20691, + "attr": {}, + "npclist": "4012_385_90072#5002_385_90071#3002_385_90076#3007_385_90079#3012_385_90079#4002_385_90079", + "npcLv": [ + 991, + 991, + 991, + 991, + 991, + 991 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20692": { + "npcId": 20692, + "attr": {}, + "npclist": "4013_386_90072#5003_386_90071#3003_386_90076#3008_386_90079#3013_386_90079#4003_386_90079", + "npcLv": [ + 991, + 991, + 991, + 991, + 991, + 991 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20693": { + "npcId": 20693, + "attr": {}, + "npclist": "4014_386_90072#5004_386_90071#3004_386_90076#3009_386_90079#3014_386_90079#4004_386_90079", + "npcLv": [ + 996, + 996, + 996, + 996, + 996, + 996 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20694": { + "npcId": 20694, + "attr": {}, + "npclist": "4015_387_90072#5005_387_90071#3005_387_90076#3010_387_90079#3015_387_90079#4005_387_90079", + "npcLv": [ + 996, + 996, + 996, + 996, + 996, + 996 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20695": { + "npcId": 20695, + "attr": {}, + "npclist": "5001_387_90072#3001_387_90071#3006_387_90076#3011_387_90079#4001_387_90079#4006_387_90079", + "npcLv": [ + 996, + 996, + 996, + 996, + 996, + 996 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20696": { + "npcId": 20696, + "attr": {}, + "npclist": "5002_388_90072#3002_388_90071#3007_388_90076#3012_388_90079#4002_388_90079#4007_388_90079", + "npcLv": [ + 1002, + 1002, + 1002, + 1002, + 1002, + 1002 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20697": { + "npcId": 20697, + "attr": {}, + "npclist": "5003_388_90072#3003_388_90071#3008_388_90076#3013_388_90079#4003_388_90079#4008_388_90079", + "npcLv": [ + 1002, + 1002, + 1002, + 1002, + 1002, + 1002 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20698": { + "npcId": 20698, + "attr": {}, + "npclist": "5004_390_90072#3004_390_90071#3009_390_90076#3014_390_90079#4004_390_90079#4009_390_90079", + "npcLv": [ + 1002, + 1002, + 1002, + 1002, + 1002, + 1002 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20699": { + "npcId": 20699, + "attr": {}, + "npclist": "5005_390_90072#3005_390_90071#3010_390_90076#3015_390_90079#4005_390_90079#4010_390_90079", + "npcLv": [ + 1008, + 1008, + 1008, + 1008, + 1008, + 1008 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20700": { + "npcId": 20700, + "attr": {}, + "npclist": "3001_400_90072#3006_400_90071#3011_400_90076#4001_400_90079#4006_400_90079#4011_400_90079", + "npcLv": [ + 1008, + 1008, + 1008, + 1008, + 1008, + 1008 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20701": { + "npcId": 20701, + "attr": {}, + "npclist": "3002_391_90072#3007_391_90071#3012_391_90076#4002_391_90079#4007_391_90079#4012_391_90079", + "npcLv": [ + 1008, + 1008, + 1008, + 1008, + 1008, + 1008 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20702": { + "npcId": 20702, + "attr": {}, + "npclist": "3003_392_90072#3008_392_90071#3013_392_90076#4003_392_90079#4008_392_90079#4013_392_90079", + "npcLv": [ + 1013, + 1013, + 1013, + 1013, + 1013, + 1013 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20703": { + "npcId": 20703, + "attr": {}, + "npclist": "3004_392_90072#3009_392_90071#3014_392_90076#4004_392_90079#4009_392_90079#4014_392_90079", + "npcLv": [ + 1013, + 1013, + 1013, + 1013, + 1013, + 1013 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20704": { + "npcId": 20704, + "attr": {}, + "npclist": "3005_393_90072#3010_393_90071#3015_393_90076#4005_393_90079#4010_393_90079#4015_393_90079", + "npcLv": [ + 1013, + 1013, + 1013, + 1013, + 1013, + 1013 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20705": { + "npcId": 20705, + "attr": {}, + "npclist": "3006_393_90072#3011_393_90071#4001_393_90076#4006_393_90079#4011_393_90079#5001_393_90079", + "npcLv": [ + 1019, + 1019, + 1019, + 1019, + 1019, + 1019 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20706": { + "npcId": 20706, + "attr": {}, + "npclist": "3007_395_90072#3012_395_90071#4002_395_90076#4007_395_90079#4012_395_90079#5002_395_90079", + "npcLv": [ + 1019, + 1019, + 1019, + 1019, + 1019, + 1019 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20707": { + "npcId": 20707, + "attr": {}, + "npclist": "3008_395_90072#3013_395_90071#4003_395_90076#4008_395_90079#4013_395_90079#5003_395_90079", + "npcLv": [ + 1019, + 1019, + 1019, + 1019, + 1019, + 1019 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20708": { + "npcId": 20708, + "attr": {}, + "npclist": "3009_396_90072#3014_396_90071#4004_396_90076#4009_396_90079#4014_396_90079#5004_396_90079", + "npcLv": [ + 1025, + 1025, + 1025, + 1025, + 1025, + 1025 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20709": { + "npcId": 20709, + "attr": {}, + "npclist": "3010_396_90072#3015_396_90071#4005_396_90076#4010_396_90079#4015_396_90079#5005_396_90079", + "npcLv": [ + 1025, + 1025, + 1025, + 1025, + 1025, + 1025 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20710": { + "npcId": 20710, + "attr": {}, + "npclist": "3011_407_90072#4001_407_90071#4006_407_90076#4011_407_90079#5001_407_90079#3001_407_90079", + "npcLv": [ + 1025, + 1025, + 1025, + 1025, + 1025, + 1025 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20711": { + "npcId": 20711, + "attr": {}, + "npclist": "3012_400_90072#4002_400_90071#4007_400_90076#4012_400_90079#5002_400_90079#3002_400_90079", + "npcLv": [ + 1030, + 1030, + 1030, + 1030, + 1030, + 1030 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20712": { + "npcId": 20712, + "attr": {}, + "npclist": "3013_401_90072#4003_401_90071#4008_401_90076#4013_401_90079#5003_401_90079#3003_401_90079", + "npcLv": [ + 1030, + 1030, + 1030, + 1030, + 1030, + 1030 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20713": { + "npcId": 20713, + "attr": {}, + "npclist": "3014_401_90072#4004_401_90071#4009_401_90076#4014_401_90079#5004_401_90079#3004_401_90079", + "npcLv": [ + 1030, + 1030, + 1030, + 1030, + 1030, + 1030 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20714": { + "npcId": 20714, + "attr": {}, + "npclist": "3015_403_90072#4005_403_90071#4010_403_90076#4015_403_90079#5005_403_90079#3005_403_90079", + "npcLv": [ + 1036, + 1036, + 1036, + 1036, + 1036, + 1036 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20715": { + "npcId": 20715, + "attr": {}, + "npclist": "4001_403_90072#4006_403_90071#4011_403_90076#5001_403_90079#3001_403_90079#3006_403_90079", + "npcLv": [ + 1036, + 1036, + 1036, + 1036, + 1036, + 1036 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20716": { + "npcId": 20716, + "attr": {}, + "npclist": "4002_404_90072#4007_404_90071#4012_404_90076#5002_404_90079#3002_404_90079#3007_404_90079", + "npcLv": [ + 1036, + 1036, + 1036, + 1036, + 1036, + 1036 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20717": { + "npcId": 20717, + "attr": {}, + "npclist": "4003_404_90072#4008_404_90071#4013_404_90076#5003_404_90079#3003_404_90079#3008_404_90079", + "npcLv": [ + 1042, + 1042, + 1042, + 1042, + 1042, + 1042 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20718": { + "npcId": 20718, + "attr": {}, + "npclist": "4004_405_90072#4009_405_90071#4014_405_90076#5004_405_90079#3004_405_90079#3009_405_90079", + "npcLv": [ + 1042, + 1042, + 1042, + 1042, + 1042, + 1042 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20719": { + "npcId": 20719, + "attr": {}, + "npclist": "4005_405_90072#4010_405_90071#4015_405_90076#5005_405_90079#3005_405_90079#3010_405_90079", + "npcLv": [ + 1042, + 1042, + 1042, + 1042, + 1042, + 1042 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20720": { + "npcId": 20720, + "attr": {}, + "npclist": "4006_413_90072#4011_413_90071#5001_413_90076#3001_413_90079#3006_413_90079#3011_413_90079", + "npcLv": [ + 1047, + 1047, + 1047, + 1047, + 1047, + 1047 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20721": { + "npcId": 20721, + "attr": {}, + "npclist": "4007_406_90072#4012_406_90071#5002_406_90076#3002_406_90079#3007_406_90079#3012_406_90079", + "npcLv": [ + 1047, + 1047, + 1047, + 1047, + 1047, + 1047 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20722": { + "npcId": 20722, + "attr": {}, + "npclist": "4008_408_90072#4013_408_90071#5003_408_90076#3003_408_90079#3008_408_90079#3013_408_90079", + "npcLv": [ + 1047, + 1047, + 1047, + 1047, + 1047, + 1047 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20723": { + "npcId": 20723, + "attr": {}, + "npclist": "4009_408_90072#4014_408_90071#5004_408_90076#3004_408_90079#3009_408_90079#3014_408_90079", + "npcLv": [ + 1053, + 1053, + 1053, + 1053, + 1053, + 1053 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20724": { + "npcId": 20724, + "attr": {}, + "npclist": "4010_409_90072#4015_409_90071#5005_409_90076#3005_409_90079#3010_409_90079#3015_409_90079", + "npcLv": [ + 1053, + 1053, + 1053, + 1053, + 1053, + 1053 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20725": { + "npcId": 20725, + "attr": {}, + "npclist": "4011_409_90072#5001_409_90071#3001_409_90076#3006_409_90079#3011_409_90079#4001_409_90079", + "npcLv": [ + 1053, + 1053, + 1053, + 1053, + 1053, + 1053 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20726": { + "npcId": 20726, + "attr": {}, + "npclist": "4012_410_90072#5002_410_90071#3002_410_90076#3007_410_90079#3012_410_90079#4002_410_90079", + "npcLv": [ + 1059, + 1059, + 1059, + 1059, + 1059, + 1059 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20727": { + "npcId": 20727, + "attr": {}, + "npclist": "4013_410_90072#5003_410_90071#3003_410_90076#3008_410_90079#3013_410_90079#4003_410_90079", + "npcLv": [ + 1059, + 1059, + 1059, + 1059, + 1059, + 1059 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20728": { + "npcId": 20728, + "attr": {}, + "npclist": "4014_412_90072#5004_412_90071#3004_412_90076#3009_412_90079#3014_412_90079#4004_412_90079", + "npcLv": [ + 1059, + 1059, + 1059, + 1059, + 1059, + 1059 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20729": { + "npcId": 20729, + "attr": {}, + "npclist": "4015_412_90072#5005_412_90071#3005_412_90076#3010_412_90079#3015_412_90079#4005_412_90079", + "npcLv": [ + 1065, + 1065, + 1065, + 1065, + 1065, + 1065 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20730": { + "npcId": 20730, + "attr": {}, + "npclist": "5001_419_90072#3001_419_90071#3006_419_90076#3011_419_90079#4001_419_90079#4006_419_90079", + "npcLv": [ + 1065, + 1065, + 1065, + 1065, + 1065, + 1065 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20731": { + "npcId": 20731, + "attr": {}, + "npclist": "5002_410_90072#3002_410_90071#3007_410_90076#3012_410_90079#4002_410_90079#4007_410_90079", + "npcLv": [ + 1065, + 1065, + 1065, + 1065, + 1065, + 1065 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20732": { + "npcId": 20732, + "attr": {}, + "npclist": "5003_411_90072#3003_411_90071#3008_411_90076#3013_411_90079#4003_411_90079#4008_411_90079", + "npcLv": [ + 1070, + 1070, + 1070, + 1070, + 1070, + 1070 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20733": { + "npcId": 20733, + "attr": {}, + "npclist": "5004_411_90072#3004_411_90071#3009_411_90076#3014_411_90079#4004_411_90079#4009_411_90079", + "npcLv": [ + 1070, + 1070, + 1070, + 1070, + 1070, + 1070 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20734": { + "npcId": 20734, + "attr": {}, + "npclist": "5005_412_90072#3005_412_90071#3010_412_90076#3015_412_90079#4005_412_90079#4010_412_90079", + "npcLv": [ + 1070, + 1070, + 1070, + 1070, + 1070, + 1070 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20735": { + "npcId": 20735, + "attr": {}, + "npclist": "3001_412_90072#3006_412_90071#3011_412_90076#4001_412_90079#4006_412_90079#4011_412_90079", + "npcLv": [ + 1076, + 1076, + 1076, + 1076, + 1076, + 1076 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20736": { + "npcId": 20736, + "attr": {}, + "npclist": "3002_413_90072#3007_413_90071#3012_413_90076#4002_413_90079#4007_413_90079#4012_413_90079", + "npcLv": [ + 1076, + 1076, + 1076, + 1076, + 1076, + 1076 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20737": { + "npcId": 20737, + "attr": {}, + "npclist": "3003_413_90072#3008_413_90071#3013_413_90076#4003_413_90079#4008_413_90079#4013_413_90079", + "npcLv": [ + 1076, + 1076, + 1076, + 1076, + 1076, + 1076 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20738": { + "npcId": 20738, + "attr": {}, + "npclist": "3004_415_90072#3009_415_90071#3014_415_90076#4004_415_90079#4009_415_90079#4014_415_90079", + "npcLv": [ + 1082, + 1082, + 1082, + 1082, + 1082, + 1082 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20739": { + "npcId": 20739, + "attr": {}, + "npclist": "3005_415_90072#3010_415_90071#3015_415_90076#4005_415_90079#4010_415_90079#4015_415_90079", + "npcLv": [ + 1082, + 1082, + 1082, + 1082, + 1082, + 1082 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20740": { + "npcId": 20740, + "attr": {}, + "npclist": "3006_422_90072#3011_422_90071#4001_422_90076#4006_422_90079#4011_422_90079#5001_422_90079", + "npcLv": [ + 1082, + 1082, + 1082, + 1082, + 1082, + 1082 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20741": { + "npcId": 20741, + "attr": {}, + "npclist": "3007_412_90072#3012_412_90071#4002_412_90076#4007_412_90079#4012_412_90079#5002_412_90079", + "npcLv": [ + 1087, + 1087, + 1087, + 1087, + 1087, + 1087 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20742": { + "npcId": 20742, + "attr": {}, + "npclist": "3008_414_90072#3013_414_90071#4003_414_90076#4008_414_90079#4013_414_90079#5003_414_90079", + "npcLv": [ + 1087, + 1087, + 1087, + 1087, + 1087, + 1087 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20743": { + "npcId": 20743, + "attr": {}, + "npclist": "3009_414_90072#3014_414_90071#4004_414_90076#4009_414_90079#4014_414_90079#5004_414_90079", + "npcLv": [ + 1087, + 1087, + 1087, + 1087, + 1087, + 1087 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20744": { + "npcId": 20744, + "attr": {}, + "npclist": "3010_415_90072#3015_415_90071#4005_415_90076#4010_415_90079#4015_415_90079#5005_415_90079", + "npcLv": [ + 1093, + 1093, + 1093, + 1093, + 1093, + 1093 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20745": { + "npcId": 20745, + "attr": {}, + "npclist": "3011_415_90072#4001_415_90071#4006_415_90076#4011_415_90079#5001_415_90079#3001_415_90079", + "npcLv": [ + 1093, + 1093, + 1093, + 1093, + 1093, + 1093 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20746": { + "npcId": 20746, + "attr": {}, + "npclist": "3012_416_90072#4002_416_90071#4007_416_90076#4012_416_90079#5002_416_90079#3002_416_90079", + "npcLv": [ + 1093, + 1093, + 1093, + 1093, + 1093, + 1093 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20747": { + "npcId": 20747, + "attr": {}, + "npclist": "3013_416_90072#4003_416_90071#4008_416_90076#4013_416_90079#5003_416_90079#3003_416_90079", + "npcLv": [ + 1099, + 1099, + 1099, + 1099, + 1099, + 1099 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20748": { + "npcId": 20748, + "attr": {}, + "npclist": "3014_417_90072#4004_417_90071#4009_417_90076#4014_417_90079#5004_417_90079#3004_417_90079", + "npcLv": [ + 1099, + 1099, + 1099, + 1099, + 1099, + 1099 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20749": { + "npcId": 20749, + "attr": {}, + "npclist": "3015_417_90072#4005_417_90071#4010_417_90076#4015_417_90079#5005_417_90079#3005_417_90079", + "npcLv": [ + 1099, + 1099, + 1099, + 1099, + 1099, + 1099 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20750": { + "npcId": 20750, + "attr": {}, + "npclist": "4001_425_90072#4006_425_90071#4011_425_90076#5001_425_90079#3001_425_90079#3006_425_90079", + "npcLv": [ + 1105, + 1105, + 1105, + 1105, + 1105, + 1105 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20751": { + "npcId": 20751, + "attr": {}, + "npclist": "4002_419_90072#4007_419_90071#4012_419_90076#5002_419_90079#3002_419_90079#3007_419_90079", + "npcLv": [ + 1105, + 1105, + 1105, + 1105, + 1105, + 1105 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20752": { + "npcId": 20752, + "attr": {}, + "npclist": "4003_420_90072#4008_420_90071#4013_420_90076#5003_420_90079#3003_420_90079#3008_420_90079", + "npcLv": [ + 1105, + 1105, + 1105, + 1105, + 1105, + 1105 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20753": { + "npcId": 20753, + "attr": {}, + "npclist": "4004_420_90072#4009_420_90071#4014_420_90076#5004_420_90079#3004_420_90079#3009_420_90079", + "npcLv": [ + 1110, + 1110, + 1110, + 1110, + 1110, + 1110 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20754": { + "npcId": 20754, + "attr": {}, + "npclist": "4005_421_90072#4010_421_90071#4015_421_90076#5005_421_90079#3005_421_90079#3010_421_90079", + "npcLv": [ + 1110, + 1110, + 1110, + 1110, + 1110, + 1110 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20755": { + "npcId": 20755, + "attr": {}, + "npclist": "4006_421_90072#4011_421_90071#5001_421_90076#3001_421_90079#3006_421_90079#3011_421_90079", + "npcLv": [ + 1110, + 1110, + 1110, + 1110, + 1110, + 1110 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20756": { + "npcId": 20756, + "attr": {}, + "npclist": "4007_422_90072#4012_422_90071#5002_422_90076#3002_422_90079#3007_422_90079#3012_422_90079", + "npcLv": [ + 1116, + 1116, + 1116, + 1116, + 1116, + 1116 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20757": { + "npcId": 20757, + "attr": {}, + "npclist": "4008_422_90072#4013_422_90071#5003_422_90076#3003_422_90079#3008_422_90079#3013_422_90079", + "npcLv": [ + 1116, + 1116, + 1116, + 1116, + 1116, + 1116 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20758": { + "npcId": 20758, + "attr": {}, + "npclist": "4009_424_90072#4014_424_90071#5004_424_90076#3004_424_90079#3009_424_90079#3014_424_90079", + "npcLv": [ + 1116, + 1116, + 1116, + 1116, + 1116, + 1116 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20759": { + "npcId": 20759, + "attr": {}, + "npclist": "4010_424_90072#4015_424_90071#5005_424_90076#3005_424_90079#3010_424_90079#3015_424_90079", + "npcLv": [ + 1122, + 1122, + 1122, + 1122, + 1122, + 1122 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20760": { + "npcId": 20760, + "attr": {}, + "npclist": "4011_432_90072#5001_432_90071#3001_432_90076#3006_432_90079#3011_432_90079#4001_432_90079", + "npcLv": [ + 1122, + 1122, + 1122, + 1122, + 1122, + 1122 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20761": { + "npcId": 20761, + "attr": {}, + "npclist": "4012_428_90072#5002_428_90071#3002_428_90076#3007_428_90079#3012_428_90079#4002_428_90079", + "npcLv": [ + 1122, + 1122, + 1122, + 1122, + 1122, + 1122 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20762": { + "npcId": 20762, + "attr": {}, + "npclist": "4013_430_90072#5003_430_90071#3003_430_90076#3008_430_90079#3013_430_90079#4003_430_90079", + "npcLv": [ + 1128, + 1128, + 1128, + 1128, + 1128, + 1128 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20763": { + "npcId": 20763, + "attr": {}, + "npclist": "4014_430_90072#5004_430_90071#3004_430_90076#3009_430_90079#3014_430_90079#4004_430_90079", + "npcLv": [ + 1128, + 1128, + 1128, + 1128, + 1128, + 1128 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20764": { + "npcId": 20764, + "attr": {}, + "npclist": "4015_431_90072#5005_431_90071#3005_431_90076#3010_431_90079#3015_431_90079#4005_431_90079", + "npcLv": [ + 1128, + 1128, + 1128, + 1128, + 1128, + 1128 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20765": { + "npcId": 20765, + "attr": {}, + "npclist": "5001_431_90072#3001_431_90071#3006_431_90076#3011_431_90079#4001_431_90079#4006_431_90079", + "npcLv": [ + 1133, + 1133, + 1133, + 1133, + 1133, + 1133 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20766": { + "npcId": 20766, + "attr": {}, + "npclist": "5002_432_90072#3002_432_90071#3007_432_90076#3012_432_90079#4002_432_90079#4007_432_90079", + "npcLv": [ + 1133, + 1133, + 1133, + 1133, + 1133, + 1133 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20767": { + "npcId": 20767, + "attr": {}, + "npclist": "5003_432_90072#3003_432_90071#3008_432_90076#3013_432_90079#4003_432_90079#4008_432_90079", + "npcLv": [ + 1133, + 1133, + 1133, + 1133, + 1133, + 1133 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20768": { + "npcId": 20768, + "attr": {}, + "npclist": "5004_433_90072#3004_433_90071#3009_433_90076#3014_433_90079#4004_433_90079#4009_433_90079", + "npcLv": [ + 1139, + 1139, + 1139, + 1139, + 1139, + 1139 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20769": { + "npcId": 20769, + "attr": {}, + "npclist": "5005_451_90072#3005_451_90071#3010_451_90076#3015_451_90079#4005_451_90079#4010_451_90079", + "npcLv": [ + 1139, + 1139, + 1139, + 1139, + 1139, + 1139 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20770": { + "npcId": 20770, + "attr": {}, + "npclist": "3001_436_90072#3006_436_90071#3011_436_90076#4001_436_90079#4006_436_90079#4011_436_90079", + "npcLv": [ + 1139, + 1139, + 1139, + 1139, + 1139, + 1139 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20771": { + "npcId": 20771, + "attr": {}, + "npclist": "3002_435_90072#3007_435_90071#3012_435_90076#4002_435_90079#4007_435_90079#4012_435_90079", + "npcLv": [ + 1145, + 1145, + 1145, + 1145, + 1145, + 1145 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20772": { + "npcId": 20772, + "attr": {}, + "npclist": "3003_427_90072#3008_427_90071#3013_427_90076#4003_427_90079#4008_427_90079#4013_427_90079", + "npcLv": [ + 1145, + 1145, + 1145, + 1145, + 1145, + 1145 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20773": { + "npcId": 20773, + "attr": {}, + "npclist": "3004_427_90072#3009_427_90071#3014_427_90076#4004_427_90079#4009_427_90079#4014_427_90079", + "npcLv": [ + 1145, + 1145, + 1145, + 1145, + 1145, + 1145 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20774": { + "npcId": 20774, + "attr": {}, + "npclist": "3005_428_90072#3010_428_90071#3015_428_90076#4005_428_90079#4010_428_90079#4015_428_90079", + "npcLv": [ + 1151, + 1151, + 1151, + 1151, + 1151, + 1151 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20775": { + "npcId": 20775, + "attr": {}, + "npclist": "3006_428_90072#3011_428_90071#4001_428_90076#4006_428_90079#4011_428_90079#5001_428_90079", + "npcLv": [ + 1151, + 1151, + 1151, + 1151, + 1151, + 1151 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20776": { + "npcId": 20776, + "attr": {}, + "npclist": "3007_429_90072#3012_429_90071#4002_429_90076#4007_429_90079#4012_429_90079#5002_429_90079", + "npcLv": [ + 1151, + 1151, + 1151, + 1151, + 1151, + 1151 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20777": { + "npcId": 20777, + "attr": {}, + "npclist": "3008_429_90072#3013_429_90071#4003_429_90076#4008_429_90079#4013_429_90079#5003_429_90079", + "npcLv": [ + 1156, + 1156, + 1156, + 1156, + 1156, + 1156 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20778": { + "npcId": 20778, + "attr": {}, + "npclist": "3009_431_90072#3014_431_90071#4004_431_90076#4009_431_90079#4014_431_90079#5004_431_90079", + "npcLv": [ + 1156, + 1156, + 1156, + 1156, + 1156, + 1156 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20779": { + "npcId": 20779, + "attr": {}, + "npclist": "3010_431_90072#3015_431_90071#4005_431_90076#4010_431_90079#4015_431_90079#5005_431_90079", + "npcLv": [ + 1156, + 1156, + 1156, + 1156, + 1156, + 1156 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20780": { + "npcId": 20780, + "attr": {}, + "npclist": "3011_441_90072#4001_441_90071#4006_441_90076#4011_441_90079#5001_441_90079#3001_441_90079", + "npcLv": [ + 1162, + 1162, + 1162, + 1162, + 1162, + 1162 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20781": { + "npcId": 20781, + "attr": {}, + "npclist": "3012_441_90072#4002_441_90071#4007_441_90076#4012_441_90079#5002_441_90079#3002_441_90079", + "npcLv": [ + 1162, + 1162, + 1162, + 1162, + 1162, + 1162 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20782": { + "npcId": 20782, + "attr": {}, + "npclist": "3013_442_90072#4003_442_90071#4008_442_90076#4013_442_90079#5003_442_90079#3003_442_90079", + "npcLv": [ + 1162, + 1162, + 1162, + 1162, + 1162, + 1162 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20783": { + "npcId": 20783, + "attr": {}, + "npclist": "3014_442_90072#4004_442_90071#4009_442_90076#4014_442_90079#5004_442_90079#3004_442_90079", + "npcLv": [ + 1168, + 1168, + 1168, + 1168, + 1168, + 1168 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20784": { + "npcId": 20784, + "attr": {}, + "npclist": "3015_443_90072#4005_443_90071#4010_443_90076#4015_443_90079#5005_443_90079#3005_443_90079", + "npcLv": [ + 1168, + 1168, + 1168, + 1168, + 1168, + 1168 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20785": { + "npcId": 20785, + "attr": {}, + "npclist": "4001_443_90072#4006_443_90071#4011_443_90076#5001_443_90079#3001_443_90079#3006_443_90079", + "npcLv": [ + 1168, + 1168, + 1168, + 1168, + 1168, + 1168 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20786": { + "npcId": 20786, + "attr": {}, + "npclist": "4002_445_90072#4007_445_90071#4012_445_90076#5002_445_90079#3002_445_90079#3007_445_90079", + "npcLv": [ + 1174, + 1174, + 1174, + 1174, + 1174, + 1174 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20787": { + "npcId": 20787, + "attr": {}, + "npclist": "4003_445_90072#4008_445_90071#4013_445_90076#5003_445_90079#3003_445_90079#3008_445_90079", + "npcLv": [ + 1174, + 1174, + 1174, + 1174, + 1174, + 1174 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20788": { + "npcId": 20788, + "attr": {}, + "npclist": "4004_446_90072#4009_446_90071#4014_446_90076#5004_446_90079#3004_446_90079#3009_446_90079", + "npcLv": [ + 1174, + 1174, + 1174, + 1174, + 1174, + 1174 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20789": { + "npcId": 20789, + "attr": {}, + "npclist": "4005_464_90072#4010_464_90071#4015_464_90076#5005_464_90079#3005_464_90079#3010_464_90079", + "npcLv": [ + 1180, + 1180, + 1180, + 1180, + 1180, + 1180 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20790": { + "npcId": 20790, + "attr": {}, + "npclist": "4006_447_90072#4011_447_90071#5001_447_90076#3001_447_90079#3006_447_90079#3011_447_90079", + "npcLv": [ + 1180, + 1180, + 1180, + 1180, + 1180, + 1180 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20791": { + "npcId": 20791, + "attr": {}, + "npclist": "4007_438_90072#4012_438_90071#5002_438_90076#3002_438_90079#3007_438_90079#3012_438_90079", + "npcLv": [ + 1180, + 1180, + 1180, + 1180, + 1180, + 1180 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20792": { + "npcId": 20792, + "attr": {}, + "npclist": "4008_439_90072#4013_439_90071#5003_439_90076#3003_439_90079#3008_439_90079#3013_439_90079", + "npcLv": [ + 1185, + 1185, + 1185, + 1185, + 1185, + 1185 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20793": { + "npcId": 20793, + "attr": {}, + "npclist": "4009_439_90072#4014_439_90071#5004_439_90076#3004_439_90079#3009_439_90079#3014_439_90079", + "npcLv": [ + 1185, + 1185, + 1185, + 1185, + 1185, + 1185 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20794": { + "npcId": 20794, + "attr": {}, + "npclist": "4010_441_90072#4015_441_90071#5005_441_90076#3005_441_90079#3010_441_90079#3015_441_90079", + "npcLv": [ + 1185, + 1185, + 1185, + 1185, + 1185, + 1185 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20795": { + "npcId": 20795, + "attr": {}, + "npclist": "4011_441_90072#5001_441_90071#3001_441_90076#3006_441_90079#3011_441_90079#4001_441_90079", + "npcLv": [ + 1191, + 1191, + 1191, + 1191, + 1191, + 1191 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20796": { + "npcId": 20796, + "attr": {}, + "npclist": "4012_442_90072#5002_442_90071#3002_442_90076#3007_442_90079#3012_442_90079#4002_442_90079", + "npcLv": [ + 1191, + 1191, + 1191, + 1191, + 1191, + 1191 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20797": { + "npcId": 20797, + "attr": {}, + "npclist": "4013_442_90072#5003_442_90071#3003_442_90076#3008_442_90079#3013_442_90079#4003_442_90079", + "npcLv": [ + 1191, + 1191, + 1191, + 1191, + 1191, + 1191 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20798": { + "npcId": 20798, + "attr": {}, + "npclist": "4014_443_90072#5004_443_90071#3004_443_90076#3009_443_90079#3014_443_90079#4004_443_90079", + "npcLv": [ + 1197, + 1197, + 1197, + 1197, + 1197, + 1197 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20799": { + "npcId": 20799, + "attr": {}, + "npclist": "4015_443_90072#5005_443_90071#3005_443_90076#3010_443_90079#3015_443_90079#4005_443_90079", + "npcLv": [ + 1197, + 1197, + 1197, + 1197, + 1197, + 1197 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20800": { + "npcId": 20800, + "attr": {}, + "npclist": "5001_451_90072#3001_451_90071#3006_451_90076#3011_451_90079#4001_451_90079#4006_451_90079", + "npcLv": [ + 1197, + 1197, + 1197, + 1197, + 1197, + 1197 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20801": { + "npcId": 20801, + "attr": {}, + "npclist": "5002_444_90072#3002_444_90071#3007_444_90076#3012_444_90079#4002_444_90079#4007_444_90079", + "npcLv": [ + 1203, + 1203, + 1203, + 1203, + 1203, + 1203 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20802": { + "npcId": 20802, + "attr": {}, + "npclist": "5003_445_90072#3003_445_90071#3008_445_90076#3013_445_90079#4003_445_90079#4008_445_90079", + "npcLv": [ + 1203, + 1203, + 1203, + 1203, + 1203, + 1203 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20803": { + "npcId": 20803, + "attr": {}, + "npclist": "5004_445_90072#3004_445_90071#3009_445_90076#3014_445_90079#4004_445_90079#4009_445_90079", + "npcLv": [ + 1203, + 1203, + 1203, + 1203, + 1203, + 1203 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20804": { + "npcId": 20804, + "attr": {}, + "npclist": "5005_447_90072#3005_447_90071#3010_447_90076#3015_447_90079#4005_447_90079#4010_447_90079", + "npcLv": [ + 1208, + 1208, + 1208, + 1208, + 1208, + 1208 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20805": { + "npcId": 20805, + "attr": {}, + "npclist": "3001_447_90072#3006_447_90071#3011_447_90076#4001_447_90079#4006_447_90079#4011_447_90079", + "npcLv": [ + 1208, + 1208, + 1208, + 1208, + 1208, + 1208 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20806": { + "npcId": 20806, + "attr": {}, + "npclist": "3002_448_90072#3007_448_90071#3012_448_90076#4002_448_90079#4007_448_90079#4012_448_90079", + "npcLv": [ + 1208, + 1208, + 1208, + 1208, + 1208, + 1208 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20807": { + "npcId": 20807, + "attr": {}, + "npclist": "3003_448_90072#3008_448_90071#3013_448_90076#4003_448_90079#4008_448_90079#4013_448_90079", + "npcLv": [ + 1214, + 1214, + 1214, + 1214, + 1214, + 1214 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20808": { + "npcId": 20808, + "attr": {}, + "npclist": "3004_449_90072#3009_449_90071#3014_449_90076#4004_449_90079#4009_449_90079#4014_449_90079", + "npcLv": [ + 1214, + 1214, + 1214, + 1214, + 1214, + 1214 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20809": { + "npcId": 20809, + "attr": {}, + "npclist": "3005_449_90072#3010_449_90071#3015_449_90076#4005_449_90079#4010_449_90079#4015_449_90079", + "npcLv": [ + 1214, + 1214, + 1214, + 1214, + 1214, + 1214 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20810": { + "npcId": 20810, + "attr": {}, + "npclist": "3006_458_90072#3011_458_90071#4001_458_90076#4006_458_90079#4011_458_90079#5001_458_90079", + "npcLv": [ + 1220, + 1220, + 1220, + 1220, + 1220, + 1220 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20811": { + "npcId": 20811, + "attr": {}, + "npclist": "3007_450_90072#3012_450_90071#4002_450_90076#4007_450_90079#4012_450_90079#5002_450_90079", + "npcLv": [ + 1220, + 1220, + 1220, + 1220, + 1220, + 1220 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20812": { + "npcId": 20812, + "attr": {}, + "npclist": "3008_452_90072#3013_452_90071#4003_452_90076#4008_452_90079#4013_452_90079#5003_452_90079", + "npcLv": [ + 1220, + 1220, + 1220, + 1220, + 1220, + 1220 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20813": { + "npcId": 20813, + "attr": {}, + "npclist": "3009_452_90072#3014_452_90071#4004_452_90076#4009_452_90079#4014_452_90079#5004_452_90079", + "npcLv": [ + 1226, + 1226, + 1226, + 1226, + 1226, + 1226 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20814": { + "npcId": 20814, + "attr": {}, + "npclist": "3010_453_90072#3015_453_90071#4005_453_90076#4010_453_90079#4015_453_90079#5005_453_90079", + "npcLv": [ + 1226, + 1226, + 1226, + 1226, + 1226, + 1226 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20815": { + "npcId": 20815, + "attr": {}, + "npclist": "3011_453_90072#4001_453_90071#4006_453_90076#4011_453_90079#5001_453_90079#3001_453_90079", + "npcLv": [ + 1226, + 1226, + 1226, + 1226, + 1226, + 1226 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20816": { + "npcId": 20816, + "attr": {}, + "npclist": "3012_454_90072#4002_454_90071#4007_454_90076#4012_454_90079#5002_454_90079#3002_454_90079", + "npcLv": [ + 1232, + 1232, + 1232, + 1232, + 1232, + 1232 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20817": { + "npcId": 20817, + "attr": {}, + "npclist": "3013_454_90072#4003_454_90071#4008_454_90076#4013_454_90079#5003_454_90079#3003_454_90079", + "npcLv": [ + 1232, + 1232, + 1232, + 1232, + 1232, + 1232 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20818": { + "npcId": 20818, + "attr": {}, + "npclist": "3014_455_90072#4004_455_90071#4009_455_90076#4014_455_90079#5004_455_90079#3004_455_90079", + "npcLv": [ + 1232, + 1232, + 1232, + 1232, + 1232, + 1232 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20819": { + "npcId": 20819, + "attr": {}, + "npclist": "3015_455_90072#4005_455_90071#4010_455_90076#4015_455_90079#5005_455_90079#3005_455_90079", + "npcLv": [ + 1238, + 1238, + 1238, + 1238, + 1238, + 1238 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20820": { + "npcId": 20820, + "attr": {}, + "npclist": "4001_464_90072#4006_464_90071#4011_464_90076#5001_464_90079#3001_464_90079#3006_464_90079", + "npcLv": [ + 1238, + 1238, + 1238, + 1238, + 1238, + 1238 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20821": { + "npcId": 20821, + "attr": {}, + "npclist": "4002_456_90072#4007_456_90071#4012_456_90076#5002_456_90079#3002_456_90079#3007_456_90079", + "npcLv": [ + 1238, + 1238, + 1238, + 1238, + 1238, + 1238 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20822": { + "npcId": 20822, + "attr": {}, + "npclist": "4003_458_90072#4008_458_90071#4013_458_90076#5003_458_90079#3003_458_90079#3008_458_90079", + "npcLv": [ + 1243, + 1243, + 1243, + 1243, + 1243, + 1243 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20823": { + "npcId": 20823, + "attr": {}, + "npclist": "4004_458_90072#4009_458_90071#4014_458_90076#5004_458_90079#3004_458_90079#3009_458_90079", + "npcLv": [ + 1243, + 1243, + 1243, + 1243, + 1243, + 1243 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20824": { + "npcId": 20824, + "attr": {}, + "npclist": "4005_459_90072#4010_459_90071#4015_459_90076#5005_459_90079#3005_459_90079#3010_459_90079", + "npcLv": [ + 1243, + 1243, + 1243, + 1243, + 1243, + 1243 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20825": { + "npcId": 20825, + "attr": {}, + "npclist": "4006_459_90072#4011_459_90071#5001_459_90076#3001_459_90079#3006_459_90079#3011_459_90079", + "npcLv": [ + 1249, + 1249, + 1249, + 1249, + 1249, + 1249 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20826": { + "npcId": 20826, + "attr": {}, + "npclist": "4007_460_90072#4012_460_90071#5002_460_90076#3002_460_90079#3007_460_90079#3012_460_90079", + "npcLv": [ + 1249, + 1249, + 1249, + 1249, + 1249, + 1249 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20827": { + "npcId": 20827, + "attr": {}, + "npclist": "4008_460_90072#4013_460_90071#5003_460_90076#3003_460_90079#3008_460_90079#3013_460_90079", + "npcLv": [ + 1249, + 1249, + 1249, + 1249, + 1249, + 1249 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20828": { + "npcId": 20828, + "attr": {}, + "npclist": "4009_461_90072#4014_461_90071#5004_461_90076#3004_461_90079#3009_461_90079#3014_461_90079", + "npcLv": [ + 1255, + 1255, + 1255, + 1255, + 1255, + 1255 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20829": { + "npcId": 20829, + "attr": {}, + "npclist": "4010_461_90072#4015_461_90071#5005_461_90076#3005_461_90079#3010_461_90079#3015_461_90079", + "npcLv": [ + 1255, + 1255, + 1255, + 1255, + 1255, + 1255 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20830": { + "npcId": 20830, + "attr": {}, + "npclist": "4011_470_90072#5001_470_90071#3001_470_90076#3006_470_90079#3011_470_90079#4001_470_90079", + "npcLv": [ + 1255, + 1255, + 1255, + 1255, + 1255, + 1255 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20831": { + "npcId": 20831, + "attr": {}, + "npclist": "4012_463_90072#5002_463_90071#3002_463_90076#3007_463_90079#3012_463_90079#4002_463_90079", + "npcLv": [ + 1261, + 1261, + 1261, + 1261, + 1261, + 1261 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20832": { + "npcId": 20832, + "attr": {}, + "npclist": "4013_464_90072#5003_464_90071#3003_464_90076#3008_464_90079#3013_464_90079#4003_464_90079", + "npcLv": [ + 1261, + 1261, + 1261, + 1261, + 1261, + 1261 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20833": { + "npcId": 20833, + "attr": {}, + "npclist": "4014_464_90072#5004_464_90071#3004_464_90076#3009_464_90079#3014_464_90079#4004_464_90079", + "npcLv": [ + 1261, + 1261, + 1261, + 1261, + 1261, + 1261 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20834": { + "npcId": 20834, + "attr": {}, + "npclist": "4015_465_90072#5005_465_90071#3005_465_90076#3010_465_90079#3015_465_90079#4005_465_90079", + "npcLv": [ + 1267, + 1267, + 1267, + 1267, + 1267, + 1267 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20835": { + "npcId": 20835, + "attr": {}, + "npclist": "5001_465_90072#3001_465_90071#3006_465_90076#3011_465_90079#4001_465_90079#4006_465_90079", + "npcLv": [ + 1267, + 1267, + 1267, + 1267, + 1267, + 1267 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20836": { + "npcId": 20836, + "attr": {}, + "npclist": "5002_466_90072#3002_466_90071#3007_466_90076#3012_466_90079#4002_466_90079#4007_466_90079", + "npcLv": [ + 1267, + 1267, + 1267, + 1267, + 1267, + 1267 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20837": { + "npcId": 20837, + "attr": {}, + "npclist": "5003_466_90072#3003_466_90071#3008_466_90076#3013_466_90079#4003_466_90079#4008_466_90079", + "npcLv": [ + 1273, + 1273, + 1273, + 1273, + 1273, + 1273 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20838": { + "npcId": 20838, + "attr": {}, + "npclist": "5004_467_90072#3004_467_90071#3009_467_90076#3014_467_90079#4004_467_90079#4009_467_90079", + "npcLv": [ + 1273, + 1273, + 1273, + 1273, + 1273, + 1273 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20839": { + "npcId": 20839, + "attr": {}, + "npclist": "5005_467_90072#3005_467_90071#3010_467_90076#3015_467_90079#4005_467_90079#4010_467_90079", + "npcLv": [ + 1273, + 1273, + 1273, + 1273, + 1273, + 1273 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20840": { + "npcId": 20840, + "attr": {}, + "npclist": "3001_476_90072#3006_476_90071#3011_476_90076#4001_476_90079#4006_476_90079#4011_476_90079", + "npcLv": [ + 1278, + 1278, + 1278, + 1278, + 1278, + 1278 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20841": { + "npcId": 20841, + "attr": {}, + "npclist": "3002_469_90072#3007_469_90071#3012_469_90076#4002_469_90079#4007_469_90079#4012_469_90079", + "npcLv": [ + 1278, + 1278, + 1278, + 1278, + 1278, + 1278 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20842": { + "npcId": 20842, + "attr": {}, + "npclist": "3003_470_90072#3008_470_90071#3013_470_90076#4003_470_90079#4008_470_90079#4013_470_90079", + "npcLv": [ + 1278, + 1278, + 1278, + 1278, + 1278, + 1278 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20843": { + "npcId": 20843, + "attr": {}, + "npclist": "3004_470_90072#3009_470_90071#3014_470_90076#4004_470_90079#4009_470_90079#4014_470_90079", + "npcLv": [ + 1284, + 1284, + 1284, + 1284, + 1284, + 1284 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20844": { + "npcId": 20844, + "attr": {}, + "npclist": "3005_471_90072#3010_471_90071#3015_471_90076#4005_471_90079#4010_471_90079#4015_471_90079", + "npcLv": [ + 1284, + 1284, + 1284, + 1284, + 1284, + 1284 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20845": { + "npcId": 20845, + "attr": {}, + "npclist": "3006_471_90072#3011_471_90071#4001_471_90076#4006_471_90079#4011_471_90079#5001_471_90079", + "npcLv": [ + 1284, + 1284, + 1284, + 1284, + 1284, + 1284 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20846": { + "npcId": 20846, + "attr": {}, + "npclist": "3007_472_90072#3012_472_90071#4002_472_90076#4007_472_90079#4012_472_90079#5002_472_90079", + "npcLv": [ + 1290, + 1290, + 1290, + 1290, + 1290, + 1290 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20847": { + "npcId": 20847, + "attr": {}, + "npclist": "3008_472_90072#3013_472_90071#4003_472_90076#4008_472_90079#4013_472_90079#5003_472_90079", + "npcLv": [ + 1290, + 1290, + 1290, + 1290, + 1290, + 1290 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20848": { + "npcId": 20848, + "attr": {}, + "npclist": "3009_474_90072#3014_474_90071#4004_474_90076#4009_474_90079#4014_474_90079#5004_474_90079", + "npcLv": [ + 1290, + 1290, + 1290, + 1290, + 1290, + 1290 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20849": { + "npcId": 20849, + "attr": {}, + "npclist": "3010_474_90072#3015_474_90071#4005_474_90076#4010_474_90079#4015_474_90079#5005_474_90079", + "npcLv": [ + 1296, + 1296, + 1296, + 1296, + 1296, + 1296 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20850": { + "npcId": 20850, + "attr": {}, + "npclist": "3011_483_90072#4001_483_90071#4006_483_90076#4011_483_90079#5001_483_90079#3001_483_90079", + "npcLv": [ + 1296, + 1296, + 1296, + 1296, + 1296, + 1296 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20851": { + "npcId": 20851, + "attr": {}, + "npclist": "3012_481_90072#4002_481_90071#4007_481_90076#4012_481_90079#5002_481_90079#3002_481_90079", + "npcLv": [ + 1296, + 1296, + 1296, + 1296, + 1296, + 1296 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20852": { + "npcId": 20852, + "attr": {}, + "npclist": "3013_478_90072#4003_478_90071#4008_478_90076#4013_478_90079#5003_478_90079#3003_478_90079", + "npcLv": [ + 1302, + 1302, + 1302, + 1302, + 1302, + 1302 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20853": { + "npcId": 20853, + "attr": {}, + "npclist": "3014_478_90072#4004_478_90071#4009_478_90076#4014_478_90079#5004_478_90079#3004_478_90079", + "npcLv": [ + 1302, + 1302, + 1302, + 1302, + 1302, + 1302 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20854": { + "npcId": 20854, + "attr": {}, + "npclist": "3015_479_90072#4005_479_90071#4010_479_90076#4015_479_90079#5005_479_90079#3005_479_90079", + "npcLv": [ + 1302, + 1302, + 1302, + 1302, + 1302, + 1302 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20855": { + "npcId": 20855, + "attr": {}, + "npclist": "4001_479_90072#4006_479_90071#4011_479_90076#5001_479_90079#3001_479_90079#3006_479_90079", + "npcLv": [ + 1308, + 1308, + 1308, + 1308, + 1308, + 1308 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20856": { + "npcId": 20856, + "attr": {}, + "npclist": "4002_480_90072#4007_480_90071#4012_480_90076#5002_480_90079#3002_480_90079#3007_480_90079", + "npcLv": [ + 1308, + 1308, + 1308, + 1308, + 1308, + 1308 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20857": { + "npcId": 20857, + "attr": {}, + "npclist": "4003_480_90072#4008_480_90071#4013_480_90076#5003_480_90079#3003_480_90079#3008_480_90079", + "npcLv": [ + 1308, + 1308, + 1308, + 1308, + 1308, + 1308 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20858": { + "npcId": 20858, + "attr": {}, + "npclist": "4004_482_90072#4009_482_90071#4014_482_90076#5004_482_90079#3004_482_90079#3009_482_90079", + "npcLv": [ + 1314, + 1314, + 1314, + 1314, + 1314, + 1314 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20859": { + "npcId": 20859, + "attr": {}, + "npclist": "4005_482_90072#4010_482_90071#4015_482_90076#5005_482_90079#3005_482_90079#3010_482_90079", + "npcLv": [ + 1314, + 1314, + 1314, + 1314, + 1314, + 1314 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20860": { + "npcId": 20860, + "attr": {}, + "npclist": "4006_489_90072#4011_489_90071#5001_489_90076#3001_489_90079#3006_489_90079#3011_489_90079", + "npcLv": [ + 1314, + 1314, + 1314, + 1314, + 1314, + 1314 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20861": { + "npcId": 20861, + "attr": {}, + "npclist": "4007_487_90072#4012_487_90071#5002_487_90076#3002_487_90079#3007_487_90079#3012_487_90079", + "npcLv": [ + 1319, + 1319, + 1319, + 1319, + 1319, + 1319 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20862": { + "npcId": 20862, + "attr": {}, + "npclist": "4008_488_90072#4013_488_90071#5003_488_90076#3003_488_90079#3008_488_90079#3013_488_90079", + "npcLv": [ + 1319, + 1319, + 1319, + 1319, + 1319, + 1319 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20863": { + "npcId": 20863, + "attr": {}, + "npclist": "4009_488_90072#4014_488_90071#5004_488_90076#3004_488_90079#3009_488_90079#3014_488_90079", + "npcLv": [ + 1319, + 1319, + 1319, + 1319, + 1319, + 1319 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20864": { + "npcId": 20864, + "attr": {}, + "npclist": "4010_489_90072#4015_489_90071#5005_489_90076#3005_489_90079#3010_489_90079#3015_489_90079", + "npcLv": [ + 1325, + 1325, + 1325, + 1325, + 1325, + 1325 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20865": { + "npcId": 20865, + "attr": {}, + "npclist": "4011_489_90072#5001_489_90071#3001_489_90076#3006_489_90079#3011_489_90079#4001_489_90079", + "npcLv": [ + 1325, + 1325, + 1325, + 1325, + 1325, + 1325 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20866": { + "npcId": 20866, + "attr": {}, + "npclist": "4012_491_90072#5002_491_90071#3002_491_90076#3007_491_90079#3012_491_90079#4002_491_90079", + "npcLv": [ + 1325, + 1325, + 1325, + 1325, + 1325, + 1325 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20867": { + "npcId": 20867, + "attr": {}, + "npclist": "4013_491_90072#5003_491_90071#3003_491_90076#3008_491_90079#3013_491_90079#4003_491_90079", + "npcLv": [ + 1331, + 1331, + 1331, + 1331, + 1331, + 1331 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20868": { + "npcId": 20868, + "attr": {}, + "npclist": "4014_492_90072#5004_492_90071#3004_492_90076#3009_492_90079#3014_492_90079#4004_492_90079", + "npcLv": [ + 1331, + 1331, + 1331, + 1331, + 1331, + 1331 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20869": { + "npcId": 20869, + "attr": {}, + "npclist": "4015_492_90072#5005_492_90071#3005_492_90076#3010_492_90079#3015_492_90079#4005_492_90079", + "npcLv": [ + 1331, + 1331, + 1331, + 1331, + 1331, + 1331 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20870": { + "npcId": 20870, + "attr": {}, + "npclist": "5001_495_90072#3001_495_90071#3006_495_90076#3011_495_90079#4001_495_90079#4006_495_90079", + "npcLv": [ + 1337, + 1337, + 1337, + 1337, + 1337, + 1337 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20871": { + "npcId": 20871, + "attr": {}, + "npclist": "5002_489_90072#3002_489_90071#3007_489_90076#3012_489_90079#4002_489_90079#4007_489_90079", + "npcLv": [ + 1337, + 1337, + 1337, + 1337, + 1337, + 1337 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20872": { + "npcId": 20872, + "attr": {}, + "npclist": "5003_490_90072#3003_490_90071#3008_490_90076#3013_490_90079#4003_490_90079#4008_490_90079", + "npcLv": [ + 1337, + 1337, + 1337, + 1337, + 1337, + 1337 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20873": { + "npcId": 20873, + "attr": {}, + "npclist": "5004_490_90072#3004_490_90071#3009_490_90076#3014_490_90079#4004_490_90079#4009_490_90079", + "npcLv": [ + 1343, + 1343, + 1343, + 1343, + 1343, + 1343 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20874": { + "npcId": 20874, + "attr": {}, + "npclist": "5005_492_90072#3005_492_90071#3010_492_90076#3015_492_90079#4005_492_90079#4010_492_90079", + "npcLv": [ + 1343, + 1343, + 1343, + 1343, + 1343, + 1343 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20875": { + "npcId": 20875, + "attr": {}, + "npclist": "3001_493_90072#3006_493_90071#3011_493_90076#4001_493_90079#4006_493_90079#4011_493_90079", + "npcLv": [ + 1343, + 1343, + 1343, + 1343, + 1343, + 1343 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20876": { + "npcId": 20876, + "attr": {}, + "npclist": "3002_494_90072#3007_494_90071#3012_494_90076#4002_494_90079#4007_494_90079#4012_494_90079", + "npcLv": [ + 1349, + 1349, + 1349, + 1349, + 1349, + 1349 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20877": { + "npcId": 20877, + "attr": {}, + "npclist": "3003_495_90072#3008_495_90071#3013_495_90076#4003_495_90079#4008_495_90079#4013_495_90079", + "npcLv": [ + 1349, + 1349, + 1349, + 1349, + 1349, + 1349 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20878": { + "npcId": 20878, + "attr": {}, + "npclist": "3004_496_90072#3009_496_90071#3014_496_90076#4004_496_90079#4009_496_90079#4014_496_90079", + "npcLv": [ + 1349, + 1349, + 1349, + 1349, + 1349, + 1349 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20879": { + "npcId": 20879, + "attr": {}, + "npclist": "3005_498_90072#3010_498_90071#3015_498_90076#4005_498_90079#4010_498_90079#4015_498_90079", + "npcLv": [ + 1355, + 1355, + 1355, + 1355, + 1355, + 1355 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20880": { + "npcId": 20880, + "attr": {}, + "npclist": "3006_507_90072#3011_507_90071#4001_507_90076#4006_507_90079#4011_507_90079#5001_507_90079", + "npcLv": [ + 1355, + 1355, + 1355, + 1355, + 1355, + 1355 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20881": { + "npcId": 20881, + "attr": {}, + "npclist": "3007_504_90072#3012_504_90071#4002_504_90076#4007_504_90079#4012_504_90079#5002_504_90079", + "npcLv": [ + 1355, + 1355, + 1355, + 1355, + 1355, + 1355 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20882": { + "npcId": 20882, + "attr": {}, + "npclist": "3008_505_90072#3013_505_90071#4003_505_90076#4008_505_90079#4013_505_90079#5003_505_90079", + "npcLv": [ + 1361, + 1361, + 1361, + 1361, + 1361, + 1361 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20883": { + "npcId": 20883, + "attr": {}, + "npclist": "3009_507_90072#3014_507_90071#4004_507_90076#4009_507_90079#4014_507_90079#5004_507_90079", + "npcLv": [ + 1361, + 1361, + 1361, + 1361, + 1361, + 1361 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20884": { + "npcId": 20884, + "attr": {}, + "npclist": "3010_508_90072#3015_508_90071#4005_508_90076#4010_508_90079#4015_508_90079#5005_508_90079", + "npcLv": [ + 1361, + 1361, + 1361, + 1361, + 1361, + 1361 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20885": { + "npcId": 20885, + "attr": {}, + "npclist": "3011_509_90072#4001_509_90071#4006_509_90076#4011_509_90079#5001_509_90079#3001_509_90079", + "npcLv": [ + 1366, + 1366, + 1366, + 1366, + 1366, + 1366 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20886": { + "npcId": 20886, + "attr": {}, + "npclist": "3012_510_90072#4002_510_90071#4007_510_90076#4012_510_90079#5002_510_90079#3002_510_90079", + "npcLv": [ + 1366, + 1366, + 1366, + 1366, + 1366, + 1366 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20887": { + "npcId": 20887, + "attr": {}, + "npclist": "3013_512_90072#4003_512_90071#4008_512_90076#4013_512_90079#5003_512_90079#3003_512_90079", + "npcLv": [ + 1366, + 1366, + 1366, + 1366, + 1366, + 1366 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20888": { + "npcId": 20888, + "attr": {}, + "npclist": "3014_513_90072#4004_513_90071#4009_513_90076#4014_513_90079#5004_513_90079#3004_513_90079", + "npcLv": [ + 1372, + 1372, + 1372, + 1372, + 1372, + 1372 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20889": { + "npcId": 20889, + "attr": {}, + "npclist": "3015_514_90072#4005_514_90071#4010_514_90076#4015_514_90079#5005_514_90079#3005_514_90079", + "npcLv": [ + 1372, + 1372, + 1372, + 1372, + 1372, + 1372 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20890": { + "npcId": 20890, + "attr": {}, + "npclist": "4001_520_90072#4006_520_90071#4011_520_90076#5001_520_90079#3001_520_90079#3006_520_90079", + "npcLv": [ + 1372, + 1372, + 1372, + 1372, + 1372, + 1372 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20891": { + "npcId": 20891, + "attr": {}, + "npclist": "4002_517_90072#4007_517_90071#4012_517_90076#5002_517_90079#3002_517_90079#3007_517_90079", + "npcLv": [ + 1378, + 1378, + 1378, + 1378, + 1378, + 1378 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20892": { + "npcId": 20892, + "attr": {}, + "npclist": "4003_518_90072#4008_518_90071#4013_518_90076#5003_518_90079#3003_518_90079#3008_518_90079", + "npcLv": [ + 1378, + 1378, + 1378, + 1378, + 1378, + 1378 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20893": { + "npcId": 20893, + "attr": {}, + "npclist": "4004_519_90072#4009_519_90071#4014_519_90076#5004_519_90079#3004_519_90079#3009_519_90079", + "npcLv": [ + 1378, + 1378, + 1378, + 1378, + 1378, + 1378 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20894": { + "npcId": 20894, + "attr": {}, + "npclist": "4005_520_90072#4010_520_90071#4015_520_90076#5005_520_90079#3005_520_90079#3010_520_90079", + "npcLv": [ + 1384, + 1384, + 1384, + 1384, + 1384, + 1384 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20895": { + "npcId": 20895, + "attr": {}, + "npclist": "4006_522_90072#4011_522_90071#5001_522_90076#3001_522_90079#3006_522_90079#3011_522_90079", + "npcLv": [ + 1384, + 1384, + 1384, + 1384, + 1384, + 1384 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20896": { + "npcId": 20896, + "attr": {}, + "npclist": "4007_523_90072#4012_523_90071#5002_523_90076#3002_523_90079#3007_523_90079#3012_523_90079", + "npcLv": [ + 1384, + 1384, + 1384, + 1384, + 1384, + 1384 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20897": { + "npcId": 20897, + "attr": {}, + "npclist": "4008_524_90072#4013_524_90071#5003_524_90076#3003_524_90079#3008_524_90079#3013_524_90079", + "npcLv": [ + 1390, + 1390, + 1390, + 1390, + 1390, + 1390 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20898": { + "npcId": 20898, + "attr": {}, + "npclist": "4009_525_90072#4014_525_90071#5004_525_90076#3004_525_90079#3009_525_90079#3014_525_90079", + "npcLv": [ + 1390, + 1390, + 1390, + 1390, + 1390, + 1390 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20899": { + "npcId": 20899, + "attr": {}, + "npclist": "4010_527_90072#4015_527_90071#5005_527_90076#3005_527_90079#3010_527_90079#3015_527_90079", + "npcLv": [ + 1390, + 1390, + 1390, + 1390, + 1390, + 1390 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20900": { + "npcId": 20900, + "attr": {}, + "npclist": "4011_532_90072#5001_532_90071#3001_532_90076#3006_532_90079#3011_532_90079#4001_532_90079", + "npcLv": [ + 1396, + 1396, + 1396, + 1396, + 1396, + 1396 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20901": { + "npcId": 20901, + "attr": {}, + "npclist": "4012_529_90072#5002_529_90071#3002_529_90076#3007_529_90079#3012_529_90079#4002_529_90079", + "npcLv": [ + 1396, + 1396, + 1396, + 1396, + 1396, + 1396 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20902": { + "npcId": 20902, + "attr": {}, + "npclist": "4013_530_90072#5003_530_90071#3003_530_90076#3008_530_90079#3013_530_90079#4003_530_90079", + "npcLv": [ + 1396, + 1396, + 1396, + 1396, + 1396, + 1396 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20903": { + "npcId": 20903, + "attr": {}, + "npclist": "4014_531_90072#5004_531_90071#3004_531_90076#3009_531_90079#3014_531_90079#4004_531_90079", + "npcLv": [ + 1402, + 1402, + 1402, + 1402, + 1402, + 1402 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20904": { + "npcId": 20904, + "attr": {}, + "npclist": "4015_533_90072#5005_533_90071#3005_533_90076#3010_533_90079#3015_533_90079#4005_533_90079", + "npcLv": [ + 1402, + 1402, + 1402, + 1402, + 1402, + 1402 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20905": { + "npcId": 20905, + "attr": {}, + "npclist": "5001_534_90072#3001_534_90071#3006_534_90076#3011_534_90079#4001_534_90079#4006_534_90079", + "npcLv": [ + 1402, + 1402, + 1402, + 1402, + 1402, + 1402 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20906": { + "npcId": 20906, + "attr": {}, + "npclist": "5002_535_90072#3002_535_90071#3007_535_90076#3012_535_90079#4002_535_90079#4007_535_90079", + "npcLv": [ + 1408, + 1408, + 1408, + 1408, + 1408, + 1408 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20907": { + "npcId": 20907, + "attr": {}, + "npclist": "5003_536_90072#3003_536_90071#3008_536_90076#3013_536_90079#4003_536_90079#4008_536_90079", + "npcLv": [ + 1408, + 1408, + 1408, + 1408, + 1408, + 1408 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20908": { + "npcId": 20908, + "attr": {}, + "npclist": "5004_538_90072#3004_538_90071#3009_538_90076#3014_538_90079#4004_538_90079#4009_538_90079", + "npcLv": [ + 1408, + 1408, + 1408, + 1408, + 1408, + 1408 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20909": { + "npcId": 20909, + "attr": {}, + "npclist": "5005_539_90072#3005_539_90071#3010_539_90076#3015_539_90079#4005_539_90079#4010_539_90079", + "npcLv": [ + 1414, + 1414, + 1414, + 1414, + 1414, + 1414 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20910": { + "npcId": 20910, + "attr": {}, + "npclist": "3001_545_90072#3006_545_90071#3011_545_90076#4001_545_90079#4006_545_90079#4011_545_90079", + "npcLv": [ + 1414, + 1414, + 1414, + 1414, + 1414, + 1414 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20911": { + "npcId": 20911, + "attr": {}, + "npclist": "3002_544_90072#3007_544_90071#3012_544_90076#4002_544_90079#4007_544_90079#4012_544_90079", + "npcLv": [ + 1414, + 1414, + 1414, + 1414, + 1414, + 1414 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20912": { + "npcId": 20912, + "attr": {}, + "npclist": "3003_545_90072#3008_545_90071#3013_545_90076#4003_545_90079#4008_545_90079#4013_545_90079", + "npcLv": [ + 1420, + 1420, + 1420, + 1420, + 1420, + 1420 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20913": { + "npcId": 20913, + "attr": {}, + "npclist": "3004_546_90072#3009_546_90071#3014_546_90076#4004_546_90079#4009_546_90079#4014_546_90079", + "npcLv": [ + 1420, + 1420, + 1420, + 1420, + 1420, + 1420 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20914": { + "npcId": 20914, + "attr": {}, + "npclist": "3005_547_90072#3010_547_90071#3015_547_90076#4005_547_90079#4010_547_90079#4015_547_90079", + "npcLv": [ + 1420, + 1420, + 1420, + 1420, + 1420, + 1420 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20915": { + "npcId": 20915, + "attr": {}, + "npclist": "3006_549_90072#3011_549_90071#4001_549_90076#4006_549_90079#4011_549_90079#5001_549_90079", + "npcLv": [ + 1426, + 1426, + 1426, + 1426, + 1426, + 1426 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20916": { + "npcId": 20916, + "attr": {}, + "npclist": "3007_550_90072#3012_550_90071#4002_550_90076#4007_550_90079#4012_550_90079#5002_550_90079", + "npcLv": [ + 1426, + 1426, + 1426, + 1426, + 1426, + 1426 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20917": { + "npcId": 20917, + "attr": {}, + "npclist": "3008_551_90072#3013_551_90071#4003_551_90076#4008_551_90079#4013_551_90079#5003_551_90079", + "npcLv": [ + 1426, + 1426, + 1426, + 1426, + 1426, + 1426 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20918": { + "npcId": 20918, + "attr": {}, + "npclist": "3009_552_90072#3014_552_90071#4004_552_90076#4009_552_90079#4014_552_90079#5004_552_90079", + "npcLv": [ + 1432, + 1432, + 1432, + 1432, + 1432, + 1432 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20919": { + "npcId": 20919, + "attr": {}, + "npclist": "3010_554_90072#3015_554_90071#4005_554_90076#4010_554_90079#4015_554_90079#5005_554_90079", + "npcLv": [ + 1432, + 1432, + 1432, + 1432, + 1432, + 1432 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20920": { + "npcId": 20920, + "attr": {}, + "npclist": "3011_557_90072#4001_557_90071#4006_557_90076#4011_557_90079#5001_557_90079#3001_557_90079", + "npcLv": [ + 1432, + 1432, + 1432, + 1432, + 1432, + 1432 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20921": { + "npcId": 20921, + "attr": {}, + "npclist": "3012_556_90072#4002_556_90071#4007_556_90076#4012_556_90079#5002_556_90079#3002_556_90079", + "npcLv": [ + 1437, + 1437, + 1437, + 1437, + 1437, + 1437 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20922": { + "npcId": 20922, + "attr": {}, + "npclist": "3013_557_90072#4003_557_90071#4008_557_90076#4013_557_90079#5003_557_90079#3003_557_90079", + "npcLv": [ + 1437, + 1437, + 1437, + 1437, + 1437, + 1437 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20923": { + "npcId": 20923, + "attr": {}, + "npclist": "3014_559_90072#4004_559_90071#4009_559_90076#4014_559_90079#5004_559_90079#3004_559_90079", + "npcLv": [ + 1437, + 1437, + 1437, + 1437, + 1437, + 1437 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20924": { + "npcId": 20924, + "attr": {}, + "npclist": "3015_560_90072#4005_560_90071#4010_560_90076#4015_560_90079#5005_560_90079#3005_560_90079", + "npcLv": [ + 1443, + 1443, + 1443, + 1443, + 1443, + 1443 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20925": { + "npcId": 20925, + "attr": {}, + "npclist": "4001_561_90072#4006_561_90071#4011_561_90076#5001_561_90079#3001_561_90079#3006_561_90079", + "npcLv": [ + 1443, + 1443, + 1443, + 1443, + 1443, + 1443 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20926": { + "npcId": 20926, + "attr": {}, + "npclist": "4002_562_90072#4007_562_90071#4012_562_90076#5002_562_90079#3002_562_90079#3007_562_90079", + "npcLv": [ + 1443, + 1443, + 1443, + 1443, + 1443, + 1443 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20927": { + "npcId": 20927, + "attr": {}, + "npclist": "4003_563_90072#4008_563_90071#4013_563_90076#5003_563_90079#3003_563_90079#3008_563_90079", + "npcLv": [ + 1449, + 1449, + 1449, + 1449, + 1449, + 1449 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20928": { + "npcId": 20928, + "attr": {}, + "npclist": "4004_565_90072#4009_565_90071#4014_565_90076#5004_565_90079#3004_565_90079#3009_565_90079", + "npcLv": [ + 1449, + 1449, + 1449, + 1449, + 1449, + 1449 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20929": { + "npcId": 20929, + "attr": {}, + "npclist": "4005_566_90072#4010_566_90071#4015_566_90076#5005_566_90079#3005_566_90079#3010_566_90079", + "npcLv": [ + 1449, + 1449, + 1449, + 1449, + 1449, + 1449 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20930": { + "npcId": 20930, + "attr": {}, + "npclist": "4006_570_90072#4011_570_90071#5001_570_90076#3001_570_90079#3006_570_90079#3011_570_90079", + "npcLv": [ + 1455, + 1455, + 1455, + 1455, + 1455, + 1455 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20931": { + "npcId": 20931, + "attr": {}, + "npclist": "4007_566_90072#4012_566_90071#5002_566_90076#3002_566_90079#3007_566_90079#3012_566_90079", + "npcLv": [ + 1455, + 1455, + 1455, + 1455, + 1455, + 1455 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20932": { + "npcId": 20932, + "attr": {}, + "npclist": "4008_567_90072#4013_567_90071#5003_567_90076#3003_567_90079#3008_567_90079#3013_567_90079", + "npcLv": [ + 1455, + 1455, + 1455, + 1455, + 1455, + 1455 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20933": { + "npcId": 20933, + "attr": {}, + "npclist": "4009_569_90072#4014_569_90071#5004_569_90076#3004_569_90079#3009_569_90079#3014_569_90079", + "npcLv": [ + 1461, + 1461, + 1461, + 1461, + 1461, + 1461 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20934": { + "npcId": 20934, + "attr": {}, + "npclist": "4010_570_90072#4015_570_90071#5005_570_90076#3005_570_90079#3010_570_90079#3015_570_90079", + "npcLv": [ + 1461, + 1461, + 1461, + 1461, + 1461, + 1461 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20935": { + "npcId": 20935, + "attr": {}, + "npclist": "4011_571_90072#5001_571_90071#3001_571_90076#3006_571_90079#3011_571_90079#4001_571_90079", + "npcLv": [ + 1461, + 1461, + 1461, + 1461, + 1461, + 1461 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20936": { + "npcId": 20936, + "attr": {}, + "npclist": "4012_572_90072#5002_572_90071#3002_572_90076#3007_572_90079#3012_572_90079#4002_572_90079", + "npcLv": [ + 1467, + 1467, + 1467, + 1467, + 1467, + 1467 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20937": { + "npcId": 20937, + "attr": {}, + "npclist": "4013_574_90072#5003_574_90071#3003_574_90076#3008_574_90079#3013_574_90079#4003_574_90079", + "npcLv": [ + 1467, + 1467, + 1467, + 1467, + 1467, + 1467 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20938": { + "npcId": 20938, + "attr": {}, + "npclist": "4014_575_90072#5004_575_90071#3004_575_90076#3009_575_90079#3014_575_90079#4004_575_90079", + "npcLv": [ + 1467, + 1467, + 1467, + 1467, + 1467, + 1467 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20939": { + "npcId": 20939, + "attr": {}, + "npclist": "4015_576_90072#5005_576_90071#3005_576_90076#3010_576_90079#3015_576_90079#4005_576_90079", + "npcLv": [ + 1473, + 1473, + 1473, + 1473, + 1473, + 1473 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20940": { + "npcId": 20940, + "attr": {}, + "npclist": "5001_582_90072#3001_582_90071#3006_582_90076#3011_582_90079#4001_582_90079#4006_582_90079", + "npcLv": [ + 1473, + 1473, + 1473, + 1473, + 1473, + 1473 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20941": { + "npcId": 20941, + "attr": {}, + "npclist": "5002_574_90072#3002_574_90071#3007_574_90076#3012_574_90079#4002_574_90079#4007_574_90079", + "npcLv": [ + 1473, + 1473, + 1473, + 1473, + 1473, + 1473 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20942": { + "npcId": 20942, + "attr": {}, + "npclist": "5003_575_90072#3003_575_90071#3008_575_90076#3013_575_90079#4003_575_90079#4008_575_90079", + "npcLv": [ + 1479, + 1479, + 1479, + 1479, + 1479, + 1479 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20943": { + "npcId": 20943, + "attr": {}, + "npclist": "5004_576_90072#3004_576_90071#3009_576_90076#3014_576_90079#4004_576_90079#4009_576_90079", + "npcLv": [ + 1479, + 1479, + 1479, + 1479, + 1479, + 1479 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20944": { + "npcId": 20944, + "attr": {}, + "npclist": "5005_578_90072#3005_578_90071#3010_578_90076#3015_578_90079#4005_578_90079#4010_578_90079", + "npcLv": [ + 1479, + 1479, + 1479, + 1479, + 1479, + 1479 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20945": { + "npcId": 20945, + "attr": {}, + "npclist": "3001_579_90072#3006_579_90071#3011_579_90076#4001_579_90079#4006_579_90079#4011_579_90079", + "npcLv": [ + 1485, + 1485, + 1485, + 1485, + 1485, + 1485 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20946": { + "npcId": 20946, + "attr": {}, + "npclist": "3002_580_90072#3007_580_90071#3012_580_90076#4002_580_90079#4007_580_90079#4012_580_90079", + "npcLv": [ + 1485, + 1485, + 1485, + 1485, + 1485, + 1485 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20947": { + "npcId": 20947, + "attr": {}, + "npclist": "3003_581_90072#3008_581_90071#3013_581_90076#4003_581_90079#4008_581_90079#4013_581_90079", + "npcLv": [ + 1485, + 1485, + 1485, + 1485, + 1485, + 1485 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20948": { + "npcId": 20948, + "attr": {}, + "npclist": "3004_583_90072#3009_583_90071#3014_583_90076#4004_583_90079#4009_583_90079#4014_583_90079", + "npcLv": [ + 1491, + 1491, + 1491, + 1491, + 1491, + 1491 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20949": { + "npcId": 20949, + "attr": {}, + "npclist": "3005_584_90072#3010_584_90071#3015_584_90076#4005_584_90079#4010_584_90079#4015_584_90079", + "npcLv": [ + 1491, + 1491, + 1491, + 1491, + 1491, + 1491 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20950": { + "npcId": 20950, + "attr": {}, + "npclist": "3006_595_90072#3011_595_90071#4001_595_90076#4006_595_90079#4011_595_90079#5001_595_90079", + "npcLv": [ + 1491, + 1491, + 1491, + 1491, + 1491, + 1491 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20951": { + "npcId": 20951, + "attr": {}, + "npclist": "3007_596_90072#3012_596_90071#4002_596_90076#4007_596_90079#4012_596_90079#5002_596_90079", + "npcLv": [ + 1497, + 1497, + 1497, + 1497, + 1497, + 1497 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20952": { + "npcId": 20952, + "attr": {}, + "npclist": "3008_597_90072#3013_597_90071#4003_597_90076#4008_597_90079#4013_597_90079#5003_597_90079", + "npcLv": [ + 1497, + 1497, + 1497, + 1497, + 1497, + 1497 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20953": { + "npcId": 20953, + "attr": {}, + "npclist": "3009_598_90072#3014_598_90071#4004_598_90076#4009_598_90079#4014_598_90079#5004_598_90079", + "npcLv": [ + 1497, + 1497, + 1497, + 1497, + 1497, + 1497 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20954": { + "npcId": 20954, + "attr": {}, + "npclist": "3010_600_90072#3015_600_90071#4005_600_90076#4010_600_90079#4015_600_90079#5005_600_90079", + "npcLv": [ + 1503, + 1503, + 1503, + 1503, + 1503, + 1503 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20955": { + "npcId": 20955, + "attr": {}, + "npclist": "3011_601_90072#4001_601_90071#4006_601_90076#4011_601_90079#5001_601_90079#3001_601_90079", + "npcLv": [ + 1503, + 1503, + 1503, + 1503, + 1503, + 1503 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20956": { + "npcId": 20956, + "attr": {}, + "npclist": "3012_602_90072#4002_602_90071#4007_602_90076#4012_602_90079#5002_602_90079#3002_602_90079", + "npcLv": [ + 1503, + 1503, + 1503, + 1503, + 1503, + 1503 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20957": { + "npcId": 20957, + "attr": {}, + "npclist": "3013_603_90072#4003_603_90071#4008_603_90076#4013_603_90079#5003_603_90079#3003_603_90079", + "npcLv": [ + 1509, + 1509, + 1509, + 1509, + 1509, + 1509 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20958": { + "npcId": 20958, + "attr": {}, + "npclist": "3014_605_90072#4004_605_90071#4009_605_90076#4014_605_90079#5004_605_90079#3004_605_90079", + "npcLv": [ + 1509, + 1509, + 1509, + 1509, + 1509, + 1509 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20959": { + "npcId": 20959, + "attr": {}, + "npclist": "3015_606_90072#4005_606_90071#4010_606_90076#4015_606_90079#5005_606_90079#3005_606_90079", + "npcLv": [ + 1509, + 1509, + 1509, + 1509, + 1509, + 1509 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20960": { + "npcId": 20960, + "attr": {}, + "npclist": "4001_607_90072#4006_607_90071#4011_607_90076#5001_607_90079#3001_607_90079#3006_607_90079", + "npcLv": [ + 1515, + 1515, + 1515, + 1515, + 1515, + 1515 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20961": { + "npcId": 20961, + "attr": {}, + "npclist": "4002_599_90072#4007_599_90071#4012_599_90076#5002_599_90079#3002_599_90079#3007_599_90079", + "npcLv": [ + 1515, + 1515, + 1515, + 1515, + 1515, + 1515 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20962": { + "npcId": 20962, + "attr": {}, + "npclist": "4003_600_90072#4008_600_90071#4013_600_90076#5003_600_90079#3003_600_90079#3008_600_90079", + "npcLv": [ + 1515, + 1515, + 1515, + 1515, + 1515, + 1515 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20963": { + "npcId": 20963, + "attr": {}, + "npclist": "4004_601_90072#4009_601_90071#4014_601_90076#5004_601_90079#3004_601_90079#3009_601_90079", + "npcLv": [ + 1521, + 1521, + 1521, + 1521, + 1521, + 1521 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20964": { + "npcId": 20964, + "attr": {}, + "npclist": "4005_602_90072#4010_602_90071#4015_602_90076#5005_602_90079#3005_602_90079#3010_602_90079", + "npcLv": [ + 1521, + 1521, + 1521, + 1521, + 1521, + 1521 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20965": { + "npcId": 20965, + "attr": {}, + "npclist": "4006_603_90072#4011_603_90071#5001_603_90076#3001_603_90079#3006_603_90079#3011_603_90079", + "npcLv": [ + 1521, + 1521, + 1521, + 1521, + 1521, + 1521 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20966": { + "npcId": 20966, + "attr": {}, + "npclist": "4007_605_90072#4012_605_90071#5002_605_90076#3002_605_90079#3007_605_90079#3012_605_90079", + "npcLv": [ + 1527, + 1527, + 1527, + 1527, + 1527, + 1527 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20967": { + "npcId": 20967, + "attr": {}, + "npclist": "4008_606_90072#4013_606_90071#5003_606_90076#3003_606_90079#3008_606_90079#3013_606_90079", + "npcLv": [ + 1527, + 1527, + 1527, + 1527, + 1527, + 1527 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20968": { + "npcId": 20968, + "attr": {}, + "npclist": "4009_607_90072#4014_607_90071#5004_607_90076#3004_607_90079#3009_607_90079#3014_607_90079", + "npcLv": [ + 1527, + 1527, + 1527, + 1527, + 1527, + 1527 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20969": { + "npcId": 20969, + "attr": {}, + "npclist": "4010_608_90072#4015_608_90071#5005_608_90076#3005_608_90079#3010_608_90079#3015_608_90079", + "npcLv": [ + 1533, + 1533, + 1533, + 1533, + 1533, + 1533 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20970": { + "npcId": 20970, + "attr": {}, + "npclist": "4011_620_90072#5001_620_90071#3001_620_90076#3006_620_90079#3011_620_90079#4001_620_90079", + "npcLv": [ + 1533, + 1533, + 1533, + 1533, + 1533, + 1533 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20971": { + "npcId": 20971, + "attr": {}, + "npclist": "4012_606_90072#5002_606_90071#3002_606_90076#3007_606_90079#3012_606_90079#4002_606_90079", + "npcLv": [ + 1533, + 1533, + 1533, + 1533, + 1533, + 1533 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20972": { + "npcId": 20972, + "attr": {}, + "npclist": "4013_607_90072#5003_607_90071#3003_607_90076#3008_607_90079#3013_607_90079#4003_607_90079", + "npcLv": [ + 1539, + 1539, + 1539, + 1539, + 1539, + 1539 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20973": { + "npcId": 20973, + "attr": {}, + "npclist": "4014_608_90072#5004_608_90071#3004_608_90076#3009_608_90079#3014_608_90079#4004_608_90079", + "npcLv": [ + 1539, + 1539, + 1539, + 1539, + 1539, + 1539 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20974": { + "npcId": 20974, + "attr": {}, + "npclist": "4015_610_90072#5005_610_90071#3005_610_90076#3010_610_90079#3015_610_90079#4005_610_90079", + "npcLv": [ + 1539, + 1539, + 1539, + 1539, + 1539, + 1539 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20975": { + "npcId": 20975, + "attr": {}, + "npclist": "5001_612_90072#3001_612_90071#3006_612_90076#3011_612_90079#4001_612_90079#4006_612_90079", + "npcLv": [ + 1545, + 1545, + 1545, + 1545, + 1545, + 1545 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20976": { + "npcId": 20976, + "attr": {}, + "npclist": "5002_614_90072#3002_614_90071#3007_614_90076#3012_614_90079#4002_614_90079#4007_614_90079", + "npcLv": [ + 1545, + 1545, + 1545, + 1545, + 1545, + 1545 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20977": { + "npcId": 20977, + "attr": {}, + "npclist": "5003_617_90072#3003_617_90071#3008_617_90076#3013_617_90079#4003_617_90079#4008_617_90079", + "npcLv": [ + 1545, + 1545, + 1545, + 1545, + 1545, + 1545 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20978": { + "npcId": 20978, + "attr": {}, + "npclist": "5004_619_90072#3004_619_90071#3009_619_90076#3014_619_90079#4004_619_90079#4009_619_90079", + "npcLv": [ + 1551, + 1551, + 1551, + 1551, + 1551, + 1551 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20979": { + "npcId": 20979, + "attr": {}, + "npclist": "5005_622_90072#3005_622_90071#3010_622_90076#3015_622_90079#4005_622_90079#4010_622_90079", + "npcLv": [ + 1551, + 1551, + 1551, + 1551, + 1551, + 1551 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20980": { + "npcId": 20980, + "attr": {}, + "npclist": "3001_629_90072#3006_629_90071#3011_629_90076#4001_629_90079#4006_629_90079#4011_629_90079", + "npcLv": [ + 1551, + 1551, + 1551, + 1551, + 1551, + 1551 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20981": { + "npcId": 20981, + "attr": {}, + "npclist": "3002_616_90072#3007_616_90071#3012_616_90076#4002_616_90079#4007_616_90079#4012_616_90079", + "npcLv": [ + 1557, + 1557, + 1557, + 1557, + 1557, + 1557 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20982": { + "npcId": 20982, + "attr": {}, + "npclist": "3003_619_90072#3008_619_90071#3013_619_90076#4003_619_90079#4008_619_90079#4013_619_90079", + "npcLv": [ + 1557, + 1557, + 1557, + 1557, + 1557, + 1557 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20983": { + "npcId": 20983, + "attr": {}, + "npclist": "3004_621_90072#3009_621_90071#3014_621_90076#4004_621_90079#4009_621_90079#4014_621_90079", + "npcLv": [ + 1557, + 1557, + 1557, + 1557, + 1557, + 1557 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20984": { + "npcId": 20984, + "attr": {}, + "npclist": "3005_624_90072#3010_624_90071#3015_624_90076#4005_624_90079#4010_624_90079#4015_624_90079", + "npcLv": [ + 1563, + 1563, + 1563, + 1563, + 1563, + 1563 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20985": { + "npcId": 20985, + "attr": {}, + "npclist": "3006_626_90072#3011_626_90071#4001_626_90076#4006_626_90079#4011_626_90079#5001_626_90079", + "npcLv": [ + 1563, + 1563, + 1563, + 1563, + 1563, + 1563 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20986": { + "npcId": 20986, + "attr": {}, + "npclist": "3007_628_90072#3012_628_90071#4002_628_90076#4007_628_90079#4012_628_90079#5002_628_90079", + "npcLv": [ + 1563, + 1563, + 1563, + 1563, + 1563, + 1563 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20987": { + "npcId": 20987, + "attr": {}, + "npclist": "3008_631_90072#3013_631_90071#4003_631_90076#4008_631_90079#4013_631_90079#5003_631_90079", + "npcLv": [ + 1569, + 1569, + 1569, + 1569, + 1569, + 1569 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20988": { + "npcId": 20988, + "attr": {}, + "npclist": "3009_633_90072#3014_633_90071#4004_633_90076#4009_633_90079#4014_633_90079#5004_633_90079", + "npcLv": [ + 1569, + 1569, + 1569, + 1569, + 1569, + 1569 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20989": { + "npcId": 20989, + "attr": {}, + "npclist": "3010_636_90072#3015_636_90071#4005_636_90076#4010_636_90079#4015_636_90079#5005_636_90079", + "npcLv": [ + 1569, + 1569, + 1569, + 1569, + 1569, + 1569 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20990": { + "npcId": 20990, + "attr": {}, + "npclist": "3011_638_90072#4001_638_90071#4006_638_90076#4011_638_90079#5001_638_90079#3001_638_90079", + "npcLv": [ + 1575, + 1575, + 1575, + 1575, + 1575, + 1575 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20991": { + "npcId": 20991, + "attr": {}, + "npclist": "3012_630_90072#4002_630_90071#4007_630_90076#4012_630_90079#5002_630_90079#3002_630_90079", + "npcLv": [ + 1575, + 1575, + 1575, + 1575, + 1575, + 1575 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20992": { + "npcId": 20992, + "attr": {}, + "npclist": "3013_632_90072#4003_632_90071#4008_632_90076#4013_632_90079#5003_632_90079#3003_632_90079", + "npcLv": [ + 1575, + 1575, + 1575, + 1575, + 1575, + 1575 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20993": { + "npcId": 20993, + "attr": {}, + "npclist": "3014_634_90072#4004_634_90071#4009_634_90076#4014_634_90079#5004_634_90079#3004_634_90079", + "npcLv": [ + 1581, + 1581, + 1581, + 1581, + 1581, + 1581 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "20994": { + "npcId": 20994, + "attr": {}, + "npclist": "3015_637_90072#4005_637_90071#4010_637_90076#4015_637_90079#5005_637_90079#3005_637_90079", + "npcLv": [ + 1581, + 1581, + 1581, + 1581, + 1581, + 1581 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "20995": { + "npcId": 20995, + "attr": {}, + "npclist": "4001_639_90072#4006_639_90071#4011_639_90076#5001_639_90079#3001_639_90079#3006_639_90079", + "npcLv": [ + 1581, + 1581, + 1581, + 1581, + 1581, + 1581 + ], + "isboss": 1, + "ghname": "npc_ghname_5" + }, + "20996": { + "npcId": 20996, + "attr": {}, + "npclist": "4002_641_90072#4007_641_90071#4012_641_90076#5002_641_90079#3002_641_90079#3007_641_90079", + "npcLv": [ + 1587, + 1587, + 1587, + 1587, + 1587, + 1587 + ], + "isboss": 1, + "ghname": "npc_ghname_6" + }, + "20997": { + "npcId": 20997, + "attr": {}, + "npclist": "4003_644_90072#4008_644_90071#4013_644_90076#5003_644_90079#3003_644_90079#3008_644_90079", + "npcLv": [ + 1587, + 1587, + 1587, + 1587, + 1587, + 1587 + ], + "isboss": 1, + "ghname": "npc_ghname_1" + }, + "20998": { + "npcId": 20998, + "attr": {}, + "npclist": "4004_646_90072#4009_646_90071#4014_646_90076#5004_646_90079#3004_646_90079#3009_646_90079", + "npcLv": [ + 1587, + 1587, + 1587, + 1587, + 1587, + 1587 + ], + "isboss": 1, + "ghname": "npc_ghname_2" + }, + "20999": { + "npcId": 20999, + "attr": {}, + "npclist": "4005_649_90072#4010_649_90071#4015_649_90076#5005_649_90079#3005_649_90079#3010_649_90079", + "npcLv": [ + 1593, + 1593, + 1593, + 1593, + 1593, + 1593 + ], + "isboss": 1, + "ghname": "npc_ghname_3" + }, + "21000": { + "npcId": 21000, + "attr": {}, + "npclist": "4006_662_90072#4011_662_90071#5001_662_90076#3001_662_90079#3006_662_90079#3011_662_90079", + "npcLv": [ + 1593, + 1593, + 1593, + 1593, + 1593, + 1593 + ], + "isboss": 1, + "ghname": "npc_ghname_4" + }, + "30001": { + "npcId": 30001, + "attr": {}, + "npclist": "3001_15_90003#3006_15_90003#3011_15_90003#4001_15_90003#4006_15_90003#4011_15_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "30002": { + "npcId": 30002, + "attr": {}, + "npclist": "3002_25_90003#3007_25_90003#3012_25_90003#4002_25_90003#4007_25_90003#4012_25_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "30003": { + "npcId": 30003, + "attr": {}, + "npclist": "3003_40_90003#3008_40_90003#3013_40_90003#4003_40_90003#4008_40_90003#4013_40_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "30004": { + "npcId": 30004, + "attr": {}, + "npclist": "3004_50_90003#3009_50_90003#3014_50_90003#4004_50_90003#4009_50_90003#4014_50_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "30005": { + "npcId": 30005, + "attr": {}, + "npclist": "3005_60_90003#3010_60_90003#3015_60_90003#4005_60_90003#4010_60_90003#4015_60_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "30006": { + "npcId": 30006, + "attr": {}, + "npclist": "3006_70_90003#3011_70_90003#4001_70_90003#4006_70_90003#4011_70_90003#5001_70_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "30007": { + "npcId": 30007, + "attr": {}, + "npclist": "3007_80_90003#3012_80_90003#4002_80_90003#4007_80_90003#4012_80_90003#5002_80_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "30008": { + "npcId": 30008, + "attr": {}, + "npclist": "3008_90_90003#3013_90_90003#4003_90_90003#4008_90_90003#4013_90_90003#5003_90_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "30009": { + "npcId": 30009, + "attr": {}, + "npclist": "3009_100_90003#3014_100_90003#4004_100_90003#4009_100_90003#4014_100_90003#5004_100_90003", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40000": { + "npcId": 40000, + "attr": {}, + "npclist": "1001_70_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40001": { + "npcId": 40001, + "attr": {}, + "npclist": "1002_71_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40002": { + "npcId": 40002, + "attr": {}, + "npclist": "2001_72_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40003": { + "npcId": 40003, + "attr": {}, + "npclist": "2002_73_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40004": { + "npcId": 40004, + "attr": {}, + "npclist": "3001_74_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40005": { + "npcId": 40005, + "attr": {}, + "npclist": "3002_72_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40006": { + "npcId": 40006, + "attr": {}, + "npclist": "3003_73_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40007": { + "npcId": 40007, + "attr": {}, + "npclist": "3004_74_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40008": { + "npcId": 40008, + "attr": {}, + "npclist": "3005_75_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40009": { + "npcId": 40009, + "attr": {}, + "npclist": "3006_76_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40010": { + "npcId": 40010, + "attr": {}, + "npclist": "3007_74_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40011": { + "npcId": 40011, + "attr": {}, + "npclist": "3008_75_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40012": { + "npcId": 40012, + "attr": {}, + "npclist": "3009_76_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40013": { + "npcId": 40013, + "attr": {}, + "npclist": "3010_77_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40014": { + "npcId": 40014, + "attr": {}, + "npclist": "3011_78_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40015": { + "npcId": 40015, + "attr": {}, + "npclist": "3012_76_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40016": { + "npcId": 40016, + "attr": {}, + "npclist": "3013_77_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40017": { + "npcId": 40017, + "attr": {}, + "npclist": "3014_78_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40018": { + "npcId": 40018, + "attr": {}, + "npclist": "3015_79_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40019": { + "npcId": 40019, + "attr": {}, + "npclist": "4001_80_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40020": { + "npcId": 40020, + "attr": {}, + "npclist": "4002_78_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40021": { + "npcId": 40021, + "attr": {}, + "npclist": "4003_79_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40022": { + "npcId": 40022, + "attr": {}, + "npclist": "4004_80_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40023": { + "npcId": 40023, + "attr": {}, + "npclist": "4005_81_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40024": { + "npcId": 40024, + "attr": {}, + "npclist": "4006_82_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40025": { + "npcId": 40025, + "attr": {}, + "npclist": "4007_80_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40026": { + "npcId": 40026, + "attr": {}, + "npclist": "4008_81_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40027": { + "npcId": 40027, + "attr": {}, + "npclist": "4009_82_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40028": { + "npcId": 40028, + "attr": {}, + "npclist": "4010_83_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40029": { + "npcId": 40029, + "attr": {}, + "npclist": "4011_84_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40030": { + "npcId": 40030, + "attr": {}, + "npclist": "4012_82_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40031": { + "npcId": 40031, + "attr": {}, + "npclist": "4013_83_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40032": { + "npcId": 40032, + "attr": {}, + "npclist": "4014_84_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40033": { + "npcId": 40033, + "attr": {}, + "npclist": "4015_85_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40034": { + "npcId": 40034, + "attr": {}, + "npclist": "3001_86_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40035": { + "npcId": 40035, + "attr": {}, + "npclist": "3002_84_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40036": { + "npcId": 40036, + "attr": {}, + "npclist": "3003_85_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40037": { + "npcId": 40037, + "attr": {}, + "npclist": "3004_86_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40038": { + "npcId": 40038, + "attr": {}, + "npclist": "3005_87_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40039": { + "npcId": 40039, + "attr": {}, + "npclist": "3006_88_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40040": { + "npcId": 40040, + "attr": {}, + "npclist": "3007_86_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40041": { + "npcId": 40041, + "attr": {}, + "npclist": "3008_87_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40042": { + "npcId": 40042, + "attr": {}, + "npclist": "3009_88_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40043": { + "npcId": 40043, + "attr": {}, + "npclist": "3010_89_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40044": { + "npcId": 40044, + "attr": {}, + "npclist": "3011_90_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40045": { + "npcId": 40045, + "attr": {}, + "npclist": "3012_88_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40046": { + "npcId": 40046, + "attr": {}, + "npclist": "3013_89_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40047": { + "npcId": 40047, + "attr": {}, + "npclist": "3014_90_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40048": { + "npcId": 40048, + "attr": {}, + "npclist": "3015_91_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40049": { + "npcId": 40049, + "attr": {}, + "npclist": "4001_92_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40050": { + "npcId": 40050, + "attr": {}, + "npclist": "4002_90_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40051": { + "npcId": 40051, + "attr": {}, + "npclist": "4003_91_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40052": { + "npcId": 40052, + "attr": {}, + "npclist": "4004_92_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40053": { + "npcId": 40053, + "attr": {}, + "npclist": "4005_93_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40054": { + "npcId": 40054, + "attr": {}, + "npclist": "4006_94_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40055": { + "npcId": 40055, + "attr": {}, + "npclist": "4007_92_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40056": { + "npcId": 40056, + "attr": {}, + "npclist": "4008_93_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40057": { + "npcId": 40057, + "attr": {}, + "npclist": "4009_94_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40058": { + "npcId": 40058, + "attr": {}, + "npclist": "4010_95_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40059": { + "npcId": 40059, + "attr": {}, + "npclist": "4011_96_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40060": { + "npcId": 40060, + "attr": {}, + "npclist": "4012_97_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40061": { + "npcId": 40061, + "attr": {}, + "npclist": "4013_98_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40062": { + "npcId": 40062, + "attr": {}, + "npclist": "4014_99_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40063": { + "npcId": 40063, + "attr": {}, + "npclist": "4015_100_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40064": { + "npcId": 40064, + "attr": {}, + "npclist": "3001_100_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40065": { + "npcId": 40065, + "attr": {}, + "npclist": "3002_101_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40066": { + "npcId": 40066, + "attr": {}, + "npclist": "3003_102_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40067": { + "npcId": 40067, + "attr": {}, + "npclist": "3004_103_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40068": { + "npcId": 40068, + "attr": {}, + "npclist": "3005_104_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40069": { + "npcId": 40069, + "attr": {}, + "npclist": "3006_104_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40070": { + "npcId": 40070, + "attr": {}, + "npclist": "3007_105_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40071": { + "npcId": 40071, + "attr": {}, + "npclist": "3008_106_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40072": { + "npcId": 40072, + "attr": {}, + "npclist": "3009_107_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40073": { + "npcId": 40073, + "attr": {}, + "npclist": "3010_108_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40074": { + "npcId": 40074, + "attr": {}, + "npclist": "3011_108_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40075": { + "npcId": 40075, + "attr": {}, + "npclist": "3012_109_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40076": { + "npcId": 40076, + "attr": {}, + "npclist": "3013_110_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40077": { + "npcId": 40077, + "attr": {}, + "npclist": "3014_111_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40078": { + "npcId": 40078, + "attr": {}, + "npclist": "3015_112_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40079": { + "npcId": 40079, + "attr": {}, + "npclist": "4001_112_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40080": { + "npcId": 40080, + "attr": {}, + "npclist": "4002_113_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40081": { + "npcId": 40081, + "attr": {}, + "npclist": "4003_114_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40082": { + "npcId": 40082, + "attr": {}, + "npclist": "4004_115_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40083": { + "npcId": 40083, + "attr": {}, + "npclist": "4005_116_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40084": { + "npcId": 40084, + "attr": {}, + "npclist": "4006_116_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40085": { + "npcId": 40085, + "attr": {}, + "npclist": "4007_117_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40086": { + "npcId": 40086, + "attr": {}, + "npclist": "4008_118_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40087": { + "npcId": 40087, + "attr": {}, + "npclist": "4009_119_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40088": { + "npcId": 40088, + "attr": {}, + "npclist": "4010_120_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40089": { + "npcId": 40089, + "attr": {}, + "npclist": "4011_120_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40090": { + "npcId": 40090, + "attr": {}, + "npclist": "4012_121_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40091": { + "npcId": 40091, + "attr": {}, + "npclist": "4013_122_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40092": { + "npcId": 40092, + "attr": {}, + "npclist": "4014_123_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40093": { + "npcId": 40093, + "attr": {}, + "npclist": "4015_124_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40094": { + "npcId": 40094, + "attr": {}, + "npclist": "5001_124_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40095": { + "npcId": 40095, + "attr": {}, + "npclist": "5002_125_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40096": { + "npcId": 40096, + "attr": {}, + "npclist": "5003_126_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40097": { + "npcId": 40097, + "attr": {}, + "npclist": "5004_127_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40098": { + "npcId": 40098, + "attr": {}, + "npclist": "5005_128_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40099": { + "npcId": 40099, + "attr": {}, + "npclist": "3001_128_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40100": { + "npcId": 40100, + "attr": {}, + "npclist": "3002_129_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40101": { + "npcId": 40101, + "attr": {}, + "npclist": "3003_130_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40102": { + "npcId": 40102, + "attr": {}, + "npclist": "3004_131_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40103": { + "npcId": 40103, + "attr": {}, + "npclist": "3005_132_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40104": { + "npcId": 40104, + "attr": {}, + "npclist": "3006_132_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40105": { + "npcId": 40105, + "attr": {}, + "npclist": "3007_133_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40106": { + "npcId": 40106, + "attr": {}, + "npclist": "3008_134_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40107": { + "npcId": 40107, + "attr": {}, + "npclist": "3009_135_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40108": { + "npcId": 40108, + "attr": {}, + "npclist": "3010_136_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40109": { + "npcId": 40109, + "attr": {}, + "npclist": "3011_136_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40110": { + "npcId": 40110, + "attr": {}, + "npclist": "3012_137_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40111": { + "npcId": 40111, + "attr": {}, + "npclist": "3013_138_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40112": { + "npcId": 40112, + "attr": {}, + "npclist": "3014_139_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40113": { + "npcId": 40113, + "attr": {}, + "npclist": "3015_140_90093", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40114": { + "npcId": 40114, + "attr": {}, + "npclist": "4001_140_90094", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40115": { + "npcId": 40115, + "attr": {}, + "npclist": "4002_141_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40116": { + "npcId": 40116, + "attr": {}, + "npclist": "4003_142_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40117": { + "npcId": 40117, + "attr": {}, + "npclist": "4004_143_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40118": { + "npcId": 40118, + "attr": {}, + "npclist": "4005_144_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40119": { + "npcId": 40119, + "attr": {}, + "npclist": "4006_145_90096", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40120": { + "npcId": 40120, + "attr": {}, + "npclist": "4007_146_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40121": { + "npcId": 40121, + "attr": {}, + "npclist": "4008_147_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40122": { + "npcId": 40122, + "attr": {}, + "npclist": "4009_148_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40123": { + "npcId": 40123, + "attr": {}, + "npclist": "4010_149_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40124": { + "npcId": 40124, + "attr": {}, + "npclist": "4011_150_90096", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40125": { + "npcId": 40125, + "attr": {}, + "npclist": "4012_151_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40126": { + "npcId": 40126, + "attr": {}, + "npclist": "4013_152_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40127": { + "npcId": 40127, + "attr": {}, + "npclist": "4014_153_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40128": { + "npcId": 40128, + "attr": {}, + "npclist": "4015_154_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40129": { + "npcId": 40129, + "attr": {}, + "npclist": "5001_155_90096", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40130": { + "npcId": 40130, + "attr": {}, + "npclist": "5002_156_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40131": { + "npcId": 40131, + "attr": {}, + "npclist": "5003_157_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40132": { + "npcId": 40132, + "attr": {}, + "npclist": "5004_158_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40133": { + "npcId": 40133, + "attr": {}, + "npclist": "5005_159_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40134": { + "npcId": 40134, + "attr": {}, + "npclist": "3001_160_90096", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40135": { + "npcId": 40135, + "attr": {}, + "npclist": "3002_161_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40136": { + "npcId": 40136, + "attr": {}, + "npclist": "3003_162_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40137": { + "npcId": 40137, + "attr": {}, + "npclist": "3004_163_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40138": { + "npcId": 40138, + "attr": {}, + "npclist": "3005_164_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40139": { + "npcId": 40139, + "attr": {}, + "npclist": "3006_165_90096", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40140": { + "npcId": 40140, + "attr": {}, + "npclist": "3007_166_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40141": { + "npcId": 40141, + "attr": {}, + "npclist": "3008_167_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40142": { + "npcId": 40142, + "attr": {}, + "npclist": "3009_168_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40143": { + "npcId": 40143, + "attr": {}, + "npclist": "3010_169_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40144": { + "npcId": 40144, + "attr": {}, + "npclist": "3011_170_90096", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40145": { + "npcId": 40145, + "attr": {}, + "npclist": "3012_171_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40146": { + "npcId": 40146, + "attr": {}, + "npclist": "3013_172_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40147": { + "npcId": 40147, + "attr": {}, + "npclist": "3014_173_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40148": { + "npcId": 40148, + "attr": {}, + "npclist": "3015_174_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40149": { + "npcId": 40149, + "attr": {}, + "npclist": "4001_175_90096", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40150": { + "npcId": 40150, + "attr": {}, + "npclist": "4002_176_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40151": { + "npcId": 40151, + "attr": {}, + "npclist": "4003_177_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40152": { + "npcId": 40152, + "attr": {}, + "npclist": "4004_178_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40153": { + "npcId": 40153, + "attr": {}, + "npclist": "4005_179_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40154": { + "npcId": 40154, + "attr": {}, + "npclist": "4006_180_90096", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40155": { + "npcId": 40155, + "attr": {}, + "npclist": "4007_181_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40156": { + "npcId": 40156, + "attr": {}, + "npclist": "4008_182_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40157": { + "npcId": 40157, + "attr": {}, + "npclist": "4009_183_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40158": { + "npcId": 40158, + "attr": {}, + "npclist": "4010_184_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40159": { + "npcId": 40159, + "attr": {}, + "npclist": "4011_185_90096", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40160": { + "npcId": 40160, + "attr": {}, + "npclist": "4012_186_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40161": { + "npcId": 40161, + "attr": {}, + "npclist": "4013_187_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40162": { + "npcId": 40162, + "attr": {}, + "npclist": "4014_188_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40163": { + "npcId": 40163, + "attr": {}, + "npclist": "4015_189_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40164": { + "npcId": 40164, + "attr": {}, + "npclist": "5001_190_90096", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40165": { + "npcId": 40165, + "attr": {}, + "npclist": "5002_191_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40166": { + "npcId": 40166, + "attr": {}, + "npclist": "5003_192_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40167": { + "npcId": 40167, + "attr": {}, + "npclist": "5004_193_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40168": { + "npcId": 40168, + "attr": {}, + "npclist": "5005_194_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40169": { + "npcId": 40169, + "attr": {}, + "npclist": "3001_195_90096", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40170": { + "npcId": 40170, + "attr": {}, + "npclist": "3002_196_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40171": { + "npcId": 40171, + "attr": {}, + "npclist": "3003_197_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40172": { + "npcId": 40172, + "attr": {}, + "npclist": "3004_198_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40173": { + "npcId": 40173, + "attr": {}, + "npclist": "3005_199_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40174": { + "npcId": 40174, + "attr": {}, + "npclist": "3006_200_90096", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40175": { + "npcId": 40175, + "attr": {}, + "npclist": "3007_201_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40176": { + "npcId": 40176, + "attr": {}, + "npclist": "3008_202_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40177": { + "npcId": 40177, + "attr": {}, + "npclist": "3009_203_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40178": { + "npcId": 40178, + "attr": {}, + "npclist": "3010_204_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40179": { + "npcId": 40179, + "attr": {}, + "npclist": "3011_205_90096", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40180": { + "npcId": 40180, + "attr": {}, + "npclist": "3012_206_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40181": { + "npcId": 40181, + "attr": {}, + "npclist": "3013_207_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40182": { + "npcId": 40182, + "attr": {}, + "npclist": "3014_208_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40183": { + "npcId": 40183, + "attr": {}, + "npclist": "3015_209_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40184": { + "npcId": 40184, + "attr": {}, + "npclist": "4001_210_90096", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40185": { + "npcId": 40185, + "attr": {}, + "npclist": "4002_211_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40186": { + "npcId": 40186, + "attr": {}, + "npclist": "4003_212_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40187": { + "npcId": 40187, + "attr": {}, + "npclist": "4004_213_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40188": { + "npcId": 40188, + "attr": {}, + "npclist": "4005_214_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40189": { + "npcId": 40189, + "attr": {}, + "npclist": "4006_215_90096", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40190": { + "npcId": 40190, + "attr": {}, + "npclist": "4007_216_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40191": { + "npcId": 40191, + "attr": {}, + "npclist": "4008_217_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40192": { + "npcId": 40192, + "attr": {}, + "npclist": "4009_218_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40193": { + "npcId": 40193, + "attr": {}, + "npclist": "4010_219_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40194": { + "npcId": 40194, + "attr": {}, + "npclist": "4011_220_90096", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40195": { + "npcId": 40195, + "attr": {}, + "npclist": "4012_221_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40196": { + "npcId": 40196, + "attr": {}, + "npclist": "4013_222_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40197": { + "npcId": 40197, + "attr": {}, + "npclist": "4014_223_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40198": { + "npcId": 40198, + "attr": {}, + "npclist": "4015_224_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40199": { + "npcId": 40199, + "attr": {}, + "npclist": "5001_225_90096", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40200": { + "npcId": 40200, + "attr": {}, + "npclist": "5002_226_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40201": { + "npcId": 40201, + "attr": {}, + "npclist": "5003_227_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40202": { + "npcId": 40202, + "attr": {}, + "npclist": "5004_228_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40203": { + "npcId": 40203, + "attr": {}, + "npclist": "5005_229_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40204": { + "npcId": 40204, + "attr": {}, + "npclist": "3001_230_90096", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40205": { + "npcId": 40205, + "attr": {}, + "npclist": "3002_231_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40206": { + "npcId": 40206, + "attr": {}, + "npclist": "3003_232_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40207": { + "npcId": 40207, + "attr": {}, + "npclist": "3004_233_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40208": { + "npcId": 40208, + "attr": {}, + "npclist": "3005_234_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40209": { + "npcId": 40209, + "attr": {}, + "npclist": "3006_235_90096", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40210": { + "npcId": 40210, + "attr": {}, + "npclist": "3007_236_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40211": { + "npcId": 40211, + "attr": {}, + "npclist": "3008_237_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40212": { + "npcId": 40212, + "attr": {}, + "npclist": "3009_238_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40213": { + "npcId": 40213, + "attr": {}, + "npclist": "3010_239_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40214": { + "npcId": 40214, + "attr": {}, + "npclist": "3011_240_90096", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40215": { + "npcId": 40215, + "attr": {}, + "npclist": "3012_241_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40216": { + "npcId": 40216, + "attr": {}, + "npclist": "3013_242_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40217": { + "npcId": 40217, + "attr": {}, + "npclist": "3014_243_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40218": { + "npcId": 40218, + "attr": {}, + "npclist": "3015_244_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40219": { + "npcId": 40219, + "attr": {}, + "npclist": "4001_245_90096", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40220": { + "npcId": 40220, + "attr": {}, + "npclist": "4002_246_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40221": { + "npcId": 40221, + "attr": {}, + "npclist": "4003_247_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40222": { + "npcId": 40222, + "attr": {}, + "npclist": "4004_248_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40223": { + "npcId": 40223, + "attr": {}, + "npclist": "4005_249_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40224": { + "npcId": 40224, + "attr": {}, + "npclist": "4006_250_90096", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40225": { + "npcId": 40225, + "attr": {}, + "npclist": "4007_251_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40226": { + "npcId": 40226, + "attr": {}, + "npclist": "4008_252_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40227": { + "npcId": 40227, + "attr": {}, + "npclist": "4009_253_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40228": { + "npcId": 40228, + "attr": {}, + "npclist": "4010_254_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40229": { + "npcId": 40229, + "attr": {}, + "npclist": "4011_255_90096", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40230": { + "npcId": 40230, + "attr": {}, + "npclist": "4012_256_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40231": { + "npcId": 40231, + "attr": {}, + "npclist": "4013_257_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40232": { + "npcId": 40232, + "attr": {}, + "npclist": "4014_258_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40233": { + "npcId": 40233, + "attr": {}, + "npclist": "4015_259_90095", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40234": { + "npcId": 40234, + "attr": {}, + "npclist": "5001_260_90096", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40235": { + "npcId": 40235, + "attr": {}, + "npclist": "5002_261_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40236": { + "npcId": 40236, + "attr": {}, + "npclist": "5003_262_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40237": { + "npcId": 40237, + "attr": {}, + "npclist": "5004_263_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40238": { + "npcId": 40238, + "attr": {}, + "npclist": "5005_264_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40239": { + "npcId": 40239, + "attr": {}, + "npclist": "3001_265_90098", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40240": { + "npcId": 40240, + "attr": {}, + "npclist": "3002_266_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40241": { + "npcId": 40241, + "attr": {}, + "npclist": "3003_267_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40242": { + "npcId": 40242, + "attr": {}, + "npclist": "3004_268_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40243": { + "npcId": 40243, + "attr": {}, + "npclist": "3005_269_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40244": { + "npcId": 40244, + "attr": {}, + "npclist": "3006_270_90098", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40245": { + "npcId": 40245, + "attr": {}, + "npclist": "3007_271_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40246": { + "npcId": 40246, + "attr": {}, + "npclist": "3008_272_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40247": { + "npcId": 40247, + "attr": {}, + "npclist": "3009_273_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40248": { + "npcId": 40248, + "attr": {}, + "npclist": "3010_274_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40249": { + "npcId": 40249, + "attr": {}, + "npclist": "3011_275_90098", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40250": { + "npcId": 40250, + "attr": {}, + "npclist": "3012_276_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40251": { + "npcId": 40251, + "attr": {}, + "npclist": "3013_277_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40252": { + "npcId": 40252, + "attr": {}, + "npclist": "3014_278_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40253": { + "npcId": 40253, + "attr": {}, + "npclist": "3015_279_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40254": { + "npcId": 40254, + "attr": {}, + "npclist": "4001_280_90098", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40255": { + "npcId": 40255, + "attr": {}, + "npclist": "4002_281_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40256": { + "npcId": 40256, + "attr": {}, + "npclist": "4003_282_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40257": { + "npcId": 40257, + "attr": {}, + "npclist": "4004_283_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40258": { + "npcId": 40258, + "attr": {}, + "npclist": "4005_284_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40259": { + "npcId": 40259, + "attr": {}, + "npclist": "4006_285_90098", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40260": { + "npcId": 40260, + "attr": {}, + "npclist": "4007_286_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40261": { + "npcId": 40261, + "attr": {}, + "npclist": "4008_287_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40262": { + "npcId": 40262, + "attr": {}, + "npclist": "4009_288_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40263": { + "npcId": 40263, + "attr": {}, + "npclist": "4010_289_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40264": { + "npcId": 40264, + "attr": {}, + "npclist": "4011_290_90098", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40265": { + "npcId": 40265, + "attr": {}, + "npclist": "4012_291_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40266": { + "npcId": 40266, + "attr": {}, + "npclist": "4013_292_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40267": { + "npcId": 40267, + "attr": {}, + "npclist": "4014_293_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40268": { + "npcId": 40268, + "attr": {}, + "npclist": "4015_294_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40269": { + "npcId": 40269, + "attr": {}, + "npclist": "5001_295_90098", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40270": { + "npcId": 40270, + "attr": {}, + "npclist": "5002_296_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40271": { + "npcId": 40271, + "attr": {}, + "npclist": "5003_297_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40272": { + "npcId": 40272, + "attr": {}, + "npclist": "5004_298_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40273": { + "npcId": 40273, + "attr": {}, + "npclist": "5005_299_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40274": { + "npcId": 40274, + "attr": {}, + "npclist": "3001_300_90098", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40275": { + "npcId": 40275, + "attr": {}, + "npclist": "3002_301_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40276": { + "npcId": 40276, + "attr": {}, + "npclist": "3003_302_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40277": { + "npcId": 40277, + "attr": {}, + "npclist": "3004_303_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40278": { + "npcId": 40278, + "attr": {}, + "npclist": "3005_304_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40279": { + "npcId": 40279, + "attr": {}, + "npclist": "3006_305_90098", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40280": { + "npcId": 40280, + "attr": {}, + "npclist": "3007_306_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40281": { + "npcId": 40281, + "attr": {}, + "npclist": "3008_307_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40282": { + "npcId": 40282, + "attr": {}, + "npclist": "3009_308_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40283": { + "npcId": 40283, + "attr": {}, + "npclist": "3010_309_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40284": { + "npcId": 40284, + "attr": {}, + "npclist": "3011_310_90098", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40285": { + "npcId": 40285, + "attr": {}, + "npclist": "3012_311_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40286": { + "npcId": 40286, + "attr": {}, + "npclist": "3013_312_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40287": { + "npcId": 40287, + "attr": {}, + "npclist": "3014_313_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40288": { + "npcId": 40288, + "attr": {}, + "npclist": "3015_314_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40289": { + "npcId": 40289, + "attr": {}, + "npclist": "4001_315_90098", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40290": { + "npcId": 40290, + "attr": {}, + "npclist": "4002_316_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40291": { + "npcId": 40291, + "attr": {}, + "npclist": "4003_317_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40292": { + "npcId": 40292, + "attr": {}, + "npclist": "4004_318_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40293": { + "npcId": 40293, + "attr": {}, + "npclist": "4005_319_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40294": { + "npcId": 40294, + "attr": {}, + "npclist": "4006_320_90098", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40295": { + "npcId": 40295, + "attr": {}, + "npclist": "4007_321_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40296": { + "npcId": 40296, + "attr": {}, + "npclist": "4008_322_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40297": { + "npcId": 40297, + "attr": {}, + "npclist": "4009_323_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40298": { + "npcId": 40298, + "attr": {}, + "npclist": "4010_324_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40299": { + "npcId": 40299, + "attr": {}, + "npclist": "4011_325_90098", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40300": { + "npcId": 40300, + "attr": {}, + "npclist": "4012_326_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40301": { + "npcId": 40301, + "attr": {}, + "npclist": "4013_327_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40302": { + "npcId": 40302, + "attr": {}, + "npclist": "4014_328_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40303": { + "npcId": 40303, + "attr": {}, + "npclist": "4015_329_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40304": { + "npcId": 40304, + "attr": {}, + "npclist": "5001_330_90098", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40305": { + "npcId": 40305, + "attr": {}, + "npclist": "5002_331_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40306": { + "npcId": 40306, + "attr": {}, + "npclist": "5003_332_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40307": { + "npcId": 40307, + "attr": {}, + "npclist": "5004_333_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40308": { + "npcId": 40308, + "attr": {}, + "npclist": "5005_334_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40309": { + "npcId": 40309, + "attr": {}, + "npclist": "3001_335_90098", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40310": { + "npcId": 40310, + "attr": {}, + "npclist": "3002_336_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40311": { + "npcId": 40311, + "attr": {}, + "npclist": "3003_337_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40312": { + "npcId": 40312, + "attr": {}, + "npclist": "3004_338_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40313": { + "npcId": 40313, + "attr": {}, + "npclist": "3005_339_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40314": { + "npcId": 40314, + "attr": {}, + "npclist": "3006_340_90098", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40315": { + "npcId": 40315, + "attr": {}, + "npclist": "3007_341_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40316": { + "npcId": 40316, + "attr": {}, + "npclist": "3008_342_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40317": { + "npcId": 40317, + "attr": {}, + "npclist": "3009_343_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40318": { + "npcId": 40318, + "attr": {}, + "npclist": "3010_344_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40319": { + "npcId": 40319, + "attr": {}, + "npclist": "3011_345_90098", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40320": { + "npcId": 40320, + "attr": {}, + "npclist": "3012_346_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40321": { + "npcId": 40321, + "attr": {}, + "npclist": "3013_347_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40322": { + "npcId": 40322, + "attr": {}, + "npclist": "3014_348_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40323": { + "npcId": 40323, + "attr": {}, + "npclist": "3015_349_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40324": { + "npcId": 40324, + "attr": {}, + "npclist": "4001_350_90098", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40325": { + "npcId": 40325, + "attr": {}, + "npclist": "4002_351_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40326": { + "npcId": 40326, + "attr": {}, + "npclist": "4003_352_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40327": { + "npcId": 40327, + "attr": {}, + "npclist": "4004_353_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40328": { + "npcId": 40328, + "attr": {}, + "npclist": "4005_354_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40329": { + "npcId": 40329, + "attr": {}, + "npclist": "4006_355_90098", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40330": { + "npcId": 40330, + "attr": {}, + "npclist": "4007_356_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40331": { + "npcId": 40331, + "attr": {}, + "npclist": "4008_357_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40332": { + "npcId": 40332, + "attr": {}, + "npclist": "4009_358_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40333": { + "npcId": 40333, + "attr": {}, + "npclist": "4010_359_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40334": { + "npcId": 40334, + "attr": {}, + "npclist": "4011_360_90098", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40335": { + "npcId": 40335, + "attr": {}, + "npclist": "4012_361_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40336": { + "npcId": 40336, + "attr": {}, + "npclist": "4013_362_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40337": { + "npcId": 40337, + "attr": {}, + "npclist": "4014_363_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40338": { + "npcId": 40338, + "attr": {}, + "npclist": "4015_364_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40339": { + "npcId": 40339, + "attr": {}, + "npclist": "5001_365_90098", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40340": { + "npcId": 40340, + "attr": {}, + "npclist": "5002_366_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40341": { + "npcId": 40341, + "attr": {}, + "npclist": "5003_367_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40342": { + "npcId": 40342, + "attr": {}, + "npclist": "5004_368_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40343": { + "npcId": 40343, + "attr": {}, + "npclist": "5005_369_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40344": { + "npcId": 40344, + "attr": {}, + "npclist": "3001_370_90098", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40345": { + "npcId": 40345, + "attr": {}, + "npclist": "3002_371_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40346": { + "npcId": 40346, + "attr": {}, + "npclist": "3003_372_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40347": { + "npcId": 40347, + "attr": {}, + "npclist": "3004_373_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40348": { + "npcId": 40348, + "attr": {}, + "npclist": "3005_374_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40349": { + "npcId": 40349, + "attr": {}, + "npclist": "3006_375_90098", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40350": { + "npcId": 40350, + "attr": {}, + "npclist": "3007_376_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40351": { + "npcId": 40351, + "attr": {}, + "npclist": "3008_377_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40352": { + "npcId": 40352, + "attr": {}, + "npclist": "3009_378_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40353": { + "npcId": 40353, + "attr": {}, + "npclist": "3010_379_90097", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40354": { + "npcId": 40354, + "attr": {}, + "npclist": "3011_380_90098", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40355": { + "npcId": 40355, + "attr": {}, + "npclist": "3012_381_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40356": { + "npcId": 40356, + "attr": {}, + "npclist": "3013_382_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40357": { + "npcId": 40357, + "attr": {}, + "npclist": "3014_383_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40358": { + "npcId": 40358, + "attr": {}, + "npclist": "3015_384_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40359": { + "npcId": 40359, + "attr": {}, + "npclist": "4001_385_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40360": { + "npcId": 40360, + "attr": {}, + "npclist": "4002_386_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40361": { + "npcId": 40361, + "attr": {}, + "npclist": "4003_387_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40362": { + "npcId": 40362, + "attr": {}, + "npclist": "4004_388_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40363": { + "npcId": 40363, + "attr": {}, + "npclist": "4005_389_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40364": { + "npcId": 40364, + "attr": {}, + "npclist": "4006_390_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40365": { + "npcId": 40365, + "attr": {}, + "npclist": "4007_391_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40366": { + "npcId": 40366, + "attr": {}, + "npclist": "4008_392_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40367": { + "npcId": 40367, + "attr": {}, + "npclist": "4009_393_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40368": { + "npcId": 40368, + "attr": {}, + "npclist": "4010_394_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40369": { + "npcId": 40369, + "attr": {}, + "npclist": "4011_395_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40370": { + "npcId": 40370, + "attr": {}, + "npclist": "4012_396_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40371": { + "npcId": 40371, + "attr": {}, + "npclist": "4013_397_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40372": { + "npcId": 40372, + "attr": {}, + "npclist": "4014_398_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40373": { + "npcId": 40373, + "attr": {}, + "npclist": "4015_399_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40374": { + "npcId": 40374, + "attr": {}, + "npclist": "5001_400_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40375": { + "npcId": 40375, + "attr": {}, + "npclist": "5002_401_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40376": { + "npcId": 40376, + "attr": {}, + "npclist": "5003_402_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40377": { + "npcId": 40377, + "attr": {}, + "npclist": "5004_403_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40378": { + "npcId": 40378, + "attr": {}, + "npclist": "5005_404_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40379": { + "npcId": 40379, + "attr": {}, + "npclist": "3001_405_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40380": { + "npcId": 40380, + "attr": {}, + "npclist": "3002_406_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40381": { + "npcId": 40381, + "attr": {}, + "npclist": "3003_407_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40382": { + "npcId": 40382, + "attr": {}, + "npclist": "3004_408_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40383": { + "npcId": 40383, + "attr": {}, + "npclist": "3005_409_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40384": { + "npcId": 40384, + "attr": {}, + "npclist": "3006_410_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40385": { + "npcId": 40385, + "attr": {}, + "npclist": "3007_411_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40386": { + "npcId": 40386, + "attr": {}, + "npclist": "3008_412_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40387": { + "npcId": 40387, + "attr": {}, + "npclist": "3009_413_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40388": { + "npcId": 40388, + "attr": {}, + "npclist": "3010_414_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40389": { + "npcId": 40389, + "attr": {}, + "npclist": "3011_415_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40390": { + "npcId": 40390, + "attr": {}, + "npclist": "3012_416_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40391": { + "npcId": 40391, + "attr": {}, + "npclist": "3013_417_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40392": { + "npcId": 40392, + "attr": {}, + "npclist": "3014_418_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40393": { + "npcId": 40393, + "attr": {}, + "npclist": "3015_419_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40394": { + "npcId": 40394, + "attr": {}, + "npclist": "4001_420_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40395": { + "npcId": 40395, + "attr": {}, + "npclist": "4002_421_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40396": { + "npcId": 40396, + "attr": {}, + "npclist": "4003_422_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40397": { + "npcId": 40397, + "attr": {}, + "npclist": "4004_423_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40398": { + "npcId": 40398, + "attr": {}, + "npclist": "4005_424_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40399": { + "npcId": 40399, + "attr": {}, + "npclist": "4006_425_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40400": { + "npcId": 40400, + "attr": {}, + "npclist": "4007_426_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40401": { + "npcId": 40401, + "attr": {}, + "npclist": "4008_427_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40402": { + "npcId": 40402, + "attr": {}, + "npclist": "4009_428_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40403": { + "npcId": 40403, + "attr": {}, + "npclist": "4010_429_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40404": { + "npcId": 40404, + "attr": {}, + "npclist": "4011_430_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40405": { + "npcId": 40405, + "attr": {}, + "npclist": "4012_431_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40406": { + "npcId": 40406, + "attr": {}, + "npclist": "4013_432_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40407": { + "npcId": 40407, + "attr": {}, + "npclist": "4014_433_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40408": { + "npcId": 40408, + "attr": {}, + "npclist": "4015_434_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40409": { + "npcId": 40409, + "attr": {}, + "npclist": "5001_435_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40410": { + "npcId": 40410, + "attr": {}, + "npclist": "5002_436_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40411": { + "npcId": 40411, + "attr": {}, + "npclist": "5003_437_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40412": { + "npcId": 40412, + "attr": {}, + "npclist": "5004_438_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40413": { + "npcId": 40413, + "attr": {}, + "npclist": "5005_439_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40414": { + "npcId": 40414, + "attr": {}, + "npclist": "3001_440_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40415": { + "npcId": 40415, + "attr": {}, + "npclist": "3002_441_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40416": { + "npcId": 40416, + "attr": {}, + "npclist": "3003_442_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40417": { + "npcId": 40417, + "attr": {}, + "npclist": "3004_443_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40418": { + "npcId": 40418, + "attr": {}, + "npclist": "3005_444_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40419": { + "npcId": 40419, + "attr": {}, + "npclist": "3006_445_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40420": { + "npcId": 40420, + "attr": {}, + "npclist": "3007_446_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40421": { + "npcId": 40421, + "attr": {}, + "npclist": "3008_447_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40422": { + "npcId": 40422, + "attr": {}, + "npclist": "3009_448_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40423": { + "npcId": 40423, + "attr": {}, + "npclist": "3010_449_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40424": { + "npcId": 40424, + "attr": {}, + "npclist": "3011_450_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40425": { + "npcId": 40425, + "attr": {}, + "npclist": "3012_451_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40426": { + "npcId": 40426, + "attr": {}, + "npclist": "3013_452_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40427": { + "npcId": 40427, + "attr": {}, + "npclist": "3014_453_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40428": { + "npcId": 40428, + "attr": {}, + "npclist": "3015_454_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40429": { + "npcId": 40429, + "attr": {}, + "npclist": "4001_455_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40430": { + "npcId": 40430, + "attr": {}, + "npclist": "4002_456_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40431": { + "npcId": 40431, + "attr": {}, + "npclist": "4003_457_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40432": { + "npcId": 40432, + "attr": {}, + "npclist": "4004_458_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40433": { + "npcId": 40433, + "attr": {}, + "npclist": "4005_459_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40434": { + "npcId": 40434, + "attr": {}, + "npclist": "4006_460_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40435": { + "npcId": 40435, + "attr": {}, + "npclist": "4007_461_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40436": { + "npcId": 40436, + "attr": {}, + "npclist": "4008_462_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40437": { + "npcId": 40437, + "attr": {}, + "npclist": "4009_463_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40438": { + "npcId": 40438, + "attr": {}, + "npclist": "4010_464_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40439": { + "npcId": 40439, + "attr": {}, + "npclist": "4011_465_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40440": { + "npcId": 40440, + "attr": {}, + "npclist": "4012_466_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40441": { + "npcId": 40441, + "attr": {}, + "npclist": "4013_467_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40442": { + "npcId": 40442, + "attr": {}, + "npclist": "4014_468_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40443": { + "npcId": 40443, + "attr": {}, + "npclist": "4015_469_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40444": { + "npcId": 40444, + "attr": {}, + "npclist": "5001_470_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40445": { + "npcId": 40445, + "attr": {}, + "npclist": "5002_471_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40446": { + "npcId": 40446, + "attr": {}, + "npclist": "5003_472_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40447": { + "npcId": 40447, + "attr": {}, + "npclist": "5004_473_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40448": { + "npcId": 40448, + "attr": {}, + "npclist": "5005_474_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40449": { + "npcId": 40449, + "attr": {}, + "npclist": "3001_475_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40450": { + "npcId": 40450, + "attr": {}, + "npclist": "3002_476_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40451": { + "npcId": 40451, + "attr": {}, + "npclist": "3003_477_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40452": { + "npcId": 40452, + "attr": {}, + "npclist": "3004_478_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40453": { + "npcId": 40453, + "attr": {}, + "npclist": "3005_479_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40454": { + "npcId": 40454, + "attr": {}, + "npclist": "3006_480_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40455": { + "npcId": 40455, + "attr": {}, + "npclist": "3007_481_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40456": { + "npcId": 40456, + "attr": {}, + "npclist": "3008_482_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40457": { + "npcId": 40457, + "attr": {}, + "npclist": "3009_483_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40458": { + "npcId": 40458, + "attr": {}, + "npclist": "3010_484_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40459": { + "npcId": 40459, + "attr": {}, + "npclist": "3011_485_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40460": { + "npcId": 40460, + "attr": {}, + "npclist": "3012_486_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40461": { + "npcId": 40461, + "attr": {}, + "npclist": "3013_487_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40462": { + "npcId": 40462, + "attr": {}, + "npclist": "3014_488_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40463": { + "npcId": 40463, + "attr": {}, + "npclist": "3015_489_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40464": { + "npcId": 40464, + "attr": {}, + "npclist": "4001_490_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40465": { + "npcId": 40465, + "attr": {}, + "npclist": "4002_491_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40466": { + "npcId": 40466, + "attr": {}, + "npclist": "4003_492_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40467": { + "npcId": 40467, + "attr": {}, + "npclist": "4004_493_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40468": { + "npcId": 40468, + "attr": {}, + "npclist": "4005_494_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40469": { + "npcId": 40469, + "attr": {}, + "npclist": "4006_495_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40470": { + "npcId": 40470, + "attr": {}, + "npclist": "4007_496_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40471": { + "npcId": 40471, + "attr": {}, + "npclist": "4008_497_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40472": { + "npcId": 40472, + "attr": {}, + "npclist": "4009_498_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40473": { + "npcId": 40473, + "attr": {}, + "npclist": "4010_499_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40474": { + "npcId": 40474, + "attr": {}, + "npclist": "4011_500_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40475": { + "npcId": 40475, + "attr": {}, + "npclist": "4012_501_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40476": { + "npcId": 40476, + "attr": {}, + "npclist": "4013_502_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40477": { + "npcId": 40477, + "attr": {}, + "npclist": "4014_503_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40478": { + "npcId": 40478, + "attr": {}, + "npclist": "4015_504_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40479": { + "npcId": 40479, + "attr": {}, + "npclist": "5001_505_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40480": { + "npcId": 40480, + "attr": {}, + "npclist": "5002_506_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40481": { + "npcId": 40481, + "attr": {}, + "npclist": "5003_507_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40482": { + "npcId": 40482, + "attr": {}, + "npclist": "5004_508_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40483": { + "npcId": 40483, + "attr": {}, + "npclist": "5005_509_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40484": { + "npcId": 40484, + "attr": {}, + "npclist": "3001_510_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40485": { + "npcId": 40485, + "attr": {}, + "npclist": "3002_511_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40486": { + "npcId": 40486, + "attr": {}, + "npclist": "3003_512_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40487": { + "npcId": 40487, + "attr": {}, + "npclist": "3004_513_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40488": { + "npcId": 40488, + "attr": {}, + "npclist": "3005_514_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40489": { + "npcId": 40489, + "attr": {}, + "npclist": "3006_515_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40490": { + "npcId": 40490, + "attr": {}, + "npclist": "3007_516_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40491": { + "npcId": 40491, + "attr": {}, + "npclist": "3008_517_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40492": { + "npcId": 40492, + "attr": {}, + "npclist": "3009_518_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40493": { + "npcId": 40493, + "attr": {}, + "npclist": "3010_519_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "40494": { + "npcId": 40494, + "attr": {}, + "npclist": "3011_520_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_5" + }, + "40495": { + "npcId": 40495, + "attr": {}, + "npclist": "3012_521_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_6" + }, + "40496": { + "npcId": 40496, + "attr": {}, + "npclist": "3013_522_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_1" + }, + "40497": { + "npcId": 40497, + "attr": {}, + "npclist": "3014_523_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_2" + }, + "40498": { + "npcId": 40498, + "attr": {}, + "npclist": "3015_524_90099", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_3" + }, + "40499": { + "npcId": 40499, + "attr": {}, + "npclist": "4001_525_90100", + "npcLv": [], + "isboss": 0, + "ghname": "npc_ghname_4" + }, + "50001": { + "npcId": 50001, + "attr": {}, + "npclist": "3002_35_90003#1001_35_90003#2002_35_90003#3010_35_90003#3009_35_90003#3005_35_90003", + "npcLv": [ + 40, + 40, + 40, + 40, + 40, + 40 + ], + "isboss": 0, + "ghname": "npc_ghname_1", + "npcname": "slzd_npc_name_1" + }, + "50002": { + "npcId": 50002, + "attr": {}, + "npclist": "1002_35_90003#3015_35_90003#3003_35_90003#1001_35_90003#3002_35_90003#3015_35_90003", + "npcLv": [ + 40, + 40, + 40, + 40, + 40, + 40 + ], + "isboss": 0, + "ghname": "npc_ghname_2", + "npcname": "slzd_npc_name_2" + }, + "50003": { + "npcId": 50003, + "attr": {}, + "npclist": "2002_35_90003#3006_35_90003#4002_35_90003#3005_35_90003#3014_35_90003#2001_35_90003", + "npcLv": [ + 40, + 40, + 40, + 40, + 40, + 40 + ], + "isboss": 0, + "ghname": "npc_ghname_3", + "npcname": "slzd_npc_name_3" + }, + "50004": { + "npcId": 50004, + "attr": {}, + "npclist": "3003_35_90003#1002_35_90003#1001_35_90003#3011_35_90003#3001_35_90003#3007_35_90003", + "npcLv": [ + 40, + 40, + 40, + 40, + 40, + 40 + ], + "isboss": 0, + "ghname": "npc_ghname_4", + "npcname": "slzd_npc_name_4" + }, + "50005": { + "npcId": 50005, + "attr": {}, + "npclist": "3009_35_90003#3006_35_90003#4003_35_90003#1002_35_90003#3002_35_90003#3003_35_90003", + "npcLv": [ + 40, + 40, + 40, + 40, + 40, + 40 + ], + "isboss": 0, + "ghname": "npc_ghname_5", + "npcname": "slzd_npc_name_5" + }, + "50006": { + "npcId": 50006, + "attr": {}, + "npclist": "3004_35_90003#4004_35_90003#3007_35_90003#2002_35_90003#1001_35_90003#3015_35_90003", + "npcLv": [ + 40, + 40, + 40, + 40, + 40, + 40 + ], + "isboss": 0, + "ghname": "npc_ghname_6", + "npcname": "slzd_npc_name_6" + }, + "50007": { + "npcId": 50007, + "attr": {}, + "npclist": "4005_35_90003#2002_35_90003#3004_35_90003#3010_35_90003#1002_35_90003#4001_35_90003", + "npcLv": [ + 40, + 40, + 40, + 40, + 40, + 40 + ], + "isboss": 0, + "ghname": "npc_ghname_1", + "npcname": "slzd_npc_name_2" + }, + "50008": { + "npcId": 50008, + "attr": {}, + "npclist": "1002_35_90003#3014_35_90003#3009_35_90003#3011_35_90003#3001_35_90003#3003_35_90003", + "npcLv": [ + 40, + 40, + 40, + 40, + 40, + 40 + ], + "isboss": 0, + "ghname": "npc_ghname_2", + "npcname": "slzd_npc_name_4" + }, + "50009": { + "npcId": 50009, + "attr": {}, + "npclist": "3005_35_90003#3006_35_90003#3010_35_90003#1002_35_90003#3015_35_90003#2001_35_90003", + "npcLv": [ + 40, + 40, + 40, + 40, + 40, + 40 + ], + "isboss": 0, + "ghname": "npc_ghname_3", + "npcname": "slzd_npc_name_6" + }, + "50010": { + "npcId": 50010, + "attr": {}, + "npclist": "2001_35_90003#3003_35_90003#3001_35_90003#4005_35_90003#3012_35_90003#1002_35_90003", + "npcLv": [ + 40, + 40, + 40, + 40, + 40, + 40 + ], + "isboss": 0, + "ghname": "npc_ghname_4", + "npcname": "slzd_npc_name_5" + } +} \ No newline at end of file diff --git a/src/json/openCond.json b/src/json/openCond.json new file mode 100644 index 0000000..06b9fcf --- /dev/null +++ b/src/json/openCond.json @@ -0,0 +1,1266 @@ +{ + "zc_btn_wx": { + "name": "zc_btn_wx", + "undefined": "维修厂", + "and": { + "lv": 24 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_1", + "display": { + "lv": 24 + } + }, + "zc_btn_zjdj": { + "name": "zc_btn_zjdj", + "undefined": "主角的家", + "and": { + "lv": 15 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_2", + "display": { + "lv": 15 + } + }, + "zc_btn_jt": { + "name": "zc_btn_jt", + "undefined": "教会", + "and": { + "lv": 7 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_3", + "display": { + "lv": 7 + } + }, + "zc_btn_slzb": { + "name": "zc_btn_slzb", + "undefined": "势力本部", + "and": { + "lv": 21 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_4", + "display": { + "lv": 21 + } + }, + "zc_btn_lg": { + "name": "zc_btn_lg", + "undefined": "悬赏", + "and": { + "lv": 35 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_5", + "display": { + "lv": 35 + } + }, + "mingwang_main": { + "name": "mingwang_main", + "undefined": "名望", + "and": { + "lv": 32 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_6", + "display": { + "lv": 32 + } + }, + "paihangbang_main": { + "name": "paihangbang_main", + "undefined": "排行", + "and": { + "lv": 17 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_7", + "display": { + "lv": 17 + } + }, + "haoyou": { + "name": "haoyou", + "undefined": "好友", + "and": { + "lv": 28 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_8", + "display": { + "lv": 28 + } + }, + "btn_sp": { + "name": "btn_sp", + "undefined": "饰品", + "and": { + "lv": 25 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_10", + "display": { + "lv": 25 + } + }, + "btn_pj": { + "name": "btn_pj", + "undefined": "配件", + "and": { + "lv": 50, + "openTime": 7 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_11", + "display": { + "lv": 50, + "openTime": 7 + } + }, + "btn_zs": { + "name": "btn_zs", + "undefined": "专属装备", + "and": { + "herolv": 45, + "openTime": 3 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_12", + "display": { + "herolv": 45, + "openTime": 2 + } + }, + "btn_qn": { + "name": "btn_qn", + "undefined": "潜能觉醒", + "and": { + "herolv": 45, + "openTime": 19 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_13", + "display": { + "herolv": 45, + "openTime": 18 + } + }, + "btn_tf": { + "name": "btn_tf", + "undefined": "天赋觉醒", + "and": { + "heroJieji": 9 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_14", + "display": { + "heroJieji": 9 + } + }, + "chuzhanzhenxing": { + "name": "chuzhanzhenxing", + "undefined": "阵型", + "and": { + "lv": 30, + "szHeroNums": 6 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_15", + "display": { + "lv": 30, + "szHeroNums": 6 + } + }, + "equi_qh": { + "name": "equi_qh", + "undefined": "强化", + "and": { + "lv": 1 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_16", + "display": { + "lv": 1 + } + }, + "equi_sx": { + "name": "equi_sx", + "undefined": "升星", + "and": { + "openTime": 9, + "equiplv": 90 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_17", + "display": { + "openTime": 9, + "equiplv": 90 + } + }, + "equi_tj": { + "name": "equi_tj", + "undefined": "调校", + "and": { + "openTime": 15, + "equiplv": 120 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_18", + "display": { + "openTime": 15 + } + }, + "peijian_qh": { + "name": "peijian_qh", + "undefined": "配件强化", + "and": { + "lv": 50 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_19", + "display": { + "lv": 50 + } + }, + "peijian_jinjie": { + "name": "peijian_jinjie", + "undefined": "配件进阶", + "and": { + "lv": 50 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_20", + "display": { + "lv": 50 + } + }, + "kuaisutanxian": { + "name": "kuaisutanxian", + "undefined": "快速探险", + "and": { + "lv": 24 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_21", + "display": { + "lv": 24 + } + }, + "gonglukuangbiao": { + "name": "gonglukuangbiao", + "undefined": "公路狂飙", + "and": { + "lv": 30 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_22", + "display": { + "lv": 30 + } + }, + "jingjichang": { + "name": "jingjichang", + "undefined": "游轮竞技", + "and": { + "lv": 17 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_23", + "display": { + "lv": 17 + } + }, + "pata": { + "name": "pata", + "undefined": "黑暗塔", + "and": { + "lv": 20 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_24", + "display": { + "lv": 20 + } + }, + "tfhd_main": { + "name": "tfhd_main", + "undefined": "讨伐海盗", + "and": { + "lv": 50, + "openTime": 15 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_25", + "display": "{\"lv\":50\"openTime\":15}" + }, + "ganbutexun_main": { + "name": "ganbutexun_main", + "undefined": "干部特训", + "and": { + "lv": 43, + "openTime": 4 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_26", + "display": { + "lv": 43, + "openTime": 4 + } + }, + "dixialeitai_paiqian": { + "name": "dixialeitai_paiqian", + "undefined": "搏击俱乐部", + "and": { + "lv": 55, + "openTime": 19 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_27", + "display": { + "lv": 55, + "openTime": 19 + } + }, + "meirishilian": { + "name": "meirishilian", + "undefined": "物资筹集", + "and": { + "lv": 23 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_28", + "display": { + "lv": 23 + } + }, + "kongbuzhanzheng": { + "name": "kongbuzhanzheng", + "undefined": "恐怖战争", + "and": { + "lv": 45, + "openTime": 6 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_29", + "display": { + "lv": 45, + "openTime": 6 + } + }, + "qjzzd": { + "name": "qjzzd", + "undefined": "清缴真主党", + "and": { + "lv": 40 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_30", + "display": { + "lv": 40 + } + }, + "dpzd_main": { + "name": "dpzd_main", + "undefined": "地盘占领", + "and": { + "lv": 22 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_31", + "display": { + "lv": 22 + } + }, + "shilizhengdou": { + "name": "shilizhengdou", + "undefined": "海岛争霸", + "and": { + "lv": 42, + "openTime": 3 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_32", + "display": { + "lv": 42, + "openTime": 3 + } + }, + "clsl_main": { + "name": "clsl_main", + "undefined": "丛林狩猎", + "and": { + "lv": 52, + "openTime": 13 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_33", + "display": { + "lv": 52, + "openTime": 13 + } + }, + "heibangzhengba": { + "name": "heibangzhengba", + "undefined": "黑帮激战", + "and": { + "lv": 41, + "openTime": 2 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_34", + "display": { + "lv": 41, + "openTime": 2 + } + }, + "tielongsidou": { + "name": "tielongsidou", + "undefined": "铁笼死斗", + "and": { + "lv": 44, + "openTime": 5 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_35", + "display": { + "lv": 44, + "openTime": 5 + } + }, + "fight3": { + "name": "fight3", + "undefined": "战斗3倍速", + "and": { + "lv": 30 + }, + "or": { + "vip": 3 + }, + "time": 0, + "tips": "openCond_tips_36", + "display": { + "lv": 30 + } + }, + "fightskip": { + "name": "fightskip", + "undefined": "战斗跳过", + "and": { + "lv": 60 + }, + "or": { + "vip": 5 + }, + "time": 10, + "tips": "openCond_tips_37", + "display": { + "lv": 60 + } + }, + "liaotian": { + "name": "liaotian", + "undefined": "聊天", + "and": { + "lv": 18 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_38", + "display": { + "lv": 18 + } + }, + "wzrybm": { + "name": "wzrybm", + "undefined": "铁笼死斗报名", + "and": { + "lv": 44, + "openTime": 5 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_35", + "display": { + "lv": 44, + "openTime": 5 + } + }, + "yongbingzhuzhen": { + "name": "yongbingzhuzhen", + "undefined": "助战", + "and": { + "lv": 30, + "szHeroNums": 6 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_40", + "display": { + "lv": 30, + "szHeroNums": 6 + } + }, + "tielongsidou_baoming": { + "name": "tielongsidou_baoming", + "undefined": "铁笼死斗", + "and": { + "lv": 44, + "openTime": 5 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_35", + "display": { + "lv": 44, + "openTime": 5 + } + }, + "tielongsidou_dld": { + "name": "tielongsidou_dld", + "undefined": "铁笼死斗", + "and": { + "lv": 44, + "openTime": 5 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_35", + "display": { + "lv": 44, + "openTime": 5 + } + }, + "cjrw": { + "name": "cjrw", + "undefined": "成就任务", + "and": { + "lv": 1 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_41", + "display": { + "lv": 1 + } + }, + "mrrw": { + "name": "mrrw", + "undefined": "每日任务", + "and": { + "lv": 7 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_42", + "display": { + "lv": 7 + } + }, + "教会仓库": { + "name": "教会仓库", + "undefined": "教会仓库", + "and": { + "lv": 50, + "openTime": 7 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_45", + "display": { + "lv": 50, + "openTime": 7 + } + }, + "shop_1": { + "name": "shop_1", + "undefined": "杂货店", + "and": { + "lv": 5 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_46", + "display": { + "lv": 5 + } + }, + "shop_2": { + "name": "shop_2", + "undefined": "势力商店", + "and": { + "lv": 20 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_47", + "display": { + "lv": 20 + } + }, + "shop_3": { + "name": "shop_3", + "undefined": "战争商店", + "and": { + "lv": 44, + "openTime": 6 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_48", + "display": { + "lv": 44, + "openTime": 6 + } + }, + "shop_4": { + "name": "shop_4", + "undefined": "饰品商店", + "and": { + "lv": 30 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_49", + "display": { + "lv": 30 + } + }, + "shop_5": { + "name": "shop_5", + "undefined": "杂货", + "and": { + "lv": 18 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_50", + "display": { + "lv": 18 + } + }, + "shop_6": { + "name": "shop_6", + "undefined": "紫装", + "and": { + "lv": 18 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_51", + "display": { + "lv": 18 + } + }, + "shop_7": { + "name": "shop_7", + "undefined": "奖励", + "and": { + "lv": 18 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_52", + "display": { + "lv": 18 + } + }, + "shop_8": { + "name": "shop_8", + "undefined": "人才市场", + "and": { + "lv": 15 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_53", + "display": { + "lv": 15 + } + }, + "shop_9": { + "name": "shop_9", + "undefined": "配件商店", + "and": { + "lv": 50 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_54", + "display": { + "lv": 50 + } + }, + "shop_10": { + "name": "shop_10", + "undefined": "荣誉商店", + "and": { + "lv": 17 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_55", + "display": { + "lv": 17 + } + }, + "shop_11": { + "name": "shop_11", + "undefined": "军功商店", + "and": { + "lv": 40 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_56", + "display": { + "lv": 40 + } + }, + "shop_12": { + "name": "shop_12", + "undefined": "擂台商店", + "and": { + "lv": 74 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_57", + "display": { + "lv": 74 + } + }, + "shoucanggui": { + "name": "shoucanggui", + "undefined": "收藏柜", + "and": { + "openTime": 2 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_43", + "display": { + "openTime": 2 + } + }, + "onekeyxuanshang": { + "name": "onekeyxuanshang", + "undefined": "悬赏一键悬赏", + "and": { + "vip": 3 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_58", + "display": { + "vip": 3 + } + }, + "fasttask": { + "name": "fasttask", + "undefined": "探险任务", + "and": { + "lv": 6 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_58", + "display": { + "lv": 6 + } + }, + "gldd": { + "name": "gldd", + "undefined": "管理调度", + "and": { + "lv": 7 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_59", + "display": { + "lv": 7 + } + }, + "zc_btn_hs": { + "name": "zc_btn_hs", + "undefined": "黑市", + "and": { + "lv": 24 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_60", + "display": { + "lv": 24 + } + }, + "zc_btn_jg": { + "name": "zc_btn_jg", + "undefined": "酒馆", + "and": { + "lv": 3 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_61", + "display": { + "lv": 3 + } + }, + "zc_btn_mt": { + "name": "zc_btn_mt", + "undefined": "码头", + "and": { + "lv": 17 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_62", + "display": { + "lv": 17 + } + }, + "zc_btn_zhd": { + "name": "zc_btn_zhd", + "undefined": "商店建筑", + "and": { + "lv": 1 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_63", + "display": { + "lv": 1 + } + }, + "shouchong": { + "name": "shouchong", + "undefined": "首充", + "and": { + "mapId": 20 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_64", + "display": { + "mapId": 20 + } + }, + "kaifukuanghuan": { + "name": "kaifukuanghuan", + "undefined": "开服狂欢", + "and": { + "lv": 15 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_65", + "display": { + "lv": 15 + } + }, + "cz_jijin": { + "name": "cz_jijin", + "undefined": "基金入口", + "and": { + "lv": 21 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_66", + "display": { + "lv": 31 + } + }, + "jijin": { + "name": "jijin", + "undefined": "基金", + "and": { + "lv": 21 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_67", + "display": { + "lv": 31 + } + }, + "jijin_gkjj": { + "name": "jijin_gkjj", + "undefined": "关卡基金", + "and": { + "lv": 21 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_68", + "display": { + "lv": 31 + } + }, + "jijin_tbtxz": { + "name": "jijin_tbtxz", + "undefined": "特别通行证", + "and": { + "lv": 21 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_69", + "display": { + "lv": 31 + } + }, + "jijin_tszl": { + "name": "jijin_tszl", + "undefined": "天数基金", + "and": { + "lv": 31, + "openTime": 2 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_70", + "display": { + "lv": 31, + "openTime": 2 + } + }, + "yuedujijin": { + "name": "yuedujijin", + "undefined": "月度基金", + "and": { + "lv": 24 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_71", + "display": { + "lv": 24 + } + }, + "zhanling": { + "name": "zhanling", + "undefined": "追杀令", + "and": { + "lv": 21 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_72", + "display": { + "lv": 21 + } + }, + "dengludali": { + "name": "dengludali", + "undefined": "登录大礼(7日)", + "and": { + "lv": 13 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_73", + "display": { + "lv": 13 + } + }, + "yibaichou": { + "name": "yibaichou", + "undefined": "百抽活动", + "and": { + "lv": 7 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_74", + "display": { + "lv": 7 + } + }, + "xinfupeiyang": { + "name": "xinfupeiyang", + "undefined": "心腹培养", + "and": { + "mapId": 20 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_75", + "display": { + "mapId": 20 + } + }, + "huobanzhaomu": { + "name": "huobanzhaomu", + "undefined": "伙伴招募", + "and": { + "mapId": 50 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_76", + "display": { + "mapId": 50 + } + }, + "xinshoulibao": { + "name": "xinshoulibao", + "undefined": "新手礼包", + "and": { + "vip": 5 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_77", + "display": { + "vip": 5 + } + }, + "leijichongzhi": { + "name": "leijichongzhi", + "undefined": "累计充值", + "and": { + "mapId": 20 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_78", + "display": { + "mapId": 20 + } + }, + "diaoluoduihuan": { + "name": "diaoluoduihuan", + "undefined": "掉落兑换", + "and": { + "openTime": 8 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_79", + "display": { + "openTime": 8 + } + }, + "rencaijihua": { + "name": "rencaijihua", + "undefined": "人才计划", + "and": { + "lv": 23 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_80", + "display": { + "lv": 23 + } + }, + "zc_img6": { + "name": "zc_img6", + "undefined": "每日签到", + "and": { + "lv": 13 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_81", + "display": { + "lv": 13 + } + }, + "dianfengrongyao": { + "name": "dianfengrongyao", + "undefined": "巅峰荣耀", + "and": { + "lv": 20 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_82", + "display": { + "lv": 20 + } + }, + "tuisonglibao": { + "name": "tuisonglibao", + "undefined": "推送礼包", + "and": { + "lv": 31 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_83", + "display": { + "lv": 30 + } + }, + "hs_btn_tqlb": { + "name": "hs_btn_tqlb", + "undefined": "特权礼包", + "and": { + "lv": 24 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_84", + "display": { + "lv": 24 + } + }, + "hs_btn_ndj": { + "name": "hs_btn_ndj", + "undefined": "扭蛋机", + "and": { + "lv": 26 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_85", + "display": { + "lv": 26 + } + }, + "hs_btn_yk": { + "name": "hs_btn_yk", + "undefined": "月卡", + "and": { + "lv": 24 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_86", + "display": { + "lv": 24 + } + }, + "hs_btn_zsk": { + "name": "hs_btn_zsk", + "undefined": "终身卡", + "and": { + "lv": 24 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_87", + "display": { + "lv": 24 + } + }, + "hs_btn_mrjx": { + "name": "hs_btn_mrjx", + "undefined": "每日精选", + "and": { + "lv": 24 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_88", + "display": { + "lv": 24 + } + }, + "hs_btn_jthl": { + "name": "hs_btn_jthl", + "undefined": "积天豪礼", + "and": { + "lv": 26 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_89", + "display": { + "lv": 26 + } + }, + "hs_btn_zlb": { + "name": "hs_btn_zlb", + "undefined": "周礼包", + "and": { + "lv": 26 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_90", + "display": { + "lv": 26 + } + }, + "shangcheng": { + "name": "shangcheng", + "undefined": "商城", + "and": { + "lv": 21 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_91", + "display": { + "lv": 21 + } + }, + "fuli": { + "name": "fuli", + "undefined": "福利", + "and": { + "lv": 13 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_92", + "display": { + "lv": 13 + } + }, + "xianshihuodong": { + "name": "xianshihuodong", + "undefined": "限时活动", + "and": { + "lv": 15 + }, + "or": {}, + "time": 0, + "tips": "openCond_tips_93", + "display": { + "lv": 15 + } + } +} \ No newline at end of file diff --git a/src/json/openFun.json b/src/json/openFun.json new file mode 100644 index 0000000..ae942a9 --- /dev/null +++ b/src/json/openFun.json @@ -0,0 +1,325 @@ +{ + "1": { + "id": 1, + "lv": 0, + "name": "intr_open_name_1", + "undefined": "丛林狩猎" + }, + "2": { + "id": 2, + "lv": 0, + "name": "intr_open_name_2", + "undefined": "调校" + }, + "3": { + "id": 3, + "lv": 0, + "name": "intr_open_name_3", + "undefined": "恐怖战争" + }, + "4": { + "id": 4, + "lv": 0, + "name": "intr_open_name_4", + "undefined": "潜能觉醒" + }, + "5": { + "id": 5, + "lv": 0, + "name": "intr_open_name_5", + "undefined": "升星" + }, + "6": { + "id": 6, + "lv": 0, + "name": "intr_open_name_6", + "undefined": "天赋觉醒" + }, + "7": { + "id": 7, + "lv": 0, + "name": "intr_open_name_7", + "undefined": "铁笼死斗" + }, + "8": { + "id": 8, + "lv": 0, + "name": "intr_open_name_8", + "undefined": "阵型" + }, + "9": { + "id": 9, + "lv": 1, + "name": "intr_open_name_9", + "undefined": "道具" + }, + "10": { + "id": 10, + "lv": 1, + "name": "intr_open_name_10", + "undefined": "干部" + }, + "11": { + "id": 11, + "lv": 1, + "name": "intr_open_name_11", + "undefined": "干部助战" + }, + "12": { + "id": 12, + "lv": 1, + "name": "intr_open_name_12", + "undefined": "挂机" + }, + "13": { + "id": 13, + "lv": 1, + "name": "intr_open_name_13", + "undefined": "伙伴招募" + }, + "14": { + "id": 14, + "lv": 1, + "name": "intr_open_name_14", + "undefined": "进阶" + }, + "15": { + "id": 15, + "lv": 1, + "name": "intr_open_name_15", + "undefined": "累计充值" + }, + "16": { + "id": 16, + "lv": 1, + "name": "intr_open_name_16", + "undefined": "聊天" + }, + "17": { + "id": 17, + "lv": 1, + "name": "intr_open_name_17", + "undefined": "配件" + }, + "18": { + "id": 18, + "lv": 1, + "name": "intr_open_name_18", + "undefined": "七日累充" + }, + "19": { + "id": 19, + "lv": 1, + "name": "intr_open_name_19", + "undefined": "签到" + }, + "20": { + "id": 20, + "lv": 1, + "name": "intr_open_name_20", + "undefined": "任务" + }, + "21": { + "id": 21, + "lv": 1, + "name": "intr_open_name_21", + "undefined": "上阵" + }, + "22": { + "id": 22, + "lv": 1, + "name": "intr_open_name_22", + "undefined": "升级" + }, + "23": { + "id": 23, + "lv": 1, + "name": "intr_open_name_23", + "undefined": "市场" + }, + "24": { + "id": 24, + "lv": 1, + "name": "intr_open_name_24", + "undefined": "饰品" + }, + "25": { + "id": 25, + "lv": 1, + "name": "intr_open_name_25", + "undefined": "碎片" + }, + "26": { + "id": 26, + "lv": 1, + "name": "intr_open_name_26", + "undefined": "挑战BOSS" + }, + "27": { + "id": 27, + "lv": 1, + "name": "intr_open_name_27", + "undefined": "头像" + }, + "28": { + "id": 28, + "lv": 1, + "name": "intr_open_name_28", + "undefined": "新手礼包" + }, + "29": { + "id": 29, + "lv": 1, + "name": "intr_open_name_29", + "undefined": "饮酒屋" + }, + "30": { + "id": 30, + "lv": 1, + "name": "intr_open_name_30", + "undefined": "邮件" + }, + "31": { + "id": 31, + "lv": 1, + "name": "intr_open_name_31", + "undefined": "杂货屋" + }, + "32": { + "id": 32, + "lv": 1, + "name": "intr_open_name_32", + "undefined": "装备" + }, + "33": { + "id": 33, + "lv": 1, + "name": "intr_open_name_33", + "undefined": "装备" + }, + "34": { + "id": 34, + "lv": 1, + "name": "intr_open_name_34", + "undefined": "总览" + }, + "35": { + "id": 35, + "lv": 7, + "name": "intr_open_name_35", + "undefined": "教会", + "describe": "intr_open_describe_1" + }, + "36": { + "id": 36, + "lv": 21, + "name": "intr_open_name_36", + "undefined": "势力本部", + "describe": "intr_open_describe_2" + }, + "37": { + "id": 37, + "lv": 24, + "name": "intr_open_name_37", + "undefined": "快速探险", + "describe": "intr_open_describe_3" + }, + "38": { + "id": 38, + "lv": 35, + "name": "intr_open_name_38", + "undefined": "悬赏", + "describe": "intr_open_describe_4" + }, + "39": { + "id": 39, + "lv": 24, + "name": "intr_open_name_39", + "undefined": "维修厂", + "describe": "intr_open_describe_5" + }, + "40": { + "id": 40, + "lv": 15, + "name": "intr_open_name_40", + "undefined": "主角的家", + "describe": "intr_open_describe_6" + }, + "41": { + "id": 41, + "lv": 1, + "name": "intr_open_name_41", + "undefined": "强化", + "describe": "intr_open_describe_7" + }, + "42": { + "id": 42, + "lv": 17, + "name": "intr_open_name_43", + "undefined": "游轮竞技", + "describe": "intr_open_describe_9" + }, + "43": { + "id": 43, + "lv": 28, + "name": "intr_open_name_44", + "undefined": "好友", + "describe": "intr_open_describe_10" + }, + "44": { + "id": 44, + "lv": 20, + "name": "intr_open_name_45", + "undefined": "黑暗塔", + "describe": "intr_open_describe_11" + }, + "45": { + "id": 45, + "lv": 17, + "name": "intr_open_name_46", + "undefined": "排行", + "describe": "intr_open_describe_12" + }, + "46": { + "id": 46, + "lv": 23, + "name": "intr_open_name_47", + "undefined": "物资缴获", + "describe": "intr_open_describe_13" + }, + "47": { + "id": 47, + "lv": 22, + "name": "intr_open_name_48", + "undefined": "地盘占领", + "describe": "intr_open_describe_14" + }, + "48": { + "id": 48, + "lv": 30, + "name": "intr_open_name_49", + "undefined": "公路狂飙", + "describe": "intr_open_describe_15" + }, + "49": { + "id": 49, + "lv": 32, + "name": "intr_open_name_50", + "undefined": "名望", + "describe": "intr_open_describe_16" + }, + "50": { + "id": 50, + "lv": 25, + "name": "intr_open_name_51", + "undefined": "饰品", + "describe": "intr_open_describe_17" + }, + "51": { + "id": 51, + "lv": 40, + "name": "intr_open_name_53", + "undefined": "清缴真主党", + "describe": "intr_open_describe_19" + } +} \ No newline at end of file diff --git a/src/json/other.json5 b/src/json/other.json5 new file mode 100644 index 0000000..41c61f4 --- /dev/null +++ b/src/json/other.json5 @@ -0,0 +1,15 @@ +{ + item614: [ + { lv: [0, 0], dlz: 50040 }, + { lv: [1, 1], dlz: 50040 }, + { lv: [2, 2], dlz: 50041 }, + { lv: [3, 3], dlz: 50042 }, + { lv: [4, 4], dlz: 50043 }, + { lv: [5, 5], dlz: 50044 }, + { lv: [6, 6], dlz: 50045 }, + { lv: [7, 7], dlz: 50046 }, + { lv: [8, 8], dlz: 50047 }, + { lv: [9, 9], dlz: 50048 }, + { lv: [10, 10], dlz: 50049 }, + ] +} \ No newline at end of file diff --git a/src/json/pata.json b/src/json/pata.json new file mode 100644 index 0000000..6dd87e7 --- /dev/null +++ b/src/json/pata.json @@ -0,0 +1,19947 @@ +{ + "1": { + "id": 1, + "npcid": 15001, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 50000 + }, + { + "a": "item", + "t": "23", + "n": 2000 + } + ], + "quickChallenge": 0 + }, + "2": { + "id": 2, + "npcid": 15002, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 50000 + }, + { + "a": "item", + "t": "23", + "n": 2800 + } + ], + "quickChallenge": 0 + }, + "3": { + "id": 3, + "npcid": 15003, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 50000 + }, + { + "a": "item", + "t": "23", + "n": 3300 + } + ], + "quickChallenge": 0 + }, + "4": { + "id": 4, + "npcid": 15004, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 50000 + }, + { + "a": "item", + "t": "23", + "n": 3800 + } + ], + "quickChallenge": 0 + }, + "5": { + "id": 5, + "npcid": 15005, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 50000 + }, + { + "a": "item", + "t": "23", + "n": 4200 + } + ], + "quickChallenge": 0 + }, + "6": { + "id": 6, + "npcid": 15006, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 50000 + }, + { + "a": "item", + "t": "23", + "n": 4600 + } + ], + "quickChallenge": 0 + }, + "7": { + "id": 7, + "npcid": 15007, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 50000 + }, + { + "a": "item", + "t": "23", + "n": 4900 + } + ], + "quickChallenge": 0 + }, + "8": { + "id": 8, + "npcid": 15008, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 50000 + }, + { + "a": "item", + "t": "23", + "n": 5200 + } + ], + "quickChallenge": 0 + }, + "9": { + "id": 9, + "npcid": 15009, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 50000 + }, + { + "a": "item", + "t": "23", + "n": 5500 + } + ], + "quickChallenge": 0 + }, + "10": { + "id": 10, + "npcid": 15010, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 50000 + }, + { + "a": "item", + "t": "23", + "n": 5800 + } + ], + "quickChallenge": 0 + }, + "11": { + "id": 11, + "npcid": 15011, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 60000 + }, + { + "a": "item", + "t": "23", + "n": 6000 + } + ], + "quickChallenge": 0 + }, + "12": { + "id": 12, + "npcid": 15012, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 2 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 60000 + }, + { + "a": "item", + "t": "23", + "n": 6300 + } + ], + "quickChallenge": 0 + }, + "13": { + "id": 13, + "npcid": 15013, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 2 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 60000 + }, + { + "a": "item", + "t": "23", + "n": 6500 + } + ], + "quickChallenge": 0 + }, + "14": { + "id": 14, + "npcid": 15014, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 2 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 60000 + }, + { + "a": "item", + "t": "23", + "n": 6700 + } + ], + "quickChallenge": 0 + }, + "15": { + "id": 15, + "npcid": 15015, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 2 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 60000 + }, + { + "a": "item", + "t": "23", + "n": 7000 + } + ], + "quickChallenge": 0 + }, + "16": { + "id": 16, + "npcid": 15016, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 2 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 60000 + }, + { + "a": "item", + "t": "23", + "n": 7200 + } + ], + "quickChallenge": 0 + }, + "17": { + "id": 17, + "npcid": 15017, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 2 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 60000 + }, + { + "a": "item", + "t": "23", + "n": 7400 + } + ], + "quickChallenge": 0 + }, + "18": { + "id": 18, + "npcid": 15018, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 2 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 60000 + }, + { + "a": "item", + "t": "23", + "n": 7600 + } + ], + "quickChallenge": 0 + }, + "19": { + "id": 19, + "npcid": 15019, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 2 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 60000 + }, + { + "a": "item", + "t": "23", + "n": 7700 + } + ], + "quickChallenge": 0 + }, + "20": { + "id": 20, + "npcid": 15020, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 2 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 60000 + }, + { + "a": "item", + "t": "23", + "n": 7900 + } + ], + "quickChallenge": 0 + }, + "21": { + "id": 21, + "npcid": 15021, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 2 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 70000 + }, + { + "a": "item", + "t": "23", + "n": 8100 + } + ], + "quickChallenge": 0 + }, + "22": { + "id": 22, + "npcid": 15022, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 2 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 70000 + }, + { + "a": "item", + "t": "23", + "n": 8300 + } + ], + "quickChallenge": 0 + }, + "23": { + "id": 23, + "npcid": 15023, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 2 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 70000 + }, + { + "a": "item", + "t": "23", + "n": 8500 + } + ], + "quickChallenge": 0 + }, + "24": { + "id": 24, + "npcid": 15024, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 2 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 70000 + }, + { + "a": "item", + "t": "23", + "n": 8600 + } + ], + "quickChallenge": 0 + }, + "25": { + "id": 25, + "npcid": 15025, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 2 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 70000 + }, + { + "a": "item", + "t": "23", + "n": 8800 + } + ], + "quickChallenge": 0 + }, + "26": { + "id": 26, + "npcid": 15026, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 3000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 2 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 70000 + }, + { + "a": "item", + "t": "23", + "n": 9000 + } + ], + "quickChallenge": 0 + }, + "27": { + "id": 27, + "npcid": 15027, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 3000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 3 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 70000 + }, + { + "a": "item", + "t": "23", + "n": 9100 + } + ], + "quickChallenge": 0 + }, + "28": { + "id": 28, + "npcid": 15028, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 3000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 3 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 70000 + }, + { + "a": "item", + "t": "23", + "n": 9300 + } + ], + "quickChallenge": 0 + }, + "29": { + "id": 29, + "npcid": 15029, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 3000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 3 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 70000 + }, + { + "a": "item", + "t": "23", + "n": 9400 + } + ], + "quickChallenge": 0 + }, + "30": { + "id": 30, + "npcid": 15030, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 3000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 3 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 70000 + }, + { + "a": "item", + "t": "23", + "n": 9600 + } + ], + "quickChallenge": 0 + }, + "31": { + "id": 31, + "npcid": 15031, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 3500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 3 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 80000 + }, + { + "a": "item", + "t": "23", + "n": 9700 + } + ], + "quickChallenge": 1 + }, + "32": { + "id": 32, + "npcid": 15032, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 3500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 3 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 80000 + }, + { + "a": "item", + "t": "23", + "n": 9800 + } + ], + "quickChallenge": 1 + }, + "33": { + "id": 33, + "npcid": 15033, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 3500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 3 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 80000 + }, + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "quickChallenge": 1 + }, + "34": { + "id": 34, + "npcid": 15034, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 3500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 3 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 80000 + }, + { + "a": "item", + "t": "23", + "n": 10100 + } + ], + "quickChallenge": 1 + }, + "35": { + "id": 35, + "npcid": 15035, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 3500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 3 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 80000 + }, + { + "a": "item", + "t": "23", + "n": 10300 + } + ], + "quickChallenge": 1 + }, + "36": { + "id": 36, + "npcid": 15036, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 4000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 3 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 80000 + }, + { + "a": "item", + "t": "23", + "n": 10400 + } + ], + "quickChallenge": 1 + }, + "37": { + "id": 37, + "npcid": 15037, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 4000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 3 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 80000 + }, + { + "a": "item", + "t": "23", + "n": 10500 + } + ], + "quickChallenge": 1 + }, + "38": { + "id": 38, + "npcid": 15038, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 4000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 3 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 80000 + }, + { + "a": "item", + "t": "23", + "n": 10700 + } + ], + "quickChallenge": 1 + }, + "39": { + "id": 39, + "npcid": 15039, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 4000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 3 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 80000 + }, + { + "a": "item", + "t": "23", + "n": 10800 + } + ], + "quickChallenge": 1 + }, + "40": { + "id": 40, + "npcid": 15040, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 4000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 3 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 80000 + }, + { + "a": "item", + "t": "23", + "n": 10900 + } + ], + "quickChallenge": 1 + }, + "41": { + "id": 41, + "npcid": 15041, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 4500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 3 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 90000 + }, + { + "a": "item", + "t": "23", + "n": 11000 + } + ], + "quickChallenge": 1 + }, + "42": { + "id": 42, + "npcid": 15042, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 4500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 4 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 90000 + }, + { + "a": "item", + "t": "23", + "n": 11200 + } + ], + "quickChallenge": 1 + }, + "43": { + "id": 43, + "npcid": 15043, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 4500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 4 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 90000 + }, + { + "a": "item", + "t": "23", + "n": 11300 + } + ], + "quickChallenge": 1 + }, + "44": { + "id": 44, + "npcid": 15044, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 4500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 4 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 90000 + }, + { + "a": "item", + "t": "23", + "n": 11400 + } + ], + "quickChallenge": 1 + }, + "45": { + "id": 45, + "npcid": 15045, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 4500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 4 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 90000 + }, + { + "a": "item", + "t": "23", + "n": 11500 + } + ], + "quickChallenge": 1 + }, + "46": { + "id": 46, + "npcid": 15046, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 4 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 90000 + }, + { + "a": "item", + "t": "23", + "n": 11600 + } + ], + "quickChallenge": 1 + }, + "47": { + "id": 47, + "npcid": 15047, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 4 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 90000 + }, + { + "a": "item", + "t": "23", + "n": 11800 + } + ], + "quickChallenge": 1 + }, + "48": { + "id": 48, + "npcid": 15048, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 4 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 90000 + }, + { + "a": "item", + "t": "23", + "n": 11900 + } + ], + "quickChallenge": 1 + }, + "49": { + "id": 49, + "npcid": 15049, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 4 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 90000 + }, + { + "a": "item", + "t": "23", + "n": 12000 + } + ], + "quickChallenge": 1 + }, + "50": { + "id": 50, + "npcid": 15050, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 4 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 90000 + }, + { + "a": "item", + "t": "23", + "n": 12100 + } + ], + "quickChallenge": 1 + }, + "51": { + "id": 51, + "npcid": 15051, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 4 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 100000 + }, + { + "a": "item", + "t": "23", + "n": 12200 + } + ], + "quickChallenge": 1 + }, + "52": { + "id": 52, + "npcid": 15052, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 4 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 100000 + }, + { + "a": "item", + "t": "23", + "n": 12300 + } + ], + "quickChallenge": 1 + }, + "53": { + "id": 53, + "npcid": 15053, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 4 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 100000 + }, + { + "a": "item", + "t": "23", + "n": 12400 + } + ], + "quickChallenge": 1 + }, + "54": { + "id": 54, + "npcid": 15054, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 4 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 100000 + }, + { + "a": "item", + "t": "23", + "n": 12500 + } + ], + "quickChallenge": 1 + }, + "55": { + "id": 55, + "npcid": 15055, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 4 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 100000 + }, + { + "a": "item", + "t": "23", + "n": 12600 + } + ], + "quickChallenge": 1 + }, + "56": { + "id": 56, + "npcid": 15056, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 6000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 4 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 100000 + }, + { + "a": "item", + "t": "23", + "n": 12700 + } + ], + "quickChallenge": 1 + }, + "57": { + "id": 57, + "npcid": 15057, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 6000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 100000 + }, + { + "a": "item", + "t": "23", + "n": 12800 + } + ], + "quickChallenge": 1 + }, + "58": { + "id": 58, + "npcid": 15058, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 6000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 100000 + }, + { + "a": "item", + "t": "23", + "n": 12900 + } + ], + "quickChallenge": 1 + }, + "59": { + "id": 59, + "npcid": 15059, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 6000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 100000 + }, + { + "a": "item", + "t": "23", + "n": 13100 + } + ], + "quickChallenge": 1 + }, + "60": { + "id": 60, + "npcid": 15060, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 6000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 15 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 100000 + }, + { + "a": "item", + "t": "23", + "n": 13200 + } + ], + "quickChallenge": 1 + }, + "61": { + "id": 61, + "npcid": 15061, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 6500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 110000 + }, + { + "a": "item", + "t": "23", + "n": 13300 + } + ], + "quickChallenge": 1 + }, + "62": { + "id": 62, + "npcid": 15062, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 6500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 110000 + }, + { + "a": "item", + "t": "23", + "n": 13400 + } + ], + "quickChallenge": 1 + }, + "63": { + "id": 63, + "npcid": 15063, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 6500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 110000 + }, + { + "a": "item", + "t": "23", + "n": 13500 + } + ], + "quickChallenge": 1 + }, + "64": { + "id": 64, + "npcid": 15064, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 6500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 110000 + }, + { + "a": "item", + "t": "23", + "n": 13500 + } + ], + "quickChallenge": 1 + }, + "65": { + "id": 65, + "npcid": 15065, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 6500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 110000 + }, + { + "a": "item", + "t": "23", + "n": 13600 + } + ], + "quickChallenge": 1 + }, + "66": { + "id": 66, + "npcid": 15066, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 7000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 110000 + }, + { + "a": "item", + "t": "23", + "n": 13700 + } + ], + "quickChallenge": 1 + }, + "67": { + "id": 67, + "npcid": 15067, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 7000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 110000 + }, + { + "a": "item", + "t": "23", + "n": 13800 + } + ], + "quickChallenge": 1 + }, + "68": { + "id": 68, + "npcid": 15068, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 7000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 110000 + }, + { + "a": "item", + "t": "23", + "n": 13900 + } + ], + "quickChallenge": 1 + }, + "69": { + "id": 69, + "npcid": 15069, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 7000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 110000 + }, + { + "a": "item", + "t": "23", + "n": 14000 + } + ], + "quickChallenge": 1 + }, + "70": { + "id": 70, + "npcid": 15070, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 7000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 110000 + }, + { + "a": "item", + "t": "23", + "n": 14100 + } + ], + "quickChallenge": 1 + }, + "71": { + "id": 71, + "npcid": 15071, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 7500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 120000 + }, + { + "a": "item", + "t": "23", + "n": 14200 + } + ], + "quickChallenge": 1 + }, + "72": { + "id": 72, + "npcid": 15072, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 7500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 120000 + }, + { + "a": "item", + "t": "23", + "n": 14300 + } + ], + "quickChallenge": 1 + }, + "73": { + "id": 73, + "npcid": 15073, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 7500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 120000 + }, + { + "a": "item", + "t": "23", + "n": 14400 + } + ], + "quickChallenge": 1 + }, + "74": { + "id": 74, + "npcid": 15074, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 7500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 120000 + }, + { + "a": "item", + "t": "23", + "n": 14500 + } + ], + "quickChallenge": 1 + }, + "75": { + "id": 75, + "npcid": 15075, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 7500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 120000 + }, + { + "a": "item", + "t": "23", + "n": 14600 + } + ], + "quickChallenge": 1 + }, + "76": { + "id": 76, + "npcid": 15076, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 8000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 120000 + }, + { + "a": "item", + "t": "23", + "n": 14700 + } + ], + "quickChallenge": 1 + }, + "77": { + "id": 77, + "npcid": 15077, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 8000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 120000 + }, + { + "a": "item", + "t": "23", + "n": 14800 + } + ], + "quickChallenge": 1 + }, + "78": { + "id": 78, + "npcid": 15078, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 8000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 120000 + }, + { + "a": "item", + "t": "23", + "n": 14800 + } + ], + "quickChallenge": 1 + }, + "79": { + "id": 79, + "npcid": 15079, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 8000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 120000 + }, + { + "a": "item", + "t": "23", + "n": 14900 + } + ], + "quickChallenge": 1 + }, + "80": { + "id": 80, + "npcid": 15080, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 8000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 120000 + }, + { + "a": "item", + "t": "23", + "n": 15000 + } + ], + "quickChallenge": 1 + }, + "81": { + "id": 81, + "npcid": 15081, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 8500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 130000 + }, + { + "a": "item", + "t": "23", + "n": 15100 + } + ], + "quickChallenge": 1 + }, + "82": { + "id": 82, + "npcid": 15082, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 8500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 130000 + }, + { + "a": "item", + "t": "23", + "n": 15200 + } + ], + "quickChallenge": 1 + }, + "83": { + "id": 83, + "npcid": 15083, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 8500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 130000 + }, + { + "a": "item", + "t": "23", + "n": 15300 + } + ], + "quickChallenge": 1 + }, + "84": { + "id": 84, + "npcid": 15084, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 8500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 130000 + }, + { + "a": "item", + "t": "23", + "n": 15400 + } + ], + "quickChallenge": 1 + }, + "85": { + "id": 85, + "npcid": 15085, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 8500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 130000 + }, + { + "a": "item", + "t": "23", + "n": 15400 + } + ], + "quickChallenge": 1 + }, + "86": { + "id": 86, + "npcid": 15086, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 9000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 130000 + }, + { + "a": "item", + "t": "23", + "n": 15500 + } + ], + "quickChallenge": 1 + }, + "87": { + "id": 87, + "npcid": 15087, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 9000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 130000 + }, + { + "a": "item", + "t": "23", + "n": 15600 + } + ], + "quickChallenge": 1 + }, + "88": { + "id": 88, + "npcid": 15088, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 9000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 130000 + }, + { + "a": "item", + "t": "23", + "n": 15700 + } + ], + "quickChallenge": 1 + }, + "89": { + "id": 89, + "npcid": 15089, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 9000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 130000 + }, + { + "a": "item", + "t": "23", + "n": 15800 + } + ], + "quickChallenge": 1 + }, + "90": { + "id": 90, + "npcid": 15090, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 9000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 130000 + }, + { + "a": "item", + "t": "23", + "n": 15800 + } + ], + "quickChallenge": 1 + }, + "91": { + "id": 91, + "npcid": 15091, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 9500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 140000 + }, + { + "a": "item", + "t": "23", + "n": 15900 + } + ], + "quickChallenge": 1 + }, + "92": { + "id": 92, + "npcid": 15092, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 9500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 140000 + }, + { + "a": "item", + "t": "23", + "n": 16000 + } + ], + "quickChallenge": 1 + }, + "93": { + "id": 93, + "npcid": 15093, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 9500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 140000 + }, + { + "a": "item", + "t": "23", + "n": 16100 + } + ], + "quickChallenge": 1 + }, + "94": { + "id": 94, + "npcid": 15094, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 9500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 140000 + }, + { + "a": "item", + "t": "23", + "n": 16200 + } + ], + "quickChallenge": 1 + }, + "95": { + "id": 95, + "npcid": 15095, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 9500 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 140000 + }, + { + "a": "item", + "t": "23", + "n": 16200 + } + ], + "quickChallenge": 1 + }, + "96": { + "id": 96, + "npcid": 15096, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 10000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 140000 + }, + { + "a": "item", + "t": "23", + "n": 16300 + } + ], + "quickChallenge": 1 + }, + "97": { + "id": 97, + "npcid": 15097, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 10000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 140000 + }, + { + "a": "item", + "t": "23", + "n": 16400 + } + ], + "quickChallenge": 1 + }, + "98": { + "id": 98, + "npcid": 15098, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 10000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 140000 + }, + { + "a": "item", + "t": "23", + "n": 16500 + } + ], + "quickChallenge": 1 + }, + "99": { + "id": 99, + "npcid": 15099, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 10000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 140000 + }, + { + "a": "item", + "t": "23", + "n": 16600 + } + ], + "quickChallenge": 1 + }, + "100": { + "id": 100, + "npcid": 15100, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 10000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 140000 + }, + { + "a": "item", + "t": "23", + "n": 16600 + } + ], + "quickChallenge": 1 + }, + "101": { + "id": 101, + "npcid": 15101, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 11000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 150000 + }, + { + "a": "item", + "t": "23", + "n": 16700 + } + ], + "quickChallenge": 1 + }, + "102": { + "id": 102, + "npcid": 15102, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 11000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 150000 + }, + { + "a": "item", + "t": "23", + "n": 16800 + } + ], + "quickChallenge": 1 + }, + "103": { + "id": 103, + "npcid": 15103, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 11000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 150000 + }, + { + "a": "item", + "t": "23", + "n": 16900 + } + ], + "quickChallenge": 1 + }, + "104": { + "id": 104, + "npcid": 15104, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 11000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 150000 + }, + { + "a": "item", + "t": "23", + "n": 16900 + } + ], + "quickChallenge": 1 + }, + "105": { + "id": 105, + "npcid": 15105, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 11000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 150000 + }, + { + "a": "item", + "t": "23", + "n": 17000 + } + ], + "quickChallenge": 1 + }, + "106": { + "id": 106, + "npcid": 15106, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 12000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 150000 + }, + { + "a": "item", + "t": "23", + "n": 17100 + } + ], + "quickChallenge": 1 + }, + "107": { + "id": 107, + "npcid": 15107, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 12000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 150000 + }, + { + "a": "item", + "t": "23", + "n": 17200 + } + ], + "quickChallenge": 1 + }, + "108": { + "id": 108, + "npcid": 15108, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 12000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 150000 + }, + { + "a": "item", + "t": "23", + "n": 17200 + } + ], + "quickChallenge": 1 + }, + "109": { + "id": 109, + "npcid": 15109, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 12000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 150000 + }, + { + "a": "item", + "t": "23", + "n": 17300 + } + ], + "quickChallenge": 1 + }, + "110": { + "id": 110, + "npcid": 15110, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 12000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 150000 + }, + { + "a": "item", + "t": "23", + "n": 17400 + } + ], + "quickChallenge": 1 + }, + "111": { + "id": 111, + "npcid": 15111, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 13000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 160000 + }, + { + "a": "item", + "t": "23", + "n": 17500 + } + ], + "quickChallenge": 1 + }, + "112": { + "id": 112, + "npcid": 15112, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 13000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 160000 + }, + { + "a": "item", + "t": "23", + "n": 17500 + } + ], + "quickChallenge": 1 + }, + "113": { + "id": 113, + "npcid": 15113, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 13000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 160000 + }, + { + "a": "item", + "t": "23", + "n": 17600 + } + ], + "quickChallenge": 1 + }, + "114": { + "id": 114, + "npcid": 15114, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 13000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 160000 + }, + { + "a": "item", + "t": "23", + "n": 17700 + } + ], + "quickChallenge": 1 + }, + "115": { + "id": 115, + "npcid": 15115, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 13000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 160000 + }, + { + "a": "item", + "t": "23", + "n": 17700 + } + ], + "quickChallenge": 1 + }, + "116": { + "id": 116, + "npcid": 15116, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 14000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 160000 + }, + { + "a": "item", + "t": "23", + "n": 17800 + } + ], + "quickChallenge": 1 + }, + "117": { + "id": 117, + "npcid": 15117, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 14000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 160000 + }, + { + "a": "item", + "t": "23", + "n": 17900 + } + ], + "quickChallenge": 1 + }, + "118": { + "id": 118, + "npcid": 15118, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 14000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 160000 + }, + { + "a": "item", + "t": "23", + "n": 18000 + } + ], + "quickChallenge": 1 + }, + "119": { + "id": 119, + "npcid": 15119, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 14000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 160000 + }, + { + "a": "item", + "t": "23", + "n": 18000 + } + ], + "quickChallenge": 1 + }, + "120": { + "id": 120, + "npcid": 15120, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 14000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 25 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 160000 + }, + { + "a": "item", + "t": "23", + "n": 18100 + } + ], + "quickChallenge": 1 + }, + "121": { + "id": 121, + "npcid": 15121, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 15000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 170000 + }, + { + "a": "item", + "t": "23", + "n": 18200 + } + ], + "quickChallenge": 1 + }, + "122": { + "id": 122, + "npcid": 15122, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 15000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 170000 + }, + { + "a": "item", + "t": "23", + "n": 18200 + } + ], + "quickChallenge": 1 + }, + "123": { + "id": 123, + "npcid": 15123, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 15000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 170000 + }, + { + "a": "item", + "t": "23", + "n": 18300 + } + ], + "quickChallenge": 1 + }, + "124": { + "id": 124, + "npcid": 15124, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 15000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 170000 + }, + { + "a": "item", + "t": "23", + "n": 18400 + } + ], + "quickChallenge": 1 + }, + "125": { + "id": 125, + "npcid": 15125, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 15000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 170000 + }, + { + "a": "item", + "t": "23", + "n": 18400 + } + ], + "quickChallenge": 1 + }, + "126": { + "id": 126, + "npcid": 15126, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 16000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 170000 + }, + { + "a": "item", + "t": "23", + "n": 18500 + } + ], + "quickChallenge": 1 + }, + "127": { + "id": 127, + "npcid": 15127, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 16000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 170000 + }, + { + "a": "item", + "t": "23", + "n": 18600 + } + ], + "quickChallenge": 1 + }, + "128": { + "id": 128, + "npcid": 15128, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 16000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 170000 + }, + { + "a": "item", + "t": "23", + "n": 18600 + } + ], + "quickChallenge": 1 + }, + "129": { + "id": 129, + "npcid": 15129, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 16000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 170000 + }, + { + "a": "item", + "t": "23", + "n": 18700 + } + ], + "quickChallenge": 1 + }, + "130": { + "id": 130, + "npcid": 15130, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 16000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 170000 + }, + { + "a": "item", + "t": "23", + "n": 18800 + } + ], + "quickChallenge": 1 + }, + "131": { + "id": 131, + "npcid": 15131, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 17000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 180000 + }, + { + "a": "item", + "t": "23", + "n": 18800 + } + ], + "quickChallenge": 1 + }, + "132": { + "id": 132, + "npcid": 15132, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 17000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 180000 + }, + { + "a": "item", + "t": "23", + "n": 18900 + } + ], + "quickChallenge": 1 + }, + "133": { + "id": 133, + "npcid": 15133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 17000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 180000 + }, + { + "a": "item", + "t": "23", + "n": 19000 + } + ], + "quickChallenge": 1 + }, + "134": { + "id": 134, + "npcid": 15134, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 17000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 180000 + }, + { + "a": "item", + "t": "23", + "n": 19000 + } + ], + "quickChallenge": 1 + }, + "135": { + "id": 135, + "npcid": 15135, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 17000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 180000 + }, + { + "a": "item", + "t": "23", + "n": 19100 + } + ], + "quickChallenge": 1 + }, + "136": { + "id": 136, + "npcid": 15136, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 18000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 180000 + }, + { + "a": "item", + "t": "23", + "n": 19200 + } + ], + "quickChallenge": 1 + }, + "137": { + "id": 137, + "npcid": 15137, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 18000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 180000 + }, + { + "a": "item", + "t": "23", + "n": 19200 + } + ], + "quickChallenge": 1 + }, + "138": { + "id": 138, + "npcid": 15138, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 18000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 180000 + }, + { + "a": "item", + "t": "23", + "n": 19300 + } + ], + "quickChallenge": 1 + }, + "139": { + "id": 139, + "npcid": 15139, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 18000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 180000 + }, + { + "a": "item", + "t": "23", + "n": 19400 + } + ], + "quickChallenge": 1 + }, + "140": { + "id": 140, + "npcid": 15140, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 18000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 180000 + }, + { + "a": "item", + "t": "23", + "n": 19400 + } + ], + "quickChallenge": 1 + }, + "141": { + "id": 141, + "npcid": 15141, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 19000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 190000 + }, + { + "a": "item", + "t": "23", + "n": 19500 + } + ], + "quickChallenge": 1 + }, + "142": { + "id": 142, + "npcid": 15142, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 19000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 190000 + }, + { + "a": "item", + "t": "23", + "n": 19500 + } + ], + "quickChallenge": 1 + }, + "143": { + "id": 143, + "npcid": 15143, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 19000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 190000 + }, + { + "a": "item", + "t": "23", + "n": 19600 + } + ], + "quickChallenge": 1 + }, + "144": { + "id": 144, + "npcid": 15144, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 19000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 190000 + }, + { + "a": "item", + "t": "23", + "n": 19700 + } + ], + "quickChallenge": 1 + }, + "145": { + "id": 145, + "npcid": 15145, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 19000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 190000 + }, + { + "a": "item", + "t": "23", + "n": 19700 + } + ], + "quickChallenge": 1 + }, + "146": { + "id": 146, + "npcid": 15146, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 20000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 190000 + }, + { + "a": "item", + "t": "23", + "n": 19800 + } + ], + "quickChallenge": 1 + }, + "147": { + "id": 147, + "npcid": 15147, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 20000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 190000 + }, + { + "a": "item", + "t": "23", + "n": 19900 + } + ], + "quickChallenge": 1 + }, + "148": { + "id": 148, + "npcid": 15148, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 20000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 190000 + }, + { + "a": "item", + "t": "23", + "n": 19900 + } + ], + "quickChallenge": 1 + }, + "149": { + "id": 149, + "npcid": 15149, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 20000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 190000 + }, + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "quickChallenge": 1 + }, + "150": { + "id": 150, + "npcid": 15150, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 20000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 190000 + }, + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "quickChallenge": 1 + }, + "151": { + "id": 151, + "npcid": 15151, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 21000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 200000 + }, + { + "a": "item", + "t": "23", + "n": 20100 + } + ], + "quickChallenge": 1 + }, + "152": { + "id": 152, + "npcid": 15152, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 21000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 200000 + }, + { + "a": "item", + "t": "23", + "n": 20200 + } + ], + "quickChallenge": 1 + }, + "153": { + "id": 153, + "npcid": 15153, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 21000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 200000 + }, + { + "a": "item", + "t": "23", + "n": 20200 + } + ], + "quickChallenge": 1 + }, + "154": { + "id": 154, + "npcid": 15154, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 21000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 200000 + }, + { + "a": "item", + "t": "23", + "n": 20300 + } + ], + "quickChallenge": 1 + }, + "155": { + "id": 155, + "npcid": 15155, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 21000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 200000 + }, + { + "a": "item", + "t": "23", + "n": 20400 + } + ], + "quickChallenge": 1 + }, + "156": { + "id": 156, + "npcid": 15156, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 22000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 200000 + }, + { + "a": "item", + "t": "23", + "n": 20400 + } + ], + "quickChallenge": 1 + }, + "157": { + "id": 157, + "npcid": 15157, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 22000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 200000 + }, + { + "a": "item", + "t": "23", + "n": 20500 + } + ], + "quickChallenge": 1 + }, + "158": { + "id": 158, + "npcid": 15158, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 22000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 200000 + }, + { + "a": "item", + "t": "23", + "n": 20500 + } + ], + "quickChallenge": 1 + }, + "159": { + "id": 159, + "npcid": 15159, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 22000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 200000 + }, + { + "a": "item", + "t": "23", + "n": 20600 + } + ], + "quickChallenge": 1 + }, + "160": { + "id": 160, + "npcid": 15160, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 22000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 200000 + }, + { + "a": "item", + "t": "23", + "n": 20700 + } + ], + "quickChallenge": 1 + }, + "161": { + "id": 161, + "npcid": 15161, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 23000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 210000 + }, + { + "a": "item", + "t": "23", + "n": 20700 + } + ], + "quickChallenge": 1 + }, + "162": { + "id": 162, + "npcid": 15162, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 23000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 210000 + }, + { + "a": "item", + "t": "23", + "n": 20800 + } + ], + "quickChallenge": 1 + }, + "163": { + "id": 163, + "npcid": 15163, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 23000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 210000 + }, + { + "a": "item", + "t": "23", + "n": 20800 + } + ], + "quickChallenge": 1 + }, + "164": { + "id": 164, + "npcid": 15164, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 23000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 210000 + }, + { + "a": "item", + "t": "23", + "n": 20900 + } + ], + "quickChallenge": 1 + }, + "165": { + "id": 165, + "npcid": 15165, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 23000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 210000 + }, + { + "a": "item", + "t": "23", + "n": 20900 + } + ], + "quickChallenge": 1 + }, + "166": { + "id": 166, + "npcid": 15166, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 24000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 210000 + }, + { + "a": "item", + "t": "23", + "n": 21000 + } + ], + "quickChallenge": 1 + }, + "167": { + "id": 167, + "npcid": 15167, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 24000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 210000 + }, + { + "a": "item", + "t": "23", + "n": 21100 + } + ], + "quickChallenge": 1 + }, + "168": { + "id": 168, + "npcid": 15168, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 24000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 210000 + }, + { + "a": "item", + "t": "23", + "n": 21100 + } + ], + "quickChallenge": 1 + }, + "169": { + "id": 169, + "npcid": 15169, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 24000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 210000 + }, + { + "a": "item", + "t": "23", + "n": 21200 + } + ], + "quickChallenge": 1 + }, + "170": { + "id": 170, + "npcid": 15170, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 24000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 210000 + }, + { + "a": "item", + "t": "23", + "n": 21200 + } + ], + "quickChallenge": 1 + }, + "171": { + "id": 171, + "npcid": 15171, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 25000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 220000 + }, + { + "a": "item", + "t": "23", + "n": 21300 + } + ], + "quickChallenge": 1 + }, + "172": { + "id": 172, + "npcid": 15172, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 25000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 220000 + }, + { + "a": "item", + "t": "23", + "n": 21300 + } + ], + "quickChallenge": 1 + }, + "173": { + "id": 173, + "npcid": 15173, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 25000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 220000 + }, + { + "a": "item", + "t": "23", + "n": 21400 + } + ], + "quickChallenge": 1 + }, + "174": { + "id": 174, + "npcid": 15174, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 25000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 220000 + }, + { + "a": "item", + "t": "23", + "n": 21500 + } + ], + "quickChallenge": 1 + }, + "175": { + "id": 175, + "npcid": 15175, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 25000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 220000 + }, + { + "a": "item", + "t": "23", + "n": 21500 + } + ], + "quickChallenge": 1 + }, + "176": { + "id": 176, + "npcid": 15176, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 26000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 220000 + }, + { + "a": "item", + "t": "23", + "n": 21600 + } + ], + "quickChallenge": 1 + }, + "177": { + "id": 177, + "npcid": 15177, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 26000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 220000 + }, + { + "a": "item", + "t": "23", + "n": 21600 + } + ], + "quickChallenge": 1 + }, + "178": { + "id": 178, + "npcid": 15178, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 26000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 220000 + }, + { + "a": "item", + "t": "23", + "n": 21700 + } + ], + "quickChallenge": 1 + }, + "179": { + "id": 179, + "npcid": 15179, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 26000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 220000 + }, + { + "a": "item", + "t": "23", + "n": 21700 + } + ], + "quickChallenge": 1 + }, + "180": { + "id": 180, + "npcid": 15180, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 26000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 35 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 220000 + }, + { + "a": "item", + "t": "23", + "n": 21800 + } + ], + "quickChallenge": 1 + }, + "181": { + "id": 181, + "npcid": 15181, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 27000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 230000 + }, + { + "a": "item", + "t": "23", + "n": 21900 + } + ], + "quickChallenge": 1 + }, + "182": { + "id": 182, + "npcid": 15182, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 27000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 230000 + }, + { + "a": "item", + "t": "23", + "n": 21900 + } + ], + "quickChallenge": 1 + }, + "183": { + "id": 183, + "npcid": 15183, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 27000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 230000 + }, + { + "a": "item", + "t": "23", + "n": 22000 + } + ], + "quickChallenge": 1 + }, + "184": { + "id": 184, + "npcid": 15184, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 27000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 230000 + }, + { + "a": "item", + "t": "23", + "n": 22000 + } + ], + "quickChallenge": 1 + }, + "185": { + "id": 185, + "npcid": 15185, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 27000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 230000 + }, + { + "a": "item", + "t": "23", + "n": 22100 + } + ], + "quickChallenge": 1 + }, + "186": { + "id": 186, + "npcid": 15186, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 28000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 230000 + }, + { + "a": "item", + "t": "23", + "n": 22100 + } + ], + "quickChallenge": 1 + }, + "187": { + "id": 187, + "npcid": 15187, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 28000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 230000 + }, + { + "a": "item", + "t": "23", + "n": 22200 + } + ], + "quickChallenge": 1 + }, + "188": { + "id": 188, + "npcid": 15188, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 28000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 230000 + }, + { + "a": "item", + "t": "23", + "n": 22200 + } + ], + "quickChallenge": 1 + }, + "189": { + "id": 189, + "npcid": 15189, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 28000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 230000 + }, + { + "a": "item", + "t": "23", + "n": 22300 + } + ], + "quickChallenge": 1 + }, + "190": { + "id": 190, + "npcid": 15190, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 28000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 230000 + }, + { + "a": "item", + "t": "23", + "n": 22300 + } + ], + "quickChallenge": 1 + }, + "191": { + "id": 191, + "npcid": 15191, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 29000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 240000 + }, + { + "a": "item", + "t": "23", + "n": 22400 + } + ], + "quickChallenge": 1 + }, + "192": { + "id": 192, + "npcid": 15192, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 29000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 240000 + }, + { + "a": "item", + "t": "23", + "n": 22500 + } + ], + "quickChallenge": 1 + }, + "193": { + "id": 193, + "npcid": 15193, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 29000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 240000 + }, + { + "a": "item", + "t": "23", + "n": 22500 + } + ], + "quickChallenge": 1 + }, + "194": { + "id": 194, + "npcid": 15194, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 29000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 240000 + }, + { + "a": "item", + "t": "23", + "n": 22600 + } + ], + "quickChallenge": 1 + }, + "195": { + "id": 195, + "npcid": 15195, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 29000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 240000 + }, + { + "a": "item", + "t": "23", + "n": 22600 + } + ], + "quickChallenge": 1 + }, + "196": { + "id": 196, + "npcid": 15196, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 30000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 240000 + }, + { + "a": "item", + "t": "23", + "n": 22700 + } + ], + "quickChallenge": 1 + }, + "197": { + "id": 197, + "npcid": 15197, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 30000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 240000 + }, + { + "a": "item", + "t": "23", + "n": 22700 + } + ], + "quickChallenge": 1 + }, + "198": { + "id": 198, + "npcid": 15198, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 30000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 240000 + }, + { + "a": "item", + "t": "23", + "n": 22800 + } + ], + "quickChallenge": 1 + }, + "199": { + "id": 199, + "npcid": 15199, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 30000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 240000 + }, + { + "a": "item", + "t": "23", + "n": 22800 + } + ], + "quickChallenge": 1 + }, + "200": { + "id": 200, + "npcid": 15200, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 30000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 240000 + }, + { + "a": "item", + "t": "23", + "n": 22900 + } + ], + "quickChallenge": 1 + }, + "201": { + "id": 201, + "npcid": 15201, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 31000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 250000 + }, + { + "a": "item", + "t": "23", + "n": 22900 + } + ], + "quickChallenge": 1 + }, + "202": { + "id": 202, + "npcid": 15202, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 31000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 250000 + }, + { + "a": "item", + "t": "23", + "n": 23000 + } + ], + "quickChallenge": 1 + }, + "203": { + "id": 203, + "npcid": 15203, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 31000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 250000 + }, + { + "a": "item", + "t": "23", + "n": 23000 + } + ], + "quickChallenge": 1 + }, + "204": { + "id": 204, + "npcid": 15204, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 31000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 250000 + }, + { + "a": "item", + "t": "23", + "n": 23100 + } + ], + "quickChallenge": 1 + }, + "205": { + "id": 205, + "npcid": 15205, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 31000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 250000 + }, + { + "a": "item", + "t": "23", + "n": 23100 + } + ], + "quickChallenge": 1 + }, + "206": { + "id": 206, + "npcid": 15206, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 32000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 250000 + }, + { + "a": "item", + "t": "23", + "n": 23200 + } + ], + "quickChallenge": 1 + }, + "207": { + "id": 207, + "npcid": 15207, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 32000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 250000 + }, + { + "a": "item", + "t": "23", + "n": 23200 + } + ], + "quickChallenge": 1 + }, + "208": { + "id": 208, + "npcid": 15208, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 32000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 250000 + }, + { + "a": "item", + "t": "23", + "n": 23300 + } + ], + "quickChallenge": 1 + }, + "209": { + "id": 209, + "npcid": 15209, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 32000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 250000 + }, + { + "a": "item", + "t": "23", + "n": 23400 + } + ], + "quickChallenge": 1 + }, + "210": { + "id": 210, + "npcid": 15210, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 32000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 250000 + }, + { + "a": "item", + "t": "23", + "n": 23400 + } + ], + "quickChallenge": 1 + }, + "211": { + "id": 211, + "npcid": 15211, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 33000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 260000 + }, + { + "a": "item", + "t": "23", + "n": 23500 + } + ], + "quickChallenge": 1 + }, + "212": { + "id": 212, + "npcid": 15212, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 33000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 260000 + }, + { + "a": "item", + "t": "23", + "n": 23500 + } + ], + "quickChallenge": 1 + }, + "213": { + "id": 213, + "npcid": 15213, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 33000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 260000 + }, + { + "a": "item", + "t": "23", + "n": 23600 + } + ], + "quickChallenge": 1 + }, + "214": { + "id": 214, + "npcid": 15214, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 33000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 260000 + }, + { + "a": "item", + "t": "23", + "n": 23600 + } + ], + "quickChallenge": 1 + }, + "215": { + "id": 215, + "npcid": 15215, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 33000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 260000 + }, + { + "a": "item", + "t": "23", + "n": 23700 + } + ], + "quickChallenge": 1 + }, + "216": { + "id": 216, + "npcid": 15216, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 34000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 260000 + }, + { + "a": "item", + "t": "23", + "n": 23700 + } + ], + "quickChallenge": 1 + }, + "217": { + "id": 217, + "npcid": 15217, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 34000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 260000 + }, + { + "a": "item", + "t": "23", + "n": 23800 + } + ], + "quickChallenge": 1 + }, + "218": { + "id": 218, + "npcid": 15218, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 34000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 260000 + }, + { + "a": "item", + "t": "23", + "n": 23800 + } + ], + "quickChallenge": 1 + }, + "219": { + "id": 219, + "npcid": 15219, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 34000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 260000 + }, + { + "a": "item", + "t": "23", + "n": 23900 + } + ], + "quickChallenge": 1 + }, + "220": { + "id": 220, + "npcid": 15220, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 34000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 260000 + }, + { + "a": "item", + "t": "23", + "n": 23900 + } + ], + "quickChallenge": 1 + }, + "221": { + "id": 221, + "npcid": 15221, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 35000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 270000 + }, + { + "a": "item", + "t": "23", + "n": 24000 + } + ], + "quickChallenge": 1 + }, + "222": { + "id": 222, + "npcid": 15222, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 35000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 270000 + }, + { + "a": "item", + "t": "23", + "n": 24000 + } + ], + "quickChallenge": 1 + }, + "223": { + "id": 223, + "npcid": 15223, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 35000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 270000 + }, + { + "a": "item", + "t": "23", + "n": 24100 + } + ], + "quickChallenge": 1 + }, + "224": { + "id": 224, + "npcid": 15224, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 35000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 270000 + }, + { + "a": "item", + "t": "23", + "n": 24100 + } + ], + "quickChallenge": 1 + }, + "225": { + "id": 225, + "npcid": 15225, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 35000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 270000 + }, + { + "a": "item", + "t": "23", + "n": 24200 + } + ], + "quickChallenge": 1 + }, + "226": { + "id": 226, + "npcid": 15226, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 36000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 270000 + }, + { + "a": "item", + "t": "23", + "n": 24200 + } + ], + "quickChallenge": 1 + }, + "227": { + "id": 227, + "npcid": 15227, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 36000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 270000 + }, + { + "a": "item", + "t": "23", + "n": 24300 + } + ], + "quickChallenge": 1 + }, + "228": { + "id": 228, + "npcid": 15228, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 36000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 270000 + }, + { + "a": "item", + "t": "23", + "n": 24300 + } + ], + "quickChallenge": 1 + }, + "229": { + "id": 229, + "npcid": 15229, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 36000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 270000 + }, + { + "a": "item", + "t": "23", + "n": 24400 + } + ], + "quickChallenge": 1 + }, + "230": { + "id": 230, + "npcid": 15230, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 36000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 270000 + }, + { + "a": "item", + "t": "23", + "n": 24400 + } + ], + "quickChallenge": 1 + }, + "231": { + "id": 231, + "npcid": 15231, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 37000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 280000 + }, + { + "a": "item", + "t": "23", + "n": 24500 + } + ], + "quickChallenge": 1 + }, + "232": { + "id": 232, + "npcid": 15232, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 37000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 280000 + }, + { + "a": "item", + "t": "23", + "n": 24500 + } + ], + "quickChallenge": 1 + }, + "233": { + "id": 233, + "npcid": 15233, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 37000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 280000 + }, + { + "a": "item", + "t": "23", + "n": 24500 + } + ], + "quickChallenge": 1 + }, + "234": { + "id": 234, + "npcid": 15234, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 37000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 280000 + }, + { + "a": "item", + "t": "23", + "n": 24600 + } + ], + "quickChallenge": 1 + }, + "235": { + "id": 235, + "npcid": 15235, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 37000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 280000 + }, + { + "a": "item", + "t": "23", + "n": 24600 + } + ], + "quickChallenge": 1 + }, + "236": { + "id": 236, + "npcid": 15236, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 38000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 280000 + }, + { + "a": "item", + "t": "23", + "n": 24700 + } + ], + "quickChallenge": 1 + }, + "237": { + "id": 237, + "npcid": 15237, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 38000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 280000 + }, + { + "a": "item", + "t": "23", + "n": 24700 + } + ], + "quickChallenge": 1 + }, + "238": { + "id": 238, + "npcid": 15238, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 38000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 280000 + }, + { + "a": "item", + "t": "23", + "n": 24800 + } + ], + "quickChallenge": 1 + }, + "239": { + "id": 239, + "npcid": 15239, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 38000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 280000 + }, + { + "a": "item", + "t": "23", + "n": 24800 + } + ], + "quickChallenge": 1 + }, + "240": { + "id": 240, + "npcid": 15240, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 38000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 45 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 280000 + }, + { + "a": "item", + "t": "23", + "n": 24900 + } + ], + "quickChallenge": 1 + }, + "241": { + "id": 241, + "npcid": 15241, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 39000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 290000 + }, + { + "a": "item", + "t": "23", + "n": 24900 + } + ], + "quickChallenge": 1 + }, + "242": { + "id": 242, + "npcid": 15242, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 39000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 290000 + }, + { + "a": "item", + "t": "23", + "n": 25000 + } + ], + "quickChallenge": 1 + }, + "243": { + "id": 243, + "npcid": 15243, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 39000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 290000 + }, + { + "a": "item", + "t": "23", + "n": 25000 + } + ], + "quickChallenge": 1 + }, + "244": { + "id": 244, + "npcid": 15244, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 39000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 290000 + }, + { + "a": "item", + "t": "23", + "n": 25100 + } + ], + "quickChallenge": 1 + }, + "245": { + "id": 245, + "npcid": 15245, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 39000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 290000 + }, + { + "a": "item", + "t": "23", + "n": 25100 + } + ], + "quickChallenge": 1 + }, + "246": { + "id": 246, + "npcid": 15246, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 40000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 290000 + }, + { + "a": "item", + "t": "23", + "n": 25200 + } + ], + "quickChallenge": 1 + }, + "247": { + "id": 247, + "npcid": 15247, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 40000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 290000 + }, + { + "a": "item", + "t": "23", + "n": 25200 + } + ], + "quickChallenge": 1 + }, + "248": { + "id": 248, + "npcid": 15248, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 40000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 290000 + }, + { + "a": "item", + "t": "23", + "n": 25300 + } + ], + "quickChallenge": 1 + }, + "249": { + "id": 249, + "npcid": 15249, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 40000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 290000 + }, + { + "a": "item", + "t": "23", + "n": 25300 + } + ], + "quickChallenge": 1 + }, + "250": { + "id": 250, + "npcid": 15250, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 40000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 290000 + }, + { + "a": "item", + "t": "23", + "n": 25400 + } + ], + "quickChallenge": 1 + }, + "251": { + "id": 251, + "npcid": 15251, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 41000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 300000 + }, + { + "a": "item", + "t": "23", + "n": 25400 + } + ], + "quickChallenge": 1 + }, + "252": { + "id": 252, + "npcid": 15252, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 41000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 300000 + }, + { + "a": "item", + "t": "23", + "n": 25400 + } + ], + "quickChallenge": 1 + }, + "253": { + "id": 253, + "npcid": 15253, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 41000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 300000 + }, + { + "a": "item", + "t": "23", + "n": 25500 + } + ], + "quickChallenge": 1 + }, + "254": { + "id": 254, + "npcid": 15254, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 41000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 300000 + }, + { + "a": "item", + "t": "23", + "n": 25500 + } + ], + "quickChallenge": 1 + }, + "255": { + "id": 255, + "npcid": 15255, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 41000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 300000 + }, + { + "a": "item", + "t": "23", + "n": 25600 + } + ], + "quickChallenge": 1 + }, + "256": { + "id": 256, + "npcid": 15256, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 42000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 300000 + }, + { + "a": "item", + "t": "23", + "n": 25600 + } + ], + "quickChallenge": 1 + }, + "257": { + "id": 257, + "npcid": 15257, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 42000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 300000 + }, + { + "a": "item", + "t": "23", + "n": 25700 + } + ], + "quickChallenge": 1 + }, + "258": { + "id": 258, + "npcid": 15258, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 42000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 300000 + }, + { + "a": "item", + "t": "23", + "n": 25700 + } + ], + "quickChallenge": 1 + }, + "259": { + "id": 259, + "npcid": 15259, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 42000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 300000 + }, + { + "a": "item", + "t": "23", + "n": 25800 + } + ], + "quickChallenge": 1 + }, + "260": { + "id": 260, + "npcid": 15260, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 42000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 300000 + }, + { + "a": "item", + "t": "23", + "n": 25800 + } + ], + "quickChallenge": 1 + }, + "261": { + "id": 261, + "npcid": 15261, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 43000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 310000 + }, + { + "a": "item", + "t": "23", + "n": 25900 + } + ], + "quickChallenge": 1 + }, + "262": { + "id": 262, + "npcid": 15262, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 43000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 310000 + }, + { + "a": "item", + "t": "23", + "n": 25900 + } + ], + "quickChallenge": 1 + }, + "263": { + "id": 263, + "npcid": 15263, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 43000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 310000 + }, + { + "a": "item", + "t": "23", + "n": 26000 + } + ], + "quickChallenge": 1 + }, + "264": { + "id": 264, + "npcid": 15264, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 43000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 310000 + }, + { + "a": "item", + "t": "23", + "n": 26000 + } + ], + "quickChallenge": 1 + }, + "265": { + "id": 265, + "npcid": 15265, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 43000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 310000 + }, + { + "a": "item", + "t": "23", + "n": 26000 + } + ], + "quickChallenge": 1 + }, + "266": { + "id": 266, + "npcid": 15266, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 44000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 310000 + }, + { + "a": "item", + "t": "23", + "n": 26100 + } + ], + "quickChallenge": 1 + }, + "267": { + "id": 267, + "npcid": 15267, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 44000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 310000 + }, + { + "a": "item", + "t": "23", + "n": 26100 + } + ], + "quickChallenge": 1 + }, + "268": { + "id": 268, + "npcid": 15268, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 44000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 310000 + }, + { + "a": "item", + "t": "23", + "n": 26200 + } + ], + "quickChallenge": 1 + }, + "269": { + "id": 269, + "npcid": 15269, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 44000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 310000 + }, + { + "a": "item", + "t": "23", + "n": 26200 + } + ], + "quickChallenge": 1 + }, + "270": { + "id": 270, + "npcid": 15270, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 44000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 310000 + }, + { + "a": "item", + "t": "23", + "n": 26300 + } + ], + "quickChallenge": 1 + }, + "271": { + "id": 271, + "npcid": 15271, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 45000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 320000 + }, + { + "a": "item", + "t": "23", + "n": 26300 + } + ], + "quickChallenge": 1 + }, + "272": { + "id": 272, + "npcid": 15272, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 45000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 320000 + }, + { + "a": "item", + "t": "23", + "n": 26400 + } + ], + "quickChallenge": 1 + }, + "273": { + "id": 273, + "npcid": 15273, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 45000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 320000 + }, + { + "a": "item", + "t": "23", + "n": 26400 + } + ], + "quickChallenge": 1 + }, + "274": { + "id": 274, + "npcid": 15274, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 45000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 320000 + }, + { + "a": "item", + "t": "23", + "n": 26400 + } + ], + "quickChallenge": 1 + }, + "275": { + "id": 275, + "npcid": 15275, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 45000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 320000 + }, + { + "a": "item", + "t": "23", + "n": 26500 + } + ], + "quickChallenge": 1 + }, + "276": { + "id": 276, + "npcid": 15276, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 46000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 320000 + }, + { + "a": "item", + "t": "23", + "n": 26500 + } + ], + "quickChallenge": 1 + }, + "277": { + "id": 277, + "npcid": 15277, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 46000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 320000 + }, + { + "a": "item", + "t": "23", + "n": 26600 + } + ], + "quickChallenge": 1 + }, + "278": { + "id": 278, + "npcid": 15278, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 46000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 320000 + }, + { + "a": "item", + "t": "23", + "n": 26600 + } + ], + "quickChallenge": 1 + }, + "279": { + "id": 279, + "npcid": 15279, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 46000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 320000 + }, + { + "a": "item", + "t": "23", + "n": 26700 + } + ], + "quickChallenge": 1 + }, + "280": { + "id": 280, + "npcid": 15280, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 46000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 320000 + }, + { + "a": "item", + "t": "23", + "n": 26700 + } + ], + "quickChallenge": 1 + }, + "281": { + "id": 281, + "npcid": 15281, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 47000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 330000 + }, + { + "a": "item", + "t": "23", + "n": 26800 + } + ], + "quickChallenge": 1 + }, + "282": { + "id": 282, + "npcid": 15282, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 47000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 330000 + }, + { + "a": "item", + "t": "23", + "n": 26800 + } + ], + "quickChallenge": 1 + }, + "283": { + "id": 283, + "npcid": 15283, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 47000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 330000 + }, + { + "a": "item", + "t": "23", + "n": 26800 + } + ], + "quickChallenge": 1 + }, + "284": { + "id": 284, + "npcid": 15284, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 47000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 330000 + }, + { + "a": "item", + "t": "23", + "n": 26900 + } + ], + "quickChallenge": 1 + }, + "285": { + "id": 285, + "npcid": 15285, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 47000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 330000 + }, + { + "a": "item", + "t": "23", + "n": 26900 + } + ], + "quickChallenge": 1 + }, + "286": { + "id": 286, + "npcid": 15286, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 48000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 330000 + }, + { + "a": "item", + "t": "23", + "n": 27000 + } + ], + "quickChallenge": 1 + }, + "287": { + "id": 287, + "npcid": 15287, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 48000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 330000 + }, + { + "a": "item", + "t": "23", + "n": 27000 + } + ], + "quickChallenge": 1 + }, + "288": { + "id": 288, + "npcid": 15288, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 48000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 330000 + }, + { + "a": "item", + "t": "23", + "n": 27100 + } + ], + "quickChallenge": 1 + }, + "289": { + "id": 289, + "npcid": 15289, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 48000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 330000 + }, + { + "a": "item", + "t": "23", + "n": 27100 + } + ], + "quickChallenge": 1 + }, + "290": { + "id": 290, + "npcid": 15290, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 48000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 330000 + }, + { + "a": "item", + "t": "23", + "n": 27100 + } + ], + "quickChallenge": 1 + }, + "291": { + "id": 291, + "npcid": 15291, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 49000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 340000 + }, + { + "a": "item", + "t": "23", + "n": 27200 + } + ], + "quickChallenge": 1 + }, + "292": { + "id": 292, + "npcid": 15292, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 49000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 340000 + }, + { + "a": "item", + "t": "23", + "n": 27200 + } + ], + "quickChallenge": 1 + }, + "293": { + "id": 293, + "npcid": 15293, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 49000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 340000 + }, + { + "a": "item", + "t": "23", + "n": 27300 + } + ], + "quickChallenge": 1 + }, + "294": { + "id": 294, + "npcid": 15294, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 49000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 340000 + }, + { + "a": "item", + "t": "23", + "n": 27300 + } + ], + "quickChallenge": 1 + }, + "295": { + "id": 295, + "npcid": 15295, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 49000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 340000 + }, + { + "a": "item", + "t": "23", + "n": 27400 + } + ], + "quickChallenge": 1 + }, + "296": { + "id": 296, + "npcid": 15296, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 50000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 340000 + }, + { + "a": "item", + "t": "23", + "n": 27400 + } + ], + "quickChallenge": 1 + }, + "297": { + "id": 297, + "npcid": 15297, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 50000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 340000 + }, + { + "a": "item", + "t": "23", + "n": 27400 + } + ], + "quickChallenge": 1 + }, + "298": { + "id": 298, + "npcid": 15298, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 50000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 340000 + }, + { + "a": "item", + "t": "23", + "n": 27500 + } + ], + "quickChallenge": 1 + }, + "299": { + "id": 299, + "npcid": 15299, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 50000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 340000 + }, + { + "a": "item", + "t": "23", + "n": 27500 + } + ], + "quickChallenge": 1 + }, + "300": { + "id": 300, + "npcid": 15300, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 50000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 340000 + }, + { + "a": "item", + "t": "23", + "n": 27600 + } + ], + "quickChallenge": 1 + }, + "301": { + "id": 301, + "npcid": 15301, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 51000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 350000 + }, + { + "a": "item", + "t": "23", + "n": 27600 + } + ], + "quickChallenge": 1 + }, + "302": { + "id": 302, + "npcid": 15302, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 51000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 350000 + }, + { + "a": "item", + "t": "23", + "n": 27700 + } + ], + "quickChallenge": 1 + }, + "303": { + "id": 303, + "npcid": 15303, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 51000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 350000 + }, + { + "a": "item", + "t": "23", + "n": 27700 + } + ], + "quickChallenge": 1 + }, + "304": { + "id": 304, + "npcid": 15304, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 51000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 350000 + }, + { + "a": "item", + "t": "23", + "n": 27700 + } + ], + "quickChallenge": 1 + }, + "305": { + "id": 305, + "npcid": 15305, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 51000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 350000 + }, + { + "a": "item", + "t": "23", + "n": 27800 + } + ], + "quickChallenge": 1 + }, + "306": { + "id": 306, + "npcid": 15306, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 52000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 350000 + }, + { + "a": "item", + "t": "23", + "n": 27800 + } + ], + "quickChallenge": 1 + }, + "307": { + "id": 307, + "npcid": 15307, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 52000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 350000 + }, + { + "a": "item", + "t": "23", + "n": 27900 + } + ], + "quickChallenge": 1 + }, + "308": { + "id": 308, + "npcid": 15308, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 52000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 350000 + }, + { + "a": "item", + "t": "23", + "n": 27900 + } + ], + "quickChallenge": 1 + }, + "309": { + "id": 309, + "npcid": 15309, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 52000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 350000 + }, + { + "a": "item", + "t": "23", + "n": 28000 + } + ], + "quickChallenge": 1 + }, + "310": { + "id": 310, + "npcid": 15310, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 52000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 350000 + }, + { + "a": "item", + "t": "23", + "n": 28000 + } + ], + "quickChallenge": 1 + }, + "311": { + "id": 311, + "npcid": 15311, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 53000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 360000 + }, + { + "a": "item", + "t": "23", + "n": 28000 + } + ], + "quickChallenge": 1 + }, + "312": { + "id": 312, + "npcid": 15312, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 53000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 360000 + }, + { + "a": "item", + "t": "23", + "n": 28100 + } + ], + "quickChallenge": 1 + }, + "313": { + "id": 313, + "npcid": 15313, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 53000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 360000 + }, + { + "a": "item", + "t": "23", + "n": 28100 + } + ], + "quickChallenge": 1 + }, + "314": { + "id": 314, + "npcid": 15314, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 53000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 360000 + }, + { + "a": "item", + "t": "23", + "n": 28200 + } + ], + "quickChallenge": 1 + }, + "315": { + "id": 315, + "npcid": 15315, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 53000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 360000 + }, + { + "a": "item", + "t": "23", + "n": 28200 + } + ], + "quickChallenge": 1 + }, + "316": { + "id": 316, + "npcid": 15316, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 54000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 360000 + }, + { + "a": "item", + "t": "23", + "n": 28200 + } + ], + "quickChallenge": 1 + }, + "317": { + "id": 317, + "npcid": 15317, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 54000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 360000 + }, + { + "a": "item", + "t": "23", + "n": 28300 + } + ], + "quickChallenge": 1 + }, + "318": { + "id": 318, + "npcid": 15318, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 54000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 360000 + }, + { + "a": "item", + "t": "23", + "n": 28300 + } + ], + "quickChallenge": 1 + }, + "319": { + "id": 319, + "npcid": 15319, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 54000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 360000 + }, + { + "a": "item", + "t": "23", + "n": 28400 + } + ], + "quickChallenge": 1 + }, + "320": { + "id": 320, + "npcid": 15320, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 54000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 360000 + }, + { + "a": "item", + "t": "23", + "n": 28400 + } + ], + "quickChallenge": 1 + }, + "321": { + "id": 321, + "npcid": 15321, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 55000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 370000 + }, + { + "a": "item", + "t": "23", + "n": 28400 + } + ], + "quickChallenge": 1 + }, + "322": { + "id": 322, + "npcid": 15322, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 55000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 370000 + }, + { + "a": "item", + "t": "23", + "n": 28500 + } + ], + "quickChallenge": 1 + }, + "323": { + "id": 323, + "npcid": 15323, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 55000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 370000 + }, + { + "a": "item", + "t": "23", + "n": 28500 + } + ], + "quickChallenge": 1 + }, + "324": { + "id": 324, + "npcid": 15324, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 55000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 370000 + }, + { + "a": "item", + "t": "23", + "n": 28600 + } + ], + "quickChallenge": 1 + }, + "325": { + "id": 325, + "npcid": 15325, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 55000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 370000 + }, + { + "a": "item", + "t": "23", + "n": 28600 + } + ], + "quickChallenge": 1 + }, + "326": { + "id": 326, + "npcid": 15326, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 56000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 370000 + }, + { + "a": "item", + "t": "23", + "n": 28600 + } + ], + "quickChallenge": 1 + }, + "327": { + "id": 327, + "npcid": 15327, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 56000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 370000 + }, + { + "a": "item", + "t": "23", + "n": 28700 + } + ], + "quickChallenge": 1 + }, + "328": { + "id": 328, + "npcid": 15328, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 56000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 370000 + }, + { + "a": "item", + "t": "23", + "n": 28700 + } + ], + "quickChallenge": 1 + }, + "329": { + "id": 329, + "npcid": 15329, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 56000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 370000 + }, + { + "a": "item", + "t": "23", + "n": 28800 + } + ], + "quickChallenge": 1 + }, + "330": { + "id": 330, + "npcid": 15330, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 56000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 370000 + }, + { + "a": "item", + "t": "23", + "n": 28800 + } + ], + "quickChallenge": 1 + }, + "331": { + "id": 331, + "npcid": 15331, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 57000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 380000 + }, + { + "a": "item", + "t": "23", + "n": 28900 + } + ], + "quickChallenge": 1 + }, + "332": { + "id": 332, + "npcid": 15332, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 57000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 380000 + }, + { + "a": "item", + "t": "23", + "n": 28900 + } + ], + "quickChallenge": 1 + }, + "333": { + "id": 333, + "npcid": 15333, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 57000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 380000 + }, + { + "a": "item", + "t": "23", + "n": 28900 + } + ], + "quickChallenge": 1 + }, + "334": { + "id": 334, + "npcid": 15334, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 57000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 380000 + }, + { + "a": "item", + "t": "23", + "n": 29000 + } + ], + "quickChallenge": 1 + }, + "335": { + "id": 335, + "npcid": 15335, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 57000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 380000 + }, + { + "a": "item", + "t": "23", + "n": 29000 + } + ], + "quickChallenge": 1 + }, + "336": { + "id": 336, + "npcid": 15336, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 58000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 380000 + }, + { + "a": "item", + "t": "23", + "n": 29000 + } + ], + "quickChallenge": 1 + }, + "337": { + "id": 337, + "npcid": 15337, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 58000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 380000 + }, + { + "a": "item", + "t": "23", + "n": 29100 + } + ], + "quickChallenge": 1 + }, + "338": { + "id": 338, + "npcid": 15338, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 58000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 380000 + }, + { + "a": "item", + "t": "23", + "n": 29100 + } + ], + "quickChallenge": 1 + }, + "339": { + "id": 339, + "npcid": 15339, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 58000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 380000 + }, + { + "a": "item", + "t": "23", + "n": 29200 + } + ], + "quickChallenge": 1 + }, + "340": { + "id": 340, + "npcid": 15340, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 58000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 380000 + }, + { + "a": "item", + "t": "23", + "n": 29200 + } + ], + "quickChallenge": 1 + }, + "341": { + "id": 341, + "npcid": 15341, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 59000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 390000 + }, + { + "a": "item", + "t": "23", + "n": 29200 + } + ], + "quickChallenge": 1 + }, + "342": { + "id": 342, + "npcid": 15342, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 59000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 390000 + }, + { + "a": "item", + "t": "23", + "n": 29300 + } + ], + "quickChallenge": 1 + }, + "343": { + "id": 343, + "npcid": 15343, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 59000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 390000 + }, + { + "a": "item", + "t": "23", + "n": 29300 + } + ], + "quickChallenge": 1 + }, + "344": { + "id": 344, + "npcid": 15344, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 59000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 390000 + }, + { + "a": "item", + "t": "23", + "n": 29400 + } + ], + "quickChallenge": 1 + }, + "345": { + "id": 345, + "npcid": 15345, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 59000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 390000 + }, + { + "a": "item", + "t": "23", + "n": 29400 + } + ], + "quickChallenge": 1 + }, + "346": { + "id": 346, + "npcid": 15346, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 60000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 390000 + }, + { + "a": "item", + "t": "23", + "n": 29400 + } + ], + "quickChallenge": 1 + }, + "347": { + "id": 347, + "npcid": 15347, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 60000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 390000 + }, + { + "a": "item", + "t": "23", + "n": 29500 + } + ], + "quickChallenge": 1 + }, + "348": { + "id": 348, + "npcid": 15348, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 60000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 390000 + }, + { + "a": "item", + "t": "23", + "n": 29500 + } + ], + "quickChallenge": 1 + }, + "349": { + "id": 349, + "npcid": 15349, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 60000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 390000 + }, + { + "a": "item", + "t": "23", + "n": 29600 + } + ], + "quickChallenge": 1 + }, + "350": { + "id": 350, + "npcid": 15350, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 60000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 390000 + }, + { + "a": "item", + "t": "23", + "n": 29600 + } + ], + "quickChallenge": 1 + }, + "351": { + "id": 351, + "npcid": 15351, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 61000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 400000 + }, + { + "a": "item", + "t": "23", + "n": 29600 + } + ], + "quickChallenge": 1 + }, + "352": { + "id": 352, + "npcid": 15352, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 61000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 400000 + }, + { + "a": "item", + "t": "23", + "n": 29700 + } + ], + "quickChallenge": 1 + }, + "353": { + "id": 353, + "npcid": 15353, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 61000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 400000 + }, + { + "a": "item", + "t": "23", + "n": 29700 + } + ], + "quickChallenge": 1 + }, + "354": { + "id": 354, + "npcid": 15354, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 61000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 400000 + }, + { + "a": "item", + "t": "23", + "n": 29800 + } + ], + "quickChallenge": 1 + }, + "355": { + "id": 355, + "npcid": 15355, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 61000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 400000 + }, + { + "a": "item", + "t": "23", + "n": 29800 + } + ], + "quickChallenge": 1 + }, + "356": { + "id": 356, + "npcid": 15356, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 62000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 400000 + }, + { + "a": "item", + "t": "23", + "n": 29800 + } + ], + "quickChallenge": 1 + }, + "357": { + "id": 357, + "npcid": 15357, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 62000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 400000 + }, + { + "a": "item", + "t": "23", + "n": 29900 + } + ], + "quickChallenge": 1 + }, + "358": { + "id": 358, + "npcid": 15358, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 62000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 400000 + }, + { + "a": "item", + "t": "23", + "n": 29900 + } + ], + "quickChallenge": 1 + }, + "359": { + "id": 359, + "npcid": 15359, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 62000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 400000 + }, + { + "a": "item", + "t": "23", + "n": 29900 + } + ], + "quickChallenge": 1 + }, + "360": { + "id": 360, + "npcid": 15360, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 62000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 400000 + }, + { + "a": "item", + "t": "23", + "n": 30000 + } + ], + "quickChallenge": 1 + }, + "361": { + "id": 361, + "npcid": 15361, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 63000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 410000 + }, + { + "a": "item", + "t": "23", + "n": 30000 + } + ], + "quickChallenge": 1 + }, + "362": { + "id": 362, + "npcid": 15362, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 63000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 410000 + }, + { + "a": "item", + "t": "23", + "n": 30100 + } + ], + "quickChallenge": 1 + }, + "363": { + "id": 363, + "npcid": 15363, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 63000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 410000 + }, + { + "a": "item", + "t": "23", + "n": 30100 + } + ], + "quickChallenge": 1 + }, + "364": { + "id": 364, + "npcid": 15364, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 63000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 410000 + }, + { + "a": "item", + "t": "23", + "n": 30100 + } + ], + "quickChallenge": 1 + }, + "365": { + "id": 365, + "npcid": 15365, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 63000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 410000 + }, + { + "a": "item", + "t": "23", + "n": 30200 + } + ], + "quickChallenge": 1 + }, + "366": { + "id": 366, + "npcid": 15366, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 64000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 410000 + }, + { + "a": "item", + "t": "23", + "n": 30200 + } + ], + "quickChallenge": 1 + }, + "367": { + "id": 367, + "npcid": 15367, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 64000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 410000 + }, + { + "a": "item", + "t": "23", + "n": 30300 + } + ], + "quickChallenge": 1 + }, + "368": { + "id": 368, + "npcid": 15368, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 64000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 410000 + }, + { + "a": "item", + "t": "23", + "n": 30300 + } + ], + "quickChallenge": 1 + }, + "369": { + "id": 369, + "npcid": 15369, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 64000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 410000 + }, + { + "a": "item", + "t": "23", + "n": 30300 + } + ], + "quickChallenge": 1 + }, + "370": { + "id": 370, + "npcid": 15370, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 64000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 410000 + }, + { + "a": "item", + "t": "23", + "n": 30400 + } + ], + "quickChallenge": 1 + }, + "371": { + "id": 371, + "npcid": 15371, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 65000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 420000 + }, + { + "a": "item", + "t": "23", + "n": 30400 + } + ], + "quickChallenge": 1 + }, + "372": { + "id": 372, + "npcid": 15372, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 65000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 420000 + }, + { + "a": "item", + "t": "23", + "n": 30400 + } + ], + "quickChallenge": 1 + }, + "373": { + "id": 373, + "npcid": 15373, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 65000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 420000 + }, + { + "a": "item", + "t": "23", + "n": 30500 + } + ], + "quickChallenge": 1 + }, + "374": { + "id": 374, + "npcid": 15374, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 65000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 420000 + }, + { + "a": "item", + "t": "23", + "n": 30500 + } + ], + "quickChallenge": 1 + }, + "375": { + "id": 375, + "npcid": 15375, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 65000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 420000 + }, + { + "a": "item", + "t": "23", + "n": 30600 + } + ], + "quickChallenge": 1 + }, + "376": { + "id": 376, + "npcid": 15376, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 66000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 420000 + }, + { + "a": "item", + "t": "23", + "n": 30600 + } + ], + "quickChallenge": 1 + }, + "377": { + "id": 377, + "npcid": 15377, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 66000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 420000 + }, + { + "a": "item", + "t": "23", + "n": 30600 + } + ], + "quickChallenge": 1 + }, + "378": { + "id": 378, + "npcid": 15378, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 66000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 420000 + }, + { + "a": "item", + "t": "23", + "n": 30700 + } + ], + "quickChallenge": 1 + }, + "379": { + "id": 379, + "npcid": 15379, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 66000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 420000 + }, + { + "a": "item", + "t": "23", + "n": 30700 + } + ], + "quickChallenge": 1 + }, + "380": { + "id": 380, + "npcid": 15380, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 66000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 420000 + }, + { + "a": "item", + "t": "23", + "n": 30700 + } + ], + "quickChallenge": 1 + }, + "381": { + "id": 381, + "npcid": 15381, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 67000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 430000 + }, + { + "a": "item", + "t": "23", + "n": 30800 + } + ], + "quickChallenge": 1 + }, + "382": { + "id": 382, + "npcid": 15382, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 67000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 430000 + }, + { + "a": "item", + "t": "23", + "n": 30800 + } + ], + "quickChallenge": 1 + }, + "383": { + "id": 383, + "npcid": 15383, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 67000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 430000 + }, + { + "a": "item", + "t": "23", + "n": 30900 + } + ], + "quickChallenge": 1 + }, + "384": { + "id": 384, + "npcid": 15384, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 67000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 430000 + }, + { + "a": "item", + "t": "23", + "n": 30900 + } + ], + "quickChallenge": 1 + }, + "385": { + "id": 385, + "npcid": 15385, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 67000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 430000 + }, + { + "a": "item", + "t": "23", + "n": 30900 + } + ], + "quickChallenge": 1 + }, + "386": { + "id": 386, + "npcid": 15386, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 68000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 430000 + }, + { + "a": "item", + "t": "23", + "n": 31000 + } + ], + "quickChallenge": 1 + }, + "387": { + "id": 387, + "npcid": 15387, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 68000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 430000 + }, + { + "a": "item", + "t": "23", + "n": 31000 + } + ], + "quickChallenge": 1 + }, + "388": { + "id": 388, + "npcid": 15388, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 68000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 430000 + }, + { + "a": "item", + "t": "23", + "n": 31000 + } + ], + "quickChallenge": 1 + }, + "389": { + "id": 389, + "npcid": 15389, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 68000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 430000 + }, + { + "a": "item", + "t": "23", + "n": 31100 + } + ], + "quickChallenge": 1 + }, + "390": { + "id": 390, + "npcid": 15390, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 68000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 430000 + }, + { + "a": "item", + "t": "23", + "n": 31100 + } + ], + "quickChallenge": 1 + }, + "391": { + "id": 391, + "npcid": 15391, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 69000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 440000 + }, + { + "a": "item", + "t": "23", + "n": 31100 + } + ], + "quickChallenge": 1 + }, + "392": { + "id": 392, + "npcid": 15392, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 69000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 440000 + }, + { + "a": "item", + "t": "23", + "n": 31200 + } + ], + "quickChallenge": 1 + }, + "393": { + "id": 393, + "npcid": 15393, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 69000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 440000 + }, + { + "a": "item", + "t": "23", + "n": 31200 + } + ], + "quickChallenge": 1 + }, + "394": { + "id": 394, + "npcid": 15394, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 69000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 440000 + }, + { + "a": "item", + "t": "23", + "n": 31300 + } + ], + "quickChallenge": 1 + }, + "395": { + "id": 395, + "npcid": 15395, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 69000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 440000 + }, + { + "a": "item", + "t": "23", + "n": 31300 + } + ], + "quickChallenge": 1 + }, + "396": { + "id": 396, + "npcid": 15396, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 70000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 440000 + }, + { + "a": "item", + "t": "23", + "n": 31300 + } + ], + "quickChallenge": 1 + }, + "397": { + "id": 397, + "npcid": 15397, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 70000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 440000 + }, + { + "a": "item", + "t": "23", + "n": 31400 + } + ], + "quickChallenge": 1 + }, + "398": { + "id": 398, + "npcid": 15398, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 70000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 440000 + }, + { + "a": "item", + "t": "23", + "n": 31400 + } + ], + "quickChallenge": 1 + }, + "399": { + "id": 399, + "npcid": 15399, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 70000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 440000 + }, + { + "a": "item", + "t": "23", + "n": 31400 + } + ], + "quickChallenge": 1 + }, + "400": { + "id": 400, + "npcid": 15400, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 70000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 440000 + }, + { + "a": "item", + "t": "23", + "n": 31500 + } + ], + "quickChallenge": 1 + }, + "401": { + "id": 401, + "npcid": 15401, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 71000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 450000 + }, + { + "a": "item", + "t": "23", + "n": 31500 + } + ], + "quickChallenge": 1 + }, + "402": { + "id": 402, + "npcid": 15402, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 71000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 450000 + }, + { + "a": "item", + "t": "23", + "n": 31500 + } + ], + "quickChallenge": 1 + }, + "403": { + "id": 403, + "npcid": 15403, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 71000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 450000 + }, + { + "a": "item", + "t": "23", + "n": 31600 + } + ], + "quickChallenge": 1 + }, + "404": { + "id": 404, + "npcid": 15404, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 71000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 450000 + }, + { + "a": "item", + "t": "23", + "n": 31600 + } + ], + "quickChallenge": 1 + }, + "405": { + "id": 405, + "npcid": 15405, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 71000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 450000 + }, + { + "a": "item", + "t": "23", + "n": 31700 + } + ], + "quickChallenge": 1 + }, + "406": { + "id": 406, + "npcid": 15406, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 72000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 450000 + }, + { + "a": "item", + "t": "23", + "n": 31700 + } + ], + "quickChallenge": 1 + }, + "407": { + "id": 407, + "npcid": 15407, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 72000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 450000 + }, + { + "a": "item", + "t": "23", + "n": 31700 + } + ], + "quickChallenge": 1 + }, + "408": { + "id": 408, + "npcid": 15408, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 72000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 450000 + }, + { + "a": "item", + "t": "23", + "n": 31800 + } + ], + "quickChallenge": 1 + }, + "409": { + "id": 409, + "npcid": 15409, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 72000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 450000 + }, + { + "a": "item", + "t": "23", + "n": 31800 + } + ], + "quickChallenge": 1 + }, + "410": { + "id": 410, + "npcid": 15410, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 72000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 450000 + }, + { + "a": "item", + "t": "23", + "n": 31800 + } + ], + "quickChallenge": 1 + }, + "411": { + "id": 411, + "npcid": 15411, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 73000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 460000 + }, + { + "a": "item", + "t": "23", + "n": 31900 + } + ], + "quickChallenge": 1 + }, + "412": { + "id": 412, + "npcid": 15412, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 73000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 460000 + }, + { + "a": "item", + "t": "23", + "n": 31900 + } + ], + "quickChallenge": 1 + }, + "413": { + "id": 413, + "npcid": 15413, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 73000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 460000 + }, + { + "a": "item", + "t": "23", + "n": 31900 + } + ], + "quickChallenge": 1 + }, + "414": { + "id": 414, + "npcid": 15414, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 73000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 460000 + }, + { + "a": "item", + "t": "23", + "n": 32000 + } + ], + "quickChallenge": 1 + }, + "415": { + "id": 415, + "npcid": 15415, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 73000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 460000 + }, + { + "a": "item", + "t": "23", + "n": 32000 + } + ], + "quickChallenge": 1 + }, + "416": { + "id": 416, + "npcid": 15416, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 74000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 460000 + }, + { + "a": "item", + "t": "23", + "n": 32000 + } + ], + "quickChallenge": 1 + }, + "417": { + "id": 417, + "npcid": 15417, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 74000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 460000 + }, + { + "a": "item", + "t": "23", + "n": 32100 + } + ], + "quickChallenge": 1 + }, + "418": { + "id": 418, + "npcid": 15418, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 74000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 460000 + }, + { + "a": "item", + "t": "23", + "n": 32100 + } + ], + "quickChallenge": 1 + }, + "419": { + "id": 419, + "npcid": 15419, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 74000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 460000 + }, + { + "a": "item", + "t": "23", + "n": 32200 + } + ], + "quickChallenge": 1 + }, + "420": { + "id": 420, + "npcid": 15420, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 74000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 460000 + }, + { + "a": "item", + "t": "23", + "n": 32200 + } + ], + "quickChallenge": 1 + }, + "421": { + "id": 421, + "npcid": 15421, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 75000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 470000 + }, + { + "a": "item", + "t": "23", + "n": 32200 + } + ], + "quickChallenge": 1 + }, + "422": { + "id": 422, + "npcid": 15422, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 75000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 470000 + }, + { + "a": "item", + "t": "23", + "n": 32300 + } + ], + "quickChallenge": 1 + }, + "423": { + "id": 423, + "npcid": 15423, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 75000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 470000 + }, + { + "a": "item", + "t": "23", + "n": 32300 + } + ], + "quickChallenge": 1 + }, + "424": { + "id": 424, + "npcid": 15424, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 75000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 470000 + }, + { + "a": "item", + "t": "23", + "n": 32300 + } + ], + "quickChallenge": 1 + }, + "425": { + "id": 425, + "npcid": 15425, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 75000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 470000 + }, + { + "a": "item", + "t": "23", + "n": 32400 + } + ], + "quickChallenge": 1 + }, + "426": { + "id": 426, + "npcid": 15426, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 76000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 470000 + }, + { + "a": "item", + "t": "23", + "n": 32400 + } + ], + "quickChallenge": 1 + }, + "427": { + "id": 427, + "npcid": 15427, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 76000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 470000 + }, + { + "a": "item", + "t": "23", + "n": 32400 + } + ], + "quickChallenge": 1 + }, + "428": { + "id": 428, + "npcid": 15428, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 76000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 470000 + }, + { + "a": "item", + "t": "23", + "n": 32500 + } + ], + "quickChallenge": 1 + }, + "429": { + "id": 429, + "npcid": 15429, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 76000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 470000 + }, + { + "a": "item", + "t": "23", + "n": 32500 + } + ], + "quickChallenge": 1 + }, + "430": { + "id": 430, + "npcid": 15430, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 76000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 470000 + }, + { + "a": "item", + "t": "23", + "n": 32500 + } + ], + "quickChallenge": 1 + }, + "431": { + "id": 431, + "npcid": 15431, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 77000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 480000 + }, + { + "a": "item", + "t": "23", + "n": 32600 + } + ], + "quickChallenge": 1 + }, + "432": { + "id": 432, + "npcid": 15432, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 77000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 480000 + }, + { + "a": "item", + "t": "23", + "n": 32600 + } + ], + "quickChallenge": 1 + }, + "433": { + "id": 433, + "npcid": 15433, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 77000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 480000 + }, + { + "a": "item", + "t": "23", + "n": 32600 + } + ], + "quickChallenge": 1 + }, + "434": { + "id": 434, + "npcid": 15434, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 77000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 480000 + }, + { + "a": "item", + "t": "23", + "n": 32700 + } + ], + "quickChallenge": 1 + }, + "435": { + "id": 435, + "npcid": 15435, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 77000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 480000 + }, + { + "a": "item", + "t": "23", + "n": 32700 + } + ], + "quickChallenge": 1 + }, + "436": { + "id": 436, + "npcid": 15436, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 78000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 480000 + }, + { + "a": "item", + "t": "23", + "n": 32700 + } + ], + "quickChallenge": 1 + }, + "437": { + "id": 437, + "npcid": 15437, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 78000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 480000 + }, + { + "a": "item", + "t": "23", + "n": 32800 + } + ], + "quickChallenge": 1 + }, + "438": { + "id": 438, + "npcid": 15438, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 78000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 480000 + }, + { + "a": "item", + "t": "23", + "n": 32800 + } + ], + "quickChallenge": 1 + }, + "439": { + "id": 439, + "npcid": 15439, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 78000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 480000 + }, + { + "a": "item", + "t": "23", + "n": 32900 + } + ], + "quickChallenge": 1 + }, + "440": { + "id": 440, + "npcid": 15440, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 78000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 480000 + }, + { + "a": "item", + "t": "23", + "n": 32900 + } + ], + "quickChallenge": 1 + }, + "441": { + "id": 441, + "npcid": 15441, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 79000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 490000 + }, + { + "a": "item", + "t": "23", + "n": 32900 + } + ], + "quickChallenge": 1 + }, + "442": { + "id": 442, + "npcid": 15442, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 79000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 490000 + }, + { + "a": "item", + "t": "23", + "n": 33000 + } + ], + "quickChallenge": 1 + }, + "443": { + "id": 443, + "npcid": 15443, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 79000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 490000 + }, + { + "a": "item", + "t": "23", + "n": 33000 + } + ], + "quickChallenge": 1 + }, + "444": { + "id": 444, + "npcid": 15444, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 79000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 490000 + }, + { + "a": "item", + "t": "23", + "n": 33000 + } + ], + "quickChallenge": 1 + }, + "445": { + "id": 445, + "npcid": 15445, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 79000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 490000 + }, + { + "a": "item", + "t": "23", + "n": 33100 + } + ], + "quickChallenge": 1 + }, + "446": { + "id": 446, + "npcid": 15446, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 80000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 490000 + }, + { + "a": "item", + "t": "23", + "n": 33100 + } + ], + "quickChallenge": 1 + }, + "447": { + "id": 447, + "npcid": 15447, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 80000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 490000 + }, + { + "a": "item", + "t": "23", + "n": 33100 + } + ], + "quickChallenge": 1 + }, + "448": { + "id": 448, + "npcid": 15448, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 80000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 490000 + }, + { + "a": "item", + "t": "23", + "n": 33200 + } + ], + "quickChallenge": 1 + }, + "449": { + "id": 449, + "npcid": 15449, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 80000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 490000 + }, + { + "a": "item", + "t": "23", + "n": 33200 + } + ], + "quickChallenge": 1 + }, + "450": { + "id": 450, + "npcid": 15450, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 80000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 490000 + }, + { + "a": "item", + "t": "23", + "n": 33200 + } + ], + "quickChallenge": 1 + }, + "451": { + "id": 451, + "npcid": 15451, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 81000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 500000 + }, + { + "a": "item", + "t": "23", + "n": 33300 + } + ], + "quickChallenge": 1 + }, + "452": { + "id": 452, + "npcid": 15452, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 81000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 500000 + }, + { + "a": "item", + "t": "23", + "n": 33300 + } + ], + "quickChallenge": 1 + }, + "453": { + "id": 453, + "npcid": 15453, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 81000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 500000 + }, + { + "a": "item", + "t": "23", + "n": 33300 + } + ], + "quickChallenge": 1 + }, + "454": { + "id": 454, + "npcid": 15454, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 81000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 500000 + }, + { + "a": "item", + "t": "23", + "n": 33400 + } + ], + "quickChallenge": 1 + }, + "455": { + "id": 455, + "npcid": 15455, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 81000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 500000 + }, + { + "a": "item", + "t": "23", + "n": 33400 + } + ], + "quickChallenge": 1 + }, + "456": { + "id": 456, + "npcid": 15456, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 82000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 500000 + }, + { + "a": "item", + "t": "23", + "n": 33400 + } + ], + "quickChallenge": 1 + }, + "457": { + "id": 457, + "npcid": 15457, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 82000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 500000 + }, + { + "a": "item", + "t": "23", + "n": 33500 + } + ], + "quickChallenge": 1 + }, + "458": { + "id": 458, + "npcid": 15458, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 82000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 500000 + }, + { + "a": "item", + "t": "23", + "n": 33500 + } + ], + "quickChallenge": 1 + }, + "459": { + "id": 459, + "npcid": 15459, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 82000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 500000 + }, + { + "a": "item", + "t": "23", + "n": 33500 + } + ], + "quickChallenge": 1 + }, + "460": { + "id": 460, + "npcid": 15460, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 82000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 500000 + }, + { + "a": "item", + "t": "23", + "n": 33600 + } + ], + "quickChallenge": 1 + }, + "461": { + "id": 461, + "npcid": 15461, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 83000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 510000 + }, + { + "a": "item", + "t": "23", + "n": 33600 + } + ], + "quickChallenge": 1 + }, + "462": { + "id": 462, + "npcid": 15462, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 83000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 510000 + }, + { + "a": "item", + "t": "23", + "n": 33600 + } + ], + "quickChallenge": 1 + }, + "463": { + "id": 463, + "npcid": 15463, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 83000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 510000 + }, + { + "a": "item", + "t": "23", + "n": 33700 + } + ], + "quickChallenge": 1 + }, + "464": { + "id": 464, + "npcid": 15464, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 83000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 510000 + }, + { + "a": "item", + "t": "23", + "n": 33700 + } + ], + "quickChallenge": 1 + }, + "465": { + "id": 465, + "npcid": 15465, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 83000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 510000 + }, + { + "a": "item", + "t": "23", + "n": 33700 + } + ], + "quickChallenge": 1 + }, + "466": { + "id": 466, + "npcid": 15466, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 84000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 510000 + }, + { + "a": "item", + "t": "23", + "n": 33800 + } + ], + "quickChallenge": 1 + }, + "467": { + "id": 467, + "npcid": 15467, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 84000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 510000 + }, + { + "a": "item", + "t": "23", + "n": 33800 + } + ], + "quickChallenge": 1 + }, + "468": { + "id": 468, + "npcid": 15468, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 84000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 510000 + }, + { + "a": "item", + "t": "23", + "n": 33800 + } + ], + "quickChallenge": 1 + }, + "469": { + "id": 469, + "npcid": 15469, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 84000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 510000 + }, + { + "a": "item", + "t": "23", + "n": 33900 + } + ], + "quickChallenge": 1 + }, + "470": { + "id": 470, + "npcid": 15470, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 84000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 510000 + }, + { + "a": "item", + "t": "23", + "n": 33900 + } + ], + "quickChallenge": 1 + }, + "471": { + "id": 471, + "npcid": 15471, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 85000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 520000 + }, + { + "a": "item", + "t": "23", + "n": 33900 + } + ], + "quickChallenge": 1 + }, + "472": { + "id": 472, + "npcid": 15472, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 85000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 520000 + }, + { + "a": "item", + "t": "23", + "n": 34000 + } + ], + "quickChallenge": 1 + }, + "473": { + "id": 473, + "npcid": 15473, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 85000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 520000 + }, + { + "a": "item", + "t": "23", + "n": 34000 + } + ], + "quickChallenge": 1 + }, + "474": { + "id": 474, + "npcid": 15474, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 85000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 520000 + }, + { + "a": "item", + "t": "23", + "n": 34000 + } + ], + "quickChallenge": 1 + }, + "475": { + "id": 475, + "npcid": 15475, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 85000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 520000 + }, + { + "a": "item", + "t": "23", + "n": 34100 + } + ], + "quickChallenge": 1 + }, + "476": { + "id": 476, + "npcid": 15476, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 86000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 520000 + }, + { + "a": "item", + "t": "23", + "n": 34100 + } + ], + "quickChallenge": 1 + }, + "477": { + "id": 477, + "npcid": 15477, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 86000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 520000 + }, + { + "a": "item", + "t": "23", + "n": 34100 + } + ], + "quickChallenge": 1 + }, + "478": { + "id": 478, + "npcid": 15478, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 86000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 520000 + }, + { + "a": "item", + "t": "23", + "n": 34200 + } + ], + "quickChallenge": 1 + }, + "479": { + "id": 479, + "npcid": 15479, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 86000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 520000 + }, + { + "a": "item", + "t": "23", + "n": 34200 + } + ], + "quickChallenge": 1 + }, + "480": { + "id": 480, + "npcid": 15480, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 86000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 520000 + }, + { + "a": "item", + "t": "23", + "n": 34200 + } + ], + "quickChallenge": 1 + }, + "481": { + "id": 481, + "npcid": 15481, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 87000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 530000 + }, + { + "a": "item", + "t": "23", + "n": 34300 + } + ], + "quickChallenge": 1 + }, + "482": { + "id": 482, + "npcid": 15482, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 87000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 530000 + }, + { + "a": "item", + "t": "23", + "n": 34300 + } + ], + "quickChallenge": 1 + }, + "483": { + "id": 483, + "npcid": 15483, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 87000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 530000 + }, + { + "a": "item", + "t": "23", + "n": 34300 + } + ], + "quickChallenge": 1 + }, + "484": { + "id": 484, + "npcid": 15484, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 87000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 530000 + }, + { + "a": "item", + "t": "23", + "n": 34400 + } + ], + "quickChallenge": 1 + }, + "485": { + "id": 485, + "npcid": 15485, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 87000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 530000 + }, + { + "a": "item", + "t": "23", + "n": 34400 + } + ], + "quickChallenge": 1 + }, + "486": { + "id": 486, + "npcid": 15486, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 88000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 530000 + }, + { + "a": "item", + "t": "23", + "n": 34400 + } + ], + "quickChallenge": 1 + }, + "487": { + "id": 487, + "npcid": 15487, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 88000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 530000 + }, + { + "a": "item", + "t": "23", + "n": 34500 + } + ], + "quickChallenge": 1 + }, + "488": { + "id": 488, + "npcid": 15488, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 88000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 530000 + }, + { + "a": "item", + "t": "23", + "n": 34500 + } + ], + "quickChallenge": 1 + }, + "489": { + "id": 489, + "npcid": 15489, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 88000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 530000 + }, + { + "a": "item", + "t": "23", + "n": 34500 + } + ], + "quickChallenge": 1 + }, + "490": { + "id": 490, + "npcid": 15490, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 88000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_msk", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 530000 + }, + { + "a": "item", + "t": "23", + "n": 34600 + } + ], + "quickChallenge": 1 + }, + "491": { + "id": 491, + "npcid": 15491, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 89000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 540000 + }, + { + "a": "item", + "t": "23", + "n": 34600 + } + ], + "quickChallenge": 1 + }, + "492": { + "id": 492, + "npcid": 15492, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 89000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 540000 + }, + { + "a": "item", + "t": "23", + "n": 34600 + } + ], + "quickChallenge": 1 + }, + "493": { + "id": 493, + "npcid": 15493, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 89000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 540000 + }, + { + "a": "item", + "t": "23", + "n": 34700 + } + ], + "quickChallenge": 1 + }, + "494": { + "id": 494, + "npcid": 15494, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 89000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 540000 + }, + { + "a": "item", + "t": "23", + "n": 34700 + } + ], + "quickChallenge": 1 + }, + "495": { + "id": 495, + "npcid": 15495, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 89000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 540000 + }, + { + "a": "item", + "t": "23", + "n": 34700 + } + ], + "quickChallenge": 1 + }, + "496": { + "id": 496, + "npcid": 15496, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 90000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 540000 + }, + { + "a": "item", + "t": "23", + "n": 34700 + } + ], + "quickChallenge": 1 + }, + "497": { + "id": 497, + "npcid": 15497, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 90000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 540000 + }, + { + "a": "item", + "t": "23", + "n": 34800 + } + ], + "quickChallenge": 1 + }, + "498": { + "id": 498, + "npcid": 15498, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 90000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "30", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 540000 + }, + { + "a": "item", + "t": "23", + "n": 34800 + } + ], + "quickChallenge": 1 + }, + "499": { + "id": 499, + "npcid": 15499, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 90000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "31", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 540000 + }, + { + "a": "item", + "t": "23", + "n": 34800 + } + ], + "quickChallenge": 1 + }, + "500": { + "id": 500, + "npcid": 15500, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 90000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "23", + "n": 800 + }, + { + "a": "item", + "t": "32", + "n": 5 + } + ], + "img": "bg_fight1_sgd", + "sdprize": [ + { + "a": "item", + "t": "1", + "n": 540000 + }, + { + "a": "item", + "t": "23", + "n": 34900 + } + ], + "quickChallenge": 1 + } +} \ No newline at end of file diff --git a/src/json/patacom.json b/src/json/patacom.json new file mode 100644 index 0000000..9a202fb --- /dev/null +++ b/src/json/patacom.json @@ -0,0 +1,882 @@ +{ + "10": { + "id": 10, + "prize": [ + { + "a": "item", + "t": "1", + "n": 20000 + }, + { + "a": "item", + "t": "12", + "n": 50 + } + ] + }, + "20": { + "id": 20, + "prize": [ + { + "a": "item", + "t": "1", + "n": 40000 + }, + { + "a": "item", + "t": "12", + "n": 50 + }, + { + "a": "equip", + "t": "4003", + "n": 1 + } + ] + }, + "30": { + "id": 30, + "prize": [ + { + "a": "item", + "t": "1", + "n": 60000 + }, + { + "a": "item", + "t": "12", + "n": 50 + }, + { + "a": "item", + "t": "50001", + "n": 1 + } + ] + }, + "40": { + "id": 40, + "prize": [ + { + "a": "item", + "t": "1", + "n": 80000 + }, + { + "a": "item", + "t": "12", + "n": 50 + }, + { + "a": "equip", + "t": "3003", + "n": 1 + } + ] + }, + "50": { + "id": 50, + "prize": [ + { + "a": "item", + "t": "1", + "n": 100000 + }, + { + "a": "item", + "t": "12", + "n": 50 + } + ] + }, + "60": { + "id": 60, + "prize": [ + { + "a": "item", + "t": "1", + "n": 120000 + }, + { + "a": "item", + "t": "12", + "n": 50 + }, + { + "a": "equip", + "t": "2003", + "n": 1 + } + ] + }, + "70": { + "id": 70, + "prize": [ + { + "a": "item", + "t": "1", + "n": 140000 + }, + { + "a": "item", + "t": "12", + "n": 50 + } + ] + }, + "80": { + "id": 80, + "prize": [ + { + "a": "item", + "t": "1", + "n": 160000 + }, + { + "a": "item", + "t": "12", + "n": 50 + }, + { + "a": "equip", + "t": "1003", + "n": 1 + } + ] + }, + "90": { + "id": 90, + "prize": [ + { + "a": "item", + "t": "1", + "n": 180000 + }, + { + "a": "item", + "t": "12", + "n": 50 + } + ] + }, + "100": { + "id": 100, + "prize": [ + { + "a": "item", + "t": "1", + "n": 200000 + }, + { + "a": "item", + "t": "12", + "n": 50 + }, + { + "a": "equip", + "t": "4004", + "n": 1 + } + ] + }, + "110": { + "id": 110, + "prize": [ + { + "a": "item", + "t": "1", + "n": 220000 + }, + { + "a": "item", + "t": "12", + "n": 80 + } + ] + }, + "120": { + "id": 120, + "prize": [ + { + "a": "item", + "t": "1", + "n": 240000 + }, + { + "a": "item", + "t": "12", + "n": 80 + }, + { + "a": "equip", + "t": "3004", + "n": 1 + } + ] + }, + "130": { + "id": 130, + "prize": [ + { + "a": "item", + "t": "1", + "n": 260000 + }, + { + "a": "item", + "t": "12", + "n": 80 + } + ] + }, + "140": { + "id": 140, + "prize": [ + { + "a": "item", + "t": "1", + "n": 280000 + }, + { + "a": "item", + "t": "12", + "n": 80 + }, + { + "a": "equip", + "t": "2004", + "n": 1 + } + ] + }, + "150": { + "id": 150, + "prize": [ + { + "a": "item", + "t": "1", + "n": 300000 + }, + { + "a": "item", + "t": "12", + "n": 80 + } + ] + }, + "160": { + "id": 160, + "prize": [ + { + "a": "item", + "t": "1", + "n": 320000 + }, + { + "a": "item", + "t": "12", + "n": 80 + }, + { + "a": "equip", + "t": "1004", + "n": 1 + } + ] + }, + "170": { + "id": 170, + "prize": [ + { + "a": "item", + "t": "1", + "n": 340000 + }, + { + "a": "item", + "t": "12", + "n": 80 + } + ] + }, + "180": { + "id": 180, + "prize": [ + { + "a": "item", + "t": "1", + "n": 360000 + }, + { + "a": "item", + "t": "12", + "n": 80 + }, + { + "a": "equip", + "t": "4005", + "n": 1 + } + ] + }, + "190": { + "id": 190, + "prize": [ + { + "a": "item", + "t": "1", + "n": 380000 + }, + { + "a": "item", + "t": "12", + "n": 80 + } + ] + }, + "200": { + "id": 200, + "prize": [ + { + "a": "item", + "t": "1", + "n": 400000 + }, + { + "a": "item", + "t": "12", + "n": 80 + }, + { + "a": "equip", + "t": "3005", + "n": 1 + } + ] + }, + "210": { + "id": 210, + "prize": [ + { + "a": "item", + "t": "1", + "n": 420000 + }, + { + "a": "item", + "t": "12", + "n": 100 + } + ] + }, + "220": { + "id": 220, + "prize": [ + { + "a": "item", + "t": "1", + "n": 440000 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "equip", + "t": "2005", + "n": 1 + } + ] + }, + "230": { + "id": 230, + "prize": [ + { + "a": "item", + "t": "1", + "n": 460000 + }, + { + "a": "item", + "t": "12", + "n": 100 + } + ] + }, + "240": { + "id": 240, + "prize": [ + { + "a": "item", + "t": "1", + "n": 480000 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "equip", + "t": "1005", + "n": 1 + } + ] + }, + "250": { + "id": 250, + "prize": [ + { + "a": "item", + "t": "1", + "n": 500000 + }, + { + "a": "item", + "t": "12", + "n": 100 + } + ] + }, + "260": { + "id": 260, + "prize": [ + { + "a": "item", + "t": "1", + "n": 520000 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "equip", + "t": "4006", + "n": 1 + } + ] + }, + "270": { + "id": 270, + "prize": [ + { + "a": "item", + "t": "1", + "n": 540000 + }, + { + "a": "item", + "t": "12", + "n": 100 + } + ] + }, + "280": { + "id": 280, + "prize": [ + { + "a": "item", + "t": "1", + "n": 560000 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "equip", + "t": "3006", + "n": 1 + } + ] + }, + "290": { + "id": 290, + "prize": [ + { + "a": "item", + "t": "1", + "n": 580000 + }, + { + "a": "item", + "t": "12", + "n": 100 + } + ] + }, + "300": { + "id": 300, + "prize": [ + { + "a": "item", + "t": "1", + "n": 600000 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "equip", + "t": "2006", + "n": 1 + } + ] + }, + "310": { + "id": 310, + "prize": [ + { + "a": "item", + "t": "1", + "n": 620000 + }, + { + "a": "item", + "t": "12", + "n": 200 + } + ] + }, + "320": { + "id": 320, + "prize": [ + { + "a": "item", + "t": "1", + "n": 640000 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "equip", + "t": "1006", + "n": 1 + } + ] + }, + "330": { + "id": 330, + "prize": [ + { + "a": "item", + "t": "1", + "n": 660000 + }, + { + "a": "item", + "t": "12", + "n": 200 + } + ] + }, + "340": { + "id": 340, + "prize": [ + { + "a": "item", + "t": "1", + "n": 680000 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "equip", + "t": "4007", + "n": 1 + } + ] + }, + "350": { + "id": 350, + "prize": [ + { + "a": "item", + "t": "1", + "n": 700000 + }, + { + "a": "item", + "t": "12", + "n": 200 + } + ] + }, + "360": { + "id": 360, + "prize": [ + { + "a": "item", + "t": "1", + "n": 720000 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "equip", + "t": "3007", + "n": 1 + } + ] + }, + "370": { + "id": 370, + "prize": [ + { + "a": "item", + "t": "1", + "n": 740000 + }, + { + "a": "item", + "t": "12", + "n": 200 + } + ] + }, + "380": { + "id": 380, + "prize": [ + { + "a": "item", + "t": "1", + "n": 760000 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "equip", + "t": "2007", + "n": 1 + } + ] + }, + "390": { + "id": 390, + "prize": [ + { + "a": "item", + "t": "1", + "n": 780000 + }, + { + "a": "item", + "t": "12", + "n": 200 + } + ] + }, + "400": { + "id": 400, + "prize": [ + { + "a": "item", + "t": "1", + "n": 800000 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "equip", + "t": "1007", + "n": 1 + } + ] + }, + "410": { + "id": 410, + "prize": [ + { + "a": "item", + "t": "1", + "n": 820000 + }, + { + "a": "item", + "t": "12", + "n": 300 + } + ] + }, + "420": { + "id": 420, + "prize": [ + { + "a": "item", + "t": "1", + "n": 840000 + }, + { + "a": "item", + "t": "12", + "n": 300 + }, + { + "a": "equip", + "t": "4008", + "n": 1 + } + ] + }, + "430": { + "id": 430, + "prize": [ + { + "a": "item", + "t": "1", + "n": 860000 + }, + { + "a": "item", + "t": "12", + "n": 300 + } + ] + }, + "440": { + "id": 440, + "prize": [ + { + "a": "item", + "t": "1", + "n": 880000 + }, + { + "a": "item", + "t": "12", + "n": 300 + }, + { + "a": "equip", + "t": "3008", + "n": 1 + } + ] + }, + "450": { + "id": 450, + "prize": [ + { + "a": "item", + "t": "1", + "n": 900000 + }, + { + "a": "item", + "t": "12", + "n": 300 + } + ] + }, + "460": { + "id": 460, + "prize": [ + { + "a": "item", + "t": "1", + "n": 920000 + }, + { + "a": "item", + "t": "12", + "n": 300 + }, + { + "a": "equip", + "t": "2008", + "n": 1 + } + ] + }, + "470": { + "id": 470, + "prize": [ + { + "a": "item", + "t": "1", + "n": 940000 + }, + { + "a": "item", + "t": "12", + "n": 300 + } + ] + }, + "480": { + "id": 480, + "prize": [ + { + "a": "item", + "t": "1", + "n": 960000 + }, + { + "a": "item", + "t": "12", + "n": 300 + }, + { + "a": "equip", + "t": "1008", + "n": 1 + } + ] + }, + "490": { + "id": 490, + "prize": [ + { + "a": "item", + "t": "1", + "n": 980000 + }, + { + "a": "item", + "t": "12", + "n": 300 + } + ] + }, + "500": { + "id": 500, + "prize": [ + { + "a": "item", + "t": "1", + "n": 1000000 + }, + { + "a": "item", + "t": "12", + "n": 300 + }, + { + "a": "equip", + "t": "4009", + "n": 1 + } + ] + } +} \ No newline at end of file diff --git a/src/json/pay.json b/src/json/pay.json new file mode 100644 index 0000000..5ba8e39 --- /dev/null +++ b/src/json/pay.json @@ -0,0 +1,3527 @@ +{ + "zuanshi_6": { + "id": "zuanshi_6", + "money": 6, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 60 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 60 + } + ], + "firstPayPrize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 60 + } + ], + "name": "pay_name_zuanshi_6", + "undefined": "6元充值", + "time": -1, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "zuanshi_30": { + "id": "zuanshi_30", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + } + ], + "firstPayPrize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + } + ], + "name": "pay_name_zuanshi_30", + "undefined": "30元充值", + "time": -1, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "zuanshi_68": { + "id": "zuanshi_68", + "money": 68, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 680 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 680 + } + ], + "firstPayPrize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 680 + } + ], + "name": "pay_name_zuanshi_68", + "undefined": "68元充值", + "time": -1, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "zuanshi_128": { + "id": "zuanshi_128", + "money": 128, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 1280 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1280 + } + ], + "firstPayPrize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1280 + } + ], + "name": "pay_name_zuanshi_128", + "undefined": "128元充值", + "time": -1, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "zuanshi_328": { + "id": "zuanshi_328", + "money": 328, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 3280 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 3280 + } + ], + "firstPayPrize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 3280 + } + ], + "name": "pay_name_zuanshi_328", + "undefined": "328元充值", + "time": -1, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "zuanshi_648": { + "id": "zuanshi_648", + "money": 648, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 6480 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 6480 + } + ], + "firstPayPrize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 6480 + } + ], + "name": "pay_name_zuanshi_648", + "undefined": "648元充值", + "time": -1, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "dengjijijin": { + "id": "dengjijijin", + "money": 68, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 680 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_dengjijijin", + "undefined": "等级基金", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "guanqiajijin": { + "id": "guanqiajijin", + "money": 68, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 680 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_guanqiajijin", + "undefined": "关卡基金", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "dayjijin": { + "id": "dayjijin", + "money": 98, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 980 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_dayjijin", + "undefined": "每日基金", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "tianshujijin": { + "id": "tianshujijin", + "money": 98, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 980 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_tianshujijin", + "undefined": "天数基金", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "zhanling": { + "id": "zhanling", + "money": 198, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 1980 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_zhanling", + "undefined": "战令", + "time": 2592000, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "qingbaotequan": { + "id": "qingbaotequan", + "money": 68, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 680 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 680 + } + ], + "firstPayPrize": [], + "name": "pay_name_qingbaotequan", + "undefined": "情报特权", + "time": -1, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "zuozhantequan": { + "id": "zuozhantequan", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + }, + { + "a": "item", + "t": "24", + "n": 10 + } + ], + "firstPayPrize": [], + "name": "pay_name_zuozhantequan", + "undefined": "作战特权", + "time": 2592000, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "caifutequan": { + "id": "caifutequan", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + }, + { + "a": "item", + "t": "6", + "n": 20 + } + ], + "firstPayPrize": [], + "name": "pay_name_caifutequan", + "undefined": "财富特权", + "time": 2592000, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "jiubatequan": { + "id": "jiubatequan", + "money": 68, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 680 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 680 + }, + { + "a": "item", + "t": "4", + "n": 10 + } + ], + "firstPayPrize": [], + "name": "pay_name_jiubatequan", + "undefined": "酒吧特权", + "time": 2592000, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "zhongshenka": { + "id": "zhongshenka", + "money": 98, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 980 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 980 + } + ], + "firstPayPrize": [], + "name": "pay_name_zhongshenka", + "undefined": "终生卡", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "chaozhiyueka": { + "id": "chaozhiyueka", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + }, + { + "a": "item", + "t": "4", + "n": 5 + } + ], + "firstPayPrize": [], + "name": "pay_name_chaozhiyueka", + "undefined": "超值月卡", + "time": 2592000, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "zhizunyueka": { + "id": "zhizunyueka", + "money": 98, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 980 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 980 + }, + { + "a": "item", + "t": "4", + "n": 10 + } + ], + "firstPayPrize": [], + "name": "pay_name_zhizunyueka", + "undefined": "至尊月卡", + "time": 2592000, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "zhoulibao1": { + "id": "zhoulibao1", + "money": 6, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 60 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 60 + }, + { + "a": "item", + "t": "4", + "n": 5 + } + ], + "firstPayPrize": [], + "name": "pay_name_zhoulibao1", + "undefined": "周礼包1", + "time": -1, + "buys": 3, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "zhoulibao2": { + "id": "zhoulibao2", + "money": 12, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 120 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 120 + }, + { + "a": "item", + "t": "2", + "n": 300 + }, + { + "a": "item", + "t": "18", + "n": 30 + } + ], + "firstPayPrize": [], + "name": "pay_name_zhoulibao2", + "undefined": "周礼包2", + "time": -1, + "buys": 3, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "zhoulibao3": { + "id": "zhoulibao3", + "money": 18, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 180 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 180 + }, + { + "a": "item", + "t": "9", + "n": 100 + }, + { + "a": "item", + "t": "10", + "n": 10 + } + ], + "firstPayPrize": [], + "name": "pay_name_zhoulibao3", + "undefined": "周礼包3", + "time": -1, + "buys": 3, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "zhoulibao4": { + "id": "zhoulibao4", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + }, + { + "a": "item", + "t": "1", + "n": 2000000 + } + ], + "firstPayPrize": [], + "name": "pay_name_zhoulibao4", + "undefined": "周礼包4", + "time": -1, + "buys": 3, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "zhoulibao5": { + "id": "zhoulibao5", + "money": 68, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 680 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 680 + }, + { + "a": "item", + "t": "1", + "n": 5000000 + } + ], + "firstPayPrize": [], + "name": "pay_name_zhoulibao5", + "undefined": "周礼包5", + "time": -1, + "buys": 6, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "zhoulibao6": { + "id": "zhoulibao6", + "money": 98, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 980 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 980 + }, + { + "a": "item", + "t": "28", + "n": 100000 + }, + { + "a": "item", + "t": "20", + "n": 800 + } + ], + "firstPayPrize": [], + "name": "pay_name_zhoulibao6", + "undefined": "周礼包6", + "time": -1, + "buys": 6, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "zhoulibao7": { + "id": "zhoulibao7", + "money": 128, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 1280 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1280 + }, + { + "a": "item", + "t": "2", + "n": 5000 + }, + { + "a": "item", + "t": "18", + "n": 300 + } + ], + "firstPayPrize": [], + "name": "pay_name_zhoulibao7", + "undefined": "周礼包7", + "time": -1, + "buys": 6, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "zhoulibao8": { + "id": "zhoulibao8", + "money": 328, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 3280 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 3280 + }, + { + "a": "item", + "t": "1", + "n": 25000000 + } + ], + "firstPayPrize": [], + "name": "pay_name_zhoulibao8", + "undefined": "周礼包8", + "time": -1, + "buys": 9, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "zhoulibao9": { + "id": "zhoulibao9", + "money": 328, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 3280 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 3280 + }, + { + "a": "item", + "t": "28", + "n": 500000 + }, + { + "a": "item", + "t": "20", + "n": 3500 + } + ], + "firstPayPrize": [], + "name": "pay_name_zhoulibao9", + "undefined": "周礼包9", + "time": -1, + "buys": 9, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "zhoulibao10": { + "id": "zhoulibao10", + "money": 648, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 6480 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 6480 + }, + { + "a": "item", + "t": "612", + "n": 200 + } + ], + "firstPayPrize": [], + "name": "pay_name_zhoulibao10", + "undefined": "周礼包10", + "time": -1, + "buys": 9, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "mapId10": { + "id": "mapId10", + "money": 68, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 680 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 680 + }, + { + "a": "hero", + "t": "5001", + "n": 1 + }, + { + "a": "item", + "t": "13", + "n": 75 + } + ], + "firstPayPrize": [], + "name": "pay_name_mapId10", + "undefined": "主线推送礼包", + "time": -1, + "buys": 3, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "mapId20": { + "id": "mapId20", + "money": 68, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 680 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 680 + }, + { + "a": "hero", + "t": "5001", + "n": 1 + }, + { + "a": "item", + "t": "13", + "n": 75 + } + ], + "firstPayPrize": [], + "name": "pay_name_mapId20", + "undefined": "主线推送礼包", + "time": -1, + "buys": 3, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "lv30": { + "id": "lv30", + "money": 6, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 60 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 120 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "firstPayPrize": [], + "name": "pay_name_lv30", + "undefined": "等级推送礼包", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "lv40": { + "id": "lv40", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 600 + }, + { + "a": "item", + "t": "24", + "n": 10 + }, + { + "a": "item", + "t": "4", + "n": 10 + } + ], + "firstPayPrize": [], + "name": "pay_name_lv40", + "undefined": "等级推送礼包", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "lv55": { + "id": "lv55", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 600 + }, + { + "a": "item", + "t": "24", + "n": 10 + }, + { + "a": "item", + "t": "4", + "n": 10 + } + ], + "firstPayPrize": [], + "name": "pay_name_lv55", + "undefined": "等级推送礼包", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "lv58": { + "id": "lv58", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 600 + }, + { + "a": "item", + "t": "24", + "n": 10 + }, + { + "a": "item", + "t": "4", + "n": 10 + } + ], + "firstPayPrize": [], + "name": "pay_name_lv58", + "undefined": "等级推送礼包", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "lv60": { + "id": "lv60", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 600 + }, + { + "a": "item", + "t": "24", + "n": 10 + }, + { + "a": "item", + "t": "4", + "n": 10 + } + ], + "firstPayPrize": [], + "name": "pay_name_lv60", + "undefined": "等级推送礼包", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "lv63": { + "id": "lv63", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 600 + }, + { + "a": "item", + "t": "24", + "n": 10 + }, + { + "a": "item", + "t": "4", + "n": 10 + } + ], + "firstPayPrize": [], + "name": "pay_name_lv63", + "undefined": "等级推送礼包", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "lv66": { + "id": "lv66", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 600 + }, + { + "a": "item", + "t": "24", + "n": 10 + }, + { + "a": "item", + "t": "4", + "n": 10 + } + ], + "firstPayPrize": [], + "name": "pay_name_lv66", + "undefined": "等级推送礼包", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "lv69": { + "id": "lv69", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 600 + }, + { + "a": "item", + "t": "24", + "n": 10 + }, + { + "a": "item", + "t": "4", + "n": 10 + } + ], + "firstPayPrize": [], + "name": "pay_name_lv69", + "undefined": "等级推送礼包", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "lv72": { + "id": "lv72", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 600 + }, + { + "a": "item", + "t": "24", + "n": 10 + }, + { + "a": "item", + "t": "4", + "n": 10 + } + ], + "firstPayPrize": [], + "name": "pay_name_lv72", + "undefined": "等级推送礼包", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "lv75": { + "id": "lv75", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 600 + }, + { + "a": "item", + "t": "24", + "n": 10 + }, + { + "a": "item", + "t": "4", + "n": 10 + } + ], + "firstPayPrize": [], + "name": "pay_name_lv75", + "undefined": "等级推送礼包", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "lv78": { + "id": "lv78", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 600 + }, + { + "a": "item", + "t": "24", + "n": 10 + }, + { + "a": "item", + "t": "4", + "n": 10 + } + ], + "firstPayPrize": [], + "name": "pay_name_lv78", + "undefined": "等级推送礼包", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "lv81": { + "id": "lv81", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 600 + }, + { + "a": "item", + "t": "24", + "n": 10 + }, + { + "a": "item", + "t": "4", + "n": 10 + } + ], + "firstPayPrize": [], + "name": "pay_name_lv81", + "undefined": "等级推送礼包", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "lv84": { + "id": "lv84", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 600 + }, + { + "a": "item", + "t": "24", + "n": 10 + }, + { + "a": "item", + "t": "4", + "n": 10 + } + ], + "firstPayPrize": [], + "name": "pay_name_lv84", + "undefined": "等级推送礼包", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "lv87": { + "id": "lv87", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 600 + }, + { + "a": "item", + "t": "24", + "n": 10 + }, + { + "a": "item", + "t": "4", + "n": 10 + } + ], + "firstPayPrize": [], + "name": "pay_name_lv87", + "undefined": "等级推送礼包", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "lv90": { + "id": "lv90", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 600 + }, + { + "a": "item", + "t": "24", + "n": 10 + }, + { + "a": "item", + "t": "4", + "n": 10 + } + ], + "firstPayPrize": [], + "name": "pay_name_lv90", + "undefined": "等级推送礼包", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "lv93": { + "id": "lv93", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 600 + }, + { + "a": "item", + "t": "24", + "n": 10 + }, + { + "a": "item", + "t": "4", + "n": 10 + } + ], + "firstPayPrize": [], + "name": "pay_name_lv93", + "undefined": "等级推送礼包", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "lv96": { + "id": "lv96", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 600 + }, + { + "a": "item", + "t": "24", + "n": 10 + }, + { + "a": "item", + "t": "4", + "n": 10 + } + ], + "firstPayPrize": [], + "name": "pay_name_lv96", + "undefined": "等级推送礼包", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "lv99": { + "id": "lv99", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 600 + }, + { + "a": "item", + "t": "24", + "n": 10 + }, + { + "a": "item", + "t": "4", + "n": 10 + } + ], + "firstPayPrize": [], + "name": "pay_name_lv99", + "undefined": "等级推送礼包", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "xslb_1_1": { + "id": "xslb_1_1", + "money": 6, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 60 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 120 + }, + { + "a": "item", + "t": "4", + "n": 10 + } + ], + "firstPayPrize": [], + "name": "pay_name_xslb_1_1", + "undefined": "新手礼包", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "fanLiBi": 4700, + "currency": "CNY" + }, + "xslb_1_2": { + "id": "xslb_1_2", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "firstPayPrize": [], + "name": "pay_name_xslb_1_2", + "undefined": "新手礼包", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "fanLiBi": 400, + "currency": "CNY" + }, + "xslb_1_3": { + "id": "xslb_1_3", + "money": 328, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 3280 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 3280 + }, + { + "a": "item", + "t": "600", + "n": 20 + }, + { + "a": "item", + "t": "12", + "n": 1000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "firstPayPrize": [], + "name": "pay_name_xslb_1_3", + "undefined": "新手礼包", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "fanLiBi": 200, + "currency": "CNY" + }, + "xslb_1_4": { + "id": "xslb_1_4", + "money": 648, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 6480 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 6480 + }, + { + "a": "item", + "t": "600", + "n": 40 + }, + { + "a": "item", + "t": "1", + "n": 800000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + } + ], + "firstPayPrize": [], + "name": "pay_name_xslb_1_4", + "undefined": "新手礼包", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "fanLiBi": 200, + "currency": "CNY" + }, + "xslb_2_1": { + "id": "xslb_2_1", + "money": 6, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 60 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 120 + }, + { + "a": "item", + "t": "4", + "n": 10 + } + ], + "firstPayPrize": [], + "name": "pay_name_xslb_2_1", + "undefined": "新手礼包", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "fanLiBi": 4700, + "currency": "CNY" + }, + "xslb_2_2": { + "id": "xslb_2_2", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 500 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "firstPayPrize": [], + "name": "pay_name_xslb_2_2", + "undefined": "新手礼包", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "fanLiBi": 400, + "currency": "CNY" + }, + "xslb_2_3": { + "id": "xslb_2_3", + "money": 328, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 3280 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1280 + }, + { + "a": "item", + "t": "609", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "firstPayPrize": [], + "name": "pay_name_xslb_2_3", + "undefined": "新手礼包", + "time": -1, + "buys": 3, + "needVip": 0, + "front": {}, + "fanLiBi": 200, + "currency": "CNY" + }, + "xslb_2_4": { + "id": "xslb_2_4", + "money": 648, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 6480 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 3280 + }, + { + "a": "item", + "t": "600", + "n": 20 + }, + { + "a": "item", + "t": "1", + "n": 400000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "firstPayPrize": [], + "name": "pay_name_xslb_2_4", + "undefined": "新手礼包", + "time": -1, + "buys": 3, + "needVip": 0, + "front": {}, + "fanLiBi": 200, + "currency": "CNY" + }, + "136Gift1": { + "id": "136Gift1", + "money": 60, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 600 + } + ], + "prize": [ + { + "a": "item", + "t": "14", + "n": 50 + } + ], + "firstPayPrize": [], + "name": "pay_name_136Gift2", + "undefined": "136礼包打包购买", + "time": 604800, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "136Gift2": { + "id": "136Gift2", + "money": 1, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 10 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "12", + "n": 100 + } + ], + "firstPayPrize": [], + "name": "pay_name_136Gift4", + "undefined": "1元礼包", + "time": 86400, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "136Gift3": { + "id": "136Gift3", + "money": 3, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 30 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 60 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "600", + "n": 1 + } + ], + "firstPayPrize": [], + "name": "pay_name_136Gift4", + "undefined": "3元礼包", + "time": 86400, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "136Gift4": { + "id": "136Gift4", + "money": 6, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 60 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 120 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "600", + "n": 2 + } + ], + "firstPayPrize": [], + "name": "pay_name_136Gift4", + "undefined": "6元礼包", + "time": 86400, + "buys": 0, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "xianshizhaomu_gift_1": { + "id": "xianshizhaomu_gift_1", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + }, + { + "a": "item", + "t": "4", + "n": 5 + }, + { + "a": "item", + "t": "16", + "n": 10 + } + ], + "firstPayPrize": [], + "name": "pay_name_xianshizhaomu_gift_1", + "undefined": "限时招募1", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "xianshizhaomu_gift_2": { + "id": "xianshizhaomu_gift_2", + "money": 68, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 680 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 680 + }, + { + "a": "item", + "t": "4", + "n": 10 + }, + { + "a": "item", + "t": "16", + "n": 20 + } + ], + "firstPayPrize": [], + "name": "pay_name_xianshizhaomu_gift_2", + "undefined": "限时招募2", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "xianshizhaomu_gift_3": { + "id": "xianshizhaomu_gift_3", + "money": 128, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 1280 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1280 + }, + { + "a": "item", + "t": "4", + "n": 20 + }, + { + "a": "item", + "t": "16", + "n": 30 + } + ], + "firstPayPrize": [], + "name": "pay_name_xianshizhaomu_gift_3", + "undefined": "限时招募3", + "time": -1, + "buys": 12, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "xianshizhaomu_gift_4": { + "id": "xianshizhaomu_gift_4", + "money": 328, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 3280 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 3280 + }, + { + "a": "item", + "t": "4", + "n": 30 + }, + { + "a": "item", + "t": "16", + "n": 60 + } + ], + "firstPayPrize": [], + "name": "pay_name_xianshizhaomu_gift_4", + "undefined": "限时招募4", + "time": -1, + "buys": 12, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "xianshizhaomu_gift_5": { + "id": "xianshizhaomu_gift_5", + "money": 648, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 6480 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 6480 + }, + { + "a": "item", + "t": "4", + "n": 60 + }, + { + "a": "item", + "t": "16", + "n": 120 + } + ], + "firstPayPrize": [], + "name": "pay_name_xianshizhaomu_gift_5", + "undefined": "限时招募5", + "time": -1, + "buys": 8, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "xianshizhaomu_gift_6": { + "id": "xianshizhaomu_gift_6", + "money": 648, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 6480 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 6480 + }, + { + "a": "item", + "t": "4", + "n": 5 + }, + { + "a": "item", + "t": "4", + "n": 120 + } + ], + "firstPayPrize": [], + "name": "pay_name_xianshizhaomu_gift_6", + "undefined": "限时招募6", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "128jijin": { + "id": "128jijin", + "money": 128, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 1280 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1280 + } + ], + "firstPayPrize": [], + "name": "pay_name_128jijin", + "undefined": "128基金", + "time": -1, + "buys": 1, + "needVip": 0, + "front": { + "cond": "|", + "pays": [ + "chaozhiyueka", + "zhizunyueka" + ] + }, + "currency": "CNY" + }, + "328jijin": { + "id": "328jijin", + "money": 328, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 3280 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 3280 + } + ], + "firstPayPrize": [], + "name": "pay_name_328jijin", + "undefined": "328基金", + "time": -1, + "buys": 1, + "needVip": 0, + "front": { + "cond": "|", + "pays": [ + "chaozhiyueka", + "zhizunyueka" + ] + }, + "currency": "CNY" + }, + "zixuanlibao6": { + "id": "zixuanlibao6", + "money": 6, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 60 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_zixuanlibao6", + "undefined": "自选礼包6", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "zixuanlibao30": { + "id": "zixuanlibao30", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_zixuanlibao30", + "undefined": "自选礼包30", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "zixuanlibao68": { + "id": "zixuanlibao68", + "money": 68, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 680 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_zixuanlibao68", + "undefined": "自选礼包68", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "zixuanlibao128": { + "id": "zixuanlibao128", + "money": 128, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 1280 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_zixuanlibao128", + "undefined": "自选礼包128", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "zixuanlibao328": { + "id": "zixuanlibao328", + "money": 328, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 3280 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_zixuanlibao328", + "undefined": "自选礼包328", + "time": -1, + "buys": 3, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "zixuanlibao648": { + "id": "zixuanlibao648", + "money": 648, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 6480 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_zixuanlibao648", + "undefined": "自选礼包648", + "time": -1, + "buys": 3, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "diaoluolibao128": { + "id": "diaoluolibao128", + "money": 128, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 1280 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 60 + } + ], + "firstPayPrize": [], + "name": "pay_name_diaoluolibao128", + "undefined": "掉落礼包128", + "time": -1, + "buys": 6, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "diaoluolibao328": { + "id": "diaoluolibao328", + "money": 328, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 3280 + } + ], + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 60 + } + ], + "firstPayPrize": [], + "name": "pay_name_diaoluolibao328", + "undefined": "掉落礼包328", + "time": -1, + "buys": 6, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "duihuan_1_1": { + "id": "duihuan_1_1", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "item", + "t": "49", + "n": 50 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 600 + } + ], + "firstPayPrize": [], + "name": "pay_name_duihuan_1_1", + "undefined": "掉落兑换1_30元", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "duihuan_1_2": { + "id": "duihuan_1_2", + "money": 68, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 680 + } + ], + "prize": [ + { + "a": "item", + "t": "49", + "n": 100 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 1360 + } + ], + "firstPayPrize": [], + "name": "pay_name_duihuan_1_2", + "undefined": "掉落兑换1_68元", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "duihuan_1_3": { + "id": "duihuan_1_3", + "money": 128, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 1280 + } + ], + "prize": [ + { + "a": "item", + "t": "49", + "n": 200 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 2560 + } + ], + "firstPayPrize": [], + "name": "pay_name_duihuan_1_3", + "undefined": "掉落兑换1_128元", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "duihuan_1_4": { + "id": "duihuan_1_4", + "money": 328, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 3280 + } + ], + "prize": [ + { + "a": "item", + "t": "49", + "n": 600 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 6560 + } + ], + "firstPayPrize": [], + "name": "pay_name_duihuan_1_4", + "undefined": "掉落兑换1_328元", + "time": -1, + "buys": 20, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "duihuan_1_5": { + "id": "duihuan_1_5", + "money": 648, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 6480 + } + ], + "prize": [ + { + "a": "item", + "t": "49", + "n": 1200 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 12960 + } + ], + "firstPayPrize": [], + "name": "pay_name_duihuan_1_5", + "undefined": "掉落兑换1_648元", + "time": -1, + "buys": 20, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_1_1": { + "id": "ycmb_1_1", + "money": 6, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 60 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_1_1", + "undefined": "养成目标1_6元", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_1_2": { + "id": "ycmb_1_2", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_1_2", + "undefined": "养成目标1_30元", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_1_3": { + "id": "ycmb_1_3", + "money": 68, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 680 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_1_3", + "undefined": "养成目标1_68元", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_1_4": { + "id": "ycmb_1_4", + "money": 128, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 1280 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_1_4", + "undefined": "养成目标1_128元", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_1_5": { + "id": "ycmb_1_5", + "money": 328, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 3280 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_1_5", + "undefined": "养成目标1_328元", + "time": -1, + "buys": 3, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_1_6": { + "id": "ycmb_1_6", + "money": 648, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 6480 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_1_6", + "undefined": "养成目标1_648元", + "time": -1, + "buys": 3, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_2_1": { + "id": "ycmb_2_1", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_2_1", + "undefined": "养成目标2_30元", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_2_2": { + "id": "ycmb_2_2", + "money": 68, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 680 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_2_2", + "undefined": "养成目标2_68元", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_2_3": { + "id": "ycmb_2_3", + "money": 128, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 1280 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_2_3", + "undefined": "养成目标2_128元", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_2_4": { + "id": "ycmb_2_4", + "money": 328, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 3280 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_2_4", + "undefined": "养成目标2_328元", + "time": -1, + "buys": 3, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_2_5": { + "id": "ycmb_2_5", + "money": 648, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 6480 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_2_5", + "undefined": "养成目标2_648元", + "time": -1, + "buys": 10, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_3_1": { + "id": "ycmb_3_1", + "money": 6, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 60 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_3_1", + "undefined": "养成目标3_6元", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_3_2": { + "id": "ycmb_3_2", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_3_2", + "undefined": "养成目标3_30元", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_3_3": { + "id": "ycmb_3_3", + "money": 68, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 680 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_3_3", + "undefined": "养成目标3_68元", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_3_4": { + "id": "ycmb_3_4", + "money": 128, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 1280 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_3_4", + "undefined": "养成目标3_128元", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_3_5": { + "id": "ycmb_3_5", + "money": 328, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 3280 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_3_5", + "undefined": "养成目标3_328元", + "time": -1, + "buys": 3, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_3_6": { + "id": "ycmb_3_6", + "money": 648, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 6480 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_3_6", + "undefined": "养成目标3_648元", + "time": -1, + "buys": 3, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_4_1": { + "id": "ycmb_4_1", + "money": 6, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 60 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_4_1", + "undefined": "养成目标4_6元", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_4_2": { + "id": "ycmb_4_2", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_4_2", + "undefined": "养成目标4_30元", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_4_3": { + "id": "ycmb_4_3", + "money": 68, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 680 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_4_3", + "undefined": "养成目标4_68元", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_4_4": { + "id": "ycmb_4_4", + "money": 128, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 1280 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_4_4", + "undefined": "养成目标4_128元", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_4_5": { + "id": "ycmb_4_5", + "money": 328, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 3280 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_4_5", + "undefined": "养成目标4_328元", + "time": -1, + "buys": 3, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_4_6": { + "id": "ycmb_4_6", + "money": 648, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 6480 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_4_6", + "undefined": "养成目标4_648元", + "time": -1, + "buys": 3, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_5_1": { + "id": "ycmb_5_1", + "money": 6, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 60 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_5_1", + "undefined": "养成目标5_6元", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_5_2": { + "id": "ycmb_5_2", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_5_2", + "undefined": "养成目标5_30元", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_5_3": { + "id": "ycmb_5_3", + "money": 68, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 680 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_5_3", + "undefined": "养成目标5_68元", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_5_4": { + "id": "ycmb_5_4", + "money": 128, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 1280 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_5_4", + "undefined": "养成目标5_128元", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_5_5": { + "id": "ycmb_5_5", + "money": 328, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 3280 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_5_5", + "undefined": "养成目标5_328元", + "time": -1, + "buys": 3, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_5_6": { + "id": "ycmb_5_6", + "money": 648, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 6480 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_5_6", + "undefined": "养成目标5_648元", + "time": -1, + "buys": 3, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_6_1": { + "id": "ycmb_6_1", + "money": 6, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 60 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_6_1", + "undefined": "养成目标6_6元", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_6_2": { + "id": "ycmb_6_2", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_6_2", + "undefined": "养成目标6_30元", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_6_3": { + "id": "ycmb_6_3", + "money": 68, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 680 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_6_3", + "undefined": "养成目标6_68元", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_6_4": { + "id": "ycmb_6_4", + "money": 128, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 1280 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_6_4", + "undefined": "养成目标6_128元", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_6_5": { + "id": "ycmb_6_5", + "money": 328, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 3280 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_6_5", + "undefined": "养成目标6_328元", + "time": -1, + "buys": 3, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_6_6": { + "id": "ycmb_6_6", + "money": 648, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 6480 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_6_6", + "undefined": "养成目标6_648元", + "time": -1, + "buys": 3, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_7_1": { + "id": "ycmb_7_1", + "money": 6, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 60 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_7_1", + "undefined": "养成目标7_6元", + "time": -1, + "buys": 1, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_7_2": { + "id": "ycmb_7_2", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_7_2", + "undefined": "养成目标7_30元", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_7_3": { + "id": "ycmb_7_3", + "money": 68, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 680 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_7_3", + "undefined": "养成目标7_68元", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_7_4": { + "id": "ycmb_7_4", + "money": 128, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 1280 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_7_4", + "undefined": "养成目标7_128元", + "time": -1, + "buys": 2, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_7_5": { + "id": "ycmb_7_5", + "money": 328, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 3280 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_7_5", + "undefined": "养成目标7_328元", + "time": -1, + "buys": 3, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "ycmb_7_6": { + "id": "ycmb_7_6", + "money": 648, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 6480 + } + ], + "prize": [], + "firstPayPrize": [], + "name": "pay_name_ycmb_7_6", + "undefined": "养成目标7_648元", + "time": -1, + "buys": 3, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "djlb_2": { + "id": "djlb_2", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "item", + "t": "2", + "n": 1500 + } + ], + "firstPayPrize": [], + "name": "pay_name_djlb_2", + "undefined": "枪油补充包", + "time": 86400, + "buys": 3, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "djlb_1": { + "id": "djlb_1", + "money": 6, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 60 + } + ], + "prize": [ + { + "a": "item", + "t": "1", + "n": 500000 + } + ], + "firstPayPrize": [], + "name": "pay_name_djlb_1", + "undefined": "能量饮料补充包", + "time": 86400, + "buys": 2, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "djlb_12": { + "id": "djlb_12", + "money": 18, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 180 + } + ], + "prize": [ + { + "a": "item", + "t": "12", + "n": 500 + } + ], + "firstPayPrize": [], + "name": "pay_name_djlb_12", + "undefined": "弹壳补充包", + "time": 86400, + "buys": 3, + "needVip": 0, + "front": {}, + "currency": "CNY" + }, + "djlb_18": { + "id": "djlb_18", + "money": 30, + "payExp": [ + { + "a": "attr", + "t": "payExp", + "n": 300 + } + ], + "prize": [ + { + "a": "item", + "t": "18", + "n": 120 + } + ], + "firstPayPrize": [], + "name": "pay_name_djlb_18", + "undefined": "装备蓝图补充包", + "time": 86400, + "buys": 3, + "needVip": 0, + "front": {}, + "currency": "CNY" + } +} \ No newline at end of file diff --git a/src/json/payEmail.json5 b/src/json/payEmail.json5 new file mode 100644 index 0000000..37ba7b7 --- /dev/null +++ b/src/json/payEmail.json5 @@ -0,0 +1,48 @@ +{ + caifutequan: [ + { + day: 1, + title: 'title_email_caifutequan_day1', + content: 'intr_email_caifutequan_day1', + prize: [{ a: 'attr', t: 'rmbmoney', n: 200 }] + } + ], + jiubatequan: [ + { + day: 1, + title: 'title_email_jiubatequan_day1', + content: 'intr_email_jiubatequan_day1', + prize: [{ a: 'item', t: '4', n: 10 }] + } + ], + zhongshenka: [ + { + day: 1, + title: 'title_email_zhongshenka_day1', + content: 'intr_email_zhongshenka_day1', + prize: [{ a: 'attr', t: 'rmbmoney', n: 388 },{ a: 'item', t: '4', n: 1 }] + }, + { + day: 7, + title: 'title_email_zhongshenka_day7', + content: 'intr_email_zhongshenka_day7', + prize: [{ a: 'item', t: '4', n: 10 },{ a: 'item', t: '9', n: 200 }] + } + ], + chaozhiyueka: [ + { + day: 1, + title: 'title_email_chaozhiyueka_day1', + content: 'intr_email_chaozhiyueka_day1', + prize: [{ a: 'attr', t: 'rmbmoney', n: 188 }] + } + ], + zhizunyueka: [ + { + day: 1, + title: 'title_email_zhizunyueka_day1', + content: 'intr_email_zhizunyueka_day1', + prize: [{ a: 'attr', t: 'rmbmoney', n: 588 }] + } + ] +} \ No newline at end of file diff --git a/src/json/peijian.json b/src/json/peijian.json new file mode 100644 index 0000000..abd3408 --- /dev/null +++ b/src/json/peijian.json @@ -0,0 +1,3518 @@ +{ + "1001": { + "id": 1001, + "pos": 0, + "name": "pj_name_1001", + "undefined": "路易十三", + "icon": "icon_ptshchp", + "colour": 1, + "isExp": 0, + "conversion": [ + { + "a": "attr", + "t": "jinbi", + "n": 3000 + } + ], + "buff": [], + "suit": 0, + "rmPrize": [], + "jjid": 0, + "intr": "pj_des_1001", + "tujian": 0, + "advancedEffects": "", + "sort": 8 + }, + "1002": { + "id": 1002, + "pos": 0, + "name": "pj_name_1002", + "undefined": "三百年珐琅瓷", + "icon": "icon_jmshchp", + "colour": 1, + "isExp": 0, + "conversion": [ + { + "a": "attr", + "t": "jinbi", + "n": 7500 + } + ], + "buff": [], + "suit": 0, + "rmPrize": [], + "jjid": 0, + "intr": "pj_des_1002", + "tujian": 0, + "advancedEffects": "", + "sort": 8 + }, + "1003": { + "id": 1003, + "pos": 0, + "name": "pj_name_1003", + "undefined": "奎托斯雕像", + "icon": "icon_mj", + "colour": 1, + "isExp": 0, + "conversion": [ + { + "a": "attr", + "t": "jinbi", + "n": 15000 + } + ], + "buff": [], + "suit": 0, + "rmPrize": [], + "jjid": 0, + "intr": "pj_des_1003", + "tujian": 0, + "advancedEffects": "", + "sort": 8 + }, + "1004": { + "id": 1004, + "pos": 0, + "name": "pj_name_1004", + "undefined": "梵高的名画", + "icon": "icon_yshp", + "colour": 1, + "isExp": 0, + "conversion": [ + { + "a": "attr", + "t": "jinbi", + "n": 15000 + } + ], + "buff": [], + "suit": 0, + "rmPrize": [], + "jjid": 0, + "intr": "pj_des_1004", + "tujian": 0, + "advancedEffects": "", + "sort": 8 + }, + "2001": { + "id": 2001, + "pos": 1, + "name": "pj_name_2001", + "undefined": "力量魂石", + "icon": "peijian_ej_1", + "colour": 2, + "isExp": 0, + "conversion": [], + "buff": [ + "atk", + 20 + ], + "suit": 0, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 25 + } + ], + "jjid": 0, + "intr": "pj_des_2001", + "tujian": 1, + "advancedEffects": "", + "sort": 8 + }, + "2002": { + "id": 2002, + "pos": 2, + "name": "pj_name_2002", + "undefined": "防护魂石", + "icon": "peijian_hx_1", + "colour": 2, + "isExp": 0, + "conversion": [], + "buff": [ + "def", + 40 + ], + "suit": 0, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 25 + } + ], + "jjid": 0, + "intr": "pj_des_2002", + "tujian": 1, + "advancedEffects": "", + "sort": 8 + }, + "2003": { + "id": 2003, + "pos": 3, + "name": "pj_name_2003", + "undefined": "生机魂石", + "icon": "peijian_hzh_1", + "colour": 2, + "isExp": 0, + "conversion": [], + "buff": [ + "hp", + 300 + ], + "suit": 0, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 25 + } + ], + "jjid": 0, + "intr": "pj_des_2003", + "tujian": 1, + "advancedEffects": "", + "sort": 8 + }, + "2004": { + "id": 2004, + "pos": 4, + "name": "pj_name_2004", + "undefined": "弱攻魂石", + "icon": "peijian_kzh_1", + "colour": 2, + "isExp": 0, + "conversion": [], + "buff": [ + "mindps", + 26 + ], + "suit": 0, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 25 + } + ], + "jjid": 0, + "intr": "pj_des_2004", + "tujian": 1, + "advancedEffects": "", + "sort": 8 + }, + "2005": { + "id": 2005, + "pos": 5, + "name": "pj_name_2005", + "undefined": "强攻魂石", + "icon": "peijian_bb_1", + "colour": 2, + "isExp": 0, + "conversion": [], + "buff": [ + "maxdps", + 28 + ], + "suit": 0, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 25 + } + ], + "jjid": 0, + "intr": "pj_des_2005", + "tujian": 1, + "advancedEffects": "", + "sort": 8 + }, + "2006": { + "id": 2006, + "pos": 6, + "name": "pj_name_2006", + "undefined": "幸运魂石", + "icon": "peijian_yj_1", + "colour": 2, + "isExp": 0, + "conversion": [], + "buff": [ + "baoshangpro", + 0.6 + ], + "suit": 0, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 25 + } + ], + "jjid": 0, + "intr": "pj_des_2006", + "tujian": 1, + "advancedEffects": "", + "sort": 8 + }, + "3001": { + "id": 3001, + "pos": 1, + "name": "pj_name_3001", + "undefined": "重击之魂", + "icon": "peijian_ej_2", + "colour": 3, + "isExp": 0, + "conversion": [], + "buff": [ + "atk", + 40 + ], + "suit": 0, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 50 + } + ], + "jjid": 0, + "intr": "pj_des_3001", + "tujian": 1, + "advancedEffects": "", + "sort": 8 + }, + "3002": { + "id": 3002, + "pos": 2, + "name": "pj_name_3002", + "undefined": "守护之魂", + "icon": "peijian_hx_2", + "colour": 3, + "isExp": 0, + "conversion": [], + "buff": [ + "def", + 80 + ], + "suit": 0, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 50 + } + ], + "jjid": 0, + "intr": "pj_des_3002", + "tujian": 1, + "advancedEffects": "", + "sort": 8 + }, + "3003": { + "id": 3003, + "pos": 3, + "name": "pj_name_3003", + "undefined": "自然之魂", + "icon": "peijian_hzh_2", + "colour": 3, + "isExp": 0, + "conversion": [], + "buff": [ + "hp", + 600 + ], + "suit": 0, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 50 + } + ], + "jjid": 0, + "intr": "pj_des_3003", + "tujian": 1, + "advancedEffects": "", + "sort": 8 + }, + "3004": { + "id": 3004, + "pos": 4, + "name": "pj_name_3004", + "undefined": "暗杀之魂", + "icon": "peijian_kzh_2", + "colour": 3, + "isExp": 0, + "conversion": [], + "buff": [ + "mindps", + 52 + ], + "suit": 0, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 50 + } + ], + "jjid": 0, + "intr": "pj_des_3004", + "tujian": 1, + "advancedEffects": "", + "sort": 8 + }, + "3005": { + "id": 3005, + "pos": 5, + "name": "pj_name_3005", + "undefined": "绝杀之魂", + "icon": "peijian_bb_2", + "colour": 3, + "isExp": 0, + "conversion": [], + "buff": [ + "maxdps", + 56 + ], + "suit": 0, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 50 + } + ], + "jjid": 0, + "intr": "pj_des_3005", + "tujian": 1, + "advancedEffects": "", + "sort": 8 + }, + "3006": { + "id": 3006, + "pos": 6, + "name": "pj_name_3006", + "undefined": "祝福之魂", + "icon": "peijian_yj_2", + "colour": 3, + "isExp": 0, + "conversion": [], + "buff": [ + "baoshangpro", + 1.2 + ], + "suit": 0, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 50 + } + ], + "jjid": 0, + "intr": "pj_des_3006", + "tujian": 1, + "advancedEffects": "", + "sort": 8 + }, + "4001": { + "id": 4001, + "pos": 1, + "name": "pj_name_4001", + "undefined": "天狼·破坏神魂", + "icon": "peijian_ej_3", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "atk", + 60 + ], + "suit": 1, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5001, + "intr": "pj_des_4001", + "tujian": 1, + "advancedEffects": "", + "sort": 0 + }, + "4002": { + "id": 4002, + "pos": 2, + "name": "pj_name_4002", + "undefined": "天狼·圣御神魂", + "icon": "peijian_hx_3", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "def", + 120 + ], + "suit": 1, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5002, + "intr": "pj_des_4002", + "tujian": 1, + "advancedEffects": "", + "sort": 0 + }, + "4003": { + "id": 4003, + "pos": 3, + "name": "pj_name_4003", + "undefined": "天狼·永恒神魂", + "icon": "peijian_hzh_3", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "hp", + 900 + ], + "suit": 1, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5003, + "intr": "pj_des_4003", + "tujian": 1, + "advancedEffects": "", + "sort": 0 + }, + "4004": { + "id": 4004, + "pos": 4, + "name": "pj_name_4004", + "undefined": "天狼·审判神魂", + "icon": "peijian_kzh_3", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "mindps", + 78 + ], + "suit": 1, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5004, + "intr": "pj_des_4004", + "tujian": 1, + "advancedEffects": "", + "sort": 0 + }, + "4005": { + "id": 4005, + "pos": 5, + "name": "pj_name_4005", + "undefined": "天狼·裁决神魂", + "icon": "peijian_bb_3", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "maxdps", + 84 + ], + "suit": 1, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5005, + "intr": "pj_des_4005", + "tujian": 1, + "advancedEffects": "", + "sort": 0 + }, + "4006": { + "id": 4006, + "pos": 6, + "name": "pj_name_4006", + "undefined": "天狼·天命神魂", + "icon": "peijian_yj_3", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "baoshangpro", + 1.8 + ], + "suit": 1, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5006, + "intr": "pj_des_4006", + "tujian": 1, + "advancedEffects": "", + "sort": 0 + }, + "4007": { + "id": 4007, + "pos": 1, + "name": "pj_name_4007", + "undefined": "风驰·破坏神魂", + "icon": "peijian_ej_4", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "atk", + 60 + ], + "suit": 2, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5007, + "intr": "pj_des_4007", + "tujian": 1, + "advancedEffects": "", + "sort": 1 + }, + "4008": { + "id": 4008, + "pos": 2, + "name": "pj_name_4008", + "undefined": "风驰·圣御神魂", + "icon": "peijian_hx_4", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "def", + 120 + ], + "suit": 2, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5008, + "intr": "pj_des_4008", + "tujian": 1, + "advancedEffects": "", + "sort": 1 + }, + "4009": { + "id": 4009, + "pos": 3, + "name": "pj_name_4009", + "undefined": "风驰·永恒神魂", + "icon": "peijian_hzh_4", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "hp", + 900 + ], + "suit": 2, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5009, + "intr": "pj_des_4009", + "tujian": 1, + "advancedEffects": "", + "sort": 1 + }, + "4010": { + "id": 4010, + "pos": 4, + "name": "pj_name_4010", + "undefined": "风驰·审判神魂", + "icon": "peijian_kzh_4", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "mindps", + 78 + ], + "suit": 2, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5010, + "intr": "pj_des_4010", + "tujian": 1, + "advancedEffects": "", + "sort": 1 + }, + "4011": { + "id": 4011, + "pos": 5, + "name": "pj_name_4011", + "undefined": "风驰·裁决神魂", + "icon": "peijian_bb_4", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "maxdps", + 84 + ], + "suit": 2, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5011, + "intr": "pj_des_4011", + "tujian": 1, + "advancedEffects": "", + "sort": 1 + }, + "4012": { + "id": 4012, + "pos": 6, + "name": "pj_name_4012", + "undefined": "风驰·天命神魂", + "icon": "peijian_yj_4", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "baoshangpro", + 1.8 + ], + "suit": 2, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5012, + "intr": "pj_des_4012", + "tujian": 1, + "advancedEffects": "", + "sort": 1 + }, + "4013": { + "id": 4013, + "pos": 1, + "name": "pj_name_4013", + "undefined": "修罗·破坏神魂", + "icon": "peijian_ej_5", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "atk", + 60 + ], + "suit": 3, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5013, + "intr": "pj_des_4013", + "tujian": 1, + "advancedEffects": "", + "sort": 2 + }, + "4014": { + "id": 4014, + "pos": 2, + "name": "pj_name_4014", + "undefined": "修罗·圣御神魂", + "icon": "peijian_hx_5", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "def", + 120 + ], + "suit": 3, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5014, + "intr": "pj_des_4014", + "tujian": 1, + "advancedEffects": "", + "sort": 2 + }, + "4015": { + "id": 4015, + "pos": 3, + "name": "pj_name_4015", + "undefined": "修罗·永恒神魂", + "icon": "peijian_hzh_5", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "hp", + 900 + ], + "suit": 3, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5015, + "intr": "pj_des_4015", + "tujian": 1, + "advancedEffects": "", + "sort": 2 + }, + "4016": { + "id": 4016, + "pos": 4, + "name": "pj_name_4016", + "undefined": "修罗·审判神魂", + "icon": "peijian_kzh_5", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "mindps", + 78 + ], + "suit": 3, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5016, + "intr": "pj_des_4016", + "tujian": 1, + "advancedEffects": "", + "sort": 2 + }, + "4017": { + "id": 4017, + "pos": 5, + "name": "pj_name_4017", + "undefined": "修罗·裁决神魂", + "icon": "peijian_bb_5", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "maxdps", + 84 + ], + "suit": 3, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5017, + "intr": "pj_des_4017", + "tujian": 1, + "advancedEffects": "", + "sort": 2 + }, + "4018": { + "id": 4018, + "pos": 6, + "name": "pj_name_4018", + "undefined": "修罗·天命神魂", + "icon": "peijian_yj_5", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "baoshangpro", + 1.8 + ], + "suit": 3, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5018, + "intr": "pj_des_4018", + "tujian": 1, + "advancedEffects": "", + "sort": 2 + }, + "4019": { + "id": 4019, + "pos": 1, + "name": "pj_name_4019", + "undefined": "泰坦·破坏神魂", + "icon": "peijian_ej_6", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "atk", + 60 + ], + "suit": 4, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5019, + "intr": "pj_des_4019", + "tujian": 1, + "advancedEffects": "", + "sort": 3 + }, + "4020": { + "id": 4020, + "pos": 2, + "name": "pj_name_4020", + "undefined": "泰坦·圣御神魂", + "icon": "peijian_hx_6", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "def", + 120 + ], + "suit": 4, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5020, + "intr": "pj_des_4020", + "tujian": 1, + "advancedEffects": "", + "sort": 3 + }, + "4021": { + "id": 4021, + "pos": 3, + "name": "pj_name_4021", + "undefined": "泰坦·永恒神魂", + "icon": "peijian_hzh_6", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "hp", + 900 + ], + "suit": 4, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5021, + "intr": "pj_des_4021", + "tujian": 1, + "advancedEffects": "", + "sort": 3 + }, + "4022": { + "id": 4022, + "pos": 4, + "name": "pj_name_4022", + "undefined": "泰坦·审判神魂", + "icon": "peijian_kzh_6", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "mindps", + 78 + ], + "suit": 4, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5022, + "intr": "pj_des_4022", + "tujian": 1, + "advancedEffects": "", + "sort": 3 + }, + "4023": { + "id": 4023, + "pos": 5, + "name": "pj_name_4023", + "undefined": "泰坦·裁决神魂", + "icon": "peijian_bb_6", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "maxdps", + 84 + ], + "suit": 4, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5023, + "intr": "pj_des_4023", + "tujian": 1, + "advancedEffects": "", + "sort": 3 + }, + "4024": { + "id": 4024, + "pos": 6, + "name": "pj_name_4024", + "undefined": "泰坦·天命神魂", + "icon": "peijian_yj_6", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "baoshangpro", + 1.8 + ], + "suit": 4, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5024, + "intr": "pj_des_4024", + "tujian": 1, + "advancedEffects": "", + "sort": 3 + }, + "4025": { + "id": 4025, + "pos": 1, + "name": "pj_name_4025", + "undefined": "命运·破坏神魂", + "icon": "peijian_ej_7", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "atk", + 60 + ], + "suit": 5, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5025, + "intr": "pj_des_4025", + "tujian": 1, + "advancedEffects": "", + "sort": 4 + }, + "4026": { + "id": 4026, + "pos": 2, + "name": "pj_name_4026", + "undefined": "命运·圣御神魂", + "icon": "peijian_hx_7", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "def", + 120 + ], + "suit": 5, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5026, + "intr": "pj_des_4026", + "tujian": 1, + "advancedEffects": "", + "sort": 4 + }, + "4027": { + "id": 4027, + "pos": 3, + "name": "pj_name_4027", + "undefined": "命运·永恒神魂", + "icon": "peijian_hzh_7", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "hp", + 900 + ], + "suit": 5, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5027, + "intr": "pj_des_4027", + "tujian": 1, + "advancedEffects": "", + "sort": 4 + }, + "4028": { + "id": 4028, + "pos": 4, + "name": "pj_name_4028", + "undefined": "命运·审判神魂", + "icon": "peijian_kzh_7", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "mindps", + 78 + ], + "suit": 5, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5028, + "intr": "pj_des_4028", + "tujian": 1, + "advancedEffects": "", + "sort": 4 + }, + "4029": { + "id": 4029, + "pos": 5, + "name": "pj_name_4029", + "undefined": "命运·裁决神魂", + "icon": "peijian_bb_7", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "maxdps", + 84 + ], + "suit": 5, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5029, + "intr": "pj_des_4029", + "tujian": 1, + "advancedEffects": "", + "sort": 4 + }, + "4030": { + "id": 4030, + "pos": 6, + "name": "pj_name_4030", + "undefined": "命运·天命神魂", + "icon": "peijian_yj_7", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "baoshangpro", + 1.8 + ], + "suit": 5, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5030, + "intr": "pj_des_4030", + "tujian": 1, + "advancedEffects": "", + "sort": 4 + }, + "4031": { + "id": 4031, + "pos": 1, + "name": "pj_name_4031", + "undefined": "战神·破坏神魂", + "icon": "peijian_ej_8", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "atk", + 60 + ], + "suit": 6, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5031, + "intr": "pj_des_4031", + "tujian": 1, + "advancedEffects": "", + "sort": 5 + }, + "4032": { + "id": 4032, + "pos": 2, + "name": "pj_name_4032", + "undefined": "战神·圣御神魂", + "icon": "peijian_hx_8", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "def", + 120 + ], + "suit": 6, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5032, + "intr": "pj_des_4032", + "tujian": 1, + "advancedEffects": "", + "sort": 5 + }, + "4033": { + "id": 4033, + "pos": 3, + "name": "pj_name_4033", + "undefined": "战神·永恒神魂", + "icon": "peijian_hzh_8", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "hp", + 900 + ], + "suit": 6, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5033, + "intr": "pj_des_4033", + "tujian": 1, + "advancedEffects": "", + "sort": 5 + }, + "4034": { + "id": 4034, + "pos": 4, + "name": "pj_name_4034", + "undefined": "战神·审判神魂", + "icon": "peijian_kzh_8", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "mindps", + 78 + ], + "suit": 6, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5034, + "intr": "pj_des_4034", + "tujian": 1, + "advancedEffects": "", + "sort": 5 + }, + "4035": { + "id": 4035, + "pos": 5, + "name": "pj_name_4035", + "undefined": "战神·裁决神魂", + "icon": "peijian_bb_8", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "maxdps", + 84 + ], + "suit": 6, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5035, + "intr": "pj_des_4035", + "tujian": 1, + "advancedEffects": "", + "sort": 5 + }, + "4036": { + "id": 4036, + "pos": 6, + "name": "pj_name_4036", + "undefined": "战神·天命神魂", + "icon": "peijian_yj_8", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "baoshangpro", + 1.8 + ], + "suit": 6, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5036, + "intr": "pj_des_4036", + "tujian": 1, + "advancedEffects": "", + "sort": 5 + }, + "4037": { + "id": 4037, + "pos": 1, + "name": "pj_name_4037", + "undefined": "强击·破坏神魂", + "icon": "peijian_ej_10", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "atk", + 60 + ], + "suit": 7, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5037, + "intr": "pj_des_4037", + "tujian": 1, + "advancedEffects": "", + "sort": 6 + }, + "4038": { + "id": 4038, + "pos": 2, + "name": "pj_name_4038", + "undefined": "强击·圣御神魂", + "icon": "peijian_hx_10", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "def", + 120 + ], + "suit": 7, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5038, + "intr": "pj_des_4038", + "tujian": 1, + "advancedEffects": "", + "sort": 6 + }, + "4039": { + "id": 4039, + "pos": 3, + "name": "pj_name_4039", + "undefined": "强击·永恒神魂", + "icon": "peijian_hzh_10", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "hp", + 900 + ], + "suit": 7, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5039, + "intr": "pj_des_4039", + "tujian": 1, + "advancedEffects": "", + "sort": 6 + }, + "4040": { + "id": 4040, + "pos": 4, + "name": "pj_name_4040", + "undefined": "强击·审判神魂", + "icon": "peijian_kzh_10", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "mindps", + 78 + ], + "suit": 7, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5040, + "intr": "pj_des_4040", + "tujian": 1, + "advancedEffects": "", + "sort": 6 + }, + "4041": { + "id": 4041, + "pos": 5, + "name": "pj_name_4041", + "undefined": "强击·裁决神魂", + "icon": "peijian_bb_10", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "maxdps", + 84 + ], + "suit": 7, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5041, + "intr": "pj_des_4041", + "tujian": 1, + "advancedEffects": "", + "sort": 6 + }, + "4042": { + "id": 4042, + "pos": 6, + "name": "pj_name_4042", + "undefined": "强击·天命神魂", + "icon": "peijian_yj_10", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "baoshangpro", + 1.8 + ], + "suit": 7, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5042, + "intr": "pj_des_4042", + "tujian": 1, + "advancedEffects": "", + "sort": 6 + }, + "4043": { + "id": 4043, + "pos": 1, + "name": "pj_name_4043", + "undefined": "圣盾·破坏神魂", + "icon": "peijian_ej_9", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "atk", + 60 + ], + "suit": 8, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5043, + "intr": "pj_des_4043", + "tujian": 1, + "advancedEffects": "", + "sort": 7 + }, + "4044": { + "id": 4044, + "pos": 2, + "name": "pj_name_4044", + "undefined": "圣盾·圣御神魂", + "icon": "peijian_hx_9", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "def", + 120 + ], + "suit": 8, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5044, + "intr": "pj_des_4044", + "tujian": 1, + "advancedEffects": "", + "sort": 7 + }, + "4045": { + "id": 4045, + "pos": 3, + "name": "pj_name_4045", + "undefined": "圣盾·永恒神魂", + "icon": "peijian_hzh_9", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "hp", + 900 + ], + "suit": 8, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5045, + "intr": "pj_des_4045", + "tujian": 1, + "advancedEffects": "", + "sort": 7 + }, + "4046": { + "id": 4046, + "pos": 4, + "name": "pj_name_4046", + "undefined": "圣盾·审判神魂", + "icon": "peijian_kzh_9", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "mindps", + 78 + ], + "suit": 8, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5046, + "intr": "pj_des_4046", + "tujian": 1, + "advancedEffects": "", + "sort": 7 + }, + "4047": { + "id": 4047, + "pos": 5, + "name": "pj_name_4047", + "undefined": "圣盾·裁决神魂", + "icon": "peijian_bb_9", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "maxdps", + 84 + ], + "suit": 8, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5047, + "intr": "pj_des_4047", + "tujian": 1, + "advancedEffects": "", + "sort": 7 + }, + "4048": { + "id": 4048, + "pos": 6, + "name": "pj_name_4048", + "undefined": "圣盾·天命神魂", + "icon": "peijian_yj_9", + "colour": 4, + "isExp": 0, + "conversion": [], + "buff": [ + "baoshangpro", + 1.8 + ], + "suit": 8, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 5048, + "intr": "pj_des_4048", + "tujian": 1, + "advancedEffects": "", + "sort": 7 + }, + "5001": { + "id": 5001, + "pos": 1, + "name": "pj_name_5001", + "undefined": "天狼·破坏神魂", + "icon": "peijian_ej_3", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "atk", + 100 + ], + "suit": 1, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5001", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 0 + }, + "5002": { + "id": 5002, + "pos": 2, + "name": "pj_name_5002", + "undefined": "天狼·圣御神魂", + "icon": "peijian_hx_3", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "def", + 200 + ], + "suit": 1, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5002", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 0 + }, + "5003": { + "id": 5003, + "pos": 3, + "name": "pj_name_5003", + "undefined": "天狼·永恒神魂", + "icon": "peijian_hzh_3", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "hp", + 1500 + ], + "suit": 1, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5003", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 0 + }, + "5004": { + "id": 5004, + "pos": 4, + "name": "pj_name_5004", + "undefined": "天狼·审判神魂", + "icon": "peijian_kzh_3", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "mindps", + 130 + ], + "suit": 1, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5004", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 0 + }, + "5005": { + "id": 5005, + "pos": 5, + "name": "pj_name_5005", + "undefined": "天狼·裁决神魂", + "icon": "peijian_bb_3", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "maxdps", + 140 + ], + "suit": 1, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5005", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 0 + }, + "5006": { + "id": 5006, + "pos": 6, + "name": "pj_name_5006", + "undefined": "天狼·天命神魂", + "icon": "peijian_yj_3", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "baoshangpro", + 3 + ], + "suit": 1, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5006", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 0 + }, + "5007": { + "id": 5007, + "pos": 1, + "name": "pj_name_5007", + "undefined": "风驰·破坏神魂", + "icon": "peijian_ej_4", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "atk", + 100 + ], + "suit": 2, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5007", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 1 + }, + "5008": { + "id": 5008, + "pos": 2, + "name": "pj_name_5008", + "undefined": "风驰·圣御神魂", + "icon": "peijian_hx_4", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "def", + 200 + ], + "suit": 2, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5008", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 1 + }, + "5009": { + "id": 5009, + "pos": 3, + "name": "pj_name_5009", + "undefined": "风驰·永恒神魂", + "icon": "peijian_hzh_4", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "hp", + 1500 + ], + "suit": 2, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5009", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 1 + }, + "5010": { + "id": 5010, + "pos": 4, + "name": "pj_name_5010", + "undefined": "风驰·审判神魂", + "icon": "peijian_kzh_4", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "mindps", + 130 + ], + "suit": 2, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5010", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 1 + }, + "5011": { + "id": 5011, + "pos": 5, + "name": "pj_name_5011", + "undefined": "风驰·裁决神魂", + "icon": "peijian_bb_4", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "maxdps", + 140 + ], + "suit": 2, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5011", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 1 + }, + "5012": { + "id": 5012, + "pos": 6, + "name": "pj_name_5012", + "undefined": "风驰·天命神魂", + "icon": "peijian_yj_4", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "baoshangpro", + 3 + ], + "suit": 2, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5012", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 1 + }, + "5013": { + "id": 5013, + "pos": 1, + "name": "pj_name_5013", + "undefined": "修罗·破坏神魂", + "icon": "peijian_ej_5", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "atk", + 100 + ], + "suit": 3, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5013", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 2 + }, + "5014": { + "id": 5014, + "pos": 2, + "name": "pj_name_5014", + "undefined": "修罗·圣御神魂", + "icon": "peijian_hx_5", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "def", + 200 + ], + "suit": 3, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5014", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 2 + }, + "5015": { + "id": 5015, + "pos": 3, + "name": "pj_name_5015", + "undefined": "修罗·永恒神魂", + "icon": "peijian_hzh_5", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "hp", + 1500 + ], + "suit": 3, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5015", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 2 + }, + "5016": { + "id": 5016, + "pos": 4, + "name": "pj_name_5016", + "undefined": "修罗·审判神魂", + "icon": "peijian_kzh_5", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "mindps", + 130 + ], + "suit": 3, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5016", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 2 + }, + "5017": { + "id": 5017, + "pos": 5, + "name": "pj_name_5017", + "undefined": "修罗·裁决神魂", + "icon": "peijian_bb_5", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "maxdps", + 140 + ], + "suit": 3, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5017", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 2 + }, + "5018": { + "id": 5018, + "pos": 6, + "name": "pj_name_5018", + "undefined": "修罗·天命神魂", + "icon": "peijian_yj_5", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "baoshangpro", + 3 + ], + "suit": 3, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5018", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 2 + }, + "5019": { + "id": 5019, + "pos": 1, + "name": "pj_name_5019", + "undefined": "泰坦·破坏神魂", + "icon": "peijian_ej_6", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "atk", + 100 + ], + "suit": 4, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5019", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 3 + }, + "5020": { + "id": 5020, + "pos": 2, + "name": "pj_name_5020", + "undefined": "泰坦·圣御神魂", + "icon": "peijian_hx_6", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "def", + 200 + ], + "suit": 4, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5020", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 3 + }, + "5021": { + "id": 5021, + "pos": 3, + "name": "pj_name_5021", + "undefined": "泰坦·永恒神魂", + "icon": "peijian_hzh_6", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "hp", + 1500 + ], + "suit": 4, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5021", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 3 + }, + "5022": { + "id": 5022, + "pos": 4, + "name": "pj_name_5022", + "undefined": "泰坦·审判神魂", + "icon": "peijian_kzh_6", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "mindps", + 130 + ], + "suit": 4, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5022", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 3 + }, + "5023": { + "id": 5023, + "pos": 5, + "name": "pj_name_5023", + "undefined": "泰坦·裁决神魂", + "icon": "peijian_bb_6", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "maxdps", + 140 + ], + "suit": 4, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5023", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 3 + }, + "5024": { + "id": 5024, + "pos": 6, + "name": "pj_name_5024", + "undefined": "泰坦·天命神魂", + "icon": "peijian_yj_6", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "baoshangpro", + 3 + ], + "suit": 4, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5024", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 3 + }, + "5025": { + "id": 5025, + "pos": 1, + "name": "pj_name_5025", + "undefined": "命运·破坏神魂", + "icon": "peijian_ej_7", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "atk", + 100 + ], + "suit": 5, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5025", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 4 + }, + "5026": { + "id": 5026, + "pos": 2, + "name": "pj_name_5026", + "undefined": "命运·圣御神魂", + "icon": "peijian_hx_7", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "def", + 200 + ], + "suit": 5, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5026", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 4 + }, + "5027": { + "id": 5027, + "pos": 3, + "name": "pj_name_5027", + "undefined": "命运·永恒神魂", + "icon": "peijian_hzh_7", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "hp", + 1500 + ], + "suit": 5, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5027", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 4 + }, + "5028": { + "id": 5028, + "pos": 4, + "name": "pj_name_5028", + "undefined": "命运·审判神魂", + "icon": "peijian_kzh_7", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "mindps", + 130 + ], + "suit": 5, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5028", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 4 + }, + "5029": { + "id": 5029, + "pos": 5, + "name": "pj_name_5029", + "undefined": "命运·裁决神魂", + "icon": "peijian_bb_7", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "maxdps", + 140 + ], + "suit": 5, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5029", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 4 + }, + "5030": { + "id": 5030, + "pos": 6, + "name": "pj_name_5030", + "undefined": "命运·天命神魂", + "icon": "peijian_yj_7", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "baoshangpro", + 3 + ], + "suit": 5, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5030", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 4 + }, + "5031": { + "id": 5031, + "pos": 1, + "name": "pj_name_5031", + "undefined": "战神·破坏神魂", + "icon": "peijian_ej_8", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "atk", + 100 + ], + "suit": 6, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5031", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 5 + }, + "5032": { + "id": 5032, + "pos": 2, + "name": "pj_name_5032", + "undefined": "战神·圣御神魂", + "icon": "peijian_hx_8", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "def", + 200 + ], + "suit": 6, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5032", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 5 + }, + "5033": { + "id": 5033, + "pos": 3, + "name": "pj_name_5033", + "undefined": "战神·永恒神魂", + "icon": "peijian_hzh_8", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "hp", + 1500 + ], + "suit": 6, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5033", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 5 + }, + "5034": { + "id": 5034, + "pos": 4, + "name": "pj_name_5034", + "undefined": "战神·审判神魂", + "icon": "peijian_kzh_8", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "mindps", + 130 + ], + "suit": 6, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5034", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 5 + }, + "5035": { + "id": 5035, + "pos": 5, + "name": "pj_name_5035", + "undefined": "战神·裁决神魂", + "icon": "peijian_bb_8", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "maxdps", + 140 + ], + "suit": 6, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5035", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 5 + }, + "5036": { + "id": 5036, + "pos": 6, + "name": "pj_name_5036", + "undefined": "战神·天命神魂", + "icon": "peijian_yj_8", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "baoshangpro", + 3 + ], + "suit": 6, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5036", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 5 + }, + "5037": { + "id": 5037, + "pos": 1, + "name": "pj_name_5037", + "undefined": "强击·破坏神魂", + "icon": "peijian_ej_10", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "atk", + 100 + ], + "suit": 7, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5037", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 6 + }, + "5038": { + "id": 5038, + "pos": 2, + "name": "pj_name_5038", + "undefined": "强击·圣御神魂", + "icon": "peijian_hx_10", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "def", + 200 + ], + "suit": 7, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5038", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 6 + }, + "5039": { + "id": 5039, + "pos": 3, + "name": "pj_name_5039", + "undefined": "强击·永恒神魂", + "icon": "peijian_hzh_10", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "hp", + 1500 + ], + "suit": 7, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5039", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 6 + }, + "5040": { + "id": 5040, + "pos": 4, + "name": "pj_name_5040", + "undefined": "强击·审判神魂", + "icon": "peijian_kzh_10", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "mindps", + 130 + ], + "suit": 7, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5040", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 6 + }, + "5041": { + "id": 5041, + "pos": 5, + "name": "pj_name_5041", + "undefined": "强击·裁决神魂", + "icon": "peijian_bb_10", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "maxdps", + 140 + ], + "suit": 7, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5041", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 6 + }, + "5042": { + "id": 5042, + "pos": 6, + "name": "pj_name_5042", + "undefined": "强击·天命神魂", + "icon": "peijian_yj_10", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "baoshangpro", + 3 + ], + "suit": 7, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5042", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 6 + }, + "5043": { + "id": 5043, + "pos": 1, + "name": "pj_name_5043", + "undefined": "圣盾·破坏神魂", + "icon": "peijian_ej_9", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "atk", + 100 + ], + "suit": 8, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5043", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 7 + }, + "5044": { + "id": 5044, + "pos": 2, + "name": "pj_name_5044", + "undefined": "圣盾·圣御神魂", + "icon": "peijian_hx_9", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "def", + 200 + ], + "suit": 8, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5044", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 7 + }, + "5045": { + "id": 5045, + "pos": 3, + "name": "pj_name_5045", + "undefined": "圣盾·永恒神魂", + "icon": "peijian_hzh_9", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "hp", + 1500 + ], + "suit": 8, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5045", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 7 + }, + "5046": { + "id": 5046, + "pos": 4, + "name": "pj_name_5046", + "undefined": "圣盾·审判神魂", + "icon": "peijian_kzh_9", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "mindps", + 130 + ], + "suit": 8, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5046", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 7 + }, + "5047": { + "id": 5047, + "pos": 5, + "name": "pj_name_5047", + "undefined": "圣盾·裁决神魂", + "icon": "peijian_bb_9", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "maxdps", + 140 + ], + "suit": 8, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5047", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 7 + }, + "5048": { + "id": 5048, + "pos": 6, + "name": "pj_name_5048", + "undefined": "圣盾·天命神魂", + "icon": "peijian_yj_9", + "colour": 5, + "isExp": 0, + "conversion": [], + "buff": [ + "baoshangpro", + 3 + ], + "suit": 8, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 200 + }, + { + "a": "item", + "t": "29", + "n": 2 + } + ], + "jjid": 0, + "intr": "pj_des_5048", + "tujian": 0, + "advancedEffects": "ani_xiangzikuang", + "sort": 7 + }, + "6001": { + "id": 6001, + "pos": 0, + "name": "pj_name_6001", + "undefined": "经验魂石", + "icon": "icon_xxrp", + "colour": 4, + "isExp": 1, + "conversion": [], + "buff": [], + "suit": 0, + "rmPrize": [ + { + "a": "item", + "t": "28", + "n": 100 + } + ], + "jjid": 0, + "intr": "pj_des_6001", + "tujian": 1, + "advancedEffects": "", + "sort": 8 + } +} \ No newline at end of file diff --git a/src/json/peijian_jl.json b/src/json/peijian_jl.json new file mode 100644 index 0000000..ba9d12b --- /dev/null +++ b/src/json/peijian_jl.json @@ -0,0 +1,470 @@ +{ + "1": { + "lv": 1, + "needLv": 5, + "need": [ + { + "a": "item", + "t": "20", + "n": 20 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "peijianNum": 1, + "pro": 0.04 + }, + "2": { + "lv": 2, + "needLv": 8, + "need": [ + { + "a": "item", + "t": "20", + "n": 40 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "peijianNum": 2, + "pro": 0.09 + }, + "3": { + "lv": 3, + "needLv": 11, + "need": [ + { + "a": "item", + "t": "20", + "n": 60 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3000000 + } + ], + "peijianNum": 4, + "pro": 0.15 + }, + "4": { + "lv": 4, + "needLv": 14, + "need": [ + { + "a": "item", + "t": "20", + "n": 80 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "peijianNum": 6, + "pro": 0.21 + }, + "5": { + "lv": 5, + "needLv": 17, + "need": [ + { + "a": "item", + "t": "20", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + } + ], + "peijianNum": 8, + "pro": 0.28 + }, + "6": { + "lv": 6, + "needLv": 20, + "need": [ + { + "a": "item", + "t": "20", + "n": 120 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6000000 + } + ], + "peijianNum": 10, + "pro": 0.34 + }, + "7": { + "lv": 7, + "needLv": 23, + "need": [ + { + "a": "item", + "t": "20", + "n": 140 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7000000 + } + ], + "peijianNum": 12, + "pro": 0.41 + }, + "8": { + "lv": 8, + "needLv": 26, + "need": [ + { + "a": "item", + "t": "20", + "n": 160 + }, + { + "a": "attr", + "t": "jinbi", + "n": 8000000 + } + ], + "peijianNum": 14, + "pro": 0.49 + }, + "9": { + "lv": 9, + "needLv": 29, + "need": [ + { + "a": "item", + "t": "20", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 9000000 + } + ], + "peijianNum": 16, + "pro": 0.56 + }, + "10": { + "lv": 10, + "needLv": 32, + "need": [ + { + "a": "item", + "t": "20", + "n": 200 + }, + { + "a": "attr", + "t": "jinbi", + "n": 10000000 + } + ], + "peijianNum": 18, + "pro": 0.63 + }, + "11": { + "lv": 11, + "needLv": 35, + "need": [ + { + "a": "item", + "t": "20", + "n": 220 + }, + { + "a": "attr", + "t": "jinbi", + "n": 11000000 + } + ], + "peijianNum": 20, + "pro": 0.71 + }, + "12": { + "lv": 12, + "needLv": 38, + "need": [ + { + "a": "item", + "t": "20", + "n": 240 + }, + { + "a": "attr", + "t": "jinbi", + "n": 12000000 + } + ], + "peijianNum": 20, + "pro": 0.79 + }, + "13": { + "lv": 13, + "needLv": 41, + "need": [ + { + "a": "item", + "t": "20", + "n": 260 + }, + { + "a": "attr", + "t": "jinbi", + "n": 13000000 + } + ], + "peijianNum": 20, + "pro": 0.87 + }, + "14": { + "lv": 14, + "needLv": 44, + "need": [ + { + "a": "item", + "t": "20", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 14000000 + } + ], + "peijianNum": 20, + "pro": 0.95 + }, + "15": { + "lv": 15, + "needLv": 47, + "need": [ + { + "a": "item", + "t": "20", + "n": 300 + }, + { + "a": "attr", + "t": "jinbi", + "n": 15000000 + } + ], + "peijianNum": 20, + "pro": 1.03 + }, + "16": { + "lv": 16, + "needLv": 50, + "need": [ + { + "a": "item", + "t": "20", + "n": 320 + }, + { + "a": "attr", + "t": "jinbi", + "n": 16000000 + } + ], + "peijianNum": 20, + "pro": 1.11 + }, + "17": { + "lv": 17, + "needLv": 50, + "need": [ + { + "a": "item", + "t": "20", + "n": 340 + }, + { + "a": "attr", + "t": "jinbi", + "n": 17000000 + } + ], + "peijianNum": 20, + "pro": 1.2 + }, + "18": { + "lv": 18, + "needLv": 50, + "need": [ + { + "a": "item", + "t": "20", + "n": 360 + }, + { + "a": "attr", + "t": "jinbi", + "n": 18000000 + } + ], + "peijianNum": 20, + "pro": 1.28 + }, + "19": { + "lv": 19, + "needLv": 50, + "need": [ + { + "a": "item", + "t": "20", + "n": 380 + }, + { + "a": "attr", + "t": "jinbi", + "n": 19000000 + } + ], + "peijianNum": 20, + "pro": 1.37 + }, + "20": { + "lv": 20, + "needLv": 50, + "need": [ + { + "a": "item", + "t": "20", + "n": 400 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000000 + } + ], + "peijianNum": 20, + "pro": 1.46 + }, + "21": { + "lv": 21, + "needLv": 60, + "need": [ + { + "a": "item", + "t": "20", + "n": 420 + }, + { + "a": "attr", + "t": "jinbi", + "n": 22000000 + } + ], + "peijianNum": 22, + "pro": 1.54 + }, + "22": { + "lv": 22, + "needLv": 70, + "need": [ + { + "a": "item", + "t": "20", + "n": 440 + }, + { + "a": "attr", + "t": "jinbi", + "n": 24000000 + } + ], + "peijianNum": 24, + "pro": 1.63 + }, + "23": { + "lv": 23, + "needLv": 80, + "need": [ + { + "a": "item", + "t": "20", + "n": 460 + }, + { + "a": "attr", + "t": "jinbi", + "n": 26000000 + } + ], + "peijianNum": 26, + "pro": 1.72 + }, + "24": { + "lv": 24, + "needLv": 90, + "need": [ + { + "a": "item", + "t": "20", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 28000000 + } + ], + "peijianNum": 28, + "pro": 1.81 + }, + "25": { + "lv": 25, + "needLv": 100, + "need": [ + { + "a": "item", + "t": "20", + "n": 500 + }, + { + "a": "attr", + "t": "jinbi", + "n": 30000000 + } + ], + "peijianNum": 30, + "pro": 1.9 + }, + "26": { + "lv": 26, + "needLv": 100, + "need": [ + { + "a": "item", + "t": "20", + "n": 520 + }, + { + "a": "attr", + "t": "jinbi", + "n": 32000000 + } + ], + "peijianNum": 32, + "pro": 2 + } +} \ No newline at end of file diff --git a/src/json/peijian_lv.json b/src/json/peijian_lv.json new file mode 100644 index 0000000..0d0047b --- /dev/null +++ b/src/json/peijian_lv.json @@ -0,0 +1,9514 @@ +{ + "2": { + "2": { + "colour": 2, + "lv": 2, + "need": [ + { + "a": "item", + "t": "28", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 8000 + } + ], + "buff": { + "atk": 30, + "def": 60, + "hp": 600, + "mindps": 39, + "maxdps": 42, + "baoshangpro": 0.8 + } + }, + "3": { + "colour": 2, + "lv": 3, + "need": [ + { + "a": "item", + "t": "28", + "n": 28 + }, + { + "a": "attr", + "t": "jinbi", + "n": 22400 + } + ], + "buff": { + "atk": 40, + "def": 80, + "hp": 900, + "mindps": 52, + "maxdps": 56, + "baoshangpro": 1 + } + }, + "4": { + "colour": 2, + "lv": 4, + "need": [ + { + "a": "item", + "t": "28", + "n": 51 + }, + { + "a": "attr", + "t": "jinbi", + "n": 40800 + } + ], + "buff": { + "atk": 50, + "def": 100, + "hp": 1200, + "mindps": 65, + "maxdps": 70, + "baoshangpro": 1.2 + } + }, + "5": { + "colour": 2, + "lv": 5, + "need": [ + { + "a": "item", + "t": "28", + "n": 80 + }, + { + "a": "attr", + "t": "jinbi", + "n": 64000 + } + ], + "buff": { + "atk": 60, + "def": 120, + "hp": 1500, + "mindps": 78, + "maxdps": 84, + "baoshangpro": 1.4 + } + }, + "6": { + "colour": 2, + "lv": 6, + "need": [ + { + "a": "item", + "t": "28", + "n": 111 + }, + { + "a": "attr", + "t": "jinbi", + "n": 88800 + } + ], + "buff": { + "atk": 70, + "def": 140, + "hp": 1800, + "mindps": 91, + "maxdps": 98, + "baoshangpro": 1.6 + } + }, + "7": { + "colour": 2, + "lv": 7, + "need": [ + { + "a": "item", + "t": "28", + "n": 146 + }, + { + "a": "attr", + "t": "jinbi", + "n": 116800 + } + ], + "buff": { + "atk": 80, + "def": 160, + "hp": 2100, + "mindps": 104, + "maxdps": 112, + "baoshangpro": 1.8 + } + }, + "8": { + "colour": 2, + "lv": 8, + "need": [ + { + "a": "item", + "t": "28", + "n": 185 + }, + { + "a": "attr", + "t": "jinbi", + "n": 148000 + } + ], + "buff": { + "atk": 90, + "def": 180, + "hp": 2400, + "mindps": 117, + "maxdps": 126, + "baoshangpro": 2 + } + }, + "9": { + "colour": 2, + "lv": 9, + "need": [ + { + "a": "item", + "t": "28", + "n": 226 + }, + { + "a": "attr", + "t": "jinbi", + "n": 180800 + } + ], + "buff": { + "atk": 100, + "def": 200, + "hp": 2700, + "mindps": 130, + "maxdps": 140, + "baoshangpro": 2.2 + } + }, + "10": { + "colour": 2, + "lv": 10, + "need": [ + { + "a": "item", + "t": "28", + "n": 270 + }, + { + "a": "attr", + "t": "jinbi", + "n": 216000 + } + ], + "buff": { + "atk": 110, + "def": 220, + "hp": 3000, + "mindps": 143, + "maxdps": 154, + "baoshangpro": 2.4 + } + }, + "11": { + "colour": 2, + "lv": 11, + "need": [ + { + "a": "item", + "t": "28", + "n": 316 + }, + { + "a": "attr", + "t": "jinbi", + "n": 252800 + } + ], + "buff": { + "atk": 120, + "def": 240, + "hp": 3300, + "mindps": 156, + "maxdps": 168, + "baoshangpro": 2.6 + } + }, + "12": { + "colour": 2, + "lv": 12, + "need": [ + { + "a": "item", + "t": "28", + "n": 364 + }, + { + "a": "attr", + "t": "jinbi", + "n": 291200 + } + ], + "buff": { + "atk": 130, + "def": 260, + "hp": 3600, + "mindps": 169, + "maxdps": 182, + "baoshangpro": 2.8 + } + }, + "13": { + "colour": 2, + "lv": 13, + "need": [ + { + "a": "item", + "t": "28", + "n": 415 + }, + { + "a": "attr", + "t": "jinbi", + "n": 332000 + } + ], + "buff": { + "atk": 140, + "def": 280, + "hp": 3900, + "mindps": 182, + "maxdps": 196, + "baoshangpro": 3 + } + }, + "14": { + "colour": 2, + "lv": 14, + "need": [ + { + "a": "item", + "t": "28", + "n": 468 + }, + { + "a": "attr", + "t": "jinbi", + "n": 374400 + } + ], + "buff": { + "atk": 150, + "def": 300, + "hp": 4200, + "mindps": 195, + "maxdps": 210, + "baoshangpro": 3.2 + } + }, + "15": { + "colour": 2, + "lv": 15, + "need": [ + { + "a": "item", + "t": "28", + "n": 523 + }, + { + "a": "attr", + "t": "jinbi", + "n": 418400 + } + ], + "buff": { + "atk": 160, + "def": 320, + "hp": 4500, + "mindps": 208, + "maxdps": 224, + "baoshangpro": 3.4 + } + }, + "16": { + "colour": 2, + "lv": 16, + "need": [ + { + "a": "item", + "t": "28", + "n": 580 + }, + { + "a": "attr", + "t": "jinbi", + "n": 464000 + } + ], + "buff": { + "atk": 170, + "def": 340, + "hp": 4800, + "mindps": 221, + "maxdps": 238, + "baoshangpro": 3.6 + } + }, + "17": { + "colour": 2, + "lv": 17, + "need": [ + { + "a": "item", + "t": "28", + "n": 640 + }, + { + "a": "attr", + "t": "jinbi", + "n": 512000 + } + ], + "buff": { + "atk": 180, + "def": 360, + "hp": 5100, + "mindps": 234, + "maxdps": 252, + "baoshangpro": 3.8 + } + }, + "18": { + "colour": 2, + "lv": 18, + "need": [ + { + "a": "item", + "t": "28", + "n": 700 + }, + { + "a": "attr", + "t": "jinbi", + "n": 560000 + } + ], + "buff": { + "atk": 190, + "def": 380, + "hp": 5400, + "mindps": 247, + "maxdps": 266, + "baoshangpro": 4 + } + }, + "19": { + "colour": 2, + "lv": 19, + "need": [ + { + "a": "item", + "t": "28", + "n": 763 + }, + { + "a": "attr", + "t": "jinbi", + "n": 610400 + } + ], + "buff": { + "atk": 200, + "def": 400, + "hp": 5700, + "mindps": 260, + "maxdps": 280, + "baoshangpro": 4.2 + } + }, + "20": { + "colour": 2, + "lv": 20, + "need": [ + { + "a": "item", + "t": "28", + "n": 828 + }, + { + "a": "attr", + "t": "jinbi", + "n": 662400 + } + ], + "buff": { + "atk": 210, + "def": 420, + "hp": 6000, + "mindps": 273, + "maxdps": 294, + "baoshangpro": 4.4 + } + }, + "21": { + "colour": 2, + "lv": 21, + "need": [ + { + "a": "item", + "t": "28", + "n": 894 + }, + { + "a": "attr", + "t": "jinbi", + "n": 715200 + } + ], + "buff": { + "atk": 220, + "def": 440, + "hp": 6300, + "mindps": 286, + "maxdps": 308, + "baoshangpro": 4.6 + } + }, + "22": { + "colour": 2, + "lv": 22, + "need": [ + { + "a": "item", + "t": "28", + "n": 962 + }, + { + "a": "attr", + "t": "jinbi", + "n": 769600 + } + ], + "buff": { + "atk": 230, + "def": 460, + "hp": 6600, + "mindps": 299, + "maxdps": 322, + "baoshangpro": 4.8 + } + }, + "23": { + "colour": 2, + "lv": 23, + "need": [ + { + "a": "item", + "t": "28", + "n": 1031 + }, + { + "a": "attr", + "t": "jinbi", + "n": 824800 + } + ], + "buff": { + "atk": 240, + "def": 480, + "hp": 6900, + "mindps": 312, + "maxdps": 336, + "baoshangpro": 5 + } + }, + "24": { + "colour": 2, + "lv": 24, + "need": [ + { + "a": "item", + "t": "28", + "n": 1103 + }, + { + "a": "attr", + "t": "jinbi", + "n": 882400 + } + ], + "buff": { + "atk": 250, + "def": 500, + "hp": 7200, + "mindps": 325, + "maxdps": 350, + "baoshangpro": 5.2 + } + }, + "25": { + "colour": 2, + "lv": 25, + "need": [ + { + "a": "item", + "t": "28", + "n": 1175 + }, + { + "a": "attr", + "t": "jinbi", + "n": 940000 + } + ], + "buff": { + "atk": 260, + "def": 520, + "hp": 7500, + "mindps": 338, + "maxdps": 364, + "baoshangpro": 5.4 + } + }, + "26": { + "colour": 2, + "lv": 26, + "need": [ + { + "a": "item", + "t": "28", + "n": 1250 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "buff": { + "atk": 270, + "def": 540, + "hp": 7800, + "mindps": 351, + "maxdps": 378, + "baoshangpro": 5.6 + } + }, + "27": { + "colour": 2, + "lv": 27, + "need": [ + { + "a": "item", + "t": "28", + "n": 1325 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1060000 + } + ], + "buff": { + "atk": 280, + "def": 560, + "hp": 8100, + "mindps": 364, + "maxdps": 392, + "baoshangpro": 5.8 + } + }, + "28": { + "colour": 2, + "lv": 28, + "need": [ + { + "a": "item", + "t": "28", + "n": 1402 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1121600 + } + ], + "buff": { + "atk": 290, + "def": 580, + "hp": 8400, + "mindps": 377, + "maxdps": 406, + "baoshangpro": 6 + } + }, + "29": { + "colour": 2, + "lv": 29, + "need": [ + { + "a": "item", + "t": "28", + "n": 1481 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1184800 + } + ], + "buff": { + "atk": 300, + "def": 600, + "hp": 8700, + "mindps": 390, + "maxdps": 420, + "baoshangpro": 6.2 + } + }, + "30": { + "colour": 2, + "lv": 30, + "need": [ + { + "a": "item", + "t": "28", + "n": 1561 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1248800 + } + ], + "buff": { + "atk": 310, + "def": 620, + "hp": 9000, + "mindps": 403, + "maxdps": 434, + "baoshangpro": 6.4 + } + }, + "31": { + "colour": 2, + "lv": 31, + "need": [ + { + "a": "item", + "t": "28", + "n": 1643 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1314400 + } + ], + "buff": { + "atk": 320, + "def": 640, + "hp": 9300, + "mindps": 416, + "maxdps": 448, + "baoshangpro": 6.6 + } + }, + "32": { + "colour": 2, + "lv": 32, + "need": [ + { + "a": "item", + "t": "28", + "n": 1726 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1380800 + } + ], + "buff": { + "atk": 330, + "def": 660, + "hp": 9600, + "mindps": 429, + "maxdps": 462, + "baoshangpro": 6.8 + } + }, + "33": { + "colour": 2, + "lv": 33, + "need": [ + { + "a": "item", + "t": "28", + "n": 1810 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1448000 + } + ], + "buff": { + "atk": 340, + "def": 680, + "hp": 9900, + "mindps": 442, + "maxdps": 476, + "baoshangpro": 7 + } + }, + "34": { + "colour": 2, + "lv": 34, + "need": [ + { + "a": "item", + "t": "28", + "n": 1895 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1516000 + } + ], + "buff": { + "atk": 350, + "def": 700, + "hp": 10200, + "mindps": 455, + "maxdps": 490, + "baoshangpro": 7.2 + } + }, + "35": { + "colour": 2, + "lv": 35, + "need": [ + { + "a": "item", + "t": "28", + "n": 1982 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1585600 + } + ], + "buff": { + "atk": 360, + "def": 720, + "hp": 10500, + "mindps": 468, + "maxdps": 504, + "baoshangpro": 7.4 + } + }, + "36": { + "colour": 2, + "lv": 36, + "need": [ + { + "a": "item", + "t": "28", + "n": 2070 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1656000 + } + ], + "buff": { + "atk": 370, + "def": 740, + "hp": 10800, + "mindps": 481, + "maxdps": 518, + "baoshangpro": 7.6 + } + }, + "37": { + "colour": 2, + "lv": 37, + "need": [ + { + "a": "item", + "t": "28", + "n": 2160 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1728000 + } + ], + "buff": { + "atk": 380, + "def": 760, + "hp": 11100, + "mindps": 494, + "maxdps": 532, + "baoshangpro": 7.8 + } + }, + "38": { + "colour": 2, + "lv": 38, + "need": [ + { + "a": "item", + "t": "28", + "n": 2250 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1800000 + } + ], + "buff": { + "atk": 390, + "def": 780, + "hp": 11400, + "mindps": 507, + "maxdps": 546, + "baoshangpro": 8 + } + }, + "39": { + "colour": 2, + "lv": 39, + "need": [ + { + "a": "item", + "t": "28", + "n": 2342 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1873600 + } + ], + "buff": { + "atk": 400, + "def": 800, + "hp": 11700, + "mindps": 520, + "maxdps": 560, + "baoshangpro": 8.2 + } + }, + "40": { + "colour": 2, + "lv": 40, + "need": [ + { + "a": "item", + "t": "28", + "n": 2435 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1948000 + } + ], + "buff": { + "atk": 410, + "def": 820, + "hp": 12000, + "mindps": 533, + "maxdps": 574, + "baoshangpro": 8.4 + } + }, + "41": { + "colour": 2, + "lv": 41, + "need": [ + { + "a": "item", + "t": "28", + "n": 2529 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2023200 + } + ], + "buff": { + "atk": 420, + "def": 840, + "hp": 12300, + "mindps": 546, + "maxdps": 588, + "baoshangpro": 8.6 + } + }, + "42": { + "colour": 2, + "lv": 42, + "need": [ + { + "a": "item", + "t": "28", + "n": 2625 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2100000 + } + ], + "buff": { + "atk": 430, + "def": 860, + "hp": 12600, + "mindps": 559, + "maxdps": 602, + "baoshangpro": 8.8 + } + }, + "43": { + "colour": 2, + "lv": 43, + "need": [ + { + "a": "item", + "t": "28", + "n": 2721 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2176800 + } + ], + "buff": { + "atk": 440, + "def": 880, + "hp": 12900, + "mindps": 572, + "maxdps": 616, + "baoshangpro": 9 + } + }, + "44": { + "colour": 2, + "lv": 44, + "need": [ + { + "a": "item", + "t": "28", + "n": 2819 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2255200 + } + ], + "buff": { + "atk": 450, + "def": 900, + "hp": 13200, + "mindps": 585, + "maxdps": 630, + "baoshangpro": 9.2 + } + }, + "45": { + "colour": 2, + "lv": 45, + "need": [ + { + "a": "item", + "t": "28", + "n": 2918 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2334400 + } + ], + "buff": { + "atk": 460, + "def": 920, + "hp": 13500, + "mindps": 598, + "maxdps": 644, + "baoshangpro": 9.4 + } + }, + "46": { + "colour": 2, + "lv": 46, + "need": [ + { + "a": "item", + "t": "28", + "n": 3018 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2414400 + } + ], + "buff": { + "atk": 470, + "def": 940, + "hp": 13800, + "mindps": 611, + "maxdps": 658, + "baoshangpro": 9.6 + } + }, + "47": { + "colour": 2, + "lv": 47, + "need": [ + { + "a": "item", + "t": "28", + "n": 3119 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2495200 + } + ], + "buff": { + "atk": 480, + "def": 960, + "hp": 14100, + "mindps": 624, + "maxdps": 672, + "baoshangpro": 9.8 + } + }, + "48": { + "colour": 2, + "lv": 48, + "need": [ + { + "a": "item", + "t": "28", + "n": 3222 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2577600 + } + ], + "buff": { + "atk": 490, + "def": 980, + "hp": 14400, + "mindps": 637, + "maxdps": 686, + "baoshangpro": 10 + } + }, + "49": { + "colour": 2, + "lv": 49, + "need": [ + { + "a": "item", + "t": "28", + "n": 3325 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2660000 + } + ], + "buff": { + "atk": 500, + "def": 1000, + "hp": 14700, + "mindps": 650, + "maxdps": 700, + "baoshangpro": 10.2 + } + }, + "50": { + "colour": 2, + "lv": 50, + "need": [ + { + "a": "item", + "t": "28", + "n": 3430 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2744000 + } + ], + "buff": { + "atk": 510, + "def": 1020, + "hp": 15000, + "mindps": 663, + "maxdps": 714, + "baoshangpro": 10.4 + } + }, + "51": { + "colour": 2, + "lv": 51, + "need": [ + { + "a": "item", + "t": "28", + "n": 3535 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2828000 + } + ], + "buff": { + "atk": 520, + "def": 1040, + "hp": 15300, + "mindps": 676, + "maxdps": 728, + "baoshangpro": 10.6 + } + }, + "52": { + "colour": 2, + "lv": 52, + "need": [ + { + "a": "item", + "t": "28", + "n": 3642 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2913600 + } + ], + "buff": { + "atk": 530, + "def": 1060, + "hp": 15600, + "mindps": 689, + "maxdps": 742, + "baoshangpro": 10.8 + } + }, + "53": { + "colour": 2, + "lv": 53, + "need": [ + { + "a": "item", + "t": "28", + "n": 3749 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2999200 + } + ], + "buff": { + "atk": 540, + "def": 1080, + "hp": 15900, + "mindps": 702, + "maxdps": 756, + "baoshangpro": 11 + } + }, + "54": { + "colour": 2, + "lv": 54, + "need": [ + { + "a": "item", + "t": "28", + "n": 3858 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3086400 + } + ], + "buff": { + "atk": 550, + "def": 1100, + "hp": 16200, + "mindps": 715, + "maxdps": 770, + "baoshangpro": 11.2 + } + }, + "55": { + "colour": 2, + "lv": 55, + "need": [ + { + "a": "item", + "t": "28", + "n": 3968 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3174400 + } + ], + "buff": { + "atk": 560, + "def": 1120, + "hp": 16500, + "mindps": 728, + "maxdps": 784, + "baoshangpro": 11.4 + } + }, + "56": { + "colour": 2, + "lv": 56, + "need": [ + { + "a": "item", + "t": "28", + "n": 4078 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3262400 + } + ], + "buff": { + "atk": 570, + "def": 1140, + "hp": 16800, + "mindps": 741, + "maxdps": 798, + "baoshangpro": 11.6 + } + }, + "57": { + "colour": 2, + "lv": 57, + "need": [ + { + "a": "item", + "t": "28", + "n": 4190 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3352000 + } + ], + "buff": { + "atk": 580, + "def": 1160, + "hp": 17100, + "mindps": 754, + "maxdps": 812, + "baoshangpro": 11.8 + } + }, + "58": { + "colour": 2, + "lv": 58, + "need": [ + { + "a": "item", + "t": "28", + "n": 4303 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3442400 + } + ], + "buff": { + "atk": 590, + "def": 1180, + "hp": 17400, + "mindps": 767, + "maxdps": 826, + "baoshangpro": 12 + } + }, + "59": { + "colour": 2, + "lv": 59, + "need": [ + { + "a": "item", + "t": "28", + "n": 4417 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3533600 + } + ], + "buff": { + "atk": 600, + "def": 1200, + "hp": 17700, + "mindps": 780, + "maxdps": 840, + "baoshangpro": 12.2 + } + }, + "60": { + "colour": 2, + "lv": 60, + "need": [ + { + "a": "item", + "t": "28", + "n": 4531 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3624800 + } + ], + "buff": { + "atk": 610, + "def": 1220, + "hp": 18000, + "mindps": 793, + "maxdps": 854, + "baoshangpro": 12.4 + } + }, + "61": { + "colour": 2, + "lv": 61, + "need": [ + { + "a": "item", + "t": "28", + "n": 4647 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3717600 + } + ], + "buff": { + "atk": 620, + "def": 1240, + "hp": 18300, + "mindps": 806, + "maxdps": 868, + "baoshangpro": 12.6 + } + }, + "62": { + "colour": 2, + "lv": 62, + "need": [ + { + "a": "item", + "t": "28", + "n": 4764 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3811200 + } + ], + "buff": { + "atk": 630, + "def": 1260, + "hp": 18600, + "mindps": 819, + "maxdps": 882, + "baoshangpro": 12.8 + } + }, + "63": { + "colour": 2, + "lv": 63, + "need": [ + { + "a": "item", + "t": "28", + "n": 4881 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3904800 + } + ], + "buff": { + "atk": 640, + "def": 1280, + "hp": 18900, + "mindps": 832, + "maxdps": 896, + "baoshangpro": 13 + } + }, + "64": { + "colour": 2, + "lv": 64, + "need": [ + { + "a": "item", + "t": "28", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "buff": { + "atk": 650, + "def": 1300, + "hp": 19200, + "mindps": 845, + "maxdps": 910, + "baoshangpro": 13.2 + } + }, + "65": { + "colour": 2, + "lv": 65, + "need": [ + { + "a": "item", + "t": "28", + "n": 5120 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4096000 + } + ], + "buff": { + "atk": 660, + "def": 1320, + "hp": 19500, + "mindps": 858, + "maxdps": 924, + "baoshangpro": 13.4 + } + }, + "66": { + "colour": 2, + "lv": 66, + "need": [ + { + "a": "item", + "t": "28", + "n": 5240 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4192000 + } + ], + "buff": { + "atk": 670, + "def": 1340, + "hp": 19800, + "mindps": 871, + "maxdps": 938, + "baoshangpro": 13.6 + } + }, + "67": { + "colour": 2, + "lv": 67, + "need": [ + { + "a": "item", + "t": "28", + "n": 5361 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4288800 + } + ], + "buff": { + "atk": 680, + "def": 1360, + "hp": 20100, + "mindps": 884, + "maxdps": 952, + "baoshangpro": 13.8 + } + }, + "68": { + "colour": 2, + "lv": 68, + "need": [ + { + "a": "item", + "t": "28", + "n": 5484 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4387200 + } + ], + "buff": { + "atk": 690, + "def": 1380, + "hp": 20400, + "mindps": 897, + "maxdps": 966, + "baoshangpro": 14 + } + }, + "69": { + "colour": 2, + "lv": 69, + "need": [ + { + "a": "item", + "t": "28", + "n": 5607 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4485600 + } + ], + "buff": { + "atk": 700, + "def": 1400, + "hp": 20700, + "mindps": 910, + "maxdps": 980, + "baoshangpro": 14.2 + } + }, + "70": { + "colour": 2, + "lv": 70, + "need": [ + { + "a": "item", + "t": "28", + "n": 5731 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4584800 + } + ], + "buff": { + "atk": 710, + "def": 1420, + "hp": 21000, + "mindps": 923, + "maxdps": 994, + "baoshangpro": 14.4 + } + }, + "71": { + "colour": 2, + "lv": 71, + "need": [ + { + "a": "item", + "t": "28", + "n": 5856 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4684800 + } + ], + "buff": { + "atk": 720, + "def": 1440, + "hp": 21300, + "mindps": 936, + "maxdps": 1008, + "baoshangpro": 14.6 + } + }, + "72": { + "colour": 2, + "lv": 72, + "need": [ + { + "a": "item", + "t": "28", + "n": 5982 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4785600 + } + ], + "buff": { + "atk": 730, + "def": 1460, + "hp": 21600, + "mindps": 949, + "maxdps": 1022, + "baoshangpro": 14.8 + } + }, + "73": { + "colour": 2, + "lv": 73, + "need": [ + { + "a": "item", + "t": "28", + "n": 6109 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4887200 + } + ], + "buff": { + "atk": 740, + "def": 1480, + "hp": 21900, + "mindps": 962, + "maxdps": 1036, + "baoshangpro": 15 + } + }, + "74": { + "colour": 2, + "lv": 74, + "need": [ + { + "a": "item", + "t": "28", + "n": 6237 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4989600 + } + ], + "buff": { + "atk": 750, + "def": 1500, + "hp": 22200, + "mindps": 975, + "maxdps": 1050, + "baoshangpro": 15.2 + } + }, + "75": { + "colour": 2, + "lv": 75, + "need": [ + { + "a": "item", + "t": "28", + "n": 6365 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5092000 + } + ], + "buff": { + "atk": 760, + "def": 1520, + "hp": 22500, + "mindps": 988, + "maxdps": 1064, + "baoshangpro": 15.4 + } + }, + "76": { + "colour": 2, + "lv": 76, + "need": [ + { + "a": "item", + "t": "28", + "n": 6495 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5196000 + } + ], + "buff": { + "atk": 770, + "def": 1540, + "hp": 22800, + "mindps": 1001, + "maxdps": 1078, + "baoshangpro": 15.6 + } + }, + "77": { + "colour": 2, + "lv": 77, + "need": [ + { + "a": "item", + "t": "28", + "n": 6625 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5300000 + } + ], + "buff": { + "atk": 780, + "def": 1560, + "hp": 23100, + "mindps": 1014, + "maxdps": 1092, + "baoshangpro": 15.8 + } + }, + "78": { + "colour": 2, + "lv": 78, + "need": [ + { + "a": "item", + "t": "28", + "n": 6756 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5404800 + } + ], + "buff": { + "atk": 790, + "def": 1580, + "hp": 23400, + "mindps": 1027, + "maxdps": 1106, + "baoshangpro": 16 + } + }, + "79": { + "colour": 2, + "lv": 79, + "need": [ + { + "a": "item", + "t": "28", + "n": 6888 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5510400 + } + ], + "buff": { + "atk": 800, + "def": 1600, + "hp": 23700, + "mindps": 1040, + "maxdps": 1120, + "baoshangpro": 16.2 + } + }, + "80": { + "colour": 2, + "lv": 80, + "need": [ + { + "a": "item", + "t": "28", + "n": 7021 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5616800 + } + ], + "buff": { + "atk": 810, + "def": 1620, + "hp": 24000, + "mindps": 1053, + "maxdps": 1134, + "baoshangpro": 16.4 + } + }, + "81": { + "colour": 2, + "lv": 81, + "need": [ + { + "a": "item", + "t": "28", + "n": 7155 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5724000 + } + ], + "buff": { + "atk": 820, + "def": 1640, + "hp": 24300, + "mindps": 1066, + "maxdps": 1148, + "baoshangpro": 16.6 + } + }, + "82": { + "colour": 2, + "lv": 82, + "need": [ + { + "a": "item", + "t": "28", + "n": 7290 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5832000 + } + ], + "buff": { + "atk": 830, + "def": 1660, + "hp": 24600, + "mindps": 1079, + "maxdps": 1162, + "baoshangpro": 16.8 + } + }, + "83": { + "colour": 2, + "lv": 83, + "need": [ + { + "a": "item", + "t": "28", + "n": 7425 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5940000 + } + ], + "buff": { + "atk": 840, + "def": 1680, + "hp": 24900, + "mindps": 1092, + "maxdps": 1176, + "baoshangpro": 17 + } + }, + "84": { + "colour": 2, + "lv": 84, + "need": [ + { + "a": "item", + "t": "28", + "n": 7561 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6048800 + } + ], + "buff": { + "atk": 850, + "def": 1700, + "hp": 25200, + "mindps": 1105, + "maxdps": 1190, + "baoshangpro": 17.2 + } + }, + "85": { + "colour": 2, + "lv": 85, + "need": [ + { + "a": "item", + "t": "28", + "n": 7698 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6158400 + } + ], + "buff": { + "atk": 860, + "def": 1720, + "hp": 25500, + "mindps": 1118, + "maxdps": 1204, + "baoshangpro": 17.4 + } + }, + "86": { + "colour": 2, + "lv": 86, + "need": [ + { + "a": "item", + "t": "28", + "n": 7836 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6268800 + } + ], + "buff": { + "atk": 870, + "def": 1740, + "hp": 25800, + "mindps": 1131, + "maxdps": 1218, + "baoshangpro": 17.6 + } + }, + "87": { + "colour": 2, + "lv": 87, + "need": [ + { + "a": "item", + "t": "28", + "n": 7975 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6380000 + } + ], + "buff": { + "atk": 880, + "def": 1760, + "hp": 26100, + "mindps": 1144, + "maxdps": 1232, + "baoshangpro": 17.8 + } + }, + "88": { + "colour": 2, + "lv": 88, + "need": [ + { + "a": "item", + "t": "28", + "n": 8114 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6491200 + } + ], + "buff": { + "atk": 890, + "def": 1780, + "hp": 26400, + "mindps": 1157, + "maxdps": 1246, + "baoshangpro": 18 + } + }, + "89": { + "colour": 2, + "lv": 89, + "need": [ + { + "a": "item", + "t": "28", + "n": 8255 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6604000 + } + ], + "buff": { + "atk": 900, + "def": 1800, + "hp": 26700, + "mindps": 1170, + "maxdps": 1260, + "baoshangpro": 18.2 + } + }, + "90": { + "colour": 2, + "lv": 90, + "need": [ + { + "a": "item", + "t": "28", + "n": 8396 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6716800 + } + ], + "buff": { + "atk": 910, + "def": 1820, + "hp": 27000, + "mindps": 1183, + "maxdps": 1274, + "baoshangpro": 18.4 + } + }, + "91": { + "colour": 2, + "lv": 91, + "need": [ + { + "a": "item", + "t": "28", + "n": 8538 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6830400 + } + ], + "buff": { + "atk": 920, + "def": 1840, + "hp": 27300, + "mindps": 1196, + "maxdps": 1288, + "baoshangpro": 18.6 + } + }, + "92": { + "colour": 2, + "lv": 92, + "need": [ + { + "a": "item", + "t": "28", + "n": 8680 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6944000 + } + ], + "buff": { + "atk": 930, + "def": 1860, + "hp": 27600, + "mindps": 1209, + "maxdps": 1302, + "baoshangpro": 18.8 + } + }, + "93": { + "colour": 2, + "lv": 93, + "need": [ + { + "a": "item", + "t": "28", + "n": 8824 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7059200 + } + ], + "buff": { + "atk": 940, + "def": 1880, + "hp": 27900, + "mindps": 1222, + "maxdps": 1316, + "baoshangpro": 19 + } + }, + "94": { + "colour": 2, + "lv": 94, + "need": [ + { + "a": "item", + "t": "28", + "n": 8968 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7174400 + } + ], + "buff": { + "atk": 950, + "def": 1900, + "hp": 28200, + "mindps": 1235, + "maxdps": 1330, + "baoshangpro": 19.2 + } + }, + "95": { + "colour": 2, + "lv": 95, + "need": [ + { + "a": "item", + "t": "28", + "n": 9113 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7290400 + } + ], + "buff": { + "atk": 960, + "def": 1920, + "hp": 28500, + "mindps": 1248, + "maxdps": 1344, + "baoshangpro": 19.4 + } + }, + "96": { + "colour": 2, + "lv": 96, + "need": [ + { + "a": "item", + "t": "28", + "n": 9259 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7407200 + } + ], + "buff": { + "atk": 970, + "def": 1940, + "hp": 28800, + "mindps": 1261, + "maxdps": 1358, + "baoshangpro": 19.6 + } + }, + "97": { + "colour": 2, + "lv": 97, + "need": [ + { + "a": "item", + "t": "28", + "n": 9406 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7524800 + } + ], + "buff": { + "atk": 980, + "def": 1960, + "hp": 29100, + "mindps": 1274, + "maxdps": 1372, + "baoshangpro": 19.8 + } + }, + "98": { + "colour": 2, + "lv": 98, + "need": [ + { + "a": "item", + "t": "28", + "n": 9553 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7642400 + } + ], + "buff": { + "atk": 990, + "def": 1980, + "hp": 29400, + "mindps": 1287, + "maxdps": 1386, + "baoshangpro": 20 + } + }, + "99": { + "colour": 2, + "lv": 99, + "need": [ + { + "a": "item", + "t": "28", + "n": 9701 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7760800 + } + ], + "buff": { + "atk": 1000, + "def": 2000, + "hp": 29700, + "mindps": 1300, + "maxdps": 1400, + "baoshangpro": 20.2 + } + }, + "100": { + "colour": 2, + "lv": 100, + "need": [ + { + "a": "item", + "t": "28", + "n": 9850 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7880000 + } + ], + "buff": { + "atk": 1010, + "def": 2020, + "hp": 30000, + "mindps": 1313, + "maxdps": 1414, + "baoshangpro": 20.4 + } + } + }, + "3": { + "2": { + "colour": 3, + "lv": 2, + "need": [ + { + "a": "item", + "t": "28", + "n": 20 + }, + { + "a": "attr", + "t": "jinbi", + "n": 8000 + } + ], + "buff": { + "atk": 60, + "def": 120, + "hp": 1200, + "mindps": 78, + "maxdps": 84, + "baoshangpro": 1.6 + } + }, + "3": { + "colour": 3, + "lv": 3, + "need": [ + { + "a": "item", + "t": "28", + "n": 56 + }, + { + "a": "attr", + "t": "jinbi", + "n": 22400 + } + ], + "buff": { + "atk": 80, + "def": 160, + "hp": 1800, + "mindps": 104, + "maxdps": 112, + "baoshangpro": 2 + } + }, + "4": { + "colour": 3, + "lv": 4, + "need": [ + { + "a": "item", + "t": "28", + "n": 102 + }, + { + "a": "attr", + "t": "jinbi", + "n": 40800 + } + ], + "buff": { + "atk": 100, + "def": 200, + "hp": 2400, + "mindps": 130, + "maxdps": 140, + "baoshangpro": 2.4 + } + }, + "5": { + "colour": 3, + "lv": 5, + "need": [ + { + "a": "item", + "t": "28", + "n": 160 + }, + { + "a": "attr", + "t": "jinbi", + "n": 64000 + } + ], + "buff": { + "atk": 120, + "def": 240, + "hp": 3000, + "mindps": 156, + "maxdps": 168, + "baoshangpro": 2.8 + } + }, + "6": { + "colour": 3, + "lv": 6, + "need": [ + { + "a": "item", + "t": "28", + "n": 222 + }, + { + "a": "attr", + "t": "jinbi", + "n": 88800 + } + ], + "buff": { + "atk": 140, + "def": 280, + "hp": 3600, + "mindps": 182, + "maxdps": 196, + "baoshangpro": 3.2 + } + }, + "7": { + "colour": 3, + "lv": 7, + "need": [ + { + "a": "item", + "t": "28", + "n": 292 + }, + { + "a": "attr", + "t": "jinbi", + "n": 116800 + } + ], + "buff": { + "atk": 160, + "def": 320, + "hp": 4200, + "mindps": 208, + "maxdps": 224, + "baoshangpro": 3.6 + } + }, + "8": { + "colour": 3, + "lv": 8, + "need": [ + { + "a": "item", + "t": "28", + "n": 370 + }, + { + "a": "attr", + "t": "jinbi", + "n": 148000 + } + ], + "buff": { + "atk": 180, + "def": 360, + "hp": 4800, + "mindps": 234, + "maxdps": 252, + "baoshangpro": 4 + } + }, + "9": { + "colour": 3, + "lv": 9, + "need": [ + { + "a": "item", + "t": "28", + "n": 452 + }, + { + "a": "attr", + "t": "jinbi", + "n": 180800 + } + ], + "buff": { + "atk": 200, + "def": 400, + "hp": 5400, + "mindps": 260, + "maxdps": 280, + "baoshangpro": 4.4 + } + }, + "10": { + "colour": 3, + "lv": 10, + "need": [ + { + "a": "item", + "t": "28", + "n": 540 + }, + { + "a": "attr", + "t": "jinbi", + "n": 216000 + } + ], + "buff": { + "atk": 220, + "def": 440, + "hp": 6000, + "mindps": 286, + "maxdps": 308, + "baoshangpro": 4.8 + } + }, + "11": { + "colour": 3, + "lv": 11, + "need": [ + { + "a": "item", + "t": "28", + "n": 632 + }, + { + "a": "attr", + "t": "jinbi", + "n": 252800 + } + ], + "buff": { + "atk": 240, + "def": 480, + "hp": 6600, + "mindps": 312, + "maxdps": 336, + "baoshangpro": 5.2 + } + }, + "12": { + "colour": 3, + "lv": 12, + "need": [ + { + "a": "item", + "t": "28", + "n": 728 + }, + { + "a": "attr", + "t": "jinbi", + "n": 291200 + } + ], + "buff": { + "atk": 260, + "def": 520, + "hp": 7200, + "mindps": 338, + "maxdps": 364, + "baoshangpro": 5.6 + } + }, + "13": { + "colour": 3, + "lv": 13, + "need": [ + { + "a": "item", + "t": "28", + "n": 830 + }, + { + "a": "attr", + "t": "jinbi", + "n": 332000 + } + ], + "buff": { + "atk": 280, + "def": 560, + "hp": 7800, + "mindps": 364, + "maxdps": 392, + "baoshangpro": 6 + } + }, + "14": { + "colour": 3, + "lv": 14, + "need": [ + { + "a": "item", + "t": "28", + "n": 936 + }, + { + "a": "attr", + "t": "jinbi", + "n": 374400 + } + ], + "buff": { + "atk": 300, + "def": 600, + "hp": 8400, + "mindps": 390, + "maxdps": 420, + "baoshangpro": 6.4 + } + }, + "15": { + "colour": 3, + "lv": 15, + "need": [ + { + "a": "item", + "t": "28", + "n": 1046 + }, + { + "a": "attr", + "t": "jinbi", + "n": 418400 + } + ], + "buff": { + "atk": 320, + "def": 640, + "hp": 9000, + "mindps": 416, + "maxdps": 448, + "baoshangpro": 6.8 + } + }, + "16": { + "colour": 3, + "lv": 16, + "need": [ + { + "a": "item", + "t": "28", + "n": 1160 + }, + { + "a": "attr", + "t": "jinbi", + "n": 464000 + } + ], + "buff": { + "atk": 340, + "def": 680, + "hp": 9600, + "mindps": 442, + "maxdps": 476, + "baoshangpro": 7.2 + } + }, + "17": { + "colour": 3, + "lv": 17, + "need": [ + { + "a": "item", + "t": "28", + "n": 1280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 512000 + } + ], + "buff": { + "atk": 360, + "def": 720, + "hp": 10200, + "mindps": 468, + "maxdps": 504, + "baoshangpro": 7.6 + } + }, + "18": { + "colour": 3, + "lv": 18, + "need": [ + { + "a": "item", + "t": "28", + "n": 1400 + }, + { + "a": "attr", + "t": "jinbi", + "n": 560000 + } + ], + "buff": { + "atk": 380, + "def": 760, + "hp": 10800, + "mindps": 494, + "maxdps": 532, + "baoshangpro": 8 + } + }, + "19": { + "colour": 3, + "lv": 19, + "need": [ + { + "a": "item", + "t": "28", + "n": 1526 + }, + { + "a": "attr", + "t": "jinbi", + "n": 610400 + } + ], + "buff": { + "atk": 400, + "def": 800, + "hp": 11400, + "mindps": 520, + "maxdps": 560, + "baoshangpro": 8.4 + } + }, + "20": { + "colour": 3, + "lv": 20, + "need": [ + { + "a": "item", + "t": "28", + "n": 1656 + }, + { + "a": "attr", + "t": "jinbi", + "n": 662400 + } + ], + "buff": { + "atk": 420, + "def": 840, + "hp": 12000, + "mindps": 546, + "maxdps": 588, + "baoshangpro": 8.8 + } + }, + "21": { + "colour": 3, + "lv": 21, + "need": [ + { + "a": "item", + "t": "28", + "n": 1788 + }, + { + "a": "attr", + "t": "jinbi", + "n": 715200 + } + ], + "buff": { + "atk": 440, + "def": 880, + "hp": 12600, + "mindps": 572, + "maxdps": 616, + "baoshangpro": 9.2 + } + }, + "22": { + "colour": 3, + "lv": 22, + "need": [ + { + "a": "item", + "t": "28", + "n": 1924 + }, + { + "a": "attr", + "t": "jinbi", + "n": 769600 + } + ], + "buff": { + "atk": 460, + "def": 920, + "hp": 13200, + "mindps": 598, + "maxdps": 644, + "baoshangpro": 9.6 + } + }, + "23": { + "colour": 3, + "lv": 23, + "need": [ + { + "a": "item", + "t": "28", + "n": 2062 + }, + { + "a": "attr", + "t": "jinbi", + "n": 824800 + } + ], + "buff": { + "atk": 480, + "def": 960, + "hp": 13800, + "mindps": 624, + "maxdps": 672, + "baoshangpro": 10 + } + }, + "24": { + "colour": 3, + "lv": 24, + "need": [ + { + "a": "item", + "t": "28", + "n": 2206 + }, + { + "a": "attr", + "t": "jinbi", + "n": 882400 + } + ], + "buff": { + "atk": 500, + "def": 1000, + "hp": 14400, + "mindps": 650, + "maxdps": 700, + "baoshangpro": 10.4 + } + }, + "25": { + "colour": 3, + "lv": 25, + "need": [ + { + "a": "item", + "t": "28", + "n": 2350 + }, + { + "a": "attr", + "t": "jinbi", + "n": 940000 + } + ], + "buff": { + "atk": 520, + "def": 1040, + "hp": 15000, + "mindps": 676, + "maxdps": 728, + "baoshangpro": 10.8 + } + }, + "26": { + "colour": 3, + "lv": 26, + "need": [ + { + "a": "item", + "t": "28", + "n": 2500 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "buff": { + "atk": 540, + "def": 1080, + "hp": 15600, + "mindps": 702, + "maxdps": 756, + "baoshangpro": 11.2 + } + }, + "27": { + "colour": 3, + "lv": 27, + "need": [ + { + "a": "item", + "t": "28", + "n": 2650 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1060000 + } + ], + "buff": { + "atk": 560, + "def": 1120, + "hp": 16200, + "mindps": 728, + "maxdps": 784, + "baoshangpro": 11.6 + } + }, + "28": { + "colour": 3, + "lv": 28, + "need": [ + { + "a": "item", + "t": "28", + "n": 2804 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1121600 + } + ], + "buff": { + "atk": 580, + "def": 1160, + "hp": 16800, + "mindps": 754, + "maxdps": 812, + "baoshangpro": 12 + } + }, + "29": { + "colour": 3, + "lv": 29, + "need": [ + { + "a": "item", + "t": "28", + "n": 2962 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1184800 + } + ], + "buff": { + "atk": 600, + "def": 1200, + "hp": 17400, + "mindps": 780, + "maxdps": 840, + "baoshangpro": 12.4 + } + }, + "30": { + "colour": 3, + "lv": 30, + "need": [ + { + "a": "item", + "t": "28", + "n": 3122 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1248800 + } + ], + "buff": { + "atk": 620, + "def": 1240, + "hp": 18000, + "mindps": 806, + "maxdps": 868, + "baoshangpro": 12.8 + } + }, + "31": { + "colour": 3, + "lv": 31, + "need": [ + { + "a": "item", + "t": "28", + "n": 3286 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1314400 + } + ], + "buff": { + "atk": 640, + "def": 1280, + "hp": 18600, + "mindps": 832, + "maxdps": 896, + "baoshangpro": 13.2 + } + }, + "32": { + "colour": 3, + "lv": 32, + "need": [ + { + "a": "item", + "t": "28", + "n": 3452 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1380800 + } + ], + "buff": { + "atk": 660, + "def": 1320, + "hp": 19200, + "mindps": 858, + "maxdps": 924, + "baoshangpro": 13.6 + } + }, + "33": { + "colour": 3, + "lv": 33, + "need": [ + { + "a": "item", + "t": "28", + "n": 3620 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1448000 + } + ], + "buff": { + "atk": 680, + "def": 1360, + "hp": 19800, + "mindps": 884, + "maxdps": 952, + "baoshangpro": 14 + } + }, + "34": { + "colour": 3, + "lv": 34, + "need": [ + { + "a": "item", + "t": "28", + "n": 3790 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1516000 + } + ], + "buff": { + "atk": 700, + "def": 1400, + "hp": 20400, + "mindps": 910, + "maxdps": 980, + "baoshangpro": 14.4 + } + }, + "35": { + "colour": 3, + "lv": 35, + "need": [ + { + "a": "item", + "t": "28", + "n": 3964 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1585600 + } + ], + "buff": { + "atk": 720, + "def": 1440, + "hp": 21000, + "mindps": 936, + "maxdps": 1008, + "baoshangpro": 14.8 + } + }, + "36": { + "colour": 3, + "lv": 36, + "need": [ + { + "a": "item", + "t": "28", + "n": 4140 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1656000 + } + ], + "buff": { + "atk": 740, + "def": 1480, + "hp": 21600, + "mindps": 962, + "maxdps": 1036, + "baoshangpro": 15.2 + } + }, + "37": { + "colour": 3, + "lv": 37, + "need": [ + { + "a": "item", + "t": "28", + "n": 4320 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1728000 + } + ], + "buff": { + "atk": 760, + "def": 1520, + "hp": 22200, + "mindps": 988, + "maxdps": 1064, + "baoshangpro": 15.6 + } + }, + "38": { + "colour": 3, + "lv": 38, + "need": [ + { + "a": "item", + "t": "28", + "n": 4500 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1800000 + } + ], + "buff": { + "atk": 780, + "def": 1560, + "hp": 22800, + "mindps": 1014, + "maxdps": 1092, + "baoshangpro": 16 + } + }, + "39": { + "colour": 3, + "lv": 39, + "need": [ + { + "a": "item", + "t": "28", + "n": 4684 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1873600 + } + ], + "buff": { + "atk": 800, + "def": 1600, + "hp": 23400, + "mindps": 1040, + "maxdps": 1120, + "baoshangpro": 16.4 + } + }, + "40": { + "colour": 3, + "lv": 40, + "need": [ + { + "a": "item", + "t": "28", + "n": 4870 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1948000 + } + ], + "buff": { + "atk": 820, + "def": 1640, + "hp": 24000, + "mindps": 1066, + "maxdps": 1148, + "baoshangpro": 16.8 + } + }, + "41": { + "colour": 3, + "lv": 41, + "need": [ + { + "a": "item", + "t": "28", + "n": 5058 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2023200 + } + ], + "buff": { + "atk": 840, + "def": 1680, + "hp": 24600, + "mindps": 1092, + "maxdps": 1176, + "baoshangpro": 17.2 + } + }, + "42": { + "colour": 3, + "lv": 42, + "need": [ + { + "a": "item", + "t": "28", + "n": 5250 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2100000 + } + ], + "buff": { + "atk": 860, + "def": 1720, + "hp": 25200, + "mindps": 1118, + "maxdps": 1204, + "baoshangpro": 17.6 + } + }, + "43": { + "colour": 3, + "lv": 43, + "need": [ + { + "a": "item", + "t": "28", + "n": 5442 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2176800 + } + ], + "buff": { + "atk": 880, + "def": 1760, + "hp": 25800, + "mindps": 1144, + "maxdps": 1232, + "baoshangpro": 18 + } + }, + "44": { + "colour": 3, + "lv": 44, + "need": [ + { + "a": "item", + "t": "28", + "n": 5638 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2255200 + } + ], + "buff": { + "atk": 900, + "def": 1800, + "hp": 26400, + "mindps": 1170, + "maxdps": 1260, + "baoshangpro": 18.4 + } + }, + "45": { + "colour": 3, + "lv": 45, + "need": [ + { + "a": "item", + "t": "28", + "n": 5836 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2334400 + } + ], + "buff": { + "atk": 920, + "def": 1840, + "hp": 27000, + "mindps": 1196, + "maxdps": 1288, + "baoshangpro": 18.8 + } + }, + "46": { + "colour": 3, + "lv": 46, + "need": [ + { + "a": "item", + "t": "28", + "n": 6036 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2414400 + } + ], + "buff": { + "atk": 940, + "def": 1880, + "hp": 27600, + "mindps": 1222, + "maxdps": 1316, + "baoshangpro": 19.2 + } + }, + "47": { + "colour": 3, + "lv": 47, + "need": [ + { + "a": "item", + "t": "28", + "n": 6238 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2495200 + } + ], + "buff": { + "atk": 960, + "def": 1920, + "hp": 28200, + "mindps": 1248, + "maxdps": 1344, + "baoshangpro": 19.6 + } + }, + "48": { + "colour": 3, + "lv": 48, + "need": [ + { + "a": "item", + "t": "28", + "n": 6444 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2577600 + } + ], + "buff": { + "atk": 980, + "def": 1960, + "hp": 28800, + "mindps": 1274, + "maxdps": 1372, + "baoshangpro": 20 + } + }, + "49": { + "colour": 3, + "lv": 49, + "need": [ + { + "a": "item", + "t": "28", + "n": 6650 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2660000 + } + ], + "buff": { + "atk": 1000, + "def": 2000, + "hp": 29400, + "mindps": 1300, + "maxdps": 1400, + "baoshangpro": 20.4 + } + }, + "50": { + "colour": 3, + "lv": 50, + "need": [ + { + "a": "item", + "t": "28", + "n": 6860 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2744000 + } + ], + "buff": { + "atk": 1020, + "def": 2040, + "hp": 30000, + "mindps": 1326, + "maxdps": 1428, + "baoshangpro": 20.8 + } + }, + "51": { + "colour": 3, + "lv": 51, + "need": [ + { + "a": "item", + "t": "28", + "n": 7070 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2828000 + } + ], + "buff": { + "atk": 1040, + "def": 2080, + "hp": 30600, + "mindps": 1352, + "maxdps": 1456, + "baoshangpro": 21.2 + } + }, + "52": { + "colour": 3, + "lv": 52, + "need": [ + { + "a": "item", + "t": "28", + "n": 7284 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2913600 + } + ], + "buff": { + "atk": 1060, + "def": 2120, + "hp": 31200, + "mindps": 1378, + "maxdps": 1484, + "baoshangpro": 21.6 + } + }, + "53": { + "colour": 3, + "lv": 53, + "need": [ + { + "a": "item", + "t": "28", + "n": 7498 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2999200 + } + ], + "buff": { + "atk": 1080, + "def": 2160, + "hp": 31800, + "mindps": 1404, + "maxdps": 1512, + "baoshangpro": 22 + } + }, + "54": { + "colour": 3, + "lv": 54, + "need": [ + { + "a": "item", + "t": "28", + "n": 7716 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3086400 + } + ], + "buff": { + "atk": 1100, + "def": 2200, + "hp": 32400, + "mindps": 1430, + "maxdps": 1540, + "baoshangpro": 22.4 + } + }, + "55": { + "colour": 3, + "lv": 55, + "need": [ + { + "a": "item", + "t": "28", + "n": 7936 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3174400 + } + ], + "buff": { + "atk": 1120, + "def": 2240, + "hp": 33000, + "mindps": 1456, + "maxdps": 1568, + "baoshangpro": 22.8 + } + }, + "56": { + "colour": 3, + "lv": 56, + "need": [ + { + "a": "item", + "t": "28", + "n": 8156 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3262400 + } + ], + "buff": { + "atk": 1140, + "def": 2280, + "hp": 33600, + "mindps": 1482, + "maxdps": 1596, + "baoshangpro": 23.2 + } + }, + "57": { + "colour": 3, + "lv": 57, + "need": [ + { + "a": "item", + "t": "28", + "n": 8380 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3352000 + } + ], + "buff": { + "atk": 1160, + "def": 2320, + "hp": 34200, + "mindps": 1508, + "maxdps": 1624, + "baoshangpro": 23.6 + } + }, + "58": { + "colour": 3, + "lv": 58, + "need": [ + { + "a": "item", + "t": "28", + "n": 8606 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3442400 + } + ], + "buff": { + "atk": 1180, + "def": 2360, + "hp": 34800, + "mindps": 1534, + "maxdps": 1652, + "baoshangpro": 24 + } + }, + "59": { + "colour": 3, + "lv": 59, + "need": [ + { + "a": "item", + "t": "28", + "n": 8834 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3533600 + } + ], + "buff": { + "atk": 1200, + "def": 2400, + "hp": 35400, + "mindps": 1560, + "maxdps": 1680, + "baoshangpro": 24.4 + } + }, + "60": { + "colour": 3, + "lv": 60, + "need": [ + { + "a": "item", + "t": "28", + "n": 9062 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3624800 + } + ], + "buff": { + "atk": 1220, + "def": 2440, + "hp": 36000, + "mindps": 1586, + "maxdps": 1708, + "baoshangpro": 24.8 + } + }, + "61": { + "colour": 3, + "lv": 61, + "need": [ + { + "a": "item", + "t": "28", + "n": 9294 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3717600 + } + ], + "buff": { + "atk": 1240, + "def": 2480, + "hp": 36600, + "mindps": 1612, + "maxdps": 1736, + "baoshangpro": 25.2 + } + }, + "62": { + "colour": 3, + "lv": 62, + "need": [ + { + "a": "item", + "t": "28", + "n": 9528 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3811200 + } + ], + "buff": { + "atk": 1260, + "def": 2520, + "hp": 37200, + "mindps": 1638, + "maxdps": 1764, + "baoshangpro": 25.6 + } + }, + "63": { + "colour": 3, + "lv": 63, + "need": [ + { + "a": "item", + "t": "28", + "n": 9762 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3904800 + } + ], + "buff": { + "atk": 1280, + "def": 2560, + "hp": 37800, + "mindps": 1664, + "maxdps": 1792, + "baoshangpro": 26 + } + }, + "64": { + "colour": 3, + "lv": 64, + "need": [ + { + "a": "item", + "t": "28", + "n": 10000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "buff": { + "atk": 1300, + "def": 2600, + "hp": 38400, + "mindps": 1690, + "maxdps": 1820, + "baoshangpro": 26.4 + } + }, + "65": { + "colour": 3, + "lv": 65, + "need": [ + { + "a": "item", + "t": "28", + "n": 10240 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4096000 + } + ], + "buff": { + "atk": 1320, + "def": 2640, + "hp": 39000, + "mindps": 1716, + "maxdps": 1848, + "baoshangpro": 26.8 + } + }, + "66": { + "colour": 3, + "lv": 66, + "need": [ + { + "a": "item", + "t": "28", + "n": 10480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4192000 + } + ], + "buff": { + "atk": 1340, + "def": 2680, + "hp": 39600, + "mindps": 1742, + "maxdps": 1876, + "baoshangpro": 27.2 + } + }, + "67": { + "colour": 3, + "lv": 67, + "need": [ + { + "a": "item", + "t": "28", + "n": 10722 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4288800 + } + ], + "buff": { + "atk": 1360, + "def": 2720, + "hp": 40200, + "mindps": 1768, + "maxdps": 1904, + "baoshangpro": 27.6 + } + }, + "68": { + "colour": 3, + "lv": 68, + "need": [ + { + "a": "item", + "t": "28", + "n": 10968 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4387200 + } + ], + "buff": { + "atk": 1380, + "def": 2760, + "hp": 40800, + "mindps": 1794, + "maxdps": 1932, + "baoshangpro": 28 + } + }, + "69": { + "colour": 3, + "lv": 69, + "need": [ + { + "a": "item", + "t": "28", + "n": 11214 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4485600 + } + ], + "buff": { + "atk": 1400, + "def": 2800, + "hp": 41400, + "mindps": 1820, + "maxdps": 1960, + "baoshangpro": 28.4 + } + }, + "70": { + "colour": 3, + "lv": 70, + "need": [ + { + "a": "item", + "t": "28", + "n": 11462 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4584800 + } + ], + "buff": { + "atk": 1420, + "def": 2840, + "hp": 42000, + "mindps": 1846, + "maxdps": 1988, + "baoshangpro": 28.8 + } + }, + "71": { + "colour": 3, + "lv": 71, + "need": [ + { + "a": "item", + "t": "28", + "n": 11712 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4684800 + } + ], + "buff": { + "atk": 1440, + "def": 2880, + "hp": 42600, + "mindps": 1872, + "maxdps": 2016, + "baoshangpro": 29.2 + } + }, + "72": { + "colour": 3, + "lv": 72, + "need": [ + { + "a": "item", + "t": "28", + "n": 11964 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4785600 + } + ], + "buff": { + "atk": 1460, + "def": 2920, + "hp": 43200, + "mindps": 1898, + "maxdps": 2044, + "baoshangpro": 29.6 + } + }, + "73": { + "colour": 3, + "lv": 73, + "need": [ + { + "a": "item", + "t": "28", + "n": 12218 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4887200 + } + ], + "buff": { + "atk": 1480, + "def": 2960, + "hp": 43800, + "mindps": 1924, + "maxdps": 2072, + "baoshangpro": 30 + } + }, + "74": { + "colour": 3, + "lv": 74, + "need": [ + { + "a": "item", + "t": "28", + "n": 12474 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4989600 + } + ], + "buff": { + "atk": 1500, + "def": 3000, + "hp": 44400, + "mindps": 1950, + "maxdps": 2100, + "baoshangpro": 30.4 + } + }, + "75": { + "colour": 3, + "lv": 75, + "need": [ + { + "a": "item", + "t": "28", + "n": 12730 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5092000 + } + ], + "buff": { + "atk": 1520, + "def": 3040, + "hp": 45000, + "mindps": 1976, + "maxdps": 2128, + "baoshangpro": 30.8 + } + }, + "76": { + "colour": 3, + "lv": 76, + "need": [ + { + "a": "item", + "t": "28", + "n": 12990 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5196000 + } + ], + "buff": { + "atk": 1540, + "def": 3080, + "hp": 45600, + "mindps": 2002, + "maxdps": 2156, + "baoshangpro": 31.2 + } + }, + "77": { + "colour": 3, + "lv": 77, + "need": [ + { + "a": "item", + "t": "28", + "n": 13250 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5300000 + } + ], + "buff": { + "atk": 1560, + "def": 3120, + "hp": 46200, + "mindps": 2028, + "maxdps": 2184, + "baoshangpro": 31.6 + } + }, + "78": { + "colour": 3, + "lv": 78, + "need": [ + { + "a": "item", + "t": "28", + "n": 13512 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5404800 + } + ], + "buff": { + "atk": 1580, + "def": 3160, + "hp": 46800, + "mindps": 2054, + "maxdps": 2212, + "baoshangpro": 32 + } + }, + "79": { + "colour": 3, + "lv": 79, + "need": [ + { + "a": "item", + "t": "28", + "n": 13776 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5510400 + } + ], + "buff": { + "atk": 1600, + "def": 3200, + "hp": 47400, + "mindps": 2080, + "maxdps": 2240, + "baoshangpro": 32.4 + } + }, + "80": { + "colour": 3, + "lv": 80, + "need": [ + { + "a": "item", + "t": "28", + "n": 14042 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5616800 + } + ], + "buff": { + "atk": 1620, + "def": 3240, + "hp": 48000, + "mindps": 2106, + "maxdps": 2268, + "baoshangpro": 32.8 + } + }, + "81": { + "colour": 3, + "lv": 81, + "need": [ + { + "a": "item", + "t": "28", + "n": 14310 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5724000 + } + ], + "buff": { + "atk": 1640, + "def": 3280, + "hp": 48600, + "mindps": 2132, + "maxdps": 2296, + "baoshangpro": 33.2 + } + }, + "82": { + "colour": 3, + "lv": 82, + "need": [ + { + "a": "item", + "t": "28", + "n": 14580 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5832000 + } + ], + "buff": { + "atk": 1660, + "def": 3320, + "hp": 49200, + "mindps": 2158, + "maxdps": 2324, + "baoshangpro": 33.6 + } + }, + "83": { + "colour": 3, + "lv": 83, + "need": [ + { + "a": "item", + "t": "28", + "n": 14850 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5940000 + } + ], + "buff": { + "atk": 1680, + "def": 3360, + "hp": 49800, + "mindps": 2184, + "maxdps": 2352, + "baoshangpro": 34 + } + }, + "84": { + "colour": 3, + "lv": 84, + "need": [ + { + "a": "item", + "t": "28", + "n": 15122 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6048800 + } + ], + "buff": { + "atk": 1700, + "def": 3400, + "hp": 50400, + "mindps": 2210, + "maxdps": 2380, + "baoshangpro": 34.4 + } + }, + "85": { + "colour": 3, + "lv": 85, + "need": [ + { + "a": "item", + "t": "28", + "n": 15396 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6158400 + } + ], + "buff": { + "atk": 1720, + "def": 3440, + "hp": 51000, + "mindps": 2236, + "maxdps": 2408, + "baoshangpro": 34.8 + } + }, + "86": { + "colour": 3, + "lv": 86, + "need": [ + { + "a": "item", + "t": "28", + "n": 15672 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6268800 + } + ], + "buff": { + "atk": 1740, + "def": 3480, + "hp": 51600, + "mindps": 2262, + "maxdps": 2436, + "baoshangpro": 35.2 + } + }, + "87": { + "colour": 3, + "lv": 87, + "need": [ + { + "a": "item", + "t": "28", + "n": 15950 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6380000 + } + ], + "buff": { + "atk": 1760, + "def": 3520, + "hp": 52200, + "mindps": 2288, + "maxdps": 2464, + "baoshangpro": 35.6 + } + }, + "88": { + "colour": 3, + "lv": 88, + "need": [ + { + "a": "item", + "t": "28", + "n": 16228 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6491200 + } + ], + "buff": { + "atk": 1780, + "def": 3560, + "hp": 52800, + "mindps": 2314, + "maxdps": 2492, + "baoshangpro": 36 + } + }, + "89": { + "colour": 3, + "lv": 89, + "need": [ + { + "a": "item", + "t": "28", + "n": 16510 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6604000 + } + ], + "buff": { + "atk": 1800, + "def": 3600, + "hp": 53400, + "mindps": 2340, + "maxdps": 2520, + "baoshangpro": 36.4 + } + }, + "90": { + "colour": 3, + "lv": 90, + "need": [ + { + "a": "item", + "t": "28", + "n": 16792 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6716800 + } + ], + "buff": { + "atk": 1820, + "def": 3640, + "hp": 54000, + "mindps": 2366, + "maxdps": 2548, + "baoshangpro": 36.8 + } + }, + "91": { + "colour": 3, + "lv": 91, + "need": [ + { + "a": "item", + "t": "28", + "n": 17076 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6830400 + } + ], + "buff": { + "atk": 1840, + "def": 3680, + "hp": 54600, + "mindps": 2392, + "maxdps": 2576, + "baoshangpro": 37.2 + } + }, + "92": { + "colour": 3, + "lv": 92, + "need": [ + { + "a": "item", + "t": "28", + "n": 17360 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6944000 + } + ], + "buff": { + "atk": 1860, + "def": 3720, + "hp": 55200, + "mindps": 2418, + "maxdps": 2604, + "baoshangpro": 37.6 + } + }, + "93": { + "colour": 3, + "lv": 93, + "need": [ + { + "a": "item", + "t": "28", + "n": 17648 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7059200 + } + ], + "buff": { + "atk": 1880, + "def": 3760, + "hp": 55800, + "mindps": 2444, + "maxdps": 2632, + "baoshangpro": 38 + } + }, + "94": { + "colour": 3, + "lv": 94, + "need": [ + { + "a": "item", + "t": "28", + "n": 17936 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7174400 + } + ], + "buff": { + "atk": 1900, + "def": 3800, + "hp": 56400, + "mindps": 2470, + "maxdps": 2660, + "baoshangpro": 38.4 + } + }, + "95": { + "colour": 3, + "lv": 95, + "need": [ + { + "a": "item", + "t": "28", + "n": 18226 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7290400 + } + ], + "buff": { + "atk": 1920, + "def": 3840, + "hp": 57000, + "mindps": 2496, + "maxdps": 2688, + "baoshangpro": 38.8 + } + }, + "96": { + "colour": 3, + "lv": 96, + "need": [ + { + "a": "item", + "t": "28", + "n": 18518 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7407200 + } + ], + "buff": { + "atk": 1940, + "def": 3880, + "hp": 57600, + "mindps": 2522, + "maxdps": 2716, + "baoshangpro": 39.2 + } + }, + "97": { + "colour": 3, + "lv": 97, + "need": [ + { + "a": "item", + "t": "28", + "n": 18812 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7524800 + } + ], + "buff": { + "atk": 1960, + "def": 3920, + "hp": 58200, + "mindps": 2548, + "maxdps": 2744, + "baoshangpro": 39.6 + } + }, + "98": { + "colour": 3, + "lv": 98, + "need": [ + { + "a": "item", + "t": "28", + "n": 19106 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7642400 + } + ], + "buff": { + "atk": 1980, + "def": 3960, + "hp": 58800, + "mindps": 2574, + "maxdps": 2772, + "baoshangpro": 40 + } + }, + "99": { + "colour": 3, + "lv": 99, + "need": [ + { + "a": "item", + "t": "28", + "n": 19402 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7760800 + } + ], + "buff": { + "atk": 2000, + "def": 4000, + "hp": 59400, + "mindps": 2600, + "maxdps": 2800, + "baoshangpro": 40.4 + } + }, + "100": { + "colour": 3, + "lv": 100, + "need": [ + { + "a": "item", + "t": "28", + "n": 19700 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7880000 + } + ], + "buff": { + "atk": 2020, + "def": 4040, + "hp": 60000, + "mindps": 2626, + "maxdps": 2828, + "baoshangpro": 40.8 + } + } + }, + "4": { + "2": { + "colour": 4, + "lv": 2, + "need": [ + { + "a": "item", + "t": "28", + "n": 40 + }, + { + "a": "attr", + "t": "jinbi", + "n": 8000 + } + ], + "buff": { + "atk": 90, + "def": 180, + "hp": 1800, + "mindps": 117, + "maxdps": 126, + "baoshangpro": 2.4 + } + }, + "3": { + "colour": 4, + "lv": 3, + "need": [ + { + "a": "item", + "t": "28", + "n": 112 + }, + { + "a": "attr", + "t": "jinbi", + "n": 22400 + } + ], + "buff": { + "atk": 120, + "def": 240, + "hp": 2700, + "mindps": 156, + "maxdps": 168, + "baoshangpro": 3 + } + }, + "4": { + "colour": 4, + "lv": 4, + "need": [ + { + "a": "item", + "t": "28", + "n": 204 + }, + { + "a": "attr", + "t": "jinbi", + "n": 40800 + } + ], + "buff": { + "atk": 150, + "def": 300, + "hp": 3600, + "mindps": 195, + "maxdps": 210, + "baoshangpro": 3.6 + } + }, + "5": { + "colour": 4, + "lv": 5, + "need": [ + { + "a": "item", + "t": "28", + "n": 320 + }, + { + "a": "attr", + "t": "jinbi", + "n": 64000 + } + ], + "buff": { + "atk": 180, + "def": 360, + "hp": 4500, + "mindps": 234, + "maxdps": 252, + "baoshangpro": 4.2 + } + }, + "6": { + "colour": 4, + "lv": 6, + "need": [ + { + "a": "item", + "t": "28", + "n": 444 + }, + { + "a": "attr", + "t": "jinbi", + "n": 88800 + } + ], + "buff": { + "atk": 210, + "def": 420, + "hp": 5400, + "mindps": 273, + "maxdps": 294, + "baoshangpro": 4.8 + } + }, + "7": { + "colour": 4, + "lv": 7, + "need": [ + { + "a": "item", + "t": "28", + "n": 584 + }, + { + "a": "attr", + "t": "jinbi", + "n": 116800 + } + ], + "buff": { + "atk": 240, + "def": 480, + "hp": 6300, + "mindps": 312, + "maxdps": 336, + "baoshangpro": 5.4 + } + }, + "8": { + "colour": 4, + "lv": 8, + "need": [ + { + "a": "item", + "t": "28", + "n": 740 + }, + { + "a": "attr", + "t": "jinbi", + "n": 148000 + } + ], + "buff": { + "atk": 270, + "def": 540, + "hp": 7200, + "mindps": 351, + "maxdps": 378, + "baoshangpro": 6 + } + }, + "9": { + "colour": 4, + "lv": 9, + "need": [ + { + "a": "item", + "t": "28", + "n": 904 + }, + { + "a": "attr", + "t": "jinbi", + "n": 180800 + } + ], + "buff": { + "atk": 300, + "def": 600, + "hp": 8100, + "mindps": 390, + "maxdps": 420, + "baoshangpro": 6.6 + } + }, + "10": { + "colour": 4, + "lv": 10, + "need": [ + { + "a": "item", + "t": "28", + "n": 1080 + }, + { + "a": "attr", + "t": "jinbi", + "n": 216000 + } + ], + "buff": { + "atk": 330, + "def": 660, + "hp": 9000, + "mindps": 429, + "maxdps": 462, + "baoshangpro": 7.2 + } + }, + "11": { + "colour": 4, + "lv": 11, + "need": [ + { + "a": "item", + "t": "28", + "n": 1264 + }, + { + "a": "attr", + "t": "jinbi", + "n": 252800 + } + ], + "buff": { + "atk": 360, + "def": 720, + "hp": 9900, + "mindps": 468, + "maxdps": 504, + "baoshangpro": 7.8 + } + }, + "12": { + "colour": 4, + "lv": 12, + "need": [ + { + "a": "item", + "t": "28", + "n": 1456 + }, + { + "a": "attr", + "t": "jinbi", + "n": 291200 + } + ], + "buff": { + "atk": 390, + "def": 780, + "hp": 10800, + "mindps": 507, + "maxdps": 546, + "baoshangpro": 8.4 + } + }, + "13": { + "colour": 4, + "lv": 13, + "need": [ + { + "a": "item", + "t": "28", + "n": 1660 + }, + { + "a": "attr", + "t": "jinbi", + "n": 332000 + } + ], + "buff": { + "atk": 420, + "def": 840, + "hp": 11700, + "mindps": 546, + "maxdps": 588, + "baoshangpro": 9 + } + }, + "14": { + "colour": 4, + "lv": 14, + "need": [ + { + "a": "item", + "t": "28", + "n": 1872 + }, + { + "a": "attr", + "t": "jinbi", + "n": 374400 + } + ], + "buff": { + "atk": 450, + "def": 900, + "hp": 12600, + "mindps": 585, + "maxdps": 630, + "baoshangpro": 9.6 + } + }, + "15": { + "colour": 4, + "lv": 15, + "need": [ + { + "a": "item", + "t": "28", + "n": 2092 + }, + { + "a": "attr", + "t": "jinbi", + "n": 418400 + } + ], + "buff": { + "atk": 480, + "def": 960, + "hp": 13500, + "mindps": 624, + "maxdps": 672, + "baoshangpro": 10.2 + } + }, + "16": { + "colour": 4, + "lv": 16, + "need": [ + { + "a": "item", + "t": "28", + "n": 2320 + }, + { + "a": "attr", + "t": "jinbi", + "n": 464000 + } + ], + "buff": { + "atk": 510, + "def": 1020, + "hp": 14400, + "mindps": 663, + "maxdps": 714, + "baoshangpro": 10.8 + } + }, + "17": { + "colour": 4, + "lv": 17, + "need": [ + { + "a": "item", + "t": "28", + "n": 2560 + }, + { + "a": "attr", + "t": "jinbi", + "n": 512000 + } + ], + "buff": { + "atk": 540, + "def": 1080, + "hp": 15300, + "mindps": 702, + "maxdps": 756, + "baoshangpro": 11.4 + } + }, + "18": { + "colour": 4, + "lv": 18, + "need": [ + { + "a": "item", + "t": "28", + "n": 2800 + }, + { + "a": "attr", + "t": "jinbi", + "n": 560000 + } + ], + "buff": { + "atk": 570, + "def": 1140, + "hp": 16200, + "mindps": 741, + "maxdps": 798, + "baoshangpro": 12 + } + }, + "19": { + "colour": 4, + "lv": 19, + "need": [ + { + "a": "item", + "t": "28", + "n": 3052 + }, + { + "a": "attr", + "t": "jinbi", + "n": 610400 + } + ], + "buff": { + "atk": 600, + "def": 1200, + "hp": 17100, + "mindps": 780, + "maxdps": 840, + "baoshangpro": 12.6 + } + }, + "20": { + "colour": 4, + "lv": 20, + "need": [ + { + "a": "item", + "t": "28", + "n": 3312 + }, + { + "a": "attr", + "t": "jinbi", + "n": 662400 + } + ], + "buff": { + "atk": 630, + "def": 1260, + "hp": 18000, + "mindps": 819, + "maxdps": 882, + "baoshangpro": 13.2 + } + }, + "21": { + "colour": 4, + "lv": 21, + "need": [ + { + "a": "item", + "t": "28", + "n": 3576 + }, + { + "a": "attr", + "t": "jinbi", + "n": 715200 + } + ], + "buff": { + "atk": 660, + "def": 1320, + "hp": 18900, + "mindps": 858, + "maxdps": 924, + "baoshangpro": 13.8 + } + }, + "22": { + "colour": 4, + "lv": 22, + "need": [ + { + "a": "item", + "t": "28", + "n": 3848 + }, + { + "a": "attr", + "t": "jinbi", + "n": 769600 + } + ], + "buff": { + "atk": 690, + "def": 1380, + "hp": 19800, + "mindps": 897, + "maxdps": 966, + "baoshangpro": 14.4 + } + }, + "23": { + "colour": 4, + "lv": 23, + "need": [ + { + "a": "item", + "t": "28", + "n": 4124 + }, + { + "a": "attr", + "t": "jinbi", + "n": 824800 + } + ], + "buff": { + "atk": 720, + "def": 1440, + "hp": 20700, + "mindps": 936, + "maxdps": 1008, + "baoshangpro": 15 + } + }, + "24": { + "colour": 4, + "lv": 24, + "need": [ + { + "a": "item", + "t": "28", + "n": 4412 + }, + { + "a": "attr", + "t": "jinbi", + "n": 882400 + } + ], + "buff": { + "atk": 750, + "def": 1500, + "hp": 21600, + "mindps": 975, + "maxdps": 1050, + "baoshangpro": 15.6 + } + }, + "25": { + "colour": 4, + "lv": 25, + "need": [ + { + "a": "item", + "t": "28", + "n": 4700 + }, + { + "a": "attr", + "t": "jinbi", + "n": 940000 + } + ], + "buff": { + "atk": 780, + "def": 1560, + "hp": 22500, + "mindps": 1014, + "maxdps": 1092, + "baoshangpro": 16.2 + } + }, + "26": { + "colour": 4, + "lv": 26, + "need": [ + { + "a": "item", + "t": "28", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "buff": { + "atk": 810, + "def": 1620, + "hp": 23400, + "mindps": 1053, + "maxdps": 1134, + "baoshangpro": 16.8 + } + }, + "27": { + "colour": 4, + "lv": 27, + "need": [ + { + "a": "item", + "t": "28", + "n": 5300 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1060000 + } + ], + "buff": { + "atk": 840, + "def": 1680, + "hp": 24300, + "mindps": 1092, + "maxdps": 1176, + "baoshangpro": 17.4 + } + }, + "28": { + "colour": 4, + "lv": 28, + "need": [ + { + "a": "item", + "t": "28", + "n": 5608 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1121600 + } + ], + "buff": { + "atk": 870, + "def": 1740, + "hp": 25200, + "mindps": 1131, + "maxdps": 1218, + "baoshangpro": 18 + } + }, + "29": { + "colour": 4, + "lv": 29, + "need": [ + { + "a": "item", + "t": "28", + "n": 5924 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1184800 + } + ], + "buff": { + "atk": 900, + "def": 1800, + "hp": 26100, + "mindps": 1170, + "maxdps": 1260, + "baoshangpro": 18.6 + } + }, + "30": { + "colour": 4, + "lv": 30, + "need": [ + { + "a": "item", + "t": "28", + "n": 6244 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1248800 + } + ], + "buff": { + "atk": 930, + "def": 1860, + "hp": 27000, + "mindps": 1209, + "maxdps": 1302, + "baoshangpro": 19.2 + } + }, + "31": { + "colour": 4, + "lv": 31, + "need": [ + { + "a": "item", + "t": "28", + "n": 6572 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1314400 + } + ], + "buff": { + "atk": 960, + "def": 1920, + "hp": 27900, + "mindps": 1248, + "maxdps": 1344, + "baoshangpro": 19.8 + } + }, + "32": { + "colour": 4, + "lv": 32, + "need": [ + { + "a": "item", + "t": "28", + "n": 6904 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1380800 + } + ], + "buff": { + "atk": 990, + "def": 1980, + "hp": 28800, + "mindps": 1287, + "maxdps": 1386, + "baoshangpro": 20.4 + } + }, + "33": { + "colour": 4, + "lv": 33, + "need": [ + { + "a": "item", + "t": "28", + "n": 7240 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1448000 + } + ], + "buff": { + "atk": 1020, + "def": 2040, + "hp": 29700, + "mindps": 1326, + "maxdps": 1428, + "baoshangpro": 21 + } + }, + "34": { + "colour": 4, + "lv": 34, + "need": [ + { + "a": "item", + "t": "28", + "n": 7580 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1516000 + } + ], + "buff": { + "atk": 1050, + "def": 2100, + "hp": 30600, + "mindps": 1365, + "maxdps": 1470, + "baoshangpro": 21.6 + } + }, + "35": { + "colour": 4, + "lv": 35, + "need": [ + { + "a": "item", + "t": "28", + "n": 7928 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1585600 + } + ], + "buff": { + "atk": 1080, + "def": 2160, + "hp": 31500, + "mindps": 1404, + "maxdps": 1512, + "baoshangpro": 22.2 + } + }, + "36": { + "colour": 4, + "lv": 36, + "need": [ + { + "a": "item", + "t": "28", + "n": 8280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1656000 + } + ], + "buff": { + "atk": 1110, + "def": 2220, + "hp": 32400, + "mindps": 1443, + "maxdps": 1554, + "baoshangpro": 22.8 + } + }, + "37": { + "colour": 4, + "lv": 37, + "need": [ + { + "a": "item", + "t": "28", + "n": 8640 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1728000 + } + ], + "buff": { + "atk": 1140, + "def": 2280, + "hp": 33300, + "mindps": 1482, + "maxdps": 1596, + "baoshangpro": 23.4 + } + }, + "38": { + "colour": 4, + "lv": 38, + "need": [ + { + "a": "item", + "t": "28", + "n": 9000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1800000 + } + ], + "buff": { + "atk": 1170, + "def": 2340, + "hp": 34200, + "mindps": 1521, + "maxdps": 1638, + "baoshangpro": 24 + } + }, + "39": { + "colour": 4, + "lv": 39, + "need": [ + { + "a": "item", + "t": "28", + "n": 9368 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1873600 + } + ], + "buff": { + "atk": 1200, + "def": 2400, + "hp": 35100, + "mindps": 1560, + "maxdps": 1680, + "baoshangpro": 24.6 + } + }, + "40": { + "colour": 4, + "lv": 40, + "need": [ + { + "a": "item", + "t": "28", + "n": 9740 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1948000 + } + ], + "buff": { + "atk": 1230, + "def": 2460, + "hp": 36000, + "mindps": 1599, + "maxdps": 1722, + "baoshangpro": 25.2 + } + }, + "41": { + "colour": 4, + "lv": 41, + "need": [ + { + "a": "item", + "t": "28", + "n": 10116 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2023200 + } + ], + "buff": { + "atk": 1260, + "def": 2520, + "hp": 36900, + "mindps": 1638, + "maxdps": 1764, + "baoshangpro": 25.8 + } + }, + "42": { + "colour": 4, + "lv": 42, + "need": [ + { + "a": "item", + "t": "28", + "n": 10500 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2100000 + } + ], + "buff": { + "atk": 1290, + "def": 2580, + "hp": 37800, + "mindps": 1677, + "maxdps": 1806, + "baoshangpro": 26.4 + } + }, + "43": { + "colour": 4, + "lv": 43, + "need": [ + { + "a": "item", + "t": "28", + "n": 10884 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2176800 + } + ], + "buff": { + "atk": 1320, + "def": 2640, + "hp": 38700, + "mindps": 1716, + "maxdps": 1848, + "baoshangpro": 27 + } + }, + "44": { + "colour": 4, + "lv": 44, + "need": [ + { + "a": "item", + "t": "28", + "n": 11276 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2255200 + } + ], + "buff": { + "atk": 1350, + "def": 2700, + "hp": 39600, + "mindps": 1755, + "maxdps": 1890, + "baoshangpro": 27.6 + } + }, + "45": { + "colour": 4, + "lv": 45, + "need": [ + { + "a": "item", + "t": "28", + "n": 11672 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2334400 + } + ], + "buff": { + "atk": 1380, + "def": 2760, + "hp": 40500, + "mindps": 1794, + "maxdps": 1932, + "baoshangpro": 28.2 + } + }, + "46": { + "colour": 4, + "lv": 46, + "need": [ + { + "a": "item", + "t": "28", + "n": 12072 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2414400 + } + ], + "buff": { + "atk": 1410, + "def": 2820, + "hp": 41400, + "mindps": 1833, + "maxdps": 1974, + "baoshangpro": 28.8 + } + }, + "47": { + "colour": 4, + "lv": 47, + "need": [ + { + "a": "item", + "t": "28", + "n": 12476 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2495200 + } + ], + "buff": { + "atk": 1440, + "def": 2880, + "hp": 42300, + "mindps": 1872, + "maxdps": 2016, + "baoshangpro": 29.4 + } + }, + "48": { + "colour": 4, + "lv": 48, + "need": [ + { + "a": "item", + "t": "28", + "n": 12888 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2577600 + } + ], + "buff": { + "atk": 1470, + "def": 2940, + "hp": 43200, + "mindps": 1911, + "maxdps": 2058, + "baoshangpro": 30 + } + }, + "49": { + "colour": 4, + "lv": 49, + "need": [ + { + "a": "item", + "t": "28", + "n": 13300 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2660000 + } + ], + "buff": { + "atk": 1500, + "def": 3000, + "hp": 44100, + "mindps": 1950, + "maxdps": 2100, + "baoshangpro": 30.6 + } + }, + "50": { + "colour": 4, + "lv": 50, + "need": [ + { + "a": "item", + "t": "28", + "n": 13720 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2744000 + } + ], + "buff": { + "atk": 1530, + "def": 3060, + "hp": 45000, + "mindps": 1989, + "maxdps": 2142, + "baoshangpro": 31.2 + } + }, + "51": { + "colour": 4, + "lv": 51, + "need": [ + { + "a": "item", + "t": "28", + "n": 14140 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2828000 + } + ], + "buff": { + "atk": 1560, + "def": 3120, + "hp": 45900, + "mindps": 2028, + "maxdps": 2184, + "baoshangpro": 31.8 + } + }, + "52": { + "colour": 4, + "lv": 52, + "need": [ + { + "a": "item", + "t": "28", + "n": 14568 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2913600 + } + ], + "buff": { + "atk": 1590, + "def": 3180, + "hp": 46800, + "mindps": 2067, + "maxdps": 2226, + "baoshangpro": 32.4 + } + }, + "53": { + "colour": 4, + "lv": 53, + "need": [ + { + "a": "item", + "t": "28", + "n": 14996 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2999200 + } + ], + "buff": { + "atk": 1620, + "def": 3240, + "hp": 47700, + "mindps": 2106, + "maxdps": 2268, + "baoshangpro": 33 + } + }, + "54": { + "colour": 4, + "lv": 54, + "need": [ + { + "a": "item", + "t": "28", + "n": 15432 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3086400 + } + ], + "buff": { + "atk": 1650, + "def": 3300, + "hp": 48600, + "mindps": 2145, + "maxdps": 2310, + "baoshangpro": 33.6 + } + }, + "55": { + "colour": 4, + "lv": 55, + "need": [ + { + "a": "item", + "t": "28", + "n": 15872 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3174400 + } + ], + "buff": { + "atk": 1680, + "def": 3360, + "hp": 49500, + "mindps": 2184, + "maxdps": 2352, + "baoshangpro": 34.2 + } + }, + "56": { + "colour": 4, + "lv": 56, + "need": [ + { + "a": "item", + "t": "28", + "n": 16312 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3262400 + } + ], + "buff": { + "atk": 1710, + "def": 3420, + "hp": 50400, + "mindps": 2223, + "maxdps": 2394, + "baoshangpro": 34.8 + } + }, + "57": { + "colour": 4, + "lv": 57, + "need": [ + { + "a": "item", + "t": "28", + "n": 16760 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3352000 + } + ], + "buff": { + "atk": 1740, + "def": 3480, + "hp": 51300, + "mindps": 2262, + "maxdps": 2436, + "baoshangpro": 35.4 + } + }, + "58": { + "colour": 4, + "lv": 58, + "need": [ + { + "a": "item", + "t": "28", + "n": 17212 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3442400 + } + ], + "buff": { + "atk": 1770, + "def": 3540, + "hp": 52200, + "mindps": 2301, + "maxdps": 2478, + "baoshangpro": 36 + } + }, + "59": { + "colour": 4, + "lv": 59, + "need": [ + { + "a": "item", + "t": "28", + "n": 17668 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3533600 + } + ], + "buff": { + "atk": 1800, + "def": 3600, + "hp": 53100, + "mindps": 2340, + "maxdps": 2520, + "baoshangpro": 36.6 + } + }, + "60": { + "colour": 4, + "lv": 60, + "need": [ + { + "a": "item", + "t": "28", + "n": 18124 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3624800 + } + ], + "buff": { + "atk": 1830, + "def": 3660, + "hp": 54000, + "mindps": 2379, + "maxdps": 2562, + "baoshangpro": 37.2 + } + }, + "61": { + "colour": 4, + "lv": 61, + "need": [ + { + "a": "item", + "t": "28", + "n": 18588 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3717600 + } + ], + "buff": { + "atk": 1860, + "def": 3720, + "hp": 54900, + "mindps": 2418, + "maxdps": 2604, + "baoshangpro": 37.8 + } + }, + "62": { + "colour": 4, + "lv": 62, + "need": [ + { + "a": "item", + "t": "28", + "n": 19056 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3811200 + } + ], + "buff": { + "atk": 1890, + "def": 3780, + "hp": 55800, + "mindps": 2457, + "maxdps": 2646, + "baoshangpro": 38.4 + } + }, + "63": { + "colour": 4, + "lv": 63, + "need": [ + { + "a": "item", + "t": "28", + "n": 19524 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3904800 + } + ], + "buff": { + "atk": 1920, + "def": 3840, + "hp": 56700, + "mindps": 2496, + "maxdps": 2688, + "baoshangpro": 39 + } + }, + "64": { + "colour": 4, + "lv": 64, + "need": [ + { + "a": "item", + "t": "28", + "n": 20000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "buff": { + "atk": 1950, + "def": 3900, + "hp": 57600, + "mindps": 2535, + "maxdps": 2730, + "baoshangpro": 39.6 + } + }, + "65": { + "colour": 4, + "lv": 65, + "need": [ + { + "a": "item", + "t": "28", + "n": 20480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4096000 + } + ], + "buff": { + "atk": 1980, + "def": 3960, + "hp": 58500, + "mindps": 2574, + "maxdps": 2772, + "baoshangpro": 40.2 + } + }, + "66": { + "colour": 4, + "lv": 66, + "need": [ + { + "a": "item", + "t": "28", + "n": 20960 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4192000 + } + ], + "buff": { + "atk": 2010, + "def": 4020, + "hp": 59400, + "mindps": 2613, + "maxdps": 2814, + "baoshangpro": 40.8 + } + }, + "67": { + "colour": 4, + "lv": 67, + "need": [ + { + "a": "item", + "t": "28", + "n": 21444 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4288800 + } + ], + "buff": { + "atk": 2040, + "def": 4080, + "hp": 60300, + "mindps": 2652, + "maxdps": 2856, + "baoshangpro": 41.4 + } + }, + "68": { + "colour": 4, + "lv": 68, + "need": [ + { + "a": "item", + "t": "28", + "n": 21936 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4387200 + } + ], + "buff": { + "atk": 2070, + "def": 4140, + "hp": 61200, + "mindps": 2691, + "maxdps": 2898, + "baoshangpro": 42 + } + }, + "69": { + "colour": 4, + "lv": 69, + "need": [ + { + "a": "item", + "t": "28", + "n": 22428 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4485600 + } + ], + "buff": { + "atk": 2100, + "def": 4200, + "hp": 62100, + "mindps": 2730, + "maxdps": 2940, + "baoshangpro": 42.6 + } + }, + "70": { + "colour": 4, + "lv": 70, + "need": [ + { + "a": "item", + "t": "28", + "n": 22924 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4584800 + } + ], + "buff": { + "atk": 2130, + "def": 4260, + "hp": 63000, + "mindps": 2769, + "maxdps": 2982, + "baoshangpro": 43.2 + } + }, + "71": { + "colour": 4, + "lv": 71, + "need": [ + { + "a": "item", + "t": "28", + "n": 23424 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4684800 + } + ], + "buff": { + "atk": 2160, + "def": 4320, + "hp": 63900, + "mindps": 2808, + "maxdps": 3024, + "baoshangpro": 43.8 + } + }, + "72": { + "colour": 4, + "lv": 72, + "need": [ + { + "a": "item", + "t": "28", + "n": 23928 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4785600 + } + ], + "buff": { + "atk": 2190, + "def": 4380, + "hp": 64800, + "mindps": 2847, + "maxdps": 3066, + "baoshangpro": 44.4 + } + }, + "73": { + "colour": 4, + "lv": 73, + "need": [ + { + "a": "item", + "t": "28", + "n": 24436 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4887200 + } + ], + "buff": { + "atk": 2220, + "def": 4440, + "hp": 65700, + "mindps": 2886, + "maxdps": 3108, + "baoshangpro": 45 + } + }, + "74": { + "colour": 4, + "lv": 74, + "need": [ + { + "a": "item", + "t": "28", + "n": 24948 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4989600 + } + ], + "buff": { + "atk": 2250, + "def": 4500, + "hp": 66600, + "mindps": 2925, + "maxdps": 3150, + "baoshangpro": 45.6 + } + }, + "75": { + "colour": 4, + "lv": 75, + "need": [ + { + "a": "item", + "t": "28", + "n": 25460 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5092000 + } + ], + "buff": { + "atk": 2280, + "def": 4560, + "hp": 67500, + "mindps": 2964, + "maxdps": 3192, + "baoshangpro": 46.2 + } + }, + "76": { + "colour": 4, + "lv": 76, + "need": [ + { + "a": "item", + "t": "28", + "n": 25980 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5196000 + } + ], + "buff": { + "atk": 2310, + "def": 4620, + "hp": 68400, + "mindps": 3003, + "maxdps": 3234, + "baoshangpro": 46.8 + } + }, + "77": { + "colour": 4, + "lv": 77, + "need": [ + { + "a": "item", + "t": "28", + "n": 26500 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5300000 + } + ], + "buff": { + "atk": 2340, + "def": 4680, + "hp": 69300, + "mindps": 3042, + "maxdps": 3276, + "baoshangpro": 47.4 + } + }, + "78": { + "colour": 4, + "lv": 78, + "need": [ + { + "a": "item", + "t": "28", + "n": 27024 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5404800 + } + ], + "buff": { + "atk": 2370, + "def": 4740, + "hp": 70200, + "mindps": 3081, + "maxdps": 3318, + "baoshangpro": 48 + } + }, + "79": { + "colour": 4, + "lv": 79, + "need": [ + { + "a": "item", + "t": "28", + "n": 27552 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5510400 + } + ], + "buff": { + "atk": 2400, + "def": 4800, + "hp": 71100, + "mindps": 3120, + "maxdps": 3360, + "baoshangpro": 48.6 + } + }, + "80": { + "colour": 4, + "lv": 80, + "need": [ + { + "a": "item", + "t": "28", + "n": 28084 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5616800 + } + ], + "buff": { + "atk": 2430, + "def": 4860, + "hp": 72000, + "mindps": 3159, + "maxdps": 3402, + "baoshangpro": 49.2 + } + }, + "81": { + "colour": 4, + "lv": 81, + "need": [ + { + "a": "item", + "t": "28", + "n": 28620 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5724000 + } + ], + "buff": { + "atk": 2460, + "def": 4920, + "hp": 72900, + "mindps": 3198, + "maxdps": 3444, + "baoshangpro": 49.8 + } + }, + "82": { + "colour": 4, + "lv": 82, + "need": [ + { + "a": "item", + "t": "28", + "n": 29160 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5832000 + } + ], + "buff": { + "atk": 2490, + "def": 4980, + "hp": 73800, + "mindps": 3237, + "maxdps": 3486, + "baoshangpro": 50.4 + } + }, + "83": { + "colour": 4, + "lv": 83, + "need": [ + { + "a": "item", + "t": "28", + "n": 29700 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5940000 + } + ], + "buff": { + "atk": 2520, + "def": 5040, + "hp": 74700, + "mindps": 3276, + "maxdps": 3528, + "baoshangpro": 51 + } + }, + "84": { + "colour": 4, + "lv": 84, + "need": [ + { + "a": "item", + "t": "28", + "n": 30244 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6048800 + } + ], + "buff": { + "atk": 2550, + "def": 5100, + "hp": 75600, + "mindps": 3315, + "maxdps": 3570, + "baoshangpro": 51.6 + } + }, + "85": { + "colour": 4, + "lv": 85, + "need": [ + { + "a": "item", + "t": "28", + "n": 30792 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6158400 + } + ], + "buff": { + "atk": 2580, + "def": 5160, + "hp": 76500, + "mindps": 3354, + "maxdps": 3612, + "baoshangpro": 52.2 + } + }, + "86": { + "colour": 4, + "lv": 86, + "need": [ + { + "a": "item", + "t": "28", + "n": 31344 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6268800 + } + ], + "buff": { + "atk": 2610, + "def": 5220, + "hp": 77400, + "mindps": 3393, + "maxdps": 3654, + "baoshangpro": 52.8 + } + }, + "87": { + "colour": 4, + "lv": 87, + "need": [ + { + "a": "item", + "t": "28", + "n": 31900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6380000 + } + ], + "buff": { + "atk": 2640, + "def": 5280, + "hp": 78300, + "mindps": 3432, + "maxdps": 3696, + "baoshangpro": 53.4 + } + }, + "88": { + "colour": 4, + "lv": 88, + "need": [ + { + "a": "item", + "t": "28", + "n": 32456 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6491200 + } + ], + "buff": { + "atk": 2670, + "def": 5340, + "hp": 79200, + "mindps": 3471, + "maxdps": 3738, + "baoshangpro": 54 + } + }, + "89": { + "colour": 4, + "lv": 89, + "need": [ + { + "a": "item", + "t": "28", + "n": 33020 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6604000 + } + ], + "buff": { + "atk": 2700, + "def": 5400, + "hp": 80100, + "mindps": 3510, + "maxdps": 3780, + "baoshangpro": 54.6 + } + }, + "90": { + "colour": 4, + "lv": 90, + "need": [ + { + "a": "item", + "t": "28", + "n": 33584 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6716800 + } + ], + "buff": { + "atk": 2730, + "def": 5460, + "hp": 81000, + "mindps": 3549, + "maxdps": 3822, + "baoshangpro": 55.2 + } + }, + "91": { + "colour": 4, + "lv": 91, + "need": [ + { + "a": "item", + "t": "28", + "n": 34152 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6830400 + } + ], + "buff": { + "atk": 2760, + "def": 5520, + "hp": 81900, + "mindps": 3588, + "maxdps": 3864, + "baoshangpro": 55.8 + } + }, + "92": { + "colour": 4, + "lv": 92, + "need": [ + { + "a": "item", + "t": "28", + "n": 34720 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6944000 + } + ], + "buff": { + "atk": 2790, + "def": 5580, + "hp": 82800, + "mindps": 3627, + "maxdps": 3906, + "baoshangpro": 56.4 + } + }, + "93": { + "colour": 4, + "lv": 93, + "need": [ + { + "a": "item", + "t": "28", + "n": 35296 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7059200 + } + ], + "buff": { + "atk": 2820, + "def": 5640, + "hp": 83700, + "mindps": 3666, + "maxdps": 3948, + "baoshangpro": 57 + } + }, + "94": { + "colour": 4, + "lv": 94, + "need": [ + { + "a": "item", + "t": "28", + "n": 35872 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7174400 + } + ], + "buff": { + "atk": 2850, + "def": 5700, + "hp": 84600, + "mindps": 3705, + "maxdps": 3990, + "baoshangpro": 57.6 + } + }, + "95": { + "colour": 4, + "lv": 95, + "need": [ + { + "a": "item", + "t": "28", + "n": 36452 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7290400 + } + ], + "buff": { + "atk": 2880, + "def": 5760, + "hp": 85500, + "mindps": 3744, + "maxdps": 4032, + "baoshangpro": 58.2 + } + }, + "96": { + "colour": 4, + "lv": 96, + "need": [ + { + "a": "item", + "t": "28", + "n": 37036 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7407200 + } + ], + "buff": { + "atk": 2910, + "def": 5820, + "hp": 86400, + "mindps": 3783, + "maxdps": 4074, + "baoshangpro": 58.8 + } + }, + "97": { + "colour": 4, + "lv": 97, + "need": [ + { + "a": "item", + "t": "28", + "n": 37624 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7524800 + } + ], + "buff": { + "atk": 2940, + "def": 5880, + "hp": 87300, + "mindps": 3822, + "maxdps": 4116, + "baoshangpro": 59.4 + } + }, + "98": { + "colour": 4, + "lv": 98, + "need": [ + { + "a": "item", + "t": "28", + "n": 38212 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7642400 + } + ], + "buff": { + "atk": 2970, + "def": 5940, + "hp": 88200, + "mindps": 3861, + "maxdps": 4158, + "baoshangpro": 60 + } + }, + "99": { + "colour": 4, + "lv": 99, + "need": [ + { + "a": "item", + "t": "28", + "n": 38804 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7760800 + } + ], + "buff": { + "atk": 3000, + "def": 6000, + "hp": 89100, + "mindps": 3900, + "maxdps": 4200, + "baoshangpro": 60.6 + } + }, + "100": { + "colour": 4, + "lv": 100, + "need": [ + { + "a": "item", + "t": "28", + "n": 39400 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7880000 + } + ], + "buff": { + "atk": 3030, + "def": 6060, + "hp": 90000, + "mindps": 3939, + "maxdps": 4242, + "baoshangpro": 61.2 + } + } + }, + "5": { + "2": { + "colour": 5, + "lv": 2, + "need": [ + { + "a": "item", + "t": "28", + "n": 80 + }, + { + "a": "attr", + "t": "jinbi", + "n": 8000 + } + ], + "buff": { + "atk": 150, + "def": 300, + "hp": 3000, + "mindps": 195, + "maxdps": 210, + "baoshangpro": 4 + } + }, + "3": { + "colour": 5, + "lv": 3, + "need": [ + { + "a": "item", + "t": "28", + "n": 224 + }, + { + "a": "attr", + "t": "jinbi", + "n": 22400 + } + ], + "buff": { + "atk": 200, + "def": 400, + "hp": 4500, + "mindps": 260, + "maxdps": 280, + "baoshangpro": 5 + } + }, + "4": { + "colour": 5, + "lv": 4, + "need": [ + { + "a": "item", + "t": "28", + "n": 408 + }, + { + "a": "attr", + "t": "jinbi", + "n": 40800 + } + ], + "buff": { + "atk": 250, + "def": 500, + "hp": 6000, + "mindps": 325, + "maxdps": 350, + "baoshangpro": 6 + } + }, + "5": { + "colour": 5, + "lv": 5, + "need": [ + { + "a": "item", + "t": "28", + "n": 640 + }, + { + "a": "attr", + "t": "jinbi", + "n": 64000 + } + ], + "buff": { + "atk": 300, + "def": 600, + "hp": 7500, + "mindps": 390, + "maxdps": 420, + "baoshangpro": 7 + } + }, + "6": { + "colour": 5, + "lv": 6, + "need": [ + { + "a": "item", + "t": "28", + "n": 888 + }, + { + "a": "attr", + "t": "jinbi", + "n": 88800 + } + ], + "buff": { + "atk": 350, + "def": 700, + "hp": 9000, + "mindps": 455, + "maxdps": 490, + "baoshangpro": 8 + } + }, + "7": { + "colour": 5, + "lv": 7, + "need": [ + { + "a": "item", + "t": "28", + "n": 1168 + }, + { + "a": "attr", + "t": "jinbi", + "n": 116800 + } + ], + "buff": { + "atk": 400, + "def": 800, + "hp": 10500, + "mindps": 520, + "maxdps": 560, + "baoshangpro": 9 + } + }, + "8": { + "colour": 5, + "lv": 8, + "need": [ + { + "a": "item", + "t": "28", + "n": 1480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 148000 + } + ], + "buff": { + "atk": 450, + "def": 900, + "hp": 12000, + "mindps": 585, + "maxdps": 630, + "baoshangpro": 10 + } + }, + "9": { + "colour": 5, + "lv": 9, + "need": [ + { + "a": "item", + "t": "28", + "n": 1808 + }, + { + "a": "attr", + "t": "jinbi", + "n": 180800 + } + ], + "buff": { + "atk": 500, + "def": 1000, + "hp": 13500, + "mindps": 650, + "maxdps": 700, + "baoshangpro": 11 + } + }, + "10": { + "colour": 5, + "lv": 10, + "need": [ + { + "a": "item", + "t": "28", + "n": 2160 + }, + { + "a": "attr", + "t": "jinbi", + "n": 216000 + } + ], + "buff": { + "atk": 550, + "def": 1100, + "hp": 15000, + "mindps": 715, + "maxdps": 770, + "baoshangpro": 12 + } + }, + "11": { + "colour": 5, + "lv": 11, + "need": [ + { + "a": "item", + "t": "28", + "n": 2528 + }, + { + "a": "attr", + "t": "jinbi", + "n": 252800 + } + ], + "buff": { + "atk": 600, + "def": 1200, + "hp": 16500, + "mindps": 780, + "maxdps": 840, + "baoshangpro": 13 + } + }, + "12": { + "colour": 5, + "lv": 12, + "need": [ + { + "a": "item", + "t": "28", + "n": 2912 + }, + { + "a": "attr", + "t": "jinbi", + "n": 291200 + } + ], + "buff": { + "atk": 650, + "def": 1300, + "hp": 18000, + "mindps": 845, + "maxdps": 910, + "baoshangpro": 14 + } + }, + "13": { + "colour": 5, + "lv": 13, + "need": [ + { + "a": "item", + "t": "28", + "n": 3320 + }, + { + "a": "attr", + "t": "jinbi", + "n": 332000 + } + ], + "buff": { + "atk": 700, + "def": 1400, + "hp": 19500, + "mindps": 910, + "maxdps": 980, + "baoshangpro": 15 + } + }, + "14": { + "colour": 5, + "lv": 14, + "need": [ + { + "a": "item", + "t": "28", + "n": 3744 + }, + { + "a": "attr", + "t": "jinbi", + "n": 374400 + } + ], + "buff": { + "atk": 750, + "def": 1500, + "hp": 21000, + "mindps": 975, + "maxdps": 1050, + "baoshangpro": 16 + } + }, + "15": { + "colour": 5, + "lv": 15, + "need": [ + { + "a": "item", + "t": "28", + "n": 4184 + }, + { + "a": "attr", + "t": "jinbi", + "n": 418400 + } + ], + "buff": { + "atk": 800, + "def": 1600, + "hp": 22500, + "mindps": 1040, + "maxdps": 1120, + "baoshangpro": 17 + } + }, + "16": { + "colour": 5, + "lv": 16, + "need": [ + { + "a": "item", + "t": "28", + "n": 4640 + }, + { + "a": "attr", + "t": "jinbi", + "n": 464000 + } + ], + "buff": { + "atk": 850, + "def": 1700, + "hp": 24000, + "mindps": 1105, + "maxdps": 1190, + "baoshangpro": 18 + } + }, + "17": { + "colour": 5, + "lv": 17, + "need": [ + { + "a": "item", + "t": "28", + "n": 5120 + }, + { + "a": "attr", + "t": "jinbi", + "n": 512000 + } + ], + "buff": { + "atk": 900, + "def": 1800, + "hp": 25500, + "mindps": 1170, + "maxdps": 1260, + "baoshangpro": 19 + } + }, + "18": { + "colour": 5, + "lv": 18, + "need": [ + { + "a": "item", + "t": "28", + "n": 5600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 560000 + } + ], + "buff": { + "atk": 950, + "def": 1900, + "hp": 27000, + "mindps": 1235, + "maxdps": 1330, + "baoshangpro": 20 + } + }, + "19": { + "colour": 5, + "lv": 19, + "need": [ + { + "a": "item", + "t": "28", + "n": 6104 + }, + { + "a": "attr", + "t": "jinbi", + "n": 610400 + } + ], + "buff": { + "atk": 1000, + "def": 2000, + "hp": 28500, + "mindps": 1300, + "maxdps": 1400, + "baoshangpro": 21 + } + }, + "20": { + "colour": 5, + "lv": 20, + "need": [ + { + "a": "item", + "t": "28", + "n": 6624 + }, + { + "a": "attr", + "t": "jinbi", + "n": 662400 + } + ], + "buff": { + "atk": 1050, + "def": 2100, + "hp": 30000, + "mindps": 1365, + "maxdps": 1470, + "baoshangpro": 22 + } + }, + "21": { + "colour": 5, + "lv": 21, + "need": [ + { + "a": "item", + "t": "28", + "n": 7152 + }, + { + "a": "attr", + "t": "jinbi", + "n": 715200 + } + ], + "buff": { + "atk": 1100, + "def": 2200, + "hp": 31500, + "mindps": 1430, + "maxdps": 1540, + "baoshangpro": 23 + } + }, + "22": { + "colour": 5, + "lv": 22, + "need": [ + { + "a": "item", + "t": "28", + "n": 7696 + }, + { + "a": "attr", + "t": "jinbi", + "n": 769600 + } + ], + "buff": { + "atk": 1150, + "def": 2300, + "hp": 33000, + "mindps": 1495, + "maxdps": 1610, + "baoshangpro": 24 + } + }, + "23": { + "colour": 5, + "lv": 23, + "need": [ + { + "a": "item", + "t": "28", + "n": 8248 + }, + { + "a": "attr", + "t": "jinbi", + "n": 824800 + } + ], + "buff": { + "atk": 1200, + "def": 2400, + "hp": 34500, + "mindps": 1560, + "maxdps": 1680, + "baoshangpro": 25 + } + }, + "24": { + "colour": 5, + "lv": 24, + "need": [ + { + "a": "item", + "t": "28", + "n": 8824 + }, + { + "a": "attr", + "t": "jinbi", + "n": 882400 + } + ], + "buff": { + "atk": 1250, + "def": 2500, + "hp": 36000, + "mindps": 1625, + "maxdps": 1750, + "baoshangpro": 26 + } + }, + "25": { + "colour": 5, + "lv": 25, + "need": [ + { + "a": "item", + "t": "28", + "n": 9400 + }, + { + "a": "attr", + "t": "jinbi", + "n": 940000 + } + ], + "buff": { + "atk": 1300, + "def": 2600, + "hp": 37500, + "mindps": 1690, + "maxdps": 1820, + "baoshangpro": 27 + } + }, + "26": { + "colour": 5, + "lv": 26, + "need": [ + { + "a": "item", + "t": "28", + "n": 10000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "buff": { + "atk": 1350, + "def": 2700, + "hp": 39000, + "mindps": 1755, + "maxdps": 1890, + "baoshangpro": 28 + } + }, + "27": { + "colour": 5, + "lv": 27, + "need": [ + { + "a": "item", + "t": "28", + "n": 10600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1060000 + } + ], + "buff": { + "atk": 1400, + "def": 2800, + "hp": 40500, + "mindps": 1820, + "maxdps": 1960, + "baoshangpro": 29 + } + }, + "28": { + "colour": 5, + "lv": 28, + "need": [ + { + "a": "item", + "t": "28", + "n": 11216 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1121600 + } + ], + "buff": { + "atk": 1450, + "def": 2900, + "hp": 42000, + "mindps": 1885, + "maxdps": 2030, + "baoshangpro": 30 + } + }, + "29": { + "colour": 5, + "lv": 29, + "need": [ + { + "a": "item", + "t": "28", + "n": 11848 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1184800 + } + ], + "buff": { + "atk": 1500, + "def": 3000, + "hp": 43500, + "mindps": 1950, + "maxdps": 2100, + "baoshangpro": 31 + } + }, + "30": { + "colour": 5, + "lv": 30, + "need": [ + { + "a": "item", + "t": "28", + "n": 12488 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1248800 + } + ], + "buff": { + "atk": 1550, + "def": 3100, + "hp": 45000, + "mindps": 2015, + "maxdps": 2170, + "baoshangpro": 32 + } + }, + "31": { + "colour": 5, + "lv": 31, + "need": [ + { + "a": "item", + "t": "28", + "n": 13144 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1314400 + } + ], + "buff": { + "atk": 1600, + "def": 3200, + "hp": 46500, + "mindps": 2080, + "maxdps": 2240, + "baoshangpro": 33 + } + }, + "32": { + "colour": 5, + "lv": 32, + "need": [ + { + "a": "item", + "t": "28", + "n": 13808 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1380800 + } + ], + "buff": { + "atk": 1650, + "def": 3300, + "hp": 48000, + "mindps": 2145, + "maxdps": 2310, + "baoshangpro": 34 + } + }, + "33": { + "colour": 5, + "lv": 33, + "need": [ + { + "a": "item", + "t": "28", + "n": 14480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1448000 + } + ], + "buff": { + "atk": 1700, + "def": 3400, + "hp": 49500, + "mindps": 2210, + "maxdps": 2380, + "baoshangpro": 35 + } + }, + "34": { + "colour": 5, + "lv": 34, + "need": [ + { + "a": "item", + "t": "28", + "n": 15160 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1516000 + } + ], + "buff": { + "atk": 1750, + "def": 3500, + "hp": 51000, + "mindps": 2275, + "maxdps": 2450, + "baoshangpro": 36 + } + }, + "35": { + "colour": 5, + "lv": 35, + "need": [ + { + "a": "item", + "t": "28", + "n": 15856 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1585600 + } + ], + "buff": { + "atk": 1800, + "def": 3600, + "hp": 52500, + "mindps": 2340, + "maxdps": 2520, + "baoshangpro": 37 + } + }, + "36": { + "colour": 5, + "lv": 36, + "need": [ + { + "a": "item", + "t": "28", + "n": 16560 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1656000 + } + ], + "buff": { + "atk": 1850, + "def": 3700, + "hp": 54000, + "mindps": 2405, + "maxdps": 2590, + "baoshangpro": 38 + } + }, + "37": { + "colour": 5, + "lv": 37, + "need": [ + { + "a": "item", + "t": "28", + "n": 17280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1728000 + } + ], + "buff": { + "atk": 1900, + "def": 3800, + "hp": 55500, + "mindps": 2470, + "maxdps": 2660, + "baoshangpro": 39 + } + }, + "38": { + "colour": 5, + "lv": 38, + "need": [ + { + "a": "item", + "t": "28", + "n": 18000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1800000 + } + ], + "buff": { + "atk": 1950, + "def": 3900, + "hp": 57000, + "mindps": 2535, + "maxdps": 2730, + "baoshangpro": 40 + } + }, + "39": { + "colour": 5, + "lv": 39, + "need": [ + { + "a": "item", + "t": "28", + "n": 18736 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1873600 + } + ], + "buff": { + "atk": 2000, + "def": 4000, + "hp": 58500, + "mindps": 2600, + "maxdps": 2800, + "baoshangpro": 41 + } + }, + "40": { + "colour": 5, + "lv": 40, + "need": [ + { + "a": "item", + "t": "28", + "n": 19480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1948000 + } + ], + "buff": { + "atk": 2050, + "def": 4100, + "hp": 60000, + "mindps": 2665, + "maxdps": 2870, + "baoshangpro": 42 + } + }, + "41": { + "colour": 5, + "lv": 41, + "need": [ + { + "a": "item", + "t": "28", + "n": 20232 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2023200 + } + ], + "buff": { + "atk": 2100, + "def": 4200, + "hp": 61500, + "mindps": 2730, + "maxdps": 2940, + "baoshangpro": 43 + } + }, + "42": { + "colour": 5, + "lv": 42, + "need": [ + { + "a": "item", + "t": "28", + "n": 21000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2100000 + } + ], + "buff": { + "atk": 2150, + "def": 4300, + "hp": 63000, + "mindps": 2795, + "maxdps": 3010, + "baoshangpro": 44 + } + }, + "43": { + "colour": 5, + "lv": 43, + "need": [ + { + "a": "item", + "t": "28", + "n": 21768 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2176800 + } + ], + "buff": { + "atk": 2200, + "def": 4400, + "hp": 64500, + "mindps": 2860, + "maxdps": 3080, + "baoshangpro": 45 + } + }, + "44": { + "colour": 5, + "lv": 44, + "need": [ + { + "a": "item", + "t": "28", + "n": 22552 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2255200 + } + ], + "buff": { + "atk": 2250, + "def": 4500, + "hp": 66000, + "mindps": 2925, + "maxdps": 3150, + "baoshangpro": 46 + } + }, + "45": { + "colour": 5, + "lv": 45, + "need": [ + { + "a": "item", + "t": "28", + "n": 23344 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2334400 + } + ], + "buff": { + "atk": 2300, + "def": 4600, + "hp": 67500, + "mindps": 2990, + "maxdps": 3220, + "baoshangpro": 47 + } + }, + "46": { + "colour": 5, + "lv": 46, + "need": [ + { + "a": "item", + "t": "28", + "n": 24144 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2414400 + } + ], + "buff": { + "atk": 2350, + "def": 4700, + "hp": 69000, + "mindps": 3055, + "maxdps": 3290, + "baoshangpro": 48 + } + }, + "47": { + "colour": 5, + "lv": 47, + "need": [ + { + "a": "item", + "t": "28", + "n": 24952 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2495200 + } + ], + "buff": { + "atk": 2400, + "def": 4800, + "hp": 70500, + "mindps": 3120, + "maxdps": 3360, + "baoshangpro": 49 + } + }, + "48": { + "colour": 5, + "lv": 48, + "need": [ + { + "a": "item", + "t": "28", + "n": 25776 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2577600 + } + ], + "buff": { + "atk": 2450, + "def": 4900, + "hp": 72000, + "mindps": 3185, + "maxdps": 3430, + "baoshangpro": 50 + } + }, + "49": { + "colour": 5, + "lv": 49, + "need": [ + { + "a": "item", + "t": "28", + "n": 26600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2660000 + } + ], + "buff": { + "atk": 2500, + "def": 5000, + "hp": 73500, + "mindps": 3250, + "maxdps": 3500, + "baoshangpro": 51 + } + }, + "50": { + "colour": 5, + "lv": 50, + "need": [ + { + "a": "item", + "t": "28", + "n": 27440 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2744000 + } + ], + "buff": { + "atk": 2550, + "def": 5100, + "hp": 75000, + "mindps": 3315, + "maxdps": 3570, + "baoshangpro": 52 + } + }, + "51": { + "colour": 5, + "lv": 51, + "need": [ + { + "a": "item", + "t": "28", + "n": 28280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2828000 + } + ], + "buff": { + "atk": 2600, + "def": 5200, + "hp": 76500, + "mindps": 3380, + "maxdps": 3640, + "baoshangpro": 53 + } + }, + "52": { + "colour": 5, + "lv": 52, + "need": [ + { + "a": "item", + "t": "28", + "n": 29136 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2913600 + } + ], + "buff": { + "atk": 2650, + "def": 5300, + "hp": 78000, + "mindps": 3445, + "maxdps": 3710, + "baoshangpro": 54 + } + }, + "53": { + "colour": 5, + "lv": 53, + "need": [ + { + "a": "item", + "t": "28", + "n": 29992 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2999200 + } + ], + "buff": { + "atk": 2700, + "def": 5400, + "hp": 79500, + "mindps": 3510, + "maxdps": 3780, + "baoshangpro": 55 + } + }, + "54": { + "colour": 5, + "lv": 54, + "need": [ + { + "a": "item", + "t": "28", + "n": 30864 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3086400 + } + ], + "buff": { + "atk": 2750, + "def": 5500, + "hp": 81000, + "mindps": 3575, + "maxdps": 3850, + "baoshangpro": 56 + } + }, + "55": { + "colour": 5, + "lv": 55, + "need": [ + { + "a": "item", + "t": "28", + "n": 31744 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3174400 + } + ], + "buff": { + "atk": 2800, + "def": 5600, + "hp": 82500, + "mindps": 3640, + "maxdps": 3920, + "baoshangpro": 57 + } + }, + "56": { + "colour": 5, + "lv": 56, + "need": [ + { + "a": "item", + "t": "28", + "n": 32624 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3262400 + } + ], + "buff": { + "atk": 2850, + "def": 5700, + "hp": 84000, + "mindps": 3705, + "maxdps": 3990, + "baoshangpro": 58 + } + }, + "57": { + "colour": 5, + "lv": 57, + "need": [ + { + "a": "item", + "t": "28", + "n": 33520 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3352000 + } + ], + "buff": { + "atk": 2900, + "def": 5800, + "hp": 85500, + "mindps": 3770, + "maxdps": 4060, + "baoshangpro": 59 + } + }, + "58": { + "colour": 5, + "lv": 58, + "need": [ + { + "a": "item", + "t": "28", + "n": 34424 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3442400 + } + ], + "buff": { + "atk": 2950, + "def": 5900, + "hp": 87000, + "mindps": 3835, + "maxdps": 4130, + "baoshangpro": 60 + } + }, + "59": { + "colour": 5, + "lv": 59, + "need": [ + { + "a": "item", + "t": "28", + "n": 35336 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3533600 + } + ], + "buff": { + "atk": 3000, + "def": 6000, + "hp": 88500, + "mindps": 3900, + "maxdps": 4200, + "baoshangpro": 61 + } + }, + "60": { + "colour": 5, + "lv": 60, + "need": [ + { + "a": "item", + "t": "28", + "n": 36248 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3624800 + } + ], + "buff": { + "atk": 3050, + "def": 6100, + "hp": 90000, + "mindps": 3965, + "maxdps": 4270, + "baoshangpro": 62 + } + }, + "61": { + "colour": 5, + "lv": 61, + "need": [ + { + "a": "item", + "t": "28", + "n": 37176 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3717600 + } + ], + "buff": { + "atk": 3100, + "def": 6200, + "hp": 91500, + "mindps": 4030, + "maxdps": 4340, + "baoshangpro": 63 + } + }, + "62": { + "colour": 5, + "lv": 62, + "need": [ + { + "a": "item", + "t": "28", + "n": 38112 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3811200 + } + ], + "buff": { + "atk": 3150, + "def": 6300, + "hp": 93000, + "mindps": 4095, + "maxdps": 4410, + "baoshangpro": 64 + } + }, + "63": { + "colour": 5, + "lv": 63, + "need": [ + { + "a": "item", + "t": "28", + "n": 39048 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3904800 + } + ], + "buff": { + "atk": 3200, + "def": 6400, + "hp": 94500, + "mindps": 4160, + "maxdps": 4480, + "baoshangpro": 65 + } + }, + "64": { + "colour": 5, + "lv": 64, + "need": [ + { + "a": "item", + "t": "28", + "n": 40000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4000000 + } + ], + "buff": { + "atk": 3250, + "def": 6500, + "hp": 96000, + "mindps": 4225, + "maxdps": 4550, + "baoshangpro": 66 + } + }, + "65": { + "colour": 5, + "lv": 65, + "need": [ + { + "a": "item", + "t": "28", + "n": 40960 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4096000 + } + ], + "buff": { + "atk": 3300, + "def": 6600, + "hp": 97500, + "mindps": 4290, + "maxdps": 4620, + "baoshangpro": 67 + } + }, + "66": { + "colour": 5, + "lv": 66, + "need": [ + { + "a": "item", + "t": "28", + "n": 41920 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4192000 + } + ], + "buff": { + "atk": 3350, + "def": 6700, + "hp": 99000, + "mindps": 4355, + "maxdps": 4690, + "baoshangpro": 68 + } + }, + "67": { + "colour": 5, + "lv": 67, + "need": [ + { + "a": "item", + "t": "28", + "n": 42888 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4288800 + } + ], + "buff": { + "atk": 3400, + "def": 6800, + "hp": 100500, + "mindps": 4420, + "maxdps": 4760, + "baoshangpro": 69 + } + }, + "68": { + "colour": 5, + "lv": 68, + "need": [ + { + "a": "item", + "t": "28", + "n": 43872 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4387200 + } + ], + "buff": { + "atk": 3450, + "def": 6900, + "hp": 102000, + "mindps": 4485, + "maxdps": 4830, + "baoshangpro": 70 + } + }, + "69": { + "colour": 5, + "lv": 69, + "need": [ + { + "a": "item", + "t": "28", + "n": 44856 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4485600 + } + ], + "buff": { + "atk": 3500, + "def": 7000, + "hp": 103500, + "mindps": 4550, + "maxdps": 4900, + "baoshangpro": 71 + } + }, + "70": { + "colour": 5, + "lv": 70, + "need": [ + { + "a": "item", + "t": "28", + "n": 45848 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4584800 + } + ], + "buff": { + "atk": 3550, + "def": 7100, + "hp": 105000, + "mindps": 4615, + "maxdps": 4970, + "baoshangpro": 72 + } + }, + "71": { + "colour": 5, + "lv": 71, + "need": [ + { + "a": "item", + "t": "28", + "n": 46848 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4684800 + } + ], + "buff": { + "atk": 3600, + "def": 7200, + "hp": 106500, + "mindps": 4680, + "maxdps": 5040, + "baoshangpro": 73 + } + }, + "72": { + "colour": 5, + "lv": 72, + "need": [ + { + "a": "item", + "t": "28", + "n": 47856 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4785600 + } + ], + "buff": { + "atk": 3650, + "def": 7300, + "hp": 108000, + "mindps": 4745, + "maxdps": 5110, + "baoshangpro": 74 + } + }, + "73": { + "colour": 5, + "lv": 73, + "need": [ + { + "a": "item", + "t": "28", + "n": 48872 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4887200 + } + ], + "buff": { + "atk": 3700, + "def": 7400, + "hp": 109500, + "mindps": 4810, + "maxdps": 5180, + "baoshangpro": 75 + } + }, + "74": { + "colour": 5, + "lv": 74, + "need": [ + { + "a": "item", + "t": "28", + "n": 49896 + }, + { + "a": "attr", + "t": "jinbi", + "n": 4989600 + } + ], + "buff": { + "atk": 3750, + "def": 7500, + "hp": 111000, + "mindps": 4875, + "maxdps": 5250, + "baoshangpro": 76 + } + }, + "75": { + "colour": 5, + "lv": 75, + "need": [ + { + "a": "item", + "t": "28", + "n": 50920 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5092000 + } + ], + "buff": { + "atk": 3800, + "def": 7600, + "hp": 112500, + "mindps": 4940, + "maxdps": 5320, + "baoshangpro": 77 + } + }, + "76": { + "colour": 5, + "lv": 76, + "need": [ + { + "a": "item", + "t": "28", + "n": 51960 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5196000 + } + ], + "buff": { + "atk": 3850, + "def": 7700, + "hp": 114000, + "mindps": 5005, + "maxdps": 5390, + "baoshangpro": 78 + } + }, + "77": { + "colour": 5, + "lv": 77, + "need": [ + { + "a": "item", + "t": "28", + "n": 53000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5300000 + } + ], + "buff": { + "atk": 3900, + "def": 7800, + "hp": 115500, + "mindps": 5070, + "maxdps": 5460, + "baoshangpro": 79 + } + }, + "78": { + "colour": 5, + "lv": 78, + "need": [ + { + "a": "item", + "t": "28", + "n": 54048 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5404800 + } + ], + "buff": { + "atk": 3950, + "def": 7900, + "hp": 117000, + "mindps": 5135, + "maxdps": 5530, + "baoshangpro": 80 + } + }, + "79": { + "colour": 5, + "lv": 79, + "need": [ + { + "a": "item", + "t": "28", + "n": 55104 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5510400 + } + ], + "buff": { + "atk": 4000, + "def": 8000, + "hp": 118500, + "mindps": 5200, + "maxdps": 5600, + "baoshangpro": 81 + } + }, + "80": { + "colour": 5, + "lv": 80, + "need": [ + { + "a": "item", + "t": "28", + "n": 56168 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5616800 + } + ], + "buff": { + "atk": 4050, + "def": 8100, + "hp": 120000, + "mindps": 5265, + "maxdps": 5670, + "baoshangpro": 82 + } + }, + "81": { + "colour": 5, + "lv": 81, + "need": [ + { + "a": "item", + "t": "28", + "n": 57240 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5724000 + } + ], + "buff": { + "atk": 4100, + "def": 8200, + "hp": 121500, + "mindps": 5330, + "maxdps": 5740, + "baoshangpro": 83 + } + }, + "82": { + "colour": 5, + "lv": 82, + "need": [ + { + "a": "item", + "t": "28", + "n": 58320 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5832000 + } + ], + "buff": { + "atk": 4150, + "def": 8300, + "hp": 123000, + "mindps": 5395, + "maxdps": 5810, + "baoshangpro": 84 + } + }, + "83": { + "colour": 5, + "lv": 83, + "need": [ + { + "a": "item", + "t": "28", + "n": 59400 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5940000 + } + ], + "buff": { + "atk": 4200, + "def": 8400, + "hp": 124500, + "mindps": 5460, + "maxdps": 5880, + "baoshangpro": 85 + } + }, + "84": { + "colour": 5, + "lv": 84, + "need": [ + { + "a": "item", + "t": "28", + "n": 60488 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6048800 + } + ], + "buff": { + "atk": 4250, + "def": 8500, + "hp": 126000, + "mindps": 5525, + "maxdps": 5950, + "baoshangpro": 86 + } + }, + "85": { + "colour": 5, + "lv": 85, + "need": [ + { + "a": "item", + "t": "28", + "n": 61584 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6158400 + } + ], + "buff": { + "atk": 4300, + "def": 8600, + "hp": 127500, + "mindps": 5590, + "maxdps": 6020, + "baoshangpro": 87 + } + }, + "86": { + "colour": 5, + "lv": 86, + "need": [ + { + "a": "item", + "t": "28", + "n": 62688 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6268800 + } + ], + "buff": { + "atk": 4350, + "def": 8700, + "hp": 129000, + "mindps": 5655, + "maxdps": 6090, + "baoshangpro": 88 + } + }, + "87": { + "colour": 5, + "lv": 87, + "need": [ + { + "a": "item", + "t": "28", + "n": 63800 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6380000 + } + ], + "buff": { + "atk": 4400, + "def": 8800, + "hp": 130500, + "mindps": 5720, + "maxdps": 6160, + "baoshangpro": 89 + } + }, + "88": { + "colour": 5, + "lv": 88, + "need": [ + { + "a": "item", + "t": "28", + "n": 64912 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6491200 + } + ], + "buff": { + "atk": 4450, + "def": 8900, + "hp": 132000, + "mindps": 5785, + "maxdps": 6230, + "baoshangpro": 90 + } + }, + "89": { + "colour": 5, + "lv": 89, + "need": [ + { + "a": "item", + "t": "28", + "n": 66040 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6604000 + } + ], + "buff": { + "atk": 4500, + "def": 9000, + "hp": 133500, + "mindps": 5850, + "maxdps": 6300, + "baoshangpro": 91 + } + }, + "90": { + "colour": 5, + "lv": 90, + "need": [ + { + "a": "item", + "t": "28", + "n": 67168 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6716800 + } + ], + "buff": { + "atk": 4550, + "def": 9100, + "hp": 135000, + "mindps": 5915, + "maxdps": 6370, + "baoshangpro": 92 + } + }, + "91": { + "colour": 5, + "lv": 91, + "need": [ + { + "a": "item", + "t": "28", + "n": 68304 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6830400 + } + ], + "buff": { + "atk": 4600, + "def": 9200, + "hp": 136500, + "mindps": 5980, + "maxdps": 6440, + "baoshangpro": 93 + } + }, + "92": { + "colour": 5, + "lv": 92, + "need": [ + { + "a": "item", + "t": "28", + "n": 69440 + }, + { + "a": "attr", + "t": "jinbi", + "n": 6944000 + } + ], + "buff": { + "atk": 4650, + "def": 9300, + "hp": 138000, + "mindps": 6045, + "maxdps": 6510, + "baoshangpro": 94 + } + }, + "93": { + "colour": 5, + "lv": 93, + "need": [ + { + "a": "item", + "t": "28", + "n": 70592 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7059200 + } + ], + "buff": { + "atk": 4700, + "def": 9400, + "hp": 139500, + "mindps": 6110, + "maxdps": 6580, + "baoshangpro": 95 + } + }, + "94": { + "colour": 5, + "lv": 94, + "need": [ + { + "a": "item", + "t": "28", + "n": 71744 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7174400 + } + ], + "buff": { + "atk": 4750, + "def": 9500, + "hp": 141000, + "mindps": 6175, + "maxdps": 6650, + "baoshangpro": 96 + } + }, + "95": { + "colour": 5, + "lv": 95, + "need": [ + { + "a": "item", + "t": "28", + "n": 72904 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7290400 + } + ], + "buff": { + "atk": 4800, + "def": 9600, + "hp": 142500, + "mindps": 6240, + "maxdps": 6720, + "baoshangpro": 97 + } + }, + "96": { + "colour": 5, + "lv": 96, + "need": [ + { + "a": "item", + "t": "28", + "n": 74072 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7407200 + } + ], + "buff": { + "atk": 4850, + "def": 9700, + "hp": 144000, + "mindps": 6305, + "maxdps": 6790, + "baoshangpro": 98 + } + }, + "97": { + "colour": 5, + "lv": 97, + "need": [ + { + "a": "item", + "t": "28", + "n": 75248 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7524800 + } + ], + "buff": { + "atk": 4900, + "def": 9800, + "hp": 145500, + "mindps": 6370, + "maxdps": 6860, + "baoshangpro": 99 + } + }, + "98": { + "colour": 5, + "lv": 98, + "need": [ + { + "a": "item", + "t": "28", + "n": 76424 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7642400 + } + ], + "buff": { + "atk": 4950, + "def": 9900, + "hp": 147000, + "mindps": 6435, + "maxdps": 6930, + "baoshangpro": 100 + } + }, + "99": { + "colour": 5, + "lv": 99, + "need": [ + { + "a": "item", + "t": "28", + "n": 77608 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7760800 + } + ], + "buff": { + "atk": 5000, + "def": 10000, + "hp": 148500, + "mindps": 6500, + "maxdps": 7000, + "baoshangpro": 101 + } + }, + "100": { + "colour": 5, + "lv": 100, + "need": [ + { + "a": "item", + "t": "28", + "n": 78800 + }, + { + "a": "attr", + "t": "jinbi", + "n": 7880000 + } + ], + "buff": { + "atk": 5050, + "def": 10100, + "hp": 150000, + "mindps": 6565, + "maxdps": 7070, + "baoshangpro": 102 + } + } + } +} \ No newline at end of file diff --git a/src/json/peijian_master.json b/src/json/peijian_master.json new file mode 100644 index 0000000..6dc0ca9 --- /dev/null +++ b/src/json/peijian_master.json @@ -0,0 +1,2706 @@ +{ + "1": { + "1": { + "suitId": 1, + "lv": 1, + "needLv": 0, + "buff": { + "2": { + "atk": 100 + }, + "4": { + "def": 300 + }, + "6": { + "mingzhongpro": 0.05 + } + } + }, + "2": { + "suitId": 1, + "lv": 2, + "needLv": 30, + "buff": { + "2": { + "atk": 229 + }, + "4": { + "def": 689 + }, + "6": { + "mingzhongpro": 0.06 + } + } + }, + "3": { + "suitId": 1, + "lv": 3, + "needLv": 60, + "buff": { + "2": { + "atk": 373 + }, + "4": { + "def": 1121 + }, + "6": { + "mingzhongpro": 0.07 + } + } + }, + "4": { + "suitId": 1, + "lv": 4, + "needLv": 90, + "buff": { + "2": { + "atk": 527 + }, + "4": { + "def": 1583 + }, + "6": { + "mingzhongpro": 0.08 + } + } + }, + "5": { + "suitId": 1, + "lv": 5, + "needLv": 120, + "buff": { + "2": { + "atk": 689 + }, + "4": { + "def": 2069 + }, + "6": { + "mingzhongpro": 0.09 + } + } + }, + "6": { + "suitId": 1, + "lv": 6, + "needLv": 150, + "buff": { + "2": { + "atk": 858 + }, + "4": { + "def": 2575 + }, + "6": { + "mingzhongpro": 0.1 + } + } + }, + "7": { + "suitId": 1, + "lv": 7, + "needLv": 180, + "buff": { + "2": { + "atk": 1033 + }, + "4": { + "def": 3099 + }, + "6": { + "mingzhongpro": 0.11 + } + } + }, + "8": { + "suitId": 1, + "lv": 8, + "needLv": 210, + "buff": { + "2": { + "atk": 1212 + }, + "4": { + "def": 3637 + }, + "6": { + "mingzhongpro": 0.12 + } + } + }, + "9": { + "suitId": 1, + "lv": 9, + "needLv": 240, + "buff": { + "2": { + "atk": 1396 + }, + "4": { + "def": 4189 + }, + "6": { + "mingzhongpro": 0.13 + } + } + }, + "10": { + "suitId": 1, + "lv": 10, + "needLv": 270, + "buff": { + "2": { + "atk": 1584 + }, + "4": { + "def": 4754 + }, + "6": { + "mingzhongpro": 0.14 + } + } + }, + "11": { + "suitId": 1, + "lv": 11, + "needLv": 300, + "buff": { + "2": { + "atk": 1776 + }, + "4": { + "def": 5330 + }, + "6": { + "mingzhongpro": 0.15 + } + } + }, + "12": { + "suitId": 1, + "lv": 12, + "needLv": 330, + "buff": { + "2": { + "atk": 1972 + }, + "4": { + "def": 5917 + }, + "6": { + "mingzhongpro": 0.16 + } + } + }, + "13": { + "suitId": 1, + "lv": 13, + "needLv": 360, + "buff": { + "2": { + "atk": 2171 + }, + "4": { + "def": 6514 + }, + "6": { + "mingzhongpro": 0.17 + } + } + }, + "14": { + "suitId": 1, + "lv": 14, + "needLv": 390, + "buff": { + "2": { + "atk": 2373 + }, + "4": { + "def": 7119 + }, + "6": { + "mingzhongpro": 0.18 + } + } + }, + "15": { + "suitId": 1, + "lv": 15, + "needLv": 420, + "buff": { + "2": { + "atk": 2578 + }, + "4": { + "def": 7734 + }, + "6": { + "mingzhongpro": 0.19 + } + } + }, + "16": { + "suitId": 1, + "lv": 16, + "needLv": 450, + "buff": { + "2": { + "atk": 2785 + }, + "4": { + "def": 8357 + }, + "6": { + "mingzhongpro": 0.2 + } + } + }, + "17": { + "suitId": 1, + "lv": 17, + "needLv": 480, + "buff": { + "2": { + "atk": 2995 + }, + "4": { + "def": 8987 + }, + "6": { + "mingzhongpro": 0.21 + } + } + }, + "18": { + "suitId": 1, + "lv": 18, + "needLv": 510, + "buff": { + "2": { + "atk": 3208 + }, + "4": { + "def": 9626 + }, + "6": { + "mingzhongpro": 0.22 + } + } + }, + "19": { + "suitId": 1, + "lv": 19, + "needLv": 540, + "buff": { + "2": { + "atk": 3423 + }, + "4": { + "def": 10271 + }, + "6": { + "mingzhongpro": 0.23 + } + } + }, + "20": { + "suitId": 1, + "lv": 20, + "needLv": 570, + "buff": { + "2": { + "atk": 3641 + }, + "4": { + "def": 10923 + }, + "6": { + "mingzhongpro": 0.24 + } + } + }, + "21": { + "suitId": 1, + "lv": 21, + "needLv": 600, + "buff": { + "2": { + "atk": 3860 + }, + "4": { + "def": 11582 + }, + "6": { + "mingzhongpro": 0.25 + } + } + } + }, + "2": { + "1": { + "suitId": 2, + "lv": 1, + "needLv": 0, + "buff": { + "2": { + "def": 300 + }, + "4": { + "hp": 3000 + }, + "6": { + "shanbipro": 0.05 + } + } + }, + "2": { + "suitId": 2, + "lv": 2, + "needLv": 30, + "buff": { + "2": { + "def": 689 + }, + "4": { + "hp": 6892 + }, + "6": { + "shanbipro": 0.06 + } + } + }, + "3": { + "suitId": 2, + "lv": 3, + "needLv": 60, + "buff": { + "2": { + "def": 1121 + }, + "4": { + "hp": 11211 + }, + "6": { + "shanbipro": 0.07 + } + } + }, + "4": { + "suitId": 2, + "lv": 4, + "needLv": 90, + "buff": { + "2": { + "def": 1583 + }, + "4": { + "hp": 15834 + }, + "6": { + "shanbipro": 0.08 + } + } + }, + "5": { + "suitId": 2, + "lv": 5, + "needLv": 120, + "buff": { + "2": { + "def": 2069 + }, + "4": { + "hp": 20695 + }, + "6": { + "shanbipro": 0.09 + } + } + }, + "6": { + "suitId": 2, + "lv": 6, + "needLv": 150, + "buff": { + "2": { + "def": 2575 + }, + "4": { + "hp": 25757 + }, + "6": { + "shanbipro": 0.1 + } + } + }, + "7": { + "suitId": 2, + "lv": 7, + "needLv": 180, + "buff": { + "2": { + "def": 3099 + }, + "4": { + "hp": 30991 + }, + "6": { + "shanbipro": 0.11 + } + } + }, + "8": { + "suitId": 2, + "lv": 8, + "needLv": 210, + "buff": { + "2": { + "def": 3637 + }, + "4": { + "hp": 36377 + }, + "6": { + "shanbipro": 0.12 + } + } + }, + "9": { + "suitId": 2, + "lv": 9, + "needLv": 240, + "buff": { + "2": { + "def": 4189 + }, + "4": { + "hp": 41899 + }, + "6": { + "shanbipro": 0.13 + } + } + }, + "10": { + "suitId": 2, + "lv": 10, + "needLv": 270, + "buff": { + "2": { + "def": 4754 + }, + "4": { + "hp": 47546 + }, + "6": { + "shanbipro": 0.14 + } + } + }, + "11": { + "suitId": 2, + "lv": 11, + "needLv": 300, + "buff": { + "2": { + "def": 5330 + }, + "4": { + "hp": 53308 + }, + "6": { + "shanbipro": 0.15 + } + } + }, + "12": { + "suitId": 2, + "lv": 12, + "needLv": 330, + "buff": { + "2": { + "def": 5917 + }, + "4": { + "hp": 59175 + }, + "6": { + "shanbipro": 0.16 + } + } + }, + "13": { + "suitId": 2, + "lv": 13, + "needLv": 360, + "buff": { + "2": { + "def": 6514 + }, + "4": { + "hp": 65140 + }, + "6": { + "shanbipro": 0.17 + } + } + }, + "14": { + "suitId": 2, + "lv": 14, + "needLv": 390, + "buff": { + "2": { + "def": 7119 + }, + "4": { + "hp": 71199 + }, + "6": { + "shanbipro": 0.18 + } + } + }, + "15": { + "suitId": 2, + "lv": 15, + "needLv": 420, + "buff": { + "2": { + "def": 7734 + }, + "4": { + "hp": 77344 + }, + "6": { + "shanbipro": 0.19 + } + } + }, + "16": { + "suitId": 2, + "lv": 16, + "needLv": 450, + "buff": { + "2": { + "def": 8357 + }, + "4": { + "hp": 83572 + }, + "6": { + "shanbipro": 0.2 + } + } + }, + "17": { + "suitId": 2, + "lv": 17, + "needLv": 480, + "buff": { + "2": { + "def": 8987 + }, + "4": { + "hp": 89879 + }, + "6": { + "shanbipro": 0.21 + } + } + }, + "18": { + "suitId": 2, + "lv": 18, + "needLv": 510, + "buff": { + "2": { + "def": 9626 + }, + "4": { + "hp": 96260 + }, + "6": { + "shanbipro": 0.22 + } + } + }, + "19": { + "suitId": 2, + "lv": 19, + "needLv": 540, + "buff": { + "2": { + "def": 10271 + }, + "4": { + "hp": 102713 + }, + "6": { + "shanbipro": 0.23 + } + } + }, + "20": { + "suitId": 2, + "lv": 20, + "needLv": 570, + "buff": { + "2": { + "def": 10923 + }, + "4": { + "hp": 109233 + }, + "6": { + "shanbipro": 0.24 + } + } + }, + "21": { + "suitId": 2, + "lv": 21, + "needLv": 600, + "buff": { + "2": { + "def": 11582 + }, + "4": { + "hp": 115820 + }, + "6": { + "shanbipro": 0.25 + } + } + } + }, + "3": { + "1": { + "suitId": 3, + "lv": 1, + "needLv": 0, + "buff": { + "2": { + "hp": 3000 + }, + "4": { + "atk": 100 + }, + "6": { + "xixuepro": 0.05 + } + } + }, + "2": { + "suitId": 3, + "lv": 2, + "needLv": 30, + "buff": { + "2": { + "hp": 6892 + }, + "4": { + "atk": 229 + }, + "6": { + "xixuepro": 0.06 + } + } + }, + "3": { + "suitId": 3, + "lv": 3, + "needLv": 60, + "buff": { + "2": { + "hp": 11211 + }, + "4": { + "atk": 373 + }, + "6": { + "xixuepro": 0.07 + } + } + }, + "4": { + "suitId": 3, + "lv": 4, + "needLv": 90, + "buff": { + "2": { + "hp": 15834 + }, + "4": { + "atk": 527 + }, + "6": { + "xixuepro": 0.08 + } + } + }, + "5": { + "suitId": 3, + "lv": 5, + "needLv": 120, + "buff": { + "2": { + "hp": 20695 + }, + "4": { + "atk": 689 + }, + "6": { + "xixuepro": 0.09 + } + } + }, + "6": { + "suitId": 3, + "lv": 6, + "needLv": 150, + "buff": { + "2": { + "hp": 25757 + }, + "4": { + "atk": 858 + }, + "6": { + "xixuepro": 0.1 + } + } + }, + "7": { + "suitId": 3, + "lv": 7, + "needLv": 180, + "buff": { + "2": { + "hp": 30991 + }, + "4": { + "atk": 1033 + }, + "6": { + "xixuepro": 0.11 + } + } + }, + "8": { + "suitId": 3, + "lv": 8, + "needLv": 210, + "buff": { + "2": { + "hp": 36377 + }, + "4": { + "atk": 1212 + }, + "6": { + "xixuepro": 0.12 + } + } + }, + "9": { + "suitId": 3, + "lv": 9, + "needLv": 240, + "buff": { + "2": { + "hp": 41899 + }, + "4": { + "atk": 1396 + }, + "6": { + "xixuepro": 0.13 + } + } + }, + "10": { + "suitId": 3, + "lv": 10, + "needLv": 270, + "buff": { + "2": { + "hp": 47546 + }, + "4": { + "atk": 1584 + }, + "6": { + "xixuepro": 0.14 + } + } + }, + "11": { + "suitId": 3, + "lv": 11, + "needLv": 300, + "buff": { + "2": { + "hp": 53308 + }, + "4": { + "atk": 1776 + }, + "6": { + "xixuepro": 0.15 + } + } + }, + "12": { + "suitId": 3, + "lv": 12, + "needLv": 330, + "buff": { + "2": { + "hp": 59175 + }, + "4": { + "atk": 1972 + }, + "6": { + "xixuepro": 0.16 + } + } + }, + "13": { + "suitId": 3, + "lv": 13, + "needLv": 360, + "buff": { + "2": { + "hp": 65140 + }, + "4": { + "atk": 2171 + }, + "6": { + "xixuepro": 0.17 + } + } + }, + "14": { + "suitId": 3, + "lv": 14, + "needLv": 390, + "buff": { + "2": { + "hp": 71199 + }, + "4": { + "atk": 2373 + }, + "6": { + "xixuepro": 0.18 + } + } + }, + "15": { + "suitId": 3, + "lv": 15, + "needLv": 420, + "buff": { + "2": { + "hp": 77344 + }, + "4": { + "atk": 2578 + }, + "6": { + "xixuepro": 0.19 + } + } + }, + "16": { + "suitId": 3, + "lv": 16, + "needLv": 450, + "buff": { + "2": { + "hp": 83572 + }, + "4": { + "atk": 2785 + }, + "6": { + "xixuepro": 0.2 + } + } + }, + "17": { + "suitId": 3, + "lv": 17, + "needLv": 480, + "buff": { + "2": { + "hp": 89879 + }, + "4": { + "atk": 2995 + }, + "6": { + "xixuepro": 0.21 + } + } + }, + "18": { + "suitId": 3, + "lv": 18, + "needLv": 510, + "buff": { + "2": { + "hp": 96260 + }, + "4": { + "atk": 3208 + }, + "6": { + "xixuepro": 0.22 + } + } + }, + "19": { + "suitId": 3, + "lv": 19, + "needLv": 540, + "buff": { + "2": { + "hp": 102713 + }, + "4": { + "atk": 3423 + }, + "6": { + "xixuepro": 0.23 + } + } + }, + "20": { + "suitId": 3, + "lv": 20, + "needLv": 570, + "buff": { + "2": { + "hp": 109233 + }, + "4": { + "atk": 3641 + }, + "6": { + "xixuepro": 0.24 + } + } + }, + "21": { + "suitId": 3, + "lv": 21, + "needLv": 600, + "buff": { + "2": { + "hp": 115820 + }, + "4": { + "atk": 3860 + }, + "6": { + "xixuepro": 0.25 + } + } + } + }, + "4": { + "1": { + "suitId": 4, + "lv": 1, + "needLv": 0, + "buff": { + "2": { + "atk": 100 + }, + "4": { + "hp": 3000 + }, + "6": { + "fanshangpro": 0.05 + } + } + }, + "2": { + "suitId": 4, + "lv": 2, + "needLv": 30, + "buff": { + "2": { + "atk": 229 + }, + "4": { + "hp": 6892 + }, + "6": { + "fanshangpro": 0.06 + } + } + }, + "3": { + "suitId": 4, + "lv": 3, + "needLv": 60, + "buff": { + "2": { + "atk": 373 + }, + "4": { + "hp": 11211 + }, + "6": { + "fanshangpro": 0.07 + } + } + }, + "4": { + "suitId": 4, + "lv": 4, + "needLv": 90, + "buff": { + "2": { + "atk": 527 + }, + "4": { + "hp": 15834 + }, + "6": { + "fanshangpro": 0.08 + } + } + }, + "5": { + "suitId": 4, + "lv": 5, + "needLv": 120, + "buff": { + "2": { + "atk": 689 + }, + "4": { + "hp": 20695 + }, + "6": { + "fanshangpro": 0.09 + } + } + }, + "6": { + "suitId": 4, + "lv": 6, + "needLv": 150, + "buff": { + "2": { + "atk": 858 + }, + "4": { + "hp": 25757 + }, + "6": { + "fanshangpro": 0.1 + } + } + }, + "7": { + "suitId": 4, + "lv": 7, + "needLv": 180, + "buff": { + "2": { + "atk": 1033 + }, + "4": { + "hp": 30991 + }, + "6": { + "fanshangpro": 0.11 + } + } + }, + "8": { + "suitId": 4, + "lv": 8, + "needLv": 210, + "buff": { + "2": { + "atk": 1212 + }, + "4": { + "hp": 36377 + }, + "6": { + "fanshangpro": 0.12 + } + } + }, + "9": { + "suitId": 4, + "lv": 9, + "needLv": 240, + "buff": { + "2": { + "atk": 1396 + }, + "4": { + "hp": 41899 + }, + "6": { + "fanshangpro": 0.13 + } + } + }, + "10": { + "suitId": 4, + "lv": 10, + "needLv": 270, + "buff": { + "2": { + "atk": 1584 + }, + "4": { + "hp": 47546 + }, + "6": { + "fanshangpro": 0.14 + } + } + }, + "11": { + "suitId": 4, + "lv": 11, + "needLv": 300, + "buff": { + "2": { + "atk": 1776 + }, + "4": { + "hp": 53308 + }, + "6": { + "fanshangpro": 0.15 + } + } + }, + "12": { + "suitId": 4, + "lv": 12, + "needLv": 330, + "buff": { + "2": { + "atk": 1972 + }, + "4": { + "hp": 59175 + }, + "6": { + "fanshangpro": 0.16 + } + } + }, + "13": { + "suitId": 4, + "lv": 13, + "needLv": 360, + "buff": { + "2": { + "atk": 2171 + }, + "4": { + "hp": 65140 + }, + "6": { + "fanshangpro": 0.17 + } + } + }, + "14": { + "suitId": 4, + "lv": 14, + "needLv": 390, + "buff": { + "2": { + "atk": 2373 + }, + "4": { + "hp": 71199 + }, + "6": { + "fanshangpro": 0.18 + } + } + }, + "15": { + "suitId": 4, + "lv": 15, + "needLv": 420, + "buff": { + "2": { + "atk": 2578 + }, + "4": { + "hp": 77344 + }, + "6": { + "fanshangpro": 0.19 + } + } + }, + "16": { + "suitId": 4, + "lv": 16, + "needLv": 450, + "buff": { + "2": { + "atk": 2785 + }, + "4": { + "hp": 83572 + }, + "6": { + "fanshangpro": 0.2 + } + } + }, + "17": { + "suitId": 4, + "lv": 17, + "needLv": 480, + "buff": { + "2": { + "atk": 2995 + }, + "4": { + "hp": 89879 + }, + "6": { + "fanshangpro": 0.21 + } + } + }, + "18": { + "suitId": 4, + "lv": 18, + "needLv": 510, + "buff": { + "2": { + "atk": 3208 + }, + "4": { + "hp": 96260 + }, + "6": { + "fanshangpro": 0.22 + } + } + }, + "19": { + "suitId": 4, + "lv": 19, + "needLv": 540, + "buff": { + "2": { + "atk": 3423 + }, + "4": { + "hp": 102713 + }, + "6": { + "fanshangpro": 0.23 + } + } + }, + "20": { + "suitId": 4, + "lv": 20, + "needLv": 570, + "buff": { + "2": { + "atk": 3641 + }, + "4": { + "hp": 109233 + }, + "6": { + "fanshangpro": 0.24 + } + } + }, + "21": { + "suitId": 4, + "lv": 21, + "needLv": 600, + "buff": { + "2": { + "atk": 3860 + }, + "4": { + "hp": 115820 + }, + "6": { + "fanshangpro": 0.25 + } + } + } + }, + "5": { + "1": { + "suitId": 5, + "lv": 1, + "needLv": 0, + "buff": { + "2": { + "def": 300 + }, + "4": { + "atk": 100 + }, + "6": { + "baoji": 100 + } + } + }, + "2": { + "suitId": 5, + "lv": 2, + "needLv": 30, + "buff": { + "2": { + "def": 689 + }, + "4": { + "atk": 229 + }, + "6": { + "baoji": 200 + } + } + }, + "3": { + "suitId": 5, + "lv": 3, + "needLv": 60, + "buff": { + "2": { + "def": 1121 + }, + "4": { + "atk": 373 + }, + "6": { + "baoji": 300 + } + } + }, + "4": { + "suitId": 5, + "lv": 4, + "needLv": 90, + "buff": { + "2": { + "def": 1583 + }, + "4": { + "atk": 527 + }, + "6": { + "baoji": 400 + } + } + }, + "5": { + "suitId": 5, + "lv": 5, + "needLv": 120, + "buff": { + "2": { + "def": 2069 + }, + "4": { + "atk": 689 + }, + "6": { + "baoji": 500 + } + } + }, + "6": { + "suitId": 5, + "lv": 6, + "needLv": 150, + "buff": { + "2": { + "def": 2575 + }, + "4": { + "atk": 858 + }, + "6": { + "baoji": 600 + } + } + }, + "7": { + "suitId": 5, + "lv": 7, + "needLv": 180, + "buff": { + "2": { + "def": 3099 + }, + "4": { + "atk": 1033 + }, + "6": { + "baoji": 700 + } + } + }, + "8": { + "suitId": 5, + "lv": 8, + "needLv": 210, + "buff": { + "2": { + "def": 3637 + }, + "4": { + "atk": 1212 + }, + "6": { + "baoji": 800 + } + } + }, + "9": { + "suitId": 5, + "lv": 9, + "needLv": 240, + "buff": { + "2": { + "def": 4189 + }, + "4": { + "atk": 1396 + }, + "6": { + "baoji": 900 + } + } + }, + "10": { + "suitId": 5, + "lv": 10, + "needLv": 270, + "buff": { + "2": { + "def": 4754 + }, + "4": { + "atk": 1584 + }, + "6": { + "baoji": 1000 + } + } + }, + "11": { + "suitId": 5, + "lv": 11, + "needLv": 300, + "buff": { + "2": { + "def": 5330 + }, + "4": { + "atk": 1776 + }, + "6": { + "baoji": 1100 + } + } + }, + "12": { + "suitId": 5, + "lv": 12, + "needLv": 330, + "buff": { + "2": { + "def": 5917 + }, + "4": { + "atk": 1972 + }, + "6": { + "baoji": 1200 + } + } + }, + "13": { + "suitId": 5, + "lv": 13, + "needLv": 360, + "buff": { + "2": { + "def": 6514 + }, + "4": { + "atk": 2171 + }, + "6": { + "baoji": 1300 + } + } + }, + "14": { + "suitId": 5, + "lv": 14, + "needLv": 390, + "buff": { + "2": { + "def": 7119 + }, + "4": { + "atk": 2373 + }, + "6": { + "baoji": 1400 + } + } + }, + "15": { + "suitId": 5, + "lv": 15, + "needLv": 420, + "buff": { + "2": { + "def": 7734 + }, + "4": { + "atk": 2578 + }, + "6": { + "baoji": 1500 + } + } + }, + "16": { + "suitId": 5, + "lv": 16, + "needLv": 450, + "buff": { + "2": { + "def": 8357 + }, + "4": { + "atk": 2785 + }, + "6": { + "baoji": 1600 + } + } + }, + "17": { + "suitId": 5, + "lv": 17, + "needLv": 480, + "buff": { + "2": { + "def": 8987 + }, + "4": { + "atk": 2995 + }, + "6": { + "baoji": 1700 + } + } + }, + "18": { + "suitId": 5, + "lv": 18, + "needLv": 510, + "buff": { + "2": { + "def": 9626 + }, + "4": { + "atk": 3208 + }, + "6": { + "baoji": 1800 + } + } + }, + "19": { + "suitId": 5, + "lv": 19, + "needLv": 540, + "buff": { + "2": { + "def": 10271 + }, + "4": { + "atk": 3423 + }, + "6": { + "baoji": 1900 + } + } + }, + "20": { + "suitId": 5, + "lv": 20, + "needLv": 570, + "buff": { + "2": { + "def": 10923 + }, + "4": { + "atk": 3641 + }, + "6": { + "baoji": 2000 + } + } + }, + "21": { + "suitId": 5, + "lv": 21, + "needLv": 600, + "buff": { + "2": { + "def": 11582 + }, + "4": { + "atk": 3860 + }, + "6": { + "baoji": 2100 + } + } + } + }, + "6": { + "1": { + "suitId": 6, + "lv": 1, + "needLv": 0, + "buff": { + "2": { + "hp": 3000 + }, + "4": { + "def": 300 + }, + "6": { + "shiqi": 100 + } + } + }, + "2": { + "suitId": 6, + "lv": 2, + "needLv": 30, + "buff": { + "2": { + "hp": 6892 + }, + "4": { + "def": 689 + }, + "6": { + "shiqi": 200 + } + } + }, + "3": { + "suitId": 6, + "lv": 3, + "needLv": 60, + "buff": { + "2": { + "hp": 11211 + }, + "4": { + "def": 1121 + }, + "6": { + "shiqi": 300 + } + } + }, + "4": { + "suitId": 6, + "lv": 4, + "needLv": 90, + "buff": { + "2": { + "hp": 15834 + }, + "4": { + "def": 1583 + }, + "6": { + "shiqi": 400 + } + } + }, + "5": { + "suitId": 6, + "lv": 5, + "needLv": 120, + "buff": { + "2": { + "hp": 20695 + }, + "4": { + "def": 2069 + }, + "6": { + "shiqi": 500 + } + } + }, + "6": { + "suitId": 6, + "lv": 6, + "needLv": 150, + "buff": { + "2": { + "hp": 25757 + }, + "4": { + "def": 2575 + }, + "6": { + "shiqi": 600 + } + } + }, + "7": { + "suitId": 6, + "lv": 7, + "needLv": 180, + "buff": { + "2": { + "hp": 30991 + }, + "4": { + "def": 3099 + }, + "6": { + "shiqi": 700 + } + } + }, + "8": { + "suitId": 6, + "lv": 8, + "needLv": 210, + "buff": { + "2": { + "hp": 36377 + }, + "4": { + "def": 3637 + }, + "6": { + "shiqi": 800 + } + } + }, + "9": { + "suitId": 6, + "lv": 9, + "needLv": 240, + "buff": { + "2": { + "hp": 41899 + }, + "4": { + "def": 4189 + }, + "6": { + "shiqi": 900 + } + } + }, + "10": { + "suitId": 6, + "lv": 10, + "needLv": 270, + "buff": { + "2": { + "hp": 47546 + }, + "4": { + "def": 4754 + }, + "6": { + "shiqi": 1000 + } + } + }, + "11": { + "suitId": 6, + "lv": 11, + "needLv": 300, + "buff": { + "2": { + "hp": 53308 + }, + "4": { + "def": 5330 + }, + "6": { + "shiqi": 1100 + } + } + }, + "12": { + "suitId": 6, + "lv": 12, + "needLv": 330, + "buff": { + "2": { + "hp": 59175 + }, + "4": { + "def": 5917 + }, + "6": { + "shiqi": 1200 + } + } + }, + "13": { + "suitId": 6, + "lv": 13, + "needLv": 360, + "buff": { + "2": { + "hp": 65140 + }, + "4": { + "def": 6514 + }, + "6": { + "shiqi": 1300 + } + } + }, + "14": { + "suitId": 6, + "lv": 14, + "needLv": 390, + "buff": { + "2": { + "hp": 71199 + }, + "4": { + "def": 7119 + }, + "6": { + "shiqi": 1400 + } + } + }, + "15": { + "suitId": 6, + "lv": 15, + "needLv": 420, + "buff": { + "2": { + "hp": 77344 + }, + "4": { + "def": 7734 + }, + "6": { + "shiqi": 1500 + } + } + }, + "16": { + "suitId": 6, + "lv": 16, + "needLv": 450, + "buff": { + "2": { + "hp": 83572 + }, + "4": { + "def": 8357 + }, + "6": { + "shiqi": 1600 + } + } + }, + "17": { + "suitId": 6, + "lv": 17, + "needLv": 480, + "buff": { + "2": { + "hp": 89879 + }, + "4": { + "def": 8987 + }, + "6": { + "shiqi": 1700 + } + } + }, + "18": { + "suitId": 6, + "lv": 18, + "needLv": 510, + "buff": { + "2": { + "hp": 96260 + }, + "4": { + "def": 9626 + }, + "6": { + "shiqi": 1800 + } + } + }, + "19": { + "suitId": 6, + "lv": 19, + "needLv": 540, + "buff": { + "2": { + "hp": 102713 + }, + "4": { + "def": 10271 + }, + "6": { + "shiqi": 1900 + } + } + }, + "20": { + "suitId": 6, + "lv": 20, + "needLv": 570, + "buff": { + "2": { + "hp": 109233 + }, + "4": { + "def": 10923 + }, + "6": { + "shiqi": 2000 + } + } + }, + "21": { + "suitId": 6, + "lv": 21, + "needLv": 600, + "buff": { + "2": { + "hp": 115820 + }, + "4": { + "def": 11582 + }, + "6": { + "shiqi": 2100 + } + } + } + }, + "7": { + "1": { + "suitId": 7, + "lv": 1, + "needLv": 0, + "buff": { + "2": { + "atk": 100 + }, + "4": { + "hp": 3000 + }, + "6": { + "pvpdpspro": 0.05 + } + } + }, + "2": { + "suitId": 7, + "lv": 2, + "needLv": 30, + "buff": { + "2": { + "atk": 229 + }, + "4": { + "hp": 6892 + }, + "6": { + "pvpdpspro": 0.06 + } + } + }, + "3": { + "suitId": 7, + "lv": 3, + "needLv": 60, + "buff": { + "2": { + "atk": 373 + }, + "4": { + "hp": 11211 + }, + "6": { + "pvpdpspro": 0.07 + } + } + }, + "4": { + "suitId": 7, + "lv": 4, + "needLv": 90, + "buff": { + "2": { + "atk": 527 + }, + "4": { + "hp": 15834 + }, + "6": { + "pvpdpspro": 0.08 + } + } + }, + "5": { + "suitId": 7, + "lv": 5, + "needLv": 120, + "buff": { + "2": { + "atk": 689 + }, + "4": { + "hp": 20695 + }, + "6": { + "pvpdpspro": 0.09 + } + } + }, + "6": { + "suitId": 7, + "lv": 6, + "needLv": 150, + "buff": { + "2": { + "atk": 858 + }, + "4": { + "hp": 25757 + }, + "6": { + "pvpdpspro": 0.1 + } + } + }, + "7": { + "suitId": 7, + "lv": 7, + "needLv": 180, + "buff": { + "2": { + "atk": 1033 + }, + "4": { + "hp": 30991 + }, + "6": { + "pvpdpspro": 0.11 + } + } + }, + "8": { + "suitId": 7, + "lv": 8, + "needLv": 210, + "buff": { + "2": { + "atk": 1212 + }, + "4": { + "hp": 36377 + }, + "6": { + "pvpdpspro": 0.12 + } + } + }, + "9": { + "suitId": 7, + "lv": 9, + "needLv": 240, + "buff": { + "2": { + "atk": 1396 + }, + "4": { + "hp": 41899 + }, + "6": { + "pvpdpspro": 0.13 + } + } + }, + "10": { + "suitId": 7, + "lv": 10, + "needLv": 270, + "buff": { + "2": { + "atk": 1584 + }, + "4": { + "hp": 47546 + }, + "6": { + "pvpdpspro": 0.14 + } + } + }, + "11": { + "suitId": 7, + "lv": 11, + "needLv": 300, + "buff": { + "2": { + "atk": 1776 + }, + "4": { + "hp": 53308 + }, + "6": { + "pvpdpspro": 0.15 + } + } + }, + "12": { + "suitId": 7, + "lv": 12, + "needLv": 330, + "buff": { + "2": { + "atk": 1972 + }, + "4": { + "hp": 59175 + }, + "6": { + "pvpdpspro": 0.16 + } + } + }, + "13": { + "suitId": 7, + "lv": 13, + "needLv": 360, + "buff": { + "2": { + "atk": 2171 + }, + "4": { + "hp": 65140 + }, + "6": { + "pvpdpspro": 0.17 + } + } + }, + "14": { + "suitId": 7, + "lv": 14, + "needLv": 390, + "buff": { + "2": { + "atk": 2373 + }, + "4": { + "hp": 71199 + }, + "6": { + "pvpdpspro": 0.18 + } + } + }, + "15": { + "suitId": 7, + "lv": 15, + "needLv": 420, + "buff": { + "2": { + "atk": 2578 + }, + "4": { + "hp": 77344 + }, + "6": { + "pvpdpspro": 0.19 + } + } + }, + "16": { + "suitId": 7, + "lv": 16, + "needLv": 450, + "buff": { + "2": { + "atk": 2785 + }, + "4": { + "hp": 83572 + }, + "6": { + "pvpdpspro": 0.2 + } + } + }, + "17": { + "suitId": 7, + "lv": 17, + "needLv": 480, + "buff": { + "2": { + "atk": 2995 + }, + "4": { + "hp": 89879 + }, + "6": { + "pvpdpspro": 0.21 + } + } + }, + "18": { + "suitId": 7, + "lv": 18, + "needLv": 510, + "buff": { + "2": { + "atk": 3208 + }, + "4": { + "hp": 96260 + }, + "6": { + "pvpdpspro": 0.22 + } + } + }, + "19": { + "suitId": 7, + "lv": 19, + "needLv": 540, + "buff": { + "2": { + "atk": 3423 + }, + "4": { + "hp": 102713 + }, + "6": { + "pvpdpspro": 0.23 + } + } + }, + "20": { + "suitId": 7, + "lv": 20, + "needLv": 570, + "buff": { + "2": { + "atk": 3641 + }, + "4": { + "hp": 109233 + }, + "6": { + "pvpdpspro": 0.24 + } + } + }, + "21": { + "suitId": 7, + "lv": 21, + "needLv": 600, + "buff": { + "2": { + "atk": 3860 + }, + "4": { + "hp": 115820 + }, + "6": { + "pvpdpspro": 0.25 + } + } + } + }, + "8": { + "1": { + "suitId": 8, + "lv": 1, + "needLv": 0, + "buff": { + "2": { + "hp": 3000 + }, + "4": { + "def": 300 + }, + "6": { + "pvpdpsdrop": 0.05 + } + } + }, + "2": { + "suitId": 8, + "lv": 2, + "needLv": 30, + "buff": { + "2": { + "hp": 6892 + }, + "4": { + "def": 689 + }, + "6": { + "pvpdpsdrop": 0.06 + } + } + }, + "3": { + "suitId": 8, + "lv": 3, + "needLv": 60, + "buff": { + "2": { + "hp": 11211 + }, + "4": { + "def": 1121 + }, + "6": { + "pvpdpsdrop": 0.07 + } + } + }, + "4": { + "suitId": 8, + "lv": 4, + "needLv": 90, + "buff": { + "2": { + "hp": 15834 + }, + "4": { + "def": 1583 + }, + "6": { + "pvpdpsdrop": 0.08 + } + } + }, + "5": { + "suitId": 8, + "lv": 5, + "needLv": 120, + "buff": { + "2": { + "hp": 20695 + }, + "4": { + "def": 2069 + }, + "6": { + "pvpdpsdrop": 0.09 + } + } + }, + "6": { + "suitId": 8, + "lv": 6, + "needLv": 150, + "buff": { + "2": { + "hp": 25757 + }, + "4": { + "def": 2575 + }, + "6": { + "pvpdpsdrop": 0.1 + } + } + }, + "7": { + "suitId": 8, + "lv": 7, + "needLv": 180, + "buff": { + "2": { + "hp": 30991 + }, + "4": { + "def": 3099 + }, + "6": { + "pvpdpsdrop": 0.11 + } + } + }, + "8": { + "suitId": 8, + "lv": 8, + "needLv": 210, + "buff": { + "2": { + "hp": 36377 + }, + "4": { + "def": 3637 + }, + "6": { + "pvpdpsdrop": 0.12 + } + } + }, + "9": { + "suitId": 8, + "lv": 9, + "needLv": 240, + "buff": { + "2": { + "hp": 41899 + }, + "4": { + "def": 4189 + }, + "6": { + "pvpdpsdrop": 0.13 + } + } + }, + "10": { + "suitId": 8, + "lv": 10, + "needLv": 270, + "buff": { + "2": { + "hp": 47546 + }, + "4": { + "def": 4754 + }, + "6": { + "pvpdpsdrop": 0.14 + } + } + }, + "11": { + "suitId": 8, + "lv": 11, + "needLv": 300, + "buff": { + "2": { + "hp": 53308 + }, + "4": { + "def": 5330 + }, + "6": { + "pvpdpsdrop": 0.15 + } + } + }, + "12": { + "suitId": 8, + "lv": 12, + "needLv": 330, + "buff": { + "2": { + "hp": 59175 + }, + "4": { + "def": 5917 + }, + "6": { + "pvpdpsdrop": 0.16 + } + } + }, + "13": { + "suitId": 8, + "lv": 13, + "needLv": 360, + "buff": { + "2": { + "hp": 65140 + }, + "4": { + "def": 6514 + }, + "6": { + "pvpdpsdrop": 0.17 + } + } + }, + "14": { + "suitId": 8, + "lv": 14, + "needLv": 390, + "buff": { + "2": { + "hp": 71199 + }, + "4": { + "def": 7119 + }, + "6": { + "pvpdpsdrop": 0.18 + } + } + }, + "15": { + "suitId": 8, + "lv": 15, + "needLv": 420, + "buff": { + "2": { + "hp": 77344 + }, + "4": { + "def": 7734 + }, + "6": { + "pvpdpsdrop": 0.19 + } + } + }, + "16": { + "suitId": 8, + "lv": 16, + "needLv": 450, + "buff": { + "2": { + "hp": 83572 + }, + "4": { + "def": 8357 + }, + "6": { + "pvpdpsdrop": 0.2 + } + } + }, + "17": { + "suitId": 8, + "lv": 17, + "needLv": 480, + "buff": { + "2": { + "hp": 89879 + }, + "4": { + "def": 8987 + }, + "6": { + "pvpdpsdrop": 0.21 + } + } + }, + "18": { + "suitId": 8, + "lv": 18, + "needLv": 510, + "buff": { + "2": { + "hp": 96260 + }, + "4": { + "def": 9626 + }, + "6": { + "pvpdpsdrop": 0.22 + } + } + }, + "19": { + "suitId": 8, + "lv": 19, + "needLv": 540, + "buff": { + "2": { + "hp": 102713 + }, + "4": { + "def": 10271 + }, + "6": { + "pvpdpsdrop": 0.23 + } + } + }, + "20": { + "suitId": 8, + "lv": 20, + "needLv": 570, + "buff": { + "2": { + "hp": 109233 + }, + "4": { + "def": 10923 + }, + "6": { + "pvpdpsdrop": 0.24 + } + } + }, + "21": { + "suitId": 8, + "lv": 21, + "needLv": 600, + "buff": { + "2": { + "hp": 115820 + }, + "4": { + "def": 11582 + }, + "6": { + "pvpdpsdrop": 0.25 + } + } + } + } +} \ No newline at end of file diff --git a/src/json/peijiancangku.json5 b/src/json/peijiancangku.json5 new file mode 100644 index 0000000..53103fc --- /dev/null +++ b/src/json/peijiancangku.json5 @@ -0,0 +1,58 @@ +{ + //仓库 + warehouse: [ + { + p: 30, + index: 0, + name: '普通仓库', + need: [{a: 'attr', t: 'jinbi', n: 50000}], + drop: [ + {p: 10, dlz: ['4001']} + ] + }, + { + p: 30, + index: 1, + name: '低级仓库', + need: [{a: 'attr', t: 'jinbi', n: 60000}], + drop: [ + {p: 10, dlz: ['4002']} + ] + }, + { + p: 20, + index: 2, + name: '中级仓库', + need: [{a: 'attr', t: 'jinbi', n: 120000}], + drop: [ + {p: 10, dlz: ['4003']} + ] + }, + { + p: 14, + index: 3, + name: '高级仓库', + need: [{a: 'attr', t: 'jinbi', n: 240000}], + drop: [ + {p: 10, dlz: ['4004']} + ] + }, + { + p: 12, + index: 4, + name: '神秘仓库', + need: [{a: 'attr', t: 'jinbi', n: 480000}], + drop: [ + {p: 10, dlz: ['4005']} + ] + }, + ], + //指定高级仓库 + jumpWarehouse: { + index: 3, + need: [{a: 'attr', t: 'rmbmoney', n: 200}], + prize: [{a: 'peijian', t: '6001', n: 1}] + }, + //仓库显示道具 + showAtn:[{a: 'item', t: '28'},{a: 'item', t: '29'}] +} \ No newline at end of file diff --git a/src/json/peijiancom.json5 b/src/json/peijiancom.json5 new file mode 100644 index 0000000..605880d --- /dev/null +++ b/src/json/peijiancom.json5 @@ -0,0 +1,51 @@ +{ + //进阶解锁等级 + jinjieLv: 30, + //进阶消耗 + jinjieNeed: [{a: 'item', t: '20', n: 500}], + //精炼解锁品质 + jinglianColour: [5], + //背包数量 + backpackNum: 150, + //初始化消耗 + resetNeed: [{a: 'attr', t: 'rmbmoney', n: 50}], + //干部配件格式解锁条件 + gridCond: { + "1": { + lv: 50, + need: [] + }, + "2": { + lv: 50, + need: [] + }, + "3": { + lv: 55, + need: [{a: 'attr', t: 'rmbmoney', n: 1000}] + }, + "4": { + lv: 60, + need: [{a: 'attr', t: 'rmbmoney', n: 1500}] + }, + "5": { + lv: 65, + need: [{a: 'attr', t: 'rmbmoney', n: 2000}] + }, + "6": { + lv: 70, + need: [{a: 'attr', t: 'rmbmoney', n: 2500}] + } + }, + //配件类型名称 + suitName: { + "0": "pj_suit_name_00", + "1": "pj_suit_name_1", + "2": "pj_suit_name_2", + "4": "pj_suit_name_4", + "5": "pj_suit_name_5", + "3": "pj_suit_name_3", + "6": "pj_suit_name_6", + "7": "pj_suit_name_7", + "8": "pj_suit_name_8", + } +} \ No newline at end of file diff --git a/src/json/playerChatFrame.json b/src/json/playerChatFrame.json new file mode 100644 index 0000000..f9a8c1f --- /dev/null +++ b/src/json/playerChatFrame.json @@ -0,0 +1,122 @@ +{ + "1": { + "id": 1, + "name": "playerChatFrame_name_1", + "img": "lt_dhk1", + "cond": [ + "lv", + 1 + ], + "undefined": "进入游戏默认获得", + "intr": "playerChatFrame_des_1", + "sort": 1, + "buff": { + "defpro": 0.01 + }, + "colour": 1, + "ani": "" + }, + "2": { + "id": 2, + "name": "playerChatFrame_name_2", + "img": "lt_dhk3", + "cond": [ + "lv", + 30 + ], + "undefined": "角色等级达到30级获得", + "intr": "playerChatFrame_des_2", + "sort": 2, + "buff": { + "defpro": 0.01 + }, + "colour": 2, + "ani": "" + }, + "3": { + "id": 3, + "name": "playerChatFrame_name_3", + "img": "lt_dhk4", + "cond": [ + "lv", + 50 + ], + "undefined": "角色等级达到50级获得", + "intr": "playerChatFrame_des_3", + "sort": 3, + "buff": { + "defpro": 0.01 + }, + "colour": 2, + "ani": "" + }, + "4": { + "id": 4, + "name": "playerChatFrame_name_4", + "img": "lt_dhk5", + "cond": [ + "tujianLv", + 7 + ], + "undefined": "图鉴数量达到30个获得", + "intr": "playerChatFrame_des_4", + "sort": 5, + "buff": { + "defpro": 0.01 + }, + "colour": 3, + "ani": "" + }, + "5": { + "id": 5, + "name": "playerChatFrame_name_5", + "img": "lt_dhk7", + "cond": [ + "vip", + 5 + ], + "undefined": "VIP5获得", + "intr": "playerChatFrame_des_5", + "sort": 4, + "buff": { + "atkpro": 0.01 + }, + "colour": 3, + "ani": "" + }, + "6": { + "id": 6, + "name": "playerChatFrame_name_6", + "img": "lt_dhk11", + "cond": [ + "time", + 604800 + ], + "undefined": "跨服势力战最高品质据点第一势力成员", + "intr": "playerChatFrame_des_6", + "sort": 6, + "buff": { + "atkpro": 0.01, + "hppro": 0.01 + }, + "colour": 4, + "ani": "" + }, + "7": { + "id": 7, + "name": "playerChatFrame_name_7", + "img": "lt_dhk13", + "cond": [ + "renown", + 61 + ], + "undefined": "名望等级达到七阶获得", + "intr": "playerChatFrame_des_7", + "sort": 7, + "buff": { + "defpro": 0.01 + }, + "colour": 3, + "ani": "" + } +} \ No newline at end of file diff --git a/src/json/playerHead.json b/src/json/playerHead.json new file mode 100644 index 0000000..cd31c39 --- /dev/null +++ b/src/json/playerHead.json @@ -0,0 +1,617 @@ +{ + "1": { + "id": 1, + "name": "intr_playerinfo_name_1", + "undefined": "进入游戏默认获得", + "img": 10001, + "cond": [ + "lv", + 1 + ], + "intr": "intr_playerinfo_intr_1", + "sort": 1, + "buff": {}, + "colour": 1, + "ani": "" + }, + "2": { + "id": 2, + "name": "intr_playerinfo_name_2", + "undefined": "进入游戏默认获得", + "img": 10002, + "cond": [ + "lv", + 1 + ], + "intr": "intr_playerinfo_intr_2", + "sort": 2, + "buff": {}, + "colour": 2, + "ani": "" + }, + "1001": { + "id": 1001, + "name": "intr_playerinfo_name_1001", + "undefined": "获得干部保后解锁", + "img": 1001, + "cond": [ + "hero", + 1001 + ], + "intr": "intr_playerinfo_intr_1001", + "sort": 40, + "buff": {}, + "colour": 1, + "ani": "" + }, + "1002": { + "id": 1002, + "name": "intr_playerinfo_name_1002", + "undefined": "获得干部罗旺后解锁", + "img": 1002, + "cond": [ + "hero", + 1002 + ], + "intr": "intr_playerinfo_intr_1002", + "sort": 41, + "buff": {}, + "colour": 1, + "ani": "" + }, + "2001": { + "id": 2001, + "name": "intr_playerinfo_name_2001", + "undefined": "获得干部罗素后解锁", + "img": 2001, + "cond": [ + "hero", + 2001 + ], + "intr": "intr_playerinfo_intr_2001", + "sort": 38, + "buff": {}, + "colour": 1, + "ani": "" + }, + "2002": { + "id": 2002, + "name": "intr_playerinfo_name_2002", + "undefined": "获得干部瓦萨普后解锁", + "img": 2002, + "cond": [ + "hero", + 2002 + ], + "intr": "intr_playerinfo_intr_2002", + "sort": 39, + "buff": {}, + "colour": 1, + "ani": "" + }, + "3001": { + "id": 3001, + "name": "intr_playerinfo_name_3001", + "undefined": "获得干部吉田后解锁", + "img": 3001, + "cond": [ + "hero", + 3001 + ], + "intr": "intr_playerinfo_intr_3001", + "sort": 23, + "buff": {}, + "colour": 1, + "ani": "" + }, + "3002": { + "id": 3002, + "name": "intr_playerinfo_name_3002", + "undefined": "获得干部李卡德后解锁", + "img": 3002, + "cond": [ + "hero", + 3002 + ], + "intr": "intr_playerinfo_intr_3002", + "sort": 24, + "buff": {}, + "colour": 1, + "ani": "" + }, + "3003": { + "id": 3003, + "name": "intr_playerinfo_name_3003", + "undefined": "获得干部查卡后解锁", + "img": 3003, + "cond": [ + "hero", + 3003 + ], + "intr": "intr_playerinfo_intr_3003", + "sort": 25, + "buff": {}, + "colour": 1, + "ani": "" + }, + "3004": { + "id": 3004, + "name": "intr_playerinfo_name_3004", + "undefined": "获得干部珍后解锁", + "img": 3004, + "cond": [ + "hero", + 3004 + ], + "intr": "intr_playerinfo_intr_3004", + "sort": 26, + "buff": {}, + "colour": 1, + "ani": "" + }, + "3005": { + "id": 3005, + "name": "intr_playerinfo_name_3005", + "undefined": "获得干部猫王后解锁", + "img": 3005, + "cond": [ + "hero", + 3005 + ], + "intr": "intr_playerinfo_intr_3005", + "sort": 27, + "buff": {}, + "colour": 1, + "ani": "" + }, + "3006": { + "id": 3006, + "name": "intr_playerinfo_name_3006", + "undefined": "获得干部韦伯后解锁", + "img": 3006, + "cond": [ + "hero", + 3006 + ], + "intr": "intr_playerinfo_intr_3006", + "sort": 28, + "buff": {}, + "colour": 1, + "ani": "" + }, + "3007": { + "id": 3007, + "name": "intr_playerinfo_name_3007", + "undefined": "获得干部裴洛基欧后解锁", + "img": 3007, + "cond": [ + "hero", + 3007 + ], + "intr": "intr_playerinfo_intr_3007", + "sort": 29, + "buff": {}, + "colour": 1, + "ani": "" + }, + "3008": { + "id": 3008, + "name": "intr_playerinfo_name_3008", + "undefined": "获得干部罗尼后解锁", + "img": 3008, + "cond": [ + "hero", + 3008 + ], + "intr": "intr_playerinfo_intr_3008", + "sort": 30, + "buff": {}, + "colour": 1, + "ani": "" + }, + "3009": { + "id": 3009, + "name": "intr_playerinfo_name_3009", + "undefined": "获得干部阿布莱格后解锁", + "img": 3009, + "cond": [ + "hero", + 3009 + ], + "intr": "intr_playerinfo_intr_3009", + "sort": 31, + "buff": {}, + "colour": 1, + "ani": "" + }, + "3010": { + "id": 3010, + "name": "intr_playerinfo_name_3010", + "undefined": "获得干部彪后解锁", + "img": 3010, + "cond": [ + "hero", + 3010 + ], + "intr": "intr_playerinfo_intr_3010", + "sort": 32, + "buff": {}, + "colour": 1, + "ani": "" + }, + "3011": { + "id": 3011, + "name": "intr_playerinfo_name_3011", + "undefined": "获得干部雷卡基后解锁", + "img": 3011, + "cond": [ + "hero", + 3011 + ], + "intr": "intr_playerinfo_intr_3011", + "sort": 33, + "buff": {}, + "colour": 1, + "ani": "" + }, + "3012": { + "id": 3012, + "name": "intr_playerinfo_name_3012", + "undefined": "获得干部布利茨后解锁", + "img": 3012, + "cond": [ + "hero", + 3012 + ], + "intr": "intr_playerinfo_intr_3012", + "sort": 34, + "buff": {}, + "colour": 1, + "ani": "" + }, + "3013": { + "id": 3013, + "name": "intr_playerinfo_name_3013", + "undefined": "获得干部卡克斯顿后解锁", + "img": 3013, + "cond": [ + "hero", + 3013 + ], + "intr": "intr_playerinfo_intr_3013", + "sort": 35, + "buff": {}, + "colour": 1, + "ani": "" + }, + "3014": { + "id": 3014, + "name": "intr_playerinfo_name_3014", + "undefined": "获得干部陈后解锁", + "img": 3014, + "cond": [ + "hero", + 3014 + ], + "intr": "intr_playerinfo_intr_3014", + "sort": 36, + "buff": {}, + "colour": 1, + "ani": "" + }, + "3015": { + "id": 3015, + "name": "intr_playerinfo_name_3015", + "undefined": "获得干部贝尼后解锁", + "img": 3015, + "cond": [ + "hero", + 3015 + ], + "intr": "intr_playerinfo_intr_3015", + "sort": 37, + "buff": {}, + "colour": 1, + "ani": "" + }, + "4001": { + "id": 4001, + "name": "intr_playerinfo_name_4001", + "undefined": "获得干部洛克后解锁", + "img": 4001, + "cond": [ + "hero", + 4001 + ], + "intr": "intr_playerinfo_intr_4001", + "sort": 8, + "buff": {}, + "colour": 1, + "ani": "" + }, + "4002": { + "id": 4002, + "name": "intr_playerinfo_name_4002", + "undefined": "获得干部达奇后解锁", + "img": 4002, + "cond": [ + "hero", + 4002 + ], + "intr": "intr_playerinfo_intr_4002", + "sort": 9, + "buff": {}, + "colour": 1, + "ani": "" + }, + "4003": { + "id": 4003, + "name": "intr_playerinfo_name_4003", + "undefined": "获得干部军曹后解锁", + "img": 4003, + "cond": [ + "hero", + 4003 + ], + "intr": "intr_playerinfo_intr_4003", + "sort": 10, + "buff": {}, + "colour": 1, + "ani": "" + }, + "4004": { + "id": 4004, + "name": "intr_playerinfo_name_4004", + "undefined": "获得干部尤兰达后解锁", + "img": 4004, + "cond": [ + "hero", + 4004 + ], + "intr": "intr_playerinfo_intr_4004", + "sort": 11, + "buff": {}, + "colour": 1, + "ani": "" + }, + "4005": { + "id": 4005, + "name": "intr_playerinfo_name_4005", + "undefined": "获得干部艾达后解锁", + "img": 4005, + "cond": [ + "hero", + 4005 + ], + "intr": "intr_playerinfo_intr_4005", + "sort": 12, + "buff": {}, + "colour": 1, + "ani": "" + }, + "4006": { + "id": 4006, + "name": "intr_playerinfo_name_4006", + "undefined": "获得干部仙鹤后解锁", + "img": 4006, + "cond": [ + "hero", + 4006 + ], + "intr": "intr_playerinfo_intr_4006", + "sort": 13, + "buff": {}, + "colour": 1, + "ani": "" + }, + "4007": { + "id": 4007, + "name": "intr_playerinfo_name_4007", + "undefined": "获得干部鹫峰雪绪后解锁", + "img": 4007, + "cond": [ + "hero", + 4007 + ], + "intr": "intr_playerinfo_intr_4007", + "sort": 14, + "buff": {}, + "colour": 1, + "ani": "" + }, + "4008": { + "id": 4008, + "name": "intr_playerinfo_name_4008", + "undefined": "获得干部坂东次男后解锁", + "img": 4008, + "cond": [ + "hero", + 4008 + ], + "intr": "intr_playerinfo_intr_4008", + "sort": 15, + "buff": {}, + "colour": 1, + "ani": "" + }, + "4009": { + "id": 4009, + "name": "intr_playerinfo_name_4009", + "undefined": "获得干部竹中正洋后解锁", + "img": 4009, + "cond": [ + "hero", + 4009 + ], + "intr": "intr_playerinfo_intr_4009", + "sort": 16, + "buff": {}, + "colour": 1, + "ani": "" + }, + "4010": { + "id": 4010, + "name": "intr_playerinfo_name_4010", + "undefined": "获得干部加尔西亚后解锁", + "img": 4010, + "cond": [ + "hero", + 4010 + ], + "intr": "intr_playerinfo_intr_4010", + "sort": 17, + "buff": {}, + "colour": 1, + "ani": "" + }, + "4011": { + "id": 4011, + "name": "intr_playerinfo_name_4011", + "undefined": "获得干部法贝拉后解锁", + "img": 4011, + "cond": [ + "hero", + 4011 + ], + "intr": "intr_playerinfo_intr_4011", + "sort": 18, + "buff": {}, + "colour": 1, + "ani": "" + }, + "4012": { + "id": 4012, + "name": "intr_playerinfo_name_4012", + "undefined": "获得干部汉塞尔后解锁", + "img": 4012, + "cond": [ + "hero", + 4012 + ], + "intr": "intr_playerinfo_intr_4012", + "sort": 19, + "buff": {}, + "colour": 1, + "ani": "" + }, + "4013": { + "id": 4013, + "name": "intr_playerinfo_name_4013", + "undefined": "获得干部格里达尔后解锁", + "img": 4013, + "cond": [ + "hero", + 4013 + ], + "intr": "intr_playerinfo_intr_4013", + "sort": 20, + "buff": {}, + "colour": 1, + "ani": "" + }, + "4014": { + "id": 4014, + "name": "intr_playerinfo_name_4014", + "undefined": "获得干部索亚后解锁", + "img": 4014, + "cond": [ + "hero", + 4014 + ], + "intr": "intr_playerinfo_intr_4014", + "sort": 21, + "buff": {}, + "colour": 1, + "ani": "" + }, + "4015": { + "id": 4015, + "name": "intr_playerinfo_name_4015", + "undefined": "获得干部罗顿后解锁", + "img": 4015, + "cond": [ + "hero", + 4015 + ], + "intr": "intr_playerinfo_intr_4015", + "sort": 22, + "buff": {}, + "colour": 1, + "ani": "" + }, + "5001": { + "id": 5001, + "name": "intr_playerinfo_name_5001", + "undefined": "获得干部莱薇后解锁", + "img": 5001, + "cond": [ + "hero", + 5001 + ], + "intr": "intr_playerinfo_intr_5001", + "sort": 3, + "buff": {}, + "colour": 1, + "ani": "" + }, + "5002": { + "id": 5002, + "name": "intr_playerinfo_name_5002", + "undefined": "获得干部巴拉莱卡后解锁", + "img": 5002, + "cond": [ + "hero", + 5002 + ], + "intr": "intr_playerinfo_intr_5002", + "sort": 4, + "buff": {}, + "colour": 1, + "ani": "" + }, + "5003": { + "id": 5003, + "name": "intr_playerinfo_name_5003", + "undefined": "获得干部张维新后解锁", + "img": 5003, + "cond": [ + "hero", + 5003 + ], + "intr": "intr_playerinfo_intr_5003", + "sort": 5, + "buff": {}, + "colour": 1, + "ani": "" + }, + "5004": { + "id": 5004, + "name": "intr_playerinfo_name_5004", + "undefined": "获得干部罗贝尔特后解锁", + "img": 5004, + "cond": [ + "hero", + 5004 + ], + "intr": "intr_playerinfo_intr_5004", + "sort": 6, + "buff": {}, + "colour": 1, + "ani": "" + }, + "5005": { + "id": 5005, + "name": "intr_playerinfo_name_5005", + "undefined": "获得干部松崎银次后解锁", + "img": 5005, + "cond": [ + "hero", + 5005 + ], + "intr": "intr_playerinfo_intr_5005", + "sort": 7, + "buff": {}, + "colour": 1, + "ani": "" + } +} \ No newline at end of file diff --git a/src/json/playerHeadFrame.json b/src/json/playerHeadFrame.json new file mode 100644 index 0000000..06e0dd8 --- /dev/null +++ b/src/json/playerHeadFrame.json @@ -0,0 +1,360 @@ +{ + "1": { + "id": 1, + "name": "playerheadFrame_name_1", + "undefined": "玩家初始默认头像框", + "img": "txk_001", + "cond": [ + "lv", + 1 + ], + "intr": "playerheadFrame_des_1", + "sort": 1, + "buff": {}, + "colour": 3, + "ani": "" + }, + "2": { + "id": 2, + "name": "playerheadFrame_name_2", + "undefined": "VIP3获得,解锁后攻击加成+1%", + "img": "txk_010", + "cond": [ + "vip", + 3 + ], + "intr": "playerheadFrame_des_2", + "sort": 2, + "buff": { + "atkpro": 0.01 + }, + "colour": 3, + "ani": "" + }, + "3": { + "id": 3, + "name": "playerheadFrame_name_3", + "undefined": "黑暗塔通关30关获得,解锁后防御加成+1%", + "img": "txk_019", + "cond": [ + "time", + -1 + ], + "intr": "playerheadFrame_des_3", + "sort": 3, + "buff": { + "defpro": 0.01 + }, + "colour": 4, + "ani": "" + }, + "4": { + "id": 4, + "name": "playerheadFrame_name_4", + "undefined": "游轮竞技第1名获得,解锁后攻击加成+1%", + "img": "txk_016", + "cond": [ + "time", + -1 + ], + "intr": "playerheadFrame_des_4", + "sort": 4, + "buff": { + "atkpro": 0.01 + }, + "colour": 5, + "ani": "" + }, + "5": { + "id": 5, + "name": "playerheadFrame_name_5", + "undefined": "维修厂达到五阶10星获得,解锁后防御加成+1%", + "img": "txk_004", + "cond": [ + "wxcLv", + 50 + ], + "intr": "playerheadFrame_des_5", + "sort": 5, + "buff": { + "defpro": 0.01 + }, + "colour": 4, + "ani": "" + }, + "6": { + "id": 6, + "name": "playerheadFrame_name_6", + "undefined": "黑帮激战第一名获得,解锁后攻击加成+1%、生命加成+1%(限时7天)", + "img": "txk_023", + "cond": [ + "time", + 604800 + ], + "intr": "playerheadFrame_des_6", + "sort": 6, + "buff": { + "atkpro": 0.01, + "hppro": 0.01 + }, + "colour": 5, + "ani": "" + }, + "7": { + "id": 7, + "name": "playerheadFrame_name_7", + "undefined": "跨服势力战最高品质据点第一势力会长,解锁后攻击加成+1%、生命加成+1%(限时7天)", + "img": "txk_009", + "cond": [ + "time", + 604800 + ], + "intr": "playerheadFrame_des_7", + "sort": 7, + "buff": { + "atkpro": 0.01, + "hppro": 0.01 + }, + "colour": 5, + "ani": "" + }, + "8": { + "id": 8, + "name": "playerheadFrame_name_8", + "undefined": "铁笼死斗第一名获得,解锁后伤害加成+2%(限时7天)", + "img": "txk_018", + "cond": [ + "time", + 604800 + ], + "intr": "playerheadFrame_des_8", + "sort": 8, + "buff": { + "dpspro": 0.02 + }, + "colour": 5, + "ani": "" + }, + "9": { + "id": 9, + "name": "playerheadFrame_name_9", + "undefined": "名望等级达到五阶获得,解锁后防御加成+1%", + "img": "txk_005", + "cond": [ + "renown", + 41 + ], + "intr": "playerheadFrame_des_9", + "sort": 9, + "buff": { + "defpro": 0.01 + }, + "colour": 4, + "ani": "" + }, + "10": { + "id": 10, + "name": "playerheadFrame_name_10", + "undefined": "丛林狩猎第一名获得,解锁后攻击加成+1%、生命加成+1%(限时7天)", + "img": "txk_014", + "cond": [ + "time", + 604800 + ], + "intr": "playerheadFrame_des_10", + "sort": 10, + "buff": { + "atkpro": 0.01, + "hppro": 0.01 + }, + "colour": 5, + "ani": "" + }, + "11": { + "id": 11, + "name": "playerheadFrame_name_11", + "undefined": "开服狂欢领取最终宝箱获得,解锁后攻击加成+1%、生命加成+1%", + "img": "txk_022", + "cond": [ + "time", + -1 + ], + "intr": "playerheadFrame_des_11", + "sort": 11, + "buff": { + "atkpro": 0.01, + "hppro": 0.01 + }, + "colour": 5, + "ani": "" + }, + "12": { + "id": 12, + "name": "playerheadFrame_name_12", + "undefined": "累计酒馆招募次数达到1000次获得,解锁后伤害加成+2%", + "img": "txk_024", + "cond": [ + "jiuba/Lottery", + 1000 + ], + "intr": "playerheadFrame_des_12", + "sort": 12, + "buff": { + "dpspro": 0.02 + }, + "colour": 4, + "ani": "" + }, + "13": { + "id": 13, + "name": "playerheadFrame_name_13", + "undefined": "购买战令获得", + "img": "txk_002", + "cond": [ + "time", + 2592000 + ], + "intr": "playerheadFrame_des_13", + "sort": 13, + "buff": {}, + "colour": 4, + "ani": "" + }, + "14": { + "id": 14, + "name": "playerheadFrame_name_14", + "undefined": "铁笼死斗晋级八强获得", + "img": "txk_003", + "cond": [ + "time", + 604800 + ], + "intr": "playerheadFrame_des_14", + "sort": 14, + "buff": {}, + "colour": 4, + "ani": "" + }, + "15": { + "id": 15, + "name": "playerheadFrame_name_15", + "undefined": "购买名望特权礼包获得", + "img": "txk_020", + "cond": [ + "time", + -1 + ], + "intr": "playerheadFrame_des_15", + "sort": 15, + "buff": { + "dpspro": 0.01 + }, + "colour": 4, + "ani": "" + }, + "16": { + "id": 16, + "name": "playerheadFrame_name_16", + "undefined": "开服冲榜活动获得", + "img": "txk_017", + "cond": [ + "time", + -1 + ], + "intr": "playerheadFrame_des_16", + "sort": 16, + "buff": {}, + "colour": 4, + "ani": "" + }, + "17": { + "id": 17, + "name": "playerheadFrame_name_17", + "undefined": "开服冲榜活动获得", + "img": "txk_011", + "cond": [ + "time", + -1 + ], + "intr": "playerheadFrame_des_17", + "sort": 17, + "buff": {}, + "colour": 4, + "ani": "" + }, + "18": { + "id": 18, + "name": "playerheadFrame_name_18", + "undefined": "开服冲榜活动获得", + "img": "txk_005", + "cond": [ + "time", + -1 + ], + "intr": "playerheadFrame_des_18", + "sort": 18, + "buff": {}, + "colour": 4, + "ani": "" + }, + "19": { + "id": 19, + "name": "playerheadFrame_name_19", + "undefined": "开服冲榜活动获得", + "img": "txk_004", + "cond": [ + "time", + -1 + ], + "intr": "playerheadFrame_des_19", + "sort": 19, + "buff": {}, + "colour": 4, + "ani": "" + }, + "20": { + "id": 20, + "name": "playerheadFrame_name_20", + "undefined": "开服冲榜活动获得", + "img": "txk_024", + "cond": [ + "time", + -1 + ], + "intr": "playerheadFrame_des_20", + "sort": 20, + "buff": {}, + "colour": 4, + "ani": "" + }, + "21": { + "id": 21, + "name": "playerheadFrame_name_21", + "undefined": "开服冲榜活动获得", + "img": "txk_013", + "cond": [ + "time", + -1 + ], + "intr": "playerheadFrame_des_21", + "sort": 21, + "buff": {}, + "colour": 4, + "ani": "" + }, + "22": { + "id": 22, + "name": "playerheadFrame_name_22", + "undefined": "开服冲榜活动获得", + "img": "txk_021", + "cond": [ + "time", + -1 + ], + "intr": "playerheadFrame_des_22", + "sort": 22, + "buff": {}, + "colour": 4, + "ani": "" + } +} \ No newline at end of file diff --git a/src/json/playerLv.json b/src/json/playerLv.json new file mode 100644 index 0000000..451dad6 --- /dev/null +++ b/src/json/playerLv.json @@ -0,0 +1,502 @@ +{ + "1": { + "lv": 1, + "need": 0, + "tujianlv": 0 + }, + "2": { + "lv": 2, + "need": 100, + "tujianlv": 0 + }, + "3": { + "lv": 3, + "need": 600, + "tujianlv": 0 + }, + "4": { + "lv": 4, + "need": 1800, + "tujianlv": 0 + }, + "5": { + "lv": 5, + "need": 3300, + "tujianlv": 0 + }, + "6": { + "lv": 6, + "need": 5300, + "tujianlv": 0 + }, + "7": { + "lv": 7, + "need": 7400, + "tujianlv": 0 + }, + "8": { + "lv": 8, + "need": 10400, + "tujianlv": 0 + }, + "9": { + "lv": 9, + "need": 13900, + "tujianlv": 0 + }, + "10": { + "lv": 10, + "need": 17900, + "tujianlv": 2 + }, + "11": { + "lv": 11, + "need": 22900, + "tujianlv": 2 + }, + "12": { + "lv": 12, + "need": 28900, + "tujianlv": 2 + }, + "13": { + "lv": 13, + "need": 35900, + "tujianlv": 2 + }, + "14": { + "lv": 14, + "need": 43900, + "tujianlv": 2 + }, + "15": { + "lv": 15, + "need": 52900, + "tujianlv": 4 + }, + "16": { + "lv": 16, + "need": 62900, + "tujianlv": 4 + }, + "17": { + "lv": 17, + "need": 77900, + "tujianlv": 4 + }, + "18": { + "lv": 18, + "need": 97900, + "tujianlv": 4 + }, + "19": { + "lv": 19, + "need": 119900, + "tujianlv": 4 + }, + "20": { + "lv": 20, + "need": 144900, + "tujianlv": 6 + }, + "21": { + "lv": 21, + "need": 172900, + "tujianlv": 6 + }, + "22": { + "lv": 22, + "need": 202900, + "tujianlv": 6 + }, + "23": { + "lv": 23, + "need": 235900, + "tujianlv": 6 + }, + "24": { + "lv": 24, + "need": 271900, + "tujianlv": 6 + }, + "25": { + "lv": 25, + "need": 309900, + "tujianlv": 8 + }, + "26": { + "lv": 26, + "need": 349900, + "tujianlv": 8 + }, + "27": { + "lv": 27, + "need": 394900, + "tujianlv": 8 + }, + "28": { + "lv": 28, + "need": 444900, + "tujianlv": 8 + }, + "29": { + "lv": 29, + "need": 499900, + "tujianlv": 8 + }, + "30": { + "lv": 30, + "need": 559900, + "tujianlv": 10 + }, + "31": { + "lv": 31, + "need": 624900, + "tujianlv": 10 + }, + "32": { + "lv": 32, + "need": 694900, + "tujianlv": 10 + }, + "33": { + "lv": 33, + "need": 769900, + "tujianlv": 10 + }, + "34": { + "lv": 34, + "need": 849900, + "tujianlv": 12 + }, + "35": { + "lv": 35, + "need": 939900, + "tujianlv": 12 + }, + "36": { + "lv": 36, + "need": 1039900, + "tujianlv": 12 + }, + "37": { + "lv": 37, + "need": 1159900, + "tujianlv": 12 + }, + "38": { + "lv": 38, + "need": 1309900, + "tujianlv": 14 + }, + "39": { + "lv": 39, + "need": 1509900, + "tujianlv": 14 + }, + "40": { + "lv": 40, + "need": 1759900, + "tujianlv": 14 + }, + "41": { + "lv": 41, + "need": 2109900, + "tujianlv": 14 + }, + "42": { + "lv": 42, + "need": 2559900, + "tujianlv": 16 + }, + "43": { + "lv": 43, + "need": 3209900, + "tujianlv": 16 + }, + "44": { + "lv": 44, + "need": 4059900, + "tujianlv": 18 + }, + "45": { + "lv": 45, + "need": 5059900, + "tujianlv": 18 + }, + "46": { + "lv": 46, + "need": 6309900, + "tujianlv": 20 + }, + "47": { + "lv": 47, + "need": 7859900, + "tujianlv": 20 + }, + "48": { + "lv": 48, + "need": 9559900, + "tujianlv": 22 + }, + "49": { + "lv": 49, + "need": 11409900, + "tujianlv": 22 + }, + "50": { + "lv": 50, + "need": 13409900, + "tujianlv": 24 + }, + "51": { + "lv": 51, + "need": 15609900, + "tujianlv": 26 + }, + "52": { + "lv": 52, + "need": 18109900, + "tujianlv": 28 + }, + "53": { + "lv": 53, + "need": 20909900, + "tujianlv": 30 + }, + "54": { + "lv": 54, + "need": 24009900, + "tujianlv": 32 + }, + "55": { + "lv": 55, + "need": 27409900, + "tujianlv": 34 + }, + "56": { + "lv": 56, + "need": 31109900, + "tujianlv": 36 + }, + "57": { + "lv": 57, + "need": 35109900, + "tujianlv": 38 + }, + "58": { + "lv": 58, + "need": 39409900, + "tujianlv": 40 + }, + "59": { + "lv": 59, + "need": 44009900, + "tujianlv": 42 + }, + "60": { + "lv": 60, + "need": 48909900, + "tujianlv": 44 + }, + "61": { + "lv": 61, + "need": 54409900, + "tujianlv": 46 + }, + "62": { + "lv": 62, + "need": 60909900, + "tujianlv": 48 + }, + "63": { + "lv": 63, + "need": 68409900, + "tujianlv": 50 + }, + "64": { + "lv": 64, + "need": 76909900, + "tujianlv": 53 + }, + "65": { + "lv": 65, + "need": 86409900, + "tujianlv": 56 + }, + "66": { + "lv": 66, + "need": 97409900, + "tujianlv": 59 + }, + "67": { + "lv": 67, + "need": 109909900, + "tujianlv": 62 + }, + "68": { + "lv": 68, + "need": 123909900, + "tujianlv": 65 + }, + "69": { + "lv": 69, + "need": 139409900, + "tujianlv": 68 + }, + "70": { + "lv": 70, + "need": 156409900, + "tujianlv": 70 + }, + "71": { + "lv": 71, + "need": 174909900, + "tujianlv": 70 + }, + "72": { + "lv": 72, + "need": 198409900, + "tujianlv": 70 + }, + "73": { + "lv": 73, + "need": 226909900, + "tujianlv": 70 + }, + "74": { + "lv": 74, + "need": 260409900, + "tujianlv": 70 + }, + "75": { + "lv": 75, + "need": 298909900, + "tujianlv": 70 + }, + "76": { + "lv": 76, + "need": 342409900, + "tujianlv": 70 + }, + "77": { + "lv": 77, + "need": 390909900, + "tujianlv": 70 + }, + "78": { + "lv": 78, + "need": 444409900, + "tujianlv": 70 + }, + "79": { + "lv": 79, + "need": 502909900, + "tujianlv": 70 + }, + "80": { + "lv": 80, + "need": 566409900, + "tujianlv": 70 + }, + "81": { + "lv": 81, + "need": 634909900, + "tujianlv": 70 + }, + "82": { + "lv": 82, + "need": 726709900, + "tujianlv": 70 + }, + "83": { + "lv": 83, + "need": 836559900, + "tujianlv": 70 + }, + "84": { + "lv": 84, + "need": 966059900, + "tujianlv": 70 + }, + "85": { + "lv": 85, + "need": 1116809900, + "tujianlv": 70 + }, + "86": { + "lv": 86, + "need": 1279559900, + "tujianlv": 70 + }, + "87": { + "lv": 87, + "need": 1454309900, + "tujianlv": 70 + }, + "88": { + "lv": 88, + "need": 1641059900, + "tujianlv": 70 + }, + "89": { + "lv": 89, + "need": 1839809900, + "tujianlv": 70 + }, + "90": { + "lv": 90, + "need": 2050559900, + "tujianlv": 70 + }, + "91": { + "lv": 91, + "need": 2273309900, + "tujianlv": 70 + }, + "92": { + "lv": 92, + "need": 2548034900, + "tujianlv": 70 + }, + "93": { + "lv": 93, + "need": 2880134900, + "tujianlv": 70 + }, + "94": { + "lv": 94, + "need": 3275009900, + "tujianlv": 70 + }, + "95": { + "lv": 95, + "need": 3738059900, + "tujianlv": 70 + }, + "96": { + "lv": 96, + "need": 4274684900, + "tujianlv": 70 + }, + "97": { + "lv": 97, + "need": 4890284900, + "tujianlv": 70 + }, + "98": { + "lv": 98, + "need": 5590259900, + "tujianlv": 70 + }, + "99": { + "lv": 99, + "need": 6380009900, + "tujianlv": 70 + }, + "100": { + "lv": 100, + "need": 7264934900, + "tujianlv": 70 + } +} \ No newline at end of file diff --git a/src/json/playerModel.json b/src/json/playerModel.json new file mode 100644 index 0000000..fbbf9b8 --- /dev/null +++ b/src/json/playerModel.json @@ -0,0 +1,38 @@ +{ + "1": { + "1": { + "type": 1, + "id": 1, + "name": "playerModel_name_1", + "head": 10001, + "img": "zhu_10001", + "cond": [ + "lv", + 1 + ], + "intr": "playerModel_des_1", + "sort": 1, + "buff": {}, + "colour": 1, + "mwSpine": "ani_mingwangnan", + "fireHead": "img_lih2" + }, + "2": { + "type": 1, + "id": 2, + "name": "playerModel_name_2", + "head": 10002, + "img": "zhu_10002", + "cond": [ + "lv", + 1 + ], + "intr": "playerModel_des_2", + "sort": 2, + "buff": {}, + "colour": 1, + "mwSpine": "ani_mingwangnv", + "fireHead": "img_lih1" + } + } +} \ No newline at end of file diff --git a/src/json/playerdata.json b/src/json/playerdata.json new file mode 100644 index 0000000..b0eb045 --- /dev/null +++ b/src/json/playerdata.json @@ -0,0 +1,10 @@ +{ + "data":[ + {"a":"attr","t":"jinbi","n":10000}, + {"a":"attr","t":"rmbmoney","n":100}, + {"a":"shiwu","t":"1","n":1,"colour":5} + ], + "hero":[ + {"a":"hero","t":"3015","n":1} + ] +} \ No newline at end of file diff --git a/src/json/pmd.json5 b/src/json/pmd.json5 new file mode 100644 index 0000000..2e0db1c --- /dev/null +++ b/src/json/pmd.json5 @@ -0,0 +1,18 @@ +{ + //抽取英雄跑马灯 + get_hero_star5_pmd: 'intr_pmd_hero_1', + //公路狂飙跑马灯 + glkb_pmd: 'intr_pmd_glkb', + //进阶配件跑马灯 + jinjie_peijian: 'intr_pmd_jjpj', + //公会宝藏跑马灯 + guild_pmd: 'intr_pmd_guild', + //铁笼死斗跑马灯 + tlsd_pmd: 'intr_pmd_tlsd', + //黑帮争霸争霸赛第一名 + hbzb_pmd1: 'intr_pmd_hbzb1', + //黑帮争霸争霸赛第二名 + hbzb_pmd2: 'intr_pmd_hbzb2', + //黑帮争霸争霸赛第三名 + hbzb_pmd3: 'intr_pmd_hbzb3' +} \ No newline at end of file diff --git a/src/json/qiandao.json b/src/json/qiandao.json new file mode 100644 index 0000000..1cbc93f --- /dev/null +++ b/src/json/qiandao.json @@ -0,0 +1,340 @@ +{ + "1": { + "1": { + "day": 1, + "prize": [ + { + "a": "item", + "t": "12", + "n": 120 + } + ], + "key": 1, + "vip": 1 + }, + "2": { + "day": 2, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "key": 1, + "vip": 0 + }, + "3": { + "day": 3, + "prize": [ + { + "a": "item", + "t": "2", + "n": 300 + } + ], + "key": 1, + "vip": 2 + }, + "4": { + "day": 4, + "prize": [ + { + "a": "item", + "t": "9", + "n": 100 + } + ], + "key": 1, + "vip": 0 + }, + "5": { + "day": 5, + "prize": [ + { + "a": "item", + "t": "600", + "n": 1 + } + ], + "key": 1, + "vip": 3 + }, + "6": { + "day": 6, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "key": 1, + "vip": 0 + }, + "7": { + "day": 7, + "prize": [ + { + "a": "item", + "t": "601", + "n": 1 + } + ], + "key": 1, + "vip": 4 + }, + "8": { + "day": 8, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + } + ], + "key": 1, + "vip": 0 + }, + "9": { + "day": 9, + "prize": [ + { + "a": "item", + "t": "600", + "n": 1 + } + ], + "key": 1, + "vip": 5 + }, + "10": { + "day": 10, + "prize": [ + { + "a": "item", + "t": "18", + "n": 30 + } + ], + "key": 1, + "vip": 0 + }, + "11": { + "day": 11, + "prize": [ + { + "a": "item", + "t": "601", + "n": 1 + } + ], + "key": 1, + "vip": 6 + }, + "12": { + "day": 12, + "prize": [ + { + "a": "item", + "t": "602", + "n": 1 + } + ], + "key": 1, + "vip": 0 + }, + "13": { + "day": 13, + "prize": [ + { + "a": "item", + "t": "600", + "n": 1 + } + ], + "key": 1, + "vip": 7 + }, + "14": { + "day": 14, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + } + ], + "key": 1, + "vip": 0 + }, + "15": { + "day": 15, + "prize": [ + { + "a": "item", + "t": "601", + "n": 1 + } + ], + "key": 1, + "vip": 8 + }, + "16": { + "day": 16, + "prize": [ + { + "a": "item", + "t": "12", + "n": 300 + } + ], + "key": 1, + "vip": 0 + }, + "17": { + "day": 17, + "prize": [ + { + "a": "item", + "t": "600", + "n": 1 + } + ], + "key": 1, + "vip": 9 + }, + "18": { + "day": 18, + "prize": [ + { + "a": "item", + "t": "2", + "n": 400 + } + ], + "key": 1, + "vip": 0 + }, + "19": { + "day": 19, + "prize": [ + { + "a": "item", + "t": "601", + "n": 1 + } + ], + "key": 1, + "vip": 10 + }, + "20": { + "day": 20, + "prize": [ + { + "a": "item", + "t": "10", + "n": 20 + } + ], + "key": 1, + "vip": 0 + }, + "21": { + "day": 21, + "prize": [ + { + "a": "item", + "t": "600", + "n": 1 + } + ], + "key": 1, + "vip": 11 + }, + "22": { + "day": 22, + "prize": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "key": 1, + "vip": 0 + }, + "23": { + "day": 23, + "prize": [ + { + "a": "item", + "t": "601", + "n": 1 + } + ], + "key": 1, + "vip": 12 + }, + "24": { + "day": 24, + "prize": [ + { + "a": "item", + "t": "20", + "n": 50 + } + ], + "key": 1, + "vip": 0 + }, + "25": { + "day": 25, + "prize": [ + { + "a": "item", + "t": "600", + "n": 1 + } + ], + "key": 1, + "vip": 13 + }, + "26": { + "day": 26, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + } + ], + "key": 1, + "vip": 0 + }, + "27": { + "day": 27, + "prize": [ + { + "a": "item", + "t": "601", + "n": 1 + } + ], + "key": 1, + "vip": 14 + }, + "28": { + "day": 28, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + } + ], + "key": 1, + "vip": 0 + } + } +} \ No newline at end of file diff --git a/src/json/qiandaocom.json b/src/json/qiandaocom.json new file mode 100644 index 0000000..843e48b --- /dev/null +++ b/src/json/qiandaocom.json @@ -0,0 +1,152 @@ +{ + "1": { + "daynum": 1, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "item", + "t": "24", + "n": 1 + } + ] + }, + "3": { + "daynum": 3, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + }, + { + "a": "item", + "t": "25", + "n": 2 + }, + { + "a": "item", + "t": "26", + "n": 2 + }, + { + "a": "item", + "t": "24", + "n": 1 + } + ] + }, + "7": { + "daynum": 7, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + }, + { + "a": "item", + "t": "18", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + }, + { + "a": "item", + "t": "24", + "n": 1 + } + ] + }, + "15": { + "daynum": 15, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + }, + { + "a": "item", + "t": "19", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + }, + { + "a": "item", + "t": "24", + "n": 1 + } + ] + }, + "20": { + "daynum": 20, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 150 + }, + { + "a": "item", + "t": "10", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "24", + "n": 2 + } + ] + }, + "25": { + "daynum": 25, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 150 + }, + { + "a": "item", + "t": "600", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "24", + "n": 2 + } + ] + } +} \ No newline at end of file diff --git a/src/json/qirichongzhi.json5 b/src/json/qirichongzhi.json5 new file mode 100644 index 0000000..aae47b1 --- /dev/null +++ b/src/json/qirichongzhi.json5 @@ -0,0 +1,42 @@ +[ + { + time: 0, + tasks: [ + { total: 1, prize: [{a: 'attr', t: 'jinbi', n: 20000},{a: 'item', t: '1', n: 100000},{a: 'item', t: '4', n: 5}] }, + { total: 2, prize: [{a: 'attr', t: 'jinbi', n: 40000},{a: 'item', t: '1', n: 200000},{a: 'item', t: '12', n: 200}] }, + { total: 3, prize: [{a: 'attr', t: 'jinbi', n: 60000},{a: 'item', t: '1', n: 300000},{a: 'item', t: '4', n: 10}] }, + { total: 4, prize: [{a: 'attr', t: 'jinbi', n: 80000},{a: 'item', t: '1', n: 400000},{a: 'item', t: '12', n: 200}] }, + { total: 5, prize: [{a: 'attr', t: 'jinbi', n: 100000},{a: 'item', t: '1', n: 500000},{a: 'item', t: '12', n: 200}] }, + { total: 6, prize: [{a: 'attr', t: 'jinbi', n: 120000},{a: 'item', t: '1', n: 600000},{a: 'item', t: '607', n: 20}] }, + { total: 7, prize: [{a: 'attr', t: 'jinbi', n: 140000},{a: 'item', t: '1', n: 700000},{a: 'item', t: '12', n: 200}] }, + { total: 8, prize: [{a: 'attr', t: 'jinbi', n: 160000},{a: 'item', t: '1', n: 800000},{a: 'item', t: '12', n: 200}] }, + { total: 9, prize: [{a: 'attr', t: 'jinbi', n: 180000},{a: 'item', t: '1', n: 900000},{a: 'item', t: '4', n: 10}] }, + { total: 10, prize: [{a: 'attr', t: 'jinbi', n: 200000},{a: 'item', t: '1', n: 1000000},{a: 'item', t: '12', n: 200}] }, + { total: 11, prize: [{a: 'attr', t: 'jinbi', n: 220000},{a: 'item', t: '1', n: 1100000},{a: 'item', t: '12', n: 200}] }, + { total: 12, prize: [{a: 'attr', t: 'jinbi', n: 240000},{a: 'item', t: '1', n: 1200000},{a: 'item', t: '4', n: 10}] }, + { total: 13, prize: [{a: 'attr', t: 'jinbi', n: 260000},{a: 'item', t: '1', n: 1300000},{a: 'item', t: '12', n: 200}] }, + { total: 14, prize: [{a: 'attr', t: 'jinbi', n: 280000},{a: 'item', t: '1', n: 1400000},{a: 'item', t: '12', n: 200}] }, + { total: 15, prize: [{a: 'attr', t: 'jinbi', n: 300000},{a: 'item', t: '1', n: 1500000},{a: 'item', t: '600', n: 20}] } + ] + }, + { + time: 0, + tasks: [ + { total: 1, prize: [{a: 'attr', t: 'jinbi', n: 20000},{a: 'item', t: '1', n: 100000},{a: 'item', t: '4', n: 5}] }, + { total: 2, prize: [{a: 'attr', t: 'jinbi', n: 40000},{a: 'item', t: '1', n: 200000},{a: 'item', t: '12', n: 200}] }, + { total: 3, prize: [{a: 'attr', t: 'jinbi', n: 60000},{a: 'item', t: '1', n: 300000},{a: 'item', t: '4', n: 10}] }, + { total: 4, prize: [{a: 'attr', t: 'jinbi', n: 80000},{a: 'item', t: '1', n: 400000},{a: 'item', t: '12', n: 200}] }, + { total: 5, prize: [{a: 'attr', t: 'jinbi', n: 100000},{a: 'item', t: '1', n: 500000},{a: 'item', t: '12', n: 200}] }, + { total: 6, prize: [{a: 'attr', t: 'jinbi', n: 120000},{a: 'item', t: '1', n: 600000},{a: 'item', t: '607', n: 20}] }, + { total: 7, prize: [{a: 'attr', t: 'jinbi', n: 140000},{a: 'item', t: '1', n: 700000},{a: 'item', t: '12', n: 200}] }, + { total: 8, prize: [{a: 'attr', t: 'jinbi', n: 160000},{a: 'item', t: '1', n: 800000},{a: 'item', t: '12', n: 200}] }, + { total: 9, prize: [{a: 'attr', t: 'jinbi', n: 180000},{a: 'item', t: '1', n: 900000},{a: 'item', t: '4', n: 10}] }, + { total: 10, prize: [{a: 'attr', t: 'jinbi', n: 200000},{a: 'item', t: '1', n: 1000000},{a: 'item', t: '12', n: 200}] }, + { total: 11, prize: [{a: 'attr', t: 'jinbi', n: 220000},{a: 'item', t: '1', n: 1100000},{a: 'item', t: '12', n: 200}] }, + { total: 12, prize: [{a: 'attr', t: 'jinbi', n: 240000},{a: 'item', t: '1', n: 1200000},{a: 'item', t: '4', n: 10}] }, + { total: 13, prize: [{a: 'attr', t: 'jinbi', n: 260000},{a: 'item', t: '1', n: 1300000},{a: 'item', t: '12', n: 200}] }, + { total: 14, prize: [{a: 'attr', t: 'jinbi', n: 280000},{a: 'item', t: '1', n: 1400000},{a: 'item', t: '12', n: 200}] }, + { total: 15, prize: [{a: 'attr', t: 'jinbi', n: 300000},{a: 'item', t: '1', n: 1500000},{a: 'item', t: '600', n: 20}] } + ] + } +] \ No newline at end of file diff --git a/src/json/qiridenglu.json5 b/src/json/qiridenglu.json5 new file mode 100644 index 0000000..0c1025e --- /dev/null +++ b/src/json/qiridenglu.json5 @@ -0,0 +1,30 @@ +[ + { + day: 1, + prize: [{a: 'attr', t: 'rmbmoney', n: 200}] + }, + { + day: 2, + prize: [{a: 'item', t: '3002', n: 20}] + }, + { + day: 3, + prize: [{a: 'equip', t: '1009', n: 1}] + }, + { + day: 4, + prize: [{a: 'item', t: '9', n: 200}] + }, + { + day: 5, + prize: [{a: 'item', t: '4', n: 10}] + }, + { + day: 6, + prize: [{a: 'attr', t: 'rmbmoney', n: 1000}] + }, + { + day: 7, + prize: [{a: 'item', t: '5005', n: 20}] + } +] \ No newline at end of file diff --git a/src/json/qjzzd.json5 b/src/json/qjzzd.json5 new file mode 100644 index 0000000..d7a57c2 --- /dev/null +++ b/src/json/qjzzd.json5 @@ -0,0 +1,71 @@ +{ + rankPrize: [ + { ph: [1,1], prize: [{a: 'item', t: '18', n: 300},{a: 'attr', t: 'jinbi', n: 3000000}] }, + { ph: [2,2], prize: [{a: 'item', t: '18', n: 250},{a: 'attr', t: 'jinbi', n: 2500000}] }, + { ph: [3,3], prize: [{a: 'item', t: '18', n: 200},{a: 'attr', t: 'jinbi', n: 2000000}] }, + { ph: [4,5], prize: [{a: 'item', t: '18', n: 150},{a: 'attr', t: 'jinbi', n: 1500000}] }, + { ph: [6,10], prize: [{a: 'item', t: '18', n: 100},{a: 'attr', t: 'jinbi', n: 1000000}] }, + { ph: [11,20], prize: [{a: 'item', t: '18', n: 80},{a: 'attr', t: 'jinbi', n: 800000}] }, + { ph: [21,50], prize: [{a: 'item', t: '18', n: 60},{a: 'attr', t: 'jinbi', n: 600000}] }, + { ph: [51,100], prize: [{a: 'item', t: '18', n: 40},{a: 'attr', t: 'jinbi', n: 400000}] }, + { ph: [101,200], prize: [{a: 'item', t: '18', n: 20},{a: 'attr', t: 'jinbi', n: 200000}] }, + { ph: [201,9999], prize: [{a: 'item', t: '18', n: 10},{a: 'attr', t: 'jinbi', n: 100000}] }, + ], + // 新的排行奖励,三个boss + rankphPrize: { + "0": [ + { ph: [1,1], prize: [{a: 'item', t: '4', n: 12},{a: 'attr', t: 'jinbi', n: 500000}] }, + { ph: [2,2], prize: [{a: 'item', t: '4', n: 8},{a: 'attr', t: 'jinbi', n: 400000}] }, + { ph: [3,3], prize: [{a: 'item', t: '4', n: 6},{a: 'attr', t: 'jinbi', n: 300000}] }, + { ph: [4,10], prize: [{a: 'item', t: '4', n: 5},{a: 'attr', t: 'jinbi', n: 250000}] }, + { ph: [11,20], prize: [{a: 'item', t: '4', n: 4},{a: 'attr', t: 'jinbi', n: 200000}] }, + { ph: [21,50], prize: [{a: 'item', t: '4', n: 3},{a: 'attr', t: 'jinbi', n: 150000}] }, + { ph: [51,100], prize: [{a: 'item', t: '4', n: 2},{a: 'attr', t: 'jinbi', n: 100000}] }, + { ph: [101,99999], prize: [{a: 'item', t: '4', n: 1},{a: 'attr', t: 'jinbi', n: 50000}] }, + ], + "1": [ + { ph: [1,1], prize: [{a: 'item', t: '12', n: 500},{a: 'item', t: '1', n: 400000},{a: 'attr', t: 'jinbi', n: 500000}] }, + { ph: [2,2], prize: [{a: 'item', t: '12', n: 300},{a: 'item', t: '1', n: 300000},{a: 'attr', t: 'jinbi', n: 400000}] }, + { ph: [3,3], prize: [{a: 'item', t: '12', n: 200},{a: 'item', t: '1', n: 200000},{a: 'attr', t: 'jinbi', n: 300000}] }, + { ph: [4,10], prize: [{a: 'item', t: '12', n: 150},{a: 'item', t: '1', n: 180000},{a: 'attr', t: 'jinbi', n: 250000}] }, + { ph: [11,20], prize: [{a: 'item', t: '12', n: 130},{a: 'item', t: '1', n: 160000},{a: 'attr', t: 'jinbi', n: 200000}] }, + { ph: [21,50], prize: [{a: 'item', t: '12', n: 100},{a: 'item', t: '1', n: 140000},{a: 'attr', t: 'jinbi', n: 150000}] }, + { ph: [51,100], prize: [{a: 'item', t: '12', n: 80},{a: 'item', t: '1', n: 120000},{a: 'attr', t: 'jinbi', n: 100000}] }, + { ph: [101,99999], prize: [{a: 'item', t: '12', n: 60},{a: 'item', t: '1', n: 100000},{a: 'attr', t: 'jinbi', n: 50000}] }, + ], + "2": [ + { ph: [1,1], prize: [{a: 'item', t: '10', n: 50},{a: 'item', t: '9', n: 500},{a: 'attr', t: 'jinbi', n: 500000}] }, + { ph: [2,2], prize: [{a: 'item', t: '10', n: 30},{a: 'item', t: '9', n: 300},{a: 'attr', t: 'jinbi', n: 400000}] }, + { ph: [3,3], prize: [{a: 'item', t: '10', n: 25},{a: 'item', t: '9', n: 200},{a: 'attr', t: 'jinbi', n: 300000}] }, + { ph: [4,10], prize: [{a: 'item', t: '10', n: 20},{a: 'item', t: '9', n: 150},{a: 'attr', t: 'jinbi', n: 250000}] }, + { ph: [11,20], prize: [{a: 'item', t: '10', n: 15},{a: 'item', t: '9', n: 130},{a: 'attr', t: 'jinbi', n: 200000}] }, + { ph: [21,50], prize: [{a: 'item', t: '10', n: 10},{a: 'item', t: '9', n: 100},{a: 'attr', t: 'jinbi', n: 150000}] }, + { ph: [51,100], prize: [{a: 'item', t: '10', n: 8},{a: 'item', t: '9', n: 80},{a: 'attr', t: 'jinbi', n: 100000}] }, + { ph: [101,99999], prize: [{a: 'item', t: '10', n: 5},{a: 'item', t: '9', n: 60},{a: 'attr', t: 'jinbi', n: 50000}] }, + ] + }, + email: { + titel: 'intr_qjzzd_titel_1', + content: 'intr_qjzzd_content_1' + }, + fightNum: 999999, + //BOSS的ID + boss: [ + '17001', + '17002', + '17003' + ], + // 三个boss出现的时间,周几到周几 + "bossTime": { + "0": [1, 2], + "1": [3, 4], + "2": [5, 7] + }, + // 每次挑战奖励 + time: [0, 85800], + fightPirze: { + "1": {prize: [{a: 'attr', t: 'jinbi', n: 20000}], dlz: [80001]}, + "2": {prize: [{a: 'attr', t: 'jinbi', n: 30000}], dlz: [80001]}, + "3": {prize: [{a: 'attr', t: 'jinbi', n: 30000}], dlz: [80001]} + } +} \ No newline at end of file diff --git a/src/json/ranking.json b/src/json/ranking.json new file mode 100644 index 0000000..6fa7113 --- /dev/null +++ b/src/json/ranking.json @@ -0,0 +1,47 @@ +{ + "1": { + "id": 1, + "key": "tanxian", + "name": "ranking_name_3", + "undefined": "主线进度", + "img": "phb_zxjd", + "des": "ranking_des_1", + "bg": "bg_phb_zx" + }, + "2": { + "id": 2, + "key": "jjc", + "name": "ranking_name_1", + "undefined": "竞技场", + "img": "phb_jjc", + "des": "ranking_des_3", + "bg": "bg_phb_gb" + }, + "3": { + "id": 3, + "key": "zhanli", + "name": "ranking_name_2", + "undefined": "干部战力", + "img": "phb_yx", + "des": "ranking_des_3", + "bg": "bg_phb_zl" + }, + "4": { + "id": 4, + "key": "tujian", + "name": "ranking_name_5", + "undefined": "图鉴", + "img": "phb_tj1", + "des": "ranking_des_4", + "bg": "bg_phb_gb" + }, + "5": { + "id": 5, + "key": "zccg", + "name": "ranking_name_4", + "undefined": "斩草除根", + "img": "phb_zccg", + "des": "ranking_des_5", + "bg": "bg_phb_zx" + } +} \ No newline at end of file diff --git a/src/json/shili_com.json5 b/src/json/shili_com.json5 new file mode 100644 index 0000000..ba3c0ab --- /dev/null +++ b/src/json/shili_com.json5 @@ -0,0 +1,65 @@ +{ + //公会徽章 + badges: ['1', '2', '3', '4', '5'], + //默认公告 + defaultNotice: 'intr_shili_com_defaultNotice_1', + //默认加入势力所需等级 + defaultJoinLv: 10, + //默认自动批准加入势力 + defaultAutoJoin: true, + //创建势力所需vip + createVip: 1, + //创建势力消耗 + createNeed: [{a: 'attr', t: 'rmbmoney', n: 200}], + //修改名字消耗 + changeNameNeed: [{a: 'attr', t: 'rmbmoney', n: 200}], + //势力捐献 + juanxian: [ + { need: [{a: 'attr', t: 'jinbi', n: 20000}], prize: [{a: 'item', t: '15', n: 20}], maxNum: 1, addExp: 30, vipAddNum: [] }, + { need: [{a: 'attr', t: 'rmbmoney', n: 100}], prize: [{a: 'item', t: '15', n: 150}], maxNum: 2, addExp: 50, vipAddNum: [] }, + { need: [{a: 'attr', t: 'rmbmoney', n: 200}], prize: [{a: 'item', t: '15', n: 300}], maxNum: 3, addExp: 100, vipAddNum: [1,1,1,1,1,1,1,1,3,3,3,5,5,7,9,13,15,21] }, + ], + //弹劾时间 + tanheTime: 86400, + //公会任务 + ghTask: [ + { total: 30, prize: [{a: 'item', t: '19', n: 1},{a: 'item', t: '9', n: 10},{a: 'attr', t: 'jinbi', n: 50000}]}, + { total: 60, prize: [{a: 'item', t: '19', n: 1},{a: 'item', t: '9', n: 15},{a: 'attr', t: 'jinbi', n: 100000}]}, + { total: 90, prize: [{a: 'item', t: '19', n: 1},{a: 'item', t: '9', n: 20},{a: 'attr', t: 'jinbi', n: 150000}]}, + { total: 120, prize: [{a: 'item', t: '19', n: 1},{a: 'item', t: '9', n: 25},{a: 'attr', t: 'jinbi', n: 200000}]}, + { total: 150, prize: [{a: 'item', t: '19', n: 2},{a: 'item', t: '9', n: 30},{a: 'attr', t: 'jinbi', n: 300000}]}, + ], + //公会个人任务 + task: [ + { taskId: 'gonghui/Jx', taskType: 'day', total: 1, prize: [{a: 'item', t: '15', n: 5}], addExp: 25, title: 'intr_shilitask_com_title_1', intr: '势力捐献' , tiaozhuan:20, open:1 }, + { taskId: 'shop/Buy/2', taskType: 'day', total: 1, prize: [{a: 'item', t: '15', n: 5}], addExp: 25, title: 'intr_shilitask_com_title_2', intr: '后勤部购买商品', tiaozhuan:39, open:1 }, + { taskId: 'gonghui/FbFight', taskType: 'day', total: 1, prize: [{a: 'item', t: '15', n: 5}], addExp: 25, title: 'intr_shilitask_com_title_3', intr: '挑战公会副本', tiaozhuan:19, open:2 }, + { taskId: 'ganhai/Select', taskType: 'day', total: 1, prize: [{a: 'item', t: '15', n: 5}], addExp: 25, title: 'intr_shilitask_com_title_4', intr: '赶海', tiaozhuan:23, open:1 }, + { taskId: 'ganhai/Fight', taskType: 'day', total: 2, prize: [{a: 'item', t: '15', n: 5}], addExp: 25, title: 'intr_shilitask_com_title_5', intr: '赶海挑战他人', tiaozhuan:23, open:1 }, + { taskId: 'gonghuibaozang/Lottery', taskType: 'day', total: 1, prize: [{a: 'item', t: '15', n: 5}], addExp: 25, title: 'intr_shilitask_com_title_6', intr: '势力宝藏抽奖', tiaozhuan:46, open:2 } + ], + //名称字数限制 + maxNameLength:8, + //公告字数限制 + maxNoticeLength:30, + //退出公会二次确认框文本 + exitGuildConfirm:'intr_exitGuild_tips_1', + //公会副本挑战次数 + fightNum: 2, + //公会副本挑战次数购买消耗 + fightNumBuyNeed: [{a: 'attr', t: 'rmbmoney', n: 20},{a: 'attr', t: 'rmbmoney', n: 40},{a: 'attr', t: 'rmbmoney', n: 80}], + //公会副本挑战邮件 + email: { + titel: 'intr_shili_com_titel_4', + content: 'intr_shili_com_content_1' + }, + //资源互助 + resHelp: [ + { need: {a: 'item', t: '4', n: 1}, num: 35, helpPrizeDrop: '11', }, + { need: {a: 'item', t: '12', n: 100}, num: 35, helpPrizeDrop: '11', }, + { need: {a: 'item', t: '2', n: 150}, num: 35, helpPrizeDrop: '11', }, + { need: {a: 'item', t: '18', n: 10}, num: 35, helpPrizeDrop: '11', }, + { need: {a: 'item', t: '10', n: 10}, num: 35, helpPrizeDrop: '11', }, + { need: {a: 'item', t: '21', n: 10}, num: 35, helpPrizeDrop: '11', } + ] +} \ No newline at end of file diff --git a/src/json/shili_fb.json b/src/json/shili_fb.json new file mode 100644 index 0000000..94b85a9 --- /dev/null +++ b/src/json/shili_fb.json @@ -0,0 +1,392 @@ +{ + "1": { + "id": 1, + "chapters": 1, + "img": "bg_jq2", + "npc": 12001, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_1", + "bossspine": 3001 + }, + "2": { + "id": 2, + "chapters": 1, + "img": "bg_jq2", + "npc": 12002, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_2", + "bossspine": 3002 + }, + "3": { + "id": 3, + "chapters": 1, + "img": "bg_jq2", + "npc": 12003, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_3", + "bossspine": 3003 + }, + "4": { + "id": 4, + "chapters": 1, + "img": "bg_jq2", + "npc": 12004, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_4", + "bossspine": 3004 + }, + "5": { + "id": 5, + "chapters": 1, + "img": "bg_jq2", + "npc": 12005, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_5", + "bossspine": 3005 + }, + "6": { + "id": 6, + "chapters": 2, + "img": "bg_jq2", + "npc": 12006, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_6", + "bossspine": 3006 + }, + "7": { + "id": 7, + "chapters": 2, + "img": "bg_jq2", + "npc": 12007, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_7", + "bossspine": 3007 + }, + "8": { + "id": 8, + "chapters": 2, + "img": "bg_jq2", + "npc": 12008, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_8", + "bossspine": 3008 + }, + "9": { + "id": 9, + "chapters": 2, + "img": "bg_jq2", + "npc": 12009, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_9", + "bossspine": 3009 + }, + "10": { + "id": 10, + "chapters": 2, + "img": "bg_jq2", + "npc": 12010, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_10", + "bossspine": 3010 + }, + "11": { + "id": 11, + "chapters": 3, + "img": "bg_jq2", + "npc": 12011, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_11", + "bossspine": 3011 + }, + "12": { + "id": 12, + "chapters": 3, + "img": "bg_jq2", + "npc": 12012, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_12", + "bossspine": 3012 + }, + "13": { + "id": 13, + "chapters": 3, + "img": "bg_jq2", + "npc": 12013, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_13", + "bossspine": 3013 + }, + "14": { + "id": 14, + "chapters": 3, + "img": "bg_jq2", + "npc": 12014, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_14", + "bossspine": 3014 + }, + "15": { + "id": 15, + "chapters": 3, + "img": "bg_jq2", + "npc": 12015, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_15", + "bossspine": 3015 + }, + "16": { + "id": 16, + "chapters": 4, + "img": "bg_jq2", + "npc": 12016, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_16", + "bossspine": 4001 + }, + "17": { + "id": 17, + "chapters": 4, + "img": "bg_jq2", + "npc": 12017, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_17", + "bossspine": 4002 + }, + "18": { + "id": 18, + "chapters": 4, + "img": "bg_jq2", + "npc": 12018, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_18", + "bossspine": 4003 + }, + "19": { + "id": 19, + "chapters": 4, + "img": "bg_jq2", + "npc": 12019, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_19", + "bossspine": 4004 + }, + "20": { + "id": 20, + "chapters": 4, + "img": "bg_jq2", + "npc": 12020, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_20", + "bossspine": 4005 + }, + "21": { + "id": 21, + "chapters": 5, + "img": "bg_jq2", + "npc": 12021, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_21", + "bossspine": 4006 + }, + "22": { + "id": 22, + "chapters": 5, + "img": "bg_jq2", + "npc": 12022, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_22", + "bossspine": 4007 + }, + "23": { + "id": 23, + "chapters": 5, + "img": "bg_jq2", + "npc": 12023, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_23", + "bossspine": 4008 + }, + "24": { + "id": 24, + "chapters": 5, + "img": "bg_jq2", + "npc": 12024, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_24", + "bossspine": 4009 + }, + "25": { + "id": 25, + "chapters": 5, + "img": "bg_jq2", + "npc": 12025, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_25", + "bossspine": 4010 + }, + "26": { + "id": 26, + "chapters": 6, + "img": "bg_jq2", + "npc": 12026, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_26", + "bossspine": 4011 + }, + "27": { + "id": 27, + "chapters": 6, + "img": "bg_jq2", + "npc": 12027, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_27", + "bossspine": 4012 + }, + "28": { + "id": 28, + "chapters": 6, + "img": "bg_jq2", + "npc": 12028, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_28", + "bossspine": 4013 + }, + "29": { + "id": 29, + "chapters": 6, + "img": "bg_jq2", + "npc": 12029, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_29", + "bossspine": 4014 + }, + "30": { + "id": 30, + "chapters": 6, + "img": "bg_jq2", + "npc": 12030, + "fightPrize": [ + 101, + 102 + ], + "gongxianprize": 2000, + "name": "intr_shili_name_30", + "bossspine": 4015 + } +} \ No newline at end of file diff --git a/src/json/shili_fbyj.json b/src/json/shili_fbyj.json new file mode 100644 index 0000000..d3d5cef --- /dev/null +++ b/src/json/shili_fbyj.json @@ -0,0 +1,2582 @@ +{ + "1": [ + { + "id": 1, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 1, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 1, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 1, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 1, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 1, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "2": [ + { + "id": 2, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 2, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 2, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 2, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 2, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 2, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "3": [ + { + "id": 3, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 3, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 3, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 3, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 3, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 3, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "4": [ + { + "id": 4, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 4, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 4, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 4, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 4, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 4, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "5": [ + { + "id": 5, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 5, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 5, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 5, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 5, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 5, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "6": [ + { + "id": 6, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 6, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 6, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 6, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 6, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 6, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "7": [ + { + "id": 7, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 7, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 7, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 7, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 7, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 7, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "8": [ + { + "id": 8, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 8, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 8, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 8, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 8, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 8, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "9": [ + { + "id": 9, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 9, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 9, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 9, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 9, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 9, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "10": [ + { + "id": 10, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 10, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 10, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 10, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 10, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 10, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "11": [ + { + "id": 11, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 11, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 11, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 11, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 11, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 11, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "12": [ + { + "id": 12, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 12, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 12, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 12, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 12, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 12, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "13": [ + { + "id": 13, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 13, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 13, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 13, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 13, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 13, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "14": [ + { + "id": 14, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 14, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 14, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 14, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 14, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 14, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "15": [ + { + "id": 15, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 15, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 15, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 15, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 15, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 15, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "16": [ + { + "id": 16, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 16, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 16, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 16, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 16, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 16, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "17": [ + { + "id": 17, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 17, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 17, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 17, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 17, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 17, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "18": [ + { + "id": 18, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 18, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 18, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 18, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 18, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 18, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "19": [ + { + "id": 19, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 19, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 19, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 19, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 19, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 19, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "20": [ + { + "id": 20, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 20, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 20, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 20, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 20, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 20, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "21": [ + { + "id": 21, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 21, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 21, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 21, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 21, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 21, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "22": [ + { + "id": 22, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 22, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 22, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 22, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 22, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 22, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "23": [ + { + "id": 23, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 23, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 23, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 23, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 23, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 23, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "24": [ + { + "id": 24, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 24, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 24, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 24, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 24, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 24, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "25": [ + { + "id": 25, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 25, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 25, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 25, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 25, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 25, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "26": [ + { + "id": 26, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 26, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 26, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 26, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 26, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 26, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "27": [ + { + "id": 27, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 27, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 27, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 27, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 27, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 27, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "28": [ + { + "id": 28, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 28, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 28, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 28, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 28, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 28, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "29": [ + { + "id": 29, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 29, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 29, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 29, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 29, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 29, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ], + "30": [ + { + "id": 30, + "rank": [ + 1, + 1 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ] + }, + { + "id": 30, + "rank": [ + 2, + 2 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ] + }, + { + "id": 30, + "rank": [ + 3, + 3 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 120 + } + ] + }, + { + "id": 30, + "rank": [ + 4, + 5 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ] + }, + { + "id": 30, + "rank": [ + 6, + 10 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ] + }, + { + "id": 30, + "rank": [ + 11, + 999 + ], + "prize": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ] + } + ] +} \ No newline at end of file diff --git a/src/json/shili_lv.json b/src/json/shili_lv.json new file mode 100644 index 0000000..02d9539 --- /dev/null +++ b/src/json/shili_lv.json @@ -0,0 +1,62 @@ +{ + "1": { + "lv": 1, + "exp": 0, + "maxNum": 20 + }, + "2": { + "lv": 2, + "exp": 7000, + "maxNum": 22 + }, + "3": { + "lv": 3, + "exp": 15400, + "maxNum": 24 + }, + "4": { + "lv": 4, + "exp": 42000, + "maxNum": 26 + }, + "5": { + "lv": 5, + "exp": 72800, + "maxNum": 28 + }, + "6": { + "lv": 6, + "exp": 107800, + "maxNum": 30 + }, + "7": { + "lv": 7, + "exp": 147000, + "maxNum": 32 + }, + "8": { + "lv": 8, + "exp": 201600, + "maxNum": 34 + }, + "9": { + "lv": 9, + "exp": 261800, + "maxNum": 36 + }, + "10": { + "lv": 10, + "exp": 340200, + "maxNum": 38 + }, + "11": { + "lv": 11, + "exp": 438900, + "maxNum": 40 + }, + "12": { + "lv": 12, + "exp": 560000, + "maxNum": 42 + } +} \ No newline at end of file diff --git a/src/json/shili_wz.json b/src/json/shili_wz.json new file mode 100644 index 0000000..3261760 --- /dev/null +++ b/src/json/shili_wz.json @@ -0,0 +1,682 @@ +{ + "1": { + "1": { + "type": 1, + "lv": 1, + "buff": { + "hp": 726 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 1175 + } + ] + }, + "2": { + "type": 1, + "lv": 2, + "buff": { + "hp": 1528 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 2350 + } + ] + }, + "3": { + "type": 1, + "lv": 3, + "buff": { + "hp": 2508 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 5875 + } + ] + }, + "4": { + "type": 1, + "lv": 4, + "buff": { + "hp": 3276 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 9400 + } + ] + }, + "5": { + "type": 1, + "lv": 5, + "buff": { + "hp": 4147 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 12925 + } + ] + }, + "6": { + "type": 1, + "lv": 6, + "buff": { + "hp": 5120 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 16450 + } + ] + }, + "7": { + "type": 1, + "lv": 7, + "buff": { + "hp": 6195 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 21150 + } + ] + }, + "8": { + "type": 1, + "lv": 8, + "buff": { + "hp": 7372 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 25850 + } + ] + }, + "9": { + "type": 1, + "lv": 9, + "buff": { + "hp": 8652 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 31725 + } + ] + }, + "10": { + "type": 1, + "lv": 10, + "buff": { + "hp": 10035 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 38775 + } + ] + }, + "11": { + "type": 1, + "lv": 11, + "buff": { + "hp": 11550 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 48025 + } + ] + }, + "12": { + "type": 1, + "lv": 12, + "buff": { + "hp": 13500 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 60000 + } + ] + } + }, + "2": { + "1": { + "type": 2, + "lv": 1, + "buff": { + "def": 137 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 1175 + } + ] + }, + "2": { + "type": 2, + "lv": 2, + "buff": { + "def": 184 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 2350 + } + ] + }, + "3": { + "type": 2, + "lv": 3, + "buff": { + "def": 236 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 5875 + } + ] + }, + "4": { + "type": 2, + "lv": 4, + "buff": { + "def": 292 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 9400 + } + ] + }, + "5": { + "type": 2, + "lv": 5, + "buff": { + "def": 352 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 12925 + } + ] + }, + "6": { + "type": 2, + "lv": 6, + "buff": { + "def": 417 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 16450 + } + ] + }, + "7": { + "type": 2, + "lv": 7, + "buff": { + "def": 486 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 21150 + } + ] + }, + "8": { + "type": 2, + "lv": 8, + "buff": { + "def": 559 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 25850 + } + ] + }, + "9": { + "type": 2, + "lv": 9, + "buff": { + "def": 636 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 31725 + } + ] + }, + "10": { + "type": 2, + "lv": 10, + "buff": { + "def": 716 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 38775 + } + ] + }, + "11": { + "type": 2, + "lv": 11, + "buff": { + "def": 801 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 48025 + } + ] + }, + "12": { + "type": 2, + "lv": 12, + "buff": { + "def": 900 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 60000 + } + ] + } + }, + "3": { + "1": { + "type": 3, + "lv": 1, + "buff": { + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 1175 + } + ] + }, + "2": { + "type": 3, + "lv": 2, + "buff": { + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 2350 + } + ] + }, + "3": { + "type": 3, + "lv": 3, + "buff": { + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 5875 + } + ] + }, + "4": { + "type": 3, + "lv": 4, + "buff": { + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 9400 + } + ] + }, + "5": { + "type": 3, + "lv": 5, + "buff": { + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 12925 + } + ] + }, + "6": { + "type": 3, + "lv": 6, + "buff": { + "speed": 60 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 16450 + } + ] + }, + "7": { + "type": 3, + "lv": 7, + "buff": { + "speed": 70 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 21150 + } + ] + }, + "8": { + "type": 3, + "lv": 8, + "buff": { + "speed": 80 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 25850 + } + ] + }, + "9": { + "type": 3, + "lv": 9, + "buff": { + "speed": 90 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 31725 + } + ] + }, + "10": { + "type": 3, + "lv": 10, + "buff": { + "speed": 100 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 38775 + } + ] + }, + "11": { + "type": 3, + "lv": 11, + "buff": { + "speed": 110 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 48025 + } + ] + }, + "12": { + "type": 3, + "lv": 12, + "buff": { + "speed": 120 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 60000 + } + ] + } + }, + "4": { + "1": { + "type": 4, + "lv": 1, + "buff": { + "atk": 104 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 1175 + } + ] + }, + "2": { + "type": 4, + "lv": 2, + "buff": { + "atk": 135 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 2350 + } + ] + }, + "3": { + "type": 4, + "lv": 3, + "buff": { + "atk": 169 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 5875 + } + ] + }, + "4": { + "type": 4, + "lv": 4, + "buff": { + "atk": 207 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 9400 + } + ] + }, + "5": { + "type": 4, + "lv": 5, + "buff": { + "atk": 247 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 12925 + } + ] + }, + "6": { + "type": 4, + "lv": 6, + "buff": { + "atk": 289 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 16450 + } + ] + }, + "7": { + "type": 4, + "lv": 7, + "buff": { + "atk": 334 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 21150 + } + ] + }, + "8": { + "type": 4, + "lv": 8, + "buff": { + "atk": 381 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 25850 + } + ] + }, + "9": { + "type": 4, + "lv": 9, + "buff": { + "atk": 431 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 31725 + } + ] + }, + "10": { + "type": 4, + "lv": 10, + "buff": { + "atk": 483 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 38775 + } + ] + }, + "11": { + "type": 4, + "lv": 11, + "buff": { + "atk": 535 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 48025 + } + ] + }, + "12": { + "type": 4, + "lv": 12, + "buff": { + "atk": 600 + }, + "need": [ + { + "a": "item", + "t": "15", + "n": 60000 + } + ] + } + } +} \ No newline at end of file diff --git a/src/json/shilihuizhang.json b/src/json/shilihuizhang.json new file mode 100644 index 0000000..478ade6 --- /dev/null +++ b/src/json/shilihuizhang.json @@ -0,0 +1,33 @@ +{ + "1": { + "icon": "icon_gh_001" + }, + "2": { + "icon": "icon_gh_002" + }, + "3": { + "icon": "icon_gh_003" + }, + "4": { + "icon": "icon_gh_004" + }, + "5": { + "icon": "icon_gh_005" + }, + "6": { + "icon": "icon_gh_006" + }, + "7": { + "icon": "icon_gh_007" + }, + "8": { + "icon": "icon_gh_008" + }, + "9": { + "icon": "icon_gh_009" + }, + "10": { + "icon": "icon_gh_0010" + } +} + diff --git a/src/json/shiwu.json b/src/json/shiwu.json new file mode 100644 index 0000000..aa1d1e2 --- /dev/null +++ b/src/json/shiwu.json @@ -0,0 +1,1277 @@ +{ + "1": { + "id": 1, + "name": "intr_shiwu_name_1", + "undefined": "钛戒", + "icon": "ornaments_1101", + "lv": 25, + "next": 2, + "buff": { + "mindps": [ + 160, + 200 + ] + }, + "zhuanshu": 700 + }, + "2": { + "id": 2, + "name": "intr_shiwu_name_2", + "undefined": "精品钛戒", + "icon": "ornaments_1101", + "lv": 30, + "next": 3, + "buff": { + "mindps": [ + 214, + 268 + ] + }, + "zhuanshu": 700 + }, + "3": { + "id": 3, + "name": "intr_shiwu_name_3", + "undefined": "钛钢戒", + "icon": "ornaments_1102", + "lv": 35, + "next": 4, + "buff": { + "mindps": [ + 275, + 344 + ] + }, + "zhuanshu": 700 + }, + "4": { + "id": 4, + "name": "intr_shiwu_name_4", + "undefined": "精品钛钢戒", + "icon": "ornaments_1102", + "lv": 40, + "next": 5, + "buff": { + "mindps": [ + 340, + 426 + ] + }, + "zhuanshu": 700 + }, + "5": { + "id": 5, + "name": "intr_shiwu_name_5", + "undefined": "铜蛇戒", + "icon": "ornaments_1103", + "lv": 45, + "next": 6, + "buff": { + "mindps": [ + 411, + 514 + ] + }, + "zhuanshu": 700 + }, + "6": { + "id": 6, + "name": "intr_shiwu_name_6", + "undefined": "精品铜蛇戒", + "icon": "ornaments_1103", + "lv": 50, + "next": 7, + "buff": { + "mindps": [ + 486, + 608 + ] + }, + "zhuanshu": 700 + }, + "7": { + "id": 7, + "name": "intr_shiwu_name_7", + "undefined": "纯银戒", + "icon": "ornaments_1104", + "lv": 55, + "next": 8, + "buff": { + "mindps": [ + 567, + 709 + ] + }, + "zhuanshu": 700 + }, + "8": { + "id": 8, + "name": "intr_shiwu_name_8", + "undefined": "精品纯银戒", + "icon": "ornaments_1104", + "lv": 60, + "next": 9, + "buff": { + "mindps": [ + 652, + 815 + ] + }, + "zhuanshu": 700 + }, + "9": { + "id": 9, + "name": "intr_shiwu_name_9", + "undefined": "银镀金戒", + "icon": "ornaments_1105", + "lv": 65, + "next": 10, + "buff": { + "mindps": [ + 740, + 926 + ] + }, + "zhuanshu": 700 + }, + "10": { + "id": 10, + "name": "intr_shiwu_name_10", + "undefined": "精品银镀金戒", + "icon": "ornaments_1105", + "lv": 70, + "next": 11, + "buff": { + "mindps": [ + 834, + 1043 + ] + }, + "zhuanshu": 700 + }, + "11": { + "id": 11, + "name": "intr_shiwu_name_11", + "undefined": "银闪电", + "icon": "ornaments_1106", + "lv": 75, + "next": 12, + "buff": { + "mindps": [ + 1000, + 1250 + ] + }, + "zhuanshu": 700 + }, + "12": { + "id": 12, + "name": "intr_shiwu_name_12", + "undefined": "精品银闪电", + "icon": "ornaments_1106", + "lv": 80, + "next": 13, + "buff": { + "mindps": [ + 1108, + 1386 + ] + }, + "zhuanshu": 700 + }, + "13": { + "id": 13, + "name": "intr_shiwu_name_13", + "undefined": "绅士", + "icon": "ornaments_1107", + "lv": 85, + "next": 14, + "buff": { + "mindps": [ + 1308, + 1635 + ] + }, + "zhuanshu": 700 + }, + "14": { + "id": 14, + "name": "intr_shiwu_name_14", + "undefined": "武魂", + "icon": "ornaments_1108", + "lv": 90, + "next": 15, + "buff": { + "mindps": [ + 1433, + 1792 + ] + }, + "zhuanshu": 700 + }, + "15": { + "id": 15, + "name": "intr_shiwu_name_15", + "undefined": "银月光耀", + "icon": "ornaments_1109", + "lv": 95, + "next": 16, + "buff": { + "mindps": [ + 1563, + 1954 + ] + }, + "zhuanshu": 700 + }, + "16": { + "id": 16, + "name": "intr_shiwu_name_16", + "undefined": "金鹰之翼", + "icon": "ornaments_1110", + "lv": 100, + "next": 16, + "buff": { + "mindps": [ + 1696, + 2121 + ] + }, + "zhuanshu": 700 + }, + "17": { + "id": 17, + "name": "intr_shiwu_name_17", + "undefined": "齿轮", + "icon": "ornaments_2101", + "lv": 28, + "next": 18, + "buff": { + "maxdps": [ + 220, + 276 + ] + }, + "zhuanshu": 700 + }, + "18": { + "id": 18, + "name": "intr_shiwu_name_18", + "undefined": "精品齿轮", + "icon": "ornaments_2101", + "lv": 33, + "next": 19, + "buff": { + "maxdps": [ + 288, + 360 + ] + }, + "zhuanshu": 700 + }, + "19": { + "id": 19, + "name": "intr_shiwu_name_19", + "undefined": "五边形", + "icon": "ornaments_2102", + "lv": 38, + "next": 20, + "buff": { + "maxdps": [ + 360, + 451 + ] + }, + "zhuanshu": 700 + }, + "20": { + "id": 20, + "name": "intr_shiwu_name_20", + "undefined": "精品五边形", + "icon": "ornaments_2102", + "lv": 43, + "next": 21, + "buff": { + "maxdps": [ + 439, + 549 + ] + }, + "zhuanshu": 700 + }, + "21": { + "id": 21, + "name": "intr_shiwu_name_21", + "undefined": "身份牌", + "icon": "ornaments_2103", + "lv": 48, + "next": 22, + "buff": { + "maxdps": [ + 524, + 655 + ] + }, + "zhuanshu": 700 + }, + "22": { + "id": 22, + "name": "intr_shiwu_name_22", + "undefined": "特制身份牌", + "icon": "ornaments_2103", + "lv": 53, + "next": 23, + "buff": { + "maxdps": [ + 614, + 768 + ] + }, + "zhuanshu": 700 + }, + "23": { + "id": 23, + "name": "intr_shiwu_name_23", + "undefined": "装甲齿轮", + "icon": "ornaments_2104", + "lv": 58, + "next": 24, + "buff": { + "maxdps": [ + 709, + 887 + ] + }, + "zhuanshu": 700 + }, + "24": { + "id": 24, + "name": "intr_shiwu_name_24", + "undefined": "精品装甲齿轮", + "icon": "ornaments_2104", + "lv": 63, + "next": 25, + "buff": { + "maxdps": [ + 810, + 1013 + ] + }, + "zhuanshu": 700 + }, + "25": { + "id": 25, + "name": "intr_shiwu_name_25", + "undefined": "银子弹", + "icon": "ornaments_2105", + "lv": 68, + "next": 26, + "buff": { + "maxdps": [ + 915, + 1144 + ] + }, + "zhuanshu": 700 + }, + "26": { + "id": 26, + "name": "intr_shiwu_name_26", + "undefined": "特制银子弹", + "icon": "ornaments_2105", + "lv": 73, + "next": 27, + "buff": { + "maxdps": [ + 1025, + 1282 + ] + }, + "zhuanshu": 700 + }, + "27": { + "id": 27, + "name": "intr_shiwu_name_27", + "undefined": "铁之渊", + "icon": "ornaments_2106", + "lv": 78, + "next": 28, + "buff": { + "maxdps": [ + 1216, + 1521 + ] + }, + "zhuanshu": 700 + }, + "28": { + "id": 28, + "name": "intr_shiwu_name_28", + "undefined": "鳞纹芯", + "icon": "ornaments_2107", + "lv": 83, + "next": 29, + "buff": { + "maxdps": [ + 1344, + 1681 + ] + }, + "zhuanshu": 700 + }, + "29": { + "id": 29, + "name": "intr_shiwu_name_29", + "undefined": "金双弹", + "icon": "ornaments_2108", + "lv": 88, + "next": 30, + "buff": { + "maxdps": [ + 1572, + 1965 + ] + }, + "zhuanshu": 700 + }, + "30": { + "id": 30, + "name": "intr_shiwu_name_30", + "undefined": "豪车锁", + "icon": "ornaments_2109", + "lv": 93, + "next": 31, + "buff": { + "maxdps": [ + 1717, + 2147 + ] + }, + "zhuanshu": 700 + }, + "31": { + "id": 31, + "name": "intr_shiwu_name_31", + "undefined": "幽蓝恶鬼", + "icon": "ornaments_2110", + "lv": 98, + "next": 31, + "buff": { + "maxdps": [ + 1867, + 2334 + ] + }, + "zhuanshu": 700 + }, + "32": { + "id": 32, + "name": "intr_shiwu_name_32", + "undefined": "铜皮带扣", + "icon": "ornaments_3101", + "lv": 25, + "next": 33, + "buff": { + "hp": [ + 1280, + 1600 + ] + }, + "zhuanshu": 700 + }, + "33": { + "id": 33, + "name": "intr_shiwu_name_33", + "undefined": "实心铜皮带扣", + "icon": "ornaments_3101", + "lv": 30, + "next": 34, + "buff": { + "hp": [ + 1843, + 2304 + ] + }, + "zhuanshu": 700 + }, + "34": { + "id": 34, + "name": "intr_shiwu_name_34", + "undefined": "铁皮带扣", + "icon": "ornaments_3102", + "lv": 35, + "next": 35, + "buff": { + "hp": [ + 2508, + 3136 + ] + }, + "zhuanshu": 700 + }, + "35": { + "id": 35, + "name": "intr_shiwu_name_35", + "undefined": "精品铁皮带扣", + "icon": "ornaments_3102", + "lv": 40, + "next": 36, + "buff": { + "hp": [ + 3276, + 4096 + ] + }, + "zhuanshu": 700 + }, + "36": { + "id": 36, + "name": "intr_shiwu_name_36", + "undefined": "镀金皮带扣", + "icon": "ornaments_3103", + "lv": 45, + "next": 37, + "buff": { + "hp": [ + 4147, + 5184 + ] + }, + "zhuanshu": 700 + }, + "37": { + "id": 37, + "name": "intr_shiwu_name_37", + "undefined": "纯金皮带扣", + "icon": "ornaments_3103", + "lv": 50, + "next": 38, + "buff": { + "hp": [ + 5120, + 6400 + ] + }, + "zhuanshu": 700 + }, + "38": { + "id": 38, + "name": "intr_shiwu_name_38", + "undefined": "时尚银皮带扣", + "icon": "ornaments_3104", + "lv": 55, + "next": 39, + "buff": { + "hp": [ + 6195, + 7744 + ] + }, + "zhuanshu": 700 + }, + "39": { + "id": 39, + "name": "intr_shiwu_name_39", + "undefined": "精品银皮带扣", + "icon": "ornaments_3104", + "lv": 60, + "next": 40, + "buff": { + "hp": [ + 7372, + 9216 + ] + }, + "zhuanshu": 700 + }, + "40": { + "id": 40, + "name": "intr_shiwu_name_40", + "undefined": "星徽皮带扣", + "icon": "ornaments_3105", + "lv": 65, + "next": 41, + "buff": { + "hp": [ + 8652, + 10816 + ] + }, + "zhuanshu": 700 + }, + "41": { + "id": 41, + "name": "intr_shiwu_name_41", + "undefined": "精品星徽皮带扣", + "icon": "ornaments_3105", + "lv": 70, + "next": 42, + "buff": { + "hp": [ + 10035, + 12544 + ] + }, + "zhuanshu": 700 + }, + "42": { + "id": 42, + "name": "intr_shiwu_name_42", + "undefined": "挂饰皮带扣", + "icon": "ornaments_3106", + "lv": 75, + "next": 43, + "buff": { + "hp": [ + 12251, + 15314 + ] + }, + "zhuanshu": 700 + }, + "43": { + "id": 43, + "name": "intr_shiwu_name_43", + "undefined": "精品挂饰皮带扣", + "icon": "ornaments_3106", + "lv": 80, + "next": 44, + "buff": { + "hp": [ + 13939, + 17424 + ] + }, + "zhuanshu": 700 + }, + "44": { + "id": 44, + "name": "intr_shiwu_name_44", + "undefined": "纪念皮带扣", + "icon": "ornaments_3107", + "lv": 85, + "next": 45, + "buff": { + "hp": [ + 16704, + 20880 + ] + }, + "zhuanshu": 700 + }, + "45": { + "id": 45, + "name": "intr_shiwu_name_45", + "undefined": "定制皮带扣", + "icon": "ornaments_3108", + "lv": 90, + "next": 46, + "buff": { + "hp": [ + 18727, + 23409 + ] + }, + "zhuanshu": 700 + }, + "46": { + "id": 46, + "name": "intr_shiwu_name_46", + "undefined": "华丽皮带扣", + "icon": "ornaments_3109", + "lv": 95, + "next": 47, + "buff": { + "hp": [ + 20865, + 26082 + ] + }, + "zhuanshu": 700 + }, + "47": { + "id": 47, + "name": "intr_shiwu_name_47", + "undefined": "限量皮带扣", + "icon": "ornaments_3110", + "lv": 100, + "next": 47, + "buff": { + "hp": [ + 23120, + 28900 + ] + }, + "zhuanshu": 700 + }, + "48": { + "id": 48, + "name": "intr_shiwu_name_48", + "undefined": "打磨握把", + "icon": "ornaments_4108", + "lv": 25, + "next": 49, + "buff": { + "def": [ + 137, + 172 + ] + }, + "zhuanshu": 700 + }, + "49": { + "id": 49, + "name": "intr_shiwu_name_49", + "undefined": "线性打磨握把", + "icon": "ornaments_4108", + "lv": 30, + "next": 50, + "buff": { + "def": [ + 184, + 230 + ] + }, + "zhuanshu": 700 + }, + "50": { + "id": 50, + "name": "intr_shiwu_name_50", + "undefined": "舒适握把", + "icon": "ornaments_4106", + "lv": 35, + "next": 51, + "buff": { + "def": [ + 236, + 295 + ] + }, + "zhuanshu": 700 + }, + "51": { + "id": 51, + "name": "intr_shiwu_name_51", + "undefined": "改良舒适握把", + "icon": "ornaments_4106", + "lv": 40, + "next": 52, + "buff": { + "def": [ + 292, + 365 + ] + }, + "zhuanshu": 700 + }, + "52": { + "id": 52, + "name": "intr_shiwu_name_52", + "undefined": "紧密握把", + "icon": "ornaments_4103", + "lv": 45, + "next": 53, + "buff": { + "def": [ + 352, + 441 + ] + }, + "zhuanshu": 700 + }, + "53": { + "id": 53, + "name": "intr_shiwu_name_53", + "undefined": "改良紧密握把", + "icon": "ornaments_4103", + "lv": 50, + "next": 54, + "buff": { + "def": [ + 417, + 522 + ] + }, + "zhuanshu": 700 + }, + "54": { + "id": 54, + "name": "intr_shiwu_name_54", + "undefined": "契合弹匣", + "icon": "ornaments_4104", + "lv": 55, + "next": 55, + "buff": { + "def": [ + 486, + 608 + ] + }, + "zhuanshu": 700 + }, + "55": { + "id": 55, + "name": "intr_shiwu_name_55", + "undefined": "改良契合弹匣", + "icon": "ornaments_4104", + "lv": 60, + "next": 56, + "buff": { + "def": [ + 559, + 699 + ] + }, + "zhuanshu": 700 + }, + "56": { + "id": 56, + "name": "intr_shiwu_name_56", + "undefined": "手拉护木", + "icon": "ornaments_4105", + "lv": 65, + "next": 57, + "buff": { + "def": [ + 636, + 795 + ] + }, + "zhuanshu": 700 + }, + "57": { + "id": 57, + "name": "intr_shiwu_name_57", + "undefined": "特制手拉护木", + "icon": "ornaments_4105", + "lv": 70, + "next": 58, + "buff": { + "def": [ + 716, + 895 + ] + }, + "zhuanshu": 700 + }, + "58": { + "id": 58, + "name": "intr_shiwu_name_58", + "undefined": "三角枪托", + "icon": "ornaments_4107", + "lv": 75, + "next": 59, + "buff": { + "def": [ + 864, + 1081 + ] + }, + "zhuanshu": 700 + }, + "59": { + "id": 59, + "name": "intr_shiwu_name_59", + "undefined": "舒适三角枪托", + "icon": "ornaments_4107", + "lv": 80, + "next": 60, + "buff": { + "def": [ + 959, + 1199 + ] + }, + "zhuanshu": 700 + }, + "60": { + "id": 60, + "name": "intr_shiwu_name_60", + "undefined": "舒适弯枪托", + "icon": "ornaments_4102", + "lv": 85, + "next": 61, + "buff": { + "def": [ + 1138, + 1423 + ] + }, + "zhuanshu": 700 + }, + "61": { + "id": 61, + "name": "intr_shiwu_name_61", + "undefined": "舒适直枪托", + "icon": "ornaments_4101", + "lv": 90, + "next": 62, + "buff": { + "def": [ + 1247, + 1559 + ] + }, + "zhuanshu": 700 + }, + "62": { + "id": 62, + "name": "intr_shiwu_name_62", + "undefined": "优化枪膛", + "icon": "ornaments_4109", + "lv": 95, + "next": 63, + "buff": { + "def": [ + 1360, + 1700 + ] + }, + "zhuanshu": 700 + }, + "63": { + "id": 63, + "name": "intr_shiwu_name_63", + "undefined": "枪支自动部件", + "icon": "ornaments_4110", + "lv": 100, + "next": 63, + "buff": { + "def": [ + 1476, + 1845 + ] + }, + "zhuanshu": 700 + }, + "64": { + "id": 64, + "name": "intr_shiwu_name_64", + "undefined": "地狱门", + "icon": "ornaments_5101", + "lv": 28, + "next": 65, + "buff": { + "atk": [ + 104, + 130 + ] + }, + "zhuanshu": 700 + }, + "65": { + "id": 65, + "name": "intr_shiwu_name_65", + "undefined": "惊魄地狱门", + "icon": "ornaments_5101", + "lv": 33, + "next": 66, + "buff": { + "atk": [ + 135, + 169 + ] + }, + "zhuanshu": 700 + }, + "66": { + "id": 66, + "name": "intr_shiwu_name_66", + "undefined": "灵魄", + "icon": "ornaments_5102", + "lv": 38, + "next": 67, + "buff": { + "atk": [ + 169, + 212 + ] + }, + "zhuanshu": 700 + }, + "67": { + "id": 67, + "name": "intr_shiwu_name_67", + "undefined": "幽深灵魄", + "icon": "ornaments_5102", + "lv": 43, + "next": 68, + "buff": { + "atk": [ + 207, + 259 + ] + }, + "zhuanshu": 700 + }, + "68": { + "id": 68, + "name": "intr_shiwu_name_68", + "undefined": "黑死魂", + "icon": "ornaments_5103", + "lv": 48, + "next": 69, + "buff": { + "atk": [ + 247, + 309 + ] + }, + "zhuanshu": 700 + }, + "69": { + "id": 69, + "name": "intr_shiwu_name_69", + "undefined": "地狱黑死魂", + "icon": "ornaments_5103", + "lv": 53, + "next": 70, + "buff": { + "atk": [ + 289, + 362 + ] + }, + "zhuanshu": 700 + }, + "70": { + "id": 70, + "name": "intr_shiwu_name_70", + "undefined": "雪亡魂", + "icon": "ornaments_5104", + "lv": 58, + "next": 71, + "buff": { + "atk": [ + 334, + 418 + ] + }, + "zhuanshu": 700 + }, + "71": { + "id": 71, + "name": "intr_shiwu_name_71", + "undefined": "幽灵雪亡魂", + "icon": "ornaments_5104", + "lv": 63, + "next": 72, + "buff": { + "atk": [ + 381, + 477 + ] + }, + "zhuanshu": 700 + }, + "72": { + "id": 72, + "name": "intr_shiwu_name_72", + "undefined": "墨绿", + "icon": "ornaments_5105", + "lv": 68, + "next": 73, + "buff": { + "atk": [ + 431, + 539 + ] + }, + "zhuanshu": 700 + }, + "73": { + "id": 73, + "name": "intr_shiwu_name_73", + "undefined": "深沉墨绿", + "icon": "ornaments_5105", + "lv": 73, + "next": 74, + "buff": { + "atk": [ + 483, + 604 + ] + }, + "zhuanshu": 700 + }, + "74": { + "id": 74, + "name": "intr_shiwu_name_74", + "undefined": "热情黄橙", + "icon": "ornaments_5106", + "lv": 78, + "next": 75, + "buff": { + "atk": [ + 596, + 745 + ] + }, + "zhuanshu": 700 + }, + "75": { + "id": 75, + "name": "intr_shiwu_name_75", + "undefined": "棋盘格", + "icon": "ornaments_5107", + "lv": 83, + "next": 76, + "buff": { + "atk": [ + 658, + 823 + ] + }, + "zhuanshu": 700 + }, + "76": { + "id": 76, + "name": "intr_shiwu_name_76", + "undefined": "荆棘林", + "icon": "ornaments_5108", + "lv": 88, + "next": 77, + "buff": { + "atk": [ + 872, + 1091 + ] + }, + "zhuanshu": 700 + }, + "77": { + "id": 77, + "name": "intr_shiwu_name_77", + "undefined": "黑夜之星", + "icon": "ornaments_5109", + "lv": 93, + "next": 78, + "buff": { + "atk": [ + 953, + 1192 + ] + }, + "zhuanshu": 700 + }, + "78": { + "id": 78, + "name": "intr_shiwu_name_78", + "undefined": "教父礼赞", + "icon": "ornaments_5110", + "lv": 98, + "next": 78, + "buff": { + "atk": [ + 1036, + 1296 + ] + }, + "zhuanshu": 700 + }, + "79": { + "id": 79, + "name": "intr_shiwu_name_79", + "undefined": "品尝", + "icon": "ornaments_6101", + "lv": 40, + "next": 0, + "buff": { + "speed": [ + 5, + 8 + ] + }, + "zhuanshu": 1 + }, + "80": { + "id": 80, + "name": "intr_shiwu_name_80", + "undefined": "小酌", + "icon": "ornaments_6102", + "lv": 50, + "next": 0, + "buff": { + "speed": [ + 9, + 13 + ] + }, + "zhuanshu": 1 + }, + "81": { + "id": 81, + "name": "intr_shiwu_name_81", + "undefined": "微醺", + "icon": "ornaments_6103", + "lv": 60, + "next": 0, + "buff": { + "speed": [ + 14, + 18 + ] + }, + "zhuanshu": 1 + }, + "82": { + "id": 82, + "name": "intr_shiwu_name_82", + "undefined": "沉醉", + "icon": "ornaments_6104", + "lv": 70, + "next": 0, + "buff": { + "speed": [ + 19, + 24 + ] + }, + "zhuanshu": 1 + }, + "83": { + "id": 83, + "name": "intr_shiwu_name_83", + "undefined": "酣醉", + "icon": "ornaments_6105", + "lv": 80, + "next": 0, + "buff": { + "speed": [ + 25, + 30 + ] + }, + "zhuanshu": 1 + }, + "84": { + "id": 84, + "name": "intr_shiwu_name_84", + "undefined": "烂醉", + "icon": "ornaments_6106", + "lv": 90, + "next": 0, + "buff": { + "speed": [ + 31, + 37 + ] + }, + "zhuanshu": 1 + }, + "85": { + "id": 85, + "name": "intr_shiwu_name_85", + "undefined": "酩酊", + "icon": "ornaments_6107", + "lv": 100, + "next": 0, + "buff": { + "speed": [ + 38, + 45 + ] + }, + "zhuanshu": 1 + } +} \ No newline at end of file diff --git a/src/json/shiwucom.json b/src/json/shiwucom.json new file mode 100644 index 0000000..89f7470 --- /dev/null +++ b/src/json/shiwucom.json @@ -0,0 +1,620 @@ +{ + "base": { + "jichu_colour": { + "2": 1.1, + "3": 1.2, + "4": 1.3, + "5": 1.4 + }, + "hero_zhuanshu": [ + 5001, + 5002, + 5003, + 5004, + 5005, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015 + ], + "fujia_colour": { + "buffRandom": [ + { + "range": [ + 1, + 34 + ], + "buff": [ + { + "hppro": [ + 0.005, + 0.01 + ] + }, + { + "mingzhongpro": [ + 0.01, + 0.02 + ] + }, + { + "shanbipro": [ + 0.01, + 0.02 + ] + }, + { + "xixuepro": [ + 0.005, + 0.01 + ] + }, + { + "fanshangpro": [ + 0.005, + 0.01 + ] + }, + { + "baoshangpro": [ + 0.015, + 0.03 + ] + }, + { + "undpspro": [ + 0.005, + 0.01 + ] + }, + { + "dpspro": [ + 0.005, + 0.01 + ] + }, + { + "addhp": [ + 0.004, + 0.008 + ] + } + ] + }, + { + "range": [ + 35, + 44 + ], + "buff": [ + { + "hppro": [ + 0.008, + 0.013 + ] + }, + { + "mingzhongpro": [ + 0.01, + 0.02 + ] + }, + { + "shanbipro": [ + 0.01, + 0.02 + ] + }, + { + "xixuepro": [ + 0.008, + 0.013 + ] + }, + { + "fanshangpro": [ + 0.008, + 0.013 + ] + }, + { + "baoshangpro": [ + 0.024, + 0.039 + ] + }, + { + "undpspro": [ + 0.008, + 0.013 + ] + }, + { + "dpspro": [ + 0.008, + 0.013 + ] + }, + { + "addhp": [ + 0.006, + 0.01 + ] + } + ] + }, + { + "range": [ + 45, + 54 + ], + "buff": [ + { + "hppro": [ + 0.011, + 0.016 + ] + }, + { + "mingzhongpro": [ + 0.01, + 0.02 + ] + }, + { + "shanbipro": [ + 0.01, + 0.02 + ] + }, + { + "xixuepro": [ + 0.011, + 0.016 + ] + }, + { + "fanshangpro": [ + 0.011, + 0.016 + ] + }, + { + "baoshangpro": [ + 0.033, + 0.048 + ] + }, + { + "undpspro": [ + 0.011, + 0.016 + ] + }, + { + "dpspro": [ + 0.011, + 0.016 + ] + }, + { + "addhp": [ + 0.09, + 0.013 + ] + } + ] + }, + { + "range": [ + 55, + 64 + ], + "buff": [ + { + "hppro": [ + 0.014, + 0.02 + ] + }, + { + "mingzhongpro": [ + 0.01, + 0.02 + ] + }, + { + "shanbipro": [ + 0.01, + 0.02 + ] + }, + { + "xixuepro": [ + 0.014, + 0.02 + ] + }, + { + "fanshangpro": [ + 0.014, + 0.02 + ] + }, + { + "baoshangpro": [ + 0.042, + 0.06 + ] + }, + { + "undpspro": [ + 0.014, + 0.02 + ] + }, + { + "dpspro": [ + 0.014, + 0.02 + ] + }, + { + "addhp": [ + 0.011, + 0.016 + ] + } + ] + }, + { + "range": [ + 65, + 999 + ], + "buff": [ + { + "hppro": [ + 0.015, + 0.025 + ] + }, + { + "mingzhongpro": [ + 0.01, + 0.03 + ] + }, + { + "shanbipro": [ + 0.01, + 0.03 + ] + }, + { + "xixuepro": [ + 0.015, + 0.025 + ] + }, + { + "fanshangpro": [ + 0.012, + 0.02 + ] + }, + { + "baoshangpro": [ + 0.045, + 0.075 + ] + }, + { + "undpspro": [ + 0.015, + 0.025 + ] + }, + { + "dpspro": [ + 0.015, + 0.025 + ] + }, + { + "addhp": [ + 0.012, + 0.02 + ] + } + ] + } + ], + "color": [ + { + "range": [ + 0, + 0.33 + ], + "color": 2 + }, + { + "range": [ + 0.33, + 0.66 + ], + "color": 3 + }, + { + "range": [ + 0.66, + 0.99 + ], + "color": 4 + }, + { + "range": [ + 0.99, + 1 + ], + "color": 5 + } + ] + }, + "fujianum_colour": { + "2": 1, + "3": 2, + "4": 3, + "5": 4 + }, + "putongxilian": { + "a": "attr", + "t": "jinbi", + "n": "shiwulv*2000" + }, + "gaojixilian": { + "0": { + "a": "attr", + "t": "rmbmoney", + "n": 0 + }, + "1": { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + "2": { + "a": "attr", + "t": "rmbmoney", + "n": 90 + }, + "3": { + "a": "attr", + "t": "rmbmoney", + "n": 120 + }, + "4": { + "a": "attr", + "t": "rmbmoney", + "n": 150 + } + }, + "buff_zhuanshu": [ + { + "hppro": 0.05, + "p": 3 + }, + { + "defpro": 0.05, + "p": 3 + }, + { + "atkpro": 0.05, + "p": 3 + }, + { + "shanbipro": 0.05, + "p": 2 + }, + { + "mingzhongpro": 0.05, + "p": 2 + }, + { + "xixuepro": 0.05, + "p": 1 + }, + { + "baoshangpro": 0.05, + "p": 1 + }, + { + "dpspro": 0.05, + "p": 1 + }, + { + "undpspro": 0.05, + "p": 1 + } + ], + "skill_zhuanshu": [ + { + "id": "sp0400300", + "p": 1 + }, + { + "id": "sp0401300", + "p": 5 + }, + { + "id": "sp0402300", + "p": 5 + }, + { + "id": "sp0403300", + "p": 5 + }, + { + "id": "sp0404300", + "p": 5 + }, + { + "id": "sp0405300", + "p": 5 + }, + { + "id": "sp0406300", + "p": 5 + }, + { + "id": "sp0407300", + "p": 5 + }, + { + "id": "sp0408300", + "p": 5 + }, + { + "id": "sp0409300", + "p": 5 + }, + { + "id": "sp0410300", + "p": 5 + }, + { + "id": "sp0411300", + "p": 5 + }, + { + "id": "sp0412300", + "p": 5 + }, + { + "id": "sp0413300", + "p": 5 + }, + { + "id": "sp0414300", + "p": 5 + }, + { + "id": "sp0415300", + "p": 5 + }, + { + "id": "sp0416300", + "p": 5 + }, + { + "id": "sp0417300", + "p": 3 + }, + { + "id": "sp0418300", + "p": 4 + }, + { + "id": "sp0419300", + "p": 1 + }, + { + "id": "sp0420300", + "p": 2 + } + ], + "chongzhuneed1": { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + "chongzhuneed2": { + "a": "attr", + "t": "guijinshu", + "n": 5000 + }, + "chongzhurate": { + "buff_zhuanshu": 65, + "skill_zhuanshu": 35 + }, + "tilian": { + "2": [ + { + "a": "attr", + "t": "guijinshu", + "n": 10 + } + ], + "3": [ + { + "a": "attr", + "t": "guijinshu", + "n": 20 + } + ], + "4": [ + { + "a": "attr", + "t": "guijinshu", + "n": 50 + } + ], + "5": [ + { + "a": "attr", + "t": "guijinshu", + "n": 120 + } + ] + }, + "tilianhuobi": { + "a": "attr", + "t": "guijinshu" + }, + "tilianfactor": { + "2": 0.005, + "3": 0.004, + "4": 0.002, + "5": 0.002 + } + }, + "comment": { + "jichu_colour": "品质对基础属性的加成", + "fujia_colour": "附加属性的品质、类型、区间", + "fujianum_colour": "颜色对应附加属性的条数", + "putongxilian": "普通洗练消耗", + "gaojixilian": "高级洗练消耗,分别是锁定0/1/2/3/4条属性的消耗", + "hero_zhuanshu": "拥有专属属性的干部", + "buff_zhuanshu": "专属的具体属性", + "skill_zhuanshu": "专属的技能", + "chongzhuneed": "重铸消耗", + "chongzhurate": "重铸时,专属的具体属性和技能的概率", + "tilianhuobi": "提炼功能的货币" + } +} \ No newline at end of file diff --git a/src/json/shiwuleichong.json5 b/src/json/shiwuleichong.json5 new file mode 100644 index 0000000..7897c0a --- /dev/null +++ b/src/json/shiwuleichong.json5 @@ -0,0 +1,46 @@ +{ + //每日充值要求 + dayPayNeed: 6, + data: [ + { + time: 1296000, + tasks: [ + { total: 1, prize: [{a: 'attr', t: 'jinbi', n: 20000},{a: 'item', t: '1', n: 100000},{a: 'item', t: '4', n: 5}] }, + { total: 2, prize: [{a: 'attr', t: 'jinbi', n: 40000},{a: 'item', t: '1', n: 200000},{a: 'item', t: '12', n: 200}] }, + { total: 3, prize: [{a: 'attr', t: 'jinbi', n: 60000},{a: 'item', t: '1', n: 300000},{a: 'item', t: '4', n: 10}] }, + { total: 4, prize: [{a: 'attr', t: 'jinbi', n: 80000},{a: 'item', t: '1', n: 400000},{a: 'item', t: '12', n: 200}] }, + { total: 5, prize: [{a: 'attr', t: 'jinbi', n: 100000},{a: 'item', t: '1', n: 500000},{a: 'item', t: '12', n: 200}] }, + { total: 6, prize: [{a: 'attr', t: 'jinbi', n: 120000},{a: 'item', t: '1', n: 600000},{a: 'item', t: '607', n: 20}] }, + { total: 7, prize: [{a: 'attr', t: 'jinbi', n: 140000},{a: 'item', t: '1', n: 700000},{a: 'item', t: '12', n: 200}] }, + { total: 8, prize: [{a: 'attr', t: 'jinbi', n: 160000},{a: 'item', t: '1', n: 800000},{a: 'item', t: '12', n: 200}] }, + { total: 9, prize: [{a: 'attr', t: 'jinbi', n: 180000},{a: 'item', t: '1', n: 900000},{a: 'item', t: '4', n: 10}] }, + { total: 10, prize: [{a: 'attr', t: 'jinbi', n: 200000},{a: 'item', t: '1', n: 1000000},{a: 'item', t: '12', n: 200}] }, + { total: 11, prize: [{a: 'attr', t: 'jinbi', n: 220000},{a: 'item', t: '1', n: 1100000},{a: 'item', t: '12', n: 200}] }, + { total: 12, prize: [{a: 'attr', t: 'jinbi', n: 240000},{a: 'item', t: '1', n: 1200000},{a: 'item', t: '4', n: 10}] }, + { total: 13, prize: [{a: 'attr', t: 'jinbi', n: 260000},{a: 'item', t: '1', n: 1300000},{a: 'item', t: '12', n: 200}] }, + { total: 14, prize: [{a: 'attr', t: 'jinbi', n: 280000},{a: 'item', t: '1', n: 1400000},{a: 'item', t: '12', n: 200}] }, + { total: 15, prize: [{a: 'attr', t: 'jinbi', n: 300000},{a: 'item', t: '1', n: 1500000},{a: 'item', t: '600', n: 20}] } + ] + }, + { + time: 1296000, + tasks: [ + { total: 1, prize: [{a: 'attr', t: 'jinbi', n: 20000},{a: 'item', t: '1', n: 100000},{a: 'item', t: '4', n: 5}] }, + { total: 2, prize: [{a: 'attr', t: 'jinbi', n: 40000},{a: 'item', t: '1', n: 200000},{a: 'item', t: '12', n: 200}] }, + { total: 3, prize: [{a: 'attr', t: 'jinbi', n: 60000},{a: 'item', t: '1', n: 300000},{a: 'item', t: '4', n: 10}] }, + { total: 4, prize: [{a: 'attr', t: 'jinbi', n: 80000},{a: 'item', t: '1', n: 400000},{a: 'item', t: '12', n: 200}] }, + { total: 5, prize: [{a: 'attr', t: 'jinbi', n: 100000},{a: 'item', t: '1', n: 500000},{a: 'item', t: '12', n: 200}] }, + { total: 6, prize: [{a: 'attr', t: 'jinbi', n: 120000},{a: 'item', t: '1', n: 600000},{a: 'item', t: '607', n: 20}] }, + { total: 7, prize: [{a: 'attr', t: 'jinbi', n: 140000},{a: 'item', t: '1', n: 700000},{a: 'item', t: '12', n: 200}] }, + { total: 8, prize: [{a: 'attr', t: 'jinbi', n: 160000},{a: 'item', t: '1', n: 800000},{a: 'item', t: '12', n: 200}] }, + { total: 9, prize: [{a: 'attr', t: 'jinbi', n: 180000},{a: 'item', t: '1', n: 900000},{a: 'item', t: '4', n: 10}] }, + { total: 10, prize: [{a: 'attr', t: 'jinbi', n: 200000},{a: 'item', t: '1', n: 1000000},{a: 'item', t: '12', n: 200}] }, + { total: 11, prize: [{a: 'attr', t: 'jinbi', n: 220000},{a: 'item', t: '1', n: 1100000},{a: 'item', t: '12', n: 200}] }, + { total: 12, prize: [{a: 'attr', t: 'jinbi', n: 240000},{a: 'item', t: '1', n: 1200000},{a: 'item', t: '4', n: 10}] }, + { total: 13, prize: [{a: 'attr', t: 'jinbi', n: 260000},{a: 'item', t: '1', n: 1300000},{a: 'item', t: '12', n: 200}] }, + { total: 14, prize: [{a: 'attr', t: 'jinbi', n: 280000},{a: 'item', t: '1', n: 1400000},{a: 'item', t: '12', n: 200}] }, + { total: 15, prize: [{a: 'attr', t: 'jinbi', n: 300000},{a: 'item', t: '1', n: 1500000},{a: 'item', t: '600', n: 20}] } + ] + } + ] +} \ No newline at end of file diff --git a/src/json/shoot.json b/src/json/shoot.json new file mode 100644 index 0000000..da1797d --- /dev/null +++ b/src/json/shoot.json @@ -0,0 +1,427 @@ +{ + "1": { + "name": "初学者训练", + "num": 1, + "speed": 1, + "cartridge": 15, + "time": 30, + "prize": { + "1": { + "describe": "单轮训练命中1枪", + "hit": 1, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + }, + "2": { + "describe": "单轮训练命中3枪", + "hit": 3, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + }, + "3": { + "describe": "单轮训练命中5枪", + "hit": 5, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + }, + "4": { + "describe": "单轮训练命中7枪", + "hit": 7, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + }, + "5": { + "describe": "单轮训练命中10枪", + "hit": 10, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + } + } + }, + "2": { + "name": "新兵训练", + "num": 2, + "speed": 1, + "cartridge": 25, + "time": 30, + "prize": { + "1": { + "hit": 1, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + }, + "2": { + "hit": 3, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + }, + "3": { + "hit": 5, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + }, + "4": { + "hit": 7, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + }, + "5": { + "hit": 10, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + } + } + }, + "3": { + "name": "老兵训练", + "num": 2, + "speed": 1.5, + "cartridge": 20, + "time": 20, + "prize": { + "1": { + "hit": 1, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + }, + "2": { + "hit": 3, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + }, + "3": { + "hit": 5, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + }, + "4": { + "hit": 7, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + }, + "5": { + "hit": 10, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + } + } + }, + "4": { + "name": "神枪手训练", + "num": 3, + "speed": 1.5, + "cartridge": 40, + "time": 20, + "prize": { + "1": { + "hit": 1, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + }, + "2": { + "hit": 3, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + }, + "3": { + "hit": 5, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + }, + "4": { + "hit": 7, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + }, + "5": { + "hit": 10, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + } + } + }, + "5": { + "name": "枪王训练", + "num": 3, + "speed": 2, + "cartridge": 30, + "time": 15, + "prize": { + "1": { + "hit": 1, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + }, + "2": { + "hit": 3, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + }, + "3": { + "hit": 5, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + }, + "4": { + "hit": 7, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + }, + "5": { + "hit": 10, + "content": [ + { + "a": "item", + "t": "1", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1 + } + ] + } + } + } +} \ No newline at end of file diff --git a/src/json/shop.json b/src/json/shop.json new file mode 100644 index 0000000..ff0eb23 --- /dev/null +++ b/src/json/shop.json @@ -0,0 +1,559 @@ +{ + "1": { + "id": 1, + "type": 1, + "name": "wsw_wz_zhsd", + "undefined": "杂货店", + "openCond": [ + "lv", + 5 + ], + "autoRefreshTime": 86400, + "recoilRefreshNeed": [], + "recoilRefreshNum": 0, + "freeRefreshInterval": 0, + "freeRefreshNum": 0, + "shopItems": [ + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 109, + 110, + 111, + 112, + 113 + ], + "showItem": [ + { + "a": "attr", + "t": "jinbi", + "n": 0 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 0 + } + ], + "vip": [], + "npcImg": 5001, + "npcText": "intr_shopCom_text_1" + }, + "2": { + "id": 2, + "type": 5, + "name": "wsw_wz_slsd", + "undefined": "势力商店", + "openCond": [ + "lv", + 20 + ], + "autoRefreshTime": 86400, + "recoilRefreshNeed": [], + "recoilRefreshNum": 0, + "freeRefreshInterval": 0, + "freeRefreshNum": 0, + "shopItems": [ + 201, + 201, + 201, + 201, + 201, + 202 + ], + "showItem": [ + { + "a": "item", + "t": "15", + "n": 0 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 0 + } + ], + "vip": [], + "npcImg": 5002, + "npcText": "intr_shopCom_text_2" + }, + "3": { + "id": 3, + "type": 6, + "name": "wsw_wz_zzsd", + "undefined": "战争商店", + "openCond": [ + "lv", + 50 + ], + "autoRefreshTime": 0, + "recoilRefreshNeed": [], + "recoilRefreshNum": 0, + "freeRefreshInterval": 0, + "freeRefreshNum": 0, + "shopItems": [ + 9001, + 9002, + 9003, + 9004, + 9005, + 9006, + 9007, + 9008, + 9009 + ], + "showItem": [ + { + "a": "item", + "t": "41", + "n": 0 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 0 + } + ], + "vip": [], + "npcImg": 4013, + "npcText": "intr_shopCom_text_3" + }, + "4": { + "id": 4, + "type": 7, + "name": "wsw_wz_spsd", + "undefined": "饰品商店", + "openCond": [ + "lv", + 30 + ], + "autoRefreshTime": 21600, + "recoilRefreshNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + } + ], + "recoilRefreshNum": -1, + "freeRefreshInterval": 0, + "freeRefreshNum": 0, + "shopItems": [ + 1001, + 1001, + 1001, + 1001, + 1001, + 1001 + ], + "showItem": [ + { + "a": "attr", + "t": "guijinshu", + "n": 0 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 0 + } + ], + "vip": [], + "npcImg": 4007, + "npcText": "intr_shopCom_text_4" + }, + "5": { + "id": 5, + "type": 2, + "name": "intr_shop_name_5", + "undefined": "杂货", + "openCond": [ + "lv", + 18 + ], + "autoRefreshTime": 0, + "recoilRefreshNeed": [], + "recoilRefreshNum": 0, + "freeRefreshInterval": 0, + "freeRefreshNum": 0, + "shopItems": [ + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007 + ], + "showItem": [ + { + "a": "item", + "t": "23", + "n": 0 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 0 + } + ], + "vip": [], + "npcImg": 4005, + "npcText": "intr_shopCom_text_5" + }, + "6": { + "id": 6, + "type": 2, + "name": "intr_shop_name_6", + "undefined": "紫装", + "openCond": [ + "lv", + 18 + ], + "autoRefreshTime": 0, + "recoilRefreshNeed": [], + "recoilRefreshNum": 0, + "freeRefreshInterval": 0, + "freeRefreshNum": 0, + "shopItems": [ + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024 + ], + "showItem": [ + { + "a": "item", + "t": "23", + "n": 0 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 0 + } + ], + "vip": [], + "npcImg": 4005, + "npcText": "intr_shopCom_text_5" + }, + "7": { + "id": 7, + "type": 2, + "name": "intr_shop_name_7", + "undefined": "奖励", + "openCond": [ + "lv", + 18 + ], + "autoRefreshTime": 0, + "recoilRefreshNeed": [], + "recoilRefreshNum": 0, + "freeRefreshInterval": 0, + "freeRefreshNum": 0, + "shopItems": [ + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028 + ], + "showItem": [ + { + "a": "item", + "t": "23", + "n": 0 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 0 + } + ], + "vip": [], + "npcImg": 4005, + "npcText": "intr_shopCom_text_5" + }, + "8": { + "id": 8, + "type": 3, + "name": "wsw_wz_rcsc", + "undefined": "人才市场", + "openCond": [ + "lv", + 15 + ], + "autoRefreshTime": 0, + "recoilRefreshNeed": [ + { + "a": "item", + "t": "27", + "n": 100 + } + ], + "recoilRefreshNum": 0, + "freeRefreshInterval": 0, + "freeRefreshNum": 3, + "shopItems": [ + 120001, + 120001, + 120002, + 120002, + 120003, + 120004 + ], + "showItem": [ + { + "a": "item", + "t": "27", + "n": 0 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 0 + } + ], + "vip": [ + 10, + 15, + 20, + 25, + 30, + 35, + 40, + 45, + 50, + 55, + 60, + 65, + 70, + 75, + 80, + 85, + 90, + 100 + ], + "npcImg": 3011, + "npcText": "intr_shopCom_text_6" + }, + "9": { + "id": 9, + "type": 4, + "name": "wsw_wz_pjsd", + "undefined": "配件商店", + "openCond": [ + "lv", + 50 + ], + "autoRefreshTime": 0, + "recoilRefreshNeed": [], + "recoilRefreshNum": 0, + "freeRefreshInterval": 0, + "freeRefreshNum": 0, + "shopItems": [ + 6001, + 6002, + 6003, + 6004, + 6005, + 6006, + 6007, + 6008, + 6009, + 6010, + 6011, + 6012, + 6013, + 6014, + 6015, + 6016, + 6017, + 6018, + 6019, + 6020, + 6021, + 6022, + 6023, + 6024, + 6025 + ], + "showItem": [ + { + "a": "item", + "t": "29", + "n": 0 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 0 + } + ], + "vip": [], + "npcImg": 3004, + "npcText": "intr_shopCom_text_7" + }, + "10": { + "id": 10, + "type": 8, + "name": "wsw_wz_rysd", + "undefined": "荣誉商店", + "openCond": [ + "lv", + 17 + ], + "autoRefreshTime": 0, + "recoilRefreshNeed": [], + "recoilRefreshNum": 0, + "freeRefreshInterval": 0, + "freeRefreshNum": 0, + "shopItems": [ + 7001, + 7002, + 7003, + 7004, + 7005, + 7006, + 7007, + 7008, + 7009, + 7010, + 7011 + ], + "showItem": [ + { + "a": "item", + "t": "11", + "n": 0 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 0 + } + ], + "vip": [], + "npcImg": 4002, + "npcText": "intr_shopCom_text_8" + }, + "11": { + "id": 11, + "type": 9, + "name": "wsw_wz_jgsd", + "undefined": "军功商店", + "openCond": [ + "lv", + 40 + ], + "autoRefreshTime": 0, + "recoilRefreshNeed": [], + "recoilRefreshNum": 0, + "freeRefreshInterval": 0, + "freeRefreshNum": 0, + "shopItems": [ + 8001, + 8002, + 8003, + 8004, + 8005, + 8006, + 8007, + 8008, + 8009 + ], + "showItem": [ + { + "a": "item", + "t": "39", + "n": 0 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 0 + } + ], + "vip": [], + "npcImg": 3015, + "npcText": "intr_shopCom_text_9" + }, + "12": { + "id": 12, + "type": 11, + "name": "wsw_wz_ltsd", + "undefined": "擂台商店", + "openCond": [ + "lv", + 74 + ], + "autoRefreshTime": 0, + "recoilRefreshNeed": [], + "recoilRefreshNum": 0, + "freeRefreshInterval": 0, + "freeRefreshNum": 0, + "shopItems": [], + "showItem": [ + { + "a": "attr", + "t": "jinbi", + "n": 0 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 0 + } + ], + "vip": [], + "npcImg": 3011, + "npcText": "intr_shopCom_text_10" + } +} \ No newline at end of file diff --git a/src/json/shopItem.json b/src/json/shopItem.json new file mode 100644 index 0000000..d2021c6 --- /dev/null +++ b/src/json/shopItem.json @@ -0,0 +1,7780 @@ +{ + "1": [ + { + "id": 1, + "a": "item", + "t": 5001, + "n": 1, + "p": 1, + "colour": 2, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1500 + } + ], + "sale": 5, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [ + 0, + 2, + 4, + 6, + 8, + 10, + 12, + 14, + 16, + 18, + 20, + 25, + 30, + 35, + 40, + 50, + 60, + 100 + ] + }, + { + "id": 1, + "a": "item", + "t": 1, + "n": 10000, + "p": 100, + "colour": 2, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "jinbi", + "n": 40000 + } + ], + "sale": 6, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [ + 0, + 2, + 4, + 6, + 8, + 10, + 12, + 14, + 16, + 18, + 20, + 25, + 30, + 35, + 40, + 50, + 60, + 100 + ] + }, + { + "id": 1, + "a": "item", + "t": 2, + "n": 10000, + "p": 100, + "colour": 2, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "jinbi", + "n": 40000 + } + ], + "sale": 8, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [ + 0, + 2, + 4, + 6, + 8, + 10, + 12, + 14, + 16, + 18, + 20, + 25, + 30, + 35, + 40, + 50, + 60, + 100 + ] + }, + { + "id": 1, + "a": "item", + "t": 3, + "n": 10, + "p": 20, + "colour": 2, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 2400 + } + ], + "sale": 8, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [ + 0, + 2, + 4, + 6, + 8, + 10, + 12, + 14, + 16, + 18, + 20, + 25, + 30, + 35, + 40, + 50, + 60, + 100 + ] + }, + { + "id": 1, + "a": "item", + "t": 1, + "n": 50000, + "p": 100, + "colour": 2, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + } + ], + "sale": 8, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [ + 0, + 2, + 4, + 6, + 8, + 10, + 12, + 14, + 16, + 18, + 20, + 25, + 30, + 35, + 40, + 50, + 60, + 100 + ] + } + ], + "2": [ + { + "id": 2, + "a": "item", + "t": 18, + "n": 50, + "p": 10, + "colour": 2, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [ + 0, + 2, + 4, + 6, + 8, + 10, + 12, + 14, + 16, + 18, + 20, + 25, + 30, + 35, + 40, + 50, + 60, + 100 + ] + }, + { + "id": 2, + "a": "item", + "t": 9, + "n": 5, + "p": 10, + "colour": 2, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [ + 0, + 2, + 4, + 6, + 8, + 10, + 12, + 14, + 16, + 18, + 20, + 25, + 30, + 35, + 40, + 50, + 60, + 100 + ] + }, + { + "id": 2, + "a": "item", + "t": 10, + "n": 50, + "p": 10, + "colour": 2, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 650 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [ + 0, + 2, + 4, + 6, + 8, + 10, + 12, + 14, + 16, + 18, + 20, + 25, + 30, + 35, + 40, + 50, + 60, + 100 + ] + }, + { + "id": 2, + "a": "item", + "t": 4, + "n": 2, + "p": 10, + "colour": 2, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "jinbi", + "n": 240000 + } + ], + "sale": 8, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [ + 0, + 2, + 4, + 6, + 8, + 10, + 12, + 14, + 16, + 18, + 20, + 25, + 30, + 35, + 40, + 50, + 60, + 100 + ] + } + ], + "101": [ + { + "id": 101, + "a": "item", + "t": 4, + "n": 10, + "p": 1, + "colour": 3, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1500 + } + ], + "sale": 6, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "102": [ + { + "id": 102, + "a": "item", + "t": 12, + "n": 1000, + "p": 1, + "colour": 3, + "buyNum": 2, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 800 + } + ], + "sale": 8, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "103": [ + { + "id": 103, + "a": "item", + "t": 2, + "n": 500, + "p": 1, + "colour": 3, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "104": [ + { + "id": 104, + "a": "item", + "t": 1, + "n": 10000, + "p": 1, + "colour": 1, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "105": [ + { + "id": 105, + "a": "item", + "t": 1, + "n": 40000, + "p": 1, + "colour": 1, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "106": [ + { + "id": 106, + "a": "item", + "t": 1, + "n": 100000, + "p": 1, + "colour": 1, + "buyNum": 5, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "107": [ + { + "id": 107, + "a": "item", + "t": 6, + "n": 5, + "p": 1, + "colour": 3, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "108": [ + { + "id": 108, + "a": "item", + "t": 3001, + "n": 1, + "p": 3, + "colour": 3, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 3002, + "n": 1, + "p": 3, + "colour": 3, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 3003, + "n": 1, + "p": 3, + "colour": 3, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 3004, + "n": 1, + "p": 3, + "colour": 3, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 3005, + "n": 1, + "p": 3, + "colour": 3, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 3006, + "n": 1, + "p": 3, + "colour": 3, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 3007, + "n": 1, + "p": 3, + "colour": 3, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 3008, + "n": 1, + "p": 3, + "colour": 3, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 3009, + "n": 1, + "p": 3, + "colour": 3, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 3010, + "n": 1, + "p": 3, + "colour": 3, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 3011, + "n": 1, + "p": 3, + "colour": 3, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 3012, + "n": 1, + "p": 3, + "colour": 3, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 3013, + "n": 1, + "p": 3, + "colour": 3, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 3014, + "n": 1, + "p": 3, + "colour": 3, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 3015, + "n": 1, + "p": 3, + "colour": 3, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 4001, + "n": 1, + "p": 2, + "colour": 4, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 4002, + "n": 1, + "p": 2, + "colour": 4, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 4003, + "n": 1, + "p": 2, + "colour": 4, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 4004, + "n": 1, + "p": 2, + "colour": 4, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 4005, + "n": 1, + "p": 2, + "colour": 4, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 4006, + "n": 1, + "p": 2, + "colour": 4, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 4007, + "n": 1, + "p": 2, + "colour": 4, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 4008, + "n": 1, + "p": 2, + "colour": 4, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 4009, + "n": 1, + "p": 2, + "colour": 4, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 4010, + "n": 1, + "p": 2, + "colour": 4, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 4011, + "n": 1, + "p": 2, + "colour": 4, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 4012, + "n": 1, + "p": 2, + "colour": 4, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 4013, + "n": 1, + "p": 2, + "colour": 4, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 4014, + "n": 1, + "p": 2, + "colour": 4, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 4015, + "n": 1, + "p": 2, + "colour": 4, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 5001, + "n": 1, + "p": 1, + "colour": 5, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 5003, + "n": 1, + "p": 1, + "colour": 5, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 108, + "a": "item", + "t": 5005, + "n": 1, + "p": 1, + "colour": 5, + "buyNum": 10, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "109": [ + { + "id": 109, + "a": "item", + "t": 12, + "n": 200, + "p": 1, + "colour": 3, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "110": [ + { + "id": 110, + "a": "item", + "t": 18, + "n": 10, + "p": 1, + "colour": 3, + "buyNum": 3, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "111": [ + { + "id": 111, + "a": "item", + "t": 9, + "n": 100, + "p": 1, + "colour": 3, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "112": [ + { + "id": 112, + "a": "item", + "t": 10, + "n": 50, + "p": 1, + "colour": 3, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "113": [ + { + "id": 113, + "a": "item", + "t": 636, + "n": 1, + "p": 1, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 53 + } + ], + "sale": 7, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "201": [ + { + "id": 201, + "a": "item", + "t": 33, + "n": 1, + "p": 15, + "colour": 2, + "buyNum": 20, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "15", + "n": 50 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 201, + "a": "item", + "t": 35, + "n": 1, + "p": 15, + "colour": 3, + "buyNum": 20, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "15", + "n": 100 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 201, + "a": "item", + "t": 12, + "n": 10, + "p": 20, + "colour": 3, + "buyNum": 30, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 201, + "a": "item", + "t": 2, + "n": 10, + "p": 20, + "colour": 3, + "buyNum": 30, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "15", + "n": 25 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 201, + "a": "item", + "t": 25, + "n": 1, + "p": 10, + "colour": 5, + "buyNum": 20, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "15", + "n": 200 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 201, + "a": "item", + "t": 34, + "n": 1, + "p": 15, + "colour": 2, + "buyNum": 20, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "15", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 201, + "a": "item", + "t": 36, + "n": 1, + "p": 15, + "colour": 3, + "buyNum": 20, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "15", + "n": 40 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 201, + "a": "item", + "t": 26, + "n": 1, + "p": 10, + "colour": 5, + "buyNum": 20, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "15", + "n": 80 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 201, + "a": "item", + "t": 18, + "n": 10, + "p": 10, + "colour": 3, + "buyNum": 100, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "15", + "n": 150 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "202": [ + { + "id": 202, + "a": "hero", + "t": 4001, + "n": 1, + "p": 10, + "colour": 4, + "buyNum": 2, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "15", + "n": 2800 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 202, + "a": "hero", + "t": 4002, + "n": 1, + "p": 10, + "colour": 4, + "buyNum": 2, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "15", + "n": 2800 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 202, + "a": "hero", + "t": 4013, + "n": 1, + "p": 10, + "colour": 4, + "buyNum": 2, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "15", + "n": 2800 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "1001": [ + { + "id": 1001, + "a": "shiwu", + "t": 1, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 20, + 34 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 2, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 20, + 39 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 3, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 26, + 44 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 4, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 31, + 49 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 5, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 36, + 54 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 6, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 41, + 59 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 7, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 46, + 64 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 8, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 51, + 69 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 9, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 56, + 74 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 10, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 61, + 999 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 17, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 20, + 39 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 18, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 26, + 44 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 19, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 31, + 49 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 20, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 36, + 54 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 21, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 41, + 59 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 22, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 46, + 64 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 23, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 51, + 69 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 24, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 56, + 74 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 25, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 61, + 999 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 32, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 20, + 34 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 33, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 20, + 39 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 34, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 26, + 44 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 35, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 31, + 49 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 36, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 36, + 54 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 37, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 41, + 59 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 38, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 46, + 64 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 39, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 51, + 69 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 40, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 56, + 74 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 41, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 61, + 999 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 48, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 20, + 34 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 49, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 20, + 39 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 50, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 26, + 44 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 51, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 31, + 49 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 52, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 36, + 54 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 53, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 41, + 59 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 54, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 46, + 64 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 55, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 51, + 69 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 56, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 56, + 74 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 57, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 61, + 999 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 64, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 20, + 39 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 65, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 26, + 44 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 66, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 31, + 49 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 67, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 36, + 54 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 68, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 41, + 59 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 69, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 46, + 64 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 70, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 51, + 69 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 71, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 56, + 74 + ], + "vipAddbuyNum": [] + }, + { + "id": 1001, + "a": "shiwu", + "t": 72, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "attr", + "t": "guijinshu", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 61, + 999 + ], + "vipAddbuyNum": [] + } + ], + "2001": [ + { + "id": 2001, + "a": "item", + "t": 2, + "n": 100, + "p": 100, + "colour": 1, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 8000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "2002": [ + { + "id": 2002, + "a": "item", + "t": 2, + "n": 1000, + "p": 100, + "colour": 1, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 80000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "2003": [ + { + "id": 2003, + "a": "item", + "t": 10002, + "n": 1, + "p": 100, + "colour": 3, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 2000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "2004": [ + { + "id": 2004, + "a": "item", + "t": 20002, + "n": 1, + "p": 100, + "colour": 3, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 2000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "2005": [ + { + "id": 2005, + "a": "item", + "t": 30002, + "n": 1, + "p": 100, + "colour": 3, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 2000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "2006": [ + { + "id": 2006, + "a": "item", + "t": 40002, + "n": 1, + "p": 100, + "colour": 3, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 2000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "2007": [ + { + "id": 2007, + "a": "item", + "t": 19, + "n": 1, + "p": 100, + "colour": 1, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "3001": [ + { + "id": 3001, + "a": "item", + "t": 10003, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "3002": [ + { + "id": 3002, + "a": "item", + "t": 10004, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "3003": [ + { + "id": 3003, + "a": "item", + "t": 10005, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "3004": [ + { + "id": 3004, + "a": "item", + "t": 10006, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "3005": [ + { + "id": 3005, + "a": "item", + "t": 10007, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "3006": [ + { + "id": 3006, + "a": "item", + "t": 10008, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "3007": [ + { + "id": 3007, + "a": "item", + "t": 20003, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "3008": [ + { + "id": 3008, + "a": "item", + "t": 20004, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "3009": [ + { + "id": 3009, + "a": "item", + "t": 20005, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "3010": [ + { + "id": 3010, + "a": "item", + "t": 20006, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "3011": [ + { + "id": 3011, + "a": "item", + "t": 20007, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "3012": [ + { + "id": 3012, + "a": "item", + "t": 20008, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "3013": [ + { + "id": 3013, + "a": "item", + "t": 30003, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "3014": [ + { + "id": 3014, + "a": "item", + "t": 30004, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "3015": [ + { + "id": 3015, + "a": "item", + "t": 30005, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "3016": [ + { + "id": 3016, + "a": "item", + "t": 30006, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "3017": [ + { + "id": 3017, + "a": "item", + "t": 30007, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "3018": [ + { + "id": 3018, + "a": "item", + "t": 30008, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "3019": [ + { + "id": 3019, + "a": "item", + "t": 40003, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "3020": [ + { + "id": 3020, + "a": "item", + "t": 40004, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "3021": [ + { + "id": 3021, + "a": "item", + "t": 40005, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "3022": [ + { + "id": 3022, + "a": "item", + "t": 40006, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "3023": [ + { + "id": 3023, + "a": "item", + "t": 40007, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "3024": [ + { + "id": 3024, + "a": "item", + "t": 40008, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4001": [ + { + "id": 4001, + "a": "equip", + "t": 4003, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 6000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 1, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4002": [ + { + "id": 4002, + "a": "equip", + "t": 3003, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 5, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4003": [ + { + "id": 4003, + "a": "equip", + "t": 2003, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 10, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4004": [ + { + "id": 4004, + "a": "equip", + "t": 1003, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 20, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4005": [ + { + "id": 4005, + "a": "equip", + "t": 4004, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 30, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4006": [ + { + "id": 4006, + "a": "equip", + "t": 3004, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 40, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4007": [ + { + "id": 4007, + "a": "equip", + "t": 2004, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 50, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4008": [ + { + "id": 4008, + "a": "equip", + "t": 1004, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 60, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4009": [ + { + "id": 4009, + "a": "equip", + "t": 4005, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 70, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4010": [ + { + "id": 4010, + "a": "equip", + "t": 3005, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 80, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4011": [ + { + "id": 4011, + "a": "equip", + "t": 2005, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 90, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4012": [ + { + "id": 4012, + "a": "equip", + "t": 1005, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 100, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4013": [ + { + "id": 4013, + "a": "equip", + "t": 4006, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 110, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4014": [ + { + "id": 4014, + "a": "equip", + "t": 3006, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 120, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4015": [ + { + "id": 4015, + "a": "equip", + "t": 2006, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 130, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4016": [ + { + "id": 4016, + "a": "equip", + "t": 1006, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 140, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4017": [ + { + "id": 4017, + "a": "equip", + "t": 4007, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 150, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4018": [ + { + "id": 4018, + "a": "equip", + "t": 3007, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 160, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4019": [ + { + "id": 4019, + "a": "equip", + "t": 2007, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 170, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4020": [ + { + "id": 4020, + "a": "equip", + "t": 1007, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 180, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4021": [ + { + "id": 4021, + "a": "equip", + "t": 4008, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 190, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4022": [ + { + "id": 4022, + "a": "equip", + "t": 3008, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 200, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4023": [ + { + "id": 4023, + "a": "equip", + "t": 2008, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 210, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4024": [ + { + "id": 4024, + "a": "equip", + "t": 1008, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 220, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4025": [ + { + "id": 4025, + "a": "equip", + "t": 4009, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 240, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4026": [ + { + "id": 4026, + "a": "equip", + "t": 3009, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 260, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4027": [ + { + "id": 4027, + "a": "equip", + "t": 2009, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 280, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "4028": [ + { + "id": 4028, + "a": "equip", + "t": 1009, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "23", + "n": 20000 + } + ], + "sale": 1, + "needVip": 0, + "needZCCG": 300, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "5001": [ + { + "id": 5001, + "a": "hero", + "t": 5001, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 1000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "5002": [ + { + "id": 5002, + "a": "hero", + "t": 5002, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 1000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "5003": [ + { + "id": 5003, + "a": "hero", + "t": 5003, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 1000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "5004": [ + { + "id": 5004, + "a": "hero", + "t": 5004, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 1000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "5005": [ + { + "id": 5005, + "a": "hero", + "t": 5005, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 1000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "5006": [ + { + "id": 5006, + "a": "hero", + "t": 4001, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 1000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6001": [ + { + "id": 6001, + "a": "item", + "t": 20, + "n": 1, + "p": 100, + "colour": 5, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 10 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6002": [ + { + "id": 6002, + "a": "peijian", + "t": 4001, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6003": [ + { + "id": 6003, + "a": "peijian", + "t": 4002, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6004": [ + { + "id": 6004, + "a": "peijian", + "t": 4003, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6005": [ + { + "id": 6005, + "a": "peijian", + "t": 4004, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6006": [ + { + "id": 6006, + "a": "peijian", + "t": 4005, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6007": [ + { + "id": 6007, + "a": "peijian", + "t": 4006, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6008": [ + { + "id": 6008, + "a": "peijian", + "t": 4007, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6009": [ + { + "id": 6009, + "a": "peijian", + "t": 4008, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6010": [ + { + "id": 6010, + "a": "peijian", + "t": 4009, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6011": [ + { + "id": 6011, + "a": "peijian", + "t": 4010, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6012": [ + { + "id": 6012, + "a": "peijian", + "t": 4011, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6013": [ + { + "id": 6013, + "a": "peijian", + "t": 4012, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6014": [ + { + "id": 6014, + "a": "peijian", + "t": 4013, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6015": [ + { + "id": 6015, + "a": "peijian", + "t": 4014, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6016": [ + { + "id": 6016, + "a": "peijian", + "t": 4015, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6017": [ + { + "id": 6017, + "a": "peijian", + "t": 4016, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6018": [ + { + "id": 6018, + "a": "peijian", + "t": 4017, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6019": [ + { + "id": 6019, + "a": "peijian", + "t": 4018, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6020": [ + { + "id": 6020, + "a": "peijian", + "t": 4019, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6021": [ + { + "id": 6021, + "a": "peijian", + "t": 4020, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6022": [ + { + "id": 6022, + "a": "peijian", + "t": 4021, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6023": [ + { + "id": 6023, + "a": "peijian", + "t": 4022, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6024": [ + { + "id": 6024, + "a": "peijian", + "t": 4023, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "6025": [ + { + "id": 6025, + "a": "peijian", + "t": 4024, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "29", + "n": 20 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "7001": [ + { + "id": 7001, + "a": "item", + "t": 5005, + "n": 20, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "11", + "n": 50000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "7002": [ + { + "id": 7002, + "a": "item", + "t": 4005, + "n": 20, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "11", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "7003": [ + { + "id": 7003, + "a": "item", + "t": 4006, + "n": 20, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "11", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "7004": [ + { + "id": 7004, + "a": "item", + "t": 4007, + "n": 20, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "11", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "7005": [ + { + "id": 7005, + "a": "item", + "t": 4009, + "n": 20, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "11", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "7006": [ + { + "id": 7006, + "a": "item", + "t": 3001, + "n": 20, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "11", + "n": 8000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "7007": [ + { + "id": 7007, + "a": "item", + "t": 3002, + "n": 20, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "11", + "n": 8000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "7008": [ + { + "id": 7008, + "a": "item", + "t": 6, + "n": 1, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "11", + "n": 600 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "7009": [ + { + "id": 7009, + "a": "item", + "t": 10, + "n": 20, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "11", + "n": 2000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "7010": [ + { + "id": 7010, + "a": "item", + "t": 9, + "n": 100, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "11", + "n": 500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "7011": [ + { + "id": 7011, + "a": "item", + "t": 12, + "n": 20, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "11", + "n": 100 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "8001": [ + { + "id": 8001, + "a": "item", + "t": 5001, + "n": 20, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "39", + "n": 60000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "8002": [ + { + "id": 8002, + "a": "item", + "t": 5005, + "n": 20, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "39", + "n": 60000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "8003": [ + { + "id": 8003, + "a": "item", + "t": 4002, + "n": 20, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "39", + "n": 12000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "8004": [ + { + "id": 8004, + "a": "item", + "t": 4008, + "n": 20, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "39", + "n": 12000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "8005": [ + { + "id": 8005, + "a": "item", + "t": 4010, + "n": 20, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "39", + "n": 12000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "8006": [ + { + "id": 8006, + "a": "item", + "t": 4012, + "n": 20, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "39", + "n": 12000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "8007": [ + { + "id": 8007, + "a": "item", + "t": 4013, + "n": 20, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "39", + "n": 12000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "8008": [ + { + "id": 8008, + "a": "item", + "t": 3010, + "n": 20, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "39", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "8009": [ + { + "id": 8009, + "a": "item", + "t": 3013, + "n": 20, + "p": 100, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "39", + "n": 10000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "9001": [ + { + "id": 9001, + "a": "item", + "t": 14, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "41", + "n": 100 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "9002": [ + { + "id": 9002, + "a": "item", + "t": 10010, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "41", + "n": 1500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "9003": [ + { + "id": 9003, + "a": "item", + "t": 20010, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "41", + "n": 1500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "9004": [ + { + "id": 9004, + "a": "item", + "t": 30010, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "41", + "n": 1500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "9005": [ + { + "id": 9005, + "a": "item", + "t": 40010, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "41", + "n": 1500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "9006": [ + { + "id": 9006, + "a": "item", + "t": 10010, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "41", + "n": 30000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "9007": [ + { + "id": 9007, + "a": "item", + "t": 20010, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "41", + "n": 30000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "9008": [ + { + "id": 9008, + "a": "item", + "t": 30010, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "41", + "n": 30000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "9009": [ + { + "id": 9009, + "a": "item", + "t": 40010, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": -1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "41", + "n": 30000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "120001": [ + { + "id": 120001, + "a": "item", + "t": 3001, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 250 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120001, + "a": "item", + "t": 3002, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 250 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120001, + "a": "item", + "t": 3003, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 250 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120001, + "a": "item", + "t": 3004, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 250 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120001, + "a": "item", + "t": 3005, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 250 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120001, + "a": "item", + "t": 3006, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 250 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120001, + "a": "item", + "t": 3007, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 250 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120001, + "a": "item", + "t": 3008, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 250 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120001, + "a": "item", + "t": 3009, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 250 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120001, + "a": "item", + "t": 3010, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 250 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120001, + "a": "item", + "t": 3011, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 250 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120001, + "a": "item", + "t": 3012, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 250 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120001, + "a": "item", + "t": 3013, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 250 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120001, + "a": "item", + "t": 3014, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 250 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120001, + "a": "item", + "t": 3015, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 250 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "120002": [ + { + "id": 120002, + "a": "item", + "t": 4001, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120002, + "a": "item", + "t": 4002, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120002, + "a": "item", + "t": 4003, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120002, + "a": "item", + "t": 4004, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120002, + "a": "item", + "t": 4005, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120002, + "a": "item", + "t": 4006, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120002, + "a": "item", + "t": 4007, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120002, + "a": "item", + "t": 4008, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120002, + "a": "item", + "t": 4009, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120002, + "a": "item", + "t": 4010, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120002, + "a": "item", + "t": 4011, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120002, + "a": "item", + "t": 4012, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120002, + "a": "item", + "t": 4013, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120002, + "a": "item", + "t": 4014, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120002, + "a": "item", + "t": 4015, + "n": 1, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "120003": [ + { + "id": 120003, + "a": "item", + "t": 3001, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 2500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120003, + "a": "item", + "t": 3002, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 2500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120003, + "a": "item", + "t": 3003, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 2500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120003, + "a": "item", + "t": 3004, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 2500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120003, + "a": "item", + "t": 3005, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 2500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120003, + "a": "item", + "t": 3006, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 2500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120003, + "a": "item", + "t": 3007, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 2500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120003, + "a": "item", + "t": 3008, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 2500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120003, + "a": "item", + "t": 3009, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 2500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120003, + "a": "item", + "t": 3010, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 2500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120003, + "a": "item", + "t": 3011, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 2500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120003, + "a": "item", + "t": 3012, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 2500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120003, + "a": "item", + "t": 3013, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 2500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120003, + "a": "item", + "t": 3014, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 2500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120003, + "a": "item", + "t": 3015, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 2500 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ], + "120004": [ + { + "id": 120004, + "a": "item", + "t": 4001, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120004, + "a": "item", + "t": 4002, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120004, + "a": "item", + "t": 4003, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120004, + "a": "item", + "t": 4004, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120004, + "a": "item", + "t": 4005, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120004, + "a": "item", + "t": 4006, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120004, + "a": "item", + "t": 4007, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120004, + "a": "item", + "t": 4008, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120004, + "a": "item", + "t": 4009, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120004, + "a": "item", + "t": 4010, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120004, + "a": "item", + "t": 4011, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120004, + "a": "item", + "t": 4012, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120004, + "a": "item", + "t": 4013, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120004, + "a": "item", + "t": 4014, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + }, + { + "id": 120004, + "a": "item", + "t": 4015, + "n": 20, + "p": 1, + "colour": 4, + "buyNum": 1, + "openDay": 1, + "buyNeed": [ + { + "a": "item", + "t": "27", + "n": 5000 + } + ], + "sale": 10, + "needVip": 0, + "needZCCG": 0, + "lv": [ + 1, + 9999 + ], + "vipAddbuyNum": [] + } + ] +} \ No newline at end of file diff --git a/src/json/shopcom.json b/src/json/shopcom.json new file mode 100644 index 0000000..b8b86ba --- /dev/null +++ b/src/json/shopcom.json @@ -0,0 +1,202 @@ +{ + "1": { + "id": 1, + "shopId": 1, + "shopType": 1, + "title": "wsw_wz_zhsd", + "undefined": "杂货店", + "openCond": "shop_1", + "des": "intr_shop_des_1", + "img": "wsw_zhd", + "cost": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1 + } + ], + "npcImg": "img_sd_5001", + "npcText": "intr_shopCom_text_1", + "helpText": "intr_shopCom_helpText_1" + }, + "2": { + "id": 2, + "shopId": 8, + "shopType": 3, + "title": "wsw_wz_rcsc", + "undefined": "人才市场", + "openCond": "shop_8", + "des": "intr_shop_des_5", + "img": "wsw_rcsc", + "cost": [ + { + "a": "item", + "t": "27", + "n": 1 + } + ], + "npcImg": "img_sd_3011", + "npcText": "intr_shopCom_text_6", + "helpText": "intr_shopCom_helpText_6" + }, + "3": { + "id": 3, + "shopId": 10, + "shopType": 8, + "title": "wsw_wz_rysd", + "undefined": "荣誉商店", + "openCond": "shop_10", + "des": "intr_shop_des_7", + "img": "wsw_rysd", + "cost": [ + { + "a": "item", + "t": "11", + "n": 1 + } + ], + "npcImg": "img_sd_4002", + "npcText": "intr_shopCom_text_8", + "helpText": "intr_shopCom_helpText_8" + }, + "4": { + "id": 4, + "shopId": 5, + "shopType": 2, + "title": "wsw_wz_zbsd", + "undefined": "装备商店", + "openCond": "shop_5", + "des": "intr_shop_des_10", + "img": "wsw_zbsd", + "cost": [ + { + "a": "item", + "t": "23", + "n": 1 + } + ], + "npcImg": "img_sd_4005", + "npcText": "intr_shopCom_text_5", + "helpText": "intr_shopCom_helpText_5" + }, + "5": { + "id": 5, + "shopId": 2, + "shopType": 5, + "title": "wsw_wz_slsd", + "undefined": "势力商店", + "openCond": "shop_2", + "des": "intr_shop_des_2", + "img": "wsw_slsd", + "cost": [ + { + "a": "item", + "t": "15", + "n": 1 + } + ], + "npcImg": "img_sd_5002", + "npcText": "intr_shopCom_text_2", + "helpText": "intr_shopCom_helpText_2" + }, + "6": { + "id": 6, + "shopId": 4, + "shopType": 7, + "title": "wsw_wz_spsd", + "undefined": "饰品商店", + "openCond": "shop_4", + "des": "intr_shop_des_4", + "img": "wsw_spsd", + "cost": [ + { + "a": "attr", + "t": "guijinshu", + "n": 1 + } + ], + "npcImg": "img_sd_4007", + "npcText": "intr_shopCom_text_4", + "helpText": "intr_shopCom_helpText_4" + }, + "7": { + "id": 7, + "shopId": 11, + "shopType": 9, + "title": "wsw_wz_jgsd", + "undefined": "军功商店", + "openCond": "shop_11", + "des": "intr_shop_des_8", + "img": "wsw_jgsd", + "cost": [ + { + "a": "item", + "t": "39", + "n": 1 + } + ], + "npcImg": "img_sd_3015", + "npcText": "intr_shopCom_text_9", + "helpText": "intr_shopCom_helpText_9" + }, + "8": { + "id": 8, + "shopId": 9, + "shopType": 4, + "title": "wsw_wz_pjsd", + "undefined": "配件商店", + "openCond": "shop_9", + "des": "intr_shop_des_6", + "img": "wsw_pjsd", + "cost": [ + { + "a": "item", + "t": "29", + "n": 1 + } + ], + "npcImg": "img_sd_3004", + "npcText": "intr_shopCom_text_7", + "helpText": "intr_shopCom_helpText_7" + }, + "9": { + "id": 9, + "shopId": 3, + "shopType": 6, + "title": "wsw_wz_zzsd", + "undefined": "战争商店", + "openCond": "shop_3", + "des": "intr_shop_des_3", + "img": "wsw_zzsd", + "cost": [ + { + "a": "item", + "t": "41", + "n": 1 + } + ], + "npcImg": "img_sd_4013", + "npcText": "intr_shopCom_text_3", + "helpText": "intr_shopCom_helpText_3" + }, + "10": { + "id": 10, + "shopId": 12, + "shopType": 11, + "title": "wsw_wz_ltsd", + "undefined": "擂台商店", + "openCond": "shop_12", + "des": "intr_shop_des_14", + "img": "wsw_ltsd", + "cost": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1 + } + ], + "npcImg": "img_sd_3015", + "npcText": "intr_shopCom_text_10", + "helpText": "intr_shopCom_helpText_10" + } +} \ No newline at end of file diff --git a/src/json/shoucangpin.json b/src/json/shoucangpin.json new file mode 100644 index 0000000..3c7af3b --- /dev/null +++ b/src/json/shoucangpin.json @@ -0,0 +1,982 @@ +{ + "1": { + "0": { + "id": 1, + "type": 1, + "name": "intr_shoucangpin_name_1", + "star": 0, + "img": 1, + "need": [ + { + "a": "item", + "t": "10001", + "n": 1 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.05 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_1", + "describe": "intr_shoucangpin_describe_1" + }, + "1": { + "id": 1, + "type": 1, + "name": "intr_shoucangpin_name_2", + "star": 1, + "img": 1, + "need": [ + { + "a": "item", + "t": "10001", + "n": 3 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.06 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_2", + "describe": "intr_shoucangpin_describe_2" + }, + "2": { + "id": 1, + "type": 1, + "name": "intr_shoucangpin_name_3", + "star": 2, + "img": 1, + "need": [ + { + "a": "item", + "t": "10001", + "n": 5 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.07 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_3", + "describe": "intr_shoucangpin_describe_3" + }, + "3": { + "id": 1, + "type": 1, + "name": "intr_shoucangpin_name_4", + "star": 3, + "img": 1, + "need": [ + { + "a": "item", + "t": "10001", + "n": 7 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.08 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_4", + "describe": "intr_shoucangpin_describe_4" + }, + "4": { + "id": 1, + "type": 1, + "name": "intr_shoucangpin_name_5", + "star": 4, + "img": 1, + "need": [ + { + "a": "item", + "t": "10001", + "n": 9 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.09 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_5", + "describe": "intr_shoucangpin_describe_5" + }, + "5": { + "id": 1, + "type": 1, + "name": "intr_shoucangpin_name_6", + "star": 5, + "img": 1, + "need": [ + { + "a": "item", + "t": "10001", + "n": 12 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.1 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_6", + "describe": "intr_shoucangpin_describe_6" + } + }, + "2": { + "0": { + "id": 2, + "type": 1, + "name": "intr_shoucangpin_name_7", + "star": 0, + "img": 2, + "need": [ + { + "a": "item", + "t": "10002", + "n": 1 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.05 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_7", + "describe": "intr_shoucangpin_describe_7" + }, + "1": { + "id": 2, + "type": 1, + "name": "intr_shoucangpin_name_8", + "star": 1, + "img": 2, + "need": [ + { + "a": "item", + "t": "10002", + "n": 3 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.06 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_8", + "describe": "intr_shoucangpin_describe_8" + }, + "2": { + "id": 2, + "type": 1, + "name": "intr_shoucangpin_name_9", + "star": 2, + "img": 2, + "need": [ + { + "a": "item", + "t": "10002", + "n": 5 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.07 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_9", + "describe": "intr_shoucangpin_describe_9" + }, + "3": { + "id": 2, + "type": 1, + "name": "intr_shoucangpin_name_10", + "star": 3, + "img": 2, + "need": [ + { + "a": "item", + "t": "10002", + "n": 7 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.08 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_10", + "describe": "intr_shoucangpin_describe_10" + }, + "4": { + "id": 2, + "type": 1, + "name": "intr_shoucangpin_name_11", + "star": 4, + "img": 2, + "need": [ + { + "a": "item", + "t": "10002", + "n": 9 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.09 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_11", + "describe": "intr_shoucangpin_describe_11" + }, + "5": { + "id": 2, + "type": 1, + "name": "intr_shoucangpin_name_12", + "star": 5, + "img": 2, + "need": [ + { + "a": "item", + "t": "10002", + "n": 11 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.1 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_12", + "describe": "intr_shoucangpin_describe_12" + } + }, + "3": { + "0": { + "id": 3, + "type": 1, + "name": "intr_shoucangpin_name_13", + "star": 0, + "img": 3, + "need": [ + { + "a": "item", + "t": "10003", + "n": 1 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.05 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_13", + "describe": "intr_shoucangpin_describe_13" + }, + "1": { + "id": 3, + "type": 1, + "name": "intr_shoucangpin_name_14", + "star": 1, + "img": 3, + "need": [ + { + "a": "item", + "t": "10003", + "n": 3 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.06 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_14", + "describe": "intr_shoucangpin_describe_14" + }, + "2": { + "id": 3, + "type": 1, + "name": "intr_shoucangpin_name_15", + "star": 2, + "img": 3, + "need": [ + { + "a": "item", + "t": "10003", + "n": 5 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.07 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_15", + "describe": "intr_shoucangpin_describe_15" + }, + "3": { + "id": 3, + "type": 1, + "name": "intr_shoucangpin_name_16", + "star": 3, + "img": 3, + "need": [ + { + "a": "item", + "t": "10003", + "n": 7 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.08 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_16", + "describe": "intr_shoucangpin_describe_16" + }, + "4": { + "id": 3, + "type": 1, + "name": "intr_shoucangpin_name_17", + "star": 4, + "img": 3, + "need": [ + { + "a": "item", + "t": "10003", + "n": 9 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.09 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_17", + "describe": "intr_shoucangpin_describe_17" + }, + "5": { + "id": 3, + "type": 1, + "name": "intr_shoucangpin_name_18", + "star": 5, + "img": 3, + "need": [ + { + "a": "item", + "t": "10003", + "n": 11 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.1 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_18", + "describe": "intr_shoucangpin_describe_18" + } + }, + "4": { + "0": { + "id": 4, + "type": 1, + "name": "intr_shoucangpin_name_19", + "star": 0, + "img": 4, + "need": [ + { + "a": "item", + "t": "10004", + "n": 1 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.05 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_19", + "describe": "intr_shoucangpin_describe_19" + }, + "1": { + "id": 4, + "type": 1, + "name": "intr_shoucangpin_name_20", + "star": 1, + "img": 4, + "need": [ + { + "a": "item", + "t": "10004", + "n": 3 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.06 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_20", + "describe": "intr_shoucangpin_describe_20" + }, + "2": { + "id": 4, + "type": 1, + "name": "intr_shoucangpin_name_21", + "star": 2, + "img": 4, + "need": [ + { + "a": "item", + "t": "10004", + "n": 5 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.07 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_21", + "describe": "intr_shoucangpin_describe_21" + }, + "3": { + "id": 4, + "type": 1, + "name": "intr_shoucangpin_name_22", + "star": 3, + "img": 4, + "need": [ + { + "a": "item", + "t": "10004", + "n": 7 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.08 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_22", + "describe": "intr_shoucangpin_describe_22" + }, + "4": { + "id": 4, + "type": 1, + "name": "intr_shoucangpin_name_23", + "star": 4, + "img": 4, + "need": [ + { + "a": "item", + "t": "10004", + "n": 9 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.09 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_23", + "describe": "intr_shoucangpin_describe_23" + }, + "5": { + "id": 4, + "type": 1, + "name": "intr_shoucangpin_name_24", + "star": 5, + "img": 4, + "need": [ + { + "a": "item", + "t": "10004", + "n": 11 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.1 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_24", + "describe": "intr_shoucangpin_describe_24" + } + }, + "101": { + "0": { + "id": 101, + "type": 2, + "name": "intr_shoucangpin_name_25", + "star": 0, + "img": 101, + "need": [ + { + "a": "item", + "t": "10001", + "n": 1 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.05 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_25", + "describe": "intr_shoucangpin_describe_25" + }, + "1": { + "id": 101, + "type": 2, + "name": "intr_shoucangpin_name_26", + "star": 1, + "img": 101, + "need": [ + { + "a": "item", + "t": "10001", + "n": 3 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.06 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_26", + "describe": "intr_shoucangpin_describe_26" + }, + "2": { + "id": 101, + "type": 2, + "name": "intr_shoucangpin_name_27", + "star": 2, + "img": 101, + "need": [ + { + "a": "item", + "t": "10001", + "n": 5 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.07 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_27", + "describe": "intr_shoucangpin_describe_27" + }, + "3": { + "id": 101, + "type": 2, + "name": "intr_shoucangpin_name_28", + "star": 3, + "img": 101, + "need": [ + { + "a": "item", + "t": "10001", + "n": 7 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.08 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_28", + "describe": "intr_shoucangpin_describe_28" + }, + "4": { + "id": 101, + "type": 2, + "name": "intr_shoucangpin_name_29", + "star": 4, + "img": 101, + "need": [ + { + "a": "item", + "t": "10001", + "n": 9 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.09 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_29", + "describe": "intr_shoucangpin_describe_29" + }, + "5": { + "id": 101, + "type": 2, + "name": "intr_shoucangpin_name_30", + "star": 5, + "img": 101, + "need": [ + { + "a": "item", + "t": "10001", + "n": 12 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.1 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_30", + "describe": "intr_shoucangpin_describe_30" + } + }, + "102": { + "0": { + "id": 102, + "type": 2, + "name": "intr_shoucangpin_name_31", + "star": 0, + "img": 102, + "need": [ + { + "a": "item", + "t": "10002", + "n": 1 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.05 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_31", + "describe": "intr_shoucangpin_describe_31" + }, + "1": { + "id": 102, + "type": 2, + "name": "intr_shoucangpin_name_32", + "star": 1, + "img": 102, + "need": [ + { + "a": "item", + "t": "10002", + "n": 3 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.06 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_32", + "describe": "intr_shoucangpin_describe_32" + }, + "2": { + "id": 102, + "type": 2, + "name": "intr_shoucangpin_name_33", + "star": 2, + "img": 102, + "need": [ + { + "a": "item", + "t": "10002", + "n": 5 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.07 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_33", + "describe": "intr_shoucangpin_describe_33" + }, + "3": { + "id": 102, + "type": 2, + "name": "intr_shoucangpin_name_34", + "star": 3, + "img": 102, + "need": [ + { + "a": "item", + "t": "10002", + "n": 7 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.08 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_34", + "describe": "intr_shoucangpin_describe_34" + }, + "4": { + "id": 102, + "type": 2, + "name": "intr_shoucangpin_name_35", + "star": 4, + "img": 102, + "need": [ + { + "a": "item", + "t": "10002", + "n": 9 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.09 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_35", + "describe": "intr_shoucangpin_describe_35" + }, + "5": { + "id": 102, + "type": 2, + "name": "intr_shoucangpin_name_36", + "star": 5, + "img": 102, + "need": [ + { + "a": "item", + "t": "10002", + "n": 11 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.1 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_36", + "describe": "intr_shoucangpin_describe_36" + } + }, + "103": { + "0": { + "id": 103, + "type": 2, + "name": "intr_shoucangpin_name_37", + "star": 0, + "img": 103, + "need": [ + { + "a": "item", + "t": "10003", + "n": 1 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.05 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_37", + "describe": "intr_shoucangpin_describe_37" + }, + "1": { + "id": 103, + "type": 2, + "name": "intr_shoucangpin_name_38", + "star": 1, + "img": 103, + "need": [ + { + "a": "item", + "t": "10003", + "n": 3 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.06 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_38", + "describe": "intr_shoucangpin_describe_38" + }, + "2": { + "id": 103, + "type": 2, + "name": "intr_shoucangpin_name_39", + "star": 2, + "img": 103, + "need": [ + { + "a": "item", + "t": "10003", + "n": 5 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.07 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_39", + "describe": "intr_shoucangpin_describe_39" + }, + "3": { + "id": 103, + "type": 2, + "name": "intr_shoucangpin_name_40", + "star": 3, + "img": 103, + "need": [ + { + "a": "item", + "t": "10003", + "n": 7 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.08 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_40", + "describe": "intr_shoucangpin_describe_40" + }, + "4": { + "id": 103, + "type": 2, + "name": "intr_shoucangpin_name_41", + "star": 4, + "img": 103, + "need": [ + { + "a": "item", + "t": "10003", + "n": 9 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.09 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_41", + "describe": "intr_shoucangpin_describe_41" + }, + "5": { + "id": 103, + "type": 2, + "name": "intr_shoucangpin_name_42", + "star": 5, + "img": 103, + "need": [ + { + "a": "item", + "t": "10003", + "n": 11 + } + ], + "buff": { + "atk": 100, + "def": 20 + }, + "teshubuff": { + "jinbi": 0.1 + }, + "teshudescribe": "intr_shoucangpin_teshudescribe_42", + "describe": "intr_shoucangpin_describe_42" + } + } +} \ No newline at end of file diff --git a/src/json/shouchong.json b/src/json/shouchong.json new file mode 100644 index 0000000..10a0c4c --- /dev/null +++ b/src/json/shouchong.json @@ -0,0 +1,134 @@ +{ + "shouchong1": { + "paynum": 6, + "cartoon": { + "hero": 5001 + }, + "prize": [ + [ + { + "a": "hero", + "t": "5001", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + [ + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + [ + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ] + ] + }, + "shouchong2": { + "paynum": 30, + "cartoon": { + "img": 5001 + }, + "prize": [ + [ + { + "a": "equip", + "t": "1009", + "n": 1 + }, + { + "a": "equip", + "t": "2009", + "n": 1 + } + ], + [ + { + "a": "equip", + "t": "3009", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1000 + } + ], + [ + { + "a": "equip", + "t": "4009", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 1000 + } + ] + ] + }, + "shouchong3": { + "paynum": 98, + "cartoon": { + "hero": 5002 + }, + "prize": [ + [ + { + "a": "hero", + "t": "5002", + "n": 1 + }, + { + "a": "item", + "t": "4", + "n": 10 + } + ], + [ + { + "a": "equip", + "t": "1010", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 2000 + } + ], + [ + { + "a": "equip", + "t": "3010", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 2000 + } + ] + ] + } +} \ No newline at end of file diff --git a/src/json/skill_afteratk.json b/src/json/skill_afteratk.json new file mode 100644 index 0000000..630f4c5 --- /dev/null +++ b/src/json/skill_afteratk.json @@ -0,0 +1,2870 @@ +{ + "1001200": { + "skillid": 1001200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 5, + "islong": 1 + }, + "describe": "普通攻击对敌方随机目标造成100%远程混乱伤害" + }, + "1001201": { + "skillid": 1001201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1.3 + }, + "chkdata": {}, + "ext": { + "mofa": 4, + "islong": 1 + }, + "describe": "攻击时有50%几率对敌方单体造成130%的冲击伤害" + }, + "1002200": { + "skillid": 1002200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "普通攻击对敌方随机目标造成100%近战物理伤害" + }, + "1002201": { + "skillid": 1002201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1.3 + }, + "chkdata": {}, + "ext": { + "mofa": 1, + "islong": 0 + }, + "describe": "攻击时有50%几率对敌方单体造成130%的穿透伤害" + }, + "2001200": { + "skillid": 2001200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.85 + }, + "chkdata": {}, + "ext": { + "mofa": 3, + "islong": 1 + }, + "describe": "普通攻击对敌方随机目标造成85%远程震荡伤害" + }, + "2002200": { + "skillid": 2002200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "普通攻击对敌方随机目标造成100%近战物理伤害" + }, + "2002201": { + "skillid": 2002201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1.6 + }, + "chkdata": {}, + "ext": { + "mofa": 3, + "islong": 0 + }, + "describe": "攻击时有50%几率对敌方单体造成160%的震荡伤害" + }, + "3001200": { + "skillid": 3001200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 5, + "islong": 1 + }, + "describe": "普通攻击随机攻击敌方1个单位,造成100%的远程混乱伤害" + }, + "3001201": { + "skillid": 3001201, + "type": 3, + "act": "fanji", + "side": 2, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.8 + }, + "chkdata": { + "islong": 0 + }, + "ext": { + "mofa": 5, + "islong": 1 + }, + "describe": "被近战攻击时,将会反击对手,造成自身80%的基础伤害" + }, + "3001202": { + "skillid": 3001202, + "type": 3, + "act": "fanji", + "side": 2, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1.1 + }, + "chkdata": { + "islong": 0 + }, + "ext": { + "mofa": 5, + "islong": 1 + }, + "describe": "被近战攻击时,将会反击对手,造成自身110%的基础伤害" + }, + "3001203": { + "skillid": 3001203, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "near", + "limit": 3, + "data": { + "pro": 0.45 + }, + "chkdata": {}, + "ext": { + "mofa": 4, + "islong": 1 + }, + "describe": "普通攻击升级为横扫状态,攻击目标及上下相邻敌人,造成45%的冲击伤害" + }, + "3002200": { + "skillid": 3002200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 4, + "data": { + "pro": 0.5 + }, + "chkdata": {}, + "ext": { + "mofa": 1, + "islong": 1 + }, + "describe": "普通攻击替换为随机攻击4个目标,造成基础伤害50%的穿透伤害" + }, + "3002201": { + "skillid": 3002201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 4, + "data": { + "pro": 0.8 + }, + "chkdata": {}, + "ext": { + "mofa": 1, + "islong": 1 + }, + "describe": "普通攻击替换为随机攻击4个目标,造成基础伤害80%的穿透伤害" + }, + "3003200": { + "skillid": 3003200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "普通攻击随机攻击敌方1个单位,造成100%的近战物理伤害" + }, + "3003201": { + "skillid": 3003201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1.7 + }, + "chkdata": {}, + "ext": { + "mofa": 4, + "islong": 0 + }, + "describe": "普通攻击随机攻击敌方1个单位,造成170%的近战冲击伤害" + }, + "3003202": { + "skillid": 3003202, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 2 + }, + "chkdata": {}, + "ext": { + "mofa": 4, + "islong": 0 + }, + "describe": "普通攻击随机攻击敌方1个单位,造成200%的近战冲击伤害" + }, + "3004200": { + "skillid": 3004200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 5, + "islong": 1 + }, + "describe": "普通攻击随机攻击敌方1个单位,造成100%的远程混乱伤害" + }, + "3004201": { + "skillid": 3004201, + "type": 3, + "act": "fanji", + "side": 2, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.75 + }, + "chkdata": { + "islong": 0 + }, + "ext": { + "mofa": 5, + "islong": 1 + }, + "describe": "被近战攻击时,将会反击对手,造成自身75%的基础伤害" + }, + "3004202": { + "skillid": 3004202, + "type": 3, + "act": "fanji", + "side": 2, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": { + "islong": 0 + }, + "ext": { + "mofa": 5, + "islong": 1 + }, + "describe": "被近战攻击时,将会反击对手,造成自身100%的基础伤害" + }, + "3004203": { + "skillid": 3004203, + "type": 3, + "act": "fanji", + "side": 2, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 2 + }, + "chkdata": { + "islong": 0 + }, + "ext": { + "mofa": 5, + "islong": 1 + }, + "describe": "被近战攻击时,将会反击对手,造成自身200%的基础伤害" + }, + "3005200": { + "skillid": 3005200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "普通攻击随机攻击敌方1个单位,对敌方随机目标造成100%物理伤害" + }, + "3005201": { + "skillid": 3005201, + "type": 3, + "act": "atkmag", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": { + "debuffdpspro": 1 + }, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "当攻击的目标有任意异常状态时,自身伤害翻倍" + }, + "3006200": { + "skillid": 3006200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 5, + "islong": 1 + }, + "describe": "普通攻击随机攻击敌方1个单位,对敌方随机目标造成100%远程混乱伤害,对敌人造成伤害后,将会吸取当次伤害的50%转化为自身生命" + }, + "3006201": { + "skillid": 3006201, + "type": 3, + "act": "zhiliao", + "side": -1, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.5, + "skillid": 3006100 + }, + "chkdata": {}, + "ext": {}, + "describe": "对敌人造成伤害后,将会吸取当次伤害的50%转化为自身生命" + }, + "3006202": { + "skillid": 3006202, + "type": 3, + "act": "zhiliao", + "side": -1, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.75, + "skillid": 3006101 + }, + "chkdata": {}, + "ext": {}, + "describe": "对敌人造成伤害后,将会吸取当次伤害的75%转化为自身生命" + }, + "3006203": { + "skillid": 3006203, + "type": 3, + "act": "zhiliao", + "side": -1, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1, + "skillid": 3006102 + }, + "chkdata": {}, + "ext": {}, + "describe": "对敌人造成伤害后,将会吸取当次伤害的100%转化为自身生命" + }, + "3007200": { + "skillid": 3007200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 1 + }, + "describe": "普通攻击随机攻击敌方1个单位,造成100%的远程物理伤害" + }, + "3007201": { + "skillid": 3007201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 2.5 + }, + "chkdata": {}, + "ext": { + "mofa": 3, + "islong": 1 + }, + "describe": "出手时,有40%的概率对目标造成250%的震荡伤害伤害" + }, + "3007202": { + "skillid": 3007202, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "near", + "limit": 3, + "data": { + "pro": 0.35 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 1 + }, + "describe": "普攻将会升级为横扫状态,攻击目标及上下相邻的敌人,造成35%的物理伤害" + }, + "3008200": { + "skillid": 3008200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 1 + }, + "describe": "普通攻击随机攻击敌方1个单位,造成100%的远程物理伤害" + }, + "3008201": { + "skillid": 3008201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1.7 + }, + "chkdata": {}, + "ext": { + "mofa": 4, + "islong": 1 + }, + "describe": "攻击时,有50%概率对敌方单体造成自身基础伤害170%的冲击伤害" + }, + "3009200": { + "skillid": 3009200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "普通攻击随机攻击敌方1个单位,造成100%的近战物理伤害" + }, + "3009201": { + "skillid": 3009201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 2.37 + }, + "chkdata": {}, + "ext": { + "mofa": 3, + "islong": 0 + }, + "describe": "攻击时,有40%概率对敌方单体造成自身基础伤害237%的震荡伤害" + }, + "3009202": { + "skillid": 3009202, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 2.67 + }, + "chkdata": {}, + "ext": { + "mofa": 3, + "islong": 0 + }, + "describe": "攻击时,有40%概率对敌方单体造成自身基础伤害267%的震荡伤害" + }, + "3010200": { + "skillid": 3010200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 5, + "islong": 1 + }, + "describe": "普通攻击随机攻击敌方1个单位,造成100%的远程混乱伤害" + }, + "3010201": { + "skillid": 3010201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 2, + "data": { + "pro": 0.9 + }, + "chkdata": {}, + "ext": { + "mofa": 5, + "islong": 1 + }, + "describe": "普通攻击替换为随机攻击2个目标,造成自身伤害90%的物理伤害" + }, + "3010202": { + "skillid": 3010202, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 2, + "data": { + "pro": 1.2 + }, + "chkdata": {}, + "ext": { + "mofa": 5, + "islong": 1 + }, + "describe": "普通攻击替换为随机攻击2个目标,造成自身伤害120%的物理伤害" + }, + "3011200": { + "skillid": 3011200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "普通攻击随机攻击敌方1个单位,造成100%的近战物理伤害" + }, + "3011201": { + "skillid": 3011201, + "type": 3, + "act": "zjdps", + "side": 4, + "randnum": 0.5, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.7 + }, + "chkdata": {}, + "ext": { + "mofa": 4, + "islong": 0 + }, + "describe": "攻击后,有50%的概率对目标追加70%的冲击伤害" + }, + "3011202": { + "skillid": 3011202, + "type": 3, + "act": "zjdps", + "side": 4, + "randnum": 0.5, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 4, + "islong": 0 + }, + "describe": "攻击后,有50%的概率对目标追加100%的冲击伤害" + }, + "3011203": { + "skillid": 3011203, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1.5 + }, + "chkdata": {}, + "ext": { + "mofa": 4, + "islong": 0 + }, + "describe": "出手时,有50%概率对敌方单体造成150%的冲击伤害" + }, + "3011204": { + "skillid": 3011204, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1.5 + }, + "chkdata": {}, + "ext": { + "mofa": 4, + "islong": 0 + }, + "describe": "出手时,有100%概率对敌方单体造成150%的冲击伤害" + }, + "3011205": { + "skillid": 3011205, + "type": 3, + "act": "zjdps", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 4, + "islong": 0 + }, + "describe": "攻击后,有100%的概率对目标追加100%的冲击伤害" + }, + "3012200": { + "skillid": 3012200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "对随机1个目标造成100%伤害" + }, + "3012201": { + "skillid": 3012201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.85 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "每次出手100%发动连击,连续对敌方造成2次物理伤害,每次伤害为基础伤害的85%" + }, + "3013200": { + "skillid": 3013200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 6, + "data": { + "pro": 0.4 + }, + "chkdata": {}, + "ext": { + "mofa": 1, + "islong": 1 + }, + "describe": "普通攻击将会变为攻击敌方全体,造成自身伤害40%的震荡伤害" + }, + "3013201": { + "skillid": 3013201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 6, + "data": { + "pro": 0.6 + }, + "chkdata": {}, + "ext": { + "mofa": 1, + "islong": 1 + }, + "describe": "普通攻击将会变为攻击敌方全体,造成自身伤害60%的震荡伤害" + }, + "3014200": { + "skillid": 3014200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "near", + "limit": 3, + "data": { + "pro": 0.6 + }, + "chkdata": {}, + "ext": { + "mofa": 3, + "islong": 1 + }, + "describe": "普通攻击时额外对目标上下临近位置造成基础伤害60%的冲击伤害" + }, + "3014201": { + "skillid": 3014201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "near", + "limit": 3, + "data": { + "pro": 0.9 + }, + "chkdata": {}, + "ext": { + "mofa": 3, + "islong": 1 + }, + "describe": "普通攻击时额外对目标上下临近位置造成基础伤害90%的冲击伤害" + }, + "3015200": { + "skillid": 3015200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 5, + "islong": 1 + }, + "describe": "普通攻击对敌方随机1个目标造成100%远程混乱伤害" + }, + "3015201": { + "skillid": 3015201, + "type": 3, + "act": "atkdamage", + "side": 1, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 5, + "islong": 1 + }, + "describe": "普通攻击对敌方随机1个目标造成100%远程混乱伤害" + }, + "4001200": { + "skillid": 4001200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 5, + "islong": 1 + }, + "describe": "对随机1个目标造成100%伤害" + }, + "4001201": { + "skillid": 4001201, + "type": 3, + "act": "zjdps", + "side": 4, + "randnum": 0.5, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.7 + }, + "chkdata": {}, + "ext": { + "mofa": 4, + "islong": 1 + }, + "describe": "攻击后,有50%的概率对目标追加70%的冲击伤害" + }, + "4001202": { + "skillid": 4001202, + "type": 3, + "act": "zjdps", + "side": 4, + "randnum": 0.75, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.7 + }, + "chkdata": {}, + "ext": { + "mofa": 4, + "islong": 1 + }, + "describe": "攻击后,有75%的概率对目标追加70%的冲击伤害" + }, + "4001203": { + "skillid": 4001203, + "type": 3, + "act": "zjdps", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.7 + }, + "chkdata": {}, + "ext": { + "mofa": 4, + "islong": 1 + }, + "describe": "攻击后,有100%的概率对目标追加70%的冲击伤害" + }, + "4002200": { + "skillid": 4002200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 2, + "data": { + "pro": 0.95 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "普通攻击替换为随机攻击2个目标,造成基础伤害95%的物理伤害" + }, + "4002201": { + "skillid": 4002201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 2, + "data": { + "pro": 1.14 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "普通攻击替换为随机攻击2个目标,造成基础伤害114%的物理伤害" + }, + "4003200": { + "skillid": 4003200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "near", + "limit": 3, + "data": { + "pro": 0.6 + }, + "chkdata": {}, + "ext": { + "mofa": 4, + "islong": 1 + }, + "describe": "普通攻击时额外对目标上下临近位置造成基础伤害60%的冲击伤害" + }, + "4003201": { + "skillid": 4003201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "near", + "limit": 3, + "data": { + "pro": 0.9 + }, + "chkdata": {}, + "ext": { + "mofa": 4, + "islong": 1 + }, + "describe": "普通攻击时额外对目标上下临近位置造成基础伤害90%的冲击伤害" + }, + "4003202": { + "skillid": 4003202, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "near", + "limit": 3, + "data": { + "pro": 1.8 + }, + "chkdata": {}, + "ext": { + "mofa": 4, + "islong": 1 + }, + "describe": "普通攻击时额外对目标上下临近位置造成基础伤害180%的冲击伤害" + }, + "4004200": { + "skillid": 4004200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.8 + }, + "chkdata": {}, + "ext": { + "mofa": 2, + "islong": 0 + }, + "describe": "对随机1个目标造成80%伤害" + }, + "4004201": { + "skillid": 4004201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.8 + }, + "chkdata": {}, + "ext": { + "mofa": 2, + "islong": 0 + }, + "describe": "每次行动100%发动连击,连续对敌方造成2次破甲伤害,每次伤害为基础伤害的80%" + }, + "4004202": { + "skillid": 4004202, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 2, + "islong": 0 + }, + "describe": "对随机1个目标造成100%伤害" + }, + "4004203": { + "skillid": 4004203, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 2, + "islong": 0 + }, + "describe": "每次行动100%发动连击,连续对敌方造成2次破甲伤害,每次伤害为基础伤害的100%" + }, + "4005200": { + "skillid": 4005200, + "type": 3, + "act": "atkdamage", + "side": 1, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 5, + "islong": 1 + }, + "describe": "对随机1个目标造成100%伤害" + }, + "4005201": { + "skillid": 4005201, + "type": 3, + "act": "atkdamage", + "side": 1, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1.5 + }, + "chkdata": {}, + "ext": { + "mofa": 5, + "islong": 1 + }, + "describe": "对随机1个目标造成150%伤害" + }, + "4005202": { + "skillid": 4005202, + "type": 3, + "act": "zhiliao", + "side": 0, + "randnum": 0.5, + "order": "rand", + "limit": 6, + "data": { + "pro": 0.11 + }, + "chkdata": {}, + "ext": {}, + "describe": "每次行动前,50%几率恢复己方所有成员11%的最大生命值" + }, + "4005203": { + "skillid": 4005203, + "type": 3, + "act": "zhiliao", + "side": 0, + "randnum": 0.75, + "order": "rand", + "limit": 6, + "data": { + "pro": 0.11 + }, + "chkdata": {}, + "ext": {}, + "describe": "每次行动前,75%几率恢复己方所有成员11%的最大生命值" + }, + "4006200": { + "skillid": 4006200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 1 + }, + "describe": "对随机1个目标造成100%伤害" + }, + "4006201": { + "skillid": 4006201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 3, + "data": { + "pro": 0.8 + }, + "chkdata": {}, + "ext": { + "mofa": 2, + "islong": 1 + }, + "describe": "普攻变为攻击随机3个目标,对目标造成自身80%的破甲伤害,被击中的目标有75%的几率进入燃烧状态(每回合降低15%当前生命直至死亡),持续1回合" + }, + "4006202": { + "skillid": 4006202, + "type": 3, + "act": "chongsheng", + "side": -1, + "randnum": 0.5, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.5 + }, + "chkdata": { + "maxnum": 1 + }, + "ext": {}, + "describe": "死亡时有50%的概率立即重生,并恢复50%的生命,一场战斗只会触发一次(被动)" + }, + "4006203": { + "skillid": 4006203, + "type": 3, + "act": "chongsheng", + "side": -1, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.5 + }, + "chkdata": { + "maxnum": 1 + }, + "ext": {}, + "describe": "死亡时有100%的概率立即重生,并恢复50%的生命,一场战斗只会触发一次(被动)" + }, + "4007200": { + "skillid": 4007200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 5, + "islong": 1 + }, + "describe": "对随机1个目标造成100%伤害" + }, + "4007201": { + "skillid": 4007201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "near", + "limit": 3, + "data": { + "pro": 0.9 + }, + "chkdata": {}, + "ext": { + "mofa": 4, + "islong": 1 + }, + "describe": "普通攻击将会随机攻击1-3个目标,造成自身伤害90%的冲击伤害" + }, + "4007202": { + "skillid": 4007202, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "near", + "limit": 3, + "data": { + "pro": 1.8 + }, + "chkdata": {}, + "ext": { + "mofa": 4, + "islong": 1 + }, + "describe": "普通攻击将会随机攻击1-3个目标,造成自身伤害180%的冲击伤害" + }, + "4008200": { + "skillid": 4008200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 1 + }, + "describe": "对随机1个目标造成100%伤害" + }, + "4008201": { + "skillid": 4008201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 2, + "data": { + "pro": 1.5 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 1 + }, + "describe": "普通攻击将会随机攻击2个目标,造成自身伤害150%的物理伤害" + }, + "4008202": { + "skillid": 4008202, + "type": 3, + "act": "fanshang", + "side": 2, + "randnum": 0.8, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.5 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 1 + }, + "describe": "被攻击时,有80%概率使对手受到当次伤害50%的反伤" + }, + "4008203": { + "skillid": 4008203, + "type": 3, + "act": "fanshang", + "side": 2, + "randnum": 0.8, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.8 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 1 + }, + "describe": "被攻击时,有80%概率使对手受到当次伤害80%的反伤" + }, + "4009200": { + "skillid": 4009200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "对随机1个目标造成100%伤害" + }, + "4009201": { + "skillid": 4009201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.6 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "每次行动有100%概率发动连击,连续对敌方造成3次物理伤害,每次伤害为基础伤害的60%" + }, + "4009202": { + "skillid": 4009202, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.75 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "每次行动有100%概率发动连击,连续对敌方造成3次物理伤害,每次伤害为基础伤害的75%" + }, + "4010200": { + "skillid": 4010200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "普通攻击对敌方随机目标造成100%近战物理伤害" + }, + "4010201": { + "skillid": 4010201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 3, + "data": { + "pro": 1.05 + }, + "chkdata": {}, + "ext": { + "mofa": 2, + "islong": 0 + }, + "describe": "普通攻击对敌方随机3个目标造成105%近战破甲伤害" + }, + "4011200": { + "skillid": 4011200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 5, + "islong": 1 + }, + "describe": "普通攻击对敌方随机目标造成100%远程混乱伤害" + }, + "4011201": { + "skillid": 4011201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 4 + }, + "chkdata": {}, + "ext": { + "mofa": 5, + "islong": 1 + }, + "describe": "攻击时,有10%概率对敌方单体造成自身基础伤害400%的破甲伤害" + }, + "4011202": { + "skillid": 4011202, + "type": 3, + "act": "bisha", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 4 + }, + "chkdata": { + "fightType": "pvp", + "buffType": [ + "xuanyun" + ], + "randnum": 0.1 + }, + "ext": { + "mofa": 2, + "islong": 1 + }, + "describe": "当攻击的目标为眩晕状态时,将有10%的几率直接斩杀对手(PVP战斗有效)" + }, + "4012200": { + "skillid": 4012200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "对随机1个目标造成100%伤害" + }, + "4013200": { + "skillid": 4013200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "对随机1个目标造成100%伤害" + }, + "4013201": { + "skillid": 4013201, + "type": 3, + "act": "zhiliao", + "side": -1, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.2 + }, + "chkdata": {}, + "ext": {}, + "describe": "每次行动,额外恢复自身20%的最大生命值" + }, + "4013202": { + "skillid": 4013202, + "type": 3, + "act": "zhiliao", + "side": -1, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.35 + }, + "chkdata": {}, + "ext": {}, + "describe": "每次行动,额外恢复自身35%的最大生命值" + }, + "4013203": { + "skillid": 4013203, + "type": 3, + "act": "fanshang", + "side": 2, + "randnum": 0.8, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.5 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "被攻击时,有80%概率使对手受到当次伤害50%的反伤" + }, + "4014200": { + "skillid": 4014200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "对随机1个目标造成100%伤害" + }, + "4014201": { + "skillid": 4014201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 2, + "data": { + "pro": 1.2 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "普通攻击将会变为随机攻击2个目标,造成自身伤害120%的物理伤害" + }, + "4015200": { + "skillid": 4015200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 1, + "islong": 0 + }, + "describe": "对随机1个目标造成100%伤害" + }, + "4015201": { + "skillid": 4015201, + "type": 3, + "act": "fanji", + "side": 1, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.82 + }, + "chkdata": { + "islong": 0 + }, + "ext": { + "mofa": 1, + "islong": 0 + }, + "describe": "被近战攻击时,将会反击对手,造成自身82%的基础伤害" + }, + "4015202": { + "skillid": 4015202, + "type": 3, + "act": "fanji", + "side": 1, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1.15 + }, + "chkdata": { + "islong": 0 + }, + "ext": { + "mofa": 1, + "islong": 0 + }, + "describe": "被近战攻击时,将会反击对手,造成自身115%的基础伤害" + }, + "4015203": { + "skillid": 4015203, + "type": 3, + "act": "fanji", + "side": 1, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1.6 + }, + "chkdata": { + "islong": 0 + }, + "ext": { + "mofa": 1, + "islong": 0 + }, + "describe": "被近战攻击时,将会反击对手,造成自身160%的基础伤害" + }, + "5001200": { + "skillid": 5001200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 6, + "data": { + "pro": 0.6 + }, + "chkdata": {}, + "ext": { + "mofa": 3, + "islong": 1 + }, + "describe": "普通攻击将会变为攻击敌方全体,造成自身伤害60%的震荡伤害" + }, + "5001201": { + "skillid": 5001201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 6, + "data": { + "pro": 0.85 + }, + "chkdata": {}, + "ext": { + "mofa": 3, + "islong": 1 + }, + "describe": "普通攻击将会变为攻击敌方全体,造成自身伤害85%的震荡伤害" + }, + "5001202": { + "skillid": 5001202, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 6, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 1 + }, + "describe": "普通攻击将会变为攻击敌方全体,造成自身伤害100%的物理伤害" + }, + "5002200": { + "skillid": 5002200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 5, + "islong": 1 + }, + "describe": "普通攻击,对敌方随机目标造成100%混乱伤害" + }, + "5002201": { + "skillid": 5002201, + "type": 3, + "act": "qusan", + "side": 0, + "randnum": 0.5, + "order": "rand", + "limit": 6, + "data": {}, + "chkdata": {}, + "ext": {}, + "describe": "驱散己方全部队友异常状态" + }, + "5002202": { + "skillid": 5002202, + "type": 3, + "act": "zhiliao", + "side": 0, + "randnum": 0.6, + "order": "rand", + "limit": 3, + "data": { + "pro": 0.15 + }, + "chkdata": {}, + "ext": {}, + "describe": "60%几率回复友方随机3个单位15%最大生命值的生命" + }, + "5002203": { + "skillid": 5002203, + "type": 3, + "act": "zhiliao", + "side": 0, + "randnum": 1, + "order": "rand", + "limit": 3, + "data": { + "pro": 0.15 + }, + "chkdata": {}, + "ext": {}, + "describe": "100%几率回复友方随机3个单位15%最大生命值的生命" + }, + "5003200": { + "skillid": 5003200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 5, + "islong": 1 + }, + "describe": "随机对目标1个单位造成100%的远程混乱伤害" + }, + "5003201": { + "skillid": 5003201, + "type": 3, + "act": "fuhuo", + "side": 5, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.4 + }, + "chkdata": { + "maxnum": 1 + }, + "ext": {}, + "describe": "出手时,若有死亡的队友,则50%概率复活该队友并结束本次出手,复活后血量为最大血量的40%,一场战斗只能触发一次" + }, + "5003202": { + "skillid": 5003202, + "type": 3, + "act": "fuhuo", + "side": 5, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": { + "maxnum": 1 + }, + "ext": {}, + "describe": "出手时,若有死亡的队友,则100%概率复活该队友并结束本次出手,复活后血量为最大血量的100%,一场战斗只能触发一次" + }, + "5004200": { + "skillid": 5004200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 6, + "data": { + "pro": 0.6 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 1 + }, + "describe": "普通攻击将会变为攻击敌方全体,造成自身伤害60%的普通伤害" + }, + "5004201": { + "skillid": 5004201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 6, + "data": { + "pro": 0.85 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 1 + }, + "describe": "普通攻击将会变为攻击敌方全体,造成自身伤害85%的普通伤害" + }, + "5005200": { + "skillid": 5005200, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "普通攻击对敌方随机目标造成100%近战物理伤害" + }, + "5005201": { + "skillid": 5005201, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 2.3 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "攻击时有50%几率对敌方单体造成230%的物理伤害" + }, + "5005202": { + "skillid": 5005202, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 3.1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "攻击时有50%几率对敌方单体造成310%的物理伤害" + }, + "10001120": { + "skillid": 10001120, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "val": "1000+100*slv", + "gs": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 1, + "islong": 1 + }, + "describe": "随机对1名敌人造成{1}点穿透伤害,攻击时有{2}%概率降低目标80%防御2回合" + }, + "10001220": { + "skillid": 10001220, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 3, + "data": { + "val": "2000+200*slv", + "gs": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 1, + "islong": 1 + }, + "describe": "随机对3名敌人造成{1}点穿透伤害,攻击时有{2}%概率使敌人枯萎,2回合无法恢复生命" + }, + "10001320": { + "skillid": 10001320, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": "slv*1", + "data": { + "val": "500+120*slv", + "gs": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 1, + "islong": 1 + }, + "describe": "随机对{1}名干部造成{2}点穿透伤害" + }, + "10001420": { + "skillid": 10001420, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 6, + "data": { + "val": "3000+300*slv", + "gs": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 1, + "islong": 1 + }, + "describe": "对全体敌人造成{1}点穿透伤害,且有{2}%几率进入眩晕状态,无法行动1回合,且自身所有干部免疫穿透属性攻击1回合" + }, + "20001120": { + "skillid": 20001120, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 3, + "data": { + "val": "500+slv*50", + "gs": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 2, + "islong": 1 + }, + "describe": "随机对3名敌人造成{1}点破甲伤害" + }, + "20001220": { + "skillid": 20001220, + "type": 3, + "act": "atkdamage", + "side": 1, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "val": "1000+150*slv", + "gs": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 2, + "islong": 1 + }, + "describe": "随机对1敌方干部造成{1}点破甲伤害" + }, + "20001320": { + "skillid": 20001320, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 6, + "data": { + "val": "3000+200*slv", + "gs": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 2, + "islong": 1 + }, + "describe": "对全体敌人造成{1}点破甲伤害,且有{2}%几率进入燃烧状态,持续掉血1回合,且自身所有干部免疫破甲属性攻击1回合" + }, + "30001120": { + "skillid": 30001120, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 6, + "data": { + "val": "500+120*slv", + "gs": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 3, + "islong": 1 + }, + "describe": "对全体敌人造成{1}点震荡伤害" + }, + "30001220": { + "skillid": 30001220, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 3, + "data": { + "val": "1000+150*slv", + "gs": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 3, + "islong": 1 + }, + "describe": "随机对3名敌人造成{1}点震荡伤害,使其伤害降低{2}%持续1回合" + }, + "30001320": { + "skillid": 30001320, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "val": "1000+150*slv", + "gs": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 3, + "islong": 1 + }, + "describe": "随机对1名敌方干部造成{1}点震荡伤害" + }, + "30001420": { + "skillid": 30001420, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 6, + "data": { + "val": "3000+300*slv", + "gs": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 3, + "islong": 1 + }, + "describe": "对全体敌人造成{1}点震荡伤害,且有{2}%几率使目标沉睡持续2回合,自身所有干部免疫震荡属性攻击1回合" + }, + "40001120": { + "skillid": 40001120, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 2, + "data": { + "val": "800+150*slv", + "gs": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 4, + "islong": 1 + }, + "describe": "随机对2名敌人造成{1}点冲击伤害,攻击时{2}%概率使敌人眩晕1回合" + }, + "40001220": { + "skillid": 40001220, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "val": "1000+150*slv", + "gs": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 4, + "islong": 1 + }, + "describe": "随机对{1}名敌方干部造成{2}点冲击伤害" + }, + "40001230": { + "skillid": 40001230, + "type": 3, + "act": "qusan", + "side": 0, + "randnum": 1, + "order": "rand", + "limit": "slv*1", + "data": {}, + "chkdata": {}, + "ext": {}, + "describe": "驱散随机{1}个干部的异常状态" + }, + "40001320": { + "skillid": 40001320, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": "slv*1", + "data": { + "val": "1000+150*slv", + "gs": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 4, + "islong": 1 + }, + "describe": "随机对1名敌人造成{1}点破甲伤害" + }, + "40001420": { + "skillid": 40001420, + "type": 3, + "act": "atkdamage", + "side": 4, + "randnum": 1, + "order": "rand", + "limit": 6, + "data": { + "val": "3000+300*slv", + "gs": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 4, + "islong": 1 + }, + "describe": "对全体敌人造成{1}点冲击伤害,且有{2}%几率使目标伤害降低30%1回合,且自身所有干部免疫冲击属性攻击1回合" + }, + "tx03200": { + "skillid": "tx03200", + "type": 3, + "act": "atkdamage", + "side": 1, + "randnum": 0.02, + "order": " hp,desc", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "在攻击时有0.02几率寻找出生命百分比最低的目标并进行攻击" + }, + "tx03201": { + "skillid": "tx03201", + "type": 3, + "act": "atkdamage", + "side": 1, + "randnum": 0.04, + "order": " hp,desc", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "在攻击时有0.04几率寻找出生命百分比最低的目标并进行攻击" + }, + "tx03202": { + "skillid": "tx03202", + "type": 3, + "act": "atkdamage", + "side": 1, + "randnum": 0.06, + "order": " hp,desc", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "在攻击时有0.06几率寻找出生命百分比最低的目标并进行攻击" + }, + "tx03203": { + "skillid": "tx03203", + "type": 3, + "act": "atkdamage", + "side": 1, + "randnum": 0.08, + "order": " hp,desc", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "在攻击时有0.08几率寻找出生命百分比最低的目标并进行攻击" + }, + "tx03204": { + "skillid": "tx03204", + "type": 3, + "act": "atkdamage", + "side": 1, + "randnum": 0.1, + "order": " hp,desc", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "在攻击时有0.10几率寻找出生命百分比最低的目标并进行攻击" + }, + "tx03205": { + "skillid": "tx03205", + "type": 3, + "act": "atkdamage", + "side": 1, + "randnum": 0.12, + "order": " hp,desc", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "在攻击时有0.12几率寻找出生命百分比最低的目标并进行攻击" + }, + "tx03206": { + "skillid": "tx03206", + "type": 3, + "act": "atkdamage", + "side": 1, + "randnum": 0.14, + "order": " hp,desc", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "在攻击时有0.14几率寻找出生命百分比最低的目标并进行攻击" + }, + "tx03207": { + "skillid": "tx03207", + "type": 3, + "act": "atkdamage", + "side": 1, + "randnum": 0.16, + "order": " hp,desc", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "在攻击时有0.16几率寻找出生命百分比最低的目标并进行攻击" + }, + "tx03208": { + "skillid": "tx03208", + "type": 3, + "act": "atkdamage", + "side": 1, + "randnum": 0.18, + "order": " hp,desc", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "在攻击时有0.18几率寻找出生命百分比最低的目标并进行攻击" + }, + "tx03209": { + "skillid": "tx03209", + "type": 3, + "act": "atkdamage", + "side": 1, + "randnum": 0.2, + "order": " hp,desc", + "limit": 1, + "data": { + "pro": 1 + }, + "chkdata": {}, + "ext": { + "mofa": 0, + "islong": 0 + }, + "describe": "在攻击时有0.20几率寻找出生命百分比最低的目标并进行攻击" + }, + "tx08200": { + "skillid": "tx08200", + "type": 3, + "act": "chongsheng", + "side": -1, + "randnum": 0.02, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.5 + }, + "chkdata": { + "maxnum": 1 + }, + "ext": {}, + "describe": "当战斗中死亡后,有{1}%的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存" + }, + "tx08201": { + "skillid": "tx08201", + "type": 3, + "act": "chongsheng", + "side": -1, + "randnum": 0.04, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.5 + }, + "chkdata": { + "maxnum": 1 + }, + "ext": {}, + "describe": "当战斗中死亡后,有{1}%的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存" + }, + "tx08202": { + "skillid": "tx08202", + "type": 3, + "act": "chongsheng", + "side": -1, + "randnum": 0.06, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.5 + }, + "chkdata": { + "maxnum": 1 + }, + "ext": {}, + "describe": "当战斗中死亡后,有{1}%的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存" + }, + "tx08203": { + "skillid": "tx08203", + "type": 3, + "act": "chongsheng", + "side": -1, + "randnum": 0.08, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.5 + }, + "chkdata": { + "maxnum": 1 + }, + "ext": {}, + "describe": "当战斗中死亡后,有{1}%的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存" + }, + "tx08204": { + "skillid": "tx08204", + "type": 3, + "act": "chongsheng", + "side": -1, + "randnum": 0.1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.5 + }, + "chkdata": { + "maxnum": 1 + }, + "ext": {}, + "describe": "当战斗中死亡后,有{1}%的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存" + }, + "tx08205": { + "skillid": "tx08205", + "type": 3, + "act": "chongsheng", + "side": -1, + "randnum": 0.12, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.5 + }, + "chkdata": { + "maxnum": 1 + }, + "ext": {}, + "describe": "当战斗中死亡后,有{1}%的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存" + }, + "tx08206": { + "skillid": "tx08206", + "type": 3, + "act": "chongsheng", + "side": -1, + "randnum": 0.14, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.5 + }, + "chkdata": { + "maxnum": 1 + }, + "ext": {}, + "describe": "当战斗中死亡后,有{1}%的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存" + }, + "tx08207": { + "skillid": "tx08207", + "type": 3, + "act": "chongsheng", + "side": -1, + "randnum": 0.16, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.5 + }, + "chkdata": { + "maxnum": 1 + }, + "ext": {}, + "describe": "当战斗中死亡后,有{1}%的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存" + }, + "tx08208": { + "skillid": "tx08208", + "type": 3, + "act": "chongsheng", + "side": -1, + "randnum": 0.18, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.5 + }, + "chkdata": { + "maxnum": 1 + }, + "ext": {}, + "describe": "当战斗中死亡后,有{1}%的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存" + }, + "tx08209": { + "skillid": "tx08209", + "type": 3, + "act": "chongsheng", + "side": -1, + "randnum": 0.2, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.5 + }, + "chkdata": { + "maxnum": 1 + }, + "ext": {}, + "describe": "当战斗中死亡后,有{1}%的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存" + }, + "tx09300": { + "skillid": "tx09300", + "type": 3, + "act": "addhp", + "side": -1, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.05 + }, + "chkdata": {}, + "ext": {}, + "describe": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的0.05将会转化为自身的生命值" + }, + "tx09301": { + "skillid": "tx09301", + "type": 3, + "act": "addhp", + "side": -1, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.1 + }, + "chkdata": {}, + "ext": {}, + "describe": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的0.1将会转化为自身的生命值" + }, + "tx09302": { + "skillid": "tx09302", + "type": 3, + "act": "addhp", + "side": -1, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.15 + }, + "chkdata": {}, + "ext": {}, + "describe": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的0.15将会转化为自身的生命值" + }, + "tx09303": { + "skillid": "tx09303", + "type": 3, + "act": "addhp", + "side": -1, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.2 + }, + "chkdata": {}, + "ext": {}, + "describe": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的0.2将会转化为自身的生命值" + }, + "tx09304": { + "skillid": "tx09304", + "type": 3, + "act": "addhp", + "side": -1, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.25 + }, + "chkdata": {}, + "ext": {}, + "describe": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的0.25将会转化为自身的生命值" + }, + "tx09305": { + "skillid": "tx09305", + "type": 3, + "act": "addhp", + "side": -1, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.3 + }, + "chkdata": {}, + "ext": {}, + "describe": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的0.3将会转化为自身的生命值" + }, + "tx09306": { + "skillid": "tx09306", + "type": 3, + "act": "addhp", + "side": -1, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.35 + }, + "chkdata": {}, + "ext": {}, + "describe": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的0.35将会转化为自身的生命值" + }, + "tx09307": { + "skillid": "tx09307", + "type": 3, + "act": "addhp", + "side": -1, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.4 + }, + "chkdata": {}, + "ext": {}, + "describe": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的0.4将会转化为自身的生命值" + }, + "tx09308": { + "skillid": "tx09308", + "type": 3, + "act": "addhp", + "side": -1, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.45 + }, + "chkdata": {}, + "ext": {}, + "describe": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的0.45将会转化为自身的生命值" + }, + "tx09309": { + "skillid": "tx09309", + "type": 3, + "act": "addhp", + "side": -1, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.5 + }, + "chkdata": {}, + "ext": {}, + "describe": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的0.5将会转化为自身的生命值" + }, + "sp01300": { + "skillid": "sp01300", + "type": 3, + "act": "zhiliao", + "side": 0, + "randnum": 0.2, + "order": " hp,desc", + "limit": 1, + "data": { + "pro": 0.1 + }, + "chkdata": {}, + "ext": {}, + "describe": "行动时,20%几率恢复我方生命值最低队友10%的最大生命值" + }, + "sp02300": { + "skillid": "sp02300", + "type": 3, + "act": "zhiliao", + "side": -1, + "randnum": 1, + "order": "rand", + "limit": 1, + "data": { + "pro": 0.05 + }, + "chkdata": {}, + "ext": {}, + "describe": "行动时额外恢复自身5%的最大生命值" + }, + "sp03300": { + "skillid": "sp03300", + "type": 3, + "act": "zhiliao", + "side": 0, + "randnum": 0.15, + "order": "rand", + "limit": 6, + "data": { + "pro": 0.05 + }, + "chkdata": {}, + "ext": {}, + "describe": "行动时有15%几率恢复己方所有成员5%的最大生命值" + } +} \ No newline at end of file diff --git a/src/json/skill_atk.json b/src/json/skill_atk.json new file mode 100644 index 0000000..b96a4e7 --- /dev/null +++ b/src/json/skill_atk.json @@ -0,0 +1,1947 @@ +{ + "1001100": { + "skillid": 1001100, + "name": "保", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "1001200" + ], + "describe": "普通攻击对敌方随机目标造成100%远程混乱伤害" + }, + "1001101": { + "skillid": 1001101, + "name": "保", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "1001201" + ], + "describe": "攻击时有50%几率对敌方单体造成130%的冲击伤害" + }, + "1002100": { + "skillid": 1002100, + "name": "罗旺", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "1002200" + ], + "describe": "普通攻击对敌方随机目标造成100%近战物理伤害" + }, + "1002101": { + "skillid": 1002101, + "name": "罗旺", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "1002201" + ], + "describe": "攻击时有50%几率对敌方单体造成130%的穿透伤害" + }, + "2001100": { + "skillid": 2001100, + "name": "罗素", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "2001200" + ], + "describe": "普通攻击对敌方随机目标造成85%远程震荡伤害" + }, + "2002100": { + "skillid": 2002100, + "name": "瓦萨普", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "2002200" + ], + "describe": "普通攻击对敌方随机目标造成100%近战物理伤害" + }, + "2002101": { + "skillid": 2002101, + "name": "瓦萨普", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "2002201" + ], + "describe": "攻击时有50%几率对敌方单体造成160%的震荡伤害" + }, + "3001100": { + "skillid": 3001100, + "name": "吉田", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3001200" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成100%的远程混乱伤害" + }, + "3001101": { + "skillid": 3001101, + "name": "吉田", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3001200", + "3001301" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成100%的远程混乱伤害,击中目标后,目标在3回合内无法通过任何方式恢复生命(技能)" + }, + "3001102": { + "skillid": 3001102, + "name": "吉田", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "near", + "limit": 3, + "constrol": 1, + "v": [ + "3001203", + "3001302" + ], + "describe": "普通攻击升级为横扫状态,攻击目标及上下相邻敌人,造成45%的风混乱伤害(技能)" + }, + "3002100": { + "skillid": 3002100, + "name": "李卡德", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 4, + "constrol": 1, + "v": [ + "3002200" + ], + "describe": "普通攻击替换为随机攻击4个目标,造成基础伤害50%的穿透伤害" + }, + "3002101": { + "skillid": 3002101, + "name": "李卡德", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 4, + "constrol": 1, + "v": [ + "3002201" + ], + "describe": "普通攻击替换为随机攻击4个目标,造成基础伤害80%的穿透伤害" + }, + "3002102": { + "skillid": 3002102, + "name": "李卡德", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 4, + "constrol": 1, + "v": [ + "3002201", + "3002301", + "3002302" + ], + "describe": "普通攻击替换为随机攻击4个目标,造成基础伤害80%的穿透伤害,击中敌人时降低对手35%的士气和暴击值,持续1回合" + }, + "3003100": { + "skillid": 3003100, + "name": "查卡", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3003200" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成100%的近战物理伤害" + }, + "3003101": { + "skillid": 3003101, + "name": "查卡", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3003201" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成170%的近战冲击伤害" + }, + "3003102": { + "skillid": 3003102, + "name": "查卡", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3003202" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成200%的近战冲击伤害" + }, + "3004100": { + "skillid": 3004100, + "name": "珍", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3004200" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成100%的远程混乱伤害" + }, + "3004101": { + "skillid": 3004101, + "name": "珍", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3004301", + "3004200" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成100%的远程混乱伤害,同时出手时,自身攻击额外提升100%,持续1回合" + }, + "3005100": { + "skillid": 3005100, + "name": "猫王", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3005200", + "3005301" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成100%的近战物理伤害,45%的概率使目标恐惧(无法出手),持续2回合" + }, + "3005101": { + "skillid": 3005101, + "name": "猫王", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3005200", + "3005302" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成100%的近战物理伤害,75%的概率使目标恐惧(无法出手),持续2回合" + }, + "3006100": { + "skillid": 3006100, + "name": "韦伯", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3006200", + "3006201" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成100%的远程混乱伤害,对敌人造成伤害后,将会吸取当次伤害的50%转化为自身生命" + }, + "3006101": { + "skillid": 3006101, + "name": "韦伯", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3006200", + "3006202" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成100%的远程混乱伤害,对敌人造成伤害后,将会吸取当次伤害的75%转化为自身生命" + }, + "3006102": { + "skillid": 3006102, + "name": "韦伯", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3006304", + "3006200", + "3006203" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成100%的远程混乱伤害,对敌人造成伤害后,将会吸取当次伤害的100%转化为自身生命,且出手时,自身攻击额外提升100%,持续1回合" + }, + "3007100": { + "skillid": 3007100, + "name": "斐洛基欧", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3007200" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成100%的远程物理伤害" + }, + "3007101": { + "skillid": 3007101, + "name": "斐洛基欧", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3007201" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成250%的水系混乱伤害" + }, + "3007102": { + "skillid": 3007102, + "name": "斐洛基欧", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3007200", + "3007301" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成100%的远程物理伤害,击中目标后,目标在3回合内无法通过任何方式恢复生命" + }, + "3007103": { + "skillid": 3007103, + "name": "斐洛基欧", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3007201", + "3007301" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成250%的水系混乱伤害,击中目标后,目标在3回合内无法通过任何方式恢复生命" + }, + "3007104": { + "skillid": 3007104, + "name": "斐洛基欧", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "near", + "limit": 3, + "constrol": 1, + "v": [ + "3007202", + "3007301" + ], + "describe": "普攻将会升级为横扫状态,攻击目标及上下相邻的敌人,造成35%的物理伤害,击中目标后,目标在3回合内无法通过任何方式恢复生命" + }, + "3008100": { + "skillid": 3008100, + "name": "罗尼", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3008200", + "3008301" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成100%的远程物理伤害,有50%概率使目标伤害降低50%,持续2回合" + }, + "3008101": { + "skillid": 3008101, + "name": "罗尼", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3008200", + "3008302" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成100%的远程物理伤害,有50%概率使目标伤害降低75%,持续2回合" + }, + "3008102": { + "skillid": 3008102, + "name": "罗尼", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3008201", + "3008302" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成170%的远程冲击伤害,有50%概率使目标伤害降低75%,持续2回合" + }, + "3009100": { + "skillid": 3009100, + "name": "阿布莱格", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3009200" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成100%的近战物理伤害" + }, + "3009101": { + "skillid": 3009101, + "name": "阿布莱格", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3009201" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成237%的水系混乱伤害" + }, + "3009102": { + "skillid": 3009102, + "name": "阿布莱格", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3009202" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成267%的水系混乱伤害" + }, + "3010100": { + "skillid": 3010100, + "name": "彪", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3010200", + "3010301" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成100%的远程混乱伤害,攻击后,有50%概率使目标中剧毒,持续2回合" + }, + "3010101": { + "skillid": 3010101, + "name": "彪", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3010200", + "3010302" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成100%的远程混乱伤害,攻击后,有95%概率使目标中剧毒,持续2回合" + }, + "3010102": { + "skillid": 3010102, + "name": "彪", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 2, + "constrol": 1, + "v": [ + "3010201", + "3010302" + ], + "describe": "普通攻击替换为随机攻击2个目标,造成自身伤害90%的物理伤害,攻击后,有95%概率使目标中剧毒,持续2回合" + }, + "3010103": { + "skillid": 3010103, + "name": "彪", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 2, + "constrol": 1, + "v": [ + "3010202", + "3010302", + "3010303" + ], + "describe": "普通攻击替换为随机攻击2个目标,造成自身伤害120%的物理伤害,攻击后,有95%概率使目标中剧毒,持续2回合,且降低目标20%的防御,持续1回合" + }, + "3011100": { + "skillid": 3011100, + "name": "雷卡基", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3011200", + "3011201" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成100%的近战物理伤害,攻击后,有50%的概率对目标追加70%的冲击伤害" + }, + "3011101": { + "skillid": 3011101, + "name": "雷卡基", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3011200", + "3011202" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成100%的近战物理伤害,攻击后,有50%的概率对目标追加100%的冲击伤害" + }, + "3011102": { + "skillid": 3011102, + "name": "雷卡基", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3011203" + ], + "describe": "出手时,有50%概率对敌方单体造成150%的冲击伤害" + }, + "3011103": { + "skillid": 3011103, + "name": "雷卡基", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3011204", + "3011205" + ], + "describe": "普通攻击随机攻击敌方1个单位,造成100%的近战物理伤害,出手时,100%概率对敌方单体造成150%的冲击伤害,攻击后,有100%的概率对目标追加100%的冲击伤害" + }, + "3012100": { + "skillid": 3012100, + "name": "布利茨", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3012200" + ], + "describe": "对随机1个目标造成100%伤害" + }, + "3012101": { + "skillid": 3012101, + "name": "布利茨", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3012303", + "3012201" + ], + "describe": "每次出手100%发动连击,连续对敌方造成2次物理伤害,每次伤害为基础伤害的85%" + }, + "3013100": { + "skillid": 3013100, + "name": "卡克斯顿", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 6, + "constrol": 1, + "v": [ + "3013200" + ], + "describe": "普通攻击将会变为攻击敌方全体,造成自身伤害40%的震荡伤害" + }, + "3013101": { + "skillid": 3013101, + "name": "卡克斯顿", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 6, + "constrol": 1, + "v": [ + "3013201" + ], + "describe": "普通攻击将会变为攻击敌方全体,造成自身伤害60%的震荡伤害" + }, + "3013102": { + "skillid": 3013102, + "name": "卡克斯顿", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 6, + "constrol": 1, + "v": [ + "3013201", + "3013300" + ], + "describe": "普通攻击将会变为攻击敌方全体,造成自身伤害60%的震荡伤害,每次击中目标,都将降低目标25%命中率,持续1回合" + }, + "3014100": { + "skillid": 3014100, + "name": "陈", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "near", + "limit": 3, + "constrol": 1, + "v": [ + "3014200" + ], + "describe": "普通攻击时额外对目标上下临近位置造成基础伤害60%的冲击伤害" + }, + "3014101": { + "skillid": 3014101, + "name": "陈", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "near", + "limit": 3, + "constrol": 1, + "v": [ + "3014201" + ], + "describe": "普通攻击时额外对目标上下临近位置造成基础伤害90%的冲击伤害" + }, + "3015100": { + "skillid": 3015100, + "name": "贝尼", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3015300", + "3015200" + ], + "describe": "出手时,有50%概率使自身攻击、防御同时提高50%,持续2回合,普通攻击对敌方随机1个目标造成100%远程混乱伤害" + }, + "3015101": { + "skillid": 3015101, + "name": "贝尼", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "3015302", + "3015200" + ], + "describe": "出手时,有50%概率使自身攻击、防御同时提高85%,持续2回合,普通攻击对敌方随机1个目标造成100%远程混乱伤害" + }, + "3015102": { + "skillid": 3015102, + "name": "贝尼", + "atkType": "atk", + "type": 1, + "side": 0, + "order": "rand", + "limit": 3, + "constrol": 1, + "v": [ + "3015304", + "3015201" + ], + "describe": "出手时,有50%概率使友方3个目标攻击、防御同时提高85%,持续2回合,普通攻击对敌方随机1个目标造成100%远程混乱伤害" + }, + "4001100": { + "skillid": 4001100, + "name": "洛克", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4001200", + "4001201" + ], + "describe": "有50%的概率对目标追加70%的冲击伤害" + }, + "4001101": { + "skillid": 4001101, + "name": "洛克", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4001200", + "4001202" + ], + "describe": "有75%的概率对目标追加70%的冲击伤害" + }, + "4001102": { + "skillid": 4001102, + "name": "洛克", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4001200", + "4001203" + ], + "describe": "有100%的概率对目标追加70%的冲击伤害" + }, + "4002100": { + "skillid": 4002100, + "name": "达奇", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 2, + "constrol": 1, + "v": [ + "4002200" + ], + "describe": "普通攻击替换为随机攻击2个目标,造成基础伤害95%的物理伤害" + }, + "4002101": { + "skillid": 4002101, + "name": "达奇", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 2, + "constrol": 1, + "v": [ + "4002201" + ], + "describe": "普通攻击替换为随机攻击2个目标,造成基础伤害114%的物理伤害" + }, + "4002102": { + "skillid": 4002102, + "name": "达奇", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 2, + "constrol": 1, + "v": [ + "4002201", + "4002300" + ], + "describe": "普通攻击替换为随机攻击2个目标,造成基础伤害114%的物理伤害,击中目标后,目标在2回合内无法通过任何方式恢复生命" + }, + "4003100": { + "skillid": 4003100, + "name": "军曹", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "near", + "limit": 3, + "constrol": 1, + "v": [ + "4003200" + ], + "describe": "普通攻击时额外对目标上下临近位置造成基础伤害60%的冲击伤害" + }, + "4003101": { + "skillid": 4003101, + "name": "军曹", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "near", + "limit": 3, + "constrol": 1, + "v": [ + "4003201" + ], + "describe": "普通攻击时额外对目标上下临近位置造成基础伤害90%的冲击伤害" + }, + "4003102": { + "skillid": 4003102, + "name": "军曹", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "near", + "limit": 3, + "constrol": 1, + "v": [ + "4003202" + ], + "describe": "出手时,自身攻击额外提升100%,持续1回合。普通攻击时额外对目标上下临近位置造成基础伤害90%的冲击伤害" + }, + "4003103": { + "skillid": 4003103, + "name": "军曹", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "near", + "limit": 3, + "constrol": 1, + "v": [ + "4003202", + "4003300" + ], + "describe": "出手时,自身攻击额外提升100%,持续1回合。普通攻击时额外对目标上下临近位置造成基础伤害90%的冲击伤害,攻击时有50%概率使目标防御降低50%,持续2回合" + }, + "4004100": { + "skillid": 4004100, + "name": "尤兰达", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 2, + "constrol": 1, + "v": [ + "4004200", + "4004201" + ], + "describe": "每次行动100%发动连击,连续对敌方造成2次破甲伤害,每次伤害为基础伤害的80%" + }, + "4004101": { + "skillid": 4004101, + "name": "尤兰达", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 2, + "constrol": 1, + "v": [ + "4004202", + "4004203" + ], + "describe": "每次行动100%发动连击,连续对敌方造成2次破甲伤害,每次伤害为基础伤害的100%" + }, + "4004102": { + "skillid": 4004102, + "name": "尤兰达", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 2, + "constrol": 1, + "v": [ + "4004202", + "4004203", + "4004300" + ], + "describe": "每次行动100%发动连击,连续对敌方造成2次破甲伤害,每次伤害为基础伤害的100%,攻击后,有50%概率使目标中毒(每回合降低15%当前生命),持续2回合" + }, + "4004103": { + "skillid": 4004103, + "name": "尤兰达", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 2, + "constrol": 1, + "v": [ + "4004202", + "4004203", + "4004301" + ], + "describe": "每次行动100%发动连击,连续对敌方造成2次破甲伤害,每次伤害为基础伤害的100%,攻击后,有80%概率使目标中毒(每回合降低15%当前生命),持续2回合" + }, + "4005100": { + "skillid": 4005100, + "name": "艾达", + "atkType": "atk", + "type": 1, + "side": 0, + "order": "rand", + "limit": 6, + "constrol": 1, + "v": [ + "4005200", + "4005202" + ], + "describe": "每次行动前,50%几率恢复己方所有成员11%的最大生命值" + }, + "4005101": { + "skillid": 4005101, + "name": "艾达", + "atkType": "atk", + "type": 1, + "side": 0, + "order": "rand", + "limit": 6, + "constrol": 1, + "v": [ + "4005201", + "4005202" + ], + "describe": "普通攻击伤害提升50%" + }, + "4005102": { + "skillid": 4005102, + "name": "艾达", + "atkType": "atk", + "type": 1, + "side": 0, + "order": "rand", + "limit": 6, + "constrol": 1, + "v": [ + "4005300", + "4005201", + "4005202" + ], + "describe": "出手时,有50%的概率使己方全队受到的水系混乱伤害降低80%,持续1回合" + }, + "4005103": { + "skillid": 4005103, + "name": "艾达", + "atkType": "atk", + "type": 1, + "side": 0, + "order": "rand", + "limit": 6, + "constrol": 1, + "v": [ + "4005300", + "4005201", + "4005203" + ], + "describe": "每次行动前,75%几率恢复己方所有成员11%的最大生命值" + }, + "4006100": { + "skillid": 4006100, + "name": "仙鹤", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4006200" + ], + "describe": "对随机1个目标造成100%伤害" + }, + "4006101": { + "skillid": 4006101, + "name": "仙鹤", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 3, + "constrol": 1, + "v": [ + "4006301", + "4006201", + "4006302" + ], + "describe": "普攻变为攻击随机3个目标,对目标造成自身80%的破甲伤害,被击中的目标有75%的几率进入燃烧状态(每回合降低15%当前生命直至死亡),持续1回合" + }, + "4006102": { + "skillid": 4006102, + "name": "仙鹤", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4006200", + "4006301" + ], + "describe": "对随机1个目标造成100%伤害,每次出手,额外恢复自身35%的最大生命值" + }, + "4007100": { + "skillid": 4007100, + "name": "鹫峰雪绪", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4007200", + "4007300" + ], + "describe": "攻击后,有50%的概率使目标眩晕(无法行动),持续1回合" + }, + "4007101": { + "skillid": 4007101, + "name": "鹫峰雪绪", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4007200", + "4007301" + ], + "describe": "攻击后,有70%的概率使目标眩晕(无法行动),持续1回合" + }, + "4007102": { + "skillid": 4007102, + "name": "鹫峰雪绪", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "near", + "limit": 3, + "constrol": 1, + "v": [ + "4007201", + "4007302" + ], + "describe": "普通攻击将会随机攻击1-3个目标,造成自身伤害90%的冲击伤害。攻击后,有70%的概率使目标眩晕(无法行动),持续1回合" + }, + "4007103": { + "skillid": 4007103, + "name": "鹫峰雪绪", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "near", + "limit": 3, + "constrol": 1, + "v": [ + "4007202", + "4007302" + ], + "describe": "普通攻击将会随机攻击1-3个目标,造成自身伤害180%的冲击伤害。攻击后,有70%的概率使目标眩晕(无法行动),持续1回合" + }, + "4008100": { + "skillid": 4008100, + "name": "坂东次男", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4008200" + ], + "describe": "对随机1个目标造成100%伤害" + }, + "4008101": { + "skillid": 4008101, + "name": "坂东次男", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4008200", + "4008300" + ], + "describe": "对随机1个目标造成100%伤害,击中目标后,目标在3回合内无法通过任何方式恢复生命" + }, + "4008102": { + "skillid": 4008102, + "name": "坂东次男", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 2, + "constrol": 1, + "v": [ + "4008201", + "4008301" + ], + "describe": "对随机2个目标造成150%伤害,击中目标后,目标在3回合内无法通过任何方式恢复生命" + }, + "4009100": { + "skillid": 4009100, + "name": "竹中正洋", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4009201", + "4009201", + "4009201" + ], + "describe": "每次行动有100%概率发动连击,连续对敌方造成3次物理伤害,每次伤害为基础伤害的60%" + }, + "4009101": { + "skillid": 4009101, + "name": "竹中正洋", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4009202", + "4009202", + "4009202" + ], + "describe": "每次行动有100%概率发动连击,连续对敌方造成3次物理伤害,每次伤害为基础伤害的75%" + }, + "4009102": { + "skillid": 4009102, + "name": "竹中正洋", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4009202", + "4009202", + "4009202", + "4009300" + ], + "describe": "每次行动有100%概率发动连击,连续对敌方造成3次物理伤害,每次伤害为基础伤害的75%,攻击后,有50%的概率使目标沉睡(无法出手),持续3回合" + }, + "4009103": { + "skillid": 4009103, + "name": "竹中正洋", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4009202", + "4009202", + "4009202", + "4009301" + ], + "describe": "每次行动有100%概率发动连击,连续对敌方造成3次物理伤害,每次伤害为基础伤害的75%,攻击后,有50%的概率使目标恐惧(无法出手),持续3回合" + }, + "4010100": { + "skillid": 4010100, + "name": "加尔西亚", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4010200", + "4010301" + ], + "describe": "普通攻击对敌方随机目标造成100%近战物理伤害,攻击后,有35%的概率使目标眩晕,持续2回合" + }, + "4010101": { + "skillid": 4010101, + "name": "加尔西亚", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4010200", + "4010302" + ], + "describe": "普通攻击对敌方随机目标造成100%近战物理伤害,攻击后,有55%的概率使目标眩晕,持续2回合" + }, + "4010102": { + "skillid": 4010102, + "name": "加尔西亚", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 3, + "constrol": 1, + "v": [ + "4010201", + "4010303" + ], + "describe": "普通攻击对敌方随机3个目标造成105%近战火系混乱伤害,攻击后,有55%的概率使目标眩晕,持续2回合" + }, + "4010103": { + "skillid": 4010103, + "name": "加尔西亚", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 3, + "constrol": 1, + "v": [ + "4010304", + "4010201", + "4010303" + ], + "describe": "出手时,有50%概率使自身攻击提高50%,持续2回合。普通攻击对敌方随机3个目标造成105%近战火系混乱伤害,攻击后,有55%的概率使目标眩晕,持续2回合" + }, + "4011100": { + "skillid": 4011100, + "name": "法贝拉", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4011200" + ], + "describe": "普通攻击对随机1个目标造成100%远程混乱伤害" + }, + "4011101": { + "skillid": 4011101, + "name": "法贝拉", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4011201" + ], + "describe": "攻击时,有10%概率对敌方单体造成自身基础伤害400%的破甲伤害" + }, + "4011102": { + "skillid": 4011102, + "name": "法贝拉", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4011200", + "4011202" + ], + "describe": "普通攻击对随机1个目标造成100%远程混乱伤害,当攻击的目标为眩晕状态时,将有10%的几率直接斩杀对手(PVP战斗有效)" + }, + "4011103": { + "skillid": 4011103, + "name": "法贝拉", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4011201", + "4011202" + ], + "describe": "攻击时,有10%概率对敌方单体造成自身基础伤害400%的破甲伤害,当攻击的目标为眩晕状态时,将有10%的几率直接斩杀对手(PVP战斗有效),对敌人造成伤害后,将会吸取当次伤害的50%转化为自身生命" + }, + "4012100": { + "skillid": 4012100, + "name": "汉塞尔", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4012200", + "4012300" + ], + "describe": "对随机1个目标造成100%伤害,有18%概率使敌方随机4个目标中毒(每回合降低15%当前生命,对部分强力生物效果降低),持续2回合" + }, + "4012101": { + "skillid": 4012101, + "name": "汉塞尔", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4012200", + "4012301" + ], + "describe": "对随机1个目标造成100%伤害,有25%概率使敌方随机4个目标中毒(每回合降低15%当前生命,对部分强力生物效果降低),持续2回合" + }, + "4012102": { + "skillid": 4012102, + "name": "汉塞尔", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4012200", + "4012302", + "4012301" + ], + "describe": "对随机1个目标造成100%伤害,降低其命中率25%,有25%概率使敌方随机4个目标中毒(每回合降低15%当前生命,对部分强力生物效果降低),持续2回合" + }, + "4012103": { + "skillid": 4012103, + "name": "汉塞尔", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4012303", + "4012200", + "4012302", + "4012301" + ], + "describe": "每次攻击前有35%几率使自身暴击值提升100%,持续2回合。对随机1个目标造成100%伤害,降低其命中率25%,有25%概率使敌方随机4个目标中毒(每回合降低15%当前生命,对部分强力生物效果降低),持续2回合" + }, + "4013100": { + "skillid": 4013100, + "name": "格里达尔", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4013200", + "4013201" + ], + "describe": "每次行动,额外恢复自身20%的最大生命值" + }, + "4013101": { + "skillid": 4013101, + "name": "格里达尔", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4013200", + "4013202" + ], + "describe": "每次行动,额外恢复自身35%的最大生命值" + }, + "4013102": { + "skillid": 4013102, + "name": "格里达尔", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4013200", + "4013202", + "4013300" + ], + "describe": "每次行动,额外恢复自身35%的最大生命值,攻击后,有50%概率使目标中剧毒(每回合降低8%生命上限),持续2回合(技能)" + }, + "4014100": { + "skillid": 4014100, + "name": "索亚", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4014200" + ], + "describe": "对随机1个目标造成100%伤害" + }, + "4014101": { + "skillid": 4014101, + "name": "索亚", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 2, + "constrol": 1, + "v": [ + "4014201" + ], + "describe": "普通攻击将会变为随机攻击2个目标,造成自身伤害120%的物理伤害" + }, + "4014102": { + "skillid": 4014102, + "name": "索亚", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 2, + "constrol": 1, + "v": [ + "4014201", + "4014300" + ], + "describe": "攻击时,有35%的概率使目标流血(每回合降低8%生命上限的生命),持续2回合" + }, + "4015100": { + "skillid": 4015100, + "name": "罗顿", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "4015200" + ], + "describe": "对随机1个目标造成100%伤害" + }, + "5001100": { + "skillid": 5001100, + "name": "莱薇之怒", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 6, + "constrol": 1, + "v": [ + "5001200" + ], + "describe": "普通攻击将会变为攻击敌方全体,造成自身伤害60%的震荡伤害" + }, + "5001101": { + "skillid": 5001101, + "name": "莱薇之怒", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 6, + "constrol": 1, + "v": [ + "5001201" + ], + "describe": "普通攻击将会变为攻击敌方全体,造成自身伤害85%的震荡伤害" + }, + "5001102": { + "skillid": 5001102, + "name": "莱薇之怒", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 6, + "constrol": 1, + "v": [ + "5001201", + "5001301" + ], + "describe": "普通攻击将会变为攻击敌方全体,造成自身伤害85%的震荡伤害,攻击后,有50%的概率使目标眩晕(无法出手),持续1回合" + }, + "5001103": { + "skillid": 5001103, + "name": "莱薇之怒", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 6, + "constrol": 1, + "v": [ + "5001202", + "5001301" + ], + "describe": "普通攻击将会变为攻击敌方全体,造成自身伤害100%的物理伤害,攻击后,有50%的概率使目标眩晕(无法出手),持续1回合" + }, + "5002100": { + "skillid": 5002100, + "name": "莱卡降临", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "5002200", + "5002202" + ], + "describe": "普通攻击,对敌方随机目标造成100%混乱伤害。60%几率回复友方随机3个单位15%最大生命值的生命" + }, + "5002101": { + "skillid": 5002101, + "name": "莱卡降临", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "5002200", + "5002203" + ], + "describe": "普通攻击,对敌方随机目标造成100%混乱伤害。100%几率回复友方随机3个单位15%最大生命值的生命" + }, + "5003100": { + "skillid": 5003100, + "name": "维新救援", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "5003200" + ], + "describe": "普通攻击,随机对敌方1名目标造成100%的远程混乱伤害" + }, + "5004100": { + "skillid": 5004100, + "name": "罗贝尔特", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 6, + "constrol": 1, + "v": [ + "5004200" + ], + "describe": "普通攻击将会变为攻击敌方全体,造成自身伤害60%的普通伤害" + }, + "5004101": { + "skillid": 5004101, + "name": "罗贝尔特", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 6, + "constrol": 1, + "v": [ + "5004200", + "5004301", + "5004302" + ], + "describe": "普通攻击将会变为攻击敌方全体,造成自身伤害60%的普通伤害,技能攻击后有30%几率降低目标80%的暴击值和士气,持续1回合(巴拉莱卡无法清除)" + }, + "5004102": { + "skillid": 5004102, + "name": "罗贝尔特", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 6, + "constrol": 1, + "v": [ + "5004201", + "5004304", + "5004305" + ], + "describe": "普通攻击将会变为攻击敌方全体,造成自身伤害85%的普通伤害,技能攻击后有50%几率降低目标80%的暴击值和士气,持续1回合(巴拉莱卡无法清除)" + }, + "5005100": { + "skillid": 5005100, + "name": "松崎银次", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "5005200" + ], + "describe": "普通攻击对敌方随机目标造成100%近战物理伤害" + }, + "5005101": { + "skillid": 5005101, + "name": "松崎银次", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "5005201" + ], + "describe": "攻击时有50%几率对敌方单体造成230%的物理伤害" + }, + "5005102": { + "skillid": 5005102, + "name": "松崎银次", + "atkType": "skill", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "5005202" + ], + "describe": "攻击时有50%几率对敌方单体造成310%的物理伤害" + }, + "10001100": { + "skillid": 10001100, + "name": "主角1系技能1", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "10001120", + "10001130" + ], + "describe": "随机对1名敌人造成{1}点穿透伤害,攻击时有{2}%概率降低目标80%防御2回合" + }, + "10001200": { + "skillid": 10001200, + "name": "主角1系技能2", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 3, + "constrol": 1, + "v": [ + "10001220", + "10001230" + ], + "describe": "随机对3名敌人造成{1}点穿透伤害,攻击时有{2}%概率使敌人枯萎,2回合无法恢复生命" + }, + "10001300": { + "skillid": 10001300, + "name": "主角1系技能3", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": "slv*1", + "constrol": 1, + "v": [ + "10001320", + "10001330" + ], + "describe": "随机对{1}名干部造成{2}点穿透伤害,并使己方{3}个干部进入暴怒状态1回合,暴怒状态出售必定造成暴击" + }, + "10001400": { + "skillid": 10001400, + "name": "主角1系技能4", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 6, + "constrol": 1, + "v": [ + "10001420", + "10001430", + "10001431" + ], + "describe": "对全体敌人造成{1}点穿透伤害,且有{2}%几率进入眩晕状态,无法行动1回合,且自身所有干部免疫穿透属性攻击1回合" + }, + "20001100": { + "skillid": 20001100, + "name": "主角2系技能1", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 3, + "constrol": 1, + "v": [ + "20001120" + ], + "describe": "随机对3名敌人造成{1}点破甲伤害" + }, + "20001200": { + "skillid": 20001200, + "name": "主角2系技能2", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": "slv*1", + "constrol": 1, + "v": [ + "20001220", + "20001230", + "20001231" + ], + "describe": "随机对1敌方干部造成{1}点破甲伤害,并随机使我方3名干部进入强攻状态,提升{2}%伤害,{3}%防御" + }, + "20001300": { + "skillid": 20001300, + "name": "主角2系技能3", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 6, + "constrol": 1, + "v": [ + "20001320", + "20001330", + "20001331" + ], + "describe": "对全体敌人造成{1}点破甲伤害,且有{2}%几率进入燃烧状态,持续掉血1回合,且自身所有干部免疫破甲属性攻击1回合" + }, + "30001100": { + "skillid": 30001100, + "name": "主角2系技能4", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 6, + "constrol": 1, + "v": [ + "30001120" + ], + "describe": "对全体敌人造成{1}点震荡伤害" + }, + "30001200": { + "skillid": 30001200, + "name": "主角3系技能1", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 3, + "constrol": 1, + "v": [ + "30001220", + "30001230" + ], + "describe": "随机对3名敌人造成{1}点震荡伤害,使其伤害降低{2}%持续1回合" + }, + "30001300": { + "skillid": 30001300, + "name": "主角3系技能2", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "30001320", + "30001330" + ], + "describe": "随机对1名敌方干部造成{1}点震荡伤害,并使我方随机3名干部获得护盾效果,最多可抵消{2}点伤害,持续2回合" + }, + "30001400": { + "skillid": 30001400, + "name": "主角3系技能3", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 6, + "constrol": 1, + "v": [ + "30001420", + "30001430", + "30001431" + ], + "describe": "对全体敌人造成{1}点震荡伤害,且有{2}%几率使目标沉睡持续2回合,自身所有干部免疫震荡属性攻击1回合" + }, + "40001100": { + "skillid": 40001100, + "name": "主角4系技能1", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 2, + "constrol": 1, + "v": [ + "40001120", + "40001130" + ], + "describe": "随机对2名敌人造成{1}点冲击伤害,攻击时{2}%概率使敌人眩晕1回合" + }, + "40001200": { + "skillid": 40001200, + "name": "主角4系技能2", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 1, + "constrol": 1, + "v": [ + "40001220", + "40001230" + ], + "describe": "随机对1名敌方干部造成{1}点冲击伤害,并驱散己方随机{2}个干部的异常状态" + }, + "40001300": { + "skillid": 40001300, + "name": "主角4系技能3", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": "slv*1", + "constrol": 1, + "v": [ + "40001320", + "40001330" + ], + "describe": "随机对{1}名敌方干部造成{2}点冲击伤害,并使己方随机{3}名干部进入吸血状态,攻击吸血提升{4}%,持续2回合" + }, + "40001400": { + "skillid": 40001400, + "name": "主角4系技能4", + "atkType": "atk", + "type": 1, + "side": 1, + "order": "rand", + "limit": 6, + "constrol": 1, + "v": [ + "40001420", + "40001430", + "40001431" + ], + "describe": "对全体敌人造成{1}点冲击伤害,且有{2}%几率使目标伤害降低30%1回合,且自身所有干部免疫冲击属性攻击1回合" + } +} \ No newline at end of file diff --git a/src/json/skill_buff.json b/src/json/skill_buff.json new file mode 100644 index 0000000..57be4e5 --- /dev/null +++ b/src/json/skill_buff.json @@ -0,0 +1,2815 @@ +{ + "3001301": { + "skillid": 3001301, + "type": 3, + "side": 4, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "noaddhp", + "buff_type": 2, + "xiaoguocanshu": {}, + "round": 3, + "group": 3001301, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "3001302": { + "skillid": 3001302, + "type": 3, + "side": 4, + "order": "near", + "limit": 3, + "randnum": 1, + "act": "buff", + "sxleixing": "noaddhp", + "buff_type": 2, + "xiaoguocanshu": {}, + "round": 3, + "group": 3001302, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "3002301": { + "skillid": 3002301, + "type": 3, + "side": 4, + "order": "rand", + "limit": 4, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "shiqidrop": 0.35 + }, + "round": 1, + "group": 3002301, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "3002302": { + "skillid": 3002302, + "type": 3, + "side": 4, + "order": "rand", + "limit": 4, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "baojidrop": 0.35 + }, + "round": 1, + "group": 3002302, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "3004301": { + "skillid": 3004301, + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "atkpro": 1 + }, + "round": 1, + "group": 3004301, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "3004302": { + "skillid": 3004302, + "type": 3, + "side": 4, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "act": "buff", + "sxleixing": "xuanyun", + "buff_type": 3, + "xiaoguocanshu": {}, + "round": 1, + "group": 3004302, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "3005301": { + "skillid": 3005301, + "type": 3, + "side": 4, + "order": "rand", + "limit": 1, + "randnum": 0.45, + "act": "buff", + "sxleixing": "kongju", + "buff_type": 3, + "xiaoguocanshu": {}, + "round": 2, + "group": 3005301, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "3005302": { + "skillid": 3005302, + "type": 3, + "side": 4, + "order": "rand", + "limit": 1, + "randnum": 0.75, + "act": "buff", + "sxleixing": "kongju", + "buff_type": 3, + "xiaoguocanshu": {}, + "round": 2, + "group": 3005302, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "3006304": { + "skillid": 3006304, + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "atkpro": 1 + }, + "round": 1, + "group": 3006304, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "3007301": { + "skillid": 3007301, + "type": 3, + "side": 4, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "noaddhp", + "buff_type": 2, + "xiaoguocanshu": { + "pro": 1 + }, + "round": 3, + "group": 3007301, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "3008301": { + "skillid": 3008301, + "type": 3, + "side": 4, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "dpsdrop": 0.5 + }, + "round": 2, + "group": 3008301, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "3008302": { + "skillid": 3008302, + "type": 3, + "side": 4, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "dpsdrop": 0.75 + }, + "round": 2, + "group": 3008302, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "3010301": { + "skillid": 3010301, + "type": 3, + "side": 4, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "act": "buff", + "sxleixing": "zhongdu", + "buff_type": 2, + "xiaoguocanshu": { + "pro": 0.08, + "type": "maxhp" + }, + "round": 2, + "group": 3010301, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "3010302": { + "skillid": 3010302, + "type": 3, + "side": 4, + "order": "rand", + "limit": 2, + "randnum": 0.95, + "act": "buff", + "sxleixing": "zhongdu", + "buff_type": 2, + "xiaoguocanshu": { + "pro": 0.08, + "type": "maxhp" + }, + "round": 2, + "group": 3010302, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "3010303": { + "skillid": 3010303, + "type": 3, + "side": 4, + "order": "rand", + "limit": 2, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "defdrop": 0.2 + }, + "round": 1, + "group": 3010303, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "3012301": { + "skillid": 3012301, + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "magdpsdrop": 0.7 + }, + "round": 31, + "group": 3012301, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "被动,有50%的概率被攻击时触发,触发后自身受到的混乱伤害减少70%" + }, + "3012302": { + "skillid": 3012302, + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "magdpsdrop": 0.99 + }, + "round": 31, + "group": 3012302, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "被动,有50%的概率被攻击时触发,触发后自身受到的混乱伤害减少99%" + }, + "3012303": { + "skillid": 3012303, + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "addpk", + "buff_type": 1, + "xiaoguocanshu": {}, + "round": 2, + "group": 3012303, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "连击BUFF" + }, + "3013300": { + "skillid": 3013300, + "type": 3, + "side": 4, + "order": "rand", + "limit": 6, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "mingzhongdrop": 0.25 + }, + "round": 1, + "group": 3013300, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "每次击中目标,都将降低目标25%命中率,持续1回合(技能)" + }, + "3014300": { + "skillid": 3014300, + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "magdpsdrop": 0.95 + }, + "round": 31, + "group": 3014300, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "3015300": { + "skillid": 3015300, + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "atkpro": 0.5, + "defpro": 0.5 + }, + "round": 2, + "group": 3015300, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "3015302": { + "skillid": 3015302, + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "atkpro": 0.85, + "defpro": 0.85 + }, + "round": 2, + "group": 3015302, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "3015304": { + "skillid": 3015304, + "type": 3, + "side": 4, + "order": "rand", + "limit": 3, + "randnum": 0.5, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "atkpro": 0.85, + "defpro": 0.85 + }, + "round": 2, + "group": 3015304, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "4002300": { + "skillid": 4002300, + "type": 3, + "side": 4, + "order": "rand", + "limit": 2, + "randnum": 1, + "act": "buff", + "sxleixing": "noaddhp", + "buff_type": 2, + "xiaoguocanshu": {}, + "round": 2, + "group": 4002300, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "击中目标后,目标在2回合内无法通过任何方式恢复生命(技能)" + }, + "4003300": { + "skillid": 4003300, + "type": 3, + "side": 4, + "order": "rand", + "limit": 3, + "randnum": 0.5, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "defdrop": 0.5 + }, + "round": 2, + "group": 4003300, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "攻击时有50%概率使目标防御降低50%,持续2回合(技能)" + }, + "4004300": { + "skillid": 4004300, + "type": 3, + "side": 4, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "act": "buff", + "sxleixing": "zhongdu", + "buff_type": 2, + "xiaoguocanshu": { + "pro": 0.15, + "type": "hp" + }, + "round": 2, + "group": 4004300, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "攻击后,有50%概率使目标中毒(每回合降低15%当前生命),持续2回合(技能)" + }, + "4004301": { + "skillid": 4004301, + "type": 3, + "side": 4, + "order": "rand", + "limit": 1, + "randnum": 0.8, + "act": "buff", + "sxleixing": "zhongdu", + "buff_type": 2, + "xiaoguocanshu": { + "pro": 0.15, + "type": "hp" + }, + "round": 2, + "group": 4004300, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "攻击后,有50%概率使目标中毒(每回合降低15%当前生命),持续2回合(技能)" + }, + "4005300": { + "skillid": 4005300, + "type": 3, + "side": 0, + "order": "rand", + "limit": 6, + "randnum": 0.5, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "waterdpsdrop": 0.8 + }, + "round": 1, + "group": 4005300, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "出手时,有50%的概率使己方全队受到的水系混乱伤害降低80%,持续1回合" + }, + "4006301": { + "skillid": 4006301, + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "addmaxhp": 0.35 + }, + "round": 31, + "group": 4006301, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "每次出手,额外恢复自身35%的最大生命值" + }, + "4006302": { + "skillid": 4006302, + "type": 3, + "side": 4, + "order": "rand", + "limit": 1, + "randnum": 0.75, + "act": "buff", + "sxleixing": "ranshao", + "buff_type": 2, + "xiaoguocanshu": { + "pro": 0.15, + "type": "hp" + }, + "round": 2, + "group": 4006302, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "击中的目标有75%的几率进入燃烧状态(每回合降低15%当前生命直至死亡" + }, + "4007300": { + "skillid": 4007300, + "type": 3, + "side": 4, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "act": "buff", + "sxleixing": "xuanyun", + "buff_type": 3, + "xiaoguocanshu": {}, + "round": 1, + "group": 4007300, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "攻击后,有50%的概率使目标眩晕(无法行动),持续1回合(技能)" + }, + "4007301": { + "skillid": 4007301, + "type": 3, + "side": 4, + "order": "rand", + "limit": 1, + "randnum": 0.7, + "act": "buff", + "sxleixing": "xuanyun", + "buff_type": 3, + "xiaoguocanshu": {}, + "round": 1, + "group": 4007301, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "攻击后,有50%的概率使目标眩晕(无法行动),持续1回合(技能)" + }, + "4007302": { + "skillid": 4007302, + "type": 3, + "side": 4, + "order": "near", + "limit": 3, + "randnum": 0.7, + "act": "buff", + "sxleixing": "xuanyun", + "buff_type": 3, + "xiaoguocanshu": {}, + "round": 1, + "group": 4007302, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "4008300": { + "skillid": 4008300, + "type": 3, + "side": 4, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "noaddhp", + "buff_type": 2, + "xiaoguocanshu": {}, + "round": 3, + "group": 4008300, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "击中目标后,目标在3回合内无法通过任何方式恢复生命(技能)" + }, + "4008301": { + "skillid": 4008301, + "type": 3, + "side": 4, + "order": "rand", + "limit": 2, + "randnum": 1, + "act": "buff", + "sxleixing": "noaddhp", + "buff_type": 2, + "xiaoguocanshu": {}, + "round": 3, + "group": 4008300, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "击中目标后,目标在3回合内无法通过任何方式恢复生命(技能)" + }, + "4009300": { + "skillid": 4009300, + "type": 3, + "side": 4, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "act": "buff", + "sxleixing": "shuimian", + "buff_type": 3, + "xiaoguocanshu": {}, + "round": 3, + "group": 4009300, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "击中目标后,有50%几率目标在3回合内进入睡眠" + }, + "4009301": { + "skillid": 4009301, + "type": 3, + "side": 4, + "order": "rand", + "limit": 1, + "randnum": 0.2, + "act": "buff", + "sxleixing": "kongju", + "buff_type": 3, + "xiaoguocanshu": {}, + "round": 3, + "group": 4009300, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "受到沉睡状态有20%几率转化为恐惧(技能)" + }, + "4010301": { + "skillid": 4010301, + "type": 3, + "side": 4, + "order": "rand", + "limit": 1, + "randnum": 0.35, + "act": "buff", + "sxleixing": "xuanyun", + "buff_type": 3, + "xiaoguocanshu": {}, + "round": 2, + "group": 4010301, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "4010302": { + "skillid": 4010302, + "type": 3, + "side": 4, + "order": "rand", + "limit": 1, + "randnum": 0.55, + "act": "buff", + "sxleixing": "xuanyun", + "buff_type": 3, + "xiaoguocanshu": {}, + "round": 2, + "group": 4010302, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "4010303": { + "skillid": 4010303, + "type": 3, + "side": 4, + "order": "rand", + "limit": 3, + "randnum": 0.55, + "act": "buff", + "sxleixing": "xuanyun", + "buff_type": 3, + "xiaoguocanshu": {}, + "round": 2, + "group": 4010303, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "4010304": { + "skillid": 4010304, + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "atkpro": 0.5 + }, + "round": 2, + "group": 4010304, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "4012300": { + "skillid": 4012300, + "type": 3, + "side": 1, + "order": "rand", + "limit": 4, + "randnum": 0.18, + "act": "buff", + "sxleixing": "zhongdu", + "buff_type": 2, + "xiaoguocanshu": { + "pro": 0.15, + "type": "hp" + }, + "round": 2, + "group": 4012300, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "行动时,有18%概率使敌方随机4个目标中毒(每回合降低15%当前生命,对部分强力生物效果降低),持续2回合(技能)" + }, + "4012301": { + "skillid": 4012301, + "type": 3, + "side": 1, + "order": "rand", + "limit": 4, + "randnum": 0.25, + "act": "buff", + "sxleixing": "zhongdu", + "buff_type": 2, + "xiaoguocanshu": { + "pro": 0.15, + "type": "hp" + }, + "round": 2, + "group": 4012301, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "行动时,有25%概率使敌方随机4个目标中毒(每回合降低15%当前生命,对部分强力生物效果降低),持续2回合(技能)" + }, + "4012302": { + "skillid": 4012302, + "type": 3, + "side": 4, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "mingzhongdrop": 0.25 + }, + "round": 1, + "group": 4012302, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "4012303": { + "skillid": 4012303, + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.35, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "baojipro": 1 + }, + "round": 2, + "group": 4012303, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "每次攻击前有35%几率使自身暴击值提升100%,持续2回合" + }, + "4013300": { + "skillid": 4013300, + "type": 3, + "side": 4, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "act": "buff", + "sxleixing": "maxdu", + "buff_type": 2, + "xiaoguocanshu": { + "pro": 0.08, + "type": "maxhp" + }, + "round": 2, + "group": 4013300, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "攻击后,有50%概率使目标中剧毒(每回合降低8%生命上限),持续2回合(技能)" + }, + "4014300": { + "skillid": 4014300, + "type": 3, + "side": 4, + "order": "rand", + "limit": 2, + "randnum": 0.35, + "act": "buff", + "sxleixing": "liuxue", + "buff_type": 2, + "xiaoguocanshu": { + "pro": 0.08, + "type": "maxhp" + }, + "round": 2, + "group": 4014300, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "攻击时,有35%的概率使目标流血(每回合降低8%生命上限的生命),持续2回合" + }, + "4014301": { + "skillid": 4014301, + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.45, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "magdpsdrop": 0.7 + }, + "round": 1, + "group": 4014301, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "被动,有45%的概率被攻击时触发,触发后自身受到的混乱伤害减少70%" + }, + "4014302": { + "skillid": 4014302, + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.7, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "magdpsdrop": 0.7 + }, + "round": 1, + "group": 4014301, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "被动,有70%的概率被攻击时触发,触发后自身受到的混乱伤害减少70%" + }, + "5001301": { + "skillid": 5001301, + "type": 3, + "side": 4, + "order": "", + "limit": 6, + "randnum": 0.5, + "act": "buff", + "sxleixing": "xuanyun", + "buff_type": 3, + "xiaoguocanshu": {}, + "round": 1, + "group": 5001301, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "5002302": { + "skillid": 5002302, + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "badbuffdrop", + "buff_type": 1, + "xiaoguocanshu": {}, + "round": 31, + "group": 5002302, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "免疫debuff状态" + }, + "5004301": { + "skillid": 5004301, + "type": 3, + "side": 4, + "order": "", + "limit": 6, + "randnum": 0.3, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "shiqidrop": 0.8 + }, + "round": 1, + "group": 5004301, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "5004302": { + "skillid": 5004302, + "type": 3, + "side": 4, + "order": "", + "limit": 6, + "randnum": 0.3, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "baojidrop": 0.8 + }, + "round": 1, + "group": 5004302, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "5004303": { + "skillid": 5004303, + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "badbuffdrop", + "buff_type": 1, + "xiaoguocanshu": {}, + "round": 31, + "group": 5004303, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "5004304": { + "skillid": 5004304, + "type": 3, + "side": 4, + "order": "", + "limit": 6, + "randnum": 0.5, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "shiqidrop": 0.8 + }, + "round": 1, + "group": 5004304, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "5004305": { + "skillid": 5004305, + "type": 3, + "side": 4, + "order": "", + "limit": 6, + "randnum": 0.5, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "baojidrop": 0.8 + }, + "round": 1, + "group": 5004305, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "5005300": { + "skillid": 5005300, + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.4, + "act": "buff", + "sxleixing": "addpk", + "buff_type": 1, + "xiaoguocanshu": {}, + "round": 1, + "group": 5005300, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "每个回合,自身有40%的概率出手两次(每回合至多触发1次),若触发将会优先攻击前一次目标" + }, + "5005301": { + "skillid": 5005301, + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.8, + "act": "buff", + "sxleixing": "addpk", + "buff_type": 1, + "xiaoguocanshu": {}, + "round": 1, + "group": 5005301, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "每个回合,自身有80%的概率出手两次(每回合至多触发1次),若触发将会优先攻击前一次目标" + }, + "10001130": { + "skillid": 10001130, + "type": 3, + "side": 4, + "order": "", + "limit": 1, + "randnum": "slv*0.1", + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "defdrop": 0.8 + }, + "round": 2, + "group": 10001130, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "随机对1名敌人造成{1}点穿透伤害,攻击时有{2}%概率降低目标80%防御2回合" + }, + "10001230": { + "skillid": 10001230, + "type": 3, + "side": 4, + "order": "", + "limit": 3, + "randnum": "slv*0.1", + "act": "buff", + "sxleixing": "noaddhp", + "buff_type": 2, + "xiaoguocanshu": {}, + "round": 2, + "group": 10001230, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "随机对3名敌人造成{1}点穿透伤害,攻击时有{2}%概率使敌人枯萎,2回合无法恢复生命" + }, + "10001330": { + "skillid": 10001330, + "type": 3, + "side": 0, + "order": "rand", + "limit": "slv*1", + "randnum": 1, + "act": "buff", + "sxleixing": "baonu", + "buff_type": 1, + "xiaoguocanshu": {}, + "round": 1, + "group": 10001330, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "使用后随机{1}个干部进入暴怒状态1回合,暴怒状态出手必定造成幸运攻击" + }, + "10001430": { + "skillid": 10001430, + "type": 3, + "side": 4, + "order": "", + "limit": 6, + "randnum": "slv*0.05", + "act": "buff", + "sxleixing": "xuanyun", + "buff_type": 3, + "xiaoguocanshu": {}, + "round": 1, + "group": 10001430, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "有{2}%几率进入眩晕状态,无法行动1回合" + }, + "10001431": { + "skillid": 10001431, + "type": 3, + "side": 0, + "order": "rand", + "limit": 6, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "disearth": 1 + }, + "round": 1, + "group": 10001431, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "自身所有干部免疫穿透属性攻击1回合" + }, + "20001230": { + "skillid": 20001230, + "type": 3, + "side": 0, + "order": "rand", + "limit": 3, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "dpspro": "slv*0.05", + "gs": 1 + }, + "round": 1, + "group": 20001230, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "随机对我方3名干部释放强攻状态,提升{1}%伤害,{2}%防御" + }, + "20001231": { + "skillid": 20001231, + "type": 3, + "side": 0, + "order": "rand", + "limit": 3, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "defpro": "slv*0.05", + "gs": 1 + }, + "round": 1, + "group": 20001231, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "20001330": { + "skillid": 20001330, + "type": 3, + "side": 4, + "order": "rand", + "limit": 6, + "randnum": "slv*0.05", + "act": "buff", + "sxleixing": "ranshao", + "buff_type": 2, + "xiaoguocanshu": { + "pro": 0.15, + "type": "hp" + }, + "round": 1, + "group": 20001330, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "有{2}%几率进入燃烧状态,持续掉血1回合" + }, + "20001331": { + "skillid": 20001331, + "type": 3, + "side": 0, + "order": "rand", + "limit": 6, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "disfire": 1 + }, + "round": 1, + "group": 20001331, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "且自身所有干部免疫破甲属性攻击1回合" + }, + "30001230": { + "skillid": 30001230, + "type": 3, + "side": 4, + "order": "rand", + "limit": 3, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "dpsdrop": "slv*0.1", + "gs": 1 + }, + "round": 1, + "group": 30001230, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "使其伤害降低{2}%持续1回合" + }, + "30001330": { + "skillid": 30001330, + "type": 3, + "side": 0, + "order": "rand", + "limit": 3, + "randnum": 1, + "act": "buff", + "sxleixing": "hudun", + "buff_type": 1, + "xiaoguocanshu": { + "val": "2000+1000*slv", + "gs": 1 + }, + "round": 2, + "group": 30001330, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "随机对己方3名干部释放一个护盾,最多可抵消{1}点伤害,持续2回合" + }, + "30001430": { + "skillid": 30001430, + "type": 3, + "side": 4, + "order": "rand", + "limit": 6, + "randnum": "slv*0.12", + "act": "buff", + "sxleixing": "shuimian", + "buff_type": 3, + "xiaoguocanshu": {}, + "round": 2, + "group": 30001430, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "对全体敌人造成{1}点震荡伤害,且有{2}%几率使目标沉睡持续2回合,自身所有干部免疫水属性攻击1回合" + }, + "30001431": { + "skillid": 30001431, + "type": 3, + "side": 0, + "order": "rand", + "limit": 6, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "diswater": 1 + }, + "round": 1, + "group": 30001431, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1 + }, + "40001130": { + "skillid": 40001130, + "type": 3, + "side": 4, + "order": "rand", + "limit": 2, + "randnum": "slv*0.1", + "act": "buff", + "sxleixing": "xuanyun", + "buff_type": 3, + "xiaoguocanshu": {}, + "round": 1, + "group": 40001130, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "随机对2名敌人造成{1}点冲击伤害,攻击时{2}%概率使敌人眩晕1回合" + }, + "40001330": { + "skillid": 40001330, + "type": 3, + "side": 0, + "order": "rand", + "limit": "slv*1", + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "xixuepro": "slv*0.01", + "gs": 1 + }, + "round": 2, + "group": 40001330, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "随机使{1}个干部进入吸血状态,攻击能吸取{2}%生命,持续2回合" + }, + "40001430": { + "skillid": 40001430, + "type": 3, + "side": 4, + "order": "rand", + "limit": 6, + "randnum": "slv*0.05", + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "dpsdrop": 0.3 + }, + "round": 1, + "group": 40001430, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "且有{2}%几率使目标伤害降低30%1回合" + }, + "40001431": { + "skillid": 40001431, + "type": 3, + "side": 0, + "order": "rand", + "limit": 6, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "diswind": 1 + }, + "round": 1, + "group": 40001431, + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "且自身所有干部免疫冲击属性攻击1回合" + }, + "sp00300": { + "skillid": "sp00300", + "type": 3, + "side": 6, + "order": "rand", + "limit": 1, + "randnum": 0.1, + "act": "buff", + "sxleixing": "noaddhp", + "buff_type": 2, + "xiaoguocanshu": {}, + "round": 1, + "group": "sp00300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "击中目标后,10%几率使目标在1回合内无法通过任何方式恢复生命" + }, + "sp04300": { + "skillid": "sp04300", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.2, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "atkpro": 0.2, + "defpro": "0.2" + }, + "round": 1, + "group": "sp04300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "行动时有20%概率使自身攻击、防御提高20%,持续1回合" + }, + "sp05300": { + "skillid": "sp05300", + "type": 3, + "side": 0, + "order": "rand", + "limit": 2, + "randnum": 0.2, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "defpro": "0.2" + }, + "round": 1, + "group": "sp05300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "行动时有20%概率提升己方2名队友20%的防御,持续1回合" + }, + "sp06300": { + "skillid": "sp06300", + "type": 3, + "side": 0, + "order": "rand", + "limit": 6, + "randnum": 0.2, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "atkpro": 0.1 + }, + "round": 1, + "group": "sp06300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "行动时有20%的概率使我方全体攻击增加10%,持续1回合" + }, + "sp07300": { + "skillid": "sp07300", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.15, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "dpspro": 0.2 + }, + "round": 1, + "group": "sp07300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "行动时有15%的概率提高自身伤害20%,持续1回合" + }, + "sp08300": { + "skillid": "sp08300", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.3, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "atkpro": 0.15 + }, + "round": 1, + "group": "sp08300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "行动时有30%的概率提升自身攻击额外提升15%,持续1回合" + }, + "sp09300": { + "skillid": "sp09300", + "type": 3, + "side": 6, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "mingzhongdrop": 0.07 + }, + "round": 1, + "group": "sp09300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "击中目标会降低目标7%命中率,持续1回合" + }, + "sp10300": { + "skillid": "sp10300", + "type": 3, + "side": 6, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "atkdrop": 0.07 + }, + "round": 1, + "group": "sp10300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "击中目标会降低目标7%攻击,持续1回合" + }, + "sp11300": { + "skillid": "sp11300", + "type": 3, + "side": 6, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "defdrop": 0.18 + }, + "round": 1, + "group": "sp11300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "击中目标会降低目标18%防御,持续1回合" + }, + "sp12300": { + "skillid": "sp12300", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "defpro": 0.25 + }, + "round": 2, + "group": "sp12300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "攻击时有25%概率使自身防御提升25%,持续2回合" + }, + "sp13300": { + "skillid": "sp13300", + "type": 3, + "side": 1, + "order": "rand", + "limit": 6, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "shiqidrop": 0.05 + }, + "round": 1, + "group": "sp13300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "行动前100%概率使敌方全体气势值降低5%,持续1回合" + }, + "sp14300": { + "skillid": "sp14300", + "type": 3, + "side": 0, + "order": "rand", + "limit": 6, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "shiqipro": 0.05 + }, + "round": 1, + "group": "sp14300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "行动前100%概率使我方全体气势值增加5%,持续1回合" + }, + "sp15300": { + "skillid": "sp15300", + "type": 3, + "side": 6, + "order": "rand", + "limit": 1, + "randnum": 0.3, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "dpsdrop": 0.1 + }, + "round": 2, + "group": "sp15300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "攻击时有30%概率使目标伤害降低10%,持续2回合" + }, + "sp16300": { + "skillid": "sp16300", + "type": 3, + "side": 6, + "order": "rand", + "limit": 1, + "randnum": 0.1, + "act": "buff", + "sxleixing": "xuanyun", + "buff_type": 3, + "xiaoguocanshu": {}, + "round": 1, + "group": "sp16300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "攻击时有10%的概率使目标眩晕,持续1回合" + }, + "sp17300": { + "skillid": "sp17300", + "type": 3, + "side": 6, + "order": "rand", + "limit": 1, + "randnum": 0.12, + "act": "buff", + "sxleixing": "maxdu", + "buff_type": 2, + "xiaoguocanshu": { + "pro": 0.05, + "type": "maxhp" + }, + "round": 2, + "group": "sp17300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "攻击时有12%概率使目标中剧毒(每回合降低5%生命上限的生命),持续2回合" + }, + "sp18300": { + "skillid": "sp18300", + "type": 3, + "side": 6, + "order": "rand", + "limit": 1, + "randnum": 0.12, + "act": "buff", + "sxleixing": "zhongdu", + "buff_type": 2, + "xiaoguocanshu": { + "pro": 0.08, + "type": "hp" + }, + "round": 2, + "group": "sp18300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "攻击时有12%概率使目标中毒(每回合降低8%当前生命),持续2回合" + }, + "sp19300": { + "skillid": "sp19300", + "type": 3, + "side": 6, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "defdrop": 0.5 + }, + "round": 2, + "group": "sp19300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "击中目标有50%概率会降低目标50%防御,持续2回合" + }, + "sp20300": { + "skillid": "sp20300", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.08, + "act": "buff", + "sxleixing": "badbuffdrop", + "buff_type": 1, + "xiaoguocanshu": {}, + "round": 1, + "group": "sp20300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "免疫异常状态:免疫几率为8%" + }, + "tx01300": { + "skillid": "tx01300", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.01, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "dpspro": 2 + }, + "round": 2, + "group": "tx01300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "进入战斗后的前2回合进入致命状态,攻击敌人时有0.01的几率造成双倍伤害" + }, + "tx01301": { + "skillid": "tx01301", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.02, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "dpspro": 2 + }, + "round": 2, + "group": "tx01300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "进入战斗后的前2回合进入致命状态,攻击敌人时有0.02的几率造成双倍伤害" + }, + "tx01302": { + "skillid": "tx01302", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.03, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "dpspro": 2 + }, + "round": 2, + "group": "tx01300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "进入战斗后的前2回合进入致命状态,攻击敌人时有0.03的几率造成双倍伤害" + }, + "tx01303": { + "skillid": "tx01303", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.04, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "dpspro": 2 + }, + "round": 2, + "group": "tx01300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "进入战斗后的前2回合进入致命状态,攻击敌人时有0.04的几率造成双倍伤害" + }, + "tx01304": { + "skillid": "tx01304", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.05, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "dpspro": 2 + }, + "round": 2, + "group": "tx01300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "进入战斗后的前2回合进入致命状态,攻击敌人时有0.05的几率造成双倍伤害" + }, + "tx01305": { + "skillid": "tx01305", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.06, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "dpspro": 2 + }, + "round": 2, + "group": "tx01300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "进入战斗后的前2回合进入致命状态,攻击敌人时有0.06的几率造成双倍伤害" + }, + "tx01306": { + "skillid": "tx01306", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.07, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "dpspro": 2 + }, + "round": 2, + "group": "tx01300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "进入战斗后的前2回合进入致命状态,攻击敌人时有0.07的几率造成双倍伤害" + }, + "tx01307": { + "skillid": "tx01307", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.08, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "dpspro": 2 + }, + "round": 2, + "group": "tx01300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "进入战斗后的前2回合进入致命状态,攻击敌人时有0.08的几率造成双倍伤害" + }, + "tx01308": { + "skillid": "tx01308", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.09, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "dpspro": 2 + }, + "round": 2, + "group": "tx01300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "进入战斗后的前2回合进入致命状态,攻击敌人时有0.09的几率造成双倍伤害" + }, + "tx01309": { + "skillid": "tx01309", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "dpspro": 2 + }, + "round": 2, + "group": "tx01300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "进入战斗后的前2回合进入致命状态,攻击敌人时有0.10的几率造成双倍伤害" + }, + "tx02300": { + "skillid": "tx02300", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "wsdefpro": "0.02" + }, + "round": 31, + "group": "tx02300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "每次攻击时都将无视对手0.02的防御值" + }, + "tx02301": { + "skillid": "tx02301", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "wsdefpro": "0.04" + }, + "round": 31, + "group": "tx02300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "每次攻击时都将无视对手0.04的防御值" + }, + "tx02302": { + "skillid": "tx02302", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "wsdefpro": "0.06" + }, + "round": 31, + "group": "tx02300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "每次攻击时都将无视对手0.06的防御值" + }, + "tx02303": { + "skillid": "tx02303", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "wsdefpro": "0.08" + }, + "round": 31, + "group": "tx02300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "每次攻击时都将无视对手0.08的防御值" + }, + "tx02304": { + "skillid": "tx02304", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "wsdefpro": "0.10" + }, + "round": 31, + "group": "tx02300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "每次攻击时都将无视对手0.10的防御值" + }, + "tx02305": { + "skillid": "tx02305", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "wsdefpro": "0.12" + }, + "round": 31, + "group": "tx02300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "每次攻击时都将无视对手0.12的防御值" + }, + "tx02306": { + "skillid": "tx02306", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "wsdefpro": "0.14" + }, + "round": 31, + "group": "tx02300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "每次攻击时都将无视对手0.14的防御值" + }, + "tx02307": { + "skillid": "tx02307", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "wsdefpro": "0.16" + }, + "round": 31, + "group": "tx02300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "每次攻击时都将无视对手0.16的防御值" + }, + "tx02308": { + "skillid": "tx02308", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "wsdefpro": "0.18" + }, + "round": 31, + "group": "tx02300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "每次攻击时都将无视对手0.18的防御值" + }, + "tx02309": { + "skillid": "tx02309", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "attr", + "buff_type": 1, + "xiaoguocanshu": { + "wsdefpro": "0.20" + }, + "round": 31, + "group": "tx02300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "每次攻击时都将无视对手0.20的防御值" + }, + "tx04300": { + "skillid": "tx04300", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.02, + "act": "buff", + "sxleixing": "addpk", + "buff_type": 1, + "xiaoguocanshu": {}, + "round": 1, + "group": "tx04300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "当自身攻击的目标死亡后,有0.02的几率进入追击状态,将会再次发动攻击" + }, + "tx04301": { + "skillid": "tx04301", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.04, + "act": "buff", + "sxleixing": "addpk", + "buff_type": 1, + "xiaoguocanshu": {}, + "round": 1, + "group": "tx04301", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "当自身攻击的目标死亡后,有0.04的几率进入追击状态,将会再次发动攻击" + }, + "tx04302": { + "skillid": "tx04302", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.06, + "act": "buff", + "sxleixing": "addpk", + "buff_type": 1, + "xiaoguocanshu": {}, + "round": 1, + "group": "tx04302", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "当自身攻击的目标死亡后,有0.06的几率进入追击状态,将会再次发动攻击" + }, + "tx04303": { + "skillid": "tx04303", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.08, + "act": "buff", + "sxleixing": "addpk", + "buff_type": 1, + "xiaoguocanshu": {}, + "round": 1, + "group": "tx04303", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "当自身攻击的目标死亡后,有0.08的几率进入追击状态,将会再次发动攻击" + }, + "tx04304": { + "skillid": "tx04304", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.1, + "act": "buff", + "sxleixing": "addpk", + "buff_type": 1, + "xiaoguocanshu": {}, + "round": 1, + "group": "tx04304", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "当自身攻击的目标死亡后,有0.10的几率进入追击状态,将会再次发动攻击" + }, + "tx04305": { + "skillid": "tx04305", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.12, + "act": "buff", + "sxleixing": "addpk", + "buff_type": 1, + "xiaoguocanshu": {}, + "round": 1, + "group": "tx04305", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "当自身攻击的目标死亡后,有0.12的几率进入追击状态,将会再次发动攻击" + }, + "tx04306": { + "skillid": "tx04306", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.14, + "act": "buff", + "sxleixing": "addpk", + "buff_type": 1, + "xiaoguocanshu": {}, + "round": 1, + "group": "tx04306", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "当自身攻击的目标死亡后,有0.14的几率进入追击状态,将会再次发动攻击" + }, + "tx04307": { + "skillid": "tx04307", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.16, + "act": "buff", + "sxleixing": "addpk", + "buff_type": 1, + "xiaoguocanshu": {}, + "round": 1, + "group": "tx04307", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "当自身攻击的目标死亡后,有0.16的几率进入追击状态,将会再次发动攻击" + }, + "tx04308": { + "skillid": "tx04308", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.18, + "act": "buff", + "sxleixing": "addpk", + "buff_type": 1, + "xiaoguocanshu": {}, + "round": 1, + "group": "tx04308", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "当自身攻击的目标死亡后,有0.18的几率进入追击状态,将会再次发动攻击" + }, + "tx04309": { + "skillid": "tx04309", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.2, + "act": "buff", + "sxleixing": "addpk", + "buff_type": 1, + "xiaoguocanshu": {}, + "round": 1, + "group": "tx04309", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "当自身攻击的目标死亡后,有0.20的几率进入追击状态,将会再次发动攻击" + }, + "tx05300": { + "skillid": "tx05300", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "hudun", + "buff_type": 1, + "xiaoguocanshu": { + "pro": "500" + }, + "round": 31, + "group": "tx05300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "出手前将会对自身释放护盾,可抵消500点伤害,每场战斗仅可触发1次" + }, + "tx05301": { + "skillid": "tx05301", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "hudun", + "buff_type": 1, + "xiaoguocanshu": "{\"pro\":\"1000}", + "round": 31, + "group": "tx05300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "出手前将会对自身释放护盾,可抵消1000点伤害,每场战斗仅可触发1次" + }, + "tx05302": { + "skillid": "tx05302", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "hudun", + "buff_type": 1, + "xiaoguocanshu": { + "pro": "1500" + }, + "round": 31, + "group": "tx05300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "出手前将会对自身释放护盾,可抵消1500点伤害,每场战斗仅可触发1次" + }, + "tx05303": { + "skillid": "tx05303", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "hudun", + "buff_type": 1, + "xiaoguocanshu": { + "pro": "2000" + }, + "round": 31, + "group": "tx05300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "出手前将会对自身释放护盾,可抵消2000点伤害,每场战斗仅可触发1次" + }, + "tx05304": { + "skillid": "tx05304", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "hudun", + "buff_type": 1, + "xiaoguocanshu": { + "pro": "2500" + }, + "round": 31, + "group": "tx05300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "出手前将会对自身释放护盾,可抵消2500点伤害,每场战斗仅可触发1次" + }, + "tx05305": { + "skillid": "tx05305", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "hudun", + "buff_type": 1, + "xiaoguocanshu": { + "pro": "3000" + }, + "round": 31, + "group": "tx05300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "出手前将会对自身释放护盾,可抵消3000点伤害,每场战斗仅可触发1次" + }, + "tx05306": { + "skillid": "tx05306", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "hudun", + "buff_type": 1, + "xiaoguocanshu": { + "pro": "3500" + }, + "round": 31, + "group": "tx05300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "出手前将会对自身释放护盾,可抵消3500点伤害,每场战斗仅可触发1次" + }, + "tx05307": { + "skillid": "tx05307", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "hudun", + "buff_type": 1, + "xiaoguocanshu": { + "pro": "4000" + }, + "round": 31, + "group": "tx05300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "出手前将会对自身释放护盾,可抵消4000点伤害,每场战斗仅可触发1次" + }, + "tx05308": { + "skillid": "tx05308", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "hudun", + "buff_type": 1, + "xiaoguocanshu": { + "pro": "4500" + }, + "round": 31, + "group": "tx05300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "出手前将会对自身释放护盾,可抵消4500点伤害,每场战斗仅可触发1次" + }, + "tx05309": { + "skillid": "tx05309", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "hudun", + "buff_type": 1, + "xiaoguocanshu": { + "pro": "5000" + }, + "round": 31, + "group": "tx05300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "出手前将会对自身释放护盾,可抵消5000点伤害,每场战斗仅可触发1次" + }, + "tx06300": { + "skillid": "tx06300", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "badbuffdrop", + "buff_type": 1, + "xiaoguocanshu": { + "pro": 0.015 + }, + "round": 31, + "group": "tx06300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "提高干部心智能力,当受到异常状态攻击时,有0.015的几率免疫异常状态" + }, + "tx06301": { + "skillid": "tx06301", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "badbuffdrop", + "buff_type": 1, + "xiaoguocanshu": { + "pro": 0.03 + }, + "round": 31, + "group": "tx06300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "提高干部心智能力,当受到异常状态攻击时,有0.03的几率免疫异常状态" + }, + "tx06302": { + "skillid": "tx06302", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "badbuffdrop", + "buff_type": 1, + "xiaoguocanshu": { + "pro": 0.045 + }, + "round": 31, + "group": "tx06300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "提高干部心智能力,当受到异常状态攻击时,有0.045的几率免疫异常状态" + }, + "tx06303": { + "skillid": "tx06303", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "badbuffdrop", + "buff_type": 1, + "xiaoguocanshu": { + "pro": 0.06 + }, + "round": 31, + "group": "tx06300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "提高干部心智能力,当受到异常状态攻击时,有0.06的几率免疫异常状态" + }, + "tx06304": { + "skillid": "tx06304", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "badbuffdrop", + "buff_type": 1, + "xiaoguocanshu": { + "pro": 0.075 + }, + "round": 31, + "group": "tx06300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "提高干部心智能力,当受到异常状态攻击时,有0.075的几率免疫异常状态" + }, + "tx06305": { + "skillid": "tx06305", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "badbuffdrop", + "buff_type": 1, + "xiaoguocanshu": { + "pro": 0.09 + }, + "round": 31, + "group": "tx06300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "提高干部心智能力,当受到异常状态攻击时,有0.09的几率免疫异常状态" + }, + "tx06306": { + "skillid": "tx06306", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "badbuffdrop", + "buff_type": 1, + "xiaoguocanshu": { + "pro": 0.105 + }, + "round": 31, + "group": "tx06300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "提高干部心智能力,当受到异常状态攻击时,有0.105的几率免疫异常状态" + }, + "tx06307": { + "skillid": "tx06307", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "badbuffdrop", + "buff_type": 1, + "xiaoguocanshu": { + "pro": 0.12 + }, + "round": 31, + "group": "tx06300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "提高干部心智能力,当受到异常状态攻击时,有0.12的几率免疫异常状态" + }, + "tx06308": { + "skillid": "tx06308", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "badbuffdrop", + "buff_type": 1, + "xiaoguocanshu": { + "pro": 0.135 + }, + "round": 31, + "group": "tx06300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "提高干部心智能力,当受到异常状态攻击时,有0.135的几率免疫异常状态" + }, + "tx06309": { + "skillid": "tx06309", + "type": 3, + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "act": "buff", + "sxleixing": "badbuffdrop", + "buff_type": 1, + "xiaoguocanshu": { + "pro": 0.15 + }, + "round": 31, + "group": "tx06300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "提高干部心智能力,当受到异常状态攻击时,有0.15的几率免疫异常状态" + }, + "tx07300": { + "skillid": "tx07300", + "type": 3, + "side": 1, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "addhpdrop": "0.02" + }, + "round": 31, + "group": "tx07300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "战斗中攻击敌人时,有50%几率使目标进入绝望状态,所有生命回复效果降低0.02,持续2回合" + }, + "tx07301": { + "skillid": "tx07301", + "type": 3, + "side": 1, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "addhpdrop": "0.04" + }, + "round": 31, + "group": "tx07300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "战斗中攻击敌人时,有50%几率使目标进入绝望状态,所有生命回复效果降低0.04,持续2回合" + }, + "tx07302": { + "skillid": "tx07302", + "type": 3, + "side": 1, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "addhpdrop": "0.06" + }, + "round": 31, + "group": "tx07300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "战斗中攻击敌人时,有50%几率使目标进入绝望状态,所有生命回复效果降低0.06,持续2回合" + }, + "tx07303": { + "skillid": "tx07303", + "type": 3, + "side": 1, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "addhpdrop": "0.08" + }, + "round": 31, + "group": "tx07300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "战斗中攻击敌人时,有50%几率使目标进入绝望状态,所有生命回复效果降低0.08,持续2回合" + }, + "tx07304": { + "skillid": "tx07304", + "type": 3, + "side": 1, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "addhpdrop": "0.10" + }, + "round": 31, + "group": "tx07300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "战斗中攻击敌人时,有50%几率使目标进入绝望状态,所有生命回复效果降低0.1,持续2回合" + }, + "tx07305": { + "skillid": "tx07305", + "type": 3, + "side": 1, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "addhpdrop": "0.12" + }, + "round": 31, + "group": "tx07300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "战斗中攻击敌人时,有50%几率使目标进入绝望状态,所有生命回复效果降低0.12,持续2回合" + }, + "tx07306": { + "skillid": "tx07306", + "type": 3, + "side": 1, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "addhpdrop": "0.14" + }, + "round": 31, + "group": "tx07300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "战斗中攻击敌人时,有50%几率使目标进入绝望状态,所有生命回复效果降低0.14,持续2回合" + }, + "tx07307": { + "skillid": "tx07307", + "type": 3, + "side": 1, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "addhpdrop": "0.16" + }, + "round": 31, + "group": "tx07300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "战斗中攻击敌人时,有50%几率使目标进入绝望状态,所有生命回复效果降低0.16,持续2回合" + }, + "tx07308": { + "skillid": "tx07308", + "type": 3, + "side": 1, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "addhpdrop": "0.18" + }, + "round": 31, + "group": "tx07300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "战斗中攻击敌人时,有50%几率使目标进入绝望状态,所有生命回复效果降低0.18,持续2回合" + }, + "tx07309": { + "skillid": "tx07309", + "type": 3, + "side": 1, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "act": "buff", + "sxleixing": "attr", + "buff_type": 2, + "xiaoguocanshu": { + "addhpdrop": "0.20" + }, + "round": 31, + "group": "tx07300", + "jiejiaxiaoguo": "retime", + "diejiacengshu": 1, + "describe": "战斗中攻击敌人时,有50%几率使目标进入绝望状态,所有生命回复效果降低0.2,持续2回合" + } +} \ No newline at end of file diff --git a/src/json/skill_passive.json b/src/json/skill_passive.json new file mode 100644 index 0000000..8694f92 --- /dev/null +++ b/src/json/skill_passive.json @@ -0,0 +1,1649 @@ +{ + "2001400": { + "skillid": 2001400, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "2001100" + ] + }, + "round": 999, + "chkdata": { + "when": "startatk", + "act": "randaddpknum", + "side": -1 + }, + "describe": "每次出手100%发动连击,连续对敌方造成2次水系伤害,每次伤害为基础伤害的85%" + }, + "3001400": { + "skillid": 3001400, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "3001201" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "side": -1 + }, + "describe": "被攻击时,将会反击对手,造成自身80%的攻击伤害" + }, + "3001401": { + "skillid": 3001401, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "3001202" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "side": -1 + }, + "describe": "被攻击时,将会反击对手,造成自身110%的攻击伤害" + }, + "3004400": { + "skillid": 3004400, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "3004201" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "side": -1 + }, + "describe": "被攻击时,将会反击对手,造成自身75%的攻击伤害" + }, + "3004401": { + "skillid": 3004401, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "3004202" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "side": -1 + }, + "describe": "被攻击时,将会反击对手,造成自身100%的攻击伤害" + }, + "3004402": { + "skillid": 3004402, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "3004203", + "3004302" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "side": -1 + }, + "describe": "被攻击时,将会反击对手,反击造成伤害提升至200%" + }, + "3005400": { + "skillid": 3005400, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "3005201" + ] + }, + "round": 999, + "chkdata": { + "when": "doatk", + "side": -1 + }, + "describe": "当攻击的目标有任意异常状态时,自身伤害翻倍" + }, + "3009400": { + "skillid": 3009400, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.2, + "v": { + "runskill": [ + "3009100", + "3009101" + ] + }, + "round": 999, + "chkdata": { + "when": "doatk", + "act": "randaddpknum", + "side": -1 + }, + "describe": "自身每回合有20%的概率出手两次" + }, + "3012400": { + "skillid": 3012400, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "3012301" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "side": -1 + }, + "describe": "被动,有50%的概率被攻击时触发,触发后自身受到的混乱伤害减少70%" + }, + "3012401": { + "skillid": 3012401, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "3012302" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "side": -1 + }, + "describe": "被动,有50%的概率被攻击时触发,触发后自身受到的混乱伤害减少99%" + }, + "3014400": { + "skillid": 3014400, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "3014300" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "side": -1 + }, + "describe": "受到混乱攻击时,会将当次伤害降低至5%" + }, + "4001400": { + "skillid": 4001400, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.2, + "v": { + "runskill": [ + "4001101" + ] + }, + "round": 999, + "chkdata": { + "when": "doatk", + "side": -1 + }, + "describe": "每个回合,自身有20%的概率出手两次" + }, + "4006400": { + "skillid": 4006400, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "4006202" + ] + }, + "round": 999, + "chkdata": { + "when": "dead", + "side": -1 + }, + "describe": "死亡时有50%的概率立即重生,并恢复50%的生命,一场战斗只会触发一次" + }, + "4006401": { + "skillid": 4006401, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "4006203" + ] + }, + "round": 999, + "chkdata": { + "when": "dead", + "side": -1 + }, + "describe": "死亡时有100%的概率立即重生,并恢复50%的生命,一场战斗只会触发一次" + }, + "4008400": { + "skillid": 4008400, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "4008202" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "side": -1 + }, + "describe": "被攻击时,有80%概率使对手受到当次伤害50%的反伤" + }, + "4008401": { + "skillid": 4008401, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "4008203" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "side": -1 + }, + "describe": "被攻击时,有80%概率使对手受到当次伤害80%的反伤" + }, + "4013400": { + "skillid": 4013400, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "4013203" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "side": -1 + }, + "describe": "被攻击时,有80%概率使对手受到当次伤害50%的反伤" + }, + "4014401": { + "skillid": 4014401, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "4014301" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "side": -1 + }, + "describe": "被动,有45%的概率被攻击时触发,触发后自身受到的混乱伤害减少70%" + }, + "4014402": { + "skillid": 4014402, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "4014302" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "side": -1 + }, + "describe": "被动,有70%的概率被攻击时触发,触发后自身受到的混乱伤害减少70%" + }, + "4015400": { + "skillid": 4015400, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "4015201" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "islong": 0, + "side": -1 + }, + "describe": "被近战攻击时,将会反击对手,造成自身82%的基础伤害" + }, + "4015401": { + "skillid": 4015401, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "4015202" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "islong": 0, + "side": -1 + }, + "describe": "被近战攻击时,将会反击对手,造成自身115%的基础伤害" + }, + "4015402": { + "skillid": 4015402, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "4015203" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "islong": 0, + "side": -1 + }, + "describe": "被近战攻击时,将会反击对手,造成自身160%的基础伤害" + }, + "4015403": { + "skillid": 4015403, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "v": { + "runskill": [ + "4015100" + ] + }, + "round": 999, + "chkdata": { + "when": "doatk", + "side": -1 + }, + "describe": "每个回合,自身有50%的概率出手两次" + }, + "5002400": { + "skillid": 5002400, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "5002201" + ] + }, + "round": 999, + "chkdata": { + "when": "startatk", + "side": -1 + }, + "describe": "出手时驱散己方队友异常状态" + }, + "5003400": { + "skillid": 5003400, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.5, + "v": { + "runskill": [ + "5003201" + ] + }, + "round": 999, + "chkdata": { + "when": "startatk", + "side": -1 + }, + "describe": "出手时,若有死亡的队友,则50%概率复活该队友并结束本次出手,复活后血量为最大血量的40%,一场战斗只能触发一次(被动)" + }, + "5003401": { + "skillid": 5003401, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.75, + "v": { + "runskill": [ + "5003201" + ] + }, + "round": 999, + "chkdata": { + "when": "startatk", + "side": -1 + }, + "describe": "出手时,若有死亡的队友,则75%概率复活该队友并结束本次出手,复活后血量为最大血量的40%,一场战斗只能触发一次(被动)" + }, + "5003402": { + "skillid": 5003402, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 0.2, + "v": { + "runskill": [ + "5003100" + ] + }, + "round": 999, + "chkdata": { + "when": "doatk", + "side": -1 + }, + "describe": "每个回合,自身有20%的概率出手两次" + }, + "5003403": { + "skillid": 5003403, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "5003202" + ] + }, + "round": 999, + "chkdata": { + "when": "startatk", + "side": -1 + }, + "describe": "出手时,若有死亡的队友,则100%概率复活该队友并结束本次出手,复活后血量为最大血量的100%,一场战斗只能触发一次(被动)" + }, + "5005400": { + "skillid": 5005400, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "5005300" + ] + }, + "round": 999, + "chkdata": { + "when": "doatk", + "side": -1 + }, + "describe": "每个回合,自身有40%的概率出手两次(每回合至多触发1次),若触发将会优先攻击前一次目标" + }, + "5005401": { + "skillid": 5005401, + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "5005301" + ] + }, + "round": 999, + "chkdata": { + "when": "doatk", + "side": -1 + }, + "describe": "每个回合,自身有80%的概率出手两次(每回合至多触发1次),若触发将会优先攻击前一次目标" + }, + "tx04400": { + "skillid": "tx04400", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx04300" + ] + }, + "round": 999, + "chkdata": { + "when": "dead", + "side": 1, + "atkTar": true + }, + "describe": "当自身攻击的目标死亡后,有0.02的几率进入追击状态,将会再次发动攻击" + }, + "tx04401": { + "skillid": "tx04401", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx04301" + ] + }, + "round": 999, + "chkdata": { + "when": "dead", + "side": 1, + "atkTar": true + }, + "describe": "当自身攻击的目标死亡后,有0.04的几率进入追击状态,将会再次发动攻击" + }, + "tx04402": { + "skillid": "tx04402", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx04302" + ] + }, + "round": 999, + "chkdata": { + "when": "dead", + "side": 1, + "atkTar": true + }, + "describe": "当自身攻击的目标死亡后,有0.06的几率进入追击状态,将会再次发动攻击" + }, + "tx04403": { + "skillid": "tx04403", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx04303" + ] + }, + "round": 999, + "chkdata": { + "when": "dead", + "side": 1, + "atkTar": true + }, + "describe": "当自身攻击的目标死亡后,有0.08的几率进入追击状态,将会再次发动攻击" + }, + "tx04404": { + "skillid": "tx04404", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx04304" + ] + }, + "round": 999, + "chkdata": { + "when": "dead", + "side": 1, + "atkTar": true + }, + "describe": "当自身攻击的目标死亡后,有0.10的几率进入追击状态,将会再次发动攻击" + }, + "tx04405": { + "skillid": "tx04405", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx04305" + ] + }, + "round": 999, + "chkdata": { + "when": "dead", + "side": 1, + "atkTar": true + }, + "describe": "当自身攻击的目标死亡后,有0.12的几率进入追击状态,将会再次发动攻击" + }, + "tx04406": { + "skillid": "tx04406", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx04306" + ] + }, + "round": 999, + "chkdata": { + "when": "dead", + "side": 1, + "atkTar": true + }, + "describe": "当自身攻击的目标死亡后,有0.14的几率进入追击状态,将会再次发动攻击" + }, + "tx04407": { + "skillid": "tx04407", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx04307" + ] + }, + "round": 999, + "chkdata": { + "when": "dead", + "side": 1, + "atkTar": true + }, + "describe": "当自身攻击的目标死亡后,有0.16的几率进入追击状态,将会再次发动攻击" + }, + "tx04408": { + "skillid": "tx04408", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx04308" + ] + }, + "round": 999, + "chkdata": { + "when": "dead", + "side": 1, + "atkTar": true + }, + "describe": "当自身攻击的目标死亡后,有0.18的几率进入追击状态,将会再次发动攻击" + }, + "tx04409": { + "skillid": "tx04409", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx04309" + ] + }, + "round": 999, + "chkdata": { + "when": "dead", + "side": 1, + "atkTar": true + }, + "describe": "当自身攻击的目标死亡后,有0.20的几率进入追击状态,将会再次发动攻击" + }, + "tx08400": { + "skillid": "tx08400", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx08200" + ] + }, + "round": 999, + "chkdata": { + "when": "dead", + "side": -1 + }, + "describe": "当战斗中死亡后,有0.02的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存" + }, + "tx08401": { + "skillid": "tx08401", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx08201" + ] + }, + "round": 999, + "chkdata": { + "when": "dead", + "side": -1 + }, + "describe": "当战斗中死亡后,有0.04的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存" + }, + "tx08402": { + "skillid": "tx08402", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx08202" + ] + }, + "round": 999, + "chkdata": { + "when": "dead", + "side": -1 + }, + "describe": "当战斗中死亡后,有0.06的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存" + }, + "tx08403": { + "skillid": "tx08403", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx08203" + ] + }, + "round": 999, + "chkdata": { + "when": "dead", + "side": -1 + }, + "describe": "当战斗中死亡后,有0.08的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存" + }, + "tx08404": { + "skillid": "tx08404", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx08204" + ] + }, + "round": 999, + "chkdata": { + "when": "dead", + "side": -1 + }, + "describe": "当战斗中死亡后,有0.1的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存" + }, + "tx08405": { + "skillid": "tx08405", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx08205" + ] + }, + "round": 999, + "chkdata": { + "when": "dead", + "side": -1 + }, + "describe": "当战斗中死亡后,有0.12的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存" + }, + "tx08406": { + "skillid": "tx08406", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx08206" + ] + }, + "round": 999, + "chkdata": { + "when": "dead", + "side": -1 + }, + "describe": "当战斗中死亡后,有0.14的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存" + }, + "tx08407": { + "skillid": "tx08407", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx08207" + ] + }, + "round": 999, + "chkdata": { + "when": "dead", + "side": -1 + }, + "describe": "当战斗中死亡后,有0.16的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存" + }, + "tx08408": { + "skillid": "tx08408", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx08208" + ] + }, + "round": 999, + "chkdata": { + "when": "dead", + "side": -1 + }, + "describe": "当战斗中死亡后,有0.18的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存" + }, + "tx08409": { + "skillid": "tx08409", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx08209" + ] + }, + "round": 999, + "chkdata": { + "when": "dead", + "side": -1 + }, + "describe": "当战斗中死亡后,有0.2的几率重生,重生后生命为最大生命的50%,每场战斗最多触发1次,该技能与干部自身技能可共存" + }, + "tx09400": { + "skillid": "tx09400", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx09300" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "isctrl": 1, + "side": -1 + }, + "describe": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的0.05将会转化为自身的生命值" + }, + "tx09401": { + "skillid": "tx09401", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx09301" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "isctrl": 1, + "side": -1 + }, + "describe": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的0.1将会转化为自身的生命值" + }, + "tx09402": { + "skillid": "tx09402", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx09302" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "isctrl": 1, + "side": -1 + }, + "describe": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的0.15将会转化为自身的生命值" + }, + "tx09403": { + "skillid": "tx09403", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx09303" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "isctrl": 1, + "side": -1 + }, + "describe": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的0.2将会转化为自身的生命值" + }, + "tx09404": { + "skillid": "tx09404", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx09304" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "isctrl": 1, + "side": -1 + }, + "describe": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的0.25将会转化为自身的生命值" + }, + "tx09405": { + "skillid": "tx09405", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx09305" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "isctrl": 1, + "side": -1 + }, + "describe": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的0.3将会转化为自身的生命值" + }, + "tx09406": { + "skillid": "tx09406", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx09306" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "isctrl": 1, + "side": -1 + }, + "describe": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的0.35将会转化为自身的生命值" + }, + "tx09407": { + "skillid": "tx09407", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx09307" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "isctrl": 1, + "side": -1 + }, + "describe": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的0.4将会转化为自身的生命值" + }, + "tx09408": { + "skillid": "tx09408", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx09308" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "isctrl": 1, + "side": -1 + }, + "describe": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的0.45将会转化为自身的生命值" + }, + "tx09409": { + "skillid": "tx09409", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "tx09309" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "isctrl": 1, + "side": -1 + }, + "describe": "让干部掌握扭转乾坤的至高天赋,如果自身被控制时受到伤害,则伤害的0.5将会转化为自身的生命值" + }, + "sp0400300": { + "skillid": "sp0400300", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "sp00300" + ] + }, + "round": 999, + "chkdata": { + "when": "doatk", + "side": -1 + }, + "describe": "击中目标后,目标在2回合内无法通过任何方式恢复生命(技能)" + }, + "sp0401300": { + "skillid": "sp0401300", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "sp01300" + ] + }, + "round": 999, + "chkdata": { + "when": "startatk", + "side": -1 + }, + "describe": "行动时,20%几率恢复我方生命值最低队友10%的最大生命值" + }, + "sp0402300": { + "skillid": "sp0402300", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "sp02300" + ] + }, + "round": 999, + "chkdata": { + "when": "startatk", + "side": -1 + }, + "describe": "行动时额外恢复自身5%的最大生命值" + }, + "sp0403300": { + "skillid": "sp0403300", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 6, + "randnum": 1, + "v": { + "runskill": [ + "sp03300" + ] + }, + "round": 999, + "chkdata": { + "when": "startatk", + "side": -1 + }, + "describe": "行动时有15%几率恢复己方所有成员5%的最大生命值" + }, + "sp0404300": { + "skillid": "sp0404300", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "sp04300" + ] + }, + "round": 999, + "chkdata": { + "when": "startatk", + "side": -1 + }, + "describe": "行动时有20%概率使自身攻击、防御提高20%,持续1回合" + }, + "sp0405300": { + "skillid": "sp0405300", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 2, + "randnum": 1, + "v": { + "runskill": [ + "sp05300" + ] + }, + "round": 999, + "chkdata": { + "when": "startatk", + "side": -1 + }, + "describe": "行动时有20%概率提升己方2名队友20%的防御,持续1回合" + }, + "sp0406300": { + "skillid": "sp0406300", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 6, + "randnum": 1, + "v": { + "runskill": [ + "sp06300" + ] + }, + "round": 999, + "chkdata": { + "when": "startatk", + "side": -1 + }, + "describe": "行动时有20%的概率使我方全体攻击增加10%,持续1回合" + }, + "sp0407300": { + "skillid": "sp0407300", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "sp07300" + ] + }, + "round": 999, + "chkdata": { + "when": "startatk", + "side": -1 + }, + "describe": "行动时有15%的概率提高自身伤害20%,持续1回合" + }, + "sp0408300": { + "skillid": "sp0408300", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "sp08300" + ] + }, + "round": 999, + "chkdata": { + "when": "startatk", + "side": -1 + }, + "describe": "行动时有30%的概率提升自身攻击额外提升15%,持续1回合" + }, + "sp0409300": { + "skillid": "sp0409300", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "sp09300" + ] + }, + "round": 999, + "chkdata": { + "when": "doatk", + "side": -1 + }, + "describe": "击中目标会降低目标7%命中率,持续1回合" + }, + "sp0410300": { + "skillid": "sp0410300", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "sp10300" + ] + }, + "round": 999, + "chkdata": { + "when": "doatk", + "side": -1 + }, + "describe": "击中目标会降低目标7%攻击,持续1回合" + }, + "sp0411300": { + "skillid": "sp0411300", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "sp11300" + ] + }, + "round": 999, + "chkdata": { + "when": "doatk", + "side": -1 + }, + "describe": "击中目标会降低目标18%防御,持续1回合" + }, + "sp0412300": { + "skillid": "sp0412300", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "sp12300" + ] + }, + "round": 999, + "chkdata": { + "when": "doatk", + "side": -1 + }, + "describe": "攻击时有25%概率使自身防御提升25%,持续2回合" + }, + "sp0413300": { + "skillid": "sp0413300", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 6, + "randnum": 1, + "v": { + "runskill": [ + "sp13300" + ] + }, + "round": 999, + "chkdata": { + "when": "startatk", + "side": -1 + }, + "describe": "行动前100%概率使敌方全体气势值降低5%,持续1回合" + }, + "sp0414300": { + "skillid": "sp0414300", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 6, + "randnum": 1, + "v": { + "runskill": [ + "sp14300" + ] + }, + "round": 999, + "chkdata": { + "when": "startatk", + "side": -1 + }, + "describe": "行动前100%概率使我方全体气势值增加5%,持续1回合" + }, + "sp0415300": { + "skillid": "sp0415300", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "sp15300" + ] + }, + "round": 999, + "chkdata": { + "when": "doatk", + "side": -1 + }, + "describe": "攻击时有30%概率使目标伤害降低10%,持续2回合" + }, + "sp0416300": { + "skillid": "sp0416300", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "sp16300" + ] + }, + "round": 999, + "chkdata": { + "when": "doatk", + "side": -1 + }, + "describe": "攻击时有10%的概率使目标眩晕,持续1回合" + }, + "sp0417300": { + "skillid": "sp0417300", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "sp17300" + ] + }, + "round": 999, + "chkdata": { + "when": "doatk", + "side": -1 + }, + "describe": "攻击时有12%概率使目标中剧毒(每回合降低5%生命上限的生命),持续2回合" + }, + "sp0418300": { + "skillid": "sp0418300", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "sp18300" + ] + }, + "round": 999, + "chkdata": { + "when": "doatk", + "side": -1 + }, + "describe": "攻击时有12%概率使目标中毒(每回合降低8%当前生命),持续2回合" + }, + "sp0419300": { + "skillid": "sp0419300", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "sp19300" + ] + }, + "round": 999, + "chkdata": { + "when": "doatk", + "side": -1 + }, + "describe": "击中目标有50%概率会降低目标50%防御,持续2回合" + }, + "sp0420300": { + "skillid": "sp0420300", + "type": 2, + "bdid": "runskill", + "side": -1, + "order": "rand", + "limit": 1, + "randnum": 1, + "v": { + "runskill": [ + "sp20300" + ] + }, + "round": 999, + "chkdata": { + "when": "byatk", + "side": -1 + }, + "describe": "免疫异常状态:免疫几率为8%" + } +} \ No newline at end of file diff --git a/src/json/skillani.json b/src/json/skillani.json new file mode 100644 index 0000000..0b51223 --- /dev/null +++ b/src/json/skillani.json @@ -0,0 +1,1516 @@ +{ + "5005_skill": { + "id": "5005_skill", + "name": "松崎银次", + "jnname": "女仆礼仪", + "type": "技能", + "movetype": "moveto", + "atknum": 3, + "frequencyArr": [ + 0.3, + 0.3, + 0.4 + ], + "hitani": "5005_jnbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 2 + ], + "sound": "5005_skill", + "sound2": "5005_skill_2", + "sound3": "5005_skill_3", + "sjsound": "" + }, + "5004_atk": { + "id": "5004_atk", + "name": "罗贝尔特", + "jnname": "普攻", + "type": "普攻", + "movetype": "none", + "atknum": 4, + "frequencyArr": [ + 0.25, + 0.25, + 0.25, + 0.25 + ], + "hitani": "5004_pgbaodian", + "hitanitype": 22, + "hitAniBg": "", + "shake": [ + 2 + ], + "sound": "m1911_4", + "sound2": "m1911_4_2", + "sound3": "m1911_4_3", + "sjsound": "" + }, + "5004_skill": { + "id": "5004_skill", + "name": "罗贝尔特", + "jnname": "连续射击", + "type": "技能", + "movetype": "none", + "atknum": 5, + "frequencyArr": [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + "hitani": "5004_jnbaodian", + "hitanitype": 22, + "hitAniBg": "", + "shake": [ + 2 + ], + "sound": "5004_jnbaodian", + "sound2": "5004_jnbaodian_2", + "sound3": "5004_jnbaodian_3", + "sjsound": "" + }, + "5003_skill": { + "id": "5003_skill", + "name": "张维新", + "jnname": "士气激荡", + "type": "技能", + "movetype": "none", + "atknum": 5, + "frequencyArr": [ + 0.1, + 0.1, + 0.2, + 0.3, + 0.3 + ], + "hitani": "5003_jnbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 2, + 2, + 2, + 2, + 2 + ], + "sound": "5003_skill", + "sound2": "5003_skill_2", + "sound3": "5003_skill_3", + "sjsound": "" + }, + "5002_atk": { + "id": "5002_atk", + "name": "巴拉莱卡", + "jnname": "乱射", + "type": "普攻", + "movetype": "none", + "atknum": 3, + "frequencyArr": [ + 0.3, + 0.3, + 0.4 + ], + "hitani": "5002_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 2 + ], + "sound": "5002_atk", + "sound2": "5002_atk_2", + "sound3": "5002_atk_3", + "sjsound": "" + }, + "5002_skill": { + "id": "5002_skill", + "name": "巴拉莱卡", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 3, + "frequencyArr": [ + 0.3, + 0.3, + 0.4 + ], + "hitani": "5002_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 2 + ], + "sound": "5002_atk", + "sound2": "5002_atk_2", + "sound3": "5002_atk_3", + "sjsound": "" + }, + "5001_skill": { + "id": "5001_skill", + "name": "莱薇", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 5, + "frequencyArr": [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + "hitani": "5001_jnbaodian", + "hitanitype": 22, + "hitAniBg": "5001_jnquanping", + "shake": [ + 2, + 2, + 2, + 2, + 2 + ], + "sound": "5001_skill", + "sound2": "5001_skill_2", + "sound3": "5001_skill_3", + "sjsound": "" + }, + "4015_atk": { + "id": "4015_atk", + "name": "罗顿", + "jnname": "普攻", + "type": "普攻", + "movetype": "none", + "atknum": 5, + "frequencyArr": [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + "hitani": "4015_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "4015_atk", + "sound2": "4015_atk_2", + "sound3": "4015_atk_3", + "sjsound": "" + }, + "4014_atk": { + "id": "4014_atk", + "name": "索亚", + "jnname": "反击", + "type": "反击", + "movetype": "moveto", + "atknum": 2, + "frequencyArr": [ + 0.5, + 0.5 + ], + "hitani": "4014_jnbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "4014_atk", + "sound2": "4014_atk_2", + "sound3": "4014_atk_3", + "sjsound": "" + }, + "4013_atk": { + "id": "4013_atk", + "name": "格里达尔", + "jnname": "普攻", + "type": "普攻", + "movetype": "none", + "atknum": 6, + "frequencyArr": [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.5 + ], + "hitani": "4013_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "4013_atk", + "sound2": "4013_atk_2", + "sound3": "4013_atk_3", + "sjsound": "" + }, + "4012_atk": { + "id": "4012_atk", + "name": "汉塞尔", + "jnname": "普攻", + "type": "普攻", + "movetype": "moveto", + "atknum": 2, + "frequencyArr": [ + 0.5, + 0.5 + ], + "hitani": "4012_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "4012_atk", + "sound2": "4012_atk_2", + "sound3": "4012_atk_3", + "sjsound": "" + }, + "4011_skill": { + "id": "4011_skill", + "name": "法贝拉", + "jnname": "技能", + "type": "技能", + "movetype": "moveto", + "atknum": 6, + "frequencyArr": [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.5 + ], + "hitani": "4011_jnbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "4011_skill", + "sound2": "4011_skill_2", + "sound3": "4011_skill_3", + "sjsound": "" + }, + "4010_skill": { + "id": "4010_skill", + "name": "加尔西亚", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": "4010_jnbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "4010_skill", + "sound2": "4010_skill_2", + "sound3": "4010_skill_3", + "sjsound": "" + }, + "4009_atk": { + "id": "4009_atk", + "name": "竹中正洋", + "jnname": "普攻", + "type": "普攻", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": "4007_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "4009_atk", + "sound2": "4009_atk_2", + "sound3": "4009_atk_3", + "sjsound": "" + }, + "4009_skill": { + "id": "4009_skill", + "name": "竹中正洋", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": "4007_jnbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "4009_atk", + "sound2": "4009_atk_2", + "sound3": "4009_atk_3", + "sjsound": "" + }, + "4008_skill": { + "id": "4008_skill", + "name": "坂东次男", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 4, + "frequencyArr": [ + 0.25, + 0.25, + 0.25, + 0.25 + ], + "hitani": "4008_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "4008_skill", + "sound2": "4008_skill_2", + "sound3": "4008_skill_3", + "sjsound": "" + }, + "4007_atk": { + "id": "4007_atk", + "name": "鹫峰雪绪", + "jnname": "反击", + "type": "反击", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": "4007_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "4007_atk", + "sound2": "4007_atk_2", + "sound3": "4007_atk_3", + "sjsound": "" + }, + "4006_skill": { + "id": "4006_skill", + "name": "仙鹤", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 3, + "frequencyArr": [ + 0.3, + 0.3, + 0.4 + ], + "hitani": "4006_jnbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "4006_skill", + "sound2": "4006_skill_2", + "sound3": "4006_skill_3", + "sjsound": "" + }, + "4005_atk": { + "id": "4005_atk", + "name": "艾达", + "jnname": "普攻", + "type": "普攻", + "movetype": "none", + "atknum": 3, + "frequencyArr": [ + 0.3, + 0.3, + 0.4 + ], + "hitani": "4005_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "4005_atk", + "sound2": "4005_atk_2", + "sound3": "4005_atk_3", + "sjsound": "" + }, + "4004_atk": { + "id": "4004_atk", + "name": "尤兰达", + "jnname": "普攻", + "type": "普攻", + "movetype": "none", + "atknum": 3, + "frequencyArr": [ + 0.3, + 0.3, + 0.4 + ], + "hitani": "4004_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "4004_atk", + "sound2": "4004_atk_2", + "sound3": "4004_atk_3", + "sjsound": "" + }, + "4003_atk": { + "id": "4003_atk", + "name": "军曹", + "jnname": "普攻", + "type": "普攻", + "movetype": "none", + "atknum": 2, + "frequencyArr": [ + 0.5, + 0.5 + ], + "hitani": "4003_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "4003_skill", + "sound2": "4003_skill_2", + "sound3": "4003_skill_3", + "sjsound": "" + }, + "4003_skill": { + "id": "4003_skill", + "name": "军曹", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 3, + "frequencyArr": [ + 0.3, + 0.3, + 0.4 + ], + "hitani": "4003_jnbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "4003_skill", + "sound2": "4003_skill_2", + "sound3": "4003_skill_3", + "sjsound": "" + }, + "4002_atk": { + "id": "4002_atk", + "name": "达奇", + "jnname": "三刀斩", + "type": "普攻", + "movetype": "none", + "atknum": 2, + "frequencyArr": [ + 0.5, + 0.5 + ], + "hitani": "5001_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "4002_skill", + "sound2": "4002_skill_2", + "sound3": "4002_skill_3", + "sjsound": "" + }, + "4002_skill": { + "id": "4002_skill", + "name": "达奇", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": "4002_jnbaodian", + "hitanitype": 1, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "4002_skill", + "sound2": "4002_skill_2", + "sound3": "4002_skill_3", + "sjsound": "" + }, + "4001_atk": { + "id": "4001_atk", + "name": "洛克", + "jnname": "普攻", + "type": "普攻", + "movetype": "moveto", + "atknum": 3, + "frequencyArr": [ + 0.3, + 0.3, + 0.4 + ], + "hitani": "4001_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "4001_atk", + "sound2": "4001_atk_2", + "sound3": "4001_atk_3", + "sjsound": "" + }, + "3015_atk": { + "id": "3015_atk", + "name": "贝尼", + "jnname": "普攻", + "type": "普攻", + "movetype": "none", + "atknum": 3, + "frequencyArr": [ + 0.3, + 0.3, + 0.4 + ], + "hitani": "3015_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "3015_atk", + "sound2": "3015_atk_2", + "sound3": "3015_atk_3", + "sjsound": "" + }, + "3014_atk": { + "id": "3014_atk", + "name": "陈", + "jnname": "普攻", + "type": "普攻", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": "3014_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "3014_atk", + "sound2": "3014_atk_2", + "sound3": "3014_atk_3", + "sjsound": "" + }, + "3014_skill": { + "id": "3014_skill", + "name": "陈\n", + "jnname": "反击", + "type": "反击", + "movetype": "none", + "atknum": 2, + "frequencyArr": [ + 0.5, + 0.5 + ], + "hitani": "3014_jnbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "3014_atk", + "sound2": "3014_atk_2", + "sound3": "3014_atk_3", + "sjsound": "" + }, + "3013_skill": { + "id": "3013_skill", + "name": "卡克斯顿", + "jnname": "普攻", + "type": "技能", + "movetype": "none", + "atknum": 3, + "frequencyArr": [ + 0.3, + 0.3, + 0.4 + ], + "hitani": "3013_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "3013_skill", + "sound2": "3013_skill_2", + "sound3": "3013_skill_3", + "sjsound": "" + }, + "3012_atk": { + "id": "3012_atk", + "name": "布利茨", + "jnname": "普攻", + "type": "普攻", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": "3003_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "3012_atk", + "sound2": "3012_atk_2", + "sound3": "3012_atk_3", + "sjsound": "" + }, + "3011_atk": { + "id": "3011_atk", + "name": "雷卡基", + "jnname": "普攻", + "type": "普攻", + "movetype": "moveto", + "atknum": 2, + "frequencyArr": [ + 0.5, + 0.5 + ], + "hitani": "3011_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "3011_atk", + "sound2": "3011_atk_2", + "sound3": "3011_atk_3", + "sjsound": "" + }, + "3010_skill": { + "id": "3010_skill", + "name": "彪", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": "3009_jnbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "3010_skill", + "sound2": "3010_skill_2", + "sound3": "3010_skill_3", + "sjsound": "" + }, + "3009_skill": { + "id": "3009_skill", + "name": "阿布莱格", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": "3009_jnbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "3009_skill", + "sound2": "3009_skill_2", + "sound3": "3009_skill_3", + "sjsound": "" + }, + "3008_atk": { + "id": "3008_atk", + "name": "罗尼", + "jnname": "普攻", + "type": "普攻", + "movetype": "none", + "atknum": 6, + "frequencyArr": [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.5 + ], + "hitani": "3008_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "3008_atk", + "sound2": "3008_atk_2", + "sound3": "3008_atk_3", + "sjsound": "" + }, + "3007_skill": { + "id": "3007_skill", + "name": "裴洛基欧", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": "3007_jnbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "3007_skill", + "sound2": "3007_skill_2", + "sound3": "3007_skill_3", + "sjsound": "" + }, + "3007_atk": { + "id": "3007_atk", + "name": "裴洛基欧", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": "3009_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "3007_skill", + "sound2": "3007_skill_2", + "sound3": "3007_skill_3", + "sjsound": "" + }, + "3006_skill": { + "id": "3006_skill", + "name": "韦伯", + "jnname": "技能", + "type": "技能", + "movetype": "moveto", + "atknum": 4, + "frequencyArr": [ + 0.25, + 0.25, + 0.25, + 0.25 + ], + "hitani": "3006_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "3006_skill", + "sound2": "3006_skill_2", + "sound3": "3006_skill_3", + "sjsound": "" + }, + "3005_atk": { + "id": "3005_atk", + "name": "猫王", + "jnname": "普攻", + "type": "普攻", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": "3014_jnbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "3005_atk", + "sound2": "3005_atk_2", + "sound3": "3005_atk_3", + "sjsound": "" + }, + "3005_skill": { + "id": "3005_skill", + "name": "猫王", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": "3014_jnbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "3005_atk", + "sound2": "3005_atk_2", + "sound3": "3005_atk_3", + "sjsound": "" + }, + "3004_atk": { + "id": "3004_atk", + "name": "珍", + "jnname": "普攻", + "type": "普攻", + "movetype": "moveto", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": "3004_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "3004_atk", + "sound2": "3004_atk_2", + "sound3": "3004_atk_3", + "sjsound": "" + }, + "3004_skill": { + "id": "3004_skill", + "name": "珍", + "jnname": "技能", + "type": "技能", + "movetype": "moveto", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": "3004_jnbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "3004_atk", + "sound2": "3004_atk_2", + "sound3": "3004_atk_3", + "sjsound": "" + }, + "3003_atk": { + "id": "3003_atk", + "name": "查卡", + "jnname": "普攻", + "type": "普攻", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": "3003_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "3003_atk", + "sound2": "3003_atk_2", + "sound3": "3003_atk_3", + "sjsound": "" + }, + "3003_skill": { + "id": "3003_skill", + "name": "查卡", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": "3014_jnbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "3003_atk", + "sound2": "3003_atk_2", + "sound3": "3003_atk_3", + "sjsound": "" + }, + "3002_skill": { + "id": "3002_skill", + "name": "李卡德", + "jnname": "手雷爆破", + "type": "技能", + "movetype": "none", + "atknum": 4, + "frequencyArr": [ + 0.2, + 0.2, + 0.2, + 0.4 + ], + "hitani": "3002_jnbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 2 + ], + "sound": "3002_skill", + "sound2": "3002_skill_2", + "sound3": "3002_skill_3", + "sjsound": "" + }, + "3001_atk": { + "id": "3001_atk", + "name": "吉田", + "jnname": "普攻", + "type": "普攻", + "movetype": "moveto", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": "3001_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "3001_atk", + "sound2": "3001_atk_2", + "sound3": "3001_atk_3", + "sjsound": "" + }, + "2002_atk": { + "id": "2002_atk", + "name": "瓦萨普", + "jnname": "普攻", + "type": "普攻", + "movetype": "moveto", + "atknum": 3, + "frequencyArr": [ + 0.3, + 0.3, + 0.4 + ], + "hitani": "2002_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "2002_atk+skill", + "sound2": "2002_atk+skill_2", + "sound3": "2002_atk+skill_3", + "sjsound": "" + }, + "2002_skill": { + "id": "2002_skill", + "name": "瓦萨普", + "jnname": "普攻", + "type": "普攻", + "movetype": "moveto", + "atknum": 3, + "frequencyArr": [ + 0.3, + 0.3, + 0.4 + ], + "hitani": "2002_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "2002_atk+skill", + "sound2": "2002_atk+skill_2", + "sound3": "2002_atk+skill_3", + "sjsound": "" + }, + "2001_atk": { + "id": "2001_atk", + "name": "罗素", + "jnname": "普攻", + "type": "普攻", + "movetype": "none", + "atknum": 3, + "frequencyArr": [ + 0.3, + 0.3, + 0.4 + ], + "hitani": "4011_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "2001_atk", + "sound2": "2001_atk_2", + "sound3": "2001_atk_3", + "sjsound": "" + }, + "2001_skill": { + "id": "2001_skill", + "name": "罗素", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": "2001_jnbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "2001_atk", + "sound2": "2001_atk_2", + "sound3": "2001_atk_3", + "sjsound": "" + }, + "1002_skill": { + "id": "1002_skill", + "name": "罗旺", + "jnname": "技能", + "type": "技能", + "movetype": "moveto", + "atknum": 2, + "frequencyArr": [ + 0.5, + 0.5 + ], + "hitani": "1002_jnbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "1002_skill", + "sound2": "1002_skill_2", + "sound3": "1002_skill_3", + "sjsound": "" + }, + "1001_atk": { + "id": "1001_atk", + "name": "保", + "jnname": "普攻", + "type": "普攻", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": "1001_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "1001_atk", + "sound2": "1001_atk_2", + "sound3": "1001_atk_3", + "sjsound": "" + }, + "1001_skill": { + "id": "1001_skill", + "name": "保", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": "1001_pgbaodian", + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": "1001_atk", + "sound2": "1001_atk_2", + "sound3": "1001_atk_3", + "sjsound": "" + }, + "player_10001100": { + "id": "player_10001100", + "name": "破防", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": 801, + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": 801, + "sound2": "801_2", + "sound3": "801_3", + "sjsound": "" + }, + "player_10001200": { + "id": "player_10001200", + "name": "重伤", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": 803, + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": 803, + "sound2": "803_2", + "sound3": "803_3", + "sjsound": "" + }, + "player_10001300": { + "id": "player_10001300", + "name": "幸运", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": 806, + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": 806, + "sound2": "806_2", + "sound3": "806_3", + "sjsound": "" + }, + "player_10001400": { + "id": "player_10001400", + "name": "抵抗", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": 808, + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": 808, + "sound2": "808_2", + "sound3": "808_3", + "sjsound": "" + }, + "player_20001100": { + "id": "player_20001100", + "name": "偷袭", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 5, + "frequencyArr": [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + "hitani": 810, + "hitanitype": 21, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": 810, + "sound2": "810_2", + "sound3": "810_3", + "sjsound": "" + }, + "player_20001200": { + "id": "player_20001200", + "name": "激励", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": 813, + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": 813, + "sound2": "813_2", + "sound3": "813_3", + "sjsound": "" + }, + "player_20001300": { + "id": "player_20001300", + "name": "点燃", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 9, + "frequencyArr": [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + "hitani": 816, + "hitanitype": 21, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": 816, + "sound2": "816_2", + "sound3": "816_3", + "sjsound": "" + }, + "player_30001100": { + "id": "player_30001100", + "name": "震荡", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 6, + "frequencyArr": [ + 0.1, + 0.1, + 0.2, + 0.2, + 0.2, + 0.2 + ], + "hitani": 818, + "hitanitype": 21, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": 818, + "sound2": "818_2", + "sound3": "818_3", + "sjsound": "" + }, + "player_30001200": { + "id": "player_30001200", + "name": "震慑", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 4, + "frequencyArr": [ + 0.2, + 0.2, + 0.3, + 0.3 + ], + "hitani": 819, + "hitanitype": 21, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": 819, + "sound2": "819_2", + "sound3": "819_3", + "sjsound": "" + }, + "player_30001300": { + "id": "player_30001300", + "name": "保护", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": 823, + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": 823, + "sound2": "823_2", + "sound3": "823_3", + "sjsound": "" + }, + "player_30001400": { + "id": "player_30001400", + "name": "沉稳", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 4, + "frequencyArr": [ + 0.2, + 0.2, + 0.3, + 0.3 + ], + "hitani": 825, + "hitanitype": 21, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": 825, + "sound2": "825_2", + "sound3": "825_3", + "sjsound": "" + }, + "player_40001100": { + "id": "player_40001100", + "name": "击晕", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": 827, + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": 827, + "sound2": "827_2", + "sound3": "827_3", + "sjsound": "" + }, + "player_40001200": { + "id": "player_40001200", + "name": "专注", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": 829, + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": 829, + "sound2": "829_2", + "sound3": "829_3", + "sjsound": "" + }, + "player_40001300": { + "id": "player_40001300", + "name": "嗜血", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": 831, + "hitanitype": 2, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": 831, + "sound2": "831_2", + "sound3": "831_3", + "sjsound": "" + }, + "player_40001400": { + "id": "player_40001400", + "name": "蔑视", + "jnname": "技能", + "type": "技能", + "movetype": "none", + "atknum": 1, + "frequencyArr": [ + 1 + ], + "hitani": 834, + "hitanitype": 21, + "hitAniBg": "", + "shake": [ + 1 + ], + "sound": 834, + "sound2": "834_2", + "sound3": "834_3", + "sjsound": "" + } +} \ No newline at end of file diff --git a/src/json/skillintr.json b/src/json/skillintr.json new file mode 100644 index 0000000..fa5589b --- /dev/null +++ b/src/json/skillintr.json @@ -0,0 +1,20 @@ +{ + "5001011": { + "skillid": 5001011, + "skillicon": "boss_jn1", + "name": "intr_hero_name_40", + "describe": "intr_hero_describe_40" + }, + "5001212": { + "skillid": 5001212, + "skillicon": "boss_jn2", + "name": "intr_hero_name_41", + "describe": "intr_hero_describe_41" + }, + "5001213": { + "skillid": 5001213, + "skillicon": "boss_jn3", + "name": "intr_hero_name_42", + "describe": "intr_hero_describe_42" + } +} \ No newline at end of file diff --git a/src/json/slzd.json5 b/src/json/slzd.json5 new file mode 100644 index 0000000..d062b26 --- /dev/null +++ b/src/json/slzd.json5 @@ -0,0 +1,406 @@ +{ + //功能开启天数 势力争夺 海岛争霸 + openDay: 4, + //开放时间 + openTime: [0, 514800], + //结算定时器时间 + schedulerPrize: 597600, + //分组定时器时间 + schedulerGroup: 0, + //据点 + forts: { + '1': { + name: 'intr_slzd_name_1', + npc: [ + { lvs: [1, 999], npcs: ['50001', '50002', '50003', '50004', '50005', '50006', '50007', '50008', '50009', '50010'] } + ], + prize: [ + { ph: [1,1], prize: [{a: 'item', t: '9', n: 1200},{a: 'item', t: '17', n: 5},{a: 'item', t: '10', n: 65}] }, + { ph: [2,2], prize: [{a: 'item', t: '9', n: 960},{a: 'item', t: '17', n: 4},{a: 'item', t: '10', n: 39}] }, + { ph: [3,3], prize: [{a: 'item', t: '9', n: 720},{a: 'item', t: '17', n: 3},{a: 'item', t: '10', n: 26}] } + ], + luckPrize: { + need: 2500, + prize: [{a: 'item', t: '9', n: 600},{a: 'item', t: '17', n: 2},{a: 'item', t: '10', n: 26}] + }, + //参与奖 + joinPrize: { + need: 1500, + prize: [{a: 'item', t: '9', n: 200},{a: 'item', t: '17', n: 1},{a: 'item', t: '10', n: 7}] + }, + //选用特产库 + stash: [1,2,3,4,5,6] + }, + '2': { + name: 'intr_slzd_name_2', + npc: [ + { lvs: [1, 999], npcs: ['50001', '50002', '50003', '50004', '50005', '50006', '50007', '50008', '50009', '50010'] } + ], + prize: [ + { ph: [1,1], prize: [{a: 'item', t: '9', n: 1000},{a: 'item', t: '17', n: 5},{a: 'item', t: '10', n: 50}] }, + { ph: [2,2], prize: [{a: 'item', t: '9', n: 800},{a: 'item', t: '17', n: 4},{a: 'item', t: '10', n: 30}] }, + { ph: [3,3], prize: [{a: 'item', t: '9', n: 600},{a: 'item', t: '17', n: 3},{a: 'item', t: '10', n: 20}] } + ], + luckPrize: { + need: 2500, + prize: [{a: 'item', t: '9', n: 300},{a: 'item', t: '17', n: 1},{a: 'item', t: '10', n: 5}] + }, + joinPrize: { + need: 1500, + prize: [{a: 'item', t: '9', n: 200},{a: 'item', t: '17', n: 1},{a: 'item', t: '10', n: 7}] + }, + stash: [7,8,9,10,11] + }, + '3': { + name: 'intr_slzd_name_3', + npc: [ + { lvs: [1, 999], npcs: ['50001', '50002', '50003', '50004', '50005', '50006', '50007', '50008', '50009', '50010'] } + ], + prize: [ + { ph: [1,1], prize: [{a: 'item', t: '9', n: 1000},{a: 'item', t: '17', n: 5},{a: 'item', t: '10', n: 50}] }, + { ph: [2,2], prize: [{a: 'item', t: '9', n: 800},{a: 'item', t: '17', n: 4},{a: 'item', t: '10', n: 30}] }, + { ph: [3,3], prize: [{a: 'item', t: '9', n: 600},{a: 'item', t: '17', n: 3},{a: 'item', t: '10', n: 20}] } + ], + luckPrize: { + need: 2500, + prize: [{a: 'item', t: '9', n: 300},{a: 'item', t: '17', n: 1},{a: 'item', t: '10', n: 5}] + }, + joinPrize: { + need: 1500, + prize: [{a: 'item', t: '9', n: 200},{a: 'item', t: '17', n: 1},{a: 'item', t: '10', n: 7}] + }, + stash: [7,8,9,10,11] + }, + '4': { + name: 'intr_slzd_name_4', + npc: [ + { lvs: [1, 999], npcs: ['50001', '50002', '50003', '50004', '50005', '50006', '50007', '50008', '50009', '50010'] } + ], + prize: [ + { ph: [1,1], prize: [{a: 'item', t: '9', n: 800},{a: 'item', t: '17', n: 5},{a: 'item', t: '10', n: 35}] }, + { ph: [2,2], prize: [{a: 'item', t: '9', n: 640},{a: 'item', t: '17', n: 4},{a: 'item', t: '10', n: 21}] }, + { ph: [3,3], prize: [{a: 'item', t: '9', n: 480},{a: 'item', t: '17', n: 3},{a: 'item', t: '10', n: 14}] } + ], + luckPrize: { + need: 2500, + prize: [{a: 'item', t: '9', n: 300},{a: 'item', t: '17', n: 1},{a: 'item', t: '10', n: 5}] + }, + joinPrize: { + need: 1500, + prize: [{a: 'item', t: '9', n: 200},{a: 'item', t: '17', n: 1},{a: 'item', t: '10', n: 7}] + }, + stash: [12,13,14,15,16] + }, + '5': { + name: 'intr_slzd_name_5', + npc: [ + { lvs: [1, 999], npcs: ['50001', '50002', '50003', '50004', '50005', '50006', '50007', '50008', '50009', '50010'] } + ], + prize: [ + { ph: [1,1], prize: [{a: 'item', t: '9', n: 800},{a: 'item', t: '17', n: 5},{a: 'item', t: '10', n: 35}] }, + { ph: [2,2], prize: [{a: 'item', t: '9', n: 640},{a: 'item', t: '17', n: 4},{a: 'item', t: '10', n: 21}] }, + { ph: [3,3], prize: [{a: 'item', t: '9', n: 480},{a: 'item', t: '17', n: 3},{a: 'item', t: '10', n: 14}] } + ], + luckPrize: { + need: 2500, + prize: [{a: 'item', t: '9', n: 300},{a: 'item', t: '17', n: 1},{a: 'item', t: '10', n: 5}] + }, + joinPrize: { + need: 1500, + prize: [{a: 'item', t: '9', n: 200},{a: 'item', t: '17', n: 1},{a: 'item', t: '10', n: 7}] + }, + stash: [12,13,14,15,16] + }, + '6': { + name: 'intr_slzd_name_6', + npc: [ + { lvs: [1, 999], npcs: ['50001', '50002', '50003', '50004', '50005', '50006', '50007', '50008', '50009', '50010'] } + ], + prize: [ + { ph: [1,1], prize: [{a: 'item', t: '9', n: 800},{a: 'item', t: '17', n: 5},{a: 'item', t: '10', n: 35}] }, + { ph: [2,2], prize: [{a: 'item', t: '9', n: 640},{a: 'item', t: '17', n: 4},{a: 'item', t: '10', n: 21}] }, + { ph: [3,3], prize: [{a: 'item', t: '9', n: 480},{a: 'item', t: '17', n: 3},{a: 'item', t: '10', n: 14}] } + ], + luckPrize: { + need: 2500, + prize: [{a: 'item', t: '9', n: 300},{a: 'item', t: '17', n: 1},{a: 'item', t: '10', n: 5}] + }, + joinPrize: { + need: 1500, + prize: [{a: 'item', t: '9', n: 200},{a: 'item', t: '17', n: 1},{a: 'item', t: '10', n: 7}] + }, + stash: [12,13,14,15,16] + } + }, + //据点特产库,从库中抽取 + stash: { + //特产库1 + '1': { + //排名特产库奖励 + prize: [ + { ph: [1,1], prize: [{a: 'item', t: '5001', n: 10}] }, + { ph: [2,2], prize: [{a: 'item', t: '5001', n: 8}] }, + { ph: [3,3], prize: [{a: 'item', t: '5001', n: 5}] } + ], + //幸运奖 + luckPrize: { + need: 2500, + prize: [{a: 'item', t: '5001', n: 5}] + }, + //权重 + p: 1800 + }, + //特产库1 + '2': { + prize: [ + { ph: [1,1], prize: [{a: 'item', t: '5002', n: 6}] }, + { ph: [2,2], prize: [{a: 'item', t: '5002', n: 4}] }, + { ph: [3,3], prize: [{a: 'item', t: '5002', n: 2}] } + ], + luckPrize: { + need: 2500, + prize: [{a: 'item', t: '5002', n: 2}] + }, + p: 700 + }, + //特产库1 + '3': { + prize: [ + { ph: [1,1], prize: [{a: 'item', t: '5003', n: 10}] }, + { ph: [2,2], prize: [{a: 'item', t: '5003', n: 8}] }, + { ph: [3,3], prize: [{a: 'item', t: '5003', n: 5}] } + ], + luckPrize: { + need: 2500, + prize: [{a: 'item', t: '5003', n: 5}] + }, + p: 1800 + }, + //特产库1 + '4': { + prize: [ + { ph: [1,1], prize: [{a: 'item', t: '5004', n: 6}] }, + { ph: [2,2], prize: [{a: 'item', t: '5004', n: 4}] }, + { ph: [3,3], prize: [{a: 'item', t: '5004', n: 2}] } + ], + luckPrize: { + need: 2500, + prize: [{a: 'item', t: '5004', n: 2}] + }, + p: 700 + }, + //特产库1 + '5': { + prize: [ + { ph: [1,1], prize: [{a: 'item', t: '5005', n: 10}] }, + { ph: [2,2], prize: [{a: 'item', t: '5005', n: 8}] }, + { ph: [3,3], prize: [{a: 'item', t: '5005', n: 5}] } + ], + luckPrize: { + need: 2500, + prize: [{a: 'item', t: '5005', n: 5}] + }, + p: 1800 + }, + //特产库1 + '6': { + prize: [ + { ph: [1,1], prize: [{a: 'item', t: '10', n: 10}] }, + { ph: [2,2], prize: [{a: 'item', t: '10', n: 8}] }, + { ph: [3,3], prize: [{a: 'item', t: '10', n: 5}] } + ], + luckPrize: { + need: 2500, + prize: [{a: 'item', t: '10', n: 5}] + }, + p: 1800 + }, + //特产库2 + '7': { + prize: [ + { ph: [1,1], prize: [{a: 'item', t: '634', n: 10}] }, + { ph: [2,2], prize: [{a: 'item', t: '634', n: 8}] }, + { ph: [3,3], prize: [{a: 'item', t: '634', n: 5}] } + ], + luckPrize: { + need: 2500, + prize: [{a: 'item', t: '634', n: 5}] + }, + p: 2000 + }, + //特产库2 + '8': { + prize: [ + { ph: [1,1], prize: [{a: 'item', t: '24', n: 10}] }, + { ph: [2,2], prize: [{a: 'item', t: '24', n: 8}] }, + { ph: [3,3], prize: [{a: 'item', t: '24', n: 5}] } + ], + luckPrize: { + need: 2500, + prize: [{a: 'item', t: '24', n: 5}] + }, + p: 2000 + }, + //特产库2 + '9': { + prize: [ + { ph: [1,1], prize: [{a: 'item', t: '635', n: 10}] }, + { ph: [2,2], prize: [{a: 'item', t: '635', n: 8}] }, + { ph: [3,3], prize: [{a: 'item', t: '635', n: 5}] } + ], + luckPrize: { + need: 2500, + prize: [{a: 'item', t: '635', n: 5}] + }, + p: 1500 + }, + //特产库2 + '10': { + prize: [ + { ph: [1,1], prize: [{a: 'item', t: '10', n: 6}] }, + { ph: [2,2], prize: [{a: 'item', t: '10', n: 4}] }, + { ph: [3,3], prize: [{a: 'item', t: '10', n: 2}] } + ], + luckPrize: { + need: 2500, + prize: [{a: 'item', t: '10', n: 2}] + }, + p: 1500 + }, + //特产库2 + '11': { + prize: [ + { ph: [1,1], prize: [{a: 'item', t: '18', n: 100}] }, + { ph: [2,2], prize: [{a: 'item', t: '18', n: 80}] }, + { ph: [3,3], prize: [{a: 'item', t: '18', n: 50}] } + ], + luckPrize: { + need: 2500, + prize: [{a: 'item', t: '18', n: 50}] + }, + p: 2500 + }, + //特产库3 + '12': { + prize: [ + { ph: [1,1], prize: [{a: 'item', t: '634', n: 10}] }, + { ph: [2,2], prize: [{a: 'item', t: '634', n: 8}] }, + { ph: [3,3], prize: [{a: 'item', t: '634', n: 5}] } + ], + luckPrize: { + need: 2500, + prize: [{a: 'item', t: '634', n: 5}] + }, + p: 2000 + }, + //特产库3 + '13': { + prize: [ + { ph: [1,1], prize: [{a: 'item', t: '12', n: 200}] }, + { ph: [2,2], prize: [{a: 'item', t: '12', n: 160}] }, + { ph: [3,3], prize: [{a: 'item', t: '12', n: 100}] } + ], + luckPrize: { + need: 2500, + prize: [{a: 'item', t: '12', n: 100}] + }, + p: 2000 + }, + //特产库3 + '14': { + prize: [ + { ph: [1,1], prize: [{a: 'item', t: '2', n: 200}] }, + { ph: [2,2], prize: [{a: 'item', t: '2', n: 160}] }, + { ph: [3,3], prize: [{a: 'item', t: '2', n: 100}] } + ], + luckPrize: { + need: 2500, + prize: [{a: 'item', t: '2', n: 100}] + }, + p: 2000 + }, + //特产库3 + '15': { + prize: [ + { ph: [1,1], prize: [{a: 'item', t: '9', n: 10}] }, + { ph: [2,2], prize: [{a: 'item', t: '9', n: 8}] }, + { ph: [3,3], prize: [{a: 'item', t: '9', n: 5}] } + ], + luckPrize: { + need: 2500, + prize: [{a: 'item', t: '9', n: 5}] + }, + p: 2000 + }, + //特产库3 + '16': { + prize: [ + { ph: [1,1], prize: [{a: 'item', t: '6', n: 10}] }, + { ph: [2,2], prize: [{a: 'item', t: '6', n: 8}] }, + { ph: [3,3], prize: [{a: 'item', t: '6', n: 5}] } + ], + luckPrize: { + need: 2500, + prize: [{a: 'item', t: '6', n: 5}] + }, + p: 2000 + } + }, + //老虎机掉落组 + slotDrop: '1', + //老虎机消耗 + slotNeed: [{a: 'attr', t: 'rmbmoney', n: 80}], + //老虎机777显示 + slotBingo: [{ a: 'item', t: '4' }], + //战斗次数回复cd + replyCd: 7200, + //最大战斗次数 + maxFightNum: 152, + //初始战斗次数 + ctorFightNum: 12, + //vip可购买的战斗次数 + buyFightNum: [3, 5, 7, 9, 12, 15, 18, 21, 24, 27, 30, 33, 40, 60, 80, 100,120,140], + //挑战次数购买消耗 + buyFightNumNeed: [ + { nums: [1, 1], need: [{a: 'attr', t: 'rmbmoney', n: 10}] }, + { nums: [2, 3], need: [{a: 'attr', t: 'rmbmoney', n: 20}] }, + { nums: [4, 6], need: [{a: 'attr', t: 'rmbmoney', n: 30}] }, + { nums: [7, 10], need: [{a: 'attr', t: 'rmbmoney', n: 50}] }, + { nums: [11, 999], need: [{a: 'attr', t: 'rmbmoney', n: 80}] } + ], + //免费刷新次数 + refreshNum: 6, + //刷新消耗 + refreshNeed: [{a: 'attr', t: 'rmbmoney', n: 30}], + //胜场奖励 + fightWinNumPrize: [ + { total: 3, prize: [{a: 'item', t: '9', n: 45},{a: 'item', t: '17', n: 1},{a: 'item', t: '10', n: 1},{a: 'attr', t: 'jinbi', n: 50000}] }, + { total: 5, prize: [{a: 'item', t: '9', n: 60},{a: 'item', t: '17', n: 1},{a: 'item', t: '10', n: 1},{a: 'attr', t: 'jinbi', n: 60000}] }, + { total: 10, prize: [{a: 'item', t: '9', n: 90},{a: 'item', t: '17', n: 1},{a: 'item', t: '10', n: 1},{a: 'attr', t: 'jinbi', n: 80000}] }, + { total: 15, prize: [{a: 'item', t: '9', n: 150},{a: 'item', t: '17', n: 1},{a: 'item', t: '10', n: 2},{a: 'attr', t: 'jinbi', n: 100000}] }, + { total: 20, prize: [{a: 'item', t: '9', n: 210},{a: 'item', t: '17', n: 1},{a: 'attr', t: 'jinbi', n: 120000}] }, + { total: 25, prize: [{a: 'item', t: '9', n: 300},{a: 'item', t: '17', n: 1},{a: 'attr', t: 'jinbi', n: 150000}] }, + { total: 30, prize: [{a: 'item', t: '9', n: 450},{a: 'item', t: '17', n: 1},{a: 'item', t: '10', n: 3},{a: 'attr', t: 'jinbi', n: 180000}] }, + { total: 40, prize: [{a: 'item', t: '9', n: 600},{a: 'item', t: '17', n: 1},{a: 'attr', t: 'jinbi', n: 250000}] }, + { total: 55, prize: [{a: 'item', t: '9', n: 600},{a: 'item', t: '17', n: 1},{a: 'attr', t: 'jinbi', n: 300000}] }, + { total: 70, prize: [{a: 'item', t: '9', n: 600},{a: 'item', t: '17', n: 1},{a: 'item', t: '10', n: 5},{a: 'attr', t: 'jinbi', n: 300000}] }, + { total: 80, prize: [{a: 'item', t: '9', n: 600},{a: 'item', t: '17', n: 1},{a: 'attr', t: 'jinbi', n: 300000}] }, + { total: 90, prize: [{a: 'item', t: '9', n: 700},{a: 'item', t: '17', n: 1},{a: 'attr', t: 'jinbi', n: 300000}] }, + { total: 110, prize: [{a: 'item', t: '9', n: 800},{a: 'item', t: '17', n: 1},{a: 'item', t: '10', n: 5},{a: 'attr', t: 'jinbi', n: 300000}] } + ], + //结算邮件 + email_prize: { + title: 'email_title_prize_slzd', + content: 'email_content_prize_slzd' + }, + //幸运奖邮件 + email_luck: { + title: 'email_title_luck_slzd', + content: 'email_content_luck_slzd' + }, + //参与奖邮件 + email_join: { + title: 'email_title_join_slzd', + content: 'email_content_join_slzd' + } +} \ No newline at end of file diff --git a/src/json/swskillcom.json b/src/json/swskillcom.json new file mode 100644 index 0000000..9b72262 --- /dev/null +++ b/src/json/swskillcom.json @@ -0,0 +1,107 @@ +{ + "sp0400300": { + "id": "sp0400300", + "name": "sw_intr_001", + "intr": "击中目标后,10%几率使目标在1回合内无法通过任何方式恢复生命" + }, + "sp0401300": { + "id": "sp0401300", + "name": "sw_intr_002", + "intr": "行动时,20%几率恢复我方生命值最低队友10%的最大生命值" + }, + "sp0402300": { + "id": "sp0402300", + "name": "sw_intr_003", + "intr": "行动时额外恢复自身5%的最大生命值" + }, + "sp0403300": { + "id": "sp0403300", + "name": "sw_intr_004", + "intr": "行动时有15%几率恢复己方所有成员5%的最大生命值" + }, + "sp0404300": { + "id": "sp0404300", + "name": "sw_intr_005", + "intr": "行动时有20%概率使自身攻击、防御提高20%,持续1回合" + }, + "sp0405300": { + "id": "sp0405300", + "name": "sw_intr_006", + "intr": "行动时有20%概率提升己方2名队友20%的防御,持续1回合" + }, + "sp0406300": { + "id": "sp0406300", + "name": "sw_intr_007", + "intr": "行动时有20%的概率使我方全体攻击增加10%,持续1回合" + }, + "sp0407300": { + "id": "sp0407300", + "name": "sw_intr_008", + "intr": "行动时有15%的概率提高自身伤害20%,持续1回合" + }, + "sp0408300": { + "id": "sp0408300", + "name": "sw_intr_009", + "intr": "行动时有30%的概率提升自身攻击额外提升15%,持续1回合" + }, + "sp0409300": { + "id": "sp0409300", + "name": "sw_intr_010", + "intr": "击中目标会降低目标7%命中率,持续1回合" + }, + "sp0410300": { + "id": "sp0410300", + "name": "sw_intr_011", + "intr": "击中目标会降低目标7%攻击,持续1回合" + }, + "sp0411300": { + "id": "sp0411300", + "name": "sw_intr_012", + "intr": "击中目标会降低目标18%防御,持续1回合" + }, + "sp0412300": { + "id": "sp0412300", + "name": "sw_intr_013", + "intr": "攻击时有25%概率使自身防御提升25%,持续2回合" + }, + "sp0413300": { + "id": "sp0413300", + "name": "sw_intr_014", + "intr": "行动前100%概率使敌方全体气势值降低5%,持续1回合" + }, + "sp0414300": { + "id": "sp0414300", + "name": "sw_intr_015", + "intr": "行动前100%概率使我方全体气势值增加5%,持续1回合" + }, + "sp0415300": { + "id": "sp0415300", + "name": "sw_intr_016", + "intr": "攻击时有30%概率使目标伤害降低10%,持续2回合" + }, + "sp0416300": { + "id": "sp0416300", + "name": "sw_intr_017", + "intr": "攻击时有10%的概率使目标眩晕,持续1回合" + }, + "sp0417300": { + "id": "sp0417300", + "name": "sw_intr_018", + "intr": "攻击时有12%概率使目标中剧毒(每回合降低5%生命上限的生命),持续2回合" + }, + "sp0418300": { + "id": "sp0418300", + "name": "sw_intr_019", + "intr": "攻击时有12%概率使目标中毒(每回合降低8%当前生命),持续2回合" + }, + "sp0419300": { + "id": "sp0419300", + "name": "sw_intr_020", + "intr": "击中目标有50%概率会降低目标50%防御,持续2回合" + }, + "sp0420300": { + "id": "sp0420300", + "name": "sw_intr_021", + "intr": "免疫异常状态:免疫几率为8%" + } +} \ No newline at end of file diff --git a/src/json/tanxian.json b/src/json/tanxian.json new file mode 100644 index 0000000..1506617 --- /dev/null +++ b/src/json/tanxian.json @@ -0,0 +1,49940 @@ +{ + "1": { + "id": 1, + "chapter": 1, + "mapbg": "tx_map_df", + "needLv": 1, + "npcId": 20001, + "name": "1-1", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 27 + }, + { + "a": "attr", + "t": "nexp", + "n": 2.05 + } + ], + "dlz": [], + "passPrize": [ + 260001, + 270001, + 280001, + 280013, + 280014, + 104, + 106, + 107, + 115 + ], + "base": 7.01, + "round": [ + 10, + 15, + 20 + ], + "drop": [ + 210001, + 220001 + ], + "pos": [ + 200, + 141 + ], + "fightmap": "bg_fight_df" + }, + "2": { + "id": 2, + "chapter": 1, + "mapbg": "tx_map_df", + "needLv": 1, + "npcId": 20002, + "name": "1-2", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 27.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 3.01 + } + ], + "dlz": [], + "passPrize": [ + 260002, + 270002, + 280001, + 280015, + 280016, + 104, + 106, + 107, + 115 + ], + "base": 7.25, + "round": [ + 10, + 15, + 20 + ], + "drop": [ + 210002, + 220002 + ], + "pos": [ + 182, + 167 + ], + "fightmap": "bg_fight_df" + }, + "3": { + "id": 3, + "chapter": 1, + "mapbg": "tx_map_df", + "needLv": 1, + "npcId": 20003, + "name": "1-3", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 28.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 3.97 + } + ], + "dlz": [], + "passPrize": [ + 260003, + 270003, + 280001, + 104, + 105, + 106, + 107 + ], + "base": 7.49, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210003, + 220003 + ], + "pos": [ + 161, + 192 + ], + "fightmap": "bg_fight_df" + }, + "4": { + "id": 4, + "chapter": 1, + "mapbg": "tx_map_df", + "needLv": 1, + "npcId": 20004, + "name": "1-4", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 29.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 4.93 + } + ], + "dlz": [], + "passPrize": [ + 260004, + 270004, + 280001, + 104, + 105, + 106, + 107 + ], + "base": 7.73, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210004, + 220004 + ], + "pos": [ + 118, + 205 + ], + "fightmap": "bg_fight_df" + }, + "5": { + "id": 5, + "chapter": 1, + "mapbg": "tx_map_df", + "needLv": 1, + "npcId": 20005, + "name": "1-5", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 29.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 5.89 + } + ], + "dlz": [], + "passPrize": [ + 260005, + 270005, + 280001, + 104, + 105, + 106, + 107 + ], + "base": 7.96, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210005, + 220005 + ], + "pos": [ + 67, + 210 + ], + "fightmap": "bg_fight_df" + }, + "6": { + "id": 6, + "chapter": 1, + "mapbg": "tx_map_df", + "needLv": 1, + "npcId": 20006, + "name": "1-6", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 30.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 6.85 + } + ], + "dlz": [], + "passPrize": [ + 260006, + 270006, + 280001, + 104, + 105, + 106, + 107 + ], + "base": 8.2, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210006, + 220006 + ], + "pos": [ + 10, + 207 + ], + "fightmap": "bg_fight_df" + }, + "7": { + "id": 7, + "chapter": 1, + "mapbg": "tx_map_df", + "needLv": 1, + "npcId": 20007, + "name": "1-7", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 31.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 7.81 + } + ], + "dlz": [], + "passPrize": [ + 260007, + 270007, + 280001, + 104, + 105, + 106, + 107 + ], + "base": 8.44, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210007, + 220007 + ], + "pos": [ + -27, + 230 + ], + "fightmap": "bg_fight_df" + }, + "8": { + "id": 8, + "chapter": 1, + "mapbg": "tx_map_df", + "needLv": 1, + "npcId": 20008, + "name": "1-8", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 31.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 8.77 + } + ], + "dlz": [], + "passPrize": [ + 260008, + 270008, + 280001, + 104, + 105, + 106, + 107 + ], + "base": 8.68, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210008, + 220008 + ], + "pos": [ + -52, + 250 + ], + "fightmap": "bg_fight_df" + }, + "9": { + "id": 9, + "chapter": 1, + "mapbg": "tx_map_df", + "needLv": 1, + "npcId": 20009, + "name": "1-9", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 32.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 9.73 + } + ], + "dlz": [], + "passPrize": [ + 260009, + 270009, + 280001, + 104, + 105, + 106, + 107 + ], + "base": 8.92, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210009, + 220009 + ], + "pos": [ + -74, + 272 + ], + "fightmap": "bg_fight_df" + }, + "10": { + "id": 10, + "chapter": 1, + "mapbg": "tx_map_df", + "needLv": 1, + "npcId": 20010, + "name": "1-10", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 33.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 10.69 + } + ], + "dlz": [], + "passPrize": [ + 260010, + 270010, + 280001, + 104, + 105, + 106, + 107 + ], + "base": 9.15, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210010, + 220010 + ], + "pos": [ + -90, + 295 + ], + "fightmap": "bg_fight_df" + }, + "11": { + "id": 11, + "chapter": 1, + "mapbg": "tx_map_df", + "needLv": 1, + "npcId": 20011, + "name": "1-11", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 34 + }, + { + "a": "attr", + "t": "nexp", + "n": 11.65 + } + ], + "dlz": [], + "passPrize": [ + 260011, + 270011, + 280001, + 104, + 105, + 106, + 107 + ], + "base": 9.39, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210011, + 220011, + 230001, + 240001 + ], + "pos": [ + -109, + 322 + ], + "fightmap": "bg_fight_df" + }, + "12": { + "id": 12, + "chapter": 1, + "mapbg": "tx_map_df", + "needLv": 1, + "npcId": 20012, + "name": "1-12", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 34.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 12.61 + } + ], + "dlz": [], + "passPrize": [ + 260012, + 270012, + 280001, + 104, + 105, + 106, + 107 + ], + "base": 9.63, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210012, + 220012, + 230001, + 240001 + ], + "pos": [ + -119, + 357 + ], + "fightmap": "bg_fight_df" + }, + "13": { + "id": 13, + "chapter": 1, + "mapbg": "tx_map_df", + "needLv": 1, + "npcId": 20013, + "name": "1-13", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 35.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 14.07 + } + ], + "dlz": [], + "passPrize": [ + 260013, + 270013, + 280001, + 104, + 105, + 106, + 107 + ], + "base": 9.88, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210013, + 220013, + 230001, + 240001 + ], + "pos": [ + -115, + 394 + ], + "fightmap": "bg_fight_df" + }, + "14": { + "id": 14, + "chapter": 1, + "mapbg": "tx_map_df", + "needLv": 1, + "npcId": 20014, + "name": "1-14", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 36.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 15.53 + } + ], + "dlz": [], + "passPrize": [ + 260014, + 270014, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 10.12, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210014, + 220014, + 230001, + 240001 + ], + "pos": [ + -94, + 432 + ], + "fightmap": "bg_fight_df" + }, + "15": { + "id": 15, + "chapter": 1, + "mapbg": "tx_map_df", + "needLv": 1, + "npcId": 20015, + "name": "1-15", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 36.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 16.99 + } + ], + "dlz": [], + "passPrize": [ + 260015, + 270015, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 10.36, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210015, + 220015, + 230001, + 240001 + ], + "pos": [ + -57, + 463 + ], + "fightmap": "bg_fight_df" + }, + "16": { + "id": 16, + "chapter": 1, + "mapbg": "tx_map_df", + "needLv": 1, + "npcId": 20016, + "name": "1-16", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 37.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 18.45 + } + ], + "dlz": [], + "passPrize": [ + 260016, + 270016, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 10.6, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210016, + 220016, + 230001, + 240001 + ], + "pos": [ + -7, + 467 + ], + "fightmap": "bg_fight_df" + }, + "17": { + "id": 17, + "chapter": 1, + "mapbg": "tx_map_df", + "needLv": 1, + "npcId": 20017, + "name": "1-17", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 38.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 19.91 + } + ], + "dlz": [], + "passPrize": [ + 260017, + 270017, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 10.83, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210017, + 220017, + 230001, + 240001 + ], + "pos": [ + 39, + 446 + ], + "fightmap": "bg_fight_df" + }, + "18": { + "id": 18, + "chapter": 1, + "mapbg": "tx_map_df", + "needLv": 1, + "npcId": 20018, + "name": "1-18", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 38.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 21.37 + } + ], + "dlz": [], + "passPrize": [ + 260018, + 270018, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 11.07, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210018, + 220018, + 230001, + 240001 + ], + "pos": [ + 78, + 425 + ], + "fightmap": "bg_fight_df" + }, + "19": { + "id": 19, + "chapter": 1, + "mapbg": "tx_map_df", + "needLv": 1, + "npcId": 20019, + "name": "1-19", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 39.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 22.83 + } + ], + "dlz": [], + "passPrize": [ + 260019, + 270019, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 11.31, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210019, + 220019, + 230001, + 240001 + ], + "pos": [ + 129, + 416 + ], + "fightmap": "bg_fight_df" + }, + "20": { + "id": 20, + "chapter": 1, + "mapbg": "tx_map_df", + "needLv": 1, + "npcId": 20020, + "name": "1-20", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 40.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 24.29 + } + ], + "dlz": [], + "passPrize": [ + 260020, + 270020, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 11.55, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210020, + 220020, + 230001, + 240001 + ], + "pos": [ + 159, + 441 + ], + "fightmap": "bg_fight_df" + }, + "21": { + "id": 21, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20021, + "name": "2-1", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 41 + }, + { + "a": "attr", + "t": "nexp", + "n": 26.75 + } + ], + "dlz": [], + "passPrize": [ + 260021, + 270021, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 12.99, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210021, + 220021, + 230001, + 240001, + 250001 + ], + "pos": [ + 69, + 120 + ], + "fightmap": "bg_fight1_hxc" + }, + "22": { + "id": 22, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20022, + "name": "2-2", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 41.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 29.21 + } + ], + "dlz": [], + "passPrize": [ + 260022, + 270022, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 13.26, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210022, + 220022, + 230001, + 240001, + 250001 + ], + "pos": [ + 50, + 149 + ], + "fightmap": "bg_fight1_hxc" + }, + "23": { + "id": 23, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20023, + "name": "2-3", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 42.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 31.67 + } + ], + "dlz": [], + "passPrize": [ + 260023, + 270023, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 13.52, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210023, + 220023, + 230001, + 240001, + 250001 + ], + "pos": [ + 24, + 177 + ], + "fightmap": "bg_fight1_hxc" + }, + "24": { + "id": 24, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20024, + "name": "2-4", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 43.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 34.13 + } + ], + "dlz": [], + "passPrize": [ + 260024, + 270024, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 13.8, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210024, + 220024, + 230001, + 240001, + 250001 + ], + "pos": [ + -17, + 197 + ], + "fightmap": "bg_fight1_hxc" + }, + "25": { + "id": 25, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20025, + "name": "2-5", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 43.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 36.59 + } + ], + "dlz": [], + "passPrize": [ + 260025, + 270025, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 14.07, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210025, + 220025, + 230001, + 240001, + 250001 + ], + "pos": [ + -60, + 210 + ], + "fightmap": "bg_fight1_hxc" + }, + "26": { + "id": 26, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20026, + "name": "2-6", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 44.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 39.05 + } + ], + "dlz": [], + "passPrize": [ + 260026, + 270026, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 14.33, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210026, + 220026, + 230001, + 240001, + 250001 + ], + "pos": [ + -106, + 225 + ], + "fightmap": "bg_fight1_hxc" + }, + "27": { + "id": 27, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20027, + "name": "2-7", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 45.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 41.51 + } + ], + "dlz": [], + "passPrize": [ + 260027, + 270027, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 14.6, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210027, + 220027, + 230001, + 240001, + 250001 + ], + "pos": [ + -120, + 251 + ], + "fightmap": "bg_fight1_hxc" + }, + "28": { + "id": 28, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20028, + "name": "2-8", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 45.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 43.97 + } + ], + "dlz": [], + "passPrize": [ + 260028, + 270028, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 108 + ], + "base": 14.87, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210028, + 220028, + 230001, + 240001, + 250001 + ], + "pos": [ + -108, + 280 + ], + "fightmap": "bg_fight1_hxc" + }, + "29": { + "id": 29, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20029, + "name": "2-9", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 46.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 46.43 + } + ], + "dlz": [], + "passPrize": [ + 260029, + 270029, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 15.13, + "round": [ + 10, + 30, + 60 + ], + "drop": [ + 210029, + 220029, + 230001, + 240001, + 250001 + ], + "pos": [ + -55, + 297 + ], + "fightmap": "bg_fight1_hxc" + }, + "30": { + "id": 30, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20030, + "name": "2-10", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 47.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 48.89 + } + ], + "dlz": [], + "passPrize": [ + 260030, + 270030, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 19.5, + "round": [ + 30, + 60, + 120 + ], + "drop": [ + 210030, + 220030, + 230001, + 240001, + 250002 + ], + "pos": [ + 4, + 285 + ], + "fightmap": "bg_fight1_hxc" + }, + "31": { + "id": 31, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20031, + "name": "2-11", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 48 + }, + { + "a": "attr", + "t": "nexp", + "n": 51.35 + } + ], + "dlz": [], + "passPrize": [ + 260031, + 270031, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 19.78, + "round": [ + 30, + 60, + 120 + ], + "drop": [ + 210031, + 220031, + 230001, + 240001, + 250002 + ], + "pos": [ + 61, + 275 + ], + "fightmap": "bg_fight1_hxc" + }, + "32": { + "id": 32, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20032, + "name": "2-12", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 48.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 53.81 + } + ], + "dlz": [], + "passPrize": [ + 260032, + 270032, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 20.06, + "round": [ + 30, + 60, + 120 + ], + "drop": [ + 210032, + 220032, + 230001, + 240001, + 250002 + ], + "pos": [ + 106, + 299 + ], + "fightmap": "bg_fight1_hxc" + }, + "33": { + "id": 33, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20033, + "name": "2-13", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 49.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 56.27 + } + ], + "dlz": [], + "passPrize": [ + 260033, + 270033, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 20.34, + "round": [ + 30, + 60, + 120 + ], + "drop": [ + 210033, + 220033, + 230001, + 240001, + 250002 + ], + "pos": [ + 128, + 342 + ], + "fightmap": "bg_fight1_hxc" + }, + "34": { + "id": 34, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20034, + "name": "2-14", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 50.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 58.73 + } + ], + "dlz": [], + "passPrize": [ + 260034, + 270034, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 20.62, + "round": [ + 30, + 60, + 120 + ], + "drop": [ + 210034, + 220034, + 230001, + 240001, + 250002 + ], + "pos": [ + 133, + 385 + ], + "fightmap": "bg_fight1_hxc" + }, + "35": { + "id": 35, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20035, + "name": "2-15", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 50.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 60.91 + } + ], + "dlz": [], + "passPrize": [ + 260035, + 270035, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 20.9, + "round": [ + 30, + 60, + 120 + ], + "drop": [ + 210035, + 220035, + 230001, + 240001, + 250002 + ], + "pos": [ + 123, + 423 + ], + "fightmap": "bg_fight1_hxc" + }, + "36": { + "id": 36, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20036, + "name": "2-16", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 51.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 63.23 + } + ], + "dlz": [], + "passPrize": [ + 260036, + 270036, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 21.18, + "round": [ + 45, + 120, + 180 + ], + "drop": [ + 210036, + 220036, + 230001, + 240001, + 250003 + ], + "pos": [ + 92, + 455 + ], + "fightmap": "bg_fight1_hxc" + }, + "37": { + "id": 37, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20037, + "name": "2-17", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 52.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 63.94 + } + ], + "dlz": [], + "passPrize": [ + 260037, + 270037, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 21.46, + "round": [ + 45, + 120, + 180 + ], + "drop": [ + 210037, + 220037, + 230001, + 240001, + 250003 + ], + "pos": [ + 32, + 447 + ], + "fightmap": "bg_fight1_hxc" + }, + "38": { + "id": 38, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20038, + "name": "2-18", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 52.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 64.67 + } + ], + "dlz": [], + "passPrize": [ + 260038, + 270038, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 21.74, + "round": [ + 45, + 120, + 180 + ], + "drop": [ + 210038, + 220038, + 230001, + 240001, + 250003 + ], + "pos": [ + -27, + 436 + ], + "fightmap": "bg_fight1_hxc" + }, + "39": { + "id": 39, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20039, + "name": "2-19", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 53.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 65.53 + } + ], + "dlz": [], + "passPrize": [ + 260039, + 270039, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 22.02, + "round": [ + 45, + 120, + 180 + ], + "drop": [ + 210039, + 220039, + 230001, + 240001, + 250003 + ], + "pos": [ + -89, + 430 + ], + "fightmap": "bg_fight1_hxc" + }, + "40": { + "id": 40, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20040, + "name": "2-20", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 54.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 67.84 + } + ], + "dlz": [], + "passPrize": [ + 260040, + 270040, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 22.3, + "round": [ + 45, + 120, + 180 + ], + "drop": [ + 210040, + 220040, + 230001, + 240001, + 250003 + ], + "pos": [ + -91, + 467 + ], + "fightmap": "bg_fight1_hxc" + }, + "41": { + "id": 41, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20041, + "name": "2-21", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 55 + }, + { + "a": "attr", + "t": "nexp", + "n": 70.16 + } + ], + "dlz": [], + "passPrize": [ + 260041, + 270041, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 22.58, + "round": [ + 45, + 120, + 180 + ], + "drop": [ + 210041, + 220041, + 230001, + 240001, + 250003 + ], + "pos": [ + 69, + 120 + ], + "fightmap": "bg_fight1_hxc" + }, + "42": { + "id": 42, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20042, + "name": "2-22", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 55.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 72.47 + } + ], + "dlz": [], + "passPrize": [ + 260042, + 270042, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 22.86, + "round": [ + 45, + 120, + 180 + ], + "drop": [ + 210042, + 220042, + 230001, + 240001, + 250003 + ], + "pos": [ + 50, + 149 + ], + "fightmap": "bg_fight1_hxc" + }, + "43": { + "id": 43, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20043, + "name": "2-23", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 56.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 74.77 + } + ], + "dlz": [], + "passPrize": [ + 260043, + 270043, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 23.14, + "round": [ + 45, + 120, + 180 + ], + "drop": [ + 210043, + 220043, + 230001, + 240001, + 250003 + ], + "pos": [ + 24, + 177 + ], + "fightmap": "bg_fight1_hxc" + }, + "44": { + "id": 44, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20044, + "name": "2-24", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 57.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 77.09 + } + ], + "dlz": [], + "passPrize": [ + 260044, + 270044, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 23.42, + "round": [ + 45, + 120, + 180 + ], + "drop": [ + 210044, + 220044, + 230001, + 240001, + 250003 + ], + "pos": [ + -17, + 197 + ], + "fightmap": "bg_fight1_hxc" + }, + "45": { + "id": 45, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20045, + "name": "2-25", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 57.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 79.4 + } + ], + "dlz": [], + "passPrize": [ + 260045, + 270045, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 23.7, + "round": [ + 45, + 120, + 180 + ], + "drop": [ + 210045, + 220045, + 230001, + 240001, + 250003 + ], + "pos": [ + -60, + 210 + ], + "fightmap": "bg_fight1_hxc" + }, + "46": { + "id": 46, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20046, + "name": "2-26", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 58.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 81.71 + } + ], + "dlz": [], + "passPrize": [ + 260046, + 270046, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 39.8, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210046, + 220046, + 230001, + 240001, + 250003 + ], + "pos": [ + -106, + 225 + ], + "fightmap": "bg_fight1_hxc" + }, + "47": { + "id": 47, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20047, + "name": "2-27", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 59.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 84.03 + } + ], + "dlz": [], + "passPrize": [ + 260047, + 270047, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 40.08, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210047, + 220047, + 230001, + 240001, + 250003 + ], + "pos": [ + -120, + 251 + ], + "fightmap": "bg_fight1_hxc" + }, + "48": { + "id": 48, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20048, + "name": "2-28", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 59.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 86.33 + } + ], + "dlz": [], + "passPrize": [ + 260048, + 270048, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 107 + ], + "base": 40.36, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210048, + 220048, + 230001, + 240001, + 250003 + ], + "pos": [ + -108, + 280 + ], + "fightmap": "bg_fight1_hxc" + }, + "49": { + "id": 49, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20049, + "name": "2-29", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 60.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 88.64 + } + ], + "dlz": [], + "passPrize": [ + 260049, + 270049, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 40.64, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210049, + 220049, + 230001, + 240001, + 250003 + ], + "pos": [ + -55, + 297 + ], + "fightmap": "bg_fight1_hxc" + }, + "50": { + "id": 50, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20050, + "name": "2-30", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 61.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 90.96 + } + ], + "dlz": [], + "passPrize": [ + 260050, + 270050, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 40.92, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210050, + 220050, + 230001, + 240001, + 250003 + ], + "pos": [ + 4, + 285 + ], + "fightmap": "bg_fight1_hxc" + }, + "51": { + "id": 51, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20051, + "name": "2-31", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 62 + }, + { + "a": "attr", + "t": "nexp", + "n": 93.27 + } + ], + "dlz": [], + "passPrize": [ + 260051, + 270051, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 41.2, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210051, + 220051, + 230001, + 240001, + 250003 + ], + "pos": [ + 61, + 275 + ], + "fightmap": "bg_fight1_hxc" + }, + "52": { + "id": 52, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20052, + "name": "2-32", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 62.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 95.57 + } + ], + "dlz": [], + "passPrize": [ + 260052, + 270052, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 41.48, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210052, + 220052, + 230001, + 240001, + 250003 + ], + "pos": [ + 106, + 299 + ], + "fightmap": "bg_fight1_hxc" + }, + "53": { + "id": 53, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20053, + "name": "2-33", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 63.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 97.89 + } + ], + "dlz": [], + "passPrize": [ + 260053, + 270053, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 41.76, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210053, + 220053, + 230001, + 240001, + 250003 + ], + "pos": [ + 128, + 342 + ], + "fightmap": "bg_fight1_hxc" + }, + "54": { + "id": 54, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20054, + "name": "2-34", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 64.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 100.2 + } + ], + "dlz": [], + "passPrize": [ + 260054, + 270054, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 42.04, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210054, + 220054, + 230001, + 240001, + 250003 + ], + "pos": [ + 133, + 385 + ], + "fightmap": "bg_fight1_hxc" + }, + "55": { + "id": 55, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20055, + "name": "2-35", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 64.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 102.51 + } + ], + "dlz": [], + "passPrize": [ + 260055, + 270055, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 42.32, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210055, + 220055, + 230001, + 240001, + 250003 + ], + "pos": [ + 123, + 423 + ], + "fightmap": "bg_fight1_hxc" + }, + "56": { + "id": 56, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20056, + "name": "2-36", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 65.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 104.83 + } + ], + "dlz": [], + "passPrize": [ + 260056, + 270056, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 42.6, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210056, + 220056, + 230001, + 240001, + 250003 + ], + "pos": [ + 92, + 455 + ], + "fightmap": "bg_fight1_hxc" + }, + "57": { + "id": 57, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20057, + "name": "2-37", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 66.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 107.13 + } + ], + "dlz": [], + "passPrize": [ + 260057, + 270057, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 42.88, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210057, + 220057, + 230001, + 240001, + 250003 + ], + "pos": [ + 32, + 447 + ], + "fightmap": "bg_fight1_hxc" + }, + "58": { + "id": 58, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20058, + "name": "2-38", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 66.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 109.44 + } + ], + "dlz": [], + "passPrize": [ + 260058, + 270058, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 43.16, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210058, + 220058, + 230001, + 240001, + 250003 + ], + "pos": [ + -27, + 436 + ], + "fightmap": "bg_fight1_hxc" + }, + "59": { + "id": 59, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20059, + "name": "2-39", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 67.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 111.76 + } + ], + "dlz": [], + "passPrize": [ + 260059, + 270059, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 43.44, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210059, + 220059, + 230001, + 240001, + 250003 + ], + "pos": [ + -89, + 430 + ], + "fightmap": "bg_fight1_hxc" + }, + "60": { + "id": 60, + "chapter": 2, + "mapbg": "tx_map_hxc", + "needLv": 1, + "npcId": 20060, + "name": "2-40", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 68.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 113.77 + } + ], + "dlz": [], + "passPrize": [ + 260060, + 270060, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 43.72, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210060, + 220060, + 230001, + 240001, + 250003 + ], + "pos": [ + -91, + 467 + ], + "fightmap": "bg_fight1_hxc" + }, + "61": { + "id": 61, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20061, + "name": "3-1", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 69 + }, + { + "a": "attr", + "t": "nexp", + "n": 115.23 + } + ], + "dlz": [], + "passPrize": [ + 260061, + 270061, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 44, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210061, + 220061, + 230001, + 240001, + 250003 + ], + "pos": [ + -71, + 89 + ], + "fightmap": "bg_fight6_shh" + }, + "62": { + "id": 62, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20062, + "name": "3-2", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 69.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 116.67 + } + ], + "dlz": [], + "passPrize": [ + 260062, + 270062, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 44.28, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210062, + 220062, + 230001, + 240001, + 250003 + ], + "pos": [ + -119, + 111 + ], + "fightmap": "bg_fight6_shh" + }, + "63": { + "id": 63, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20063, + "name": "3-3", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 70.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 118.11 + } + ], + "dlz": [], + "passPrize": [ + 260063, + 270063, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 44.56, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210063, + 220063, + 230001, + 240001, + 250003 + ], + "pos": [ + -107, + 147 + ], + "fightmap": "bg_fight6_shh" + }, + "64": { + "id": 64, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20064, + "name": "3-4", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 71.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 119.56 + } + ], + "dlz": [], + "passPrize": [ + 260064, + 270064, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 44.84, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210064, + 220064, + 230001, + 240001, + 250003 + ], + "pos": [ + -89, + 183 + ], + "fightmap": "bg_fight6_shh" + }, + "65": { + "id": 65, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20065, + "name": "3-5", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 71.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 121 + } + ], + "dlz": [], + "passPrize": [ + 260065, + 270065, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 45.12, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210065, + 220065, + 230001, + 240001, + 250003 + ], + "pos": [ + -42, + 208 + ], + "fightmap": "bg_fight6_shh" + }, + "66": { + "id": 66, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20066, + "name": "3-6", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 72.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 122.44 + } + ], + "dlz": [], + "passPrize": [ + 260066, + 270066, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 45.4, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210066, + 220066, + 230001, + 240001, + 250003 + ], + "pos": [ + 5, + 226 + ], + "fightmap": "bg_fight6_shh" + }, + "67": { + "id": 67, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20067, + "name": "3-7", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 73.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 123.89 + } + ], + "dlz": [], + "passPrize": [ + 260067, + 270067, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 45.68, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210067, + 220067, + 230001, + 240001, + 250003 + ], + "pos": [ + 58, + 244 + ], + "fightmap": "bg_fight6_shh" + }, + "68": { + "id": 68, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20068, + "name": "3-8", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 73.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 125.33 + } + ], + "dlz": [], + "passPrize": [ + 260068, + 270068, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 45.96, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210068, + 220068, + 230001, + 240001, + 250003 + ], + "pos": [ + 113, + 261 + ], + "fightmap": "bg_fight6_shh" + }, + "69": { + "id": 69, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20069, + "name": "3-9", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 74.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 126.77 + } + ], + "dlz": [], + "passPrize": [ + 260069, + 270069, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 46.24, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210069, + 220069, + 230001, + 240001, + 250003 + ], + "pos": [ + 155, + 282 + ], + "fightmap": "bg_fight6_shh" + }, + "70": { + "id": 70, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20070, + "name": "3-10", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 75.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 128.23 + } + ], + "dlz": [], + "passPrize": [ + 260070, + 270070, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 46.52, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210070, + 220070, + 230001, + 240001, + 250003 + ], + "pos": [ + 178, + 310 + ], + "fightmap": "bg_fight6_shh" + }, + "71": { + "id": 71, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20071, + "name": "3-11", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 76 + }, + { + "a": "attr", + "t": "nexp", + "n": 129.67 + } + ], + "dlz": [], + "passPrize": [ + 260071, + 270071, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 46.8, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210071, + 220071, + 230001, + 240001, + 250003 + ], + "pos": [ + 197, + 340 + ], + "fightmap": "bg_fight6_shh" + }, + "72": { + "id": 72, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20072, + "name": "3-12", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 76.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 131.11 + } + ], + "dlz": [], + "passPrize": [ + 260072, + 270072, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 47.08, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210072, + 220072, + 230001, + 240001, + 250003 + ], + "pos": [ + 214, + 376 + ], + "fightmap": "bg_fight6_shh" + }, + "73": { + "id": 73, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20073, + "name": "3-13", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 77.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 132.56 + } + ], + "dlz": [], + "passPrize": [ + 260073, + 270073, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 47.36, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210073, + 220073, + 230001, + 240001, + 250003 + ], + "pos": [ + 202, + 411 + ], + "fightmap": "bg_fight6_shh" + }, + "74": { + "id": 74, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20074, + "name": "3-14", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 78.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 134 + } + ], + "dlz": [], + "passPrize": [ + 260074, + 270074, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 47.64, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210074, + 220074, + 230001, + 240001, + 250003 + ], + "pos": [ + 162, + 436 + ], + "fightmap": "bg_fight6_shh" + }, + "75": { + "id": 75, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20075, + "name": "3-15", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 78.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 135.44 + } + ], + "dlz": [], + "passPrize": [ + 260075, + 270075, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 47.92, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210075, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 105, + 438 + ], + "fightmap": "bg_fight6_shh" + }, + "76": { + "id": 76, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20076, + "name": "3-16", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 79.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 136.89 + } + ], + "dlz": [], + "passPrize": [ + 260076, + 270076, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 48.2, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210076, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 35, + 434 + ], + "fightmap": "bg_fight6_shh" + }, + "77": { + "id": 77, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20077, + "name": "3-17", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 80.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 138.33 + } + ], + "dlz": [], + "passPrize": [ + 260077, + 270077, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 48.48, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210077, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -25, + 425 + ], + "fightmap": "bg_fight6_shh" + }, + "78": { + "id": 78, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20078, + "name": "3-18", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 80.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 139.77 + } + ], + "dlz": [], + "passPrize": [ + 260078, + 270078, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 48.76, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210078, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -87, + 406 + ], + "fightmap": "bg_fight6_shh" + }, + "79": { + "id": 79, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20079, + "name": "3-19", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 81.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 141.22 + } + ], + "dlz": [], + "passPrize": [ + 260079, + 270079, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 49.04, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210079, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -142, + 405 + ], + "fightmap": "bg_fight6_shh" + }, + "80": { + "id": 80, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20080, + "name": "3-20", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 82.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 142.66 + } + ], + "dlz": [], + "passPrize": [ + 260080, + 270080, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 49.32, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -169, + 434 + ], + "fightmap": "bg_fight6_shh" + }, + "81": { + "id": 81, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20081, + "name": "3-21", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 83 + }, + { + "a": "attr", + "t": "nexp", + "n": 144.1 + } + ], + "dlz": [], + "passPrize": [ + 260081, + 270081, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 49.6, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210081, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -71, + 89 + ], + "fightmap": "bg_fight6_shh" + }, + "82": { + "id": 82, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20082, + "name": "3-22", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 83.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 145.54 + } + ], + "dlz": [], + "passPrize": [ + 260082, + 270082, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 49.88, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210082, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -119, + 111 + ], + "fightmap": "bg_fight6_shh" + }, + "83": { + "id": 83, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20083, + "name": "3-23", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 84.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 146.99 + } + ], + "dlz": [], + "passPrize": [ + 260083, + 270083, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 50.16, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210083, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -107, + 147 + ], + "fightmap": "bg_fight6_shh" + }, + "84": { + "id": 84, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20084, + "name": "3-24", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 85.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 148.43 + } + ], + "dlz": [], + "passPrize": [ + 260084, + 270084, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 50.44, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210084, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -89, + 183 + ], + "fightmap": "bg_fight6_shh" + }, + "85": { + "id": 85, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20085, + "name": "3-25", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 85.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 149.87 + } + ], + "dlz": [], + "passPrize": [ + 260085, + 270085, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 50.72, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210085, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -42, + 208 + ], + "fightmap": "bg_fight6_shh" + }, + "86": { + "id": 86, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20086, + "name": "3-26", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 86.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 151.32 + } + ], + "dlz": [], + "passPrize": [ + 260086, + 270086, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 51, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210086, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 5, + 226 + ], + "fightmap": "bg_fight6_shh" + }, + "87": { + "id": 87, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20087, + "name": "3-27", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 87.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 152.76 + } + ], + "dlz": [], + "passPrize": [ + 260087, + 270087, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 51.28, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210087, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 58, + 244 + ], + "fightmap": "bg_fight6_shh" + }, + "88": { + "id": 88, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20088, + "name": "3-28", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 87.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 154.2 + } + ], + "dlz": [], + "passPrize": [ + 260088, + 270088, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 51.56, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210088, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 113, + 261 + ], + "fightmap": "bg_fight6_shh" + }, + "89": { + "id": 89, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20089, + "name": "3-29", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 88.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 155.65 + } + ], + "dlz": [], + "passPrize": [ + 260089, + 270089, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 51.84, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210089, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 155, + 282 + ], + "fightmap": "bg_fight6_shh" + }, + "90": { + "id": 90, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20090, + "name": "3-30", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 89.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 157.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270090, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 52.12, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210090, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 178, + 310 + ], + "fightmap": "bg_fight6_shh" + }, + "91": { + "id": 91, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20091, + "name": "3-31", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 90 + }, + { + "a": "attr", + "t": "nexp", + "n": 158.53 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270091, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 52.4, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210091, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 197, + 340 + ], + "fightmap": "bg_fight6_shh" + }, + "92": { + "id": 92, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20092, + "name": "3-32", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 90.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 159.97 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270092, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 52.68, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210092, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 214, + 376 + ], + "fightmap": "bg_fight6_shh" + }, + "93": { + "id": 93, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20093, + "name": "3-33", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 91.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 161.42 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270093, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 52.96, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210093, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 202, + 411 + ], + "fightmap": "bg_fight6_shh" + }, + "94": { + "id": 94, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20094, + "name": "3-34", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 92.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 162.86 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270094, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 53.24, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210094, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 162, + 436 + ], + "fightmap": "bg_fight6_shh" + }, + "95": { + "id": 95, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20095, + "name": "3-35", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 92.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 164.3 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270095, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 53.52, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210095, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 105, + 438 + ], + "fightmap": "bg_fight6_shh" + }, + "96": { + "id": 96, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20096, + "name": "3-36", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 93.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 165.75 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270096, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 53.8, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210096, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 35, + 434 + ], + "fightmap": "bg_fight6_shh" + }, + "97": { + "id": 97, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20097, + "name": "3-37", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 94.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 167.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270097, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 54.08, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210097, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -25, + 425 + ], + "fightmap": "bg_fight6_shh" + }, + "98": { + "id": 98, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20098, + "name": "3-38", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 94.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 168.63 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270098, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 54.36, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210098, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -87, + 406 + ], + "fightmap": "bg_fight6_shh" + }, + "99": { + "id": 99, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20099, + "name": "3-39", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 95.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 170.08 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270099, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 109 + ], + "base": 54.64, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210099, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -142, + 405 + ], + "fightmap": "bg_fight6_shh" + }, + "100": { + "id": 100, + "chapter": 3, + "mapbg": "tx_map_shh", + "needLv": 1, + "npcId": 20100, + "name": "3-40", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 96.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 171.52 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270100, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 110 + ], + "base": 54.92, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210100, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -169, + 434 + ], + "fightmap": "bg_fight6_shh" + }, + "101": { + "id": 101, + "chapter": 4, + "mapbg": "tx_map_kft", + "needLv": 1, + "npcId": 20101, + "name": "4-1", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 97 + }, + { + "a": "attr", + "t": "nexp", + "n": 172.96 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270101, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 110 + ], + "base": 55.2, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210101, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 112, + 137 + ], + "fightmap": "bg_fight_kft" + }, + "102": { + "id": 102, + "chapter": 4, + "mapbg": "tx_map_kft", + "needLv": 1, + "npcId": 20102, + "name": "4-2", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 97.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 174.4 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270102, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 110 + ], + "base": 55.48, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210102, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 159, + 155 + ], + "fightmap": "bg_fight_kft" + }, + "103": { + "id": 103, + "chapter": 4, + "mapbg": "tx_map_kft", + "needLv": 1, + "npcId": 20103, + "name": "4-3", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 98.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 175.85 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270103, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 110 + ], + "base": 55.76, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210103, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 180, + 181 + ], + "fightmap": "bg_fight_kft" + }, + "104": { + "id": 104, + "chapter": 4, + "mapbg": "tx_map_kft", + "needLv": 1, + "npcId": 20104, + "name": "4-4", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 99.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 177.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270104, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 110 + ], + "base": 56.04, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210104, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 172, + 210 + ], + "fightmap": "bg_fight_kft" + }, + "105": { + "id": 105, + "chapter": 4, + "mapbg": "tx_map_kft", + "needLv": 1, + "npcId": 20105, + "name": "4-5", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 99.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 177.94 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270105, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 110 + ], + "base": 56.18, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210105, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 142, + 232 + ], + "fightmap": "bg_fight_kft" + }, + "106": { + "id": 106, + "chapter": 4, + "mapbg": "tx_map_kft", + "needLv": 1, + "npcId": 20106, + "name": "4-6", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 178.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270106, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 110 + ], + "base": 56.32, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210106, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 105, + 246 + ], + "fightmap": "bg_fight_kft" + }, + "107": { + "id": 107, + "chapter": 4, + "mapbg": "tx_map_kft", + "needLv": 1, + "npcId": 20107, + "name": "4-7", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 101.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 179.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270107, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 110 + ], + "base": 56.46, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210107, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 68, + 262 + ], + "fightmap": "bg_fight_kft" + }, + "108": { + "id": 108, + "chapter": 4, + "mapbg": "tx_map_kft", + "needLv": 1, + "npcId": 20108, + "name": "4-8", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 101.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 179.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270108, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 110 + ], + "base": 56.6, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210108, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 32, + 277 + ], + "fightmap": "bg_fight_kft" + }, + "109": { + "id": 109, + "chapter": 4, + "mapbg": "tx_map_kft", + "needLv": 1, + "npcId": 20109, + "name": "4-9", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 102.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 180.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270109, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 110 + ], + "base": 56.74, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210109, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -5, + 293 + ], + "fightmap": "bg_fight_kft" + }, + "110": { + "id": 110, + "chapter": 4, + "mapbg": "tx_map_kft", + "needLv": 1, + "npcId": 20110, + "name": "4-10", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 103.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 181.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270110, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 110 + ], + "base": 56.88, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210110, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -38, + 310 + ], + "fightmap": "bg_fight_kft" + }, + "111": { + "id": 111, + "chapter": 4, + "mapbg": "tx_map_kft", + "needLv": 1, + "npcId": 20111, + "name": "4-11", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 104 + }, + { + "a": "attr", + "t": "nexp", + "n": 181.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270111, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 110 + ], + "base": 57.02, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210111, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -72, + 328 + ], + "fightmap": "bg_fight_kft" + }, + "112": { + "id": 112, + "chapter": 4, + "mapbg": "tx_map_kft", + "needLv": 1, + "npcId": 20112, + "name": "4-12", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 104.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 182.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270112, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 110 + ], + "base": 57.16, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210112, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -101, + 343 + ], + "fightmap": "bg_fight_kft" + }, + "113": { + "id": 113, + "chapter": 4, + "mapbg": "tx_map_kft", + "needLv": 1, + "npcId": 20113, + "name": "4-13", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 105.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 183.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270113, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 110 + ], + "base": 57.3, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210113, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -130, + 363 + ], + "fightmap": "bg_fight_kft" + }, + "114": { + "id": 114, + "chapter": 4, + "mapbg": "tx_map_kft", + "needLv": 1, + "npcId": 20114, + "name": "4-14", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 106.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 183.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270114, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 110 + ], + "base": 57.44, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210114, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -152, + 387 + ], + "fightmap": "bg_fight_kft" + }, + "115": { + "id": 115, + "chapter": 4, + "mapbg": "tx_map_kft", + "needLv": 1, + "npcId": 20115, + "name": "4-15", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 106.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 184.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270115, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 110 + ], + "base": 57.58, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210115, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -160, + 414 + ], + "fightmap": "bg_fight_kft" + }, + "116": { + "id": 116, + "chapter": 4, + "mapbg": "tx_map_kft", + "needLv": 1, + "npcId": 20116, + "name": "4-16", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 107.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 185.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270116, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 110 + ], + "base": 57.72, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210116, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -148, + 442 + ], + "fightmap": "bg_fight_kft" + }, + "117": { + "id": 117, + "chapter": 4, + "mapbg": "tx_map_kft", + "needLv": 1, + "npcId": 20117, + "name": "4-17", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 108.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 185.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270117, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 110 + ], + "base": 57.86, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210117, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -120, + 463 + ], + "fightmap": "bg_fight_kft" + }, + "118": { + "id": 118, + "chapter": 4, + "mapbg": "tx_map_kft", + "needLv": 1, + "npcId": 20118, + "name": "4-18", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 108.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 186.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270118, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 110 + ], + "base": 58, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210118, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -83, + 482 + ], + "fightmap": "bg_fight_kft" + }, + "119": { + "id": 119, + "chapter": 4, + "mapbg": "tx_map_kft", + "needLv": 1, + "npcId": 20119, + "name": "4-19", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 109.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 187.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270119, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 110 + ], + "base": 58.14, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210119, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -46, + 497 + ], + "fightmap": "bg_fight_kft" + }, + "120": { + "id": 120, + "chapter": 4, + "mapbg": "tx_map_kft", + "needLv": 1, + "npcId": 20120, + "name": "4-20", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 110.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 187.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270120, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 111 + ], + "base": 58.28, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210120, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -5, + 508 + ], + "fightmap": "bg_fight_kft" + }, + "121": { + "id": 121, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20121, + "name": "4-21", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 111 + }, + { + "a": "attr", + "t": "nexp", + "n": 188.34 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270121, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 111 + ], + "base": 58.42, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210121, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 112, + 137 + ], + "fightmap": "bg_fight_kft" + }, + "122": { + "id": 122, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20122, + "name": "4-22", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 111.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 188.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270122, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 111 + ], + "base": 58.56, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210122, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 159, + 155 + ], + "fightmap": "bg_fight_kft" + }, + "123": { + "id": 123, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20123, + "name": "4-23", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 112.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 189.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270123, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 111 + ], + "base": 58.7, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210123, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 180, + 181 + ], + "fightmap": "bg_fight_kft" + }, + "124": { + "id": 124, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20124, + "name": "4-24", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 113.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 190.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270124, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 111 + ], + "base": 58.84, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210124, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 172, + 210 + ], + "fightmap": "bg_fight_kft" + }, + "125": { + "id": 125, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20125, + "name": "4-25", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 113.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 190.94 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270125, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 111 + ], + "base": 58.98, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210125, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 142, + 232 + ], + "fightmap": "bg_fight_kft" + }, + "126": { + "id": 126, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20126, + "name": "4-26", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 114.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 191.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270126, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 111 + ], + "base": 59.12, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210126, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 105, + 246 + ], + "fightmap": "bg_fight_kft" + }, + "127": { + "id": 127, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20127, + "name": "4-27", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 115.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 192.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270127, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 111 + ], + "base": 59.26, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210127, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 68, + 262 + ], + "fightmap": "bg_fight_kft" + }, + "128": { + "id": 128, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20128, + "name": "4-28", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 115.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 192.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270128, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 111 + ], + "base": 59.4, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210128, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 32, + 277 + ], + "fightmap": "bg_fight_kft" + }, + "129": { + "id": 129, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20129, + "name": "4-29", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 116.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 193.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270129, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 111 + ], + "base": 59.54, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210129, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -5, + 293 + ], + "fightmap": "bg_fight_kft" + }, + "130": { + "id": 130, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20130, + "name": "4-30", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 117.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 194.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270130, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 111 + ], + "base": 59.68, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210130, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -38, + 310 + ], + "fightmap": "bg_fight_kft" + }, + "131": { + "id": 131, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20131, + "name": "4-31", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 118 + }, + { + "a": "attr", + "t": "nexp", + "n": 194.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270131, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 111 + ], + "base": 59.82, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210131, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -72, + 328 + ], + "fightmap": "bg_fight_kft" + }, + "132": { + "id": 132, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20132, + "name": "4-32", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 118.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 195.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270132, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 111 + ], + "base": 59.96, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210132, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -101, + 343 + ], + "fightmap": "bg_fight_kft" + }, + "133": { + "id": 133, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20133, + "name": "4-33", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 119.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 196.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270133, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 111 + ], + "base": 60.1, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210133, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -130, + 363 + ], + "fightmap": "bg_fight_kft" + }, + "134": { + "id": 134, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20134, + "name": "4-34", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 120.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 196.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270134, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 111 + ], + "base": 60.24, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210134, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -152, + 387 + ], + "fightmap": "bg_fight_kft" + }, + "135": { + "id": 135, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20135, + "name": "4-35", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 120.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 197.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270135, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 111 + ], + "base": 60.38, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210135, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -160, + 414 + ], + "fightmap": "bg_fight_kft" + }, + "136": { + "id": 136, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20136, + "name": "4-36", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 121.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 198.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270136, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 111 + ], + "base": 60.52, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210136, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -148, + 442 + ], + "fightmap": "bg_fight_kft" + }, + "137": { + "id": 137, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20137, + "name": "4-37", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 122.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 198.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270137, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 111 + ], + "base": 60.66, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210137, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -120, + 463 + ], + "fightmap": "bg_fight_kft" + }, + "138": { + "id": 138, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20138, + "name": "4-38", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 122.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 199.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270138, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 111 + ], + "base": 60.8, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210138, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -83, + 482 + ], + "fightmap": "bg_fight_kft" + }, + "139": { + "id": 139, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20139, + "name": "4-39", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 123.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 200.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270139, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 111 + ], + "base": 60.94, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210139, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -46, + 497 + ], + "fightmap": "bg_fight_kft" + }, + "140": { + "id": 140, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20140, + "name": "4-40", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 124.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 200.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270140, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 61.08, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210140, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -5, + 508 + ], + "fightmap": "bg_fight_kft" + }, + "141": { + "id": 141, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20141, + "name": "4-41", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 125 + }, + { + "a": "attr", + "t": "nexp", + "n": 201.34 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270141, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 61.22, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210141, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 112, + 137 + ], + "fightmap": "bg_fight_kft" + }, + "142": { + "id": 142, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20142, + "name": "4-42", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 125.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 201.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270142, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 61.36, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210142, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 159, + 155 + ], + "fightmap": "bg_fight_kft" + }, + "143": { + "id": 143, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20143, + "name": "4-43", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 126.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 202.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270143, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 61.5, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210143, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 180, + 181 + ], + "fightmap": "bg_fight_kft" + }, + "144": { + "id": 144, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20144, + "name": "4-44", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 127.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 203.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270144, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 61.64, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210144, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 172, + 210 + ], + "fightmap": "bg_fight_kft" + }, + "145": { + "id": 145, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20145, + "name": "4-45", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 127.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 203.94 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270145, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 61.78, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210145, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 142, + 232 + ], + "fightmap": "bg_fight_kft" + }, + "146": { + "id": 146, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20146, + "name": "4-46", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 128.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 204.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270146, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 61.92, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210146, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 105, + 246 + ], + "fightmap": "bg_fight_kft" + }, + "147": { + "id": 147, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20147, + "name": "4-47", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 129.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 205.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270147, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 62.06, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210147, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 68, + 262 + ], + "fightmap": "bg_fight_kft" + }, + "148": { + "id": 148, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20148, + "name": "4-48", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 129.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 205.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270148, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 62.2, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210148, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 32, + 277 + ], + "fightmap": "bg_fight_kft" + }, + "149": { + "id": 149, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20149, + "name": "4-49", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 130.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 206.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270149, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 62.34, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210149, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -5, + 293 + ], + "fightmap": "bg_fight_kft" + }, + "150": { + "id": 150, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20150, + "name": "4-50", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 131.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 207.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270150, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 62.48, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210150, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -38, + 310 + ], + "fightmap": "bg_fight_kft" + }, + "151": { + "id": 151, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20151, + "name": "4-51", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 132 + }, + { + "a": "attr", + "t": "nexp", + "n": 207.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270151, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 62.62, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210151, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -72, + 328 + ], + "fightmap": "bg_fight_kft" + }, + "152": { + "id": 152, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20152, + "name": "4-52", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 132.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 208.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270152, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 62.76, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210152, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -101, + 343 + ], + "fightmap": "bg_fight_kft" + }, + "153": { + "id": 153, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20153, + "name": "4-53", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 133.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 209.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270153, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 62.9, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210153, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -130, + 363 + ], + "fightmap": "bg_fight_kft" + }, + "154": { + "id": 154, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20154, + "name": "4-54", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 134.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 209.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270154, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 63.04, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210154, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -152, + 387 + ], + "fightmap": "bg_fight_kft" + }, + "155": { + "id": 155, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20155, + "name": "4-55", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 134.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 210.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270155, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 63.18, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210155, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -160, + 414 + ], + "fightmap": "bg_fight_kft" + }, + "156": { + "id": 156, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20156, + "name": "4-56", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 135.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 211.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270156, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 63.32, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210156, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -148, + 442 + ], + "fightmap": "bg_fight_kft" + }, + "157": { + "id": 157, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20157, + "name": "4-57", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 136.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 211.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270157, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 63.46, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210157, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -120, + 463 + ], + "fightmap": "bg_fight_kft" + }, + "158": { + "id": 158, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20158, + "name": "4-58", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 136.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 212.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270158, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 63.6, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210158, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -83, + 482 + ], + "fightmap": "bg_fight_kft" + }, + "159": { + "id": 159, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20159, + "name": "4-59", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 137.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 213.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270159, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 63.74, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210159, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -46, + 497 + ], + "fightmap": "bg_fight_kft" + }, + "160": { + "id": 160, + "chapter": 4, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20160, + "name": "4-60", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 138.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 213.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270160, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 63.88, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210160, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -5, + 508 + ], + "fightmap": "bg_fight_kft" + }, + "161": { + "id": 161, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20161, + "name": "5-1", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 139 + }, + { + "a": "attr", + "t": "nexp", + "n": 214.34 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270161, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 64.02, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210161, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 23, + 109 + ], + "fightmap": "bg_fight_sh" + }, + "162": { + "id": 162, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20162, + "name": "5-2", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 139.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 214.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270162, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 64.16, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210162, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -6, + 131 + ], + "fightmap": "bg_fight_sh" + }, + "163": { + "id": 163, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20163, + "name": "5-3", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 140.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 215.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270163, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 64.3, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210163, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -37, + 156 + ], + "fightmap": "bg_fight_sh" + }, + "164": { + "id": 164, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20164, + "name": "5-4", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 141.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 216.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270164, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 64.44, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210164, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -65, + 178 + ], + "fightmap": "bg_fight_sh" + }, + "165": { + "id": 165, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20165, + "name": "5-5", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 141.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 216.94 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270165, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 64.58, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210165, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -96, + 203 + ], + "fightmap": "bg_fight_sh" + }, + "166": { + "id": 166, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20166, + "name": "5-6", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 142.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 217.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270166, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 64.72, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210166, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -125, + 229 + ], + "fightmap": "bg_fight_sh" + }, + "167": { + "id": 167, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20167, + "name": "5-7", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 143.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 218.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270167, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 64.86, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210167, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -146, + 256 + ], + "fightmap": "bg_fight_sh" + }, + "168": { + "id": 168, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20168, + "name": "5-8", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 143.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 218.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270168, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 65, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210168, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -130, + 284 + ], + "fightmap": "bg_fight_sh" + }, + "169": { + "id": 169, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20169, + "name": "5-9", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 144.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 219.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270169, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 65.14, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210169, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -108, + 308 + ], + "fightmap": "bg_fight_sh" + }, + "170": { + "id": 170, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20170, + "name": "5-10", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 145.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 220.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270170, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 65.28, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210170, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -85, + 338 + ], + "fightmap": "bg_fight_sh" + }, + "171": { + "id": 171, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20171, + "name": "5-11", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 146 + }, + { + "a": "attr", + "t": "nexp", + "n": 220.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270171, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 65.42, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210171, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -58, + 366 + ], + "fightmap": "bg_fight_sh" + }, + "172": { + "id": 172, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20172, + "name": "5-12", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 146.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 221.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270172, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 65.56, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210172, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -9, + 368 + ], + "fightmap": "bg_fight_sh" + }, + "173": { + "id": 173, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20173, + "name": "5-13", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 147.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 222.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270173, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 65.7, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210173, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 41, + 368 + ], + "fightmap": "bg_fight_sh" + }, + "174": { + "id": 174, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20174, + "name": "5-14", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 148.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 222.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270174, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 65.84, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210174, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 97, + 368 + ], + "fightmap": "bg_fight_sh" + }, + "175": { + "id": 175, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20175, + "name": "5-15", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 148.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 223.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270175, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 65.98, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210175, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 124, + 393 + ], + "fightmap": "bg_fight_sh" + }, + "176": { + "id": 176, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20176, + "name": "5-16", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 149.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 224.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270176, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 66.12, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210176, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 148, + 424 + ], + "fightmap": "bg_fight_sh" + }, + "177": { + "id": 177, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20177, + "name": "5-17", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 150.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 224.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270177, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 66.26, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210177, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 168, + 455 + ], + "fightmap": "bg_fight_sh" + }, + "178": { + "id": 178, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20178, + "name": "5-18", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 150.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 225.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270178, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 66.4, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210178, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 116, + 468 + ], + "fightmap": "bg_fight_sh" + }, + "179": { + "id": 179, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20179, + "name": "5-19", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 151.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 226.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270179, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 66.54, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210179, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 67, + 475 + ], + "fightmap": "bg_fight_sh" + }, + "180": { + "id": 180, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20180, + "name": "5-20", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 152.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 226.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270180, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 66.68, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210180, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 23, + 482 + ], + "fightmap": "bg_fight_sh" + }, + "181": { + "id": 181, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20181, + "name": "5-21", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 153 + }, + { + "a": "attr", + "t": "nexp", + "n": 227.34 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270181, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 66.82, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210181, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 23, + 109 + ], + "fightmap": "bg_fight_sh" + }, + "182": { + "id": 182, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20182, + "name": "5-22", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 153.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 227.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270182, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 66.96, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210182, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -6, + 131 + ], + "fightmap": "bg_fight_sh" + }, + "183": { + "id": 183, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20183, + "name": "5-23", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 154.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 228.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270183, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 67.1, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210183, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -37, + 156 + ], + "fightmap": "bg_fight_sh" + }, + "184": { + "id": 184, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20184, + "name": "5-24", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 155.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 229.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270184, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 67.24, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210184, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -65, + 178 + ], + "fightmap": "bg_fight_sh" + }, + "185": { + "id": 185, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20185, + "name": "5-25", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 155.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 229.94 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270185, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 67.38, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210185, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -96, + 203 + ], + "fightmap": "bg_fight_sh" + }, + "186": { + "id": 186, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20186, + "name": "5-26", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 156.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 230.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270186, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 67.52, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210186, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -125, + 229 + ], + "fightmap": "bg_fight_sh" + }, + "187": { + "id": 187, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20187, + "name": "5-27", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 157.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 231.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270187, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 67.66, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210187, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -146, + 256 + ], + "fightmap": "bg_fight_sh" + }, + "188": { + "id": 188, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20188, + "name": "5-28", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 157.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 231.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270188, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 67.8, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210188, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -130, + 284 + ], + "fightmap": "bg_fight_sh" + }, + "189": { + "id": 189, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20189, + "name": "5-29", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 158.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 232.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270189, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 67.94, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210189, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -108, + 308 + ], + "fightmap": "bg_fight_sh" + }, + "190": { + "id": 190, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20190, + "name": "5-30", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 159.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 233.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270190, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 68.08, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210190, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -85, + 338 + ], + "fightmap": "bg_fight_sh" + }, + "191": { + "id": 191, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20191, + "name": "5-31", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 160 + }, + { + "a": "attr", + "t": "nexp", + "n": 233.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270191, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 68.22, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210191, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -58, + 366 + ], + "fightmap": "bg_fight_sh" + }, + "192": { + "id": 192, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20192, + "name": "5-32", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 160.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 234.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270192, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 68.36, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210192, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -9, + 368 + ], + "fightmap": "bg_fight_sh" + }, + "193": { + "id": 193, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20193, + "name": "5-33", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 161.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 235.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270193, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 68.5, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210193, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 41, + 368 + ], + "fightmap": "bg_fight_sh" + }, + "194": { + "id": 194, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20194, + "name": "5-34", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 162.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 235.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270194, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 68.64, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210194, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 97, + 368 + ], + "fightmap": "bg_fight_sh" + }, + "195": { + "id": 195, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20195, + "name": "5-35", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 162.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 236.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270195, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 68.78, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210195, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 124, + 393 + ], + "fightmap": "bg_fight_sh" + }, + "196": { + "id": 196, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20196, + "name": "5-36", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 163.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 237.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270196, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 68.92, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210196, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 148, + 424 + ], + "fightmap": "bg_fight_sh" + }, + "197": { + "id": 197, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20197, + "name": "5-37", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 164.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 237.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270197, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 69.06, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210197, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 168, + 455 + ], + "fightmap": "bg_fight_sh" + }, + "198": { + "id": 198, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20198, + "name": "5-38", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 164.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 238.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270198, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 112 + ], + "base": 69.2, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210198, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 116, + 468 + ], + "fightmap": "bg_fight_sh" + }, + "199": { + "id": 199, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20199, + "name": "5-39", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 165.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 239.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270199, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 69.34, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210199, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 67, + 475 + ], + "fightmap": "bg_fight_sh" + }, + "200": { + "id": 200, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20200, + "name": "5-40", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 166.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 239.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270200, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 69.48, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210200, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 23, + 482 + ], + "fightmap": "bg_fight_sh" + }, + "201": { + "id": 201, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20201, + "name": "5-41", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 167.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 240.34 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270201, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 69.62, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210201, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 23, + 109 + ], + "fightmap": "bg_fight_sh" + }, + "202": { + "id": 202, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20202, + "name": "5-42", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 169.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 240.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270202, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 69.76, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210202, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -6, + 131 + ], + "fightmap": "bg_fight_sh" + }, + "203": { + "id": 203, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20203, + "name": "5-43", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 170.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 241.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270203, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 69.9, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210203, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -37, + 156 + ], + "fightmap": "bg_fight_sh" + }, + "204": { + "id": 204, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20204, + "name": "5-44", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 172.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 242.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270204, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 70.04, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210204, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -65, + 178 + ], + "fightmap": "bg_fight_sh" + }, + "205": { + "id": 205, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20205, + "name": "5-45", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 174 + }, + { + "a": "attr", + "t": "nexp", + "n": 242.94 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270205, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 70.18, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210205, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -96, + 203 + ], + "fightmap": "bg_fight_sh" + }, + "206": { + "id": 206, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20206, + "name": "5-46", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 175.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 243.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270206, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 70.32, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210206, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -125, + 229 + ], + "fightmap": "bg_fight_sh" + }, + "207": { + "id": 207, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20207, + "name": "5-47", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 177.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 244.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270207, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 70.46, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210207, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -146, + 256 + ], + "fightmap": "bg_fight_sh" + }, + "208": { + "id": 208, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20208, + "name": "5-48", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 178.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 244.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270208, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 70.6, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210208, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -130, + 284 + ], + "fightmap": "bg_fight_sh" + }, + "209": { + "id": 209, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20209, + "name": "5-49", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 180.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 245.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270209, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 70.74, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210209, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -108, + 308 + ], + "fightmap": "bg_fight_sh" + }, + "210": { + "id": 210, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20210, + "name": "5-50", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 182 + }, + { + "a": "attr", + "t": "nexp", + "n": 246.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270210, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 70.88, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210210, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -85, + 338 + ], + "fightmap": "bg_fight_sh" + }, + "211": { + "id": 211, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20211, + "name": "5-51", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 183.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 246.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270211, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 71.02, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210211, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -58, + 366 + ], + "fightmap": "bg_fight_sh" + }, + "212": { + "id": 212, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20212, + "name": "5-52", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 185.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 247.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270212, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 71.16, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210212, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -9, + 368 + ], + "fightmap": "bg_fight_sh" + }, + "213": { + "id": 213, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20213, + "name": "5-53", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 186.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 248.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270213, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 71.3, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210213, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 41, + 368 + ], + "fightmap": "bg_fight_sh" + }, + "214": { + "id": 214, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20214, + "name": "5-54", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 188.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 248.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270214, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 71.44, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210214, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 97, + 368 + ], + "fightmap": "bg_fight_sh" + }, + "215": { + "id": 215, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20215, + "name": "5-55", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 190.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 249.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270215, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 71.58, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210215, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 124, + 393 + ], + "fightmap": "bg_fight_sh" + }, + "216": { + "id": 216, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20216, + "name": "5-56", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 191.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 250.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270216, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 71.72, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210216, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 148, + 424 + ], + "fightmap": "bg_fight_sh" + }, + "217": { + "id": 217, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20217, + "name": "5-57", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 193.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 250.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270217, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 71.86, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210217, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 168, + 455 + ], + "fightmap": "bg_fight_sh" + }, + "218": { + "id": 218, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20218, + "name": "5-58", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 195 + }, + { + "a": "attr", + "t": "nexp", + "n": 251.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270218, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 72, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210218, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 116, + 468 + ], + "fightmap": "bg_fight_sh" + }, + "219": { + "id": 219, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20219, + "name": "5-59", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 196.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 252.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270219, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 72.14, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210219, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 67, + 475 + ], + "fightmap": "bg_fight_sh" + }, + "220": { + "id": 220, + "chapter": 5, + "mapbg": "tx_map_sh", + "needLv": 1, + "npcId": 20220, + "name": "5-60", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 198.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 252.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270220, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 72.28, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210220, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 23, + 482 + ], + "fightmap": "bg_fight_sh" + }, + "221": { + "id": 221, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20221, + "name": "6-1", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 200 + }, + { + "a": "attr", + "t": "nexp", + "n": 253.34 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270221, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 72.42, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210221, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 49, + 120 + ], + "fightmap": "bg_fight_jg" + }, + "222": { + "id": 222, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20222, + "name": "6-2", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 201.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 253.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270222, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 72.56, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210222, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 10, + 105 + ], + "fightmap": "bg_fight_jg" + }, + "223": { + "id": 223, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20223, + "name": "6-3", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 203.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 254.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270223, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 72.7, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210223, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -31, + 121 + ], + "fightmap": "bg_fight_jg" + }, + "224": { + "id": 224, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20224, + "name": "6-4", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 205.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 255.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270224, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 72.84, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210224, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -62, + 141 + ], + "fightmap": "bg_fight_jg" + }, + "225": { + "id": 225, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20225, + "name": "6-5", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 206.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 255.94 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270225, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 72.98, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210225, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -84, + 173 + ], + "fightmap": "bg_fight_jg" + }, + "226": { + "id": 226, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20226, + "name": "6-6", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 208.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 256.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270226, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 73.12, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210226, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -66, + 189 + ], + "fightmap": "bg_fight_jg" + }, + "227": { + "id": 227, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20227, + "name": "6-7", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 210.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 257.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270227, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 73.26, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210227, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -26, + 207 + ], + "fightmap": "bg_fight_jg" + }, + "228": { + "id": 228, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20228, + "name": "6-8", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 211.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 257.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270228, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 73.4, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210228, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 22, + 217 + ], + "fightmap": "bg_fight_jg" + }, + "229": { + "id": 229, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20229, + "name": "6-9", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 213.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 258.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270229, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 73.54, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210229, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 72, + 226 + ], + "fightmap": "bg_fight_jg" + }, + "230": { + "id": 230, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20230, + "name": "6-10", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 215.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 259.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270230, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 73.68, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210230, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 114, + 242 + ], + "fightmap": "bg_fight_jg" + }, + "231": { + "id": 231, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20231, + "name": "6-11", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 217.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 259.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270231, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 73.82, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210231, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 122, + 276 + ], + "fightmap": "bg_fight_jg" + }, + "232": { + "id": 232, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20232, + "name": "6-12", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 218.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 260.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270232, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 73.96, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210232, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 121, + 313 + ], + "fightmap": "bg_fight_jg" + }, + "233": { + "id": 233, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20233, + "name": "6-13", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 220.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 261.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270233, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 74.1, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210233, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 113, + 350 + ], + "fightmap": "bg_fight_jg" + }, + "234": { + "id": 234, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20234, + "name": "6-14", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 222.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 261.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270234, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 74.24, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210234, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 71, + 362 + ], + "fightmap": "bg_fight_jg" + }, + "235": { + "id": 235, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20235, + "name": "6-15", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 224.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 262.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270235, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 74.38, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210235, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 23, + 350 + ], + "fightmap": "bg_fight_jg" + }, + "236": { + "id": 236, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20236, + "name": "6-16", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 226 + }, + { + "a": "attr", + "t": "nexp", + "n": 263.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270236, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 74.52, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210236, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -31, + 336 + ], + "fightmap": "bg_fight_jg" + }, + "237": { + "id": 237, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20237, + "name": "6-17", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 227.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 263.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270237, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 74.66, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210237, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -80, + 336 + ], + "fightmap": "bg_fight_jg" + }, + "238": { + "id": 238, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20238, + "name": "6-18", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 229.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 264.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270238, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 74.8, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210238, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -105, + 354 + ], + "fightmap": "bg_fight_jg" + }, + "239": { + "id": 239, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20239, + "name": "6-19", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 231.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 265.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270239, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 74.94, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210239, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -117, + 385 + ], + "fightmap": "bg_fight_jg" + }, + "240": { + "id": 240, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20240, + "name": "6-20", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 233.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 265.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270240, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 75.08, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210240, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -102, + 415 + ], + "fightmap": "bg_fight_jg" + }, + "241": { + "id": 241, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20241, + "name": "6-21", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 235 + }, + { + "a": "attr", + "t": "nexp", + "n": 266.34 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270241, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 75.22, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210241, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 49, + 120 + ], + "fightmap": "bg_fight_jg" + }, + "242": { + "id": 242, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20242, + "name": "6-22", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 236.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 266.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270242, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 75.36, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210242, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 10, + 105 + ], + "fightmap": "bg_fight_jg" + }, + "243": { + "id": 243, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20243, + "name": "6-23", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 238.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 267.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270243, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 75.5, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210243, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -31, + 121 + ], + "fightmap": "bg_fight_jg" + }, + "244": { + "id": 244, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20244, + "name": "6-24", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 240.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 268.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270244, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 75.64, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210244, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -62, + 141 + ], + "fightmap": "bg_fight_jg" + }, + "245": { + "id": 245, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20245, + "name": "6-25", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 242.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 268.94 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270245, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 75.78, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210245, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -84, + 173 + ], + "fightmap": "bg_fight_jg" + }, + "246": { + "id": 246, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20246, + "name": "6-26", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 244.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 269.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270246, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 75.92, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210246, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -66, + 189 + ], + "fightmap": "bg_fight_jg" + }, + "247": { + "id": 247, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20247, + "name": "6-27", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 246 + }, + { + "a": "attr", + "t": "nexp", + "n": 270.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270247, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 76.06, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210247, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -26, + 207 + ], + "fightmap": "bg_fight_jg" + }, + "248": { + "id": 248, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20248, + "name": "6-28", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 247.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 270.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270248, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 76.2, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210248, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 22, + 217 + ], + "fightmap": "bg_fight_jg" + }, + "249": { + "id": 249, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20249, + "name": "6-29", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 249.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 271.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270249, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 76.34, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210249, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 72, + 226 + ], + "fightmap": "bg_fight_jg" + }, + "250": { + "id": 250, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20250, + "name": "6-30", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 251.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 272.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270250, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 76.48, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210250, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 114, + 242 + ], + "fightmap": "bg_fight_jg" + }, + "251": { + "id": 251, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20251, + "name": "6-31", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 253.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 272.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270251, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 76.62, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210251, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 122, + 276 + ], + "fightmap": "bg_fight_jg" + }, + "252": { + "id": 252, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20252, + "name": "6-32", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 255.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 273.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270252, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 76.76, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210252, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 121, + 313 + ], + "fightmap": "bg_fight_jg" + }, + "253": { + "id": 253, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20253, + "name": "6-33", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 257.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 274.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270253, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 76.9, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210253, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 113, + 350 + ], + "fightmap": "bg_fight_jg" + }, + "254": { + "id": 254, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20254, + "name": "6-34", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 259.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 274.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270254, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 77.04, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210254, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 71, + 362 + ], + "fightmap": "bg_fight_jg" + }, + "255": { + "id": 255, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20255, + "name": "6-35", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 261.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 275.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270255, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 77.18, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210255, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 23, + 350 + ], + "fightmap": "bg_fight_jg" + }, + "256": { + "id": 256, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20256, + "name": "6-36", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 263 + }, + { + "a": "attr", + "t": "nexp", + "n": 276.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270256, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 77.32, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210256, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -31, + 336 + ], + "fightmap": "bg_fight_jg" + }, + "257": { + "id": 257, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20257, + "name": "6-37", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 265 + }, + { + "a": "attr", + "t": "nexp", + "n": 276.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270257, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 77.46, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210257, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -80, + 336 + ], + "fightmap": "bg_fight_jg" + }, + "258": { + "id": 258, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20258, + "name": "6-38", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 266.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 277.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270258, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 77.6, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210258, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -105, + 354 + ], + "fightmap": "bg_fight_jg" + }, + "259": { + "id": 259, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20259, + "name": "6-39", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 268.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 278.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270259, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 77.74, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210259, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -117, + 385 + ], + "fightmap": "bg_fight_jg" + }, + "260": { + "id": 260, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20260, + "name": "6-40", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 270.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 278.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270260, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 77.88, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210260, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -102, + 415 + ], + "fightmap": "bg_fight_jg" + }, + "261": { + "id": 261, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20261, + "name": "6-41", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 272.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 279.34 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270261, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 78.02, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210261, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 49, + 120 + ], + "fightmap": "bg_fight_jg" + }, + "262": { + "id": 262, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20262, + "name": "6-42", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 274.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 279.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270262, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 78.16, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210262, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 10, + 105 + ], + "fightmap": "bg_fight_jg" + }, + "263": { + "id": 263, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20263, + "name": "6-43", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 276.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 280.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270263, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 78.3, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210263, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -31, + 121 + ], + "fightmap": "bg_fight_jg" + }, + "264": { + "id": 264, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20264, + "name": "6-44", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 278.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 281.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270264, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 78.44, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210264, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -62, + 141 + ], + "fightmap": "bg_fight_jg" + }, + "265": { + "id": 265, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20265, + "name": "6-45", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 280.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 281.94 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270265, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 78.58, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210265, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -84, + 173 + ], + "fightmap": "bg_fight_jg" + }, + "266": { + "id": 266, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20266, + "name": "6-46", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 282.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 282.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270266, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 78.72, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210266, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -66, + 189 + ], + "fightmap": "bg_fight_jg" + }, + "267": { + "id": 267, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20267, + "name": "6-47", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 284.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 283.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270267, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 78.86, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210267, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -26, + 207 + ], + "fightmap": "bg_fight_jg" + }, + "268": { + "id": 268, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20268, + "name": "6-48", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 286.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 283.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270268, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 79, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210268, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 22, + 217 + ], + "fightmap": "bg_fight_jg" + }, + "269": { + "id": 269, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20269, + "name": "6-49", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 288.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 284.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270269, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 79.14, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210269, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 72, + 226 + ], + "fightmap": "bg_fight_jg" + }, + "270": { + "id": 270, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20270, + "name": "6-50", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 290.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 285.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270270, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 79.28, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210270, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 114, + 242 + ], + "fightmap": "bg_fight_jg" + }, + "271": { + "id": 271, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20271, + "name": "6-51", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 292.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 285.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270271, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 79.42, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210271, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 122, + 276 + ], + "fightmap": "bg_fight_jg" + }, + "272": { + "id": 272, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20272, + "name": "6-52", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 294.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 286.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270272, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 79.56, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210272, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 121, + 313 + ], + "fightmap": "bg_fight_jg" + }, + "273": { + "id": 273, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20273, + "name": "6-53", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 296.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 287.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270273, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 79.7, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210273, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 113, + 350 + ], + "fightmap": "bg_fight_jg" + }, + "274": { + "id": 274, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20274, + "name": "6-54", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 298.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 287.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270274, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 79.84, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210274, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 71, + 362 + ], + "fightmap": "bg_fight_jg" + }, + "275": { + "id": 275, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20275, + "name": "6-55", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 300.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 288.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270275, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 79.98, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210275, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 23, + 350 + ], + "fightmap": "bg_fight_jg" + }, + "276": { + "id": 276, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20276, + "name": "6-56", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 302.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 289.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270276, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 80.12, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210276, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -31, + 336 + ], + "fightmap": "bg_fight_jg" + }, + "277": { + "id": 277, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20277, + "name": "6-57", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 305 + }, + { + "a": "attr", + "t": "nexp", + "n": 289.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270277, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 80.26, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210277, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -80, + 336 + ], + "fightmap": "bg_fight_jg" + }, + "278": { + "id": 278, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20278, + "name": "6-58", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 307.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 290.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270278, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 80.4, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210278, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -105, + 354 + ], + "fightmap": "bg_fight_jg" + }, + "279": { + "id": 279, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20279, + "name": "6-59", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 309.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 291.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270279, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 80.54, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210279, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -117, + 385 + ], + "fightmap": "bg_fight_jg" + }, + "280": { + "id": 280, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20280, + "name": "6-60", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 311.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 291.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270280, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 80.68, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210280, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -102, + 415 + ], + "fightmap": "bg_fight_jg" + }, + "281": { + "id": 281, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20281, + "name": "6-61", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 313.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 292.34 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270281, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 80.82, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210281, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 49, + 120 + ], + "fightmap": "bg_fight_jg" + }, + "282": { + "id": 282, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20282, + "name": "6-62", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 315.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 292.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270282, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 80.96, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210282, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 10, + 105 + ], + "fightmap": "bg_fight_jg" + }, + "283": { + "id": 283, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20283, + "name": "6-63", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 317.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 293.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270283, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 81.1, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210283, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -31, + 121 + ], + "fightmap": "bg_fight_jg" + }, + "284": { + "id": 284, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20284, + "name": "6-64", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 319.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 294.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270284, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 81.24, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210284, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -62, + 141 + ], + "fightmap": "bg_fight_jg" + }, + "285": { + "id": 285, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20285, + "name": "6-65", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 321.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 294.94 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270285, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 81.38, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210285, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -84, + 173 + ], + "fightmap": "bg_fight_jg" + }, + "286": { + "id": 286, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20286, + "name": "6-66", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 323.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 295.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270286, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 81.52, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210286, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -66, + 189 + ], + "fightmap": "bg_fight_jg" + }, + "287": { + "id": 287, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20287, + "name": "6-67", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 326 + }, + { + "a": "attr", + "t": "nexp", + "n": 296.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270287, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 81.66, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210287, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -26, + 207 + ], + "fightmap": "bg_fight_jg" + }, + "288": { + "id": 288, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20288, + "name": "6-68", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 328.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 296.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270288, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 81.8, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210288, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 22, + 217 + ], + "fightmap": "bg_fight_jg" + }, + "289": { + "id": 289, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20289, + "name": "6-69", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 330.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 297.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270289, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 81.94, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210289, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 72, + 226 + ], + "fightmap": "bg_fight_jg" + }, + "290": { + "id": 290, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20290, + "name": "6-70", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 332.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 298.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270290, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 82.08, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210290, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 114, + 242 + ], + "fightmap": "bg_fight_jg" + }, + "291": { + "id": 291, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20291, + "name": "6-71", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 334.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 298.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270291, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 82.22, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210291, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 122, + 276 + ], + "fightmap": "bg_fight_jg" + }, + "292": { + "id": 292, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20292, + "name": "6-72", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 336.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 299.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270292, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 82.36, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210292, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 121, + 313 + ], + "fightmap": "bg_fight_jg" + }, + "293": { + "id": 293, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20293, + "name": "6-73", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 339 + }, + { + "a": "attr", + "t": "nexp", + "n": 300.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270293, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 82.5, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210293, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 113, + 350 + ], + "fightmap": "bg_fight_jg" + }, + "294": { + "id": 294, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20294, + "name": "6-74", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 341.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 300.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270294, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 82.64, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210294, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 71, + 362 + ], + "fightmap": "bg_fight_jg" + }, + "295": { + "id": 295, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20295, + "name": "6-75", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 343.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 301.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270295, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 82.78, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210295, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 23, + 350 + ], + "fightmap": "bg_fight_jg" + }, + "296": { + "id": 296, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20296, + "name": "6-76", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 345.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 302.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270296, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 82.92, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210296, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -31, + 336 + ], + "fightmap": "bg_fight_jg" + }, + "297": { + "id": 297, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20297, + "name": "6-77", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 347.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 302.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270297, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 83.06, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210297, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -80, + 336 + ], + "fightmap": "bg_fight_jg" + }, + "298": { + "id": 298, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20298, + "name": "6-78", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 350 + }, + { + "a": "attr", + "t": "nexp", + "n": 303.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270298, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 83.2, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210298, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -105, + 354 + ], + "fightmap": "bg_fight_jg" + }, + "299": { + "id": 299, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20299, + "name": "6-79", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 352.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 304.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270299, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 83.34, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210299, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -117, + 385 + ], + "fightmap": "bg_fight_jg" + }, + "300": { + "id": 300, + "chapter": 6, + "mapbg": "tx_map_jg", + "needLv": 1, + "npcId": 20300, + "name": "6-80", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 354.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 304.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270300, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 83.48, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210300, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -102, + 415 + ], + "fightmap": "bg_fight_jg" + }, + "301": { + "id": 301, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20301, + "name": "7-1", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 356.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 305.34 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270301, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 83.62, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210301, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 8, + 85 + ], + "fightmap": "bg_fight1_sgd" + }, + "302": { + "id": 302, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20302, + "name": "7-2", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 358.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 305.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270302, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 83.76, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210302, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 46, + 105 + ], + "fightmap": "bg_fight1_sgd" + }, + "303": { + "id": 303, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20303, + "name": "7-3", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 361.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 306.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270303, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 83.9, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210303, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 86, + 121 + ], + "fightmap": "bg_fight1_sgd" + }, + "304": { + "id": 304, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20304, + "name": "7-4", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 363.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 307.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270304, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 84.04, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210304, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 117, + 140 + ], + "fightmap": "bg_fight1_sgd" + }, + "305": { + "id": 305, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20305, + "name": "7-5", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 365.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 307.94 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270305, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 84.18, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210305, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 118, + 164 + ], + "fightmap": "bg_fight1_sgd" + }, + "306": { + "id": 306, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20306, + "name": "7-6", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 368 + }, + { + "a": "attr", + "t": "nexp", + "n": 308.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270306, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 84.32, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210306, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 116, + 188 + ], + "fightmap": "bg_fight1_sgd" + }, + "307": { + "id": 307, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20307, + "name": "7-7", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 370.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 309.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270307, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 84.46, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210307, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 80, + 202 + ], + "fightmap": "bg_fight1_sgd" + }, + "308": { + "id": 308, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20308, + "name": "7-8", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 372.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 309.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270308, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 84.6, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210308, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 35, + 205 + ], + "fightmap": "bg_fight1_sgd" + }, + "309": { + "id": 309, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20309, + "name": "7-9", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 374.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 310.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270309, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 84.74, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210309, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -14, + 210 + ], + "fightmap": "bg_fight1_sgd" + }, + "310": { + "id": 310, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20310, + "name": "7-10", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 377.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 311.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270310, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 84.88, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210310, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -59, + 215 + ], + "fightmap": "bg_fight1_sgd" + }, + "311": { + "id": 311, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20311, + "name": "7-11", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 379.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 311.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270311, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 85.02, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210311, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -110, + 224 + ], + "fightmap": "bg_fight1_sgd" + }, + "312": { + "id": 312, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20312, + "name": "7-12", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 381.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 312.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270312, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 85.16, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210312, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -110, + 254 + ], + "fightmap": "bg_fight1_sgd" + }, + "313": { + "id": 313, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20313, + "name": "7-13", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 384.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 313.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270313, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 85.3, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210313, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -110, + 288 + ], + "fightmap": "bg_fight1_sgd" + }, + "314": { + "id": 314, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20314, + "name": "7-14", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 386.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 313.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270314, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 85.44, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210314, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -104, + 322 + ], + "fightmap": "bg_fight1_sgd" + }, + "315": { + "id": 315, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20315, + "name": "7-15", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 388.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 314.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270315, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 85.58, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210315, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -62, + 344 + ], + "fightmap": "bg_fight1_sgd" + }, + "316": { + "id": 316, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20316, + "name": "7-16", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 391.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 315.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270316, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 85.72, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210316, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -19, + 361 + ], + "fightmap": "bg_fight1_sgd" + }, + "317": { + "id": 317, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20317, + "name": "7-17", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 393.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 315.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270317, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 85.86, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210317, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 18, + 383 + ], + "fightmap": "bg_fight1_sgd" + }, + "318": { + "id": 318, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20318, + "name": "7-18", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 395.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 316.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270318, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 86, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210318, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 58, + 399 + ], + "fightmap": "bg_fight1_sgd" + }, + "319": { + "id": 319, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20319, + "name": "7-19", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 398.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 317.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270319, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 86.14, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210319, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 93, + 425 + ], + "fightmap": "bg_fight1_sgd" + }, + "320": { + "id": 320, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20320, + "name": "7-20", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 400.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 317.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270320, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 86.28, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210320, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 94, + 454 + ], + "fightmap": "bg_fight1_sgd" + }, + "321": { + "id": 321, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20321, + "name": "7-21", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 402.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 318.34 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270321, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 86.42, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210321, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 8, + 85 + ], + "fightmap": "bg_fight1_sgd" + }, + "322": { + "id": 322, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20322, + "name": "7-22", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 405.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 318.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270322, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 86.56, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210322, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 46, + 105 + ], + "fightmap": "bg_fight1_sgd" + }, + "323": { + "id": 323, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20323, + "name": "7-23", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 407.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 319.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270323, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 86.7, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210323, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 86, + 121 + ], + "fightmap": "bg_fight1_sgd" + }, + "324": { + "id": 324, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20324, + "name": "7-24", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 410 + }, + { + "a": "attr", + "t": "nexp", + "n": 320.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270324, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 86.84, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210324, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 117, + 140 + ], + "fightmap": "bg_fight1_sgd" + }, + "325": { + "id": 325, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20325, + "name": "7-25", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 412.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 320.94 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270325, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 86.98, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210325, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 118, + 164 + ], + "fightmap": "bg_fight1_sgd" + }, + "326": { + "id": 326, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20326, + "name": "7-26", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 414.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 321.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270326, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 87.12, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210326, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 116, + 188 + ], + "fightmap": "bg_fight1_sgd" + }, + "327": { + "id": 327, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20327, + "name": "7-27", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 417.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 322.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270327, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 87.26, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210327, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 80, + 202 + ], + "fightmap": "bg_fight1_sgd" + }, + "328": { + "id": 328, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20328, + "name": "7-28", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 419.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 322.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270328, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 87.4, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210328, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 35, + 205 + ], + "fightmap": "bg_fight1_sgd" + }, + "329": { + "id": 329, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20329, + "name": "7-29", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 422.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 323.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270329, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 87.54, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210329, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -14, + 210 + ], + "fightmap": "bg_fight1_sgd" + }, + "330": { + "id": 330, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20330, + "name": "7-30", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 424.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 324.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270330, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 87.68, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210330, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -59, + 215 + ], + "fightmap": "bg_fight1_sgd" + }, + "331": { + "id": 331, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20331, + "name": "7-31", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 427 + }, + { + "a": "attr", + "t": "nexp", + "n": 324.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270331, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 87.82, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210331, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -110, + 224 + ], + "fightmap": "bg_fight1_sgd" + }, + "332": { + "id": 332, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20332, + "name": "7-32", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 429.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 325.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270332, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 87.96, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210332, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -110, + 254 + ], + "fightmap": "bg_fight1_sgd" + }, + "333": { + "id": 333, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20333, + "name": "7-33", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 431.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 326.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270333, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 88.1, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210333, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -110, + 288 + ], + "fightmap": "bg_fight1_sgd" + }, + "334": { + "id": 334, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20334, + "name": "7-34", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 434.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 326.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270334, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 88.24, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210334, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -104, + 322 + ], + "fightmap": "bg_fight1_sgd" + }, + "335": { + "id": 335, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20335, + "name": "7-35", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 436.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 327.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270335, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 88.38, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210335, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -62, + 344 + ], + "fightmap": "bg_fight1_sgd" + }, + "336": { + "id": 336, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20336, + "name": "7-36", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 439.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 328.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270336, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 88.52, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210336, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -19, + 361 + ], + "fightmap": "bg_fight1_sgd" + }, + "337": { + "id": 337, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20337, + "name": "7-37", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 441.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 328.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270337, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 88.66, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210337, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 18, + 383 + ], + "fightmap": "bg_fight1_sgd" + }, + "338": { + "id": 338, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20338, + "name": "7-38", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 444.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 329.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270338, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 88.8, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210338, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 58, + 399 + ], + "fightmap": "bg_fight1_sgd" + }, + "339": { + "id": 339, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20339, + "name": "7-39", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 446.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 330.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270339, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 88.94, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210339, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 93, + 425 + ], + "fightmap": "bg_fight1_sgd" + }, + "340": { + "id": 340, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20340, + "name": "7-40", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 449.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 330.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270340, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 89.08, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210340, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 94, + 454 + ], + "fightmap": "bg_fight1_sgd" + }, + "341": { + "id": 341, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20341, + "name": "7-41", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 451.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 331.34 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270341, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 89.22, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210341, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 8, + 85 + ], + "fightmap": "bg_fight1_sgd" + }, + "342": { + "id": 342, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20342, + "name": "7-42", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 454.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 331.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270342, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 89.36, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210342, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 46, + 105 + ], + "fightmap": "bg_fight1_sgd" + }, + "343": { + "id": 343, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20343, + "name": "7-43", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 456.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 332.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270343, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 89.5, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210343, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 86, + 121 + ], + "fightmap": "bg_fight1_sgd" + }, + "344": { + "id": 344, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20344, + "name": "7-44", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 459.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 333.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270344, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 89.64, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210344, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 117, + 140 + ], + "fightmap": "bg_fight1_sgd" + }, + "345": { + "id": 345, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20345, + "name": "7-45", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 462 + }, + { + "a": "attr", + "t": "nexp", + "n": 333.94 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270345, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 89.78, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210345, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 118, + 164 + ], + "fightmap": "bg_fight1_sgd" + }, + "346": { + "id": 346, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20346, + "name": "7-46", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 464.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 334.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270346, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 89.92, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210346, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 116, + 188 + ], + "fightmap": "bg_fight1_sgd" + }, + "347": { + "id": 347, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20347, + "name": "7-47", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 467.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 335.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270347, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 90.06, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210347, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 80, + 202 + ], + "fightmap": "bg_fight1_sgd" + }, + "348": { + "id": 348, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20348, + "name": "7-48", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 469.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 335.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270348, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 90.2, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210348, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 35, + 205 + ], + "fightmap": "bg_fight1_sgd" + }, + "349": { + "id": 349, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20349, + "name": "7-49", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 472.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 336.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270349, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 90.34, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210349, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -14, + 210 + ], + "fightmap": "bg_fight1_sgd" + }, + "350": { + "id": 350, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20350, + "name": "7-50", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 474.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 337.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270350, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 90.48, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210350, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -59, + 215 + ], + "fightmap": "bg_fight1_sgd" + }, + "351": { + "id": 351, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20351, + "name": "7-51", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 477.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 337.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270351, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 90.62, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210351, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -110, + 224 + ], + "fightmap": "bg_fight1_sgd" + }, + "352": { + "id": 352, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20352, + "name": "7-52", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 480 + }, + { + "a": "attr", + "t": "nexp", + "n": 338.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270352, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 90.76, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210352, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -110, + 254 + ], + "fightmap": "bg_fight1_sgd" + }, + "353": { + "id": 353, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20353, + "name": "7-53", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 482.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 339.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270353, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 90.9, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210353, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -110, + 288 + ], + "fightmap": "bg_fight1_sgd" + }, + "354": { + "id": 354, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20354, + "name": "7-54", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 485.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 339.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270354, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 91.04, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210354, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -104, + 322 + ], + "fightmap": "bg_fight1_sgd" + }, + "355": { + "id": 355, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20355, + "name": "7-55", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 487.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 340.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270355, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 91.18, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210355, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -62, + 344 + ], + "fightmap": "bg_fight1_sgd" + }, + "356": { + "id": 356, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20356, + "name": "7-56", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 490.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 341.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270356, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 91.32, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210356, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -19, + 361 + ], + "fightmap": "bg_fight1_sgd" + }, + "357": { + "id": 357, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20357, + "name": "7-57", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 493 + }, + { + "a": "attr", + "t": "nexp", + "n": 341.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270357, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 91.46, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210357, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 18, + 383 + ], + "fightmap": "bg_fight1_sgd" + }, + "358": { + "id": 358, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20358, + "name": "7-58", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 495.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 342.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270358, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 91.6, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210358, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 58, + 399 + ], + "fightmap": "bg_fight1_sgd" + }, + "359": { + "id": 359, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20359, + "name": "7-59", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 498.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 343.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270359, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 91.74, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210359, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 93, + 425 + ], + "fightmap": "bg_fight1_sgd" + }, + "360": { + "id": 360, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20360, + "name": "7-60", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 500.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 343.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270360, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 91.88, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210360, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 94, + 454 + ], + "fightmap": "bg_fight1_sgd" + }, + "361": { + "id": 361, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20361, + "name": "7-61", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 503.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 344.34 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270361, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 92.02, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210361, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 8, + 85 + ], + "fightmap": "bg_fight1_sgd" + }, + "362": { + "id": 362, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20362, + "name": "7-62", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 506.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 344.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270362, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 92.16, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210362, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 46, + 105 + ], + "fightmap": "bg_fight1_sgd" + }, + "363": { + "id": 363, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20363, + "name": "7-63", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 508.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 345.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270363, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 92.3, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210363, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 86, + 121 + ], + "fightmap": "bg_fight1_sgd" + }, + "364": { + "id": 364, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20364, + "name": "7-64", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 511.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 346.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270364, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 92.44, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210364, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 117, + 140 + ], + "fightmap": "bg_fight1_sgd" + }, + "365": { + "id": 365, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20365, + "name": "7-65", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 514.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 346.94 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270365, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 92.58, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210365, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 118, + 164 + ], + "fightmap": "bg_fight1_sgd" + }, + "366": { + "id": 366, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20366, + "name": "7-66", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 517 + }, + { + "a": "attr", + "t": "nexp", + "n": 347.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270366, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 92.72, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210366, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 116, + 188 + ], + "fightmap": "bg_fight1_sgd" + }, + "367": { + "id": 367, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20367, + "name": "7-67", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 519.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 348.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270367, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 92.86, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210367, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 80, + 202 + ], + "fightmap": "bg_fight1_sgd" + }, + "368": { + "id": 368, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20368, + "name": "7-68", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 522.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 348.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270368, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 93, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210368, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 35, + 205 + ], + "fightmap": "bg_fight1_sgd" + }, + "369": { + "id": 369, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20369, + "name": "7-69", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 525.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 349.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270369, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 93.14, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210369, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -14, + 210 + ], + "fightmap": "bg_fight1_sgd" + }, + "370": { + "id": 370, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20370, + "name": "7-70", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 527.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 350.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270370, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 93.28, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210370, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -59, + 215 + ], + "fightmap": "bg_fight1_sgd" + }, + "371": { + "id": 371, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20371, + "name": "7-71", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 530.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 350.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270371, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 93.42, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210371, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -110, + 224 + ], + "fightmap": "bg_fight1_sgd" + }, + "372": { + "id": 372, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20372, + "name": "7-72", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 533.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 351.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270372, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 93.56, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210372, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -110, + 254 + ], + "fightmap": "bg_fight1_sgd" + }, + "373": { + "id": 373, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20373, + "name": "7-73", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 536 + }, + { + "a": "attr", + "t": "nexp", + "n": 352.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270373, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 93.7, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210373, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -110, + 288 + ], + "fightmap": "bg_fight1_sgd" + }, + "374": { + "id": 374, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20374, + "name": "7-74", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 538.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 352.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270374, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 93.84, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210374, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -104, + 322 + ], + "fightmap": "bg_fight1_sgd" + }, + "375": { + "id": 375, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20375, + "name": "7-75", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 541.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 353.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270375, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 93.98, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210375, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -62, + 344 + ], + "fightmap": "bg_fight1_sgd" + }, + "376": { + "id": 376, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20376, + "name": "7-76", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 544.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 354.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270376, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 94.12, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210376, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -19, + 361 + ], + "fightmap": "bg_fight1_sgd" + }, + "377": { + "id": 377, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20377, + "name": "7-77", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 547 + }, + { + "a": "attr", + "t": "nexp", + "n": 354.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270377, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 94.26, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210377, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 18, + 383 + ], + "fightmap": "bg_fight1_sgd" + }, + "378": { + "id": 378, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20378, + "name": "7-78", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 549.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 355.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270378, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 94.4, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210378, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 58, + 399 + ], + "fightmap": "bg_fight1_sgd" + }, + "379": { + "id": 379, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20379, + "name": "7-79", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 552.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 356.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270379, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 94.54, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210379, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 93, + 425 + ], + "fightmap": "bg_fight1_sgd" + }, + "380": { + "id": 380, + "chapter": 7, + "mapbg": "tx_map_sg", + "needLv": 1, + "npcId": 20380, + "name": "7-80", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 555.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 356.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270380, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 94.68, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210380, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 94, + 454 + ], + "fightmap": "bg_fight1_sgd" + }, + "381": { + "id": 381, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20381, + "name": "8-1", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 558.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 357.34 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270381, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 94.82, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210381, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 55, + 45 + ], + "fightmap": "bg_fight1_jh" + }, + "382": { + "id": 382, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20382, + "name": "8-2", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 561 + }, + { + "a": "attr", + "t": "nexp", + "n": 357.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270382, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 94.96, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210382, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 12, + 57 + ], + "fightmap": "bg_fight1_jh" + }, + "383": { + "id": 383, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20383, + "name": "8-3", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 563.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 358.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270383, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 95.1, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210383, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -34, + 71 + ], + "fightmap": "bg_fight1_jh" + }, + "384": { + "id": 384, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20384, + "name": "8-4", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 566.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 359.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270384, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 95.24, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210384, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -80, + 85 + ], + "fightmap": "bg_fight1_jh" + }, + "385": { + "id": 385, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20385, + "name": "8-5", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 569.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 359.94 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270385, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 95.38, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210385, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -117, + 108 + ], + "fightmap": "bg_fight1_jh" + }, + "386": { + "id": 386, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20386, + "name": "8-6", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 572.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 360.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270386, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 95.52, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210386, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -133, + 145 + ], + "fightmap": "bg_fight1_jh" + }, + "387": { + "id": 387, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20387, + "name": "8-7", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 575.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 361.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270387, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 95.66, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210387, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -117, + 178 + ], + "fightmap": "bg_fight1_jh" + }, + "388": { + "id": 388, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20388, + "name": "8-8", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 577.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 361.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270388, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 95.8, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210388, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -87, + 206 + ], + "fightmap": "bg_fight1_jh" + }, + "389": { + "id": 389, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20389, + "name": "8-9", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 580.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 362.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270389, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 95.94, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210389, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -32, + 217 + ], + "fightmap": "bg_fight1_jh" + }, + "390": { + "id": 390, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20390, + "name": "8-10", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 583.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 363.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270390, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 96.08, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210390, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 30, + 221 + ], + "fightmap": "bg_fight1_jh" + }, + "391": { + "id": 391, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20391, + "name": "8-11", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 586.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 363.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270391, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 96.22, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210391, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 92, + 229 + ], + "fightmap": "bg_fight1_jh" + }, + "392": { + "id": 392, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20392, + "name": "8-12", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 589.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 364.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270392, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 96.36, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210392, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 135, + 251 + ], + "fightmap": "bg_fight1_jh" + }, + "393": { + "id": 393, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20393, + "name": "8-13", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 592.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 365.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270393, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 96.5, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210393, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 143, + 283 + ], + "fightmap": "bg_fight1_jh" + }, + "394": { + "id": 394, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20394, + "name": "8-14", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 595.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 365.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270394, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 96.64, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210394, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 79, + 322 + ], + "fightmap": "bg_fight1_jh" + }, + "395": { + "id": 395, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20395, + "name": "8-15", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 598 + }, + { + "a": "attr", + "t": "nexp", + "n": 366.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270395, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 96.78, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210395, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 31, + 307 + ], + "fightmap": "bg_fight1_jh" + }, + "396": { + "id": 396, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20396, + "name": "8-16", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 600.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 367.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270396, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 96.92, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210396, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -16, + 294 + ], + "fightmap": "bg_fight1_jh" + }, + "397": { + "id": 397, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20397, + "name": "8-17", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 603.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 367.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270397, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 97.06, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210397, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -69, + 310 + ], + "fightmap": "bg_fight1_jh" + }, + "398": { + "id": 398, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20398, + "name": "8-18", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 606.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 368.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270398, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 97.2, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210398, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -61, + 350 + ], + "fightmap": "bg_fight1_jh" + }, + "399": { + "id": 399, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20399, + "name": "8-19", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 609.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 369.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270399, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 97.34, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210399, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -31, + 382 + ], + "fightmap": "bg_fight1_jh" + }, + "400": { + "id": 400, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20400, + "name": "8-20", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 612.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 369.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270400, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 97.48, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210400, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 20, + 406 + ], + "fightmap": "bg_fight1_jh" + }, + "401": { + "id": 401, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20401, + "name": "8-21", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 615.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 370.34 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270401, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 97.62, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210401, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 55, + 45 + ], + "fightmap": "bg_fight1_jh" + }, + "402": { + "id": 402, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20402, + "name": "8-22", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 618.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 370.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270402, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 97.76, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210402, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 12, + 57 + ], + "fightmap": "bg_fight1_jh" + }, + "403": { + "id": 403, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20403, + "name": "8-23", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 621.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 371.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270403, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 97.9, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210403, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -34, + 71 + ], + "fightmap": "bg_fight1_jh" + }, + "404": { + "id": 404, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20404, + "name": "8-24", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 624.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 372.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270404, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 98.04, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210404, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -80, + 85 + ], + "fightmap": "bg_fight1_jh" + }, + "405": { + "id": 405, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20405, + "name": "8-25", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 627.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 372.94 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270405, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 98.18, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210405, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -117, + 108 + ], + "fightmap": "bg_fight1_jh" + }, + "406": { + "id": 406, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20406, + "name": "8-26", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 630.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 373.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270406, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 98.32, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210406, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -133, + 145 + ], + "fightmap": "bg_fight1_jh" + }, + "407": { + "id": 407, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20407, + "name": "8-27", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 633.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 374.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270407, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 98.46, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210407, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -117, + 178 + ], + "fightmap": "bg_fight1_jh" + }, + "408": { + "id": 408, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20408, + "name": "8-28", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 636.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 374.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270408, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 98.6, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210408, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -87, + 206 + ], + "fightmap": "bg_fight1_jh" + }, + "409": { + "id": 409, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20409, + "name": "8-29", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 639.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 375.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270409, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 98.74, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210409, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -32, + 217 + ], + "fightmap": "bg_fight1_jh" + }, + "410": { + "id": 410, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20410, + "name": "8-30", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 642.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 376.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270410, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 98.88, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210410, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 30, + 221 + ], + "fightmap": "bg_fight1_jh" + }, + "411": { + "id": 411, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20411, + "name": "8-31", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 645.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 376.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270411, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 99.02, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210411, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 92, + 229 + ], + "fightmap": "bg_fight1_jh" + }, + "412": { + "id": 412, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20412, + "name": "8-32", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 648.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 377.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270412, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 99.16, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210412, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 135, + 251 + ], + "fightmap": "bg_fight1_jh" + }, + "413": { + "id": 413, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20413, + "name": "8-33", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 651.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 378.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270413, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 99.3, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210413, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 143, + 283 + ], + "fightmap": "bg_fight1_jh" + }, + "414": { + "id": 414, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20414, + "name": "8-34", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 654.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 378.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270414, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 99.44, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210414, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 79, + 322 + ], + "fightmap": "bg_fight1_jh" + }, + "415": { + "id": 415, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20415, + "name": "8-35", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 657.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 379.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270415, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 99.58, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210415, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 31, + 307 + ], + "fightmap": "bg_fight1_jh" + }, + "416": { + "id": 416, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20416, + "name": "8-36", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 660.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 380.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270416, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 99.72, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210416, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -16, + 294 + ], + "fightmap": "bg_fight1_jh" + }, + "417": { + "id": 417, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20417, + "name": "8-37", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 663.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 380.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270417, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 99.86, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210417, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -69, + 310 + ], + "fightmap": "bg_fight1_jh" + }, + "418": { + "id": 418, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20418, + "name": "8-38", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 666.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 381.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270418, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 100, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210418, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -61, + 350 + ], + "fightmap": "bg_fight1_jh" + }, + "419": { + "id": 419, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20419, + "name": "8-39", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 669.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 382.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270419, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 100.14, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210419, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -31, + 382 + ], + "fightmap": "bg_fight1_jh" + }, + "420": { + "id": 420, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20420, + "name": "8-40", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 672.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 382.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270420, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 100.28, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210420, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 20, + 406 + ], + "fightmap": "bg_fight1_jh" + }, + "421": { + "id": 421, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20421, + "name": "8-41", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 675.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 383.34 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270421, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 100.42, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210421, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 55, + 45 + ], + "fightmap": "bg_fight1_jh" + }, + "422": { + "id": 422, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20422, + "name": "8-42", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 678.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 383.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270422, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 100.56, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210422, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 12, + 57 + ], + "fightmap": "bg_fight1_jh" + }, + "423": { + "id": 423, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20423, + "name": "8-43", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 681.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 384.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270423, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 100.7, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210423, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -34, + 71 + ], + "fightmap": "bg_fight1_jh" + }, + "424": { + "id": 424, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20424, + "name": "8-44", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 685 + }, + { + "a": "attr", + "t": "nexp", + "n": 385.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270424, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 100.84, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210424, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -80, + 85 + ], + "fightmap": "bg_fight1_jh" + }, + "425": { + "id": 425, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20425, + "name": "8-45", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 688.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 385.94 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270425, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 100.98, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210425, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -117, + 108 + ], + "fightmap": "bg_fight1_jh" + }, + "426": { + "id": 426, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20426, + "name": "8-46", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 691.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 386.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270426, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 101.12, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210426, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -133, + 145 + ], + "fightmap": "bg_fight1_jh" + }, + "427": { + "id": 427, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20427, + "name": "8-47", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 694.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 387.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270427, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 101.26, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210427, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -117, + 178 + ], + "fightmap": "bg_fight1_jh" + }, + "428": { + "id": 428, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20428, + "name": "8-48", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 697.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 387.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270428, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 101.4, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210428, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -87, + 206 + ], + "fightmap": "bg_fight1_jh" + }, + "429": { + "id": 429, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20429, + "name": "8-49", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 700.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 388.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270429, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 101.54, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210429, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -32, + 217 + ], + "fightmap": "bg_fight1_jh" + }, + "430": { + "id": 430, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20430, + "name": "8-50", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 703.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 389.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270430, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 101.68, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210430, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 30, + 221 + ], + "fightmap": "bg_fight1_jh" + }, + "431": { + "id": 431, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20431, + "name": "8-51", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 706.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 389.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270431, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 101.82, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210431, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 92, + 229 + ], + "fightmap": "bg_fight1_jh" + }, + "432": { + "id": 432, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20432, + "name": "8-52", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 710 + }, + { + "a": "attr", + "t": "nexp", + "n": 390.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270432, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 101.96, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210432, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 135, + 251 + ], + "fightmap": "bg_fight1_jh" + }, + "433": { + "id": 433, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20433, + "name": "8-53", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 713.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 391.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270433, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 102.1, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210433, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 143, + 283 + ], + "fightmap": "bg_fight1_jh" + }, + "434": { + "id": 434, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20434, + "name": "8-54", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 716.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 391.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270434, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 102.24, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210434, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 79, + 322 + ], + "fightmap": "bg_fight1_jh" + }, + "435": { + "id": 435, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20435, + "name": "8-55", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 719.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 392.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270435, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 102.38, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210435, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 31, + 307 + ], + "fightmap": "bg_fight1_jh" + }, + "436": { + "id": 436, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20436, + "name": "8-56", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 722.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 393.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270436, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 102.52, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210436, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -16, + 294 + ], + "fightmap": "bg_fight1_jh" + }, + "437": { + "id": 437, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20437, + "name": "8-57", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 725.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 393.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270437, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 102.66, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210437, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -69, + 310 + ], + "fightmap": "bg_fight1_jh" + }, + "438": { + "id": 438, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20438, + "name": "8-58", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 729.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 394.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270438, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 102.8, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210438, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -61, + 350 + ], + "fightmap": "bg_fight1_jh" + }, + "439": { + "id": 439, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20439, + "name": "8-59", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 732.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 395.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270439, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 102.94, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210439, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -31, + 382 + ], + "fightmap": "bg_fight1_jh" + }, + "440": { + "id": 440, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20440, + "name": "8-60", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 735.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 395.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270440, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 103.08, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210440, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 20, + 406 + ], + "fightmap": "bg_fight1_jh" + }, + "441": { + "id": 441, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20441, + "name": "8-61", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 738.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 396.34 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270441, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 103.22, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210441, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 55, + 45 + ], + "fightmap": "bg_fight1_jh" + }, + "442": { + "id": 442, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20442, + "name": "8-62", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 741.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 396.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270442, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 103.36, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210442, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 12, + 57 + ], + "fightmap": "bg_fight1_jh" + }, + "443": { + "id": 443, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20443, + "name": "8-63", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 745.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 397.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270443, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 103.5, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210443, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -34, + 71 + ], + "fightmap": "bg_fight1_jh" + }, + "444": { + "id": 444, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20444, + "name": "8-64", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 748.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 398.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270444, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 103.64, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210444, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -80, + 85 + ], + "fightmap": "bg_fight1_jh" + }, + "445": { + "id": 445, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20445, + "name": "8-65", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 751.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 398.94 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270445, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 103.78, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210445, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -117, + 108 + ], + "fightmap": "bg_fight1_jh" + }, + "446": { + "id": 446, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20446, + "name": "8-66", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 754.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 399.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270446, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 103.92, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210446, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -133, + 145 + ], + "fightmap": "bg_fight1_jh" + }, + "447": { + "id": 447, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20447, + "name": "8-67", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 758.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 400.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270447, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 104.06, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210447, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -117, + 178 + ], + "fightmap": "bg_fight1_jh" + }, + "448": { + "id": 448, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20448, + "name": "8-68", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 761.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 400.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270448, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 104.2, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210448, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -87, + 206 + ], + "fightmap": "bg_fight1_jh" + }, + "449": { + "id": 449, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20449, + "name": "8-69", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 764.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 401.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270449, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 104.34, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210449, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -32, + 217 + ], + "fightmap": "bg_fight1_jh" + }, + "450": { + "id": 450, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20450, + "name": "8-70", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 767.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 402.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270450, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 104.48, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210450, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 30, + 221 + ], + "fightmap": "bg_fight1_jh" + }, + "451": { + "id": 451, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20451, + "name": "8-71", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 771.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 402.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270451, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 104.62, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210451, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 92, + 229 + ], + "fightmap": "bg_fight1_jh" + }, + "452": { + "id": 452, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20452, + "name": "8-72", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 774.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 403.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270452, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 104.76, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210452, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 135, + 251 + ], + "fightmap": "bg_fight1_jh" + }, + "453": { + "id": 453, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20453, + "name": "8-73", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 777.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 404.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270453, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 104.9, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210453, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 143, + 283 + ], + "fightmap": "bg_fight1_jh" + }, + "454": { + "id": 454, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20454, + "name": "8-74", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 781.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 404.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270454, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 105.04, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210454, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 79, + 322 + ], + "fightmap": "bg_fight1_jh" + }, + "455": { + "id": 455, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20455, + "name": "8-75", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 784.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 405.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270455, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 105.18, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210455, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 31, + 307 + ], + "fightmap": "bg_fight1_jh" + }, + "456": { + "id": 456, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20456, + "name": "8-76", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 787.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 406.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270456, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 105.32, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210456, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -16, + 294 + ], + "fightmap": "bg_fight1_jh" + }, + "457": { + "id": 457, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20457, + "name": "8-77", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 791.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 406.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270457, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 105.46, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210457, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -69, + 310 + ], + "fightmap": "bg_fight1_jh" + }, + "458": { + "id": 458, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20458, + "name": "8-78", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 794.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 407.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270458, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 105.6, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210458, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -61, + 350 + ], + "fightmap": "bg_fight1_jh" + }, + "459": { + "id": 459, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20459, + "name": "8-79", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 797.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 408.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270459, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 105.74, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210459, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -31, + 382 + ], + "fightmap": "bg_fight1_jh" + }, + "460": { + "id": 460, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20460, + "name": "8-80", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 801.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 408.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270460, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 105.88, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210460, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 20, + 406 + ], + "fightmap": "bg_fight1_jh" + }, + "461": { + "id": 461, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20461, + "name": "8-81", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 804.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 409.34 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270461, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 106.02, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210461, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 55, + 45 + ], + "fightmap": "bg_fight1_jh" + }, + "462": { + "id": 462, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20462, + "name": "8-82", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 807.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 409.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270462, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 106.16, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210462, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 12, + 57 + ], + "fightmap": "bg_fight1_jh" + }, + "463": { + "id": 463, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20463, + "name": "8-83", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 811.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 410.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270463, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 106.3, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210463, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -34, + 71 + ], + "fightmap": "bg_fight1_jh" + }, + "464": { + "id": 464, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20464, + "name": "8-84", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 814.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 411.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270464, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 106.44, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210464, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -80, + 85 + ], + "fightmap": "bg_fight1_jh" + }, + "465": { + "id": 465, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20465, + "name": "8-85", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 817.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 411.94 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270465, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 106.58, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210465, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -117, + 108 + ], + "fightmap": "bg_fight1_jh" + }, + "466": { + "id": 466, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20466, + "name": "8-86", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 821.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 412.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270466, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 106.72, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210466, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -133, + 145 + ], + "fightmap": "bg_fight1_jh" + }, + "467": { + "id": 467, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20467, + "name": "8-87", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 824.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 413.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270467, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 106.86, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210467, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -117, + 178 + ], + "fightmap": "bg_fight1_jh" + }, + "468": { + "id": 468, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20468, + "name": "8-88", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 828.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 413.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270468, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 107, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210468, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -87, + 206 + ], + "fightmap": "bg_fight1_jh" + }, + "469": { + "id": 469, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20469, + "name": "8-89", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 831.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 414.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270469, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 107.14, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210469, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -32, + 217 + ], + "fightmap": "bg_fight1_jh" + }, + "470": { + "id": 470, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20470, + "name": "8-90", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 835 + }, + { + "a": "attr", + "t": "nexp", + "n": 415.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270470, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 107.28, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210470, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 30, + 221 + ], + "fightmap": "bg_fight1_jh" + }, + "471": { + "id": 471, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20471, + "name": "8-91", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 838.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 415.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270471, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 107.42, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210471, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 92, + 229 + ], + "fightmap": "bg_fight1_jh" + }, + "472": { + "id": 472, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20472, + "name": "8-92", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 841.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 416.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270472, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 107.56, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210472, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 135, + 251 + ], + "fightmap": "bg_fight1_jh" + }, + "473": { + "id": 473, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20473, + "name": "8-93", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 845.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 417.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270473, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 107.7, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210473, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 143, + 283 + ], + "fightmap": "bg_fight1_jh" + }, + "474": { + "id": 474, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20474, + "name": "8-94", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 848.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 417.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270474, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 107.84, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210474, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 79, + 322 + ], + "fightmap": "bg_fight1_jh" + }, + "475": { + "id": 475, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20475, + "name": "8-95", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 852.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 418.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270475, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 107.98, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210475, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 31, + 307 + ], + "fightmap": "bg_fight1_jh" + }, + "476": { + "id": 476, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20476, + "name": "8-96", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 855.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 419.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270476, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 108.12, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210476, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -16, + 294 + ], + "fightmap": "bg_fight1_jh" + }, + "477": { + "id": 477, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20477, + "name": "8-97", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 859.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 419.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270477, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 108.26, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210477, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -69, + 310 + ], + "fightmap": "bg_fight1_jh" + }, + "478": { + "id": 478, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20478, + "name": "8-98", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 862.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 420.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270478, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 108.4, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210478, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -61, + 350 + ], + "fightmap": "bg_fight1_jh" + }, + "479": { + "id": 479, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20479, + "name": "8-99", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 866 + }, + { + "a": "attr", + "t": "nexp", + "n": 421.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270479, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 108.54, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210479, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -31, + 382 + ], + "fightmap": "bg_fight1_jh" + }, + "480": { + "id": 480, + "chapter": 8, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20480, + "name": "8-100", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 869.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 421.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270480, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 108.68, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210480, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 20, + 406 + ], + "fightmap": "bg_fight1_jh" + }, + "481": { + "id": 481, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20481, + "name": "9-1", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 873 + }, + { + "a": "attr", + "t": "nexp", + "n": 422.34 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270481, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 108.82, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210481, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -80, + 82 + ], + "fightmap": "bg_fight_gy" + }, + "482": { + "id": 482, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20482, + "name": "9-2", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 876.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 422.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270482, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 108.96, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210482, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -74, + 47 + ], + "fightmap": "bg_fight_gy" + }, + "483": { + "id": 483, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20483, + "name": "9-3", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 880 + }, + { + "a": "attr", + "t": "nexp", + "n": 423.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270483, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 109.1, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210483, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -47, + 14 + ], + "fightmap": "bg_fight_gy" + }, + "484": { + "id": 484, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20484, + "name": "9-4", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 883.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 424.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270484, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 109.24, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210484, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -2, + -7 + ], + "fightmap": "bg_fight_gy" + }, + "485": { + "id": 485, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20485, + "name": "9-5", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 887.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 424.94 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270485, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 109.38, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210485, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 59, + -5 + ], + "fightmap": "bg_fight_gy" + }, + "486": { + "id": 486, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20486, + "name": "9-6", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 890.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 425.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270486, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 109.52, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210486, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 114, + 16 + ], + "fightmap": "bg_fight_gy" + }, + "487": { + "id": 487, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20487, + "name": "9-7", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 894.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 426.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270487, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 109.66, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210487, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 140, + 47 + ], + "fightmap": "bg_fight_gy" + }, + "488": { + "id": 488, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20488, + "name": "9-8", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 897.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 426.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270488, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 109.8, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210488, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 144, + 82 + ], + "fightmap": "bg_fight_gy" + }, + "489": { + "id": 489, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20489, + "name": "9-9", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 901.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 427.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270489, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 109.94, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210489, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 134, + 119 + ], + "fightmap": "bg_fight_gy" + }, + "490": { + "id": 490, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20490, + "name": "9-10", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 904.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 428.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270490, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 110.08, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210490, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 103, + 146 + ], + "fightmap": "bg_fight_gy" + }, + "491": { + "id": 491, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20491, + "name": "9-11", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 908.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 428.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270491, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 110.22, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210491, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 69, + 167 + ], + "fightmap": "bg_fight_gy" + }, + "492": { + "id": 492, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20492, + "name": "9-12", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 911.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 429.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270492, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 110.36, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210492, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 28, + 176 + ], + "fightmap": "bg_fight_gy" + }, + "493": { + "id": 493, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20493, + "name": "9-13", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 915.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 430.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270493, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 110.5, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210493, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 32, + 210 + ], + "fightmap": "bg_fight_gy" + }, + "494": { + "id": 494, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20494, + "name": "9-14", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 919.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 430.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270494, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 110.64, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210494, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 37, + 241 + ], + "fightmap": "bg_fight_gy" + }, + "495": { + "id": 495, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20495, + "name": "9-15", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 922.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 431.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270495, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 110.78, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210495, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 42, + 273 + ], + "fightmap": "bg_fight_gy" + }, + "496": { + "id": 496, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20496, + "name": "9-16", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 926.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 432.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270496, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 110.92, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210496, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 47, + 303 + ], + "fightmap": "bg_fight_gy" + }, + "497": { + "id": 497, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20497, + "name": "9-17", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 929.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 432.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270497, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 111.06, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210497, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 41, + 335 + ], + "fightmap": "bg_fight_gy" + }, + "498": { + "id": 498, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20498, + "name": "9-18", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 933.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 433.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270498, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 111.2, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210498, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -1, + 344 + ], + "fightmap": "bg_fight_gy" + }, + "499": { + "id": 499, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20499, + "name": "9-19", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 937.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 434.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270499, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 111.34, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210499, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -46, + 348 + ], + "fightmap": "bg_fight_gy" + }, + "500": { + "id": 500, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20500, + "name": "9-20", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 940.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 434.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270500, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 111.48, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210500, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -80, + 364 + ], + "fightmap": "bg_fight_gy" + }, + "501": { + "id": 501, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20501, + "name": "9-21", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 944.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 435.34 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270501, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 111.62, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210501, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -80, + 82 + ], + "fightmap": "bg_fight_gy" + }, + "502": { + "id": 502, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20502, + "name": "9-22", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 948 + }, + { + "a": "attr", + "t": "nexp", + "n": 435.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270502, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 111.76, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210502, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -74, + 47 + ], + "fightmap": "bg_fight_gy" + }, + "503": { + "id": 503, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20503, + "name": "9-23", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 951.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 436.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270503, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 111.9, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210503, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -47, + 14 + ], + "fightmap": "bg_fight_gy" + }, + "504": { + "id": 504, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20504, + "name": "9-24", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 955.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 437.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270504, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 112.04, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210504, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -2, + -7 + ], + "fightmap": "bg_fight_gy" + }, + "505": { + "id": 505, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20505, + "name": "9-25", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 959 + }, + { + "a": "attr", + "t": "nexp", + "n": 437.94 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270505, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 112.18, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210505, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 59, + -5 + ], + "fightmap": "bg_fight_gy" + }, + "506": { + "id": 506, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20506, + "name": "9-26", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 962.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 438.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270506, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 112.32, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210506, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 114, + 16 + ], + "fightmap": "bg_fight_gy" + }, + "507": { + "id": 507, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20507, + "name": "9-27", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 966.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 439.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270507, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 112.46, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210507, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 140, + 47 + ], + "fightmap": "bg_fight_gy" + }, + "508": { + "id": 508, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20508, + "name": "9-28", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 970 + }, + { + "a": "attr", + "t": "nexp", + "n": 439.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270508, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 112.6, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210508, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 144, + 82 + ], + "fightmap": "bg_fight_gy" + }, + "509": { + "id": 509, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20509, + "name": "9-29", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 973.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 440.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270509, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 112.74, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210509, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 134, + 119 + ], + "fightmap": "bg_fight_gy" + }, + "510": { + "id": 510, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20510, + "name": "9-30", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 977.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 441.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270510, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 112.88, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210510, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 103, + 146 + ], + "fightmap": "bg_fight_gy" + }, + "511": { + "id": 511, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20511, + "name": "9-31", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 981.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 441.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270511, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 113.02, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210511, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 69, + 167 + ], + "fightmap": "bg_fight_gy" + }, + "512": { + "id": 512, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20512, + "name": "9-32", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 984.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 442.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270512, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 113.16, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210512, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 28, + 176 + ], + "fightmap": "bg_fight_gy" + }, + "513": { + "id": 513, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20513, + "name": "9-33", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 988.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 443.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270513, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 113.3, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210513, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 32, + 210 + ], + "fightmap": "bg_fight_gy" + }, + "514": { + "id": 514, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20514, + "name": "9-34", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 992.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 443.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270514, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 113.44, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210514, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 37, + 241 + ], + "fightmap": "bg_fight_gy" + }, + "515": { + "id": 515, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20515, + "name": "9-35", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 996 + }, + { + "a": "attr", + "t": "nexp", + "n": 444.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270515, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 113.58, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210515, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 42, + 273 + ], + "fightmap": "bg_fight_gy" + }, + "516": { + "id": 516, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20516, + "name": "9-36", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 999.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 445.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270516, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 113.72, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210516, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 47, + 303 + ], + "fightmap": "bg_fight_gy" + }, + "517": { + "id": 517, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20517, + "name": "9-37", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1003.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 445.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270517, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 113.86, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210517, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 41, + 335 + ], + "fightmap": "bg_fight_gy" + }, + "518": { + "id": 518, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20518, + "name": "9-38", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1007.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 446.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270518, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 114, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210518, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -1, + 344 + ], + "fightmap": "bg_fight_gy" + }, + "519": { + "id": 519, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20519, + "name": "9-39", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1011 + }, + { + "a": "attr", + "t": "nexp", + "n": 447.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270519, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 114.14, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210519, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -46, + 348 + ], + "fightmap": "bg_fight_gy" + }, + "520": { + "id": 520, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20520, + "name": "9-40", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1014.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 447.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270520, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 114.28, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210520, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -80, + 364 + ], + "fightmap": "bg_fight_gy" + }, + "521": { + "id": 521, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20521, + "name": "9-41", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1018.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 582.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270521, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 114.42, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210521, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -80, + 82 + ], + "fightmap": "bg_fight_gy" + }, + "522": { + "id": 522, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20522, + "name": "9-42", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1022.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 583.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270522, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 114.56, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210522, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -74, + 47 + ], + "fightmap": "bg_fight_gy" + }, + "523": { + "id": 523, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20523, + "name": "9-43", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1026.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 584.53 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270523, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 114.7, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210523, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -47, + 14 + ], + "fightmap": "bg_fight_gy" + }, + "524": { + "id": 524, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20524, + "name": "9-44", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1029.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 585.38 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270524, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 114.84, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210524, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -2, + -7 + ], + "fightmap": "bg_fight_gy" + }, + "525": { + "id": 525, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20525, + "name": "9-45", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1033.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 586.22 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270525, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 114.98, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210525, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 59, + -5 + ], + "fightmap": "bg_fight_gy" + }, + "526": { + "id": 526, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20526, + "name": "9-46", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1037.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 587.07 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270526, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 115.12, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210526, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 114, + 16 + ], + "fightmap": "bg_fight_gy" + }, + "527": { + "id": 527, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20527, + "name": "9-47", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1041.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 587.91 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270527, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 115.26, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210527, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 140, + 47 + ], + "fightmap": "bg_fight_gy" + }, + "528": { + "id": 528, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20528, + "name": "9-48", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1045.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 588.76 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270528, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 115.4, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210528, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 144, + 82 + ], + "fightmap": "bg_fight_gy" + }, + "529": { + "id": 529, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20529, + "name": "9-49", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1049 + }, + { + "a": "attr", + "t": "nexp", + "n": 589.6 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270529, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 115.54, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210529, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 134, + 119 + ], + "fightmap": "bg_fight_gy" + }, + "530": { + "id": 530, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20530, + "name": "9-50", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1052.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 590.45 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270530, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 115.68, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210530, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 103, + 146 + ], + "fightmap": "bg_fight_gy" + }, + "531": { + "id": 531, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20531, + "name": "9-51", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1056.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 591.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270531, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 115.82, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210531, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 69, + 167 + ], + "fightmap": "bg_fight_gy" + }, + "532": { + "id": 532, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20532, + "name": "9-52", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1060.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 592.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270532, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 115.96, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210532, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 28, + 176 + ], + "fightmap": "bg_fight_gy" + }, + "533": { + "id": 533, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20533, + "name": "9-53", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1064.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 592.98 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270533, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 116.1, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210533, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 32, + 210 + ], + "fightmap": "bg_fight_gy" + }, + "534": { + "id": 534, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20534, + "name": "9-54", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1068.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 593.83 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270534, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 116.24, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210534, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 37, + 241 + ], + "fightmap": "bg_fight_gy" + }, + "535": { + "id": 535, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20535, + "name": "9-55", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1072.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 594.67 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270535, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 116.38, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210535, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 42, + 273 + ], + "fightmap": "bg_fight_gy" + }, + "536": { + "id": 536, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20536, + "name": "9-56", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1076 + }, + { + "a": "attr", + "t": "nexp", + "n": 595.52 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270536, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 116.52, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210536, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 47, + 303 + ], + "fightmap": "bg_fight_gy" + }, + "537": { + "id": 537, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20537, + "name": "9-57", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1079.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 619.3 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270537, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 116.66, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210537, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 41, + 335 + ], + "fightmap": "bg_fight_gy" + }, + "538": { + "id": 538, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20538, + "name": "9-58", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1083.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 620.18 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270538, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 116.8, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210538, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -1, + 344 + ], + "fightmap": "bg_fight_gy" + }, + "539": { + "id": 539, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20539, + "name": "9-59", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1087.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 621.05 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270539, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 116.94, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210539, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -46, + 348 + ], + "fightmap": "bg_fight_gy" + }, + "540": { + "id": 540, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20540, + "name": "9-60", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1091.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 621.93 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270540, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 117.08, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210540, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -80, + 364 + ], + "fightmap": "bg_fight_gy" + }, + "541": { + "id": 541, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20541, + "name": "9-61", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1095.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 622.81 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270541, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 117.22, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210541, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -80, + 82 + ], + "fightmap": "bg_fight_gy" + }, + "542": { + "id": 542, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20542, + "name": "9-62", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1099.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 623.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270542, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 117.36, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210542, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -74, + 47 + ], + "fightmap": "bg_fight_gy" + }, + "543": { + "id": 543, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20543, + "name": "9-63", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1103.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 624.56 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270543, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 117.5, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210543, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -47, + 14 + ], + "fightmap": "bg_fight_gy" + }, + "544": { + "id": 544, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20544, + "name": "9-64", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1107.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 625.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270544, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 117.64, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210544, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -2, + -7 + ], + "fightmap": "bg_fight_gy" + }, + "545": { + "id": 545, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20545, + "name": "9-65", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1111.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 626.32 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270545, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 117.78, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210545, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 59, + -5 + ], + "fightmap": "bg_fight_gy" + }, + "546": { + "id": 546, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20546, + "name": "9-66", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1115.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 627.2 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270546, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 117.92, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210546, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 114, + 16 + ], + "fightmap": "bg_fight_gy" + }, + "547": { + "id": 547, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20547, + "name": "9-67", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1119.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 628.07 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270547, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 118.06, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210547, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 140, + 47 + ], + "fightmap": "bg_fight_gy" + }, + "548": { + "id": 548, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20548, + "name": "9-68", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1123.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 628.95 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270548, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 118.2, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210548, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 144, + 82 + ], + "fightmap": "bg_fight_gy" + }, + "549": { + "id": 549, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20549, + "name": "9-69", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1127.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 629.83 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270549, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 118.34, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210549, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 134, + 119 + ], + "fightmap": "bg_fight_gy" + }, + "550": { + "id": 550, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20550, + "name": "9-70", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1131.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 630.71 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270550, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 118.48, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210550, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 103, + 146 + ], + "fightmap": "bg_fight_gy" + }, + "551": { + "id": 551, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20551, + "name": "9-71", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1135.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 631.58 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270551, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 118.62, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210551, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 69, + 167 + ], + "fightmap": "bg_fight_gy" + }, + "552": { + "id": 552, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20552, + "name": "9-72", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1139.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 632.46 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270552, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 118.76, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210552, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 28, + 176 + ], + "fightmap": "bg_fight_gy" + }, + "553": { + "id": 553, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20553, + "name": "9-73", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1143.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 656.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270553, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 118.9, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210553, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 32, + 210 + ], + "fightmap": "bg_fight_gy" + }, + "554": { + "id": 554, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20554, + "name": "9-74", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1147.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 657.71 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270554, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 119.04, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210554, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 37, + 241 + ], + "fightmap": "bg_fight_gy" + }, + "555": { + "id": 555, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20555, + "name": "9-75", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1151.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 658.62 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270555, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 119.18, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210555, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 42, + 273 + ], + "fightmap": "bg_fight_gy" + }, + "556": { + "id": 556, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20556, + "name": "9-76", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1155.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 659.53 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270556, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 119.32, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210556, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 47, + 303 + ], + "fightmap": "bg_fight_gy" + }, + "557": { + "id": 557, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20557, + "name": "9-77", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1159.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 660.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270557, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 119.46, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210557, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 41, + 335 + ], + "fightmap": "bg_fight_gy" + }, + "558": { + "id": 558, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20558, + "name": "9-78", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1163.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 661.35 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270558, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 119.6, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210558, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -1, + 344 + ], + "fightmap": "bg_fight_gy" + }, + "559": { + "id": 559, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20559, + "name": "9-79", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1167.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 662.26 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270559, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 119.74, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210559, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -46, + 348 + ], + "fightmap": "bg_fight_gy" + }, + "560": { + "id": 560, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20560, + "name": "9-80", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1171.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 663.17 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270560, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 119.88, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210560, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -80, + 364 + ], + "fightmap": "bg_fight_gy" + }, + "561": { + "id": 561, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20561, + "name": "9-81", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1175.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 664.08 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270561, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 120.02, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210561, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -80, + 82 + ], + "fightmap": "bg_fight_gy" + }, + "562": { + "id": 562, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20562, + "name": "9-82", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1179.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 664.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270562, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 120.16, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210562, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -74, + 47 + ], + "fightmap": "bg_fight_gy" + }, + "563": { + "id": 563, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20563, + "name": "9-83", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1183.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 665.9 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270563, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 120.3, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210563, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -47, + 14 + ], + "fightmap": "bg_fight_gy" + }, + "564": { + "id": 564, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20564, + "name": "9-84", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1187.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 666.81 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270564, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 120.44, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210564, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -2, + -7 + ], + "fightmap": "bg_fight_gy" + }, + "565": { + "id": 565, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20565, + "name": "9-85", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1191.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 667.72 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270565, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 120.58, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210565, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 59, + -5 + ], + "fightmap": "bg_fight_gy" + }, + "566": { + "id": 566, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20566, + "name": "9-86", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1195.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 668.63 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270566, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 120.72, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210566, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 114, + 16 + ], + "fightmap": "bg_fight_gy" + }, + "567": { + "id": 567, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20567, + "name": "9-87", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1199.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 669.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270567, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 120.86, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210567, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 140, + 47 + ], + "fightmap": "bg_fight_gy" + }, + "568": { + "id": 568, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20568, + "name": "9-88", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1203.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 670.45 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270568, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 121, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210568, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 144, + 82 + ], + "fightmap": "bg_fight_gy" + }, + "569": { + "id": 569, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20569, + "name": "9-89", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1208 + }, + { + "a": "attr", + "t": "nexp", + "n": 695.33 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270569, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 121.14, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210569, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 134, + 119 + ], + "fightmap": "bg_fight_gy" + }, + "570": { + "id": 570, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20570, + "name": "9-90", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1212.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 696.28 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270570, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 121.28, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210570, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 103, + 146 + ], + "fightmap": "bg_fight_gy" + }, + "571": { + "id": 571, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20571, + "name": "9-91", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1216.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 697.22 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270571, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 121.42, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210571, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 69, + 167 + ], + "fightmap": "bg_fight_gy" + }, + "572": { + "id": 572, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20572, + "name": "9-92", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1220.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 698.16 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270572, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 121.56, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210572, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 28, + 176 + ], + "fightmap": "bg_fight_gy" + }, + "573": { + "id": 573, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20573, + "name": "9-93", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1224.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 699.1 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270573, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 121.7, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210573, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 32, + 210 + ], + "fightmap": "bg_fight_gy" + }, + "574": { + "id": 574, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20574, + "name": "9-94", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1228.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 700.05 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270574, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 121.84, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210574, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 37, + 241 + ], + "fightmap": "bg_fight_gy" + }, + "575": { + "id": 575, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20575, + "name": "9-95", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1232.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 700.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270575, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 121.98, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210575, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 42, + 273 + ], + "fightmap": "bg_fight_gy" + }, + "576": { + "id": 576, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20576, + "name": "9-96", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1237 + }, + { + "a": "attr", + "t": "nexp", + "n": 701.93 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270576, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 122.12, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210576, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 47, + 303 + ], + "fightmap": "bg_fight_gy" + }, + "577": { + "id": 577, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20577, + "name": "9-97", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1241.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 702.87 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270577, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 122.26, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210577, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 41, + 335 + ], + "fightmap": "bg_fight_gy" + }, + "578": { + "id": 578, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20578, + "name": "9-98", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1245.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 703.82 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270578, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 122.4, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210578, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -1, + 344 + ], + "fightmap": "bg_fight_gy" + }, + "579": { + "id": 579, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20579, + "name": "9-99", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1249.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 704.76 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270579, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 122.54, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210579, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -46, + 348 + ], + "fightmap": "bg_fight_gy" + }, + "580": { + "id": 580, + "chapter": 9, + "mapbg": "tx_map_gy", + "needLv": 1, + "npcId": 20580, + "name": "9-100", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1253.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 705.7 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270580, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 122.68, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210580, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -80, + 364 + ], + "fightmap": "bg_fight_gy" + }, + "581": { + "id": 581, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20581, + "name": "10-1", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1257.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 706.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270581, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 122.82, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210581, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 99, + 13 + ], + "fightmap": "bg_fight1" + }, + "582": { + "id": 582, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20582, + "name": "10-2", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1262.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 707.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270582, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 122.96, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210582, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 136, + 34 + ], + "fightmap": "bg_fight1" + }, + "583": { + "id": 583, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20583, + "name": "10-3", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1266.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 708.53 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270583, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 123.1, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210583, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 131, + 65 + ], + "fightmap": "bg_fight1" + }, + "584": { + "id": 584, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20584, + "name": "10-4", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1270.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 709.47 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270584, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 123.24, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210584, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 87, + 90 + ], + "fightmap": "bg_fight1" + }, + "585": { + "id": 585, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20585, + "name": "10-5", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1274.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 734.91 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270585, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 123.38, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210585, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 47, + 108 + ], + "fightmap": "bg_fight1" + }, + "586": { + "id": 586, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20586, + "name": "10-6", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1278.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 735.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270586, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 123.52, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210586, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 6, + 129 + ], + "fightmap": "bg_fight1" + }, + "587": { + "id": 587, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20587, + "name": "10-7", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1283.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 736.86 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270587, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 123.66, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210587, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -29, + 156 + ], + "fightmap": "bg_fight1" + }, + "588": { + "id": 588, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20588, + "name": "10-8", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1287.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 737.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270588, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 123.8, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210588, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -9, + 185 + ], + "fightmap": "bg_fight1" + }, + "589": { + "id": 589, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20589, + "name": "10-9", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1291.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 738.81 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270589, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 123.94, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210589, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 32, + 214 + ], + "fightmap": "bg_fight1" + }, + "590": { + "id": 590, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20590, + "name": "10-10", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1295.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 739.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270590, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 124.08, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210590, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 80, + 239 + ], + "fightmap": "bg_fight1" + }, + "591": { + "id": 591, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20591, + "name": "10-11", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1300.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 740.76 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270591, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 124.22, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210591, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 132, + 259 + ], + "fightmap": "bg_fight1" + }, + "592": { + "id": 592, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20592, + "name": "10-12", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1304.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 741.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270592, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 124.36, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210592, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 158, + 301 + ], + "fightmap": "bg_fight1" + }, + "593": { + "id": 593, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20593, + "name": "10-13", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1308.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 742.71 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270593, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 124.5, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210593, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 120, + 333 + ], + "fightmap": "bg_fight1" + }, + "594": { + "id": 594, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20594, + "name": "10-14", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1313 + }, + { + "a": "attr", + "t": "nexp", + "n": 743.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270594, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 124.64, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210594, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 51, + 335 + ], + "fightmap": "bg_fight1" + }, + "595": { + "id": 595, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20595, + "name": "10-15", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1317.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 744.66 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270595, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 124.78, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210595, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -9, + 329 + ], + "fightmap": "bg_fight1" + }, + "596": { + "id": 596, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20596, + "name": "10-16", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1321.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 745.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270596, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 124.92, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210596, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -74, + 318 + ], + "fightmap": "bg_fight1" + }, + "597": { + "id": 597, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20597, + "name": "10-17", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1325.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 746.61 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270597, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 125.06, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210597, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -128, + 325 + ], + "fightmap": "bg_fight1" + }, + "598": { + "id": 598, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20598, + "name": "10-18", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1330.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 747.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270598, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 125.2, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210598, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -152, + 358 + ], + "fightmap": "bg_fight1" + }, + "599": { + "id": 599, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20599, + "name": "10-19", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1334.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 748.56 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270599, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 125.34, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210599, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -164, + 390 + ], + "fightmap": "bg_fight1" + }, + "600": { + "id": 600, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20600, + "name": "10-20", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1338.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 749.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270600, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 125.48, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210600, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -130, + 421 + ], + "fightmap": "bg_fight1" + }, + "601": { + "id": 601, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20601, + "name": "10-21", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1343.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 750.51 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270601, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 125.62, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210601, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 99, + 13 + ], + "fightmap": "bg_fight1" + }, + "602": { + "id": 602, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20602, + "name": "10-22", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1347.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 776.53 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270602, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 125.76, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210602, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 136, + 34 + ], + "fightmap": "bg_fight1" + }, + "603": { + "id": 603, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20603, + "name": "10-23", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1351.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 777.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270603, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 125.9, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210603, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 131, + 65 + ], + "fightmap": "bg_fight1" + }, + "604": { + "id": 604, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20604, + "name": "10-24", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1356.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 778.55 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270604, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 126.04, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210604, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 87, + 90 + ], + "fightmap": "bg_fight1" + }, + "605": { + "id": 605, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20605, + "name": "10-25", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1360.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 779.56 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270605, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 126.18, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210605, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 47, + 108 + ], + "fightmap": "bg_fight1" + }, + "606": { + "id": 606, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20606, + "name": "10-26", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1365 + }, + { + "a": "attr", + "t": "nexp", + "n": 780.56 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270606, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 126.32, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210606, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 6, + 129 + ], + "fightmap": "bg_fight1" + }, + "607": { + "id": 607, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20607, + "name": "10-27", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1369.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 781.57 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270607, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 126.46, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210607, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -29, + 156 + ], + "fightmap": "bg_fight1" + }, + "608": { + "id": 608, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20608, + "name": "10-28", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1373.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 782.58 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270608, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 126.6, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210608, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -9, + 185 + ], + "fightmap": "bg_fight1" + }, + "609": { + "id": 609, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20609, + "name": "10-29", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1378.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 783.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270609, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 126.74, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210609, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 32, + 214 + ], + "fightmap": "bg_fight1" + }, + "610": { + "id": 610, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20610, + "name": "10-30", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1382.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 784.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270610, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 126.88, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210610, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 80, + 239 + ], + "fightmap": "bg_fight1" + }, + "611": { + "id": 611, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20611, + "name": "10-31", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1387 + }, + { + "a": "attr", + "t": "nexp", + "n": 785.6 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270611, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 127.02, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210611, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 132, + 259 + ], + "fightmap": "bg_fight1" + }, + "612": { + "id": 612, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20612, + "name": "10-32", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1391.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 786.61 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270612, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 127.16, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210612, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 158, + 301 + ], + "fightmap": "bg_fight1" + }, + "613": { + "id": 613, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20613, + "name": "10-33", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1395.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 787.62 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270613, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 127.3, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210613, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 120, + 333 + ], + "fightmap": "bg_fight1" + }, + "614": { + "id": 614, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20614, + "name": "10-34", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1400.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 788.62 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270614, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 127.44, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210614, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 51, + 335 + ], + "fightmap": "bg_fight1" + }, + "615": { + "id": 615, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20615, + "name": "10-35", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1404.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 789.63 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270615, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 127.58, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210615, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -9, + 329 + ], + "fightmap": "bg_fight1" + }, + "616": { + "id": 616, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20616, + "name": "10-36", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1409.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 790.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270616, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 127.72, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210616, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -74, + 318 + ], + "fightmap": "bg_fight1" + }, + "617": { + "id": 617, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20617, + "name": "10-37", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1413.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 817.18 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270617, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 127.86, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210617, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -128, + 325 + ], + "fightmap": "bg_fight1" + }, + "618": { + "id": 618, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20618, + "name": "10-38", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1418 + }, + { + "a": "attr", + "t": "nexp", + "n": 818.22 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270618, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 128, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210618, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -152, + 358 + ], + "fightmap": "bg_fight1" + }, + "619": { + "id": 619, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20619, + "name": "10-39", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1422.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 819.26 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270619, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 128.14, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210619, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -164, + 390 + ], + "fightmap": "bg_fight1" + }, + "620": { + "id": 620, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20620, + "name": "10-40", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1426.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 820.3 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270620, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 128.28, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210620, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -130, + 421 + ], + "fightmap": "bg_fight1" + }, + "621": { + "id": 621, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20621, + "name": "10-41", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1431.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 821.34 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270621, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 128.42, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210621, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 99, + 13 + ], + "fightmap": "bg_fight1" + }, + "622": { + "id": 622, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20622, + "name": "10-42", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1435.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 822.38 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270622, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 128.56, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210622, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 136, + 34 + ], + "fightmap": "bg_fight1" + }, + "623": { + "id": 623, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20623, + "name": "10-43", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1440.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 823.42 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270623, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 128.7, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210623, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 131, + 65 + ], + "fightmap": "bg_fight1" + }, + "624": { + "id": 624, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20624, + "name": "10-44", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1444.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 824.46 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270624, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 128.84, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210624, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 87, + 90 + ], + "fightmap": "bg_fight1" + }, + "625": { + "id": 625, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20625, + "name": "10-45", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1449.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 825.5 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270625, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 128.98, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210625, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 47, + 108 + ], + "fightmap": "bg_fight1" + }, + "626": { + "id": 626, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20626, + "name": "10-46", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1453.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 826.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270626, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 129.12, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210626, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 6, + 129 + ], + "fightmap": "bg_fight1" + }, + "627": { + "id": 627, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20627, + "name": "10-47", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1458.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 827.58 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270627, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 129.26, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210627, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -29, + 156 + ], + "fightmap": "bg_fight1" + }, + "628": { + "id": 628, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20628, + "name": "10-48", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1462.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 828.62 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270628, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 129.4, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210628, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -9, + 185 + ], + "fightmap": "bg_fight1" + }, + "629": { + "id": 629, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20629, + "name": "10-49", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1467.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 829.66 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270629, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 129.54, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210629, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 32, + 214 + ], + "fightmap": "bg_fight1" + }, + "630": { + "id": 630, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20630, + "name": "10-50", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1472 + }, + { + "a": "attr", + "t": "nexp", + "n": 830.7 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270630, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 129.68, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210630, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 80, + 239 + ], + "fightmap": "bg_fight1" + }, + "631": { + "id": 631, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20631, + "name": "10-51", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1476.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 831.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270631, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 129.82, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210631, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 132, + 259 + ], + "fightmap": "bg_fight1" + }, + "632": { + "id": 632, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20632, + "name": "10-52", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1481.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 832.78 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270632, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 129.96, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210632, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 158, + 301 + ], + "fightmap": "bg_fight1" + }, + "633": { + "id": 633, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20633, + "name": "10-53", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1485.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 859.88 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270633, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 130.1, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210633, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 120, + 333 + ], + "fightmap": "bg_fight1" + }, + "634": { + "id": 634, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20634, + "name": "10-54", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1490.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 860.95 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270634, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 130.24, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210634, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 51, + 335 + ], + "fightmap": "bg_fight1" + }, + "635": { + "id": 635, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20635, + "name": "10-55", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1494.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 862.03 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270635, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 130.38, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210635, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -9, + 329 + ], + "fightmap": "bg_fight1" + }, + "636": { + "id": 636, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20636, + "name": "10-56", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1499.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 863.1 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270636, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 130.52, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210636, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -74, + 318 + ], + "fightmap": "bg_fight1" + }, + "637": { + "id": 637, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20637, + "name": "10-57", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1504 + }, + { + "a": "attr", + "t": "nexp", + "n": 864.17 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270637, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 130.66, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210637, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -128, + 325 + ], + "fightmap": "bg_fight1" + }, + "638": { + "id": 638, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20638, + "name": "10-58", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1508.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 865.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270638, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 130.8, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210638, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -152, + 358 + ], + "fightmap": "bg_fight1" + }, + "639": { + "id": 639, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20639, + "name": "10-59", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1513.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 866.32 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270639, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 130.94, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210639, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -164, + 390 + ], + "fightmap": "bg_fight1" + }, + "640": { + "id": 640, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20640, + "name": "10-60", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1517.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 867.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270640, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 131.08, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210640, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -130, + 421 + ], + "fightmap": "bg_fight1" + }, + "641": { + "id": 641, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20641, + "name": "10-61", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1522.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 868.46 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270641, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 131.22, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210641, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 99, + 13 + ], + "fightmap": "bg_fight1" + }, + "642": { + "id": 642, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20642, + "name": "10-62", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1527 + }, + { + "a": "attr", + "t": "nexp", + "n": 869.53 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270642, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 131.36, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210642, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 136, + 34 + ], + "fightmap": "bg_fight1" + }, + "643": { + "id": 643, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20643, + "name": "10-63", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1531.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 870.61 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270643, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 131.5, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210643, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 131, + 65 + ], + "fightmap": "bg_fight1" + }, + "644": { + "id": 644, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20644, + "name": "10-64", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1536.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 871.68 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270644, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 131.64, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210644, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 87, + 90 + ], + "fightmap": "bg_fight1" + }, + "645": { + "id": 645, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20645, + "name": "10-65", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1540.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 872.75 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270645, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 131.78, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210645, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 47, + 108 + ], + "fightmap": "bg_fight1" + }, + "646": { + "id": 646, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20646, + "name": "10-66", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1545.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 873.82 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270646, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 131.92, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210646, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 6, + 129 + ], + "fightmap": "bg_fight1" + }, + "647": { + "id": 647, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20647, + "name": "10-67", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1550.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 874.9 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270647, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 132.06, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210647, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -29, + 156 + ], + "fightmap": "bg_fight1" + }, + "648": { + "id": 648, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20648, + "name": "10-68", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1554.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 875.97 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270648, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 132.2, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210648, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -9, + 185 + ], + "fightmap": "bg_fight1" + }, + "649": { + "id": 649, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20649, + "name": "10-69", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1559.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 903.62 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270649, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 132.34, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210649, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 32, + 214 + ], + "fightmap": "bg_fight1" + }, + "650": { + "id": 650, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20650, + "name": "10-70", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1564.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 904.72 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270650, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 132.48, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210650, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 80, + 239 + ], + "fightmap": "bg_fight1" + }, + "651": { + "id": 651, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20651, + "name": "10-71", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1568.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 905.83 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270651, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 132.62, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210651, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 132, + 259 + ], + "fightmap": "bg_fight1" + }, + "652": { + "id": 652, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20652, + "name": "10-72", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1573.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 906.93 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270652, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 132.76, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210652, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 158, + 301 + ], + "fightmap": "bg_fight1" + }, + "653": { + "id": 653, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20653, + "name": "10-73", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1578.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 908.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270653, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 132.9, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210653, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 120, + 333 + ], + "fightmap": "bg_fight1" + }, + "654": { + "id": 654, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20654, + "name": "10-74", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1583 + }, + { + "a": "attr", + "t": "nexp", + "n": 909.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270654, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 133.04, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210654, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 51, + 335 + ], + "fightmap": "bg_fight1" + }, + "655": { + "id": 655, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20655, + "name": "10-75", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1587.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 910.25 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270655, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 133.18, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210655, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -9, + 329 + ], + "fightmap": "bg_fight1" + }, + "656": { + "id": 656, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20656, + "name": "10-76", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1592.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 911.35 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270656, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 133.32, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210656, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -74, + 318 + ], + "fightmap": "bg_fight1" + }, + "657": { + "id": 657, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20657, + "name": "10-77", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1597.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 912.46 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270657, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 133.46, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210657, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -128, + 325 + ], + "fightmap": "bg_fight1" + }, + "658": { + "id": 658, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20658, + "name": "10-78", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1601.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 913.56 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270658, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 133.6, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210658, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -152, + 358 + ], + "fightmap": "bg_fight1" + }, + "659": { + "id": 659, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20659, + "name": "10-79", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1606.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 914.67 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270659, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 133.74, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210659, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -164, + 390 + ], + "fightmap": "bg_fight1" + }, + "660": { + "id": 660, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20660, + "name": "10-80", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1611.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 915.77 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270660, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 133.88, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210660, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -130, + 421 + ], + "fightmap": "bg_fight1" + }, + "661": { + "id": 661, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20661, + "name": "10-81", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1616.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 916.88 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270661, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 134.02, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210661, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 99, + 13 + ], + "fightmap": "bg_fight1" + }, + "662": { + "id": 662, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20662, + "name": "10-82", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1620.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 917.98 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270662, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 134.16, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210662, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 136, + 34 + ], + "fightmap": "bg_fight1" + }, + "663": { + "id": 663, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20663, + "name": "10-83", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1625.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 919.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270663, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 134.3, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210663, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 131, + 65 + ], + "fightmap": "bg_fight1" + }, + "664": { + "id": 664, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20664, + "name": "10-84", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1630.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 920.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270664, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 134.44, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210664, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 87, + 90 + ], + "fightmap": "bg_fight1" + }, + "665": { + "id": 665, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20665, + "name": "10-85", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1635.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 932.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270665, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 134.58, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210665, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 47, + 108 + ], + "fightmap": "bg_fight1" + }, + "666": { + "id": 666, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20666, + "name": "10-86", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1640 + }, + { + "a": "attr", + "t": "nexp", + "n": 933.25 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270666, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 134.72, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210666, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 6, + 129 + ], + "fightmap": "bg_fight1" + }, + "667": { + "id": 667, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20667, + "name": "10-87", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1644.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 934.37 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270667, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 134.86, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210667, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -29, + 156 + ], + "fightmap": "bg_fight1" + }, + "668": { + "id": 668, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20668, + "name": "10-88", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1649.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 935.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270668, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 135, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210668, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -9, + 185 + ], + "fightmap": "bg_fight1" + }, + "669": { + "id": 669, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20669, + "name": "10-89", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1654.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 936.61 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270669, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 135.14, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210669, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 32, + 214 + ], + "fightmap": "bg_fight1" + }, + "670": { + "id": 670, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20670, + "name": "10-90", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1659.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 937.73 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270670, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 135.28, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210670, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 80, + 239 + ], + "fightmap": "bg_fight1" + }, + "671": { + "id": 671, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20671, + "name": "10-91", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1664.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 938.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270671, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 135.42, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210671, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 132, + 259 + ], + "fightmap": "bg_fight1" + }, + "672": { + "id": 672, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20672, + "name": "10-92", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1668.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 939.96 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270672, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 135.56, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210672, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 158, + 301 + ], + "fightmap": "bg_fight1" + }, + "673": { + "id": 673, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20673, + "name": "10-93", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1673.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 941.08 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270673, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 135.7, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210673, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 120, + 333 + ], + "fightmap": "bg_fight1" + }, + "674": { + "id": 674, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20674, + "name": "10-94", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1678.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 942.2 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270674, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 135.84, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210674, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 51, + 335 + ], + "fightmap": "bg_fight1" + }, + "675": { + "id": 675, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20675, + "name": "10-95", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1683.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 943.32 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270675, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 135.98, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210675, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -9, + 329 + ], + "fightmap": "bg_fight1" + }, + "676": { + "id": 676, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20676, + "name": "10-96", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1688.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 944.43 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270676, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 136.12, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210676, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -74, + 318 + ], + "fightmap": "bg_fight1" + }, + "677": { + "id": 677, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20677, + "name": "10-97", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1693.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 945.55 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270677, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 136.26, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210677, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -128, + 325 + ], + "fightmap": "bg_fight1" + }, + "678": { + "id": 678, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20678, + "name": "10-98", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1698.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 946.67 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270678, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 136.4, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210678, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -152, + 358 + ], + "fightmap": "bg_fight1" + }, + "679": { + "id": 679, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20679, + "name": "10-99", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1702.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 947.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270679, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 136.54, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210679, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -164, + 390 + ], + "fightmap": "bg_fight1" + }, + "680": { + "id": 680, + "chapter": 10, + "mapbg": "tx_map", + "needLv": 1, + "npcId": 20680, + "name": "10-100", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1707.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 948.91 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270680, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 136.68, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210680, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -130, + 421 + ], + "fightmap": "bg_fight1" + }, + "681": { + "id": 681, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20681, + "name": "11-1", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1712.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 961.07 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270681, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 136.82, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210681, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -107, + 83 + ], + "fightmap": "bg_fight1_msk" + }, + "682": { + "id": 682, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20682, + "name": "11-2", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1717.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 962.2 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270682, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 136.96, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210682, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -136, + 108 + ], + "fightmap": "bg_fight1_msk" + }, + "683": { + "id": 683, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20683, + "name": "11-3", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1722.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 963.33 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270683, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 137.1, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210683, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -164, + 137 + ], + "fightmap": "bg_fight1_msk" + }, + "684": { + "id": 684, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20684, + "name": "11-4", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1727.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 964.46 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270684, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 137.24, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210684, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -168, + 173 + ], + "fightmap": "bg_fight1_msk" + }, + "685": { + "id": 685, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20685, + "name": "11-5", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1732.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 965.6 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270685, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 137.38, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210685, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -148, + 202 + ], + "fightmap": "bg_fight1_msk" + }, + "686": { + "id": 686, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20686, + "name": "11-6", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1737.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 966.73 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270686, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 137.52, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210686, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -119, + 225 + ], + "fightmap": "bg_fight1_msk" + }, + "687": { + "id": 687, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20687, + "name": "11-7", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1742.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 967.86 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270687, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 137.66, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210687, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -115, + 260 + ], + "fightmap": "bg_fight1_msk" + }, + "688": { + "id": 688, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20688, + "name": "11-8", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1747.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 968.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270688, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 137.8, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210688, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -137, + 290 + ], + "fightmap": "bg_fight1_msk" + }, + "689": { + "id": 689, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20689, + "name": "11-9", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1752.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 970.12 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270689, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 137.94, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210689, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -148, + 325 + ], + "fightmap": "bg_fight1_msk" + }, + "690": { + "id": 690, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20690, + "name": "11-10", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1757.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 971.25 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270690, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 138.08, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210690, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -129, + 370 + ], + "fightmap": "bg_fight1_msk" + }, + "691": { + "id": 691, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20691, + "name": "11-11", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1762.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 972.38 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270691, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 138.22, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210691, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -77, + 375 + ], + "fightmap": "bg_fight1_msk" + }, + "692": { + "id": 692, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20692, + "name": "11-12", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1767 + }, + { + "a": "attr", + "t": "nexp", + "n": 973.51 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270692, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 138.36, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210692, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -36, + 357 + ], + "fightmap": "bg_fight1_msk" + }, + "693": { + "id": 693, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20693, + "name": "11-13", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1772 + }, + { + "a": "attr", + "t": "nexp", + "n": 974.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270693, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 138.5, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210693, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -6, + 330 + ], + "fightmap": "bg_fight1_msk" + }, + "694": { + "id": 694, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20694, + "name": "11-14", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1777 + }, + { + "a": "attr", + "t": "nexp", + "n": 975.77 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270694, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 138.64, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210694, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 30, + 305 + ], + "fightmap": "bg_fight1_msk" + }, + "695": { + "id": 695, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20695, + "name": "11-15", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1782 + }, + { + "a": "attr", + "t": "nexp", + "n": 976.91 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270695, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 138.78, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210695, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 75, + 292 + ], + "fightmap": "bg_fight1_msk" + }, + "696": { + "id": 696, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20696, + "name": "11-16", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1787 + }, + { + "a": "attr", + "t": "nexp", + "n": 978.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270696, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 138.92, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210696, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 130, + 302 + ], + "fightmap": "bg_fight1_msk" + }, + "697": { + "id": 697, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20697, + "name": "11-17", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1792 + }, + { + "a": "attr", + "t": "nexp", + "n": 990.42 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270697, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 139.06, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210697, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 165, + 331 + ], + "fightmap": "bg_fight1_msk" + }, + "698": { + "id": 698, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20698, + "name": "11-18", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1797 + }, + { + "a": "attr", + "t": "nexp", + "n": 991.57 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270698, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 139.2, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210698, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 174, + 368 + ], + "fightmap": "bg_fight1_msk" + }, + "699": { + "id": 699, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20699, + "name": "11-19", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1802 + }, + { + "a": "attr", + "t": "nexp", + "n": 992.71 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270699, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 139.34, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210699, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 160, + 407 + ], + "fightmap": "bg_fight1_msk" + }, + "700": { + "id": 700, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20700, + "name": "11-20", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1807.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 993.85 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270700, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 139.48, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210700, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 124, + 438 + ], + "fightmap": "bg_fight1_msk" + }, + "701": { + "id": 701, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20701, + "name": "11-21", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1812.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 995 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270701, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 139.62, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210701, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -107, + 83 + ], + "fightmap": "bg_fight1_msk" + }, + "702": { + "id": 702, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20702, + "name": "11-22", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1817.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 996.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270702, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 139.76, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210702, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -136, + 108 + ], + "fightmap": "bg_fight1_msk" + }, + "703": { + "id": 703, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20703, + "name": "11-23", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1822.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 997.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270703, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 139.9, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210703, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -164, + 137 + ], + "fightmap": "bg_fight1_msk" + }, + "704": { + "id": 704, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20704, + "name": "11-24", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1827.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 998.43 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270704, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 140.04, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210704, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -168, + 173 + ], + "fightmap": "bg_fight1_msk" + }, + "705": { + "id": 705, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20705, + "name": "11-25", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1832.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 999.57 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270705, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 140.18, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210705, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -148, + 202 + ], + "fightmap": "bg_fight1_msk" + }, + "706": { + "id": 706, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20706, + "name": "11-26", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1837.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1000.72 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270706, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 140.32, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210706, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -119, + 225 + ], + "fightmap": "bg_fight1_msk" + }, + "707": { + "id": 707, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20707, + "name": "11-27", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1842.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1001.86 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270707, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 140.46, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210707, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -115, + 260 + ], + "fightmap": "bg_fight1_msk" + }, + "708": { + "id": 708, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20708, + "name": "11-28", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1847.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1003.01 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270708, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 140.6, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210708, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -137, + 290 + ], + "fightmap": "bg_fight1_msk" + }, + "709": { + "id": 709, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20709, + "name": "11-29", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1852.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1004.15 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270709, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 140.74, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210709, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -148, + 325 + ], + "fightmap": "bg_fight1_msk" + }, + "710": { + "id": 710, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20710, + "name": "11-30", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1857.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1005.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270710, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 140.88, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210710, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -129, + 370 + ], + "fightmap": "bg_fight1_msk" + }, + "711": { + "id": 711, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20711, + "name": "11-31", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1862.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1006.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270711, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 141.02, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210711, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -77, + 375 + ], + "fightmap": "bg_fight1_msk" + }, + "712": { + "id": 712, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20712, + "name": "11-32", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1867.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1007.58 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270712, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 141.16, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210712, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -36, + 357 + ], + "fightmap": "bg_fight1_msk" + }, + "713": { + "id": 713, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20713, + "name": "11-33", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1872.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1020.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270713, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 141.3, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210713, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -6, + 330 + ], + "fightmap": "bg_fight1_msk" + }, + "714": { + "id": 714, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20714, + "name": "11-34", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1878 + }, + { + "a": "attr", + "t": "nexp", + "n": 1021.35 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270714, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 141.44, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210714, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 30, + 305 + ], + "fightmap": "bg_fight1_msk" + }, + "715": { + "id": 715, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20715, + "name": "11-35", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1883.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1022.5 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270715, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 141.58, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210715, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 75, + 292 + ], + "fightmap": "bg_fight1_msk" + }, + "716": { + "id": 716, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20716, + "name": "11-36", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1888.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1023.66 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270716, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 141.72, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210716, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 130, + 302 + ], + "fightmap": "bg_fight1_msk" + }, + "717": { + "id": 717, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20717, + "name": "11-37", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1893.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1024.82 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270717, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 141.86, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210717, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 165, + 331 + ], + "fightmap": "bg_fight1_msk" + }, + "718": { + "id": 718, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20718, + "name": "11-38", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1898.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1025.97 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270718, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 142, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210718, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 174, + 368 + ], + "fightmap": "bg_fight1_msk" + }, + "719": { + "id": 719, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20719, + "name": "11-39", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1903.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1027.13 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270719, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 142.14, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210719, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 160, + 407 + ], + "fightmap": "bg_fight1_msk" + }, + "720": { + "id": 720, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20720, + "name": "11-40", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1908.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1028.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270720, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 142.28, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210720, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 124, + 438 + ], + "fightmap": "bg_fight1_msk" + }, + "721": { + "id": 721, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20721, + "name": "11-41", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1913.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1029.45 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270721, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 142.42, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210721, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -107, + 83 + ], + "fightmap": "bg_fight1_msk" + }, + "722": { + "id": 722, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20722, + "name": "11-42", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1918.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1030.6 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270722, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 142.56, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210722, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -136, + 108 + ], + "fightmap": "bg_fight1_msk" + }, + "723": { + "id": 723, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20723, + "name": "11-43", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1923.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1031.76 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270723, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 142.7, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210723, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -164, + 137 + ], + "fightmap": "bg_fight1_msk" + }, + "724": { + "id": 724, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20724, + "name": "11-44", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1928.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1032.92 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270724, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 142.84, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210724, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -168, + 173 + ], + "fightmap": "bg_fight1_msk" + }, + "725": { + "id": 725, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20725, + "name": "11-45", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1933.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1034.07 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270725, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 142.98, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210725, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -148, + 202 + ], + "fightmap": "bg_fight1_msk" + }, + "726": { + "id": 726, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20726, + "name": "11-46", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1939 + }, + { + "a": "attr", + "t": "nexp", + "n": 1035.23 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270726, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 143.12, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210726, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -119, + 225 + ], + "fightmap": "bg_fight1_msk" + }, + "727": { + "id": 727, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20727, + "name": "11-47", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1944.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1036.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270727, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 143.26, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210727, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -115, + 260 + ], + "fightmap": "bg_fight1_msk" + }, + "728": { + "id": 728, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20728, + "name": "11-48", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1949.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1037.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270728, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 143.4, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210728, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -137, + 290 + ], + "fightmap": "bg_fight1_msk" + }, + "729": { + "id": 729, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20729, + "name": "11-49", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1954.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1038.7 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270729, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 143.54, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210729, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -148, + 325 + ], + "fightmap": "bg_fight1_msk" + }, + "730": { + "id": 730, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20730, + "name": "11-50", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1959.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1039.86 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270730, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 143.68, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210730, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -129, + 370 + ], + "fightmap": "bg_fight1_msk" + }, + "731": { + "id": 731, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20731, + "name": "11-51", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1964.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1041.02 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270731, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 143.82, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210731, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -77, + 375 + ], + "fightmap": "bg_fight1_msk" + }, + "732": { + "id": 732, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20732, + "name": "11-52", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1969.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1042.17 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270732, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 143.96, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210732, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -36, + 357 + ], + "fightmap": "bg_fight1_msk" + }, + "733": { + "id": 733, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20733, + "name": "11-53", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1974.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1043.33 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270733, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 144.1, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210733, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -6, + 330 + ], + "fightmap": "bg_fight1_msk" + }, + "734": { + "id": 734, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20734, + "name": "11-54", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1979.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1044.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270734, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 144.24, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210734, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 30, + 305 + ], + "fightmap": "bg_fight1_msk" + }, + "735": { + "id": 735, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20735, + "name": "11-55", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1984.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1045.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270735, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 144.38, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210735, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 75, + 292 + ], + "fightmap": "bg_fight1_msk" + }, + "736": { + "id": 736, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20736, + "name": "11-56", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1989.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1046.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270736, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 144.52, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210736, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 130, + 302 + ], + "fightmap": "bg_fight1_msk" + }, + "737": { + "id": 737, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20737, + "name": "11-57", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1994.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1047.96 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270737, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 144.66, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210737, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 165, + 331 + ], + "fightmap": "bg_fight1_msk" + }, + "738": { + "id": 738, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20738, + "name": "11-58", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 1999.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1049.11 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270738, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 144.8, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210738, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 174, + 368 + ], + "fightmap": "bg_fight1_msk" + }, + "739": { + "id": 739, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20739, + "name": "11-59", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2005 + }, + { + "a": "attr", + "t": "nexp", + "n": 1050.27 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270739, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 144.94, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210739, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 160, + 407 + ], + "fightmap": "bg_fight1_msk" + }, + "740": { + "id": 740, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20740, + "name": "11-60", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2010.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1051.43 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270740, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 145.08, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210740, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 124, + 438 + ], + "fightmap": "bg_fight1_msk" + }, + "741": { + "id": 741, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20741, + "name": "11-61", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2015.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1052.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270741, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 145.22, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210741, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -107, + 83 + ], + "fightmap": "bg_fight1_msk" + }, + "742": { + "id": 742, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20742, + "name": "11-62", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2020.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1053.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270742, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 145.36, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210742, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -136, + 108 + ], + "fightmap": "bg_fight1_msk" + }, + "743": { + "id": 743, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20743, + "name": "11-63", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2025.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1054.9 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270743, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 145.5, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210743, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -164, + 137 + ], + "fightmap": "bg_fight1_msk" + }, + "744": { + "id": 744, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20744, + "name": "11-64", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2030.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1056.06 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270744, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 145.64, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210744, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -168, + 173 + ], + "fightmap": "bg_fight1_msk" + }, + "745": { + "id": 745, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20745, + "name": "11-65", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2035.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1057.21 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270745, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 145.78, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210745, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -148, + 202 + ], + "fightmap": "bg_fight1_msk" + }, + "746": { + "id": 746, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20746, + "name": "11-66", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2040.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1058.37 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270746, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 145.92, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210746, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -119, + 225 + ], + "fightmap": "bg_fight1_msk" + }, + "747": { + "id": 747, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20747, + "name": "11-67", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2045.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1059.53 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270747, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 146.06, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210747, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -115, + 260 + ], + "fightmap": "bg_fight1_msk" + }, + "748": { + "id": 748, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20748, + "name": "11-68", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2050.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1060.68 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270748, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 146.2, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210748, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -137, + 290 + ], + "fightmap": "bg_fight1_msk" + }, + "749": { + "id": 749, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20749, + "name": "11-69", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2055.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1061.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270749, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 146.34, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210749, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -148, + 325 + ], + "fightmap": "bg_fight1_msk" + }, + "750": { + "id": 750, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20750, + "name": "11-70", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2060.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1063 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270750, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 146.48, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210750, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -129, + 370 + ], + "fightmap": "bg_fight1_msk" + }, + "751": { + "id": 751, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20751, + "name": "11-71", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2066 + }, + { + "a": "attr", + "t": "nexp", + "n": 1064.16 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270751, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 146.619999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210751, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -77, + 375 + ], + "fightmap": "bg_fight1_msk" + }, + "752": { + "id": 752, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20752, + "name": "11-72", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2071.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1065.31 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270752, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 146.759999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210752, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -36, + 357 + ], + "fightmap": "bg_fight1_msk" + }, + "753": { + "id": 753, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20753, + "name": "11-73", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2076.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1066.47 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270753, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 146.899999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210753, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -6, + 330 + ], + "fightmap": "bg_fight1_msk" + }, + "754": { + "id": 754, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20754, + "name": "11-74", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2081.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1067.63 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270754, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 147.039999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210754, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 30, + 305 + ], + "fightmap": "bg_fight1_msk" + }, + "755": { + "id": 755, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20755, + "name": "11-75", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2086.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1068.78 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270755, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 147.179999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210755, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 75, + 292 + ], + "fightmap": "bg_fight1_msk" + }, + "756": { + "id": 756, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20756, + "name": "11-76", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2091.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1069.94 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270756, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 147.319999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210756, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 130, + 302 + ], + "fightmap": "bg_fight1_msk" + }, + "757": { + "id": 757, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20757, + "name": "11-77", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2096.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1071.1 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270757, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 147.459999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210757, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 165, + 331 + ], + "fightmap": "bg_fight1_msk" + }, + "758": { + "id": 758, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20758, + "name": "11-78", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2101.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1072.25 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270758, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 147.599999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210758, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 174, + 368 + ], + "fightmap": "bg_fight1_msk" + }, + "759": { + "id": 759, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20759, + "name": "11-79", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2106.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1073.41 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270759, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 147.739999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210759, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 160, + 407 + ], + "fightmap": "bg_fight1_msk" + }, + "760": { + "id": 760, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20760, + "name": "11-80", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2111.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1074.57 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270760, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 147.879999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210760, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 124, + 438 + ], + "fightmap": "bg_fight1_msk" + }, + "761": { + "id": 761, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20761, + "name": "11-81", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2116.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1075.73 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270761, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 148.019999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210761, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -107, + 83 + ], + "fightmap": "bg_fight1_msk" + }, + "762": { + "id": 762, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20762, + "name": "11-82", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2121.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1076.88 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270762, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 148.159999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210762, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -136, + 108 + ], + "fightmap": "bg_fight1_msk" + }, + "763": { + "id": 763, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20763, + "name": "11-83", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2126.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1078.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270763, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 148.299999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210763, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -164, + 137 + ], + "fightmap": "bg_fight1_msk" + }, + "764": { + "id": 764, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20764, + "name": "11-84", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2132 + }, + { + "a": "attr", + "t": "nexp", + "n": 1079.2 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270764, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 148.439999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210764, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -168, + 173 + ], + "fightmap": "bg_fight1_msk" + }, + "765": { + "id": 765, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20765, + "name": "11-85", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2137.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1080.35 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270765, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 148.579999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210765, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -148, + 202 + ], + "fightmap": "bg_fight1_msk" + }, + "766": { + "id": 766, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20766, + "name": "11-86", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2142.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1081.51 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270766, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 148.719999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210766, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -119, + 225 + ], + "fightmap": "bg_fight1_msk" + }, + "767": { + "id": 767, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20767, + "name": "11-87", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2147.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1082.67 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270767, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 148.859999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210767, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -115, + 260 + ], + "fightmap": "bg_fight1_msk" + }, + "768": { + "id": 768, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20768, + "name": "11-88", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2152.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1083.82 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270768, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 148.999999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210768, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -137, + 290 + ], + "fightmap": "bg_fight1_msk" + }, + "769": { + "id": 769, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20769, + "name": "11-89", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2157.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1084.98 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270769, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 149.139999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210769, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -148, + 325 + ], + "fightmap": "bg_fight1_msk" + }, + "770": { + "id": 770, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20770, + "name": "11-90", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2162.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1086.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270770, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 149.279999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210770, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -129, + 370 + ], + "fightmap": "bg_fight1_msk" + }, + "771": { + "id": 771, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20771, + "name": "11-91", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2167.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1087.3 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270771, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 149.419999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210771, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -77, + 375 + ], + "fightmap": "bg_fight1_msk" + }, + "772": { + "id": 772, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20772, + "name": "11-92", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2172.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1088.45 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270772, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 149.559999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210772, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -36, + 357 + ], + "fightmap": "bg_fight1_msk" + }, + "773": { + "id": 773, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20773, + "name": "11-93", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2177.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1089.61 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270773, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 149.699999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210773, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -6, + 330 + ], + "fightmap": "bg_fight1_msk" + }, + "774": { + "id": 774, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20774, + "name": "11-94", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2182.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1090.77 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270774, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 149.839999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210774, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 30, + 305 + ], + "fightmap": "bg_fight1_msk" + }, + "775": { + "id": 775, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20775, + "name": "11-95", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2187.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1091.92 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270775, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 149.979999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210775, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 75, + 292 + ], + "fightmap": "bg_fight1_msk" + }, + "776": { + "id": 776, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20776, + "name": "11-96", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2193 + }, + { + "a": "attr", + "t": "nexp", + "n": 1093.08 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270776, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 150.119999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210776, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 130, + 302 + ], + "fightmap": "bg_fight1_msk" + }, + "777": { + "id": 777, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20777, + "name": "11-97", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2198.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1094.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270777, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 150.259999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210777, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 165, + 331 + ], + "fightmap": "bg_fight1_msk" + }, + "778": { + "id": 778, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20778, + "name": "11-98", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2203.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1095.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270778, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 150.399999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210778, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 174, + 368 + ], + "fightmap": "bg_fight1_msk" + }, + "779": { + "id": 779, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20779, + "name": "11-99", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2208.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1096.55 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270779, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 150.539999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210779, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 160, + 407 + ], + "fightmap": "bg_fight1_msk" + }, + "780": { + "id": 780, + "chapter": 11, + "mapbg": "tx_map_msw", + "needLv": 1, + "npcId": 20780, + "name": "11-100", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2213.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1097.71 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270780, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 150.679999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210780, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 124, + 438 + ], + "fightmap": "bg_fight1_msk" + }, + "781": { + "id": 781, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20781, + "name": "12-1", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2218.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1098.87 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270781, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 150.819999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210781, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 108, + 90 + ], + "fightmap": "bg_fight_cc" + }, + "782": { + "id": 782, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20782, + "name": "12-2", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2223.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1100.02 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270782, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 150.959999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210782, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 57, + 105 + ], + "fightmap": "bg_fight_cc" + }, + "783": { + "id": 783, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20783, + "name": "12-3", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2228.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1101.18 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270783, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 151.099999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210783, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 4, + 119 + ], + "fightmap": "bg_fight_cc" + }, + "784": { + "id": 784, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20784, + "name": "12-4", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2233.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1102.34 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270784, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 151.239999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210784, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -48, + 133 + ], + "fightmap": "bg_fight_cc" + }, + "785": { + "id": 785, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20785, + "name": "12-5", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2238.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1103.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270785, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 151.379999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210785, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -103, + 142 + ], + "fightmap": "bg_fight_cc" + }, + "786": { + "id": 786, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20786, + "name": "12-6", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2243.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1104.65 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270786, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 151.519999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210786, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -151, + 162 + ], + "fightmap": "bg_fight_cc" + }, + "787": { + "id": 787, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20787, + "name": "12-7", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2248.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1105.81 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270787, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 151.659999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210787, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -193, + 184 + ], + "fightmap": "bg_fight_cc" + }, + "788": { + "id": 788, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20788, + "name": "12-8", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2253.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1106.96 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270788, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 151.799999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210788, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -182, + 227 + ], + "fightmap": "bg_fight_cc" + }, + "789": { + "id": 789, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20789, + "name": "12-9", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2259 + }, + { + "a": "attr", + "t": "nexp", + "n": 1108.12 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270789, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 151.939999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210789, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -137, + 248 + ], + "fightmap": "bg_fight_cc" + }, + "790": { + "id": 790, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20790, + "name": "12-10", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2264.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1109.28 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270790, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 152.079999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210790, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -88, + 263 + ], + "fightmap": "bg_fight_cc" + }, + "791": { + "id": 791, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20791, + "name": "12-11", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2269.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1110.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270791, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 152.219999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210791, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -37, + 281 + ], + "fightmap": "bg_fight_cc" + }, + "792": { + "id": 792, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20792, + "name": "12-12", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2274.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1111.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270792, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 152.359999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210792, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 4, + 308 + ], + "fightmap": "bg_fight_cc" + }, + "793": { + "id": 793, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20793, + "name": "12-13", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2279.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1112.75 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270793, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 152.499999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210793, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 2, + 346 + ], + "fightmap": "bg_fight_cc" + }, + "794": { + "id": 794, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20794, + "name": "12-14", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2284.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1113.91 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270794, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 152.639999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210794, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -50, + 369 + ], + "fightmap": "bg_fight_cc" + }, + "795": { + "id": 795, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20795, + "name": "12-15", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2289.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1115.06 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270795, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 152.779999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210795, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -88, + 402 + ], + "fightmap": "bg_fight_cc" + }, + "796": { + "id": 796, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20796, + "name": "12-16", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2294.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1116.22 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270796, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 152.919999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210796, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -56, + 434 + ], + "fightmap": "bg_fight_cc" + }, + "797": { + "id": 797, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20797, + "name": "12-17", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2299.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1117.38 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270797, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 153.059999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210797, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 1, + 439 + ], + "fightmap": "bg_fight_cc" + }, + "798": { + "id": 798, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20798, + "name": "12-18", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2304.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1118.53 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270798, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 153.199999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210798, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 50, + 402 + ], + "fightmap": "bg_fight_cc" + }, + "799": { + "id": 799, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20799, + "name": "12-19", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2309.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1119.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270799, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 153.339999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210799, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 102, + 408 + ], + "fightmap": "bg_fight_cc" + }, + "800": { + "id": 800, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20800, + "name": "12-20", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2314.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1120.85 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270800, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 153.479999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210800, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 155, + 420 + ], + "fightmap": "bg_fight_cc" + }, + "801": { + "id": 801, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20801, + "name": "12-21", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2320 + }, + { + "a": "attr", + "t": "nexp", + "n": 1122.01 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270801, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 153.619999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210801, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 108, + 90 + ], + "fightmap": "bg_fight_cc" + }, + "802": { + "id": 802, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20802, + "name": "12-22", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2325.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1123.16 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270802, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 153.759999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210802, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 57, + 105 + ], + "fightmap": "bg_fight_cc" + }, + "803": { + "id": 803, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20803, + "name": "12-23", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2330.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1124.32 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270803, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 153.899999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210803, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 4, + 119 + ], + "fightmap": "bg_fight_cc" + }, + "804": { + "id": 804, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20804, + "name": "12-24", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2335.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1125.48 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270804, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 154.039999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210804, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -48, + 133 + ], + "fightmap": "bg_fight_cc" + }, + "805": { + "id": 805, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20805, + "name": "12-25", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2340.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1126.63 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270805, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 154.179999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210805, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -103, + 142 + ], + "fightmap": "bg_fight_cc" + }, + "806": { + "id": 806, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20806, + "name": "12-26", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2345.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1127.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270806, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 154.319999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210806, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -151, + 162 + ], + "fightmap": "bg_fight_cc" + }, + "807": { + "id": 807, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20807, + "name": "12-27", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2350.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1128.95 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270807, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 154.459999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210807, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -193, + 184 + ], + "fightmap": "bg_fight_cc" + }, + "808": { + "id": 808, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20808, + "name": "12-28", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2355.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1130.1 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270808, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 154.599999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210808, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -182, + 227 + ], + "fightmap": "bg_fight_cc" + }, + "809": { + "id": 809, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20809, + "name": "12-29", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2360.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1131.26 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270809, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 154.739999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210809, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -137, + 248 + ], + "fightmap": "bg_fight_cc" + }, + "810": { + "id": 810, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20810, + "name": "12-30", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2365.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1132.42 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270810, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 154.879999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210810, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -88, + 263 + ], + "fightmap": "bg_fight_cc" + }, + "811": { + "id": 811, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20811, + "name": "12-31", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2370.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1133.58 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270811, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 155.019999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210811, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -37, + 281 + ], + "fightmap": "bg_fight_cc" + }, + "812": { + "id": 812, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20812, + "name": "12-32", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2375.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1134.73 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270812, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 155.159999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210812, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 4, + 308 + ], + "fightmap": "bg_fight_cc" + }, + "813": { + "id": 813, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20813, + "name": "12-33", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2380.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1135.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270813, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 155.299999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210813, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 2, + 346 + ], + "fightmap": "bg_fight_cc" + }, + "814": { + "id": 814, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20814, + "name": "12-34", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2386 + }, + { + "a": "attr", + "t": "nexp", + "n": 1137.05 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270814, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 155.439999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210814, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -50, + 369 + ], + "fightmap": "bg_fight_cc" + }, + "815": { + "id": 815, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20815, + "name": "12-35", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2391.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1138.2 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270815, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 155.579999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210815, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -88, + 402 + ], + "fightmap": "bg_fight_cc" + }, + "816": { + "id": 816, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20816, + "name": "12-36", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2396.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1139.36 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270816, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 155.719999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210816, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -56, + 434 + ], + "fightmap": "bg_fight_cc" + }, + "817": { + "id": 817, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20817, + "name": "12-37", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2401.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1140.52 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270817, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 155.859999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210817, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 1, + 439 + ], + "fightmap": "bg_fight_cc" + }, + "818": { + "id": 818, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20818, + "name": "12-38", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2406.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1141.67 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270818, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 155.999999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210818, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 50, + 402 + ], + "fightmap": "bg_fight_cc" + }, + "819": { + "id": 819, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20819, + "name": "12-39", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2411.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1142.83 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270819, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 156.139999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210819, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 102, + 408 + ], + "fightmap": "bg_fight_cc" + }, + "820": { + "id": 820, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20820, + "name": "12-40", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2416.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1143.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270820, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 156.279999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210820, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 155, + 420 + ], + "fightmap": "bg_fight_cc" + }, + "821": { + "id": 821, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20821, + "name": "12-41", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2421.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1145.15 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270821, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 156.419999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210821, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 108, + 90 + ], + "fightmap": "bg_fight_cc" + }, + "822": { + "id": 822, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20822, + "name": "12-42", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2426.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1146.3 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270822, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 156.559999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210822, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 57, + 105 + ], + "fightmap": "bg_fight_cc" + }, + "823": { + "id": 823, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20823, + "name": "12-43", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2431.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1147.46 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270823, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 156.699999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210823, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 4, + 119 + ], + "fightmap": "bg_fight_cc" + }, + "824": { + "id": 824, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20824, + "name": "12-44", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2436.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1148.62 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270824, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 156.839999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210824, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -48, + 133 + ], + "fightmap": "bg_fight_cc" + }, + "825": { + "id": 825, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20825, + "name": "12-45", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2441.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1149.77 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270825, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 156.979999999999, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210825, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -103, + 142 + ], + "fightmap": "bg_fight_cc" + }, + "826": { + "id": 826, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20826, + "name": "12-46", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2447 + }, + { + "a": "attr", + "t": "nexp", + "n": 1150.93 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270826, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 157.119999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210826, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -151, + 162 + ], + "fightmap": "bg_fight_cc" + }, + "827": { + "id": 827, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20827, + "name": "12-47", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2452.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1152.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270827, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 157.259999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210827, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -193, + 184 + ], + "fightmap": "bg_fight_cc" + }, + "828": { + "id": 828, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20828, + "name": "12-48", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2457.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1153.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270828, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 157.399999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210828, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -182, + 227 + ], + "fightmap": "bg_fight_cc" + }, + "829": { + "id": 829, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20829, + "name": "12-49", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2462.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1154.4 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270829, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 157.539999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210829, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -137, + 248 + ], + "fightmap": "bg_fight_cc" + }, + "830": { + "id": 830, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20830, + "name": "12-50", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2467.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1155.56 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270830, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 157.679999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210830, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -88, + 263 + ], + "fightmap": "bg_fight_cc" + }, + "831": { + "id": 831, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20831, + "name": "12-51", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2472.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1156.72 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270831, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 157.819999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210831, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -37, + 281 + ], + "fightmap": "bg_fight_cc" + }, + "832": { + "id": 832, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20832, + "name": "12-52", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2477.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1157.87 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270832, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 157.959999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210832, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 4, + 308 + ], + "fightmap": "bg_fight_cc" + }, + "833": { + "id": 833, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20833, + "name": "12-53", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2482.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1159.03 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270833, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 158.099999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210833, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 2, + 346 + ], + "fightmap": "bg_fight_cc" + }, + "834": { + "id": 834, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20834, + "name": "12-54", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2487.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1160.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270834, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 158.239999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210834, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -50, + 369 + ], + "fightmap": "bg_fight_cc" + }, + "835": { + "id": 835, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20835, + "name": "12-55", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2492.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1161.34 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270835, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 158.379999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210835, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -88, + 402 + ], + "fightmap": "bg_fight_cc" + }, + "836": { + "id": 836, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20836, + "name": "12-56", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2497.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1162.5 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270836, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 158.519999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210836, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -56, + 434 + ], + "fightmap": "bg_fight_cc" + }, + "837": { + "id": 837, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20837, + "name": "12-57", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2502.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1163.66 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270837, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 158.659999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210837, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 1, + 439 + ], + "fightmap": "bg_fight_cc" + }, + "838": { + "id": 838, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20838, + "name": "12-58", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2507.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1164.81 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270838, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 158.799999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210838, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 50, + 402 + ], + "fightmap": "bg_fight_cc" + }, + "839": { + "id": 839, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20839, + "name": "12-59", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2513 + }, + { + "a": "attr", + "t": "nexp", + "n": 1165.97 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270839, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 158.939999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210839, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 102, + 408 + ], + "fightmap": "bg_fight_cc" + }, + "840": { + "id": 840, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20840, + "name": "12-60", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2518.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1167.13 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270840, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 159.079999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210840, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 155, + 420 + ], + "fightmap": "bg_fight_cc" + }, + "841": { + "id": 841, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20841, + "name": "12-61", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2523.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1168.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270841, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 159.219999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210841, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 108, + 90 + ], + "fightmap": "bg_fight_cc" + }, + "842": { + "id": 842, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20842, + "name": "12-62", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2528.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1169.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270842, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 159.359999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210842, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 57, + 105 + ], + "fightmap": "bg_fight_cc" + }, + "843": { + "id": 843, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20843, + "name": "12-63", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2533.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1170.6 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270843, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 159.499999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210843, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 4, + 119 + ], + "fightmap": "bg_fight_cc" + }, + "844": { + "id": 844, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20844, + "name": "12-64", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2538.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1171.76 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270844, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 159.639999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210844, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -48, + 133 + ], + "fightmap": "bg_fight_cc" + }, + "845": { + "id": 845, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20845, + "name": "12-65", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2543.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1172.91 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270845, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 159.779999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210845, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -103, + 142 + ], + "fightmap": "bg_fight_cc" + }, + "846": { + "id": 846, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20846, + "name": "12-66", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2548.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1174.07 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270846, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 159.919999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210846, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -151, + 162 + ], + "fightmap": "bg_fight_cc" + }, + "847": { + "id": 847, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20847, + "name": "12-67", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2553.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1175.23 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270847, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 160.059999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210847, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -193, + 184 + ], + "fightmap": "bg_fight_cc" + }, + "848": { + "id": 848, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20848, + "name": "12-68", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2558.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1176.38 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270848, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 160.199999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210848, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -182, + 227 + ], + "fightmap": "bg_fight_cc" + }, + "849": { + "id": 849, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20849, + "name": "12-69", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2563.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1177.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270849, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 160.339999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210849, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -137, + 248 + ], + "fightmap": "bg_fight_cc" + }, + "850": { + "id": 850, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20850, + "name": "12-70", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2568.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1178.7 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270850, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 160.479999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210850, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -88, + 263 + ], + "fightmap": "bg_fight_cc" + }, + "851": { + "id": 851, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20851, + "name": "12-71", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2574 + }, + { + "a": "attr", + "t": "nexp", + "n": 1179.86 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270851, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 160.619999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210851, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -37, + 281 + ], + "fightmap": "bg_fight_cc" + }, + "852": { + "id": 852, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20852, + "name": "12-72", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2579.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1181.01 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270852, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 160.759999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210852, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 4, + 308 + ], + "fightmap": "bg_fight_cc" + }, + "853": { + "id": 853, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20853, + "name": "12-73", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2584.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1182.17 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270853, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 160.899999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210853, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 2, + 346 + ], + "fightmap": "bg_fight_cc" + }, + "854": { + "id": 854, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20854, + "name": "12-74", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2589.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1183.33 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270854, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 161.039999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210854, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -50, + 369 + ], + "fightmap": "bg_fight_cc" + }, + "855": { + "id": 855, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20855, + "name": "12-75", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2594.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1184.48 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270855, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 161.179999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210855, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -88, + 402 + ], + "fightmap": "bg_fight_cc" + }, + "856": { + "id": 856, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20856, + "name": "12-76", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2599.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1185.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270856, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 161.319999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210856, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -56, + 434 + ], + "fightmap": "bg_fight_cc" + }, + "857": { + "id": 857, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20857, + "name": "12-77", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2604.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1186.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270857, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 161.459999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210857, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 1, + 439 + ], + "fightmap": "bg_fight_cc" + }, + "858": { + "id": 858, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20858, + "name": "12-78", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2609.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1187.95 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270858, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 161.599999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210858, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 50, + 402 + ], + "fightmap": "bg_fight_cc" + }, + "859": { + "id": 859, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20859, + "name": "12-79", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2614.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1189.11 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270859, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 161.739999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210859, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 102, + 408 + ], + "fightmap": "bg_fight_cc" + }, + "860": { + "id": 860, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20860, + "name": "12-80", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2619.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1190.27 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270860, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 161.879999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210860, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 155, + 420 + ], + "fightmap": "bg_fight_cc" + }, + "861": { + "id": 861, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20861, + "name": "12-81", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2624.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1191.43 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270861, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 162.019999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210861, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 108, + 90 + ], + "fightmap": "bg_fight_cc" + }, + "862": { + "id": 862, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20862, + "name": "12-82", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2629.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1192.58 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270862, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 162.159999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210862, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 57, + 105 + ], + "fightmap": "bg_fight_cc" + }, + "863": { + "id": 863, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20863, + "name": "12-83", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2634.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1193.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270863, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 162.299999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210863, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 4, + 119 + ], + "fightmap": "bg_fight_cc" + }, + "864": { + "id": 864, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20864, + "name": "12-84", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2640 + }, + { + "a": "attr", + "t": "nexp", + "n": 1194.9 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270864, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 162.439999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210864, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -48, + 133 + ], + "fightmap": "bg_fight_cc" + }, + "865": { + "id": 865, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20865, + "name": "12-85", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2645.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1196.05 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270865, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 162.579999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210865, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -103, + 142 + ], + "fightmap": "bg_fight_cc" + }, + "866": { + "id": 866, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20866, + "name": "12-86", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2650.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1197.21 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270866, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 162.719999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210866, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -151, + 162 + ], + "fightmap": "bg_fight_cc" + }, + "867": { + "id": 867, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20867, + "name": "12-87", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2655.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1198.37 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270867, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 162.859999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210867, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -193, + 184 + ], + "fightmap": "bg_fight_cc" + }, + "868": { + "id": 868, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20868, + "name": "12-88", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2660.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1199.52 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270868, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 162.999999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210868, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -182, + 227 + ], + "fightmap": "bg_fight_cc" + }, + "869": { + "id": 869, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20869, + "name": "12-89", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2665.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1200.68 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270869, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 163.139999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210869, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -137, + 248 + ], + "fightmap": "bg_fight_cc" + }, + "870": { + "id": 870, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20870, + "name": "12-90", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2670.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1201.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270870, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 163.279999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210870, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -88, + 263 + ], + "fightmap": "bg_fight_cc" + }, + "871": { + "id": 871, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20871, + "name": "12-91", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2675.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1203 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270871, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 163.419999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210871, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -37, + 281 + ], + "fightmap": "bg_fight_cc" + }, + "872": { + "id": 872, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20872, + "name": "12-92", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2680.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1204.15 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270872, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 163.559999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210872, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 4, + 308 + ], + "fightmap": "bg_fight_cc" + }, + "873": { + "id": 873, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20873, + "name": "12-93", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2685.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1205.31 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270873, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 163.699999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210873, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 2, + 346 + ], + "fightmap": "bg_fight_cc" + }, + "874": { + "id": 874, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20874, + "name": "12-94", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2690.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1206.47 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270874, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 163.839999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210874, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -50, + 369 + ], + "fightmap": "bg_fight_cc" + }, + "875": { + "id": 875, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20875, + "name": "12-95", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2695.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1207.62 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270875, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 163.979999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210875, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -88, + 402 + ], + "fightmap": "bg_fight_cc" + }, + "876": { + "id": 876, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20876, + "name": "12-96", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2701 + }, + { + "a": "attr", + "t": "nexp", + "n": 1208.78 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270876, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 164.119999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210876, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -56, + 434 + ], + "fightmap": "bg_fight_cc" + }, + "877": { + "id": 877, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20877, + "name": "12-97", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2706.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1209.94 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270877, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 164.259999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210877, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 1, + 439 + ], + "fightmap": "bg_fight_cc" + }, + "878": { + "id": 878, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20878, + "name": "12-98", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2711.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1211.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270878, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 164.399999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210878, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 50, + 420 + ], + "fightmap": "bg_fight_cc" + }, + "879": { + "id": 879, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20879, + "name": "12-99", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2716.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1212.25 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270879, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 164.539999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210879, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 102, + 408 + ], + "fightmap": "bg_fight_cc" + }, + "880": { + "id": 880, + "chapter": 12, + "mapbg": "tx_map_cc", + "needLv": 1, + "npcId": 20880, + "name": "12-100", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2721.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1213.41 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270880, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 164.679999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210880, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 155, + 420 + ], + "fightmap": "bg_fight_cc" + }, + "881": { + "id": 881, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20881, + "name": "13-1", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2726.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1214.57 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270881, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 164.819999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210881, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 55, + 45 + ], + "fightmap": "bg_fight7" + }, + "882": { + "id": 882, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20882, + "name": "13-2", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2731.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1215.72 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270882, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 164.959999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210882, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 12, + 57 + ], + "fightmap": "bg_fight7" + }, + "883": { + "id": 883, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20883, + "name": "13-3", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2736.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1216.88 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270883, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 165.099999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210883, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -34, + 71 + ], + "fightmap": "bg_fight7" + }, + "884": { + "id": 884, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20884, + "name": "13-4", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2741.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1218.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270884, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 165.239999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210884, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -80, + 85 + ], + "fightmap": "bg_fight7" + }, + "885": { + "id": 885, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20885, + "name": "13-5", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2746.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1219.19 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270885, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 165.379999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210885, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -117, + 108 + ], + "fightmap": "bg_fight7" + }, + "886": { + "id": 886, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20886, + "name": "13-6", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2751.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1220.35 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270886, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 165.519999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210886, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -133, + 145 + ], + "fightmap": "bg_fight7" + }, + "887": { + "id": 887, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20887, + "name": "13-7", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2756.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1221.51 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270887, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 165.659999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210887, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -117, + 178 + ], + "fightmap": "bg_fight7" + }, + "888": { + "id": 888, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20888, + "name": "13-8", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2761.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1222.66 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270888, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 165.799999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210888, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -87, + 206 + ], + "fightmap": "bg_fight7" + }, + "889": { + "id": 889, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20889, + "name": "13-9", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2767 + }, + { + "a": "attr", + "t": "nexp", + "n": 1223.82 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270889, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 165.939999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210889, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -32, + 217 + ], + "fightmap": "bg_fight7" + }, + "890": { + "id": 890, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20890, + "name": "13-10", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2772.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1224.98 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270890, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 166.079999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210890, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 30, + 221 + ], + "fightmap": "bg_fight7" + }, + "891": { + "id": 891, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20891, + "name": "13-11", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2777.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1226.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270891, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 166.219999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210891, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 92, + 229 + ], + "fightmap": "bg_fight7" + }, + "892": { + "id": 892, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20892, + "name": "13-12", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2782.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1227.29 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270892, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 166.359999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210892, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 135, + 251 + ], + "fightmap": "bg_fight7" + }, + "893": { + "id": 893, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20893, + "name": "13-13", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2787.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1228.45 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270893, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 166.499999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210893, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 143, + 283 + ], + "fightmap": "bg_fight7" + }, + "894": { + "id": 894, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20894, + "name": "13-14", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2792.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1229.61 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270894, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 166.639999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210894, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 79, + 322 + ], + "fightmap": "bg_fight7" + }, + "895": { + "id": 895, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20895, + "name": "13-15", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2797.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1230.76 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270895, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 166.779999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210895, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 31, + 307 + ], + "fightmap": "bg_fight7" + }, + "896": { + "id": 896, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20896, + "name": "13-16", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2802.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1231.92 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270896, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 166.919999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210896, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -16, + 294 + ], + "fightmap": "bg_fight7" + }, + "897": { + "id": 897, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20897, + "name": "13-17", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2807.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1233.08 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270897, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 167.059999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210897, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -69, + 310 + ], + "fightmap": "bg_fight7" + }, + "898": { + "id": 898, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20898, + "name": "13-18", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2812.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1234.23 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270898, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 167.199999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210898, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -61, + 350 + ], + "fightmap": "bg_fight7" + }, + "899": { + "id": 899, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20899, + "name": "13-19", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2817.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1235.39 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270899, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 167.339999999998, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210899, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -31, + 382 + ], + "fightmap": "bg_fight7" + }, + "900": { + "id": 900, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20900, + "name": "13-20", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2822.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1236.55 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270900, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 167.479999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210900, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 20, + 406 + ], + "fightmap": "bg_fight7" + }, + "901": { + "id": 901, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20901, + "name": "13-21", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2828 + }, + { + "a": "attr", + "t": "nexp", + "n": 1237.71 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270901, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 167.619999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210901, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 55, + 45 + ], + "fightmap": "bg_fight7" + }, + "902": { + "id": 902, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20902, + "name": "13-22", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2833.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1238.86 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270902, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 167.759999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210902, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 12, + 57 + ], + "fightmap": "bg_fight7" + }, + "903": { + "id": 903, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20903, + "name": "13-23", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2838.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1240.02 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270903, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 167.899999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210903, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -34, + 71 + ], + "fightmap": "bg_fight7" + }, + "904": { + "id": 904, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20904, + "name": "13-24", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2843.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1241.18 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270904, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 168.039999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210904, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -80, + 85 + ], + "fightmap": "bg_fight7" + }, + "905": { + "id": 905, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20905, + "name": "13-25", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2848.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1242.33 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270905, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 168.179999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210905, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -117, + 108 + ], + "fightmap": "bg_fight7" + }, + "906": { + "id": 906, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20906, + "name": "13-26", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2853.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1243.49 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270906, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 168.319999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210906, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -133, + 145 + ], + "fightmap": "bg_fight7" + }, + "907": { + "id": 907, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20907, + "name": "13-27", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2858.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1244.65 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270907, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 168.459999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210907, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -117, + 178 + ], + "fightmap": "bg_fight7" + }, + "908": { + "id": 908, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20908, + "name": "13-28", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2863.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1245.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270908, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 168.599999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210908, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -87, + 206 + ], + "fightmap": "bg_fight7" + }, + "909": { + "id": 909, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20909, + "name": "13-29", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2868.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1246.96 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270909, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 168.739999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210909, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -32, + 217 + ], + "fightmap": "bg_fight7" + }, + "910": { + "id": 910, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20910, + "name": "13-30", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2873.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1248.12 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270910, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 168.879999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210910, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 30, + 221 + ], + "fightmap": "bg_fight7" + }, + "911": { + "id": 911, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20911, + "name": "13-31", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2878.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1249.28 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270911, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 169.019999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210911, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 92, + 229 + ], + "fightmap": "bg_fight7" + }, + "912": { + "id": 912, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20912, + "name": "13-32", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2883.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1250.43 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270912, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 169.159999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210912, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 135, + 251 + ], + "fightmap": "bg_fight7" + }, + "913": { + "id": 913, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20913, + "name": "13-33", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2888.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1251.59 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270913, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 169.299999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210913, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 143, + 283 + ], + "fightmap": "bg_fight7" + }, + "914": { + "id": 914, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20914, + "name": "13-34", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2894 + }, + { + "a": "attr", + "t": "nexp", + "n": 1252.75 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270914, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 169.439999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210914, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 79, + 322 + ], + "fightmap": "bg_fight7" + }, + "915": { + "id": 915, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20915, + "name": "13-35", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2899.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1253.9 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270915, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 169.579999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210915, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 31, + 307 + ], + "fightmap": "bg_fight7" + }, + "916": { + "id": 916, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20916, + "name": "13-36", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2904.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1255.06 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270916, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 169.719999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210916, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -16, + 294 + ], + "fightmap": "bg_fight7" + }, + "917": { + "id": 917, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20917, + "name": "13-37", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2909.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1256.22 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270917, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 169.859999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210917, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -69, + 310 + ], + "fightmap": "bg_fight7" + }, + "918": { + "id": 918, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20918, + "name": "13-38", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2914.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1257.37 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270918, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 169.999999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210918, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -61, + 350 + ], + "fightmap": "bg_fight7" + }, + "919": { + "id": 919, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20919, + "name": "13-39", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2919.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1258.53 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270919, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 170.139999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210919, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -31, + 382 + ], + "fightmap": "bg_fight7" + }, + "920": { + "id": 920, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20920, + "name": "13-40", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2924.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1259.69 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270920, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 170.279999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210920, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 20, + 406 + ], + "fightmap": "bg_fight7" + }, + "921": { + "id": 921, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20921, + "name": "13-41", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2929.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1260.85 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270921, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 170.419999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210921, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 55, + 45 + ], + "fightmap": "bg_fight7" + }, + "922": { + "id": 922, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20922, + "name": "13-42", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2934.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1262 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270922, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 170.559999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210922, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 12, + 57 + ], + "fightmap": "bg_fight7" + }, + "923": { + "id": 923, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20923, + "name": "13-43", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2939.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1263.16 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270923, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 170.699999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210923, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -34, + 71 + ], + "fightmap": "bg_fight7" + }, + "924": { + "id": 924, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20924, + "name": "13-44", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2944.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1264.32 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270924, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 170.839999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210924, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -80, + 85 + ], + "fightmap": "bg_fight7" + }, + "925": { + "id": 925, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20925, + "name": "13-45", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2949.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1265.47 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270925, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 170.979999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210925, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -117, + 108 + ], + "fightmap": "bg_fight7" + }, + "926": { + "id": 926, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20926, + "name": "13-46", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2955 + }, + { + "a": "attr", + "t": "nexp", + "n": 1266.63 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270926, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 171.119999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210926, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -133, + 145 + ], + "fightmap": "bg_fight7" + }, + "927": { + "id": 927, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20927, + "name": "13-47", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2960.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1267.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270927, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 171.259999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210927, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -117, + 178 + ], + "fightmap": "bg_fight7" + }, + "928": { + "id": 928, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20928, + "name": "13-48", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2965.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1268.94 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270928, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 171.399999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210928, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -87, + 206 + ], + "fightmap": "bg_fight7" + }, + "929": { + "id": 929, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20929, + "name": "13-49", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2970.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1270.1 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270929, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 171.539999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210929, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -32, + 217 + ], + "fightmap": "bg_fight7" + }, + "930": { + "id": 930, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20930, + "name": "13-50", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2975.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1271.26 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270930, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 171.679999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210930, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 30, + 221 + ], + "fightmap": "bg_fight7" + }, + "931": { + "id": 931, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20931, + "name": "13-51", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2980.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1272.42 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270931, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 171.819999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210931, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 92, + 229 + ], + "fightmap": "bg_fight7" + }, + "932": { + "id": 932, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20932, + "name": "13-52", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2985.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1273.57 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270932, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 171.959999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210932, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 135, + 251 + ], + "fightmap": "bg_fight7" + }, + "933": { + "id": 933, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20933, + "name": "13-53", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2990.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1274.73 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270933, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 172.099999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210933, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 143, + 283 + ], + "fightmap": "bg_fight7" + }, + "934": { + "id": 934, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20934, + "name": "13-54", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 2995.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1275.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270934, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 172.239999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210934, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 79, + 322 + ], + "fightmap": "bg_fight7" + }, + "935": { + "id": 935, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20935, + "name": "13-55", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3000.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1277.04 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270935, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 172.379999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210935, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 31, + 307 + ], + "fightmap": "bg_fight7" + }, + "936": { + "id": 936, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20936, + "name": "13-56", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3005.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1278.2 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270936, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 172.519999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210936, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -16, + 294 + ], + "fightmap": "bg_fight7" + }, + "937": { + "id": 937, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20937, + "name": "13-57", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3010.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1279.36 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270937, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 172.659999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210937, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -69, + 310 + ], + "fightmap": "bg_fight7" + }, + "938": { + "id": 938, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20938, + "name": "13-58", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3015.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1280.51 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270938, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 172.799999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210938, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -61, + 350 + ], + "fightmap": "bg_fight7" + }, + "939": { + "id": 939, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20939, + "name": "13-59", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3021 + }, + { + "a": "attr", + "t": "nexp", + "n": 1281.67 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270939, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 172.939999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210939, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -31, + 382 + ], + "fightmap": "bg_fight7" + }, + "940": { + "id": 940, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20940, + "name": "13-60", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3026.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1282.83 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270940, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 173.079999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210940, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 20, + 406 + ], + "fightmap": "bg_fight7" + }, + "941": { + "id": 941, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20941, + "name": "13-61", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3031.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1283.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270941, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 173.219999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210941, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 55, + 45 + ], + "fightmap": "bg_fight7" + }, + "942": { + "id": 942, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20942, + "name": "13-62", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3036.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1285.14 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270942, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 173.359999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210942, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 12, + 57 + ], + "fightmap": "bg_fight7" + }, + "943": { + "id": 943, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20943, + "name": "13-63", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3041.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1286.3 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270943, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 173.499999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210943, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -34, + 71 + ], + "fightmap": "bg_fight7" + }, + "944": { + "id": 944, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20944, + "name": "13-64", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3046.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1287.46 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270944, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 173.639999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210944, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -80, + 85 + ], + "fightmap": "bg_fight7" + }, + "945": { + "id": 945, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20945, + "name": "13-65", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3051.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1288.61 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270945, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 173.779999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210945, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -117, + 108 + ], + "fightmap": "bg_fight7" + }, + "946": { + "id": 946, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20946, + "name": "13-66", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3056.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1289.77 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270946, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 173.919999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210946, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -133, + 145 + ], + "fightmap": "bg_fight7" + }, + "947": { + "id": 947, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20947, + "name": "13-67", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3061.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1290.93 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270947, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 174.059999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210947, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -117, + 178 + ], + "fightmap": "bg_fight7" + }, + "948": { + "id": 948, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20948, + "name": "13-68", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3066.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1292.08 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270948, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 174.199999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210948, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -87, + 206 + ], + "fightmap": "bg_fight7" + }, + "949": { + "id": 949, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20949, + "name": "13-69", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3071.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1293.24 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270949, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 174.339999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210949, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -32, + 217 + ], + "fightmap": "bg_fight7" + }, + "950": { + "id": 950, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20950, + "name": "13-70", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3076.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1294.4 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270950, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 174.479999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210950, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 30, + 221 + ], + "fightmap": "bg_fight7" + }, + "951": { + "id": 951, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20951, + "name": "13-71", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3082 + }, + { + "a": "attr", + "t": "nexp", + "n": 1295.56 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270951, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 174.619999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210951, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 92, + 229 + ], + "fightmap": "bg_fight7" + }, + "952": { + "id": 952, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20952, + "name": "13-72", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3087.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1296.71 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270952, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 174.759999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210952, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 135, + 251 + ], + "fightmap": "bg_fight7" + }, + "953": { + "id": 953, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20953, + "name": "13-73", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3092.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1297.87 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270953, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 174.899999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210953, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 143, + 283 + ], + "fightmap": "bg_fight7" + }, + "954": { + "id": 954, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20954, + "name": "13-74", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3097.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1299.03 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270954, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 175.039999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210954, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 79, + 322 + ], + "fightmap": "bg_fight7" + }, + "955": { + "id": 955, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20955, + "name": "13-75", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3102.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1300.18 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270955, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 175.179999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210955, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 31, + 307 + ], + "fightmap": "bg_fight7" + }, + "956": { + "id": 956, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20956, + "name": "13-76", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3107.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1301.34 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270956, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 175.319999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210956, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -16, + 294 + ], + "fightmap": "bg_fight7" + }, + "957": { + "id": 957, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20957, + "name": "13-77", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3112.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1302.5 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270957, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 175.459999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210957, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -69, + 310 + ], + "fightmap": "bg_fight7" + }, + "958": { + "id": 958, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20958, + "name": "13-78", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3117.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1303.65 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270958, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 175.599999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210958, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -61, + 350 + ], + "fightmap": "bg_fight7" + }, + "959": { + "id": 959, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20959, + "name": "13-79", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3122.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1304.81 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270959, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 175.739999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210959, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -31, + 382 + ], + "fightmap": "bg_fight7" + }, + "960": { + "id": 960, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20960, + "name": "13-80", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3127.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1305.97 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270960, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 175.879999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210960, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 20, + 406 + ], + "fightmap": "bg_fight7" + }, + "961": { + "id": 961, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20961, + "name": "13-81", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3132.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1307.13 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270961, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 176.019999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210961, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 55, + 45 + ], + "fightmap": "bg_fight7" + }, + "962": { + "id": 962, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20962, + "name": "13-82", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3137.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1308.28 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270962, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 176.159999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210962, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 12, + 57 + ], + "fightmap": "bg_fight7" + }, + "963": { + "id": 963, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20963, + "name": "13-83", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3142.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1309.44 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270963, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 176.299999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210963, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -34, + 71 + ], + "fightmap": "bg_fight7" + }, + "964": { + "id": 964, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20964, + "name": "13-84", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3148 + }, + { + "a": "attr", + "t": "nexp", + "n": 1310.6 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270964, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 176.439999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210964, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -80, + 85 + ], + "fightmap": "bg_fight7" + }, + "965": { + "id": 965, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20965, + "name": "13-85", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3153.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1311.75 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270965, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 176.579999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210965, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -117, + 108 + ], + "fightmap": "bg_fight7" + }, + "966": { + "id": 966, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20966, + "name": "13-86", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3158.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1312.91 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270966, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 176.719999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210966, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -133, + 145 + ], + "fightmap": "bg_fight7" + }, + "967": { + "id": 967, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20967, + "name": "13-87", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3163.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1314.07 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270967, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 176.859999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210967, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -117, + 178 + ], + "fightmap": "bg_fight7" + }, + "968": { + "id": 968, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20968, + "name": "13-88", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3168.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1315.22 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270968, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 176.999999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210968, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -87, + 206 + ], + "fightmap": "bg_fight7" + }, + "969": { + "id": 969, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20969, + "name": "13-89", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3173.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1316.38 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270969, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 177.139999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210969, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -32, + 217 + ], + "fightmap": "bg_fight7" + }, + "970": { + "id": 970, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20970, + "name": "13-90", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3178.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1317.54 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270970, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 177.279999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210970, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 30, + 221 + ], + "fightmap": "bg_fight7" + }, + "971": { + "id": 971, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20971, + "name": "13-91", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3183.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1318.7 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270971, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 177.419999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210971, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 92, + 229 + ], + "fightmap": "bg_fight7" + }, + "972": { + "id": 972, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20972, + "name": "13-92", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3188.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1319.85 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270972, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 177.559999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210972, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 135, + 251 + ], + "fightmap": "bg_fight7" + }, + "973": { + "id": 973, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20973, + "name": "13-93", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3193.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1321.01 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270973, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 177.699999999997, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210973, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 143, + 283 + ], + "fightmap": "bg_fight7" + }, + "974": { + "id": 974, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20974, + "name": "13-94", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3198.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1322.17 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270974, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 177.839999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210974, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 79, + 322 + ], + "fightmap": "bg_fight7" + }, + "975": { + "id": 975, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20975, + "name": "13-95", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3203.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1323.32 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270975, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 177.979999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210975, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 31, + 307 + ], + "fightmap": "bg_fight7" + }, + "976": { + "id": 976, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20976, + "name": "13-96", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3209 + }, + { + "a": "attr", + "t": "nexp", + "n": 1324.48 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270976, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 178.119999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210976, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -16, + 294 + ], + "fightmap": "bg_fight7" + }, + "977": { + "id": 977, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20977, + "name": "13-97", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3214.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1325.64 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270977, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 178.259999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210977, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -69, + 310 + ], + "fightmap": "bg_fight7" + }, + "978": { + "id": 978, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20978, + "name": "13-98", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3219.1 + }, + { + "a": "attr", + "t": "nexp", + "n": 1326.79 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270978, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 178.399999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210978, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -61, + 350 + ], + "fightmap": "bg_fight7" + }, + "979": { + "id": 979, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20979, + "name": "13-99", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3224.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1327.95 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270979, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 178.539999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210979, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -31, + 382 + ], + "fightmap": "bg_fight7" + }, + "980": { + "id": 980, + "chapter": 13, + "mapbg": "tx_map_jh", + "needLv": 1, + "npcId": 20980, + "name": "13-100", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3229.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1329.11 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270980, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 178.679999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210980, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 20, + 406 + ], + "fightmap": "bg_fight7" + }, + "981": { + "id": 981, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 20981, + "name": "14-1", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3234.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1330.27 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270981, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 178.819999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210981, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 127, + 72 + ], + "fightmap": "bg_fight_ally" + }, + "982": { + "id": 982, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 20982, + "name": "14-2", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3239.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1331.42 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270982, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 178.959999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210982, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 160, + 98 + ], + "fightmap": "bg_fight_ally" + }, + "983": { + "id": 983, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 20983, + "name": "14-3", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3244.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1332.58 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270983, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 179.099999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210983, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 167, + 135 + ], + "fightmap": "bg_fight_ally" + }, + "984": { + "id": 984, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 20984, + "name": "14-4", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3249.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1333.74 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270984, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 179.239999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210984, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 142, + 164 + ], + "fightmap": "bg_fight_ally" + }, + "985": { + "id": 985, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 20985, + "name": "14-5", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3254.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1334.89 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270985, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 179.379999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210985, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 110, + 188 + ], + "fightmap": "bg_fight_ally" + }, + "986": { + "id": 986, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 20986, + "name": "14-6", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3259.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1336.05 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270986, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 179.519999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210986, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 58, + 195 + ], + "fightmap": "bg_fight_ally" + }, + "987": { + "id": 987, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 20987, + "name": "14-7", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3264.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1337.21 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270987, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 179.659999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210987, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 6, + 187 + ], + "fightmap": "bg_fight_ally" + }, + "988": { + "id": 988, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 20988, + "name": "14-8", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3269.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1338.36 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270988, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 179.799999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210988, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -40, + 175 + ], + "fightmap": "bg_fight_ally" + }, + "989": { + "id": 989, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 20989, + "name": "14-9", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3275 + }, + { + "a": "attr", + "t": "nexp", + "n": 1339.52 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270989, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 179.939999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210989, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -92, + 173 + ], + "fightmap": "bg_fight_ally" + }, + "990": { + "id": 990, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 20990, + "name": "14-10", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3280 + }, + { + "a": "attr", + "t": "nexp", + "n": 1340.52 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270990, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 180.079999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210990, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -144, + 178 + ], + "fightmap": "bg_fight_ally" + }, + "991": { + "id": 991, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 20991, + "name": "14-11", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3285.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 1341.84 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270991, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 180.219999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210991, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -186, + 190 + ], + "fightmap": "bg_fight_ally" + }, + "992": { + "id": 992, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 20992, + "name": "14-12", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3290.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1342.99 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270992, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 180.359999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210992, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -217, + 212 + ], + "fightmap": "bg_fight_ally" + }, + "993": { + "id": 993, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 20993, + "name": "14-13", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3295.3 + }, + { + "a": "attr", + "t": "nexp", + "n": 1344.15 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270993, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 180.499999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210993, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -222, + 245 + ], + "fightmap": "bg_fight_ally" + }, + "994": { + "id": 994, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 20994, + "name": "14-14", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3300.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 1345.31 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270994, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 180.639999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210994, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -210, + 275 + ], + "fightmap": "bg_fight_ally" + }, + "995": { + "id": 995, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 20995, + "name": "14-15", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3305.5 + }, + { + "a": "attr", + "t": "nexp", + "n": 1346.46 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270995, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 180.779999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210995, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -185, + 303 + ], + "fightmap": "bg_fight_ally" + }, + "996": { + "id": 996, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 20996, + "name": "14-16", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3310.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 1347.62 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270996, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 180.919999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210996, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -150, + 331 + ], + "fightmap": "bg_fight_ally" + }, + "997": { + "id": 997, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 20997, + "name": "14-17", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3315.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1348.78 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270997, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 181.059999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210997, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -116, + 355 + ], + "fightmap": "bg_fight_ally" + }, + "998": { + "id": 998, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 20998, + "name": "14-18", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3320.7 + }, + { + "a": "attr", + "t": "nexp", + "n": 1349.93 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270998, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 181.199999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210998, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -78, + 379 + ], + "fightmap": "bg_fight_ally" + }, + "999": { + "id": 999, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 20999, + "name": "14-19", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3325.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 1351.09 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 270999, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 181.339999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 210999, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -42, + 400 + ], + "fightmap": "bg_fight_ally" + }, + "1000": { + "id": 1000, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21000, + "name": "14-20", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 3330.9 + }, + { + "a": "attr", + "t": "nexp", + "n": 1352.25 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271000, + 280001, + 280002, + 290001, + 104, + 105, + 106, + 113 + ], + "base": 181.479999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211000, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -6, + 418 + ], + "fightmap": "bg_fight_ally" + } +} \ No newline at end of file diff --git a/src/json/tanxian_com.json5 b/src/json/tanxian_com.json5 new file mode 100644 index 0000000..126b304 --- /dev/null +++ b/src/json/tanxian_com.json5 @@ -0,0 +1,81 @@ +{ + //不知道 + "fastGuaJiNum": 0, + //每天免费快速探险次数 + "fastGuaJiFreeNum": 1, + //快速探险时间 + "fastGuaJiTime": 7200, + //购买快速探险所需钻石 + "fastGuaJiNeed": [ + 40, + 40, + 80, + 80, + 120, + 120, + 160, + 160, + 200, + 200, + 240, + 240, + 280, + 280, + 320, + 320, + 360, + 360, + 400, + 400, + 400, + 400, + 400, + 800, + 800 + ], + //VIP额外购买快速探险次数 + "fastGuaJiNumAddBuyVip": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 14, + 16, + 18, + 20, + 22, + 24, + 26 + ], + //挂机奖励X秒结算一次 + "guaJiPrizeInterval": 10, + //挂机掉落组 + "guaJiDlzInterval": 300, + //最大挂机时间 + "maxGuaJiTime": 86400, + //挂机随机事件冷却时间 + "eventCd": 40, + //事件奖励 + "event": [ + { + "p": 10, + "type": "jinbi", + "round": [ + 120, + 300, + 450 + ] + }, + { + "p": 20, + "type": "item" + } + ] +} \ No newline at end of file diff --git a/src/json/tanxian_shiwu.json b/src/json/tanxian_shiwu.json new file mode 100644 index 0000000..6605184 --- /dev/null +++ b/src/json/tanxian_shiwu.json @@ -0,0 +1,101 @@ +{ + "1": { + "id": 1, + "level": [ + 1, + 19 + ], + "diaoluo": 280017, + "guajidiaoluo": 280017 + }, + "2": { + "id": 2, + "level": [ + 20, + 34 + ], + "diaoluo": 280003, + "guajidiaoluo": 300001 + }, + "3": { + "id": 3, + "level": [ + 20, + 39 + ], + "diaoluo": 280004, + "guajidiaoluo": 300001 + }, + "4": { + "id": 4, + "level": [ + 26, + 44 + ], + "diaoluo": 280005, + "guajidiaoluo": 300002 + }, + "5": { + "id": 5, + "level": [ + 31, + 49 + ], + "diaoluo": 280006, + "guajidiaoluo": 300003 + }, + "6": { + "id": 6, + "level": [ + 36, + 54 + ], + "diaoluo": 280007, + "guajidiaoluo": 300004 + }, + "7": { + "id": 7, + "level": [ + 41, + 59 + ], + "diaoluo": 280008, + "guajidiaoluo": 300005 + }, + "8": { + "id": 8, + "level": [ + 46, + 64 + ], + "diaoluo": 280009, + "guajidiaoluo": 300006 + }, + "9": { + "id": 9, + "level": [ + 51, + 69 + ], + "diaoluo": 280010, + "guajidiaoluo": 300007 + }, + "10": { + "id": 10, + "level": [ + 56, + 74 + ], + "diaoluo": 280011, + "guajidiaoluo": 300007 + }, + "11": { + "id": 11, + "level": [ + 61, + 999 + ], + "diaoluo": 280012, + "guajidiaoluo": 300008 + } +} \ No newline at end of file diff --git a/src/json/tanxian_tgjl.json b/src/json/tanxian_tgjl.json new file mode 100644 index 0000000..dccaa9c --- /dev/null +++ b/src/json/tanxian_tgjl.json @@ -0,0 +1,2114 @@ +{ + "1": { + "id": 1, + "mapId": 1, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5000 + } + ], + "chapter": 1, + "des": "intr_guanqia_des_1" + }, + "2": { + "id": 2, + "mapId": 5, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + }, + { + "a": "item", + "t": "12", + "n": 80 + }, + { + "a": "item", + "t": "2", + "n": 400 + }, + { + "a": "item", + "t": "1", + "n": 20000 + } + ], + "chapter": 1, + "des": "intr_guanqia_des_2" + }, + "3": { + "id": 3, + "mapId": 10, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "4", + "n": 2 + } + ], + "chapter": 1, + "des": "intr_guanqia_des_3" + }, + "4": { + "id": 4, + "mapId": 15, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 25000 + } + ], + "chapter": 1, + "des": "intr_guanqia_des_4" + }, + "5": { + "id": 5, + "mapId": 20, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "4", + "n": 2 + } + ], + "chapter": 1, + "des": "intr_guanqia_des_5" + }, + "6": { + "id": 6, + "mapId": 25, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 25000 + } + ], + "chapter": 1, + "des": "intr_guanqia_des_6" + }, + "7": { + "id": 7, + "mapId": 30, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "4", + "n": 2 + } + ], + "chapter": 1, + "des": "intr_guanqia_des_7" + }, + "8": { + "id": 8, + "mapId": 35, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 25000 + } + ], + "chapter": 1, + "des": "intr_guanqia_des_8" + }, + "9": { + "id": 9, + "mapId": 40, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "4", + "n": 2 + } + ], + "chapter": 1, + "des": "intr_guanqia_des_9" + }, + "10": { + "id": 10, + "mapId": 45, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 25000 + } + ], + "chapter": 1, + "des": "intr_guanqia_des_10" + }, + "11": { + "id": 11, + "mapId": 50, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "4", + "n": 2 + } + ], + "chapter": 1, + "des": "intr_guanqia_des_11" + }, + "12": { + "id": 12, + "mapId": 55, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 50000 + } + ], + "chapter": 1, + "des": "intr_guanqia_des_12" + }, + "13": { + "id": 13, + "mapId": 60, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 50000 + }, + { + "a": "item", + "t": "4", + "n": 2 + } + ], + "chapter": 1, + "des": "intr_guanqia_des_13" + }, + "14": { + "id": 14, + "mapId": 65, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 50000 + } + ], + "chapter": 1, + "des": "intr_guanqia_des_14" + }, + "15": { + "id": 15, + "mapId": 70, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 50000 + }, + { + "a": "item", + "t": "4", + "n": 2 + } + ], + "chapter": 1, + "des": "intr_guanqia_des_15" + }, + "16": { + "id": 16, + "mapId": 75, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 50000 + } + ], + "chapter": 1, + "des": "intr_guanqia_des_16" + }, + "17": { + "id": 17, + "mapId": 80, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 50000 + } + ], + "chapter": 1, + "des": "intr_guanqia_des_17" + }, + "18": { + "id": 18, + "mapId": 85, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 50000 + } + ], + "chapter": 1, + "des": "intr_guanqia_des_18" + }, + "19": { + "id": 19, + "mapId": 90, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 50000 + } + ], + "chapter": 1, + "des": "intr_guanqia_des_19" + }, + "20": { + "id": 20, + "mapId": 95, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 50000 + } + ], + "chapter": 1, + "des": "intr_guanqia_des_20" + }, + "21": { + "id": 21, + "mapId": 100, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "chapter": 1, + "des": "intr_guanqia_des_21" + }, + "22": { + "id": 22, + "mapId": 105, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "chapter": 2, + "des": "intr_guanqia_des_22" + }, + "23": { + "id": 23, + "mapId": 110, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "chapter": 2, + "des": "intr_guanqia_des_23" + }, + "24": { + "id": 24, + "mapId": 115, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "chapter": 2, + "des": "intr_guanqia_des_24" + }, + "25": { + "id": 25, + "mapId": 120, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "chapter": 2, + "des": "intr_guanqia_des_25" + }, + "26": { + "id": 26, + "mapId": 125, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "chapter": 2, + "des": "intr_guanqia_des_26" + }, + "27": { + "id": 27, + "mapId": 130, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "chapter": 2, + "des": "intr_guanqia_des_27" + }, + "28": { + "id": 28, + "mapId": 135, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "chapter": 2, + "des": "intr_guanqia_des_28" + }, + "29": { + "id": 29, + "mapId": 140, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "chapter": 2, + "des": "intr_guanqia_des_29" + }, + "30": { + "id": 30, + "mapId": 145, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 300000 + } + ], + "chapter": 2, + "des": "intr_guanqia_des_30" + }, + "31": { + "id": 31, + "mapId": 150, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "12", + "n": 100 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 300000 + } + ], + "chapter": 2, + "des": "intr_guanqia_des_31" + }, + "32": { + "id": 32, + "mapId": 160, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 600000 + } + ], + "chapter": 2, + "des": "intr_guanqia_des_32" + }, + "33": { + "id": 33, + "mapId": 170, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 600000 + } + ], + "chapter": 2, + "des": "intr_guanqia_des_33" + }, + "34": { + "id": 34, + "mapId": 180, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 600000 + } + ], + "chapter": 2, + "des": "intr_guanqia_des_34" + }, + "35": { + "id": 35, + "mapId": 190, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 600000 + } + ], + "chapter": 2, + "des": "intr_guanqia_des_35" + }, + "36": { + "id": 36, + "mapId": 200, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 600000 + } + ], + "chapter": 2, + "des": "intr_guanqia_des_36" + }, + "37": { + "id": 37, + "mapId": 210, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 600000 + } + ], + "chapter": 3, + "des": "intr_guanqia_des_37" + }, + "38": { + "id": 38, + "mapId": 220, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 600000 + } + ], + "chapter": 3, + "des": "intr_guanqia_des_38" + }, + "39": { + "id": 39, + "mapId": 230, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 600000 + } + ], + "chapter": 3, + "des": "intr_guanqia_des_39" + }, + "40": { + "id": 40, + "mapId": 240, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 600000 + } + ], + "chapter": 3, + "des": "intr_guanqia_des_40" + }, + "41": { + "id": 41, + "mapId": 250, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 600000 + } + ], + "chapter": 3, + "des": "intr_guanqia_des_41" + }, + "42": { + "id": 42, + "mapId": 260, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 600000 + } + ], + "chapter": 3, + "des": "intr_guanqia_des_42" + }, + "43": { + "id": 43, + "mapId": 270, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 600000 + } + ], + "chapter": 3, + "des": "intr_guanqia_des_43" + }, + "44": { + "id": 44, + "mapId": 280, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 600000 + } + ], + "chapter": 3, + "des": "intr_guanqia_des_44" + }, + "45": { + "id": 45, + "mapId": 290, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 600000 + } + ], + "chapter": 3, + "des": "intr_guanqia_des_45" + }, + "46": { + "id": 46, + "mapId": 300, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 4000000 + } + ], + "chapter": 3, + "des": "intr_guanqia_des_46" + }, + "47": { + "id": 47, + "mapId": 310, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 4000000 + } + ], + "chapter": 4, + "des": "intr_guanqia_des_47" + }, + "48": { + "id": 48, + "mapId": 320, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 4000000 + } + ], + "chapter": 4, + "des": "intr_guanqia_des_48" + }, + "49": { + "id": 49, + "mapId": 330, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 4000000 + } + ], + "chapter": 4, + "des": "intr_guanqia_des_49" + }, + "50": { + "id": 50, + "mapId": 340, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 4000000 + } + ], + "chapter": 4, + "des": "intr_guanqia_des_50" + }, + "51": { + "id": 51, + "mapId": 350, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 4000000 + } + ], + "chapter": 4, + "des": "intr_guanqia_des_51" + }, + "52": { + "id": 52, + "mapId": 360, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 4000000 + } + ], + "chapter": 4, + "des": "intr_guanqia_des_52" + }, + "53": { + "id": 53, + "mapId": 370, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 4000000 + } + ], + "chapter": 4, + "des": "intr_guanqia_des_53" + }, + "54": { + "id": 54, + "mapId": 380, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 4000000 + } + ], + "chapter": 4, + "des": "intr_guanqia_des_54" + }, + "55": { + "id": 55, + "mapId": 390, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 4000000 + } + ], + "chapter": 4, + "des": "intr_guanqia_des_55" + }, + "56": { + "id": 56, + "mapId": 400, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "item", + "t": "2", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 4000000 + } + ], + "chapter": 4, + "des": "intr_guanqia_des_56" + }, + "57": { + "id": 57, + "mapId": 420, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1000 + }, + { + "a": "item", + "t": "12", + "n": 400 + }, + { + "a": "item", + "t": "2", + "n": 2000 + }, + { + "a": "item", + "t": "1", + "n": 8000000 + } + ], + "chapter": 5, + "des": "intr_guanqia_des_57" + }, + "58": { + "id": 58, + "mapId": 440, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1000 + }, + { + "a": "item", + "t": "12", + "n": 400 + }, + { + "a": "item", + "t": "2", + "n": 2000 + }, + { + "a": "item", + "t": "1", + "n": 8000000 + } + ], + "chapter": 5, + "des": "intr_guanqia_des_58" + }, + "59": { + "id": 59, + "mapId": 460, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1000 + }, + { + "a": "item", + "t": "12", + "n": 400 + }, + { + "a": "item", + "t": "2", + "n": 2000 + }, + { + "a": "item", + "t": "1", + "n": 8000000 + } + ], + "chapter": 5, + "des": "intr_guanqia_des_59" + }, + "60": { + "id": 60, + "mapId": 480, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1000 + }, + { + "a": "item", + "t": "12", + "n": 400 + }, + { + "a": "item", + "t": "2", + "n": 2000 + }, + { + "a": "item", + "t": "1", + "n": 8000000 + } + ], + "chapter": 5, + "des": "intr_guanqia_des_60" + }, + "61": { + "id": 61, + "mapId": 500, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1000 + }, + { + "a": "item", + "t": "12", + "n": 400 + }, + { + "a": "item", + "t": "2", + "n": 2000 + }, + { + "a": "item", + "t": "1", + "n": 8000000 + } + ], + "chapter": 5, + "des": "intr_guanqia_des_61" + }, + "62": { + "id": 62, + "mapId": 520, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1000 + }, + { + "a": "item", + "t": "12", + "n": 400 + }, + { + "a": "item", + "t": "2", + "n": 2000 + }, + { + "a": "item", + "t": "1", + "n": 8000000 + } + ], + "chapter": 5, + "des": "intr_guanqia_des_62" + }, + "63": { + "id": 63, + "mapId": 540, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1000 + }, + { + "a": "item", + "t": "12", + "n": 400 + }, + { + "a": "item", + "t": "2", + "n": 2000 + }, + { + "a": "item", + "t": "1", + "n": 8000000 + } + ], + "chapter": 5, + "des": "intr_guanqia_des_63" + }, + "64": { + "id": 64, + "mapId": 560, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1000 + }, + { + "a": "item", + "t": "12", + "n": 400 + }, + { + "a": "item", + "t": "2", + "n": 2000 + }, + { + "a": "item", + "t": "1", + "n": 8000000 + } + ], + "chapter": 5, + "des": "intr_guanqia_des_64" + }, + "65": { + "id": 65, + "mapId": 580, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1000 + }, + { + "a": "item", + "t": "12", + "n": 400 + }, + { + "a": "item", + "t": "2", + "n": 2000 + }, + { + "a": "item", + "t": "1", + "n": 8000000 + } + ], + "chapter": 5, + "des": "intr_guanqia_des_65" + }, + "66": { + "id": 66, + "mapId": 600, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1000 + }, + { + "a": "item", + "t": "12", + "n": 400 + }, + { + "a": "item", + "t": "2", + "n": 2000 + }, + { + "a": "item", + "t": "1", + "n": 8000000 + } + ], + "chapter": 5, + "des": "intr_guanqia_des_66" + }, + "67": { + "id": 67, + "mapId": 650, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 2500 + }, + { + "a": "item", + "t": "12", + "n": 1000 + }, + { + "a": "item", + "t": "2", + "n": 2500 + }, + { + "a": "item", + "t": "1", + "n": 20000000 + } + ], + "chapter": 6, + "des": "intr_guanqia_des_67" + }, + "68": { + "id": 68, + "mapId": 700, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 2500 + }, + { + "a": "item", + "t": "12", + "n": 1000 + }, + { + "a": "item", + "t": "2", + "n": 2500 + }, + { + "a": "item", + "t": "1", + "n": 20000000 + } + ], + "chapter": 6, + "des": "intr_guanqia_des_68" + }, + "69": { + "id": 69, + "mapId": 750, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 2500 + }, + { + "a": "item", + "t": "12", + "n": 1000 + }, + { + "a": "item", + "t": "2", + "n": 2500 + }, + { + "a": "item", + "t": "1", + "n": 20000000 + } + ], + "chapter": 7, + "des": "intr_guanqia_des_69" + }, + "70": { + "id": 70, + "mapId": 800, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 2500 + }, + { + "a": "item", + "t": "12", + "n": 1000 + }, + { + "a": "item", + "t": "2", + "n": 2500 + }, + { + "a": "item", + "t": "1", + "n": 20000000 + } + ], + "chapter": 7, + "des": "intr_guanqia_des_70" + }, + "71": { + "id": 71, + "mapId": 850, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 2500 + }, + { + "a": "item", + "t": "12", + "n": 1000 + }, + { + "a": "item", + "t": "2", + "n": 2500 + }, + { + "a": "item", + "t": "1", + "n": 20000000 + } + ], + "chapter": 8, + "des": "intr_guanqia_des_71" + }, + "72": { + "id": 72, + "mapId": 900, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 2500 + }, + { + "a": "item", + "t": "12", + "n": 1000 + }, + { + "a": "item", + "t": "2", + "n": 2500 + }, + { + "a": "item", + "t": "1", + "n": 20000000 + } + ], + "chapter": 8, + "des": "intr_guanqia_des_72" + }, + "73": { + "id": 73, + "mapId": 950, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 2500 + }, + { + "a": "item", + "t": "12", + "n": 1000 + }, + { + "a": "item", + "t": "2", + "n": 2500 + }, + { + "a": "item", + "t": "1", + "n": 20000000 + } + ], + "chapter": 9, + "des": "intr_guanqia_des_73" + }, + "74": { + "id": 74, + "mapId": 1000, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 2500 + }, + { + "a": "item", + "t": "12", + "n": 1000 + }, + { + "a": "item", + "t": "2", + "n": 2500 + }, + { + "a": "item", + "t": "1", + "n": 20000000 + } + ], + "chapter": 9, + "des": "intr_guanqia_des_74" + } +} \ No newline at end of file diff --git a/src/json/task.json b/src/json/task.json new file mode 100644 index 0000000..7874b09 --- /dev/null +++ b/src/json/task.json @@ -0,0 +1,41273 @@ +{ + "1": { + "1": { + "id": 1, + "type": 1, + "stype": 128, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "attr", + "t": "nexp", + "n": 10000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 25000 + } + ], + "pval": 1, + "name": "intr_task_name_1", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [], + "tiaozhuan": 1, + "order": 1, + "special": 0, + "show": "" + }, + "2": { + "id": 2, + "type": 1, + "stype": 100, + "prize": [ + { + "a": "item", + "t": "12", + "n": 50 + }, + { + "a": "attr", + "t": "nexp", + "n": 10000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 25000 + } + ], + "pval": 1, + "name": "intr_task_name_2", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [], + "tiaozhuan": 24, + "order": 2, + "special": 0, + "show": "" + }, + "3": { + "id": 3, + "type": 1, + "stype": 102, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "attr", + "t": "nexp", + "n": 10000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 25000 + } + ], + "pval": 1, + "name": "intr_task_name_3", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [], + "tiaozhuan": 11, + "order": 3, + "special": 0, + "show": "" + }, + "4": { + "id": 4, + "type": 1, + "stype": 117, + "prize": [ + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "nexp", + "n": 10000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 25000 + } + ], + "pval": 2, + "name": "intr_task_name_4", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [], + "tiaozhuan": 25, + "order": 4, + "special": 0, + "show": "" + }, + "5": { + "id": 5, + "type": 1, + "stype": 117, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "attr", + "t": "nexp", + "n": 10000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 25000 + } + ], + "pval": 6, + "name": "intr_task_name_4", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [], + "tiaozhuan": 25, + "order": 5, + "special": 0, + "show": "" + }, + "6": { + "id": 6, + "type": 1, + "stype": 118, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "attr", + "t": "nexp", + "n": 20000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 25000 + } + ], + "pval": 2, + "name": "intr_task_name_5", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [], + "tiaozhuan": 9, + "order": 6, + "special": 0, + "show": "" + }, + "7": { + "id": 7, + "type": 1, + "stype": 101, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "attr", + "t": "nexp", + "n": 10000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 25000 + } + ], + "pval": 1, + "name": "intr_task_name_6", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [], + "tiaozhuan": 2, + "order": 7, + "special": 0, + "show": "" + }, + "8": { + "id": 8, + "type": 1, + "stype": 111, + "prize": [ + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "nexp", + "n": 10000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 25000 + } + ], + "pval": 1, + "name": "intr_task_name_7", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [], + "tiaozhuan": 68, + "order": 8, + "special": 0, + "show": "" + }, + "9": { + "id": 9, + "type": 1, + "stype": 120, + "prize": [ + { + "a": "item", + "t": "12", + "n": 50 + }, + { + "a": "attr", + "t": "nexp", + "n": 10000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 25000 + } + ], + "pval": 3, + "name": "intr_task_name_8", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [], + "tiaozhuan": 3, + "order": 9, + "special": 0, + "show": "" + }, + "10": { + "id": 10, + "type": 1, + "stype": 122, + "prize": [ + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "nexp", + "n": 10000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 25000 + } + ], + "pval": 1, + "name": "intr_task_name_9", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [], + "tiaozhuan": 3, + "order": 10, + "special": 0, + "show": "" + }, + "11": { + "id": 11, + "type": 1, + "stype": 122, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "attr", + "t": "nexp", + "n": 10000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 25000 + } + ], + "pval": 3, + "name": "intr_task_name_9", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [], + "tiaozhuan": 3, + "order": 11, + "special": 0, + "show": "" + }, + "12": { + "id": 12, + "type": 1, + "stype": 142, + "prize": [ + { + "a": "item", + "t": "17", + "n": 1 + }, + { + "a": "attr", + "t": "nexp", + "n": 20000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 25000 + } + ], + "pval": 1, + "name": "intr_task_name_10", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [ + 2 + ], + "tiaozhuan": 20, + "order": 12, + "special": 0, + "show": "zc_btn_slzb" + }, + "13": { + "id": 13, + "type": 1, + "stype": 123, + "prize": [ + { + "a": "item", + "t": "11", + "n": 50 + }, + { + "a": "attr", + "t": "nexp", + "n": 10000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 25000 + } + ], + "pval": 3, + "name": "intr_task_name_11", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [], + "tiaozhuan": 28, + "order": 13, + "special": 0, + "show": "jingjichang" + }, + "14": { + "id": 14, + "type": 1, + "stype": 124, + "prize": [ + { + "a": "item", + "t": "23", + "n": 1000 + }, + { + "a": "attr", + "t": "nexp", + "n": 10000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 25000 + } + ], + "pval": 5, + "name": "intr_task_name_12", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [], + "tiaozhuan": 29, + "order": 14, + "special": 0, + "show": "pata" + }, + "15": { + "id": 15, + "type": 1, + "stype": 125, + "prize": [ + { + "a": "item", + "t": "1", + "n": 10000 + }, + { + "a": "attr", + "t": "nexp", + "n": 10000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 25000 + } + ], + "pval": 1, + "name": "intr_task_name_13", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [], + "tiaozhuan": 30, + "order": 15, + "special": 0, + "show": "meirishilian" + }, + "16": { + "id": 16, + "type": 1, + "stype": 126, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "attr", + "t": "nexp", + "n": 10000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 25000 + } + ], + "pval": 1, + "name": "intr_task_name_14", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [], + "tiaozhuan": 31, + "order": 16, + "special": 0, + "show": "dpzd_main" + }, + "17": { + "id": 17, + "type": 1, + "stype": 132, + "prize": [ + { + "a": "item", + "t": "12", + "n": 50 + }, + { + "a": "attr", + "t": "nexp", + "n": 10000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 25000 + } + ], + "pval": 3, + "name": "intr_task_name_15", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [], + "tiaozhuan": 62, + "order": 17, + "special": 0, + "show": "gonglukuangbiao" + }, + "18": { + "id": 18, + "type": 1, + "stype": 127, + "prize": [ + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "nexp", + "n": 10000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 25000 + } + ], + "pval": 1, + "name": "intr_task_name_16", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [], + "tiaozhuan": 32, + "order": 18, + "special": 0, + "show": "qjzzd" + }, + "19": { + "id": 19, + "type": 1, + "stype": 141, + "prize": [ + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "nexp", + "n": 10000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 25000 + } + ], + "pval": 1, + "name": "intr_task_name_17", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [], + "tiaozhuan": 37, + "order": 19, + "special": 0, + "show": "教会仓库" + }, + "20": { + "id": 20, + "type": 1, + "stype": 131, + "prize": [ + { + "a": "item", + "t": "1", + "n": 10000 + }, + { + "a": "attr", + "t": "nexp", + "n": 20000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 25000 + } + ], + "pval": 1, + "name": "intr_task_name_018", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [], + "tiaozhuan": 37, + "order": 20, + "special": 0, + "show": "教会仓库" + } + }, + "2": { + "2000": { + "id": 2000, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "attr", + "t": "nexp", + "n": 500 + } + ], + "pval": 1, + "name": "intr_task_name_2000", + "undefined": "从此刻起,你便选择了一条无法回头的路。加入黑礁,第一个任务,干掉眼前的威胁。", + "intr": "intr_task_intr_2000", + "pretask": 0, + "followtask": 2001, + "cond": [], + "tiaozhuan": 3, + "order": 1, + "special": 0, + "show": "" + }, + "2001": { + "id": 2001, + "type": 2, + "stype": 118, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "attr", + "t": "nexp", + "n": 500 + } + ], + "pval": 1, + "name": "intr_task_name_3039", + "undefined": "初来乍到没有手下可不好办事,去酒馆看看吧", + "intr": "intr_task_intr_3039", + "pretask": 2000, + "followtask": 2002, + "cond": [], + "tiaozhuan": 9, + "order": 2, + "special": 0, + "show": "" + }, + "2002": { + "id": 2002, + "type": 2, + "stype": 107, + "prize": [ + { + "a": "equip", + "t": "1001", + "n": 1 + }, + { + "a": "equip", + "t": "2001", + "n": 1 + }, + { + "a": "equip", + "t": "3001", + "n": 1 + }, + { + "a": "equip", + "t": "4001", + "n": 1 + } + ], + "pval": 2, + "name": "intr_task_name_2006", + "undefined": "单打独斗在罗阿那普拉是没有胜利的机会的,集合你的干部们。", + "intr": "intr_task_intr_2006", + "pretask": 2001, + "followtask": 2003, + "cond": [], + "tiaozhuan": 2, + "order": 3, + "special": 0, + "show": "" + }, + "2003": { + "id": 2003, + "type": 2, + "stype": 143, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "attr", + "t": "nexp", + "n": 500 + } + ], + "pval": 1, + "name": "intr_task_name_3040", + "undefined": "从此刻起,你便选择了一条无法回头的路。加入黑礁,第一个任务,干掉眼前的威胁。", + "intr": "intr_task_intr_2000", + "pretask": 2002, + "followtask": 2004, + "cond": [], + "tiaozhuan": 2, + "order": 4, + "special": 0, + "show": "" + }, + "2004": { + "id": 2004, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1000 + }, + { + "a": "item", + "t": "3007", + "n": 20 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 2, + "name": "intr_task_name_2001", + "undefined": "罗阿那普拉没有哭泣和犹豫的机会。事已至此,你只能不断前进,拿起手中的枪吧。", + "intr": "intr_task_intr_2001", + "pretask": 2003, + "followtask": 2005, + "cond": [], + "tiaozhuan": 3, + "order": 5, + "special": 0, + "show": "" + }, + "2005": { + "id": 2005, + "type": 2, + "stype": 146, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1000 + }, + { + "a": "item", + "t": "12", + "n": 200 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 1, + "name": "intr_task_name_3044", + "undefined": "罗阿那普拉没有哭泣和犹豫的机会。事已至此,你只能不断前进,拿起手中的枪吧。", + "intr": "intr_task_intr_2001", + "pretask": 2004, + "followtask": 2006, + "cond": [], + "tiaozhuan": 3, + "order": 6, + "special": 0, + "show": "" + }, + "2006": { + "id": 2006, + "type": 2, + "stype": 107, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "attr", + "t": "nexp", + "n": 500 + } + ], + "pval": 3, + "name": "intr_task_name_2006", + "undefined": "单打独斗在罗阿那普拉是没有胜利的机会的,集合你的干部们。", + "intr": "intr_task_intr_2006", + "pretask": 2005, + "followtask": 2007, + "cond": [], + "tiaozhuan": 2, + "order": 7, + "special": 0, + "show": "" + }, + "2007": { + "id": 2007, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "12", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 3, + "name": "intr_task_name_2002", + "undefined": "黑礁商会的准则就是一切为了完成客户交代的任务,为此,可以不惜任何代价。", + "intr": "intr_task_intr_2002", + "pretask": 2006, + "followtask": 2008, + "cond": [], + "tiaozhuan": 3, + "order": 8, + "special": 0, + "show": "" + }, + "2008": { + "id": 2008, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "attr", + "t": "nexp", + "n": 500 + } + ], + "pval": 1, + "name": "intr_task_name_2058", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2058", + "pretask": 2007, + "followtask": 2009, + "cond": [], + "tiaozhuan": 3, + "order": 9, + "special": 0, + "show": "" + }, + "2009": { + "id": 2009, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 1, + "name": "intr_task_name_3041", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2058", + "pretask": 2008, + "followtask": 2010, + "cond": [ + 2 + ], + "tiaozhuan": 2, + "order": 10, + "special": 0, + "show": "" + }, + "2010": { + "id": 2010, + "type": 2, + "stype": 108, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 1, + "name": "intr_task_name_3042", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2058", + "pretask": 2009, + "followtask": 2011, + "cond": [ + 1 + ], + "tiaozhuan": 2, + "order": 11, + "special": 0, + "show": "" + }, + "2011": { + "id": 2011, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "item", + "t": "4", + "n": 10 + }, + { + "a": "attr", + "t": "nexp", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 4, + "name": "intr_task_name_2003", + "undefined": "想要站稳脚跟,必须要先与莫斯卡旅馆建立友谊。那些得罪旅馆的人就当做见面礼吧。", + "intr": "intr_task_intr_2003", + "pretask": 2010, + "followtask": 2012, + "cond": [], + "tiaozhuan": 3, + "order": 12, + "special": 0, + "show": "" + }, + "2012": { + "id": 2012, + "type": 2, + "stype": 118, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "attr", + "t": "nexp", + "n": 1000 + }, + { + "a": "item", + "t": "12", + "n": 10 + } + ], + "pval": 10, + "name": "intr_task_name_3043", + "undefined": "初来乍到没有手下可不好办事,去酒馆看看吧", + "intr": "intr_task_intr_3039", + "pretask": 2011, + "followtask": 2013, + "cond": [], + "tiaozhuan": 9, + "order": 13, + "special": 0, + "show": "" + }, + "2013": { + "id": 2013, + "type": 2, + "stype": 107, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1000 + }, + { + "a": "item", + "t": "12", + "n": 20 + }, + { + "a": "equip", + "t": "1001", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 4, + "name": "intr_task_name_2006", + "undefined": "单打独斗在罗阿那普拉是没有胜利的机会的,集合你的干部们。", + "intr": "intr_task_intr_2006", + "pretask": 2012, + "followtask": 2014, + "cond": [], + "tiaozhuan": 2, + "order": 14, + "special": 0, + "show": "" + }, + "2014": { + "id": 2014, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1300 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 5, + "name": "intr_task_name_2004", + "undefined": "有不少纳粹余党正在试图靠近二战遗留的潜艇残骸。是成为海上霸主,还是成为茫茫海底沉睡的尸骨?", + "intr": "intr_task_intr_2004", + "pretask": 2013, + "followtask": 2015, + "cond": [], + "tiaozhuan": 3, + "order": 15, + "special": 0, + "show": "" + }, + "2015": { + "id": 2015, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1200 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "24", + "n": 2 + }, + { + "a": "equip", + "t": "1002", + "n": 1 + } + ], + "pval": 1, + "name": "intr_task_name_2005", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2005", + "pretask": 2014, + "followtask": 2016, + "cond": [ + 20 + ], + "tiaozhuan": 66, + "order": 16, + "special": 0, + "show": "" + }, + "2016": { + "id": 2016, + "type": 2, + "stype": 108, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1300 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "equip", + "t": "2002", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 2, + "name": "intr_task_name_2007", + "undefined": "艰苦砺练,厚积薄发。多日来的特训有了结果,展现真正的实力,摧毁你的敌人。", + "intr": "intr_task_intr_2007", + "pretask": 2015, + "followtask": 2017, + "cond": [ + 1 + ], + "tiaozhuan": 67, + "order": 17, + "special": 0, + "show": "" + }, + "2017": { + "id": 2017, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 800 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "equip", + "t": "3002", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 6, + "name": "intr_task_name_2008", + "undefined": "本地80%的武器都由教会供应,想要扩张军火就要拜访修女。但现在修女无奈表示,新到的军火不翼而飞了。", + "intr": "intr_task_intr_2008", + "pretask": 2016, + "followtask": 2018, + "cond": [], + "tiaozhuan": 3, + "order": 18, + "special": 0, + "show": "" + }, + "2018": { + "id": 2018, + "type": 2, + "stype": 104, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 3000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 9, + "name": "intr_task_name_2009", + "undefined": "你的名字和实力大幅提升了,更多的干部会慕名前来。", + "intr": "intr_task_intr_2009", + "pretask": 2017, + "followtask": 2019, + "cond": [], + "tiaozhuan": 3, + "order": 19, + "special": 0, + "show": "" + }, + "2019": { + "id": 2019, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "equip", + "t": "2001", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 7, + "name": "intr_task_name_2010", + "undefined": "教训完狂妄的盗贼后,你获得了相当雄厚的军火资源。你迫不及待地想试试这批新武器的威力了!", + "intr": "intr_task_intr_2010", + "pretask": 2018, + "followtask": 2020, + "cond": [], + "tiaozhuan": 3, + "order": 20, + "special": 0, + "show": "" + }, + "2020": { + "id": 2020, + "type": 2, + "stype": 104, + "prize": [ + { + "a": "equip", + "t": "3001", + "n": 1 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 11, + "name": "intr_task_name_2011", + "undefined": "你的名字和实力大幅提升了,更多的干部会慕名前来。", + "intr": "intr_task_intr_2011", + "pretask": 2019, + "followtask": 2021, + "cond": [], + "tiaozhuan": 3, + "order": 21, + "special": 0, + "show": "" + }, + "2021": { + "id": 2021, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 3000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 2, + "name": "intr_task_name_2012", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2012", + "pretask": 2020, + "followtask": 2022, + "cond": [ + 20 + ], + "tiaozhuan": 66, + "order": 22, + "special": 0, + "show": "" + }, + "2022": { + "id": 2022, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 3000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "equip", + "t": "4001", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 11, + "name": "intr_task_name_2013", + "undefined": "南美黑手党卡尔特尔绑架了一个小孩并命令黑礁商会押运,没想到却吸引来了猎犬罗贝尔特。这次任务能否成功进行?", + "intr": "intr_task_intr_2013", + "pretask": 2021, + "followtask": 2023, + "cond": [], + "tiaozhuan": 3, + "order": 23, + "special": 0, + "show": "" + }, + "2023": { + "id": 2023, + "type": 2, + "stype": 104, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 12, + "name": "intr_task_name_2014", + "undefined": "你的名字和实力大幅提升了,更多的干部会慕名前来。", + "intr": "intr_task_intr_2014", + "pretask": 2022, + "followtask": 2024, + "cond": [], + "tiaozhuan": 3, + "order": 24, + "special": 0, + "show": "" + }, + "2024": { + "id": 2024, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "item", + "t": "12", + "n": 50 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 3, + "name": "intr_task_name_2005", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2005", + "pretask": 2023, + "followtask": 2025, + "cond": [ + 20 + ], + "tiaozhuan": 66, + "order": 25, + "special": 0, + "show": "" + }, + "2025": { + "id": 2025, + "type": 2, + "stype": 108, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 3000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 2, + "name": "intr_task_name_2016", + "undefined": "艰苦砺练,厚积薄发。多日来的特训有了结果,展现真正的实力,摧毁你的敌人。", + "intr": "intr_task_intr_2016", + "pretask": 2024, + "followtask": 2026, + "cond": [ + 1 + ], + "tiaozhuan": 67, + "order": 26, + "special": 0, + "show": "" + }, + "2026": { + "id": 2026, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 3000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "24", + "n": 1 + }, + { + "a": "equip", + "t": "4002", + "n": 1 + } + ], + "pval": 13, + "name": "intr_task_name_2017", + "undefined": "几方黑帮势力交错纵横,身处夹在势力中间的黑礁商会左右为难,不甘心坐以待毙的你拿起了枪支。", + "intr": "intr_task_intr_2017", + "pretask": 2025, + "followtask": 2027, + "cond": [], + "tiaozhuan": 3, + "order": 27, + "special": 0, + "show": "" + }, + "2027": { + "id": 2027, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "hero", + "t": "2002", + "n": 1 + }, + { + "a": "equip", + "t": "1002", + "n": 1 + } + ], + "pval": 1, + "name": "intr_task_name_2018", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2018", + "pretask": 2026, + "followtask": 2028, + "cond": [ + 30 + ], + "tiaozhuan": 66, + "order": 28, + "special": 0, + "show": "" + }, + "2028": { + "id": 2028, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "equip", + "t": "2002", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 15, + "name": "intr_task_name_2019", + "undefined": "在混战中大显神威的你,已经引起了各大势力的注意。你游刃有余地从事着商会的任务,直到一个姓张的男人来到了商会的门口。", + "intr": "intr_task_intr_2019", + "pretask": 2027, + "followtask": 2029, + "cond": [], + "tiaozhuan": 3, + "order": 29, + "special": 0, + "show": "" + }, + "2029": { + "id": 2029, + "type": 2, + "stype": 110, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 1, + "name": "intr_task_name_2020", + "undefined": "上次的战斗中你领悟了新的技巧,武道永无止境,增强自身的实力吧。", + "intr": "intr_task_intr_2020", + "pretask": 2028, + "followtask": 2030, + "cond": [], + "tiaozhuan": 7, + "order": 30, + "special": 0, + "show": "" + }, + "2030": { + "id": 2030, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "equip", + "t": "3002", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 17, + "name": "intr_task_name_2021", + "undefined": "提着脑袋过活的日子仍在继续,张维新的新任务引来了大批雇佣军,在枪林弹雨中,你与众人一起掩护张维新撤退。", + "intr": "intr_task_intr_2021", + "pretask": 2029, + "followtask": 2031, + "cond": [], + "tiaozhuan": 3, + "order": 31, + "special": 0, + "show": "" + }, + "2031": { + "id": 2031, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "item", + "t": "12", + "n": 50 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 2, + "name": "intr_task_name_2005", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2005", + "pretask": 2030, + "followtask": 2032, + "cond": [ + 30 + ], + "tiaozhuan": 66, + "order": 32, + "special": 0, + "show": "" + }, + "2032": { + "id": 2032, + "type": 2, + "stype": 143, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "12", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 6, + "name": "intr_task_name_2022", + "undefined": "精良的装备能最大限度发挥自身的能力,也是在罗阿那普拉活下来的保障。", + "intr": "intr_task_intr_2022", + "pretask": 2031, + "followtask": 2033, + "cond": [], + "tiaozhuan": 68, + "order": 33, + "special": 0, + "show": "" + }, + "2033": { + "id": 2033, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "pval": 18, + "name": "intr_task_name_2023", + "undefined": "黑礁众人分批在海上航行,你却被之前的名声所累,遭到了火力围剿。但头领竹中却对你露出了满意的笑容。", + "intr": "intr_task_intr_2023", + "pretask": 2032, + "followtask": 2034, + "cond": [], + "tiaozhuan": 3, + "order": 34, + "special": 0, + "show": "" + }, + "2034": { + "id": 2034, + "type": 2, + "stype": 112, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "pval": 20, + "name": "intr_task_name_2024", + "undefined": "强化不仅能提升装备的耐耗度,还能提升攻击火力。这决定着一场战斗的结果是生是死。", + "intr": "intr_task_intr_2024", + "pretask": 2033, + "followtask": 2035, + "cond": [], + "tiaozhuan": 68, + "order": 35, + "special": 0, + "show": "" + }, + "2035": { + "id": 2035, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "4", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "pval": 19, + "name": "intr_task_name_2025", + "undefined": "巴西兰岛上,面对竹中的邀请,你毅然扣下了扳机。可惜子弹打空了,你也被竹中击晕。但得益于战斗的历练,你很快苏醒了过来。", + "intr": "intr_task_intr_2025", + "pretask": 2034, + "followtask": 2036, + "cond": [], + "tiaozhuan": 3, + "order": 36, + "special": 0, + "show": "" + }, + "2036": { + "id": 2036, + "type": 2, + "stype": 113, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "pval": 4, + "name": "intr_task_name_2026", + "undefined": "拥有再多的普通装备都不如一件强化到十级的装备,穿上它,体验前所未有的强悍。", + "intr": "intr_task_intr_2026", + "pretask": 2035, + "followtask": 2037, + "cond": [ + 10 + ], + "tiaozhuan": 68, + "order": 37, + "special": 0, + "show": "" + }, + "2037": { + "id": 2037, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "item", + "t": "12", + "n": 50 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 3, + "name": "intr_task_name_2005", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2005", + "pretask": 2036, + "followtask": 2038, + "cond": [ + 30 + ], + "tiaozhuan": 66, + "order": 38, + "special": 0, + "show": "" + }, + "2038": { + "id": 2038, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "4", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "pval": 20, + "name": "intr_task_name_2027", + "undefined": "张维新终于和货物原主美方谈拢了价格,并派出人营救你,众人在你的指挥下成功杀出重围。罗阿那普拉的新星冉冉升起了。", + "intr": "intr_task_intr_2027", + "pretask": 2037, + "followtask": 2039, + "cond": [], + "tiaozhuan": 3, + "order": 39, + "special": 0, + "show": "" + }, + "2039": { + "id": 2039, + "type": 2, + "stype": 104, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "pval": 18, + "name": "intr_task_name_2028", + "undefined": "你的名字和实力大幅提升了,更多的干部会慕名前来。", + "intr": "intr_task_intr_2028", + "pretask": 2038, + "followtask": 2040, + "cond": [], + "tiaozhuan": 3, + "order": 40, + "special": 0, + "show": "" + }, + "2040": { + "id": 2040, + "type": 2, + "stype": 109, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 3000 + }, + { + "a": "item", + "t": "12", + "n": 10 + }, + { + "a": "hero", + "t": "2001", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 1, + "name": "intr_task_name_2029", + "undefined": "欢迎来到罗那阿普拉的频道,和平易近人的友邻们打个招呼吧!", + "intr": "intr_task_intr_2029", + "pretask": 2039, + "followtask": 2041, + "cond": [], + "tiaozhuan": 35, + "order": 41, + "special": 0, + "show": "" + }, + "2041": { + "id": 2041, + "type": 2, + "stype": 143, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "4", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 10, + "name": "intr_task_name_2030", + "undefined": "精良的装备能最大限度发挥自身的能力,也是在罗阿那普拉活下来的保障。", + "intr": "intr_task_intr_2030", + "pretask": 2040, + "followtask": 2042, + "cond": [], + "tiaozhuan": 68, + "order": 42, + "special": 0, + "show": "" + }, + "2042": { + "id": 2042, + "type": 2, + "stype": 113, + "prize": [ + { + "a": "item", + "t": "12", + "n": 50 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 8, + "name": "intr_task_name_2031", + "undefined": "拥有再多的普通装备都不如一件强化到二十级的装备,穿上它,体验前所未有的强悍。", + "intr": "intr_task_intr_2031", + "pretask": 2041, + "followtask": 2043, + "cond": [ + 20 + ], + "tiaozhuan": 68, + "order": 43, + "special": 0, + "show": "" + }, + "2043": { + "id": 2043, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "4", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 24, + "name": "intr_task_name_2032", + "undefined": "已经获得一帮手下的你拥有了独立的势力,但你仍与黑礁保持着密切的联系。同时,你也被一些狂徒所觊觎。", + "intr": "intr_task_intr_2032", + "pretask": 2042, + "followtask": 2044, + "cond": [], + "tiaozhuan": 3, + "order": 44, + "special": 0, + "show": "" + }, + "2044": { + "id": 2044, + "type": 2, + "stype": 104, + "prize": [ + { + "a": "item", + "t": "4", + "n": 1 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "equip", + "t": "4002", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 19, + "name": "intr_task_name_2033", + "undefined": "你的名字和实力大幅提升了,更多的干部会慕名前来。", + "intr": "intr_task_intr_2033", + "pretask": 2043, + "followtask": 2045, + "cond": [], + "tiaozhuan": 3, + "order": 45, + "special": [], + "show": "" + }, + "2045": { + "id": 2045, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "item", + "t": "12", + "n": 50 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "2", + "n": 200 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 4, + "name": "intr_task_name_2005", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2005", + "pretask": 2044, + "followtask": 2046, + "cond": [ + 30 + ], + "tiaozhuan": 66, + "order": 46, + "special": 0, + "show": "" + }, + "2046": { + "id": 2046, + "type": 2, + "stype": 108, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 4, + "name": "intr_task_name_2016", + "undefined": "艰苦砺练,厚积薄发。多日来的特训有了结果,展现真正的实力,摧毁你的敌人。", + "intr": "intr_task_intr_2016", + "pretask": 2045, + "followtask": 2047, + "cond": [ + 1 + ], + "tiaozhuan": 67, + "order": 47, + "special": 0, + "show": "" + }, + "2047": { + "id": 2047, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "item", + "t": "12", + "n": 50 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 28, + "name": "intr_task_name_2035", + "undefined": "你的手下莫名被暗杀了。就在你一筹莫展之际,莫斯科旅馆找上门,要求与你一起联手调查最近的暗杀事件。", + "intr": "intr_task_intr_2035", + "pretask": 2046, + "followtask": 2048, + "cond": [], + "tiaozhuan": 3, + "order": 48, + "special": 0, + "show": "" + }, + "2048": { + "id": 2048, + "type": 2, + "stype": 104, + "prize": [ + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "4", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 20, + "name": "intr_task_name_2036", + "undefined": "你的名字和实力大幅提升了,更多的干部会慕名前来。", + "intr": "intr_task_intr_2036", + "pretask": 2047, + "followtask": 2049, + "cond": [], + "tiaozhuan": 3, + "order": 49, + "special": 0, + "show": "" + }, + "2049": { + "id": 2049, + "type": 2, + "stype": 112, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 3800 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "equip", + "t": "1002", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 25, + "name": "intr_task_name_2037", + "undefined": "强化不仅能提升装备的耐耗度,还能提升攻击火力。这决定着一场战斗的结果是生是死。", + "intr": "intr_task_intr_2037", + "pretask": 2048, + "followtask": 2050, + "cond": [], + "tiaozhuan": 68, + "order": 50, + "special": 0, + "show": "" + }, + "2050": { + "id": 2050, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "equip", + "t": "2002", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 30, + "name": "intr_task_name_2038", + "undefined": "通过对一些宵小之辈恰到好处的敲打,你成功锁定了双子杀手的位置,同时也找到了幕后黑手意大利黑手党。", + "intr": "intr_task_intr_2038", + "pretask": 2049, + "followtask": 2051, + "cond": [], + "tiaozhuan": 3, + "order": 51, + "special": 0, + "show": "" + }, + "2051": { + "id": 2051, + "type": 2, + "stype": 104, + "prize": [ + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "12", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 21, + "name": "intr_task_name_2039", + "undefined": "你的名字和实力大幅提升了,更多的干部会慕名前来。", + "intr": "intr_task_intr_2039", + "pretask": 2050, + "followtask": 2052, + "cond": [], + "tiaozhuan": 3, + "order": 52, + "special": 0, + "show": "" + }, + "2052": { + "id": 2052, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "24", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 1, + "name": "intr_task_name_2040", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2040", + "pretask": 2051, + "followtask": 2053, + "cond": [ + 40 + ], + "tiaozhuan": 66, + "order": 53, + "special": 0, + "show": "" + }, + "2053": { + "id": 2053, + "type": 2, + "stype": 107, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2100 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "item", + "t": "4", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 5, + "name": "intr_task_name_2041", + "undefined": "单打独斗在罗阿那普拉是没有胜利的机会的,集合你的干部们。", + "intr": "intr_task_intr_2041", + "pretask": 2052, + "followtask": 2054, + "cond": [], + "tiaozhuan": 66, + "order": 54, + "special": 0, + "show": "" + }, + "2054": { + "id": 2054, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "1", + "n": 25000 + }, + { + "a": "equip", + "t": "3002", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 32, + "name": "intr_task_name_2042", + "undefined": "黑手党一伙猝不及防,慌乱中派出双子杀手迎击你与黑礁商会,却被双子杀手反噬。", + "intr": "intr_task_intr_2042", + "pretask": 2053, + "followtask": 2055, + "cond": [], + "tiaozhuan": 3, + "order": 55, + "special": 0, + "show": "" + }, + "2055": { + "id": 2055, + "type": 2, + "stype": 104, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "1", + "n": 20000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 22, + "name": "intr_task_name_2043", + "undefined": "你的名字和实力大幅提升了,更多的干部会慕名前来。", + "intr": "intr_task_intr_2043", + "pretask": 2054, + "followtask": 2056, + "cond": [], + "tiaozhuan": 3, + "order": 56, + "special": 0, + "show": "" + }, + "2056": { + "id": 2056, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "item", + "t": "12", + "n": 50 + }, + { + "a": "item", + "t": "1", + "n": 20000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 3, + "name": "intr_task_name_2005", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2005", + "pretask": 2055, + "followtask": 2057, + "cond": [ + 40 + ], + "tiaozhuan": 66, + "order": 57, + "special": 0, + "show": "" + }, + "2057": { + "id": 2057, + "type": 2, + "stype": 108, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2000 + }, + { + "a": "item", + "t": "1", + "n": 20000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 3, + "name": "intr_task_name_2016", + "undefined": "艰苦砺练,厚积薄发。多日来的特训有了结果,展现真正的实力,摧毁你的敌人。", + "intr": "intr_task_intr_2016", + "pretask": 2056, + "followtask": 2058, + "cond": [ + 2 + ], + "tiaozhuan": 67, + "order": 58, + "special": 0, + "show": "" + }, + "2058": { + "id": 2058, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "1", + "n": 20000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 34, + "name": "intr_task_name_2044", + "undefined": "莫斯科旅馆悬赏追杀双子杀手,高昂的金额吸引了全城的杀手。为了避免你捷足先登,不少人开始暗中埋伏。", + "intr": "intr_task_intr_2044", + "pretask": 2057, + "followtask": 2059, + "cond": [], + "tiaozhuan": 3, + "order": 59, + "special": 0, + "show": "" + }, + "2059": { + "id": 2059, + "type": 2, + "stype": 104, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2000 + }, + { + "a": "item", + "t": "1", + "n": 20000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "item", + "t": "36", + "n": 3 + } + ], + "pval": 24, + "name": "intr_task_name_2045", + "undefined": "你的名字和实力大幅提升了,更多的干部会慕名前来。", + "intr": "intr_task_intr_2045", + "pretask": 2058, + "followtask": 2060, + "cond": [], + "tiaozhuan": 3, + "order": 60, + "special": 0, + "show": "" + }, + "2060": { + "id": 2060, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2300 + }, + { + "a": "item", + "t": "1", + "n": 20000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 1, + "name": "intr_task_name_2046", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2046", + "pretask": 2059, + "followtask": 2061, + "cond": [ + 50 + ], + "tiaozhuan": 66, + "order": 61, + "special": 0, + "show": "" + }, + "2061": { + "id": 2061, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "equip", + "t": "4002", + "n": 1 + }, + { + "a": "item", + "t": "1", + "n": 20000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 36, + "name": "intr_task_name_2047", + "undefined": "目睹了双子杀手的下场后,你决定吞并黑手党留下的势力。但这个过程并不顺利,你与美国黑帮的较量开始了。", + "intr": "intr_task_intr_2047", + "pretask": 2060, + "followtask": 2062, + "cond": [], + "tiaozhuan": 3, + "order": 62, + "special": 0, + "show": "" + }, + "2062": { + "id": 2062, + "type": 2, + "stype": 104, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 4500 + }, + { + "a": "item", + "t": "1", + "n": 20000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 26, + "name": "intr_task_name_2048", + "undefined": "你的名字和实力大幅提升了,更多的干部会慕名前来。", + "intr": "intr_task_intr_2048", + "pretask": 2061, + "followtask": 2063, + "cond": [], + "tiaozhuan": 3, + "order": 63, + "special": 0, + "show": "" + }, + "2063": { + "id": 2063, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "item", + "t": "12", + "n": 50 + }, + { + "a": "item", + "t": "1", + "n": 20000 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 2, + "name": "intr_task_name_2005", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2005", + "pretask": 2062, + "followtask": 2064, + "cond": [ + 50 + ], + "tiaozhuan": 66, + "order": 64, + "special": 0, + "show": "" + }, + "2064": { + "id": 2064, + "type": 2, + "stype": 108, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2000 + }, + { + "a": "item", + "t": "1", + "n": 20000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 4, + "name": "intr_task_name_2016", + "undefined": "艰苦砺练,厚积薄发。多日来的特训有了结果,展现真正的实力,摧毁你的敌人。", + "intr": "intr_task_intr_2016", + "pretask": 2063, + "followtask": 2065, + "cond": [ + 2 + ], + "tiaozhuan": 67, + "order": 65, + "special": 0, + "show": "" + }, + "2065": { + "id": 2065, + "type": 2, + "stype": 104, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "1", + "n": 20000 + }, + { + "a": "item", + "t": "12", + "n": 50 + }, + { + "a": "item", + "t": "24", + "n": 1 + } + ], + "pval": 28, + "name": "intr_task_name_2049", + "undefined": "你的名字和实力大幅提升了,更多的干部会慕名前来。", + "intr": "intr_task_intr_2049", + "pretask": 2064, + "followtask": 2066, + "cond": [], + "tiaozhuan": 3, + "order": 66, + "special": 0, + "show": "" + }, + "2066": { + "id": 2066, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 4500 + }, + { + "a": "item", + "t": "1", + "n": 20000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 38, + "name": "intr_task_name_2051", + "undefined": "广结人脉,在黑道上拥有志同道合的同行,才能保证你走得更加长远。去联络一下友谊吧。", + "intr": "intr_task_intr_2050", + "pretask": 2065, + "followtask": 2067, + "cond": [], + "tiaozhuan": 3, + "order": 67, + "special": 0, + "show": "" + }, + "2067": { + "id": 2067, + "type": 2, + "stype": 113, + "prize": [ + { + "a": "item", + "t": "12", + "n": 50 + }, + { + "a": "item", + "t": "1", + "n": 20000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 12, + "name": "intr_task_name_2031", + "undefined": "比抢银行更赚钱的黑道生意莫过于印伪钞。而黑礁商会要保护的就是天才印钞师珍,由此不得不面对黑帮的追杀。", + "intr": "intr_task_intr_2051", + "pretask": 2066, + "followtask": 2068, + "cond": [ + 20 + ], + "tiaozhuan": 68, + "order": 68, + "special": 0, + "show": "" + }, + "2068": { + "id": 2068, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "item", + "t": "12", + "n": 50 + }, + { + "a": "item", + "t": "1", + "n": 20000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 3, + "name": "intr_task_name_2005", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2005", + "pretask": 2067, + "followtask": 2069, + "cond": [ + 50 + ], + "tiaozhuan": 66, + "order": 69, + "special": 0, + "show": "" + }, + "2069": { + "id": 2069, + "type": 2, + "stype": 104, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 3000 + }, + { + "a": "item", + "t": "1", + "n": 20000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 30, + "name": "intr_task_name_2052", + "undefined": "你的名字和实力大幅提升了,更多的干部会慕名前来。", + "intr": "intr_task_intr_2052", + "pretask": 2068, + "followtask": 2070, + "cond": [], + "tiaozhuan": 3, + "order": 70, + "special": 0, + "show": "" + }, + "2070": { + "id": 2070, + "type": 2, + "stype": 107, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2000 + }, + { + "a": "item", + "t": "1", + "n": 20000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 6, + "name": "intr_task_name_2053", + "undefined": "单打独斗在罗阿那普拉是没有胜利的机会的,集合你的干部们。", + "intr": "intr_task_intr_2053", + "pretask": 2069, + "followtask": 2071, + "cond": [], + "tiaozhuan": 66, + "order": 71, + "special": 0, + "show": "" + }, + "2071": { + "id": 2071, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "item", + "t": "12", + "n": 50 + }, + { + "a": "item", + "t": "1", + "n": 20000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 4, + "name": "intr_task_name_2054", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2054", + "pretask": 2070, + "followtask": 2072, + "cond": [ + 50 + ], + "tiaozhuan": 66, + "order": 72, + "special": 0, + "show": "" + }, + "2072": { + "id": 2072, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "item", + "t": "12", + "n": 50 + }, + { + "a": "item", + "t": "1", + "n": 20000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 40, + "name": "intr_task_name_2055", + "undefined": "美国黑帮向罗阿那普拉全城的杀手发下珍的通缉令。你与黑礁商会也一并被通缉,一场史无前例的枪战开始了。", + "intr": "intr_task_intr_2055", + "pretask": 2071, + "followtask": 2073, + "cond": [], + "tiaozhuan": 3, + "order": 73, + "special": 0, + "show": "" + }, + "2073": { + "id": 2073, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 2700 + }, + { + "a": "item", + "t": "1", + "n": 20000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 1, + "name": "intr_task_name_2005", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2005", + "pretask": 2072, + "followtask": 2074, + "cond": [ + 60 + ], + "tiaozhuan": 66, + "order": 74, + "special": 0, + "show": "" + }, + "2074": { + "id": 2074, + "type": 2, + "stype": 143, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 1000 + }, + { + "a": "item", + "t": "1", + "n": 20000 + }, + { + "a": "item", + "t": "4", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 20, + "name": "intr_task_name_2030", + "undefined": "精良的装备能最大限度发挥自身的能力,也是在罗阿那普拉活下来的保障。", + "intr": "intr_task_intr_2030", + "pretask": 2073, + "followtask": 2075, + "cond": [], + "tiaozhuan": 68, + "order": 75, + "special": 0, + "show": "" + }, + "2075": { + "id": 2075, + "type": 2, + "stype": 104, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5500 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 80000 + } + ], + "pval": 32, + "name": "intr_task_name_2056", + "undefined": "你的名字和实力大幅提升了,更多的干部会慕名前来。", + "intr": "intr_task_intr_2056", + "pretask": 2074, + "followtask": 2076, + "cond": [], + "tiaozhuan": 3, + "order": 76, + "special": 0, + "show": "" + }, + "2076": { + "id": 2076, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 44, + "name": "intr_task_name_2057", + "undefined": "由于成功保护了珍,你不仅发了一笔横财,还通过战斗收编了一波新势力。莫斯卡旅馆再次发来邀约,这次的目的地是东京。", + "intr": "intr_task_intr_2057", + "pretask": 2075, + "followtask": 2077, + "cond": [], + "tiaozhuan": 3, + "order": 77, + "special": 0, + "show": "" + }, + "2077": { + "id": 2077, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2058", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2058", + "pretask": 2076, + "followtask": 2078, + "cond": [], + "tiaozhuan": 3, + "order": 78, + "special": 0, + "show": "" + }, + "2078": { + "id": 2078, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2059", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2059", + "pretask": 2077, + "followtask": 2079, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 79, + "special": 0, + "show": "" + }, + "2079": { + "id": 2079, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2060", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2060", + "pretask": 2078, + "followtask": 2080, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 80, + "special": 0, + "show": "" + }, + "2080": { + "id": 2080, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2061", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2061", + "pretask": 2079, + "followtask": 2081, + "cond": [ + 65 + ], + "tiaozhuan": 66, + "order": 81, + "special": 0, + "show": "" + }, + "2081": { + "id": 2081, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2062", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2062", + "pretask": 2080, + "followtask": 2082, + "cond": [], + "tiaozhuan": 8, + "order": 82, + "special": 0, + "show": "" + }, + "2082": { + "id": 2082, + "type": 2, + "stype": 104, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 34, + "name": "intr_task_name_2063", + "undefined": "你的名字和实力大幅提升了,更多的干部会慕名前来。", + "intr": "intr_task_intr_2063", + "pretask": 2081, + "followtask": 2083, + "cond": [], + "tiaozhuan": 3, + "order": 83, + "special": 0, + "show": "" + }, + "2083": { + "id": 2083, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 48, + "name": "intr_task_name_2064", + "undefined": "东京夜幕下的罪恶正在上演,几大黑帮斗争已近白热化。被香砂会欺压已久的鹫峰组希望你与莫斯科方能出手。", + "intr": "intr_task_intr_2064", + "pretask": 2082, + "followtask": 2084, + "cond": [], + "tiaozhuan": 3, + "order": 84, + "special": 0, + "show": "" + }, + "2084": { + "id": 2084, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2065", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2065", + "pretask": 2083, + "followtask": 2085, + "cond": [], + "tiaozhuan": 3, + "order": 85, + "special": 0, + "show": "" + }, + "2085": { + "id": 2085, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2066", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2066", + "pretask": 2084, + "followtask": 2086, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 86, + "special": 0, + "show": "" + }, + "2086": { + "id": 2086, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2067", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2067", + "pretask": 2085, + "followtask": 2087, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 87, + "special": 0, + "show": "" + }, + "2087": { + "id": 2087, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2068", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2068", + "pretask": 2086, + "followtask": 2088, + "cond": [ + 70 + ], + "tiaozhuan": 66, + "order": 88, + "special": 0, + "show": "" + }, + "2088": { + "id": 2088, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2069", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2069", + "pretask": 2087, + "followtask": 2089, + "cond": [], + "tiaozhuan": 8, + "order": 89, + "special": 0, + "show": "" + }, + "2089": { + "id": 2089, + "type": 2, + "stype": 104, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 36, + "name": "intr_task_name_2070", + "undefined": "你的名字和实力大幅提升了,更多的干部会慕名前来。", + "intr": "intr_task_intr_2070", + "pretask": 2088, + "followtask": 2090, + "cond": [], + "tiaozhuan": 3, + "order": 90, + "special": 0, + "show": "" + }, + "2090": { + "id": 2090, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 52, + "name": "intr_task_name_2071", + "undefined": "在莫斯科旅馆的配合下,你与黑礁商会一起多次捣毁香砂会的基地,并结识了前任组长之女雪绪。", + "intr": "intr_task_intr_2071", + "pretask": 2089, + "followtask": 2091, + "cond": [], + "tiaozhuan": 3, + "order": 91, + "special": 0, + "show": "" + }, + "2091": { + "id": 2091, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2072", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2072", + "pretask": 2090, + "followtask": 2092, + "cond": [], + "tiaozhuan": 3, + "order": 92, + "special": 0, + "show": "" + }, + "2092": { + "id": 2092, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2073", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2073", + "pretask": 2091, + "followtask": 2093, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 93, + "special": 0, + "show": "" + }, + "2093": { + "id": 2093, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2074", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2074", + "pretask": 2092, + "followtask": 2094, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 94, + "special": 0, + "show": "" + }, + "2094": { + "id": 2094, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2075", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2075", + "pretask": 2093, + "followtask": 2095, + "cond": [ + 75 + ], + "tiaozhuan": 2, + "order": 95, + "special": 0, + "show": "" + }, + "2095": { + "id": 2095, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2076", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2076", + "pretask": 2094, + "followtask": 2096, + "cond": [], + "tiaozhuan": 8, + "order": 96, + "special": 0, + "show": "" + }, + "2096": { + "id": 2096, + "type": 2, + "stype": 104, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 38, + "name": "intr_task_name_2077", + "undefined": "你的名字和实力大幅提升了,更多的干部会慕名前来。", + "intr": "intr_task_intr_2077", + "pretask": 2095, + "followtask": 2097, + "cond": [], + "tiaozhuan": 3, + "order": 97, + "special": 0, + "show": "" + }, + "2097": { + "id": 2097, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 56, + "name": "intr_task_name_2078", + "undefined": "鹫峰组渐渐察觉到莫斯科方的真实目的,为了重新夺回局势控制权,他们将目光放在势力较小的你身上。", + "intr": "intr_task_intr_2078", + "pretask": 2096, + "followtask": 2098, + "cond": [], + "tiaozhuan": 3, + "order": 98, + "special": 0, + "show": "" + }, + "2098": { + "id": 2098, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2079", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2079", + "pretask": 2097, + "followtask": 2099, + "cond": [], + "tiaozhuan": 3, + "order": 99, + "special": 0, + "show": "" + }, + "2099": { + "id": 2099, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2080", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2080", + "pretask": 2098, + "followtask": 2100, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 100, + "special": 0, + "show": "" + }, + "2100": { + "id": 2100, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2081", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2081", + "pretask": 2099, + "followtask": 2101, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 101, + "special": 0, + "show": "" + }, + "2101": { + "id": 2101, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2082", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2082", + "pretask": 2100, + "followtask": 2102, + "cond": [ + 80 + ], + "tiaozhuan": 2, + "order": 102, + "special": 0, + "show": "" + }, + "2102": { + "id": 2102, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2083", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2083", + "pretask": 2101, + "followtask": 2103, + "cond": [], + "tiaozhuan": 8, + "order": 103, + "special": 0, + "show": "" + }, + "2103": { + "id": 2103, + "type": 2, + "stype": 104, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 40, + "name": "intr_task_name_2084", + "undefined": "你的名字和实力大幅提升了,更多的干部会慕名前来。", + "intr": "intr_task_intr_2084", + "pretask": 2102, + "followtask": 2104, + "cond": [], + "tiaozhuan": 3, + "order": 104, + "special": 0, + "show": "" + }, + "2104": { + "id": 2104, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 60, + "name": "intr_task_name_2085", + "undefined": "你用弹药和拳头让鹫峰组手下们学会重新做人,但鹫峰组组长却因为贸然刺杀巴拉莱卡殒命。东京局势风云变幻。", + "intr": "intr_task_intr_2085", + "pretask": 2103, + "followtask": 2105, + "cond": [], + "tiaozhuan": 3, + "order": 105, + "special": 0, + "show": "" + }, + "2105": { + "id": 2105, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2086", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2086", + "pretask": 2104, + "followtask": 2106, + "cond": [], + "tiaozhuan": 3, + "order": 106, + "special": 0, + "show": "" + }, + "2106": { + "id": 2106, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2087", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2087", + "pretask": 2105, + "followtask": 2107, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 107, + "special": 0, + "show": "" + }, + "2107": { + "id": 2107, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2088", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2088", + "pretask": 2106, + "followtask": 2108, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 108, + "special": 0, + "show": "" + }, + "2108": { + "id": 2108, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2089", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2089", + "pretask": 2107, + "followtask": 2109, + "cond": [ + 85 + ], + "tiaozhuan": 2, + "order": 109, + "special": 0, + "show": "" + }, + "2109": { + "id": 2109, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2090", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2090", + "pretask": 2108, + "followtask": 2110, + "cond": [], + "tiaozhuan": 8, + "order": 110, + "special": 0, + "show": "" + }, + "2110": { + "id": 2110, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 65, + "name": "intr_task_name_2091", + "undefined": "原组长已死,但追杀你的人却络绎不绝。原来鹫峰组组长死后,小弟查卡叛变,不明就里的你只能保守应对。", + "intr": "intr_task_intr_2091", + "pretask": 2109, + "followtask": 2111, + "cond": [], + "tiaozhuan": 3, + "order": 111, + "special": 0, + "show": "" + }, + "2111": { + "id": 2111, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2092", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2092", + "pretask": 2110, + "followtask": 2112, + "cond": [], + "tiaozhuan": 3, + "order": 112, + "special": 0, + "show": "" + }, + "2112": { + "id": 2112, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2093", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2093", + "pretask": 2111, + "followtask": 2113, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 113, + "special": 0, + "show": "" + }, + "2113": { + "id": 2113, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2094", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2094", + "pretask": 2112, + "followtask": 2114, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 114, + "special": 0, + "show": "" + }, + "2114": { + "id": 2114, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2095", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2095", + "pretask": 2113, + "followtask": 2115, + "cond": [ + 90 + ], + "tiaozhuan": 2, + "order": 115, + "special": 0, + "show": "" + }, + "2115": { + "id": 2115, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2096", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2096", + "pretask": 2114, + "followtask": 2116, + "cond": [], + "tiaozhuan": 8, + "order": 116, + "special": 0, + "show": "" + }, + "2116": { + "id": 2116, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 70, + "name": "intr_task_name_2097", + "undefined": "当再次见到雪绪的时候,你怎么也不相信她就是鹫峰组的新组长。而查卡恐惧你的实力,誓要将你与雪绪置于死地。", + "intr": "intr_task_intr_2097", + "pretask": 2115, + "followtask": 2117, + "cond": [], + "tiaozhuan": 3, + "order": 117, + "special": 0, + "show": "" + }, + "2117": { + "id": 2117, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2098", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2098", + "pretask": 2116, + "followtask": 2118, + "cond": [], + "tiaozhuan": 3, + "order": 118, + "special": 0, + "show": "" + }, + "2118": { + "id": 2118, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2099", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2099", + "pretask": 2117, + "followtask": 2119, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 119, + "special": 0, + "show": "" + }, + "2119": { + "id": 2119, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2100", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2100", + "pretask": 2118, + "followtask": 2120, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 120, + "special": 0, + "show": "" + }, + "2120": { + "id": 2120, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2101", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2101", + "pretask": 2119, + "followtask": 2121, + "cond": [ + 92 + ], + "tiaozhuan": 2, + "order": 121, + "special": 0, + "show": "" + }, + "2121": { + "id": 2121, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2102", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2102", + "pretask": 2120, + "followtask": 2122, + "cond": [], + "tiaozhuan": 8, + "order": 122, + "special": 0, + "show": "" + }, + "2122": { + "id": 2122, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 75, + "name": "intr_task_name_2103", + "undefined": "鹫峰组帮助巴拉莱卡清缴了敌对势力,并以此为条件,希望你能牵头与莫斯科方进行谈判。但莫斯科方却另有打算。", + "intr": "intr_task_intr_2103", + "pretask": 2121, + "followtask": 2123, + "cond": [], + "tiaozhuan": 3, + "order": 123, + "special": 0, + "show": "" + }, + "2123": { + "id": 2123, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2104", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2104", + "pretask": 2122, + "followtask": 2124, + "cond": [], + "tiaozhuan": 3, + "order": 124, + "special": 0, + "show": "" + }, + "2124": { + "id": 2124, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2105", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2105", + "pretask": 2123, + "followtask": 2125, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 125, + "special": 0, + "show": "" + }, + "2125": { + "id": 2125, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2106", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2106", + "pretask": 2124, + "followtask": 2126, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 126, + "special": 0, + "show": "" + }, + "2126": { + "id": 2126, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2107", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2107", + "pretask": 2125, + "followtask": 2127, + "cond": [ + 94 + ], + "tiaozhuan": 2, + "order": 127, + "special": 0, + "show": "" + }, + "2127": { + "id": 2127, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2108", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2108", + "pretask": 2126, + "followtask": 2128, + "cond": [], + "tiaozhuan": 8, + "order": 128, + "special": 0, + "show": "" + }, + "2128": { + "id": 2128, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 80, + "name": "intr_task_name_2109", + "undefined": "接到巴拉莱卡清缴命令的你,率领众人将鹫峰组围困到角落。昔日的朋友,今日的对手。你拿起枪,又想起大家一起游玩的日子。", + "intr": "intr_task_intr_2109", + "pretask": 2127, + "followtask": 2129, + "cond": [], + "tiaozhuan": 3, + "order": 129, + "special": 0, + "show": "" + }, + "2129": { + "id": 2129, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2110", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2110", + "pretask": 2128, + "followtask": 2130, + "cond": [], + "tiaozhuan": 3, + "order": 130, + "special": 0, + "show": "" + }, + "2130": { + "id": 2130, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2111", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2111", + "pretask": 2129, + "followtask": 2131, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 131, + "special": 0, + "show": "" + }, + "2131": { + "id": 2131, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2112", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2112", + "pretask": 2130, + "followtask": 2132, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 132, + "special": 0, + "show": "" + }, + "2132": { + "id": 2132, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2113", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2113", + "pretask": 2131, + "followtask": 2133, + "cond": [ + 96 + ], + "tiaozhuan": 2, + "order": 133, + "special": 0, + "show": "" + }, + "2133": { + "id": 2133, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2114", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2114", + "pretask": 2132, + "followtask": 2134, + "cond": [], + "tiaozhuan": 8, + "order": 134, + "special": 0, + "show": "" + }, + "2134": { + "id": 2134, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 85, + "name": "intr_task_name_2115", + "undefined": "拉布雷斯家族的家主被美方暗杀,暗杀军队撤离到罗阿那普拉修整,并要求加入你的麾下。然而女仆罗贝尔特已前来复仇。", + "intr": "intr_task_intr_2115", + "pretask": 2133, + "followtask": 2135, + "cond": [], + "tiaozhuan": 3, + "order": 135, + "special": 0, + "show": "" + }, + "2135": { + "id": 2135, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2116", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2116", + "pretask": 2134, + "followtask": 2136, + "cond": [], + "tiaozhuan": 3, + "order": 136, + "special": 0, + "show": "" + }, + "2136": { + "id": 2136, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2117", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2117", + "pretask": 2135, + "followtask": 2137, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 137, + "special": 0, + "show": "" + }, + "2137": { + "id": 2137, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2118", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2118", + "pretask": 2136, + "followtask": 2138, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 138, + "special": 0, + "show": "" + }, + "2138": { + "id": 2138, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2119", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2119", + "pretask": 2137, + "followtask": 2139, + "cond": [ + 98 + ], + "tiaozhuan": 2, + "order": 139, + "special": 0, + "show": "" + }, + "2139": { + "id": 2139, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2120", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2120", + "pretask": 2138, + "followtask": 2140, + "cond": [], + "tiaozhuan": 8, + "order": 140, + "special": 0, + "show": "" + }, + "2140": { + "id": 2140, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 90, + "name": "intr_task_name_2121", + "undefined": "现今身为一方头领的你,并不想接下这个烫手山芋。但罗贝尔特的到来掀起了新的风浪,为了平衡势力,你被迫入局。", + "intr": "intr_task_intr_2121", + "pretask": 2139, + "followtask": 2141, + "cond": [], + "tiaozhuan": 3, + "order": 141, + "special": 0, + "show": "" + }, + "2141": { + "id": 2141, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2122", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2122", + "pretask": 2140, + "followtask": 2142, + "cond": [], + "tiaozhuan": 3, + "order": 142, + "special": 0, + "show": "" + }, + "2142": { + "id": 2142, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2123", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2123", + "pretask": 2141, + "followtask": 2143, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 143, + "special": 0, + "show": "" + }, + "2143": { + "id": 2143, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2124", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2124", + "pretask": 2142, + "followtask": 2144, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 144, + "special": 0, + "show": "" + }, + "2144": { + "id": 2144, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2125", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2125", + "pretask": 2143, + "followtask": 2145, + "cond": [ + 100 + ], + "tiaozhuan": 2, + "order": 145, + "special": 0, + "show": "" + }, + "2145": { + "id": 2145, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2126", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2126", + "pretask": 2144, + "followtask": 2146, + "cond": [], + "tiaozhuan": 8, + "order": 146, + "special": 0, + "show": "" + }, + "2146": { + "id": 2146, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 95, + "name": "intr_task_name_2127", + "undefined": "拉布雷斯的新家主加西亚委托张维新做中间人,请求你出手保护罗贝尔特。就在你陷入两难之际,黑礁再次向你伸出援手。", + "intr": "intr_task_intr_2127", + "pretask": 2145, + "followtask": 2147, + "cond": [], + "tiaozhuan": 3, + "order": 147, + "special": 0, + "show": "" + }, + "2147": { + "id": 2147, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2128", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2128", + "pretask": 2146, + "followtask": 2148, + "cond": [], + "tiaozhuan": 3, + "order": 148, + "special": 0, + "show": "" + }, + "2148": { + "id": 2148, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2129", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2129", + "pretask": 2147, + "followtask": 2149, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 149, + "special": 0, + "show": "" + }, + "2149": { + "id": 2149, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2130", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2130", + "pretask": 2148, + "followtask": 2150, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 150, + "special": 0, + "show": "" + }, + "2150": { + "id": 2150, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2131", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2131", + "pretask": 2149, + "followtask": 2151, + "cond": [ + 102 + ], + "tiaozhuan": 2, + "order": 151, + "special": 0, + "show": "" + }, + "2151": { + "id": 2151, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2132", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2132", + "pretask": 2150, + "followtask": 2152, + "cond": [], + "tiaozhuan": 8, + "order": 152, + "special": 0, + "show": "" + }, + "2152": { + "id": 2152, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 100, + "name": "intr_task_name_2133", + "undefined": "黑礁带你联络到巴拉莱卡,众人出面将所有黑帮头领聚集在一起开会,商讨如何解决罗贝尔特,然后毫无意外地打了起来。", + "intr": "intr_task_intr_2133", + "pretask": 2151, + "followtask": 2153, + "cond": [], + "tiaozhuan": 3, + "order": 153, + "special": 0, + "show": "" + }, + "2153": { + "id": 2153, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2134", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2134", + "pretask": 2152, + "followtask": 2154, + "cond": [], + "tiaozhuan": 3, + "order": 154, + "special": 0, + "show": "" + }, + "2154": { + "id": 2154, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2135", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2135", + "pretask": 2153, + "followtask": 2155, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 155, + "special": 0, + "show": "" + }, + "2155": { + "id": 2155, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2136", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2136", + "pretask": 2154, + "followtask": 2156, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 156, + "special": 0, + "show": "" + }, + "2156": { + "id": 2156, + "type": 2, + "stype": 106, + "prize": [ + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2137", + "undefined": "上次的事件让你意识到必须提升干部们的实力,强大才是获胜的关键。", + "intr": "intr_task_intr_2137", + "pretask": 2155, + "followtask": 2157, + "cond": [ + 104 + ], + "tiaozhuan": 2, + "order": 157, + "special": 0, + "show": "" + }, + "2157": { + "id": 2157, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2138", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2138", + "pretask": 2156, + "followtask": 2158, + "cond": [], + "tiaozhuan": 8, + "order": 158, + "special": 0, + "show": "" + }, + "2158": { + "id": 2158, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 105, + "name": "intr_task_name_2139", + "undefined": "罗贝尔特为复仇而来,哥伦比亚革命军为追杀罗贝尔特而来。而你为了履行承诺不得不先与革命军对峙。", + "intr": "intr_task_intr_2139", + "pretask": 2157, + "followtask": 2159, + "cond": [], + "tiaozhuan": 3, + "order": 159, + "special": 0, + "show": "" + }, + "2159": { + "id": 2159, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2140", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2140", + "pretask": 2158, + "followtask": 2160, + "cond": [], + "tiaozhuan": 3, + "order": 160, + "special": 0, + "show": "" + }, + "2160": { + "id": 2160, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2141", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2141", + "pretask": 2159, + "followtask": 2161, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 161, + "special": 0, + "show": "" + }, + "2161": { + "id": 2161, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2142", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2142", + "pretask": 2160, + "followtask": 2162, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 162, + "special": 0, + "show": "" + }, + "2162": { + "id": 2162, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2143", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2143", + "pretask": 2161, + "followtask": 2163, + "cond": [], + "tiaozhuan": 8, + "order": 163, + "special": 0, + "show": "" + }, + "2163": { + "id": 2163, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 110, + "name": "intr_task_name_2144", + "undefined": "闻讯赶到的杀手已埋伏在罗贝尔特的必经路段,与此同时,你和众部下也绕到了杀手后方。", + "intr": "intr_task_intr_2144", + "pretask": 2162, + "followtask": 2164, + "cond": [], + "tiaozhuan": 3, + "order": 164, + "special": 0, + "show": "" + }, + "2164": { + "id": 2164, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2145", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2145", + "pretask": 2163, + "followtask": 2165, + "cond": [], + "tiaozhuan": 3, + "order": 165, + "special": 0, + "show": "" + }, + "2165": { + "id": 2165, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2146", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2146", + "pretask": 2164, + "followtask": 2166, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 166, + "special": 0, + "show": "" + }, + "2166": { + "id": 2166, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2147", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2147", + "pretask": 2165, + "followtask": 2167, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 167, + "special": 0, + "show": "" + }, + "2167": { + "id": 2167, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2148", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2148", + "pretask": 2166, + "followtask": 2168, + "cond": [], + "tiaozhuan": 8, + "order": 168, + "special": 0, + "show": "" + }, + "2168": { + "id": 2168, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 115, + "name": "intr_task_name_2149", + "undefined": "在干掉无名杀手们后,你带领众部下与哥伦比亚的主力正面交锋。在高处罗比尔特的协助下,成功剿灭了对手。", + "intr": "intr_task_intr_2149", + "pretask": 2167, + "followtask": 2169, + "cond": [], + "tiaozhuan": 3, + "order": 169, + "special": 0, + "show": "" + }, + "2169": { + "id": 2169, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2150", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2150", + "pretask": 2168, + "followtask": 2170, + "cond": [], + "tiaozhuan": 3, + "order": 170, + "special": 0, + "show": "" + }, + "2170": { + "id": 2170, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2151", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2151", + "pretask": 2169, + "followtask": 2171, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 171, + "special": 0, + "show": "" + }, + "2171": { + "id": 2171, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2152", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2152", + "pretask": 2170, + "followtask": 2172, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 172, + "special": 0, + "show": "" + }, + "2172": { + "id": 2172, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2153", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2153", + "pretask": 2171, + "followtask": 2173, + "cond": [], + "tiaozhuan": 8, + "order": 173, + "special": 0, + "show": "" + }, + "2173": { + "id": 2173, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 120, + "name": "intr_task_name_2154", + "undefined": "加西亚独自闯入交战地点,被美国大军掠为人质。罗贝尔特匆忙杀到,却发现一切都是黑礁商会布下的局。", + "intr": "intr_task_intr_2154", + "pretask": 2172, + "followtask": 2174, + "cond": [], + "tiaozhuan": 3, + "order": 174, + "special": 0, + "show": "" + }, + "2174": { + "id": 2174, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2155", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2155", + "pretask": 2173, + "followtask": 2175, + "cond": [], + "tiaozhuan": 3, + "order": 175, + "special": 0, + "show": "" + }, + "2175": { + "id": 2175, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2156", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2156", + "pretask": 2174, + "followtask": 2176, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 176, + "special": 0, + "show": "" + }, + "2176": { + "id": 2176, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2157", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2157", + "pretask": 2175, + "followtask": 2177, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 177, + "special": 0, + "show": "" + }, + "2177": { + "id": 2177, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2158", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2158", + "pretask": 2176, + "followtask": 2178, + "cond": [], + "tiaozhuan": 8, + "order": 178, + "special": 0, + "show": "" + }, + "2178": { + "id": 2178, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 125, + "name": "intr_task_name_2159", + "undefined": "罗贝尔特的到来意外解决了美军,同时也使你掌控了金三角贸易。但你明显引起了其他势力的不满。", + "intr": "intr_task_intr_2159", + "pretask": 2177, + "followtask": 2179, + "cond": [], + "tiaozhuan": 3, + "order": 179, + "special": 0, + "show": "" + }, + "2179": { + "id": 2179, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2160", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2160", + "pretask": 2178, + "followtask": 2180, + "cond": [], + "tiaozhuan": 3, + "order": 180, + "special": 0, + "show": "" + }, + "2180": { + "id": 2180, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2161", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2161", + "pretask": 2179, + "followtask": 2181, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 181, + "special": 0, + "show": "" + }, + "2181": { + "id": 2181, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2162", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2162", + "pretask": 2180, + "followtask": 2182, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 182, + "special": 0, + "show": "" + }, + "2182": { + "id": 2182, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2163", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2163", + "pretask": 2181, + "followtask": 2183, + "cond": [], + "tiaozhuan": 8, + "order": 183, + "special": 0, + "show": "" + }, + "2183": { + "id": 2183, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 130, + "name": "intr_task_name_2164", + "undefined": "既然有不满,就去狠狠打到他满意为止。", + "intr": "intr_task_intr_2164", + "pretask": 2182, + "followtask": 2184, + "cond": [], + "tiaozhuan": 3, + "order": 184, + "special": 0, + "show": "" + }, + "2184": { + "id": 2184, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2165", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2165", + "pretask": 2183, + "followtask": 2185, + "cond": [], + "tiaozhuan": 3, + "order": 185, + "special": 0, + "show": "" + }, + "2185": { + "id": 2185, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2166", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2166", + "pretask": 2184, + "followtask": 2186, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 186, + "special": 0, + "show": "" + }, + "2186": { + "id": 2186, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2167", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2167", + "pretask": 2185, + "followtask": 2187, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 187, + "special": 0, + "show": "" + }, + "2187": { + "id": 2187, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2168", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2168", + "pretask": 2186, + "followtask": 2188, + "cond": [], + "tiaozhuan": 8, + "order": 188, + "special": 0, + "show": "" + }, + "2188": { + "id": 2188, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 135, + "name": "intr_task_name_2169", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2169", + "pretask": 2187, + "followtask": 2189, + "cond": [], + "tiaozhuan": 3, + "order": 189, + "special": 0, + "show": "" + }, + "2189": { + "id": 2189, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2170", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2170", + "pretask": 2188, + "followtask": 2190, + "cond": [], + "tiaozhuan": 3, + "order": 190, + "special": 0, + "show": "" + }, + "2190": { + "id": 2190, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2171", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2171", + "pretask": 2189, + "followtask": 2191, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 191, + "special": 0, + "show": "" + }, + "2191": { + "id": 2191, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2172", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2172", + "pretask": 2190, + "followtask": 2192, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 192, + "special": 0, + "show": "" + }, + "2192": { + "id": 2192, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2173", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2173", + "pretask": 2191, + "followtask": 2193, + "cond": [], + "tiaozhuan": 8, + "order": 193, + "special": 0, + "show": "" + }, + "2193": { + "id": 2193, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 140, + "name": "intr_task_name_2174", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2174", + "pretask": 2192, + "followtask": 2194, + "cond": [], + "tiaozhuan": 3, + "order": 194, + "special": 0, + "show": "" + }, + "2194": { + "id": 2194, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2175", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2175", + "pretask": 2193, + "followtask": 2195, + "cond": [], + "tiaozhuan": 3, + "order": 195, + "special": 0, + "show": "" + }, + "2195": { + "id": 2195, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2176", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2176", + "pretask": 2194, + "followtask": 2196, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 196, + "special": 0, + "show": "" + }, + "2196": { + "id": 2196, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2177", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2177", + "pretask": 2195, + "followtask": 2197, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 197, + "special": 0, + "show": "" + }, + "2197": { + "id": 2197, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2178", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2178", + "pretask": 2196, + "followtask": 2198, + "cond": [], + "tiaozhuan": 8, + "order": 198, + "special": 0, + "show": "" + }, + "2198": { + "id": 2198, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 145, + "name": "intr_task_name_2179", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2179", + "pretask": 2197, + "followtask": 2199, + "cond": [], + "tiaozhuan": 3, + "order": 199, + "special": 0, + "show": "" + }, + "2199": { + "id": 2199, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2180", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2180", + "pretask": 2198, + "followtask": 2200, + "cond": [], + "tiaozhuan": 3, + "order": 200, + "special": 0, + "show": "" + }, + "2200": { + "id": 2200, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2181", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2181", + "pretask": 2199, + "followtask": 2201, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 201, + "special": 0, + "show": "" + }, + "2201": { + "id": 2201, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2182", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2182", + "pretask": 2200, + "followtask": 2202, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 202, + "special": 0, + "show": "" + }, + "2202": { + "id": 2202, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2183", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2183", + "pretask": 2201, + "followtask": 2203, + "cond": [], + "tiaozhuan": 8, + "order": 203, + "special": 0, + "show": "" + }, + "2203": { + "id": 2203, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 150, + "name": "intr_task_name_2184", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2184", + "pretask": 2202, + "followtask": 2204, + "cond": [], + "tiaozhuan": 3, + "order": 204, + "special": 0, + "show": "" + }, + "2204": { + "id": 2204, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2185", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2185", + "pretask": 2203, + "followtask": 2205, + "cond": [], + "tiaozhuan": 3, + "order": 205, + "special": 0, + "show": "" + }, + "2205": { + "id": 2205, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2186", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2186", + "pretask": 2204, + "followtask": 2206, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 206, + "special": 0, + "show": "" + }, + "2206": { + "id": 2206, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2187", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2187", + "pretask": 2205, + "followtask": 2207, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 207, + "special": 0, + "show": "" + }, + "2207": { + "id": 2207, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2188", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2188", + "pretask": 2206, + "followtask": 2208, + "cond": [], + "tiaozhuan": 8, + "order": 208, + "special": 0, + "show": "" + }, + "2208": { + "id": 2208, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 155, + "name": "intr_task_name_2189", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2189", + "pretask": 2207, + "followtask": 2209, + "cond": [], + "tiaozhuan": 3, + "order": 209, + "special": 0, + "show": "" + }, + "2209": { + "id": 2209, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2190", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2190", + "pretask": 2208, + "followtask": 2210, + "cond": [], + "tiaozhuan": 3, + "order": 210, + "special": 0, + "show": "" + }, + "2210": { + "id": 2210, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2191", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2191", + "pretask": 2209, + "followtask": 2211, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 211, + "special": 0, + "show": "" + }, + "2211": { + "id": 2211, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2192", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2192", + "pretask": 2210, + "followtask": 2212, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 212, + "special": 0, + "show": "" + }, + "2212": { + "id": 2212, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2193", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2193", + "pretask": 2211, + "followtask": 2213, + "cond": [], + "tiaozhuan": 8, + "order": 213, + "special": 0, + "show": "" + }, + "2213": { + "id": 2213, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 160, + "name": "intr_task_name_2194", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2194", + "pretask": 2212, + "followtask": 2214, + "cond": [], + "tiaozhuan": 3, + "order": 214, + "special": 0, + "show": "" + }, + "2214": { + "id": 2214, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2195", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2195", + "pretask": 2213, + "followtask": 2215, + "cond": [], + "tiaozhuan": 3, + "order": 215, + "special": 0, + "show": "" + }, + "2215": { + "id": 2215, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2196", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2196", + "pretask": 2214, + "followtask": 2216, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 216, + "special": 0, + "show": "" + }, + "2216": { + "id": 2216, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2197", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2197", + "pretask": 2215, + "followtask": 2217, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 217, + "special": 0, + "show": "" + }, + "2217": { + "id": 2217, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2198", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2198", + "pretask": 2216, + "followtask": 2218, + "cond": [], + "tiaozhuan": 8, + "order": 218, + "special": 0, + "show": "" + }, + "2218": { + "id": 2218, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 165, + "name": "intr_task_name_2199", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2199", + "pretask": 2217, + "followtask": 2219, + "cond": [], + "tiaozhuan": 3, + "order": 219, + "special": 0, + "show": "" + }, + "2219": { + "id": 2219, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2200", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2200", + "pretask": 2218, + "followtask": 2220, + "cond": [], + "tiaozhuan": 3, + "order": 220, + "special": 0, + "show": "" + }, + "2220": { + "id": 2220, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2201", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2201", + "pretask": 2219, + "followtask": 2221, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 221, + "special": 0, + "show": "" + }, + "2221": { + "id": 2221, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2202", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2202", + "pretask": 2220, + "followtask": 2222, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 222, + "special": 0, + "show": "" + }, + "2222": { + "id": 2222, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2203", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2203", + "pretask": 2221, + "followtask": 2223, + "cond": [], + "tiaozhuan": 8, + "order": 223, + "special": 0, + "show": "" + }, + "2223": { + "id": 2223, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 170, + "name": "intr_task_name_2204", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2204", + "pretask": 2222, + "followtask": 2224, + "cond": [], + "tiaozhuan": 3, + "order": 224, + "special": 0, + "show": "" + }, + "2224": { + "id": 2224, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2205", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2205", + "pretask": 2223, + "followtask": 2225, + "cond": [], + "tiaozhuan": 3, + "order": 225, + "special": 0, + "show": "" + }, + "2225": { + "id": 2225, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2206", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2206", + "pretask": 2224, + "followtask": 2226, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 226, + "special": 0, + "show": "" + }, + "2226": { + "id": 2226, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2207", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2207", + "pretask": 2225, + "followtask": 2227, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 227, + "special": 0, + "show": "" + }, + "2227": { + "id": 2227, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2208", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2208", + "pretask": 2226, + "followtask": 2228, + "cond": [], + "tiaozhuan": 8, + "order": 228, + "special": 0, + "show": "" + }, + "2228": { + "id": 2228, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 175, + "name": "intr_task_name_2209", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2209", + "pretask": 2227, + "followtask": 2229, + "cond": [], + "tiaozhuan": 3, + "order": 229, + "special": 0, + "show": "" + }, + "2229": { + "id": 2229, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2210", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2210", + "pretask": 2228, + "followtask": 2230, + "cond": [], + "tiaozhuan": 3, + "order": 230, + "special": 0, + "show": "" + }, + "2230": { + "id": 2230, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2211", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2211", + "pretask": 2229, + "followtask": 2231, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 231, + "special": 0, + "show": "" + }, + "2231": { + "id": 2231, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2212", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2212", + "pretask": 2230, + "followtask": 2232, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 232, + "special": 0, + "show": "" + }, + "2232": { + "id": 2232, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2213", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2213", + "pretask": 2231, + "followtask": 2233, + "cond": [], + "tiaozhuan": 8, + "order": 233, + "special": 0, + "show": "" + }, + "2233": { + "id": 2233, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 180, + "name": "intr_task_name_2214", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2214", + "pretask": 2232, + "followtask": 2234, + "cond": [], + "tiaozhuan": 3, + "order": 234, + "special": 0, + "show": "" + }, + "2234": { + "id": 2234, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2215", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2215", + "pretask": 2233, + "followtask": 2235, + "cond": [], + "tiaozhuan": 3, + "order": 235, + "special": 0, + "show": "" + }, + "2235": { + "id": 2235, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2216", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2216", + "pretask": 2234, + "followtask": 2236, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 236, + "special": 0, + "show": "" + }, + "2236": { + "id": 2236, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2217", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2217", + "pretask": 2235, + "followtask": 2237, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 237, + "special": 0, + "show": "" + }, + "2237": { + "id": 2237, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2218", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2218", + "pretask": 2236, + "followtask": 2238, + "cond": [], + "tiaozhuan": 8, + "order": 238, + "special": 0, + "show": "" + }, + "2238": { + "id": 2238, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 185, + "name": "intr_task_name_2219", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2219", + "pretask": 2237, + "followtask": 2239, + "cond": [], + "tiaozhuan": 3, + "order": 239, + "special": 0, + "show": "" + }, + "2239": { + "id": 2239, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2220", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2220", + "pretask": 2238, + "followtask": 2240, + "cond": [], + "tiaozhuan": 3, + "order": 240, + "special": 0, + "show": "" + }, + "2240": { + "id": 2240, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2221", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2221", + "pretask": 2239, + "followtask": 2241, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 241, + "special": 0, + "show": "" + }, + "2241": { + "id": 2241, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2222", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2222", + "pretask": 2240, + "followtask": 2242, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 242, + "special": 0, + "show": "" + }, + "2242": { + "id": 2242, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2223", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2223", + "pretask": 2241, + "followtask": 2243, + "cond": [], + "tiaozhuan": 8, + "order": 243, + "special": 0, + "show": "" + }, + "2243": { + "id": 2243, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 190, + "name": "intr_task_name_2224", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2224", + "pretask": 2242, + "followtask": 2244, + "cond": [], + "tiaozhuan": 3, + "order": 244, + "special": 0, + "show": "" + }, + "2244": { + "id": 2244, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2225", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2225", + "pretask": 2243, + "followtask": 2245, + "cond": [], + "tiaozhuan": 3, + "order": 245, + "special": 0, + "show": "" + }, + "2245": { + "id": 2245, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2226", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2226", + "pretask": 2244, + "followtask": 2246, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 246, + "special": 0, + "show": "" + }, + "2246": { + "id": 2246, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2227", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2227", + "pretask": 2245, + "followtask": 2247, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 247, + "special": 0, + "show": "" + }, + "2247": { + "id": 2247, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2228", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2228", + "pretask": 2246, + "followtask": 2248, + "cond": [], + "tiaozhuan": 8, + "order": 248, + "special": 0, + "show": "" + }, + "2248": { + "id": 2248, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 195, + "name": "intr_task_name_2229", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2229", + "pretask": 2247, + "followtask": 2249, + "cond": [], + "tiaozhuan": 3, + "order": 249, + "special": 0, + "show": "" + }, + "2249": { + "id": 2249, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2230", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2230", + "pretask": 2248, + "followtask": 2250, + "cond": [], + "tiaozhuan": 3, + "order": 250, + "special": 0, + "show": "" + }, + "2250": { + "id": 2250, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2231", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2231", + "pretask": 2249, + "followtask": 2251, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 251, + "special": 0, + "show": "" + }, + "2251": { + "id": 2251, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2232", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2232", + "pretask": 2250, + "followtask": 2252, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 252, + "special": 0, + "show": "" + }, + "2252": { + "id": 2252, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2233", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2233", + "pretask": 2251, + "followtask": 2253, + "cond": [], + "tiaozhuan": 8, + "order": 253, + "special": 0, + "show": "" + }, + "2253": { + "id": 2253, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 200, + "name": "intr_task_name_2234", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2234", + "pretask": 2252, + "followtask": 2254, + "cond": [], + "tiaozhuan": 3, + "order": 254, + "special": 0, + "show": "" + }, + "2254": { + "id": 2254, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2235", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2235", + "pretask": 2253, + "followtask": 2255, + "cond": [], + "tiaozhuan": 3, + "order": 255, + "special": 0, + "show": "" + }, + "2255": { + "id": 2255, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2236", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2236", + "pretask": 2254, + "followtask": 2256, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 256, + "special": 0, + "show": "" + }, + "2256": { + "id": 2256, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2237", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2237", + "pretask": 2255, + "followtask": 2257, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 257, + "special": 0, + "show": "" + }, + "2257": { + "id": 2257, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2238", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2238", + "pretask": 2256, + "followtask": 2258, + "cond": [], + "tiaozhuan": 8, + "order": 258, + "special": 0, + "show": "" + }, + "2258": { + "id": 2258, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 205, + "name": "intr_task_name_2239", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2239", + "pretask": 2257, + "followtask": 2259, + "cond": [], + "tiaozhuan": 3, + "order": 259, + "special": 0, + "show": "" + }, + "2259": { + "id": 2259, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2240", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2240", + "pretask": 2258, + "followtask": 2260, + "cond": [], + "tiaozhuan": 3, + "order": 260, + "special": 0, + "show": "" + }, + "2260": { + "id": 2260, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2241", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2241", + "pretask": 2259, + "followtask": 2261, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 261, + "special": 0, + "show": "" + }, + "2261": { + "id": 2261, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2242", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2242", + "pretask": 2260, + "followtask": 2262, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 262, + "special": 0, + "show": "" + }, + "2262": { + "id": 2262, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2243", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2243", + "pretask": 2261, + "followtask": 2263, + "cond": [], + "tiaozhuan": 8, + "order": 263, + "special": 0, + "show": "" + }, + "2263": { + "id": 2263, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 210, + "name": "intr_task_name_2244", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2244", + "pretask": 2262, + "followtask": 2264, + "cond": [], + "tiaozhuan": 3, + "order": 264, + "special": 0, + "show": "" + }, + "2264": { + "id": 2264, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2245", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2245", + "pretask": 2263, + "followtask": 2265, + "cond": [], + "tiaozhuan": 3, + "order": 265, + "special": 0, + "show": "" + }, + "2265": { + "id": 2265, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2246", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2246", + "pretask": 2264, + "followtask": 2266, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 266, + "special": 0, + "show": "" + }, + "2266": { + "id": 2266, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2247", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2247", + "pretask": 2265, + "followtask": 2267, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 267, + "special": 0, + "show": "" + }, + "2267": { + "id": 2267, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2248", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2248", + "pretask": 2266, + "followtask": 2268, + "cond": [], + "tiaozhuan": 8, + "order": 268, + "special": 0, + "show": "" + }, + "2268": { + "id": 2268, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 215, + "name": "intr_task_name_2249", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2249", + "pretask": 2267, + "followtask": 2269, + "cond": [], + "tiaozhuan": 3, + "order": 269, + "special": 0, + "show": "" + }, + "2269": { + "id": 2269, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2250", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2250", + "pretask": 2268, + "followtask": 2270, + "cond": [], + "tiaozhuan": 3, + "order": 270, + "special": 0, + "show": "" + }, + "2270": { + "id": 2270, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2251", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2251", + "pretask": 2269, + "followtask": 2271, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 271, + "special": 0, + "show": "" + }, + "2271": { + "id": 2271, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2252", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2252", + "pretask": 2270, + "followtask": 2272, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 272, + "special": 0, + "show": "" + }, + "2272": { + "id": 2272, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2253", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2253", + "pretask": 2271, + "followtask": 2273, + "cond": [], + "tiaozhuan": 8, + "order": 273, + "special": 0, + "show": "" + }, + "2273": { + "id": 2273, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 220, + "name": "intr_task_name_2254", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2254", + "pretask": 2272, + "followtask": 2274, + "cond": [], + "tiaozhuan": 3, + "order": 274, + "special": 0, + "show": "" + }, + "2274": { + "id": 2274, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2255", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2255", + "pretask": 2273, + "followtask": 2275, + "cond": [], + "tiaozhuan": 3, + "order": 275, + "special": 0, + "show": "" + }, + "2275": { + "id": 2275, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2256", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2256", + "pretask": 2274, + "followtask": 2276, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 276, + "special": 0, + "show": "" + }, + "2276": { + "id": 2276, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2257", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2257", + "pretask": 2275, + "followtask": 2277, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 277, + "special": 0, + "show": "" + }, + "2277": { + "id": 2277, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2258", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2258", + "pretask": 2276, + "followtask": 2278, + "cond": [], + "tiaozhuan": 8, + "order": 278, + "special": 0, + "show": "" + }, + "2278": { + "id": 2278, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 225, + "name": "intr_task_name_2259", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2259", + "pretask": 2277, + "followtask": 2279, + "cond": [], + "tiaozhuan": 3, + "order": 279, + "special": 0, + "show": "" + }, + "2279": { + "id": 2279, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2260", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2260", + "pretask": 2278, + "followtask": 2280, + "cond": [], + "tiaozhuan": 3, + "order": 280, + "special": 0, + "show": "" + }, + "2280": { + "id": 2280, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2261", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2261", + "pretask": 2279, + "followtask": 2281, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 281, + "special": 0, + "show": "" + }, + "2281": { + "id": 2281, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2262", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2262", + "pretask": 2280, + "followtask": 2282, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 282, + "special": 0, + "show": "" + }, + "2282": { + "id": 2282, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2263", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2263", + "pretask": 2281, + "followtask": 2283, + "cond": [], + "tiaozhuan": 8, + "order": 283, + "special": 0, + "show": "" + }, + "2283": { + "id": 2283, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 230, + "name": "intr_task_name_2264", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2264", + "pretask": 2282, + "followtask": 2284, + "cond": [], + "tiaozhuan": 3, + "order": 284, + "special": 0, + "show": "" + }, + "2284": { + "id": 2284, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2265", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2265", + "pretask": 2283, + "followtask": 2285, + "cond": [], + "tiaozhuan": 3, + "order": 285, + "special": 0, + "show": "" + }, + "2285": { + "id": 2285, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2266", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2266", + "pretask": 2284, + "followtask": 2286, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 286, + "special": 0, + "show": "" + }, + "2286": { + "id": 2286, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2267", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2267", + "pretask": 2285, + "followtask": 2287, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 287, + "special": 0, + "show": "" + }, + "2287": { + "id": 2287, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2268", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2268", + "pretask": 2286, + "followtask": 2288, + "cond": [], + "tiaozhuan": 8, + "order": 288, + "special": 0, + "show": "" + }, + "2288": { + "id": 2288, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 235, + "name": "intr_task_name_2269", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2269", + "pretask": 2287, + "followtask": 2289, + "cond": [], + "tiaozhuan": 3, + "order": 289, + "special": 0, + "show": "" + }, + "2289": { + "id": 2289, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2270", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2270", + "pretask": 2288, + "followtask": 2290, + "cond": [], + "tiaozhuan": 3, + "order": 290, + "special": 0, + "show": "" + }, + "2290": { + "id": 2290, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2271", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2271", + "pretask": 2289, + "followtask": 2291, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 291, + "special": 0, + "show": "" + }, + "2291": { + "id": 2291, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2272", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2272", + "pretask": 2290, + "followtask": 2292, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 292, + "special": 0, + "show": "" + }, + "2292": { + "id": 2292, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2273", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2273", + "pretask": 2291, + "followtask": 2293, + "cond": [], + "tiaozhuan": 8, + "order": 293, + "special": 0, + "show": "" + }, + "2293": { + "id": 2293, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 240, + "name": "intr_task_name_2274", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2274", + "pretask": 2292, + "followtask": 2294, + "cond": [], + "tiaozhuan": 3, + "order": 294, + "special": 0, + "show": "" + }, + "2294": { + "id": 2294, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2275", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2275", + "pretask": 2293, + "followtask": 2295, + "cond": [], + "tiaozhuan": 3, + "order": 295, + "special": 0, + "show": "" + }, + "2295": { + "id": 2295, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2276", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2276", + "pretask": 2294, + "followtask": 2296, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 296, + "special": 0, + "show": "" + }, + "2296": { + "id": 2296, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2277", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2277", + "pretask": 2295, + "followtask": 2297, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 297, + "special": 0, + "show": "" + }, + "2297": { + "id": 2297, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2278", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2278", + "pretask": 2296, + "followtask": 2298, + "cond": [], + "tiaozhuan": 8, + "order": 298, + "special": 0, + "show": "" + }, + "2298": { + "id": 2298, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 245, + "name": "intr_task_name_2279", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2279", + "pretask": 2297, + "followtask": 2299, + "cond": [], + "tiaozhuan": 3, + "order": 299, + "special": 0, + "show": "" + }, + "2299": { + "id": 2299, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2280", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2280", + "pretask": 2298, + "followtask": 2300, + "cond": [], + "tiaozhuan": 3, + "order": 300, + "special": 0, + "show": "" + }, + "2300": { + "id": 2300, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2281", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2281", + "pretask": 2299, + "followtask": 2301, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 301, + "special": 0, + "show": "" + }, + "2301": { + "id": 2301, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2282", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2282", + "pretask": 2300, + "followtask": 2302, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 302, + "special": 0, + "show": "" + }, + "2302": { + "id": 2302, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2283", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2283", + "pretask": 2301, + "followtask": 2303, + "cond": [], + "tiaozhuan": 8, + "order": 303, + "special": 0, + "show": "" + }, + "2303": { + "id": 2303, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 250, + "name": "intr_task_name_2284", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2284", + "pretask": 2302, + "followtask": 2304, + "cond": [], + "tiaozhuan": 3, + "order": 304, + "special": 0, + "show": "" + }, + "2304": { + "id": 2304, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2285", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2285", + "pretask": 2303, + "followtask": 2305, + "cond": [], + "tiaozhuan": 3, + "order": 305, + "special": 0, + "show": "" + }, + "2305": { + "id": 2305, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2286", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2286", + "pretask": 2304, + "followtask": 2306, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 306, + "special": 0, + "show": "" + }, + "2306": { + "id": 2306, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2287", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2287", + "pretask": 2305, + "followtask": 2307, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 307, + "special": 0, + "show": "" + }, + "2307": { + "id": 2307, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2288", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2288", + "pretask": 2306, + "followtask": 2308, + "cond": [], + "tiaozhuan": 8, + "order": 308, + "special": 0, + "show": "" + }, + "2308": { + "id": 2308, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 255, + "name": "intr_task_name_2289", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2289", + "pretask": 2307, + "followtask": 2309, + "cond": [], + "tiaozhuan": 3, + "order": 309, + "special": 0, + "show": "" + }, + "2309": { + "id": 2309, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2290", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2290", + "pretask": 2308, + "followtask": 2310, + "cond": [], + "tiaozhuan": 3, + "order": 310, + "special": 0, + "show": "" + }, + "2310": { + "id": 2310, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2291", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2291", + "pretask": 2309, + "followtask": 2311, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 311, + "special": 0, + "show": "" + }, + "2311": { + "id": 2311, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2292", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2292", + "pretask": 2310, + "followtask": 2312, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 312, + "special": 0, + "show": "" + }, + "2312": { + "id": 2312, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2293", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2293", + "pretask": 2311, + "followtask": 2313, + "cond": [], + "tiaozhuan": 8, + "order": 313, + "special": 0, + "show": "" + }, + "2313": { + "id": 2313, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 260, + "name": "intr_task_name_2294", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2294", + "pretask": 2312, + "followtask": 2314, + "cond": [], + "tiaozhuan": 3, + "order": 314, + "special": 0, + "show": "" + }, + "2314": { + "id": 2314, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2295", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2295", + "pretask": 2313, + "followtask": 2315, + "cond": [], + "tiaozhuan": 3, + "order": 315, + "special": 0, + "show": "" + }, + "2315": { + "id": 2315, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2296", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2296", + "pretask": 2314, + "followtask": 2316, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 316, + "special": 0, + "show": "" + }, + "2316": { + "id": 2316, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2297", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2297", + "pretask": 2315, + "followtask": 2317, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 317, + "special": 0, + "show": "" + }, + "2317": { + "id": 2317, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2298", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2298", + "pretask": 2316, + "followtask": 2318, + "cond": [], + "tiaozhuan": 8, + "order": 318, + "special": 0, + "show": "" + }, + "2318": { + "id": 2318, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 265, + "name": "intr_task_name_2299", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2299", + "pretask": 2317, + "followtask": 2319, + "cond": [], + "tiaozhuan": 3, + "order": 319, + "special": 0, + "show": "" + }, + "2319": { + "id": 2319, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2300", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2300", + "pretask": 2318, + "followtask": 2320, + "cond": [], + "tiaozhuan": 3, + "order": 320, + "special": 0, + "show": "" + }, + "2320": { + "id": 2320, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2301", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2301", + "pretask": 2319, + "followtask": 2321, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 321, + "special": 0, + "show": "" + }, + "2321": { + "id": 2321, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2302", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2302", + "pretask": 2320, + "followtask": 2322, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 322, + "special": 0, + "show": "" + }, + "2322": { + "id": 2322, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2303", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2303", + "pretask": 2321, + "followtask": 2323, + "cond": [], + "tiaozhuan": 8, + "order": 323, + "special": 0, + "show": "" + }, + "2323": { + "id": 2323, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 270, + "name": "intr_task_name_2304", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2304", + "pretask": 2322, + "followtask": 2324, + "cond": [], + "tiaozhuan": 3, + "order": 324, + "special": 0, + "show": "" + }, + "2324": { + "id": 2324, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2305", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2305", + "pretask": 2323, + "followtask": 2325, + "cond": [], + "tiaozhuan": 3, + "order": 325, + "special": 0, + "show": "" + }, + "2325": { + "id": 2325, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2306", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2306", + "pretask": 2324, + "followtask": 2326, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 326, + "special": 0, + "show": "" + }, + "2326": { + "id": 2326, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2307", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2307", + "pretask": 2325, + "followtask": 2327, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 327, + "special": 0, + "show": "" + }, + "2327": { + "id": 2327, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2308", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2308", + "pretask": 2326, + "followtask": 2328, + "cond": [], + "tiaozhuan": 8, + "order": 328, + "special": 0, + "show": "" + }, + "2328": { + "id": 2328, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 275, + "name": "intr_task_name_2309", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2309", + "pretask": 2327, + "followtask": 2329, + "cond": [], + "tiaozhuan": 3, + "order": 329, + "special": 0, + "show": "" + }, + "2329": { + "id": 2329, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2310", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2310", + "pretask": 2328, + "followtask": 2330, + "cond": [], + "tiaozhuan": 3, + "order": 330, + "special": 0, + "show": "" + }, + "2330": { + "id": 2330, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2311", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2311", + "pretask": 2329, + "followtask": 2331, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 331, + "special": 0, + "show": "" + }, + "2331": { + "id": 2331, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2312", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2312", + "pretask": 2330, + "followtask": 2332, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 332, + "special": 0, + "show": "" + }, + "2332": { + "id": 2332, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2313", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2313", + "pretask": 2331, + "followtask": 2333, + "cond": [], + "tiaozhuan": 8, + "order": 333, + "special": 0, + "show": "" + }, + "2333": { + "id": 2333, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 280, + "name": "intr_task_name_2314", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2314", + "pretask": 2332, + "followtask": 2334, + "cond": [], + "tiaozhuan": 3, + "order": 334, + "special": 0, + "show": "" + }, + "2334": { + "id": 2334, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2315", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2315", + "pretask": 2333, + "followtask": 2335, + "cond": [], + "tiaozhuan": 3, + "order": 335, + "special": 0, + "show": "" + }, + "2335": { + "id": 2335, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2316", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2316", + "pretask": 2334, + "followtask": 2336, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 336, + "special": 0, + "show": "" + }, + "2336": { + "id": 2336, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2317", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2317", + "pretask": 2335, + "followtask": 2337, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 337, + "special": 0, + "show": "" + }, + "2337": { + "id": 2337, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2318", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2318", + "pretask": 2336, + "followtask": 2338, + "cond": [], + "tiaozhuan": 8, + "order": 338, + "special": 0, + "show": "" + }, + "2338": { + "id": 2338, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 285, + "name": "intr_task_name_2319", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2319", + "pretask": 2337, + "followtask": 2339, + "cond": [], + "tiaozhuan": 3, + "order": 339, + "special": 0, + "show": "" + }, + "2339": { + "id": 2339, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2320", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2320", + "pretask": 2338, + "followtask": 2340, + "cond": [], + "tiaozhuan": 3, + "order": 340, + "special": 0, + "show": "" + }, + "2340": { + "id": 2340, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2321", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2321", + "pretask": 2339, + "followtask": 2341, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 341, + "special": 0, + "show": "" + }, + "2341": { + "id": 2341, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2322", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2322", + "pretask": 2340, + "followtask": 2342, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 342, + "special": 0, + "show": "" + }, + "2342": { + "id": 2342, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2323", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2323", + "pretask": 2341, + "followtask": 2343, + "cond": [], + "tiaozhuan": 8, + "order": 343, + "special": 0, + "show": "" + }, + "2343": { + "id": 2343, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 290, + "name": "intr_task_name_2324", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2324", + "pretask": 2342, + "followtask": 2344, + "cond": [], + "tiaozhuan": 3, + "order": 344, + "special": 0, + "show": "" + }, + "2344": { + "id": 2344, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2325", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2325", + "pretask": 2343, + "followtask": 2345, + "cond": [], + "tiaozhuan": 3, + "order": 345, + "special": 0, + "show": "" + }, + "2345": { + "id": 2345, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2326", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2326", + "pretask": 2344, + "followtask": 2346, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 346, + "special": 0, + "show": "" + }, + "2346": { + "id": 2346, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2327", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2327", + "pretask": 2345, + "followtask": 2347, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 347, + "special": 0, + "show": "" + }, + "2347": { + "id": 2347, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2328", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2328", + "pretask": 2346, + "followtask": 2348, + "cond": [], + "tiaozhuan": 8, + "order": 348, + "special": 0, + "show": "" + }, + "2348": { + "id": 2348, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 295, + "name": "intr_task_name_2329", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2329", + "pretask": 2347, + "followtask": 2349, + "cond": [], + "tiaozhuan": 3, + "order": 349, + "special": 0, + "show": "" + }, + "2349": { + "id": 2349, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2330", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2330", + "pretask": 2348, + "followtask": 2350, + "cond": [], + "tiaozhuan": 3, + "order": 350, + "special": 0, + "show": "" + }, + "2350": { + "id": 2350, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2331", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2331", + "pretask": 2349, + "followtask": 2351, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 351, + "special": 0, + "show": "" + }, + "2351": { + "id": 2351, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2332", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2332", + "pretask": 2350, + "followtask": 2352, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 352, + "special": 0, + "show": "" + }, + "2352": { + "id": 2352, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2333", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2333", + "pretask": 2351, + "followtask": 2353, + "cond": [], + "tiaozhuan": 8, + "order": 353, + "special": 0, + "show": "" + }, + "2353": { + "id": 2353, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 300, + "name": "intr_task_name_2334", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2334", + "pretask": 2352, + "followtask": 2354, + "cond": [], + "tiaozhuan": 3, + "order": 354, + "special": 0, + "show": "" + }, + "2354": { + "id": 2354, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2335", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2335", + "pretask": 2353, + "followtask": 2355, + "cond": [], + "tiaozhuan": 3, + "order": 355, + "special": 0, + "show": "" + }, + "2355": { + "id": 2355, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2336", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2336", + "pretask": 2354, + "followtask": 2356, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 356, + "special": 0, + "show": "" + }, + "2356": { + "id": 2356, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2337", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2337", + "pretask": 2355, + "followtask": 2357, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 357, + "special": 0, + "show": "" + }, + "2357": { + "id": 2357, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2338", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2338", + "pretask": 2356, + "followtask": 2358, + "cond": [], + "tiaozhuan": 8, + "order": 358, + "special": 0, + "show": "" + }, + "2358": { + "id": 2358, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 305, + "name": "intr_task_name_2339", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2339", + "pretask": 2357, + "followtask": 2359, + "cond": [], + "tiaozhuan": 3, + "order": 359, + "special": 0, + "show": "" + }, + "2359": { + "id": 2359, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2340", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2340", + "pretask": 2358, + "followtask": 2360, + "cond": [], + "tiaozhuan": 3, + "order": 360, + "special": 0, + "show": "" + }, + "2360": { + "id": 2360, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2341", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2341", + "pretask": 2359, + "followtask": 2361, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 361, + "special": 0, + "show": "" + }, + "2361": { + "id": 2361, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2342", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2342", + "pretask": 2360, + "followtask": 2362, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 362, + "special": 0, + "show": "" + }, + "2362": { + "id": 2362, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2343", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2343", + "pretask": 2361, + "followtask": 2363, + "cond": [], + "tiaozhuan": 8, + "order": 363, + "special": 0, + "show": "" + }, + "2363": { + "id": 2363, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 310, + "name": "intr_task_name_2344", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2344", + "pretask": 2362, + "followtask": 2364, + "cond": [], + "tiaozhuan": 3, + "order": 364, + "special": 0, + "show": "" + }, + "2364": { + "id": 2364, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2345", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2345", + "pretask": 2363, + "followtask": 2365, + "cond": [], + "tiaozhuan": 3, + "order": 365, + "special": 0, + "show": "" + }, + "2365": { + "id": 2365, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2346", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2346", + "pretask": 2364, + "followtask": 2366, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 366, + "special": 0, + "show": "" + }, + "2366": { + "id": 2366, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2347", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2347", + "pretask": 2365, + "followtask": 2367, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 367, + "special": 0, + "show": "" + }, + "2367": { + "id": 2367, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2348", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2348", + "pretask": 2366, + "followtask": 2368, + "cond": [], + "tiaozhuan": 8, + "order": 368, + "special": 0, + "show": "" + }, + "2368": { + "id": 2368, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 315, + "name": "intr_task_name_2349", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2349", + "pretask": 2367, + "followtask": 2369, + "cond": [], + "tiaozhuan": 3, + "order": 369, + "special": 0, + "show": "" + }, + "2369": { + "id": 2369, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2350", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2350", + "pretask": 2368, + "followtask": 2370, + "cond": [], + "tiaozhuan": 3, + "order": 370, + "special": 0, + "show": "" + }, + "2370": { + "id": 2370, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2351", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2351", + "pretask": 2369, + "followtask": 2371, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 371, + "special": 0, + "show": "" + }, + "2371": { + "id": 2371, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2352", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2352", + "pretask": 2370, + "followtask": 2372, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 372, + "special": 0, + "show": "" + }, + "2372": { + "id": 2372, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2353", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2353", + "pretask": 2371, + "followtask": 2373, + "cond": [], + "tiaozhuan": 8, + "order": 373, + "special": 0, + "show": "" + }, + "2373": { + "id": 2373, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 320, + "name": "intr_task_name_2354", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2354", + "pretask": 2372, + "followtask": 2374, + "cond": [], + "tiaozhuan": 3, + "order": 374, + "special": 0, + "show": "" + }, + "2374": { + "id": 2374, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2355", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2355", + "pretask": 2373, + "followtask": 2375, + "cond": [], + "tiaozhuan": 3, + "order": 375, + "special": 0, + "show": "" + }, + "2375": { + "id": 2375, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2356", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2356", + "pretask": 2374, + "followtask": 2376, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 376, + "special": 0, + "show": "" + }, + "2376": { + "id": 2376, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2357", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2357", + "pretask": 2375, + "followtask": 2377, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 377, + "special": 0, + "show": "" + }, + "2377": { + "id": 2377, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2358", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2358", + "pretask": 2376, + "followtask": 2378, + "cond": [], + "tiaozhuan": 8, + "order": 378, + "special": 0, + "show": "" + }, + "2378": { + "id": 2378, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 325, + "name": "intr_task_name_2359", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2359", + "pretask": 2377, + "followtask": 2379, + "cond": [], + "tiaozhuan": 3, + "order": 379, + "special": 0, + "show": "" + }, + "2379": { + "id": 2379, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2360", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2360", + "pretask": 2378, + "followtask": 2380, + "cond": [], + "tiaozhuan": 3, + "order": 380, + "special": 0, + "show": "" + }, + "2380": { + "id": 2380, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2361", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2361", + "pretask": 2379, + "followtask": 2381, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 381, + "special": 0, + "show": "" + }, + "2381": { + "id": 2381, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2362", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2362", + "pretask": 2380, + "followtask": 2382, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 382, + "special": 0, + "show": "" + }, + "2382": { + "id": 2382, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2363", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2363", + "pretask": 2381, + "followtask": 2383, + "cond": [], + "tiaozhuan": 8, + "order": 383, + "special": 0, + "show": "" + }, + "2383": { + "id": 2383, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 330, + "name": "intr_task_name_2364", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2364", + "pretask": 2382, + "followtask": 2384, + "cond": [], + "tiaozhuan": 3, + "order": 384, + "special": 0, + "show": "" + }, + "2384": { + "id": 2384, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2365", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2365", + "pretask": 2383, + "followtask": 2385, + "cond": [], + "tiaozhuan": 3, + "order": 385, + "special": 0, + "show": "" + }, + "2385": { + "id": 2385, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2366", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2366", + "pretask": 2384, + "followtask": 2386, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 386, + "special": 0, + "show": "" + }, + "2386": { + "id": 2386, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2367", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2367", + "pretask": 2385, + "followtask": 2387, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 387, + "special": 0, + "show": "" + }, + "2387": { + "id": 2387, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2368", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2368", + "pretask": 2386, + "followtask": 2388, + "cond": [], + "tiaozhuan": 8, + "order": 388, + "special": 0, + "show": "" + }, + "2388": { + "id": 2388, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 335, + "name": "intr_task_name_2369", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2369", + "pretask": 2387, + "followtask": 2389, + "cond": [], + "tiaozhuan": 3, + "order": 389, + "special": 0, + "show": "" + }, + "2389": { + "id": 2389, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2370", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2370", + "pretask": 2388, + "followtask": 2390, + "cond": [], + "tiaozhuan": 3, + "order": 390, + "special": 0, + "show": "" + }, + "2390": { + "id": 2390, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2371", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2371", + "pretask": 2389, + "followtask": 2391, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 391, + "special": 0, + "show": "" + }, + "2391": { + "id": 2391, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2372", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2372", + "pretask": 2390, + "followtask": 2392, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 392, + "special": 0, + "show": "" + }, + "2392": { + "id": 2392, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2373", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2373", + "pretask": 2391, + "followtask": 2393, + "cond": [], + "tiaozhuan": 8, + "order": 393, + "special": 0, + "show": "" + }, + "2393": { + "id": 2393, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 340, + "name": "intr_task_name_2374", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2374", + "pretask": 2392, + "followtask": 2394, + "cond": [], + "tiaozhuan": 3, + "order": 394, + "special": 0, + "show": "" + }, + "2394": { + "id": 2394, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2375", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2375", + "pretask": 2393, + "followtask": 2395, + "cond": [], + "tiaozhuan": 3, + "order": 395, + "special": 0, + "show": "" + }, + "2395": { + "id": 2395, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2376", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2376", + "pretask": 2394, + "followtask": 2396, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 396, + "special": 0, + "show": "" + }, + "2396": { + "id": 2396, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2377", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2377", + "pretask": 2395, + "followtask": 2397, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 397, + "special": 0, + "show": "" + }, + "2397": { + "id": 2397, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2378", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2378", + "pretask": 2396, + "followtask": 2398, + "cond": [], + "tiaozhuan": 8, + "order": 398, + "special": 0, + "show": "" + }, + "2398": { + "id": 2398, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 345, + "name": "intr_task_name_2379", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2379", + "pretask": 2397, + "followtask": 2399, + "cond": [], + "tiaozhuan": 3, + "order": 399, + "special": 0, + "show": "" + }, + "2399": { + "id": 2399, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2380", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2380", + "pretask": 2398, + "followtask": 2400, + "cond": [], + "tiaozhuan": 3, + "order": 400, + "special": 0, + "show": "" + }, + "2400": { + "id": 2400, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2381", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2381", + "pretask": 2399, + "followtask": 2401, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 401, + "special": 0, + "show": "" + }, + "2401": { + "id": 2401, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2382", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2382", + "pretask": 2400, + "followtask": 2402, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 402, + "special": 0, + "show": "" + }, + "2402": { + "id": 2402, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2383", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2383", + "pretask": 2401, + "followtask": 2403, + "cond": [], + "tiaozhuan": 8, + "order": 403, + "special": 0, + "show": "" + }, + "2403": { + "id": 2403, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 350, + "name": "intr_task_name_2384", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2384", + "pretask": 2402, + "followtask": 2404, + "cond": [], + "tiaozhuan": 3, + "order": 404, + "special": 0, + "show": "" + }, + "2404": { + "id": 2404, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2385", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2385", + "pretask": 2403, + "followtask": 2405, + "cond": [], + "tiaozhuan": 3, + "order": 405, + "special": 0, + "show": "" + }, + "2405": { + "id": 2405, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2386", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2386", + "pretask": 2404, + "followtask": 2406, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 406, + "special": 0, + "show": "" + }, + "2406": { + "id": 2406, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2387", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2387", + "pretask": 2405, + "followtask": 2407, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 407, + "special": 0, + "show": "" + }, + "2407": { + "id": 2407, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2388", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2388", + "pretask": 2406, + "followtask": 2408, + "cond": [], + "tiaozhuan": 8, + "order": 408, + "special": 0, + "show": "" + }, + "2408": { + "id": 2408, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 355, + "name": "intr_task_name_2389", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2389", + "pretask": 2407, + "followtask": 2409, + "cond": [], + "tiaozhuan": 3, + "order": 409, + "special": 0, + "show": "" + }, + "2409": { + "id": 2409, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2390", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2390", + "pretask": 2408, + "followtask": 2410, + "cond": [], + "tiaozhuan": 3, + "order": 410, + "special": 0, + "show": "" + }, + "2410": { + "id": 2410, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2391", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2391", + "pretask": 2409, + "followtask": 2411, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 411, + "special": 0, + "show": "" + }, + "2411": { + "id": 2411, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2392", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2392", + "pretask": 2410, + "followtask": 2412, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 412, + "special": 0, + "show": "" + }, + "2412": { + "id": 2412, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2393", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2393", + "pretask": 2411, + "followtask": 2413, + "cond": [], + "tiaozhuan": 8, + "order": 413, + "special": 0, + "show": "" + }, + "2413": { + "id": 2413, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 360, + "name": "intr_task_name_2394", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2394", + "pretask": 2412, + "followtask": 2414, + "cond": [], + "tiaozhuan": 3, + "order": 414, + "special": 0, + "show": "" + }, + "2414": { + "id": 2414, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2395", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2395", + "pretask": 2413, + "followtask": 2415, + "cond": [], + "tiaozhuan": 3, + "order": 415, + "special": 0, + "show": "" + }, + "2415": { + "id": 2415, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2396", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2396", + "pretask": 2414, + "followtask": 2416, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 416, + "special": 0, + "show": "" + }, + "2416": { + "id": 2416, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2397", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2397", + "pretask": 2415, + "followtask": 2417, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 417, + "special": 0, + "show": "" + }, + "2417": { + "id": 2417, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2398", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2398", + "pretask": 2416, + "followtask": 2418, + "cond": [], + "tiaozhuan": 8, + "order": 418, + "special": 0, + "show": "" + }, + "2418": { + "id": 2418, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 365, + "name": "intr_task_name_2399", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2399", + "pretask": 2417, + "followtask": 2419, + "cond": [], + "tiaozhuan": 3, + "order": 419, + "special": 0, + "show": "" + }, + "2419": { + "id": 2419, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2400", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2400", + "pretask": 2418, + "followtask": 2420, + "cond": [], + "tiaozhuan": 3, + "order": 420, + "special": 0, + "show": "" + }, + "2420": { + "id": 2420, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2401", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2401", + "pretask": 2419, + "followtask": 2421, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 421, + "special": 0, + "show": "" + }, + "2421": { + "id": 2421, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2402", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2402", + "pretask": 2420, + "followtask": 2422, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 422, + "special": 0, + "show": "" + }, + "2422": { + "id": 2422, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2403", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2403", + "pretask": 2421, + "followtask": 2423, + "cond": [], + "tiaozhuan": 8, + "order": 423, + "special": 0, + "show": "" + }, + "2423": { + "id": 2423, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 370, + "name": "intr_task_name_2404", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2404", + "pretask": 2422, + "followtask": 2424, + "cond": [], + "tiaozhuan": 3, + "order": 424, + "special": 0, + "show": "" + }, + "2424": { + "id": 2424, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2405", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2405", + "pretask": 2423, + "followtask": 2425, + "cond": [], + "tiaozhuan": 3, + "order": 425, + "special": 0, + "show": "" + }, + "2425": { + "id": 2425, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2406", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2406", + "pretask": 2424, + "followtask": 2426, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 426, + "special": 0, + "show": "" + }, + "2426": { + "id": 2426, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2407", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2407", + "pretask": 2425, + "followtask": 2427, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 427, + "special": 0, + "show": "" + }, + "2427": { + "id": 2427, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2408", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2408", + "pretask": 2426, + "followtask": 2428, + "cond": [], + "tiaozhuan": 8, + "order": 428, + "special": 0, + "show": "" + }, + "2428": { + "id": 2428, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 375, + "name": "intr_task_name_2409", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2409", + "pretask": 2427, + "followtask": 2429, + "cond": [], + "tiaozhuan": 3, + "order": 429, + "special": 0, + "show": "" + }, + "2429": { + "id": 2429, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2410", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2410", + "pretask": 2428, + "followtask": 2430, + "cond": [], + "tiaozhuan": 3, + "order": 430, + "special": 0, + "show": "" + }, + "2430": { + "id": 2430, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2411", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2411", + "pretask": 2429, + "followtask": 2431, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 431, + "special": 0, + "show": "" + }, + "2431": { + "id": 2431, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2412", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2412", + "pretask": 2430, + "followtask": 2432, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 432, + "special": 0, + "show": "" + }, + "2432": { + "id": 2432, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2413", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2413", + "pretask": 2431, + "followtask": 2433, + "cond": [], + "tiaozhuan": 8, + "order": 433, + "special": 0, + "show": "" + }, + "2433": { + "id": 2433, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 380, + "name": "intr_task_name_2414", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2414", + "pretask": 2432, + "followtask": 2434, + "cond": [], + "tiaozhuan": 3, + "order": 434, + "special": 0, + "show": "" + }, + "2434": { + "id": 2434, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2415", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2415", + "pretask": 2433, + "followtask": 2435, + "cond": [], + "tiaozhuan": 3, + "order": 435, + "special": 0, + "show": "" + }, + "2435": { + "id": 2435, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2416", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2416", + "pretask": 2434, + "followtask": 2436, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 436, + "special": 0, + "show": "" + }, + "2436": { + "id": 2436, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2417", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2417", + "pretask": 2435, + "followtask": 2437, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 437, + "special": 0, + "show": "" + }, + "2437": { + "id": 2437, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2418", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2418", + "pretask": 2436, + "followtask": 2438, + "cond": [], + "tiaozhuan": 8, + "order": 438, + "special": 0, + "show": "" + }, + "2438": { + "id": 2438, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 385, + "name": "intr_task_name_2419", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2419", + "pretask": 2437, + "followtask": 2439, + "cond": [], + "tiaozhuan": 3, + "order": 439, + "special": 0, + "show": "" + }, + "2439": { + "id": 2439, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2420", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2420", + "pretask": 2438, + "followtask": 2440, + "cond": [], + "tiaozhuan": 3, + "order": 440, + "special": 0, + "show": "" + }, + "2440": { + "id": 2440, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2421", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2421", + "pretask": 2439, + "followtask": 2441, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 441, + "special": 0, + "show": "" + }, + "2441": { + "id": 2441, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2422", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2422", + "pretask": 2440, + "followtask": 2442, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 442, + "special": 0, + "show": "" + }, + "2442": { + "id": 2442, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2423", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2423", + "pretask": 2441, + "followtask": 2443, + "cond": [], + "tiaozhuan": 8, + "order": 443, + "special": 0, + "show": "" + }, + "2443": { + "id": 2443, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 390, + "name": "intr_task_name_2424", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2424", + "pretask": 2442, + "followtask": 2444, + "cond": [], + "tiaozhuan": 3, + "order": 444, + "special": 0, + "show": "" + }, + "2444": { + "id": 2444, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2425", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2425", + "pretask": 2443, + "followtask": 2445, + "cond": [], + "tiaozhuan": 3, + "order": 445, + "special": 0, + "show": "" + }, + "2445": { + "id": 2445, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2426", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2426", + "pretask": 2444, + "followtask": 2446, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 446, + "special": 0, + "show": "" + }, + "2446": { + "id": 2446, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2427", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2427", + "pretask": 2445, + "followtask": 2447, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 447, + "special": 0, + "show": "" + }, + "2447": { + "id": 2447, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2428", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2428", + "pretask": 2446, + "followtask": 2448, + "cond": [], + "tiaozhuan": 8, + "order": 448, + "special": 0, + "show": "" + }, + "2448": { + "id": 2448, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 395, + "name": "intr_task_name_2429", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2429", + "pretask": 2447, + "followtask": 2449, + "cond": [], + "tiaozhuan": 3, + "order": 449, + "special": 0, + "show": "" + }, + "2449": { + "id": 2449, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2430", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2430", + "pretask": 2448, + "followtask": 2450, + "cond": [], + "tiaozhuan": 3, + "order": 450, + "special": 0, + "show": "" + }, + "2450": { + "id": 2450, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2431", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2431", + "pretask": 2449, + "followtask": 2451, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 451, + "special": 0, + "show": "" + }, + "2451": { + "id": 2451, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2432", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2432", + "pretask": 2450, + "followtask": 2452, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 452, + "special": 0, + "show": "" + }, + "2452": { + "id": 2452, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2433", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2433", + "pretask": 2451, + "followtask": 2453, + "cond": [], + "tiaozhuan": 8, + "order": 453, + "special": 0, + "show": "" + }, + "2453": { + "id": 2453, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 400, + "name": "intr_task_name_2434", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2434", + "pretask": 2452, + "followtask": 2454, + "cond": [], + "tiaozhuan": 3, + "order": 454, + "special": 0, + "show": "" + }, + "2454": { + "id": 2454, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2435", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2435", + "pretask": 2453, + "followtask": 2455, + "cond": [], + "tiaozhuan": 3, + "order": 455, + "special": 0, + "show": "" + }, + "2455": { + "id": 2455, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2436", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2436", + "pretask": 2454, + "followtask": 2456, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 456, + "special": 0, + "show": "" + }, + "2456": { + "id": 2456, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2437", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2437", + "pretask": 2455, + "followtask": 2457, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 457, + "special": 0, + "show": "" + }, + "2457": { + "id": 2457, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2438", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2438", + "pretask": 2456, + "followtask": 2458, + "cond": [], + "tiaozhuan": 8, + "order": 458, + "special": 0, + "show": "" + }, + "2458": { + "id": 2458, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 405, + "name": "intr_task_name_2439", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2439", + "pretask": 2457, + "followtask": 2459, + "cond": [], + "tiaozhuan": 3, + "order": 459, + "special": 0, + "show": "" + }, + "2459": { + "id": 2459, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2440", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2440", + "pretask": 2458, + "followtask": 2460, + "cond": [], + "tiaozhuan": 3, + "order": 460, + "special": 0, + "show": "" + }, + "2460": { + "id": 2460, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2441", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2441", + "pretask": 2459, + "followtask": 2461, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 461, + "special": 0, + "show": "" + }, + "2461": { + "id": 2461, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2442", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2442", + "pretask": 2460, + "followtask": 2462, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 462, + "special": 0, + "show": "" + }, + "2462": { + "id": 2462, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2443", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2443", + "pretask": 2461, + "followtask": 2463, + "cond": [], + "tiaozhuan": 8, + "order": 463, + "special": 0, + "show": "" + }, + "2463": { + "id": 2463, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 410, + "name": "intr_task_name_2444", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2444", + "pretask": 2462, + "followtask": 2464, + "cond": [], + "tiaozhuan": 3, + "order": 464, + "special": 0, + "show": "" + }, + "2464": { + "id": 2464, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2445", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2445", + "pretask": 2463, + "followtask": 2465, + "cond": [], + "tiaozhuan": 3, + "order": 465, + "special": 0, + "show": "" + }, + "2465": { + "id": 2465, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2446", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2446", + "pretask": 2464, + "followtask": 2466, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 466, + "special": 0, + "show": "" + }, + "2466": { + "id": 2466, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2447", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2447", + "pretask": 2465, + "followtask": 2467, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 467, + "special": 0, + "show": "" + }, + "2467": { + "id": 2467, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2448", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2448", + "pretask": 2466, + "followtask": 2468, + "cond": [], + "tiaozhuan": 8, + "order": 468, + "special": 0, + "show": "" + }, + "2468": { + "id": 2468, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 415, + "name": "intr_task_name_2449", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2449", + "pretask": 2467, + "followtask": 2469, + "cond": [], + "tiaozhuan": 3, + "order": 469, + "special": 0, + "show": "" + }, + "2469": { + "id": 2469, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2450", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2450", + "pretask": 2468, + "followtask": 2470, + "cond": [], + "tiaozhuan": 3, + "order": 470, + "special": 0, + "show": "" + }, + "2470": { + "id": 2470, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2451", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2451", + "pretask": 2469, + "followtask": 2471, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 471, + "special": 0, + "show": "" + }, + "2471": { + "id": 2471, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2452", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2452", + "pretask": 2470, + "followtask": 2472, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 472, + "special": 0, + "show": "" + }, + "2472": { + "id": 2472, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2453", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2453", + "pretask": 2471, + "followtask": 2473, + "cond": [], + "tiaozhuan": 8, + "order": 473, + "special": 0, + "show": "" + }, + "2473": { + "id": 2473, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 420, + "name": "intr_task_name_2454", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2454", + "pretask": 2472, + "followtask": 2474, + "cond": [], + "tiaozhuan": 3, + "order": 474, + "special": 0, + "show": "" + }, + "2474": { + "id": 2474, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2455", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2455", + "pretask": 2473, + "followtask": 2475, + "cond": [], + "tiaozhuan": 3, + "order": 475, + "special": 0, + "show": "" + }, + "2475": { + "id": 2475, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2456", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2456", + "pretask": 2474, + "followtask": 2476, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 476, + "special": 0, + "show": "" + }, + "2476": { + "id": 2476, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2457", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2457", + "pretask": 2475, + "followtask": 2477, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 477, + "special": 0, + "show": "" + }, + "2477": { + "id": 2477, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2458", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2458", + "pretask": 2476, + "followtask": 2478, + "cond": [], + "tiaozhuan": 8, + "order": 478, + "special": 0, + "show": "" + }, + "2478": { + "id": 2478, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 425, + "name": "intr_task_name_2459", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2459", + "pretask": 2477, + "followtask": 2479, + "cond": [], + "tiaozhuan": 3, + "order": 479, + "special": 0, + "show": "" + }, + "2479": { + "id": 2479, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2460", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2460", + "pretask": 2478, + "followtask": 2480, + "cond": [], + "tiaozhuan": 3, + "order": 480, + "special": 0, + "show": "" + }, + "2480": { + "id": 2480, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2461", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2461", + "pretask": 2479, + "followtask": 2481, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 481, + "special": 0, + "show": "" + }, + "2481": { + "id": 2481, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2462", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2462", + "pretask": 2480, + "followtask": 2482, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 482, + "special": 0, + "show": "" + }, + "2482": { + "id": 2482, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2463", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2463", + "pretask": 2481, + "followtask": 2483, + "cond": [], + "tiaozhuan": 8, + "order": 483, + "special": 0, + "show": "" + }, + "2483": { + "id": 2483, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 430, + "name": "intr_task_name_2464", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2464", + "pretask": 2482, + "followtask": 2484, + "cond": [], + "tiaozhuan": 3, + "order": 484, + "special": 0, + "show": "" + }, + "2484": { + "id": 2484, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2465", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2465", + "pretask": 2483, + "followtask": 2485, + "cond": [], + "tiaozhuan": 3, + "order": 485, + "special": 0, + "show": "" + }, + "2485": { + "id": 2485, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2466", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2466", + "pretask": 2484, + "followtask": 2486, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 486, + "special": 0, + "show": "" + }, + "2486": { + "id": 2486, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2467", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2467", + "pretask": 2485, + "followtask": 2487, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 487, + "special": 0, + "show": "" + }, + "2487": { + "id": 2487, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2468", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2468", + "pretask": 2486, + "followtask": 2488, + "cond": [], + "tiaozhuan": 8, + "order": 488, + "special": 0, + "show": "" + }, + "2488": { + "id": 2488, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 435, + "name": "intr_task_name_2469", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2469", + "pretask": 2487, + "followtask": 2489, + "cond": [], + "tiaozhuan": 3, + "order": 489, + "special": 0, + "show": "" + }, + "2489": { + "id": 2489, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2470", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2470", + "pretask": 2488, + "followtask": 2490, + "cond": [], + "tiaozhuan": 3, + "order": 490, + "special": 0, + "show": "" + }, + "2490": { + "id": 2490, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2471", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2471", + "pretask": 2489, + "followtask": 2491, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 491, + "special": 0, + "show": "" + }, + "2491": { + "id": 2491, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2472", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2472", + "pretask": 2490, + "followtask": 2492, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 492, + "special": 0, + "show": "" + }, + "2492": { + "id": 2492, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2473", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2473", + "pretask": 2491, + "followtask": 2493, + "cond": [], + "tiaozhuan": 8, + "order": 493, + "special": 0, + "show": "" + }, + "2493": { + "id": 2493, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 440, + "name": "intr_task_name_2474", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2474", + "pretask": 2492, + "followtask": 2494, + "cond": [], + "tiaozhuan": 3, + "order": 494, + "special": 0, + "show": "" + }, + "2494": { + "id": 2494, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2475", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2475", + "pretask": 2493, + "followtask": 2495, + "cond": [], + "tiaozhuan": 3, + "order": 495, + "special": 0, + "show": "" + }, + "2495": { + "id": 2495, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2476", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2476", + "pretask": 2494, + "followtask": 2496, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 496, + "special": 0, + "show": "" + }, + "2496": { + "id": 2496, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2477", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2477", + "pretask": 2495, + "followtask": 2497, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 497, + "special": 0, + "show": "" + }, + "2497": { + "id": 2497, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2478", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2478", + "pretask": 2496, + "followtask": 2498, + "cond": [], + "tiaozhuan": 8, + "order": 498, + "special": 0, + "show": "" + }, + "2498": { + "id": 2498, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 445, + "name": "intr_task_name_2479", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2479", + "pretask": 2497, + "followtask": 2499, + "cond": [], + "tiaozhuan": 3, + "order": 499, + "special": 0, + "show": "" + }, + "2499": { + "id": 2499, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2480", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2480", + "pretask": 2498, + "followtask": 2500, + "cond": [], + "tiaozhuan": 3, + "order": 500, + "special": 0, + "show": "" + }, + "2500": { + "id": 2500, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2481", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2481", + "pretask": 2499, + "followtask": 2501, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 501, + "special": 0, + "show": "" + }, + "2501": { + "id": 2501, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2482", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2482", + "pretask": 2500, + "followtask": 2502, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 502, + "special": 0, + "show": "" + }, + "2502": { + "id": 2502, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2483", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2483", + "pretask": 2501, + "followtask": 2503, + "cond": [], + "tiaozhuan": 8, + "order": 503, + "special": 0, + "show": "" + }, + "2503": { + "id": 2503, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 450, + "name": "intr_task_name_2484", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2484", + "pretask": 2502, + "followtask": 2504, + "cond": [], + "tiaozhuan": 3, + "order": 504, + "special": 0, + "show": "" + }, + "2504": { + "id": 2504, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2485", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2485", + "pretask": 2503, + "followtask": 2505, + "cond": [], + "tiaozhuan": 3, + "order": 505, + "special": 0, + "show": "" + }, + "2505": { + "id": 2505, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2486", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2486", + "pretask": 2504, + "followtask": 2506, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 506, + "special": 0, + "show": "" + }, + "2506": { + "id": 2506, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2487", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2487", + "pretask": 2505, + "followtask": 2507, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 507, + "special": 0, + "show": "" + }, + "2507": { + "id": 2507, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2488", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2488", + "pretask": 2506, + "followtask": 2508, + "cond": [], + "tiaozhuan": 8, + "order": 508, + "special": 0, + "show": "" + }, + "2508": { + "id": 2508, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 455, + "name": "intr_task_name_2489", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2489", + "pretask": 2507, + "followtask": 2509, + "cond": [], + "tiaozhuan": 3, + "order": 509, + "special": 0, + "show": "" + }, + "2509": { + "id": 2509, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2490", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2490", + "pretask": 2508, + "followtask": 2510, + "cond": [], + "tiaozhuan": 3, + "order": 510, + "special": 0, + "show": "" + }, + "2510": { + "id": 2510, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2491", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2491", + "pretask": 2509, + "followtask": 2511, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 511, + "special": 0, + "show": "" + }, + "2511": { + "id": 2511, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2492", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2492", + "pretask": 2510, + "followtask": 2512, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 512, + "special": 0, + "show": "" + }, + "2512": { + "id": 2512, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2493", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2493", + "pretask": 2511, + "followtask": 2513, + "cond": [], + "tiaozhuan": 8, + "order": 513, + "special": 0, + "show": "" + }, + "2513": { + "id": 2513, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 460, + "name": "intr_task_name_2494", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2494", + "pretask": 2512, + "followtask": 2514, + "cond": [], + "tiaozhuan": 3, + "order": 514, + "special": 0, + "show": "" + }, + "2514": { + "id": 2514, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2495", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2495", + "pretask": 2513, + "followtask": 2515, + "cond": [], + "tiaozhuan": 3, + "order": 515, + "special": 0, + "show": "" + }, + "2515": { + "id": 2515, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2496", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2496", + "pretask": 2514, + "followtask": 2516, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 516, + "special": 0, + "show": "" + }, + "2516": { + "id": 2516, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2497", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2497", + "pretask": 2515, + "followtask": 2517, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 517, + "special": 0, + "show": "" + }, + "2517": { + "id": 2517, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2498", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2498", + "pretask": 2516, + "followtask": 2518, + "cond": [], + "tiaozhuan": 8, + "order": 518, + "special": 0, + "show": "" + }, + "2518": { + "id": 2518, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 465, + "name": "intr_task_name_2499", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2499", + "pretask": 2517, + "followtask": 2519, + "cond": [], + "tiaozhuan": 3, + "order": 519, + "special": 0, + "show": "" + }, + "2519": { + "id": 2519, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2500", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2500", + "pretask": 2518, + "followtask": 2520, + "cond": [], + "tiaozhuan": 3, + "order": 520, + "special": 0, + "show": "" + }, + "2520": { + "id": 2520, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2501", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2501", + "pretask": 2519, + "followtask": 2521, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 521, + "special": 0, + "show": "" + }, + "2521": { + "id": 2521, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2502", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2502", + "pretask": 2520, + "followtask": 2522, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 522, + "special": 0, + "show": "" + }, + "2522": { + "id": 2522, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2503", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2503", + "pretask": 2521, + "followtask": 2523, + "cond": [], + "tiaozhuan": 8, + "order": 523, + "special": 0, + "show": "" + }, + "2523": { + "id": 2523, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 470, + "name": "intr_task_name_2504", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2504", + "pretask": 2522, + "followtask": 2524, + "cond": [], + "tiaozhuan": 3, + "order": 524, + "special": 0, + "show": "" + }, + "2524": { + "id": 2524, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2505", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2505", + "pretask": 2523, + "followtask": 2525, + "cond": [], + "tiaozhuan": 3, + "order": 525, + "special": 0, + "show": "" + }, + "2525": { + "id": 2525, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2506", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2506", + "pretask": 2524, + "followtask": 2526, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 526, + "special": 0, + "show": "" + }, + "2526": { + "id": 2526, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2507", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2507", + "pretask": 2525, + "followtask": 2527, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 527, + "special": 0, + "show": "" + }, + "2527": { + "id": 2527, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2508", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2508", + "pretask": 2526, + "followtask": 2528, + "cond": [], + "tiaozhuan": 8, + "order": 528, + "special": 0, + "show": "" + }, + "2528": { + "id": 2528, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 475, + "name": "intr_task_name_2509", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2509", + "pretask": 2527, + "followtask": 2529, + "cond": [], + "tiaozhuan": 3, + "order": 529, + "special": 0, + "show": "" + }, + "2529": { + "id": 2529, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2510", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2510", + "pretask": 2528, + "followtask": 2530, + "cond": [], + "tiaozhuan": 3, + "order": 530, + "special": 0, + "show": "" + }, + "2530": { + "id": 2530, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2511", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2511", + "pretask": 2529, + "followtask": 2531, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 531, + "special": 0, + "show": "" + }, + "2531": { + "id": 2531, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2512", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2512", + "pretask": 2530, + "followtask": 2532, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 532, + "special": 0, + "show": "" + }, + "2532": { + "id": 2532, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2513", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2513", + "pretask": 2531, + "followtask": 2533, + "cond": [], + "tiaozhuan": 8, + "order": 533, + "special": 0, + "show": "" + }, + "2533": { + "id": 2533, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 480, + "name": "intr_task_name_2514", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2514", + "pretask": 2532, + "followtask": 2534, + "cond": [], + "tiaozhuan": 3, + "order": 534, + "special": 0, + "show": "" + }, + "2534": { + "id": 2534, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2515", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2515", + "pretask": 2533, + "followtask": 2535, + "cond": [], + "tiaozhuan": 3, + "order": 535, + "special": 0, + "show": "" + }, + "2535": { + "id": 2535, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2516", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2516", + "pretask": 2534, + "followtask": 2536, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 536, + "special": 0, + "show": "" + }, + "2536": { + "id": 2536, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2517", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2517", + "pretask": 2535, + "followtask": 2537, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 537, + "special": 0, + "show": "" + }, + "2537": { + "id": 2537, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2518", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2518", + "pretask": 2536, + "followtask": 2538, + "cond": [], + "tiaozhuan": 8, + "order": 538, + "special": 0, + "show": "" + }, + "2538": { + "id": 2538, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 485, + "name": "intr_task_name_2519", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2519", + "pretask": 2537, + "followtask": 2539, + "cond": [], + "tiaozhuan": 3, + "order": 539, + "special": 0, + "show": "" + }, + "2539": { + "id": 2539, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2520", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2520", + "pretask": 2538, + "followtask": 2540, + "cond": [], + "tiaozhuan": 3, + "order": 540, + "special": 0, + "show": "" + }, + "2540": { + "id": 2540, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2521", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2521", + "pretask": 2539, + "followtask": 2541, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 541, + "special": 0, + "show": "" + }, + "2541": { + "id": 2541, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2522", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2522", + "pretask": 2540, + "followtask": 2542, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 542, + "special": 0, + "show": "" + }, + "2542": { + "id": 2542, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2523", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2523", + "pretask": 2541, + "followtask": 2543, + "cond": [], + "tiaozhuan": 8, + "order": 543, + "special": 0, + "show": "" + }, + "2543": { + "id": 2543, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 490, + "name": "intr_task_name_2524", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2524", + "pretask": 2542, + "followtask": 2544, + "cond": [], + "tiaozhuan": 3, + "order": 544, + "special": 0, + "show": "" + }, + "2544": { + "id": 2544, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2525", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2525", + "pretask": 2543, + "followtask": 2545, + "cond": [], + "tiaozhuan": 3, + "order": 545, + "special": 0, + "show": "" + }, + "2545": { + "id": 2545, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2526", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2526", + "pretask": 2544, + "followtask": 2546, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 546, + "special": 0, + "show": "" + }, + "2546": { + "id": 2546, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2527", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2527", + "pretask": 2545, + "followtask": 2547, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 547, + "special": 0, + "show": "" + }, + "2547": { + "id": 2547, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2528", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2528", + "pretask": 2546, + "followtask": 2548, + "cond": [], + "tiaozhuan": 8, + "order": 548, + "special": 0, + "show": "" + }, + "2548": { + "id": 2548, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 495, + "name": "intr_task_name_2529", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2529", + "pretask": 2547, + "followtask": 2549, + "cond": [], + "tiaozhuan": 3, + "order": 549, + "special": 0, + "show": "" + }, + "2549": { + "id": 2549, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2530", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2530", + "pretask": 2548, + "followtask": 2550, + "cond": [], + "tiaozhuan": 3, + "order": 550, + "special": 0, + "show": "" + }, + "2550": { + "id": 2550, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2531", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2531", + "pretask": 2549, + "followtask": 2551, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 551, + "special": 0, + "show": "" + }, + "2551": { + "id": 2551, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2532", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2532", + "pretask": 2550, + "followtask": 2552, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 552, + "special": 0, + "show": "" + }, + "2552": { + "id": 2552, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2533", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2533", + "pretask": 2551, + "followtask": 2553, + "cond": [], + "tiaozhuan": 8, + "order": 553, + "special": 0, + "show": "" + }, + "2553": { + "id": 2553, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 500, + "name": "intr_task_name_2534", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2534", + "pretask": 2552, + "followtask": 2554, + "cond": [], + "tiaozhuan": 3, + "order": 554, + "special": 0, + "show": "" + }, + "2554": { + "id": 2554, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2535", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2535", + "pretask": 2553, + "followtask": 2555, + "cond": [], + "tiaozhuan": 3, + "order": 555, + "special": 0, + "show": "" + }, + "2555": { + "id": 2555, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2536", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2536", + "pretask": 2554, + "followtask": 2556, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 556, + "special": 0, + "show": "" + }, + "2556": { + "id": 2556, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2537", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2537", + "pretask": 2555, + "followtask": 2557, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 557, + "special": 0, + "show": "" + }, + "2557": { + "id": 2557, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2538", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2538", + "pretask": 2556, + "followtask": 2558, + "cond": [], + "tiaozhuan": 8, + "order": 558, + "special": 0, + "show": "" + }, + "2558": { + "id": 2558, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 505, + "name": "intr_task_name_2539", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2539", + "pretask": 2557, + "followtask": 2559, + "cond": [], + "tiaozhuan": 3, + "order": 559, + "special": 0, + "show": "" + }, + "2559": { + "id": 2559, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2540", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2540", + "pretask": 2558, + "followtask": 2560, + "cond": [], + "tiaozhuan": 3, + "order": 560, + "special": 0, + "show": "" + }, + "2560": { + "id": 2560, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2541", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2541", + "pretask": 2559, + "followtask": 2561, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 561, + "special": 0, + "show": "" + }, + "2561": { + "id": 2561, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2542", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2542", + "pretask": 2560, + "followtask": 2562, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 562, + "special": 0, + "show": "" + }, + "2562": { + "id": 2562, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2543", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2543", + "pretask": 2561, + "followtask": 2563, + "cond": [], + "tiaozhuan": 8, + "order": 563, + "special": 0, + "show": "" + }, + "2563": { + "id": 2563, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 510, + "name": "intr_task_name_2544", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2544", + "pretask": 2562, + "followtask": 2564, + "cond": [], + "tiaozhuan": 3, + "order": 564, + "special": 0, + "show": "" + }, + "2564": { + "id": 2564, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2545", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2545", + "pretask": 2563, + "followtask": 2565, + "cond": [], + "tiaozhuan": 3, + "order": 565, + "special": 0, + "show": "" + }, + "2565": { + "id": 2565, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2546", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2546", + "pretask": 2564, + "followtask": 2566, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 566, + "special": 0, + "show": "" + }, + "2566": { + "id": 2566, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2547", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2547", + "pretask": 2565, + "followtask": 2567, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 567, + "special": 0, + "show": "" + }, + "2567": { + "id": 2567, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2548", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2548", + "pretask": 2566, + "followtask": 2568, + "cond": [], + "tiaozhuan": 8, + "order": 568, + "special": 0, + "show": "" + }, + "2568": { + "id": 2568, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 515, + "name": "intr_task_name_2549", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2549", + "pretask": 2567, + "followtask": 2569, + "cond": [], + "tiaozhuan": 3, + "order": 569, + "special": 0, + "show": "" + }, + "2569": { + "id": 2569, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2550", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2550", + "pretask": 2568, + "followtask": 2570, + "cond": [], + "tiaozhuan": 3, + "order": 570, + "special": 0, + "show": "" + }, + "2570": { + "id": 2570, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2551", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2551", + "pretask": 2569, + "followtask": 2571, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 571, + "special": 0, + "show": "" + }, + "2571": { + "id": 2571, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2552", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2552", + "pretask": 2570, + "followtask": 2572, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 572, + "special": 0, + "show": "" + }, + "2572": { + "id": 2572, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2553", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2553", + "pretask": 2571, + "followtask": 2573, + "cond": [], + "tiaozhuan": 8, + "order": 573, + "special": 0, + "show": "" + }, + "2573": { + "id": 2573, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 520, + "name": "intr_task_name_2554", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2554", + "pretask": 2572, + "followtask": 2574, + "cond": [], + "tiaozhuan": 3, + "order": 574, + "special": 0, + "show": "" + }, + "2574": { + "id": 2574, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2555", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2555", + "pretask": 2573, + "followtask": 2575, + "cond": [], + "tiaozhuan": 3, + "order": 575, + "special": 0, + "show": "" + }, + "2575": { + "id": 2575, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2556", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2556", + "pretask": 2574, + "followtask": 2576, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 576, + "special": 0, + "show": "" + }, + "2576": { + "id": 2576, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2557", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2557", + "pretask": 2575, + "followtask": 2577, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 577, + "special": 0, + "show": "" + }, + "2577": { + "id": 2577, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2558", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2558", + "pretask": 2576, + "followtask": 2578, + "cond": [], + "tiaozhuan": 8, + "order": 578, + "special": 0, + "show": "" + }, + "2578": { + "id": 2578, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 525, + "name": "intr_task_name_2559", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2559", + "pretask": 2577, + "followtask": 2579, + "cond": [], + "tiaozhuan": 3, + "order": 579, + "special": 0, + "show": "" + }, + "2579": { + "id": 2579, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2560", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2560", + "pretask": 2578, + "followtask": 2580, + "cond": [], + "tiaozhuan": 3, + "order": 580, + "special": 0, + "show": "" + }, + "2580": { + "id": 2580, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2561", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2561", + "pretask": 2579, + "followtask": 2581, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 581, + "special": 0, + "show": "" + }, + "2581": { + "id": 2581, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2562", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2562", + "pretask": 2580, + "followtask": 2582, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 582, + "special": 0, + "show": "" + }, + "2582": { + "id": 2582, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2563", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2563", + "pretask": 2581, + "followtask": 2583, + "cond": [], + "tiaozhuan": 8, + "order": 583, + "special": 0, + "show": "" + }, + "2583": { + "id": 2583, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 530, + "name": "intr_task_name_2564", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2564", + "pretask": 2582, + "followtask": 2584, + "cond": [], + "tiaozhuan": 3, + "order": 584, + "special": 0, + "show": "" + }, + "2584": { + "id": 2584, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2565", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2565", + "pretask": 2583, + "followtask": 2585, + "cond": [], + "tiaozhuan": 3, + "order": 585, + "special": 0, + "show": "" + }, + "2585": { + "id": 2585, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2566", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2566", + "pretask": 2584, + "followtask": 2586, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 586, + "special": 0, + "show": "" + }, + "2586": { + "id": 2586, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2567", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2567", + "pretask": 2585, + "followtask": 2587, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 587, + "special": 0, + "show": "" + }, + "2587": { + "id": 2587, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2568", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2568", + "pretask": 2586, + "followtask": 2588, + "cond": [], + "tiaozhuan": 8, + "order": 588, + "special": 0, + "show": "" + }, + "2588": { + "id": 2588, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 535, + "name": "intr_task_name_2569", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2569", + "pretask": 2587, + "followtask": 2589, + "cond": [], + "tiaozhuan": 3, + "order": 589, + "special": 0, + "show": "" + }, + "2589": { + "id": 2589, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2570", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2570", + "pretask": 2588, + "followtask": 2590, + "cond": [], + "tiaozhuan": 3, + "order": 590, + "special": 0, + "show": "" + }, + "2590": { + "id": 2590, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2571", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2571", + "pretask": 2589, + "followtask": 2591, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 591, + "special": 0, + "show": "" + }, + "2591": { + "id": 2591, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2572", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2572", + "pretask": 2590, + "followtask": 2592, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 592, + "special": 0, + "show": "" + }, + "2592": { + "id": 2592, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2573", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2573", + "pretask": 2591, + "followtask": 2593, + "cond": [], + "tiaozhuan": 8, + "order": 593, + "special": 0, + "show": "" + }, + "2593": { + "id": 2593, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 540, + "name": "intr_task_name_2574", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2574", + "pretask": 2592, + "followtask": 2594, + "cond": [], + "tiaozhuan": 3, + "order": 594, + "special": 0, + "show": "" + }, + "2594": { + "id": 2594, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2575", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2575", + "pretask": 2593, + "followtask": 2595, + "cond": [], + "tiaozhuan": 3, + "order": 595, + "special": 0, + "show": "" + }, + "2595": { + "id": 2595, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2576", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2576", + "pretask": 2594, + "followtask": 2596, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 596, + "special": 0, + "show": "" + }, + "2596": { + "id": 2596, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2577", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2577", + "pretask": 2595, + "followtask": 2597, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 597, + "special": 0, + "show": "" + }, + "2597": { + "id": 2597, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2578", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2578", + "pretask": 2596, + "followtask": 2598, + "cond": [], + "tiaozhuan": 8, + "order": 598, + "special": 0, + "show": "" + }, + "2598": { + "id": 2598, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 545, + "name": "intr_task_name_2579", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2579", + "pretask": 2597, + "followtask": 2599, + "cond": [], + "tiaozhuan": 3, + "order": 599, + "special": 0, + "show": "" + }, + "2599": { + "id": 2599, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2580", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2580", + "pretask": 2598, + "followtask": 2600, + "cond": [], + "tiaozhuan": 3, + "order": 600, + "special": 0, + "show": "" + }, + "2600": { + "id": 2600, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2581", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2581", + "pretask": 2599, + "followtask": 2601, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 601, + "special": 0, + "show": "" + }, + "2601": { + "id": 2601, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2582", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2582", + "pretask": 2600, + "followtask": 2602, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 602, + "special": 0, + "show": "" + }, + "2602": { + "id": 2602, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2583", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2583", + "pretask": 2601, + "followtask": 2603, + "cond": [], + "tiaozhuan": 8, + "order": 603, + "special": 0, + "show": "" + }, + "2603": { + "id": 2603, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 550, + "name": "intr_task_name_2584", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2584", + "pretask": 2602, + "followtask": 2604, + "cond": [], + "tiaozhuan": 3, + "order": 604, + "special": 0, + "show": "" + }, + "2604": { + "id": 2604, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2585", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2585", + "pretask": 2603, + "followtask": 2605, + "cond": [], + "tiaozhuan": 3, + "order": 605, + "special": 0, + "show": "" + }, + "2605": { + "id": 2605, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2586", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2586", + "pretask": 2604, + "followtask": 2606, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 606, + "special": 0, + "show": "" + }, + "2606": { + "id": 2606, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2587", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2587", + "pretask": 2605, + "followtask": 2607, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 607, + "special": 0, + "show": "" + }, + "2607": { + "id": 2607, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2588", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2588", + "pretask": 2606, + "followtask": 2608, + "cond": [], + "tiaozhuan": 8, + "order": 608, + "special": 0, + "show": "" + }, + "2608": { + "id": 2608, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 555, + "name": "intr_task_name_2589", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2589", + "pretask": 2607, + "followtask": 2609, + "cond": [], + "tiaozhuan": 3, + "order": 609, + "special": 0, + "show": "" + }, + "2609": { + "id": 2609, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2590", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2590", + "pretask": 2608, + "followtask": 2610, + "cond": [], + "tiaozhuan": 3, + "order": 610, + "special": 0, + "show": "" + }, + "2610": { + "id": 2610, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2591", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2591", + "pretask": 2609, + "followtask": 2611, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 611, + "special": 0, + "show": "" + }, + "2611": { + "id": 2611, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2592", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2592", + "pretask": 2610, + "followtask": 2612, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 612, + "special": 0, + "show": "" + }, + "2612": { + "id": 2612, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2593", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2593", + "pretask": 2611, + "followtask": 2613, + "cond": [], + "tiaozhuan": 8, + "order": 613, + "special": 0, + "show": "" + }, + "2613": { + "id": 2613, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 560, + "name": "intr_task_name_2594", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2594", + "pretask": 2612, + "followtask": 2614, + "cond": [], + "tiaozhuan": 3, + "order": 614, + "special": 0, + "show": "" + }, + "2614": { + "id": 2614, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2595", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2595", + "pretask": 2613, + "followtask": 2615, + "cond": [], + "tiaozhuan": 3, + "order": 615, + "special": 0, + "show": "" + }, + "2615": { + "id": 2615, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2596", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2596", + "pretask": 2614, + "followtask": 2616, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 616, + "special": 0, + "show": "" + }, + "2616": { + "id": 2616, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2597", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2597", + "pretask": 2615, + "followtask": 2617, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 617, + "special": 0, + "show": "" + }, + "2617": { + "id": 2617, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2598", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2598", + "pretask": 2616, + "followtask": 2618, + "cond": [], + "tiaozhuan": 8, + "order": 618, + "special": 0, + "show": "" + }, + "2618": { + "id": 2618, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 565, + "name": "intr_task_name_2599", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2599", + "pretask": 2617, + "followtask": 2619, + "cond": [], + "tiaozhuan": 3, + "order": 619, + "special": 0, + "show": "" + }, + "2619": { + "id": 2619, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2600", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2600", + "pretask": 2618, + "followtask": 2620, + "cond": [], + "tiaozhuan": 3, + "order": 620, + "special": 0, + "show": "" + }, + "2620": { + "id": 2620, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2601", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2601", + "pretask": 2619, + "followtask": 2621, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 621, + "special": 0, + "show": "" + }, + "2621": { + "id": 2621, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2602", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2602", + "pretask": 2620, + "followtask": 2622, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 622, + "special": 0, + "show": "" + }, + "2622": { + "id": 2622, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2603", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2603", + "pretask": 2621, + "followtask": 2623, + "cond": [], + "tiaozhuan": 8, + "order": 623, + "special": 0, + "show": "" + }, + "2623": { + "id": 2623, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 570, + "name": "intr_task_name_2604", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2604", + "pretask": 2622, + "followtask": 2624, + "cond": [], + "tiaozhuan": 3, + "order": 624, + "special": 0, + "show": "" + }, + "2624": { + "id": 2624, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2605", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2605", + "pretask": 2623, + "followtask": 2625, + "cond": [], + "tiaozhuan": 3, + "order": 625, + "special": 0, + "show": "" + }, + "2625": { + "id": 2625, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2606", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2606", + "pretask": 2624, + "followtask": 2626, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 626, + "special": 0, + "show": "" + }, + "2626": { + "id": 2626, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2607", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2607", + "pretask": 2625, + "followtask": 2627, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 627, + "special": 0, + "show": "" + }, + "2627": { + "id": 2627, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2608", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2608", + "pretask": 2626, + "followtask": 2628, + "cond": [], + "tiaozhuan": 8, + "order": 628, + "special": 0, + "show": "" + }, + "2628": { + "id": 2628, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 575, + "name": "intr_task_name_2609", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2609", + "pretask": 2627, + "followtask": 2629, + "cond": [], + "tiaozhuan": 3, + "order": 629, + "special": 0, + "show": "" + }, + "2629": { + "id": 2629, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2610", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2610", + "pretask": 2628, + "followtask": 2630, + "cond": [], + "tiaozhuan": 3, + "order": 630, + "special": 0, + "show": "" + }, + "2630": { + "id": 2630, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2611", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2611", + "pretask": 2629, + "followtask": 2631, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 631, + "special": 0, + "show": "" + }, + "2631": { + "id": 2631, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2612", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2612", + "pretask": 2630, + "followtask": 2632, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 632, + "special": 0, + "show": "" + }, + "2632": { + "id": 2632, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2613", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2613", + "pretask": 2631, + "followtask": 2633, + "cond": [], + "tiaozhuan": 8, + "order": 633, + "special": 0, + "show": "" + }, + "2633": { + "id": 2633, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 580, + "name": "intr_task_name_2614", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2614", + "pretask": 2632, + "followtask": 2634, + "cond": [], + "tiaozhuan": 3, + "order": 634, + "special": 0, + "show": "" + }, + "2634": { + "id": 2634, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2615", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2615", + "pretask": 2633, + "followtask": 2635, + "cond": [], + "tiaozhuan": 3, + "order": 635, + "special": 0, + "show": "" + }, + "2635": { + "id": 2635, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2616", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2616", + "pretask": 2634, + "followtask": 2636, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 636, + "special": 0, + "show": "" + }, + "2636": { + "id": 2636, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2617", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2617", + "pretask": 2635, + "followtask": 2637, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 637, + "special": 0, + "show": "" + }, + "2637": { + "id": 2637, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2618", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2618", + "pretask": 2636, + "followtask": 2638, + "cond": [], + "tiaozhuan": 8, + "order": 638, + "special": 0, + "show": "" + }, + "2638": { + "id": 2638, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 585, + "name": "intr_task_name_2619", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2619", + "pretask": 2637, + "followtask": 2639, + "cond": [], + "tiaozhuan": 3, + "order": 639, + "special": 0, + "show": "" + }, + "2639": { + "id": 2639, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2620", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2620", + "pretask": 2638, + "followtask": 2640, + "cond": [], + "tiaozhuan": 3, + "order": 640, + "special": 0, + "show": "" + }, + "2640": { + "id": 2640, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2621", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2621", + "pretask": 2639, + "followtask": 2641, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 641, + "special": 0, + "show": "" + }, + "2641": { + "id": 2641, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2622", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2622", + "pretask": 2640, + "followtask": 2642, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 642, + "special": 0, + "show": "" + }, + "2642": { + "id": 2642, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2623", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2623", + "pretask": 2641, + "followtask": 2643, + "cond": [], + "tiaozhuan": 8, + "order": 643, + "special": 0, + "show": "" + }, + "2643": { + "id": 2643, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 590, + "name": "intr_task_name_2624", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2624", + "pretask": 2642, + "followtask": 2644, + "cond": [], + "tiaozhuan": 3, + "order": 644, + "special": 0, + "show": "" + }, + "2644": { + "id": 2644, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2625", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2625", + "pretask": 2643, + "followtask": 2645, + "cond": [], + "tiaozhuan": 3, + "order": 645, + "special": 0, + "show": "" + }, + "2645": { + "id": 2645, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2626", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2626", + "pretask": 2644, + "followtask": 2646, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 646, + "special": 0, + "show": "" + }, + "2646": { + "id": 2646, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2627", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2627", + "pretask": 2645, + "followtask": 2647, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 647, + "special": 0, + "show": "" + }, + "2647": { + "id": 2647, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2628", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2628", + "pretask": 2646, + "followtask": 2648, + "cond": [], + "tiaozhuan": 8, + "order": 648, + "special": 0, + "show": "" + }, + "2648": { + "id": 2648, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 595, + "name": "intr_task_name_2629", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2629", + "pretask": 2647, + "followtask": 2649, + "cond": [], + "tiaozhuan": 3, + "order": 649, + "special": 0, + "show": "" + }, + "2649": { + "id": 2649, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2630", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2630", + "pretask": 2648, + "followtask": 2650, + "cond": [], + "tiaozhuan": 3, + "order": 650, + "special": 0, + "show": "" + }, + "2650": { + "id": 2650, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2631", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2631", + "pretask": 2649, + "followtask": 2651, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 651, + "special": 0, + "show": "" + }, + "2651": { + "id": 2651, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2632", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2632", + "pretask": 2650, + "followtask": 2652, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 652, + "special": 0, + "show": "" + }, + "2652": { + "id": 2652, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2633", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2633", + "pretask": 2651, + "followtask": 2653, + "cond": [], + "tiaozhuan": 8, + "order": 653, + "special": 0, + "show": "" + }, + "2653": { + "id": 2653, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 600, + "name": "intr_task_name_2634", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2634", + "pretask": 2652, + "followtask": 2654, + "cond": [], + "tiaozhuan": 3, + "order": 654, + "special": 0, + "show": "" + }, + "2654": { + "id": 2654, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2635", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2635", + "pretask": 2653, + "followtask": 2655, + "cond": [], + "tiaozhuan": 3, + "order": 655, + "special": 0, + "show": "" + }, + "2655": { + "id": 2655, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2636", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2636", + "pretask": 2654, + "followtask": 2656, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 656, + "special": 0, + "show": "" + }, + "2656": { + "id": 2656, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2637", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2637", + "pretask": 2655, + "followtask": 2657, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 657, + "special": 0, + "show": "" + }, + "2657": { + "id": 2657, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2638", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2638", + "pretask": 2656, + "followtask": 2658, + "cond": [], + "tiaozhuan": 8, + "order": 658, + "special": 0, + "show": "" + }, + "2658": { + "id": 2658, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 605, + "name": "intr_task_name_2639", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2639", + "pretask": 2657, + "followtask": 2659, + "cond": [], + "tiaozhuan": 3, + "order": 659, + "special": 0, + "show": "" + }, + "2659": { + "id": 2659, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2640", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2640", + "pretask": 2658, + "followtask": 2660, + "cond": [], + "tiaozhuan": 3, + "order": 660, + "special": 0, + "show": "" + }, + "2660": { + "id": 2660, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2641", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2641", + "pretask": 2659, + "followtask": 2661, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 661, + "special": 0, + "show": "" + }, + "2661": { + "id": 2661, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2642", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2642", + "pretask": 2660, + "followtask": 2662, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 662, + "special": 0, + "show": "" + }, + "2662": { + "id": 2662, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2643", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2643", + "pretask": 2661, + "followtask": 2663, + "cond": [], + "tiaozhuan": 8, + "order": 663, + "special": 0, + "show": "" + }, + "2663": { + "id": 2663, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 610, + "name": "intr_task_name_2644", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2644", + "pretask": 2662, + "followtask": 2664, + "cond": [], + "tiaozhuan": 3, + "order": 664, + "special": 0, + "show": "" + }, + "2664": { + "id": 2664, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2645", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2645", + "pretask": 2663, + "followtask": 2665, + "cond": [], + "tiaozhuan": 3, + "order": 665, + "special": 0, + "show": "" + }, + "2665": { + "id": 2665, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2646", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2646", + "pretask": 2664, + "followtask": 2666, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 666, + "special": 0, + "show": "" + }, + "2666": { + "id": 2666, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2647", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2647", + "pretask": 2665, + "followtask": 2667, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 667, + "special": 0, + "show": "" + }, + "2667": { + "id": 2667, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2648", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2648", + "pretask": 2666, + "followtask": 2668, + "cond": [], + "tiaozhuan": 8, + "order": 668, + "special": 0, + "show": "" + }, + "2668": { + "id": 2668, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 615, + "name": "intr_task_name_2649", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2649", + "pretask": 2667, + "followtask": 2669, + "cond": [], + "tiaozhuan": 3, + "order": 669, + "special": 0, + "show": "" + }, + "2669": { + "id": 2669, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2650", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2650", + "pretask": 2668, + "followtask": 2670, + "cond": [], + "tiaozhuan": 3, + "order": 670, + "special": 0, + "show": "" + }, + "2670": { + "id": 2670, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2651", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2651", + "pretask": 2669, + "followtask": 2671, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 671, + "special": 0, + "show": "" + }, + "2671": { + "id": 2671, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2652", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2652", + "pretask": 2670, + "followtask": 2672, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 672, + "special": 0, + "show": "" + }, + "2672": { + "id": 2672, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2653", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2653", + "pretask": 2671, + "followtask": 2673, + "cond": [], + "tiaozhuan": 8, + "order": 673, + "special": 0, + "show": "" + }, + "2673": { + "id": 2673, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 620, + "name": "intr_task_name_2654", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2654", + "pretask": 2672, + "followtask": 2674, + "cond": [], + "tiaozhuan": 3, + "order": 674, + "special": 0, + "show": "" + }, + "2674": { + "id": 2674, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2655", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2655", + "pretask": 2673, + "followtask": 2675, + "cond": [], + "tiaozhuan": 3, + "order": 675, + "special": 0, + "show": "" + }, + "2675": { + "id": 2675, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2656", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2656", + "pretask": 2674, + "followtask": 2676, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 676, + "special": 0, + "show": "" + }, + "2676": { + "id": 2676, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2657", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2657", + "pretask": 2675, + "followtask": 2677, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 677, + "special": 0, + "show": "" + }, + "2677": { + "id": 2677, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2658", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2658", + "pretask": 2676, + "followtask": 2678, + "cond": [], + "tiaozhuan": 8, + "order": 678, + "special": 0, + "show": "" + }, + "2678": { + "id": 2678, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 625, + "name": "intr_task_name_2659", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2659", + "pretask": 2677, + "followtask": 2679, + "cond": [], + "tiaozhuan": 3, + "order": 679, + "special": 0, + "show": "" + }, + "2679": { + "id": 2679, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2660", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2660", + "pretask": 2678, + "followtask": 2680, + "cond": [], + "tiaozhuan": 3, + "order": 680, + "special": 0, + "show": "" + }, + "2680": { + "id": 2680, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2661", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2661", + "pretask": 2679, + "followtask": 2681, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 681, + "special": 0, + "show": "" + }, + "2681": { + "id": 2681, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2662", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2662", + "pretask": 2680, + "followtask": 2682, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 682, + "special": 0, + "show": "" + }, + "2682": { + "id": 2682, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2663", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2663", + "pretask": 2681, + "followtask": 2683, + "cond": [], + "tiaozhuan": 8, + "order": 683, + "special": 0, + "show": "" + }, + "2683": { + "id": 2683, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 630, + "name": "intr_task_name_2664", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2664", + "pretask": 2682, + "followtask": 2684, + "cond": [], + "tiaozhuan": 3, + "order": 684, + "special": 0, + "show": "" + }, + "2684": { + "id": 2684, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2665", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2665", + "pretask": 2683, + "followtask": 2685, + "cond": [], + "tiaozhuan": 3, + "order": 685, + "special": 0, + "show": "" + }, + "2685": { + "id": 2685, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2666", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2666", + "pretask": 2684, + "followtask": 2686, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 686, + "special": 0, + "show": "" + }, + "2686": { + "id": 2686, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2667", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2667", + "pretask": 2685, + "followtask": 2687, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 687, + "special": 0, + "show": "" + }, + "2687": { + "id": 2687, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2668", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2668", + "pretask": 2686, + "followtask": 2688, + "cond": [], + "tiaozhuan": 8, + "order": 688, + "special": 0, + "show": "" + }, + "2688": { + "id": 2688, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 635, + "name": "intr_task_name_2669", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2669", + "pretask": 2687, + "followtask": 2689, + "cond": [], + "tiaozhuan": 3, + "order": 689, + "special": 0, + "show": "" + }, + "2689": { + "id": 2689, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2670", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2670", + "pretask": 2688, + "followtask": 2690, + "cond": [], + "tiaozhuan": 3, + "order": 690, + "special": 0, + "show": "" + }, + "2690": { + "id": 2690, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2671", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2671", + "pretask": 2689, + "followtask": 2691, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 691, + "special": 0, + "show": "" + }, + "2691": { + "id": 2691, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2672", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2672", + "pretask": 2690, + "followtask": 2692, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 692, + "special": 0, + "show": "" + }, + "2692": { + "id": 2692, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2673", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2673", + "pretask": 2691, + "followtask": 2693, + "cond": [], + "tiaozhuan": 8, + "order": 693, + "special": 0, + "show": "" + }, + "2693": { + "id": 2693, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 640, + "name": "intr_task_name_2674", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2674", + "pretask": 2692, + "followtask": 2694, + "cond": [], + "tiaozhuan": 3, + "order": 694, + "special": 0, + "show": "" + }, + "2694": { + "id": 2694, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2675", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2675", + "pretask": 2693, + "followtask": 2695, + "cond": [], + "tiaozhuan": 3, + "order": 695, + "special": 0, + "show": "" + }, + "2695": { + "id": 2695, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2676", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2676", + "pretask": 2694, + "followtask": 2696, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 696, + "special": 0, + "show": "" + }, + "2696": { + "id": 2696, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2677", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2677", + "pretask": 2695, + "followtask": 2697, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 697, + "special": 0, + "show": "" + }, + "2697": { + "id": 2697, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2678", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2678", + "pretask": 2696, + "followtask": 2698, + "cond": [], + "tiaozhuan": 8, + "order": 698, + "special": 0, + "show": "" + }, + "2698": { + "id": 2698, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 645, + "name": "intr_task_name_2679", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2679", + "pretask": 2697, + "followtask": 2699, + "cond": [], + "tiaozhuan": 3, + "order": 699, + "special": 0, + "show": "" + }, + "2699": { + "id": 2699, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2680", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2680", + "pretask": 2698, + "followtask": 2700, + "cond": [], + "tiaozhuan": 3, + "order": 700, + "special": 0, + "show": "" + }, + "2700": { + "id": 2700, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2681", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2681", + "pretask": 2699, + "followtask": 2701, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 701, + "special": 0, + "show": "" + }, + "2701": { + "id": 2701, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2682", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2682", + "pretask": 2700, + "followtask": 2702, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 702, + "special": 0, + "show": "" + }, + "2702": { + "id": 2702, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2683", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2683", + "pretask": 2701, + "followtask": 2703, + "cond": [], + "tiaozhuan": 8, + "order": 703, + "special": 0, + "show": "" + }, + "2703": { + "id": 2703, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 650, + "name": "intr_task_name_2684", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2684", + "pretask": 2702, + "followtask": 2704, + "cond": [], + "tiaozhuan": 3, + "order": 704, + "special": 0, + "show": "" + }, + "2704": { + "id": 2704, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2685", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2685", + "pretask": 2703, + "followtask": 2705, + "cond": [], + "tiaozhuan": 3, + "order": 705, + "special": 0, + "show": "" + }, + "2705": { + "id": 2705, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2686", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2686", + "pretask": 2704, + "followtask": 2706, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 706, + "special": 0, + "show": "" + }, + "2706": { + "id": 2706, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2687", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2687", + "pretask": 2705, + "followtask": 2707, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 707, + "special": 0, + "show": "" + }, + "2707": { + "id": 2707, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2688", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2688", + "pretask": 2706, + "followtask": 2708, + "cond": [], + "tiaozhuan": 8, + "order": 708, + "special": 0, + "show": "" + }, + "2708": { + "id": 2708, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 655, + "name": "intr_task_name_2689", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2689", + "pretask": 2707, + "followtask": 2709, + "cond": [], + "tiaozhuan": 3, + "order": 709, + "special": 0, + "show": "" + }, + "2709": { + "id": 2709, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2690", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2690", + "pretask": 2708, + "followtask": 2710, + "cond": [], + "tiaozhuan": 3, + "order": 710, + "special": 0, + "show": "" + }, + "2710": { + "id": 2710, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2691", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2691", + "pretask": 2709, + "followtask": 2711, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 711, + "special": 0, + "show": "" + }, + "2711": { + "id": 2711, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2692", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2692", + "pretask": 2710, + "followtask": 2712, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 712, + "special": 0, + "show": "" + }, + "2712": { + "id": 2712, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2693", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2693", + "pretask": 2711, + "followtask": 2713, + "cond": [], + "tiaozhuan": 8, + "order": 713, + "special": 0, + "show": "" + }, + "2713": { + "id": 2713, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 660, + "name": "intr_task_name_2694", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2694", + "pretask": 2712, + "followtask": 2714, + "cond": [], + "tiaozhuan": 3, + "order": 714, + "special": 0, + "show": "" + }, + "2714": { + "id": 2714, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2695", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2695", + "pretask": 2713, + "followtask": 2715, + "cond": [], + "tiaozhuan": 3, + "order": 715, + "special": 0, + "show": "" + }, + "2715": { + "id": 2715, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2696", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2696", + "pretask": 2714, + "followtask": 2716, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 716, + "special": 0, + "show": "" + }, + "2716": { + "id": 2716, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2697", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2697", + "pretask": 2715, + "followtask": 2717, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 717, + "special": 0, + "show": "" + }, + "2717": { + "id": 2717, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2698", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2698", + "pretask": 2716, + "followtask": 2718, + "cond": [], + "tiaozhuan": 8, + "order": 718, + "special": 0, + "show": "" + }, + "2718": { + "id": 2718, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 665, + "name": "intr_task_name_2699", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2699", + "pretask": 2717, + "followtask": 2719, + "cond": [], + "tiaozhuan": 3, + "order": 719, + "special": 0, + "show": "" + }, + "2719": { + "id": 2719, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2700", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2700", + "pretask": 2718, + "followtask": 2720, + "cond": [], + "tiaozhuan": 3, + "order": 720, + "special": 0, + "show": "" + }, + "2720": { + "id": 2720, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2701", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2701", + "pretask": 2719, + "followtask": 2721, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 721, + "special": 0, + "show": "" + }, + "2721": { + "id": 2721, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2702", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2702", + "pretask": 2720, + "followtask": 2722, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 722, + "special": 0, + "show": "" + }, + "2722": { + "id": 2722, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2703", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2703", + "pretask": 2721, + "followtask": 2723, + "cond": [], + "tiaozhuan": 8, + "order": 723, + "special": 0, + "show": "" + }, + "2723": { + "id": 2723, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 670, + "name": "intr_task_name_2704", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2704", + "pretask": 2722, + "followtask": 2724, + "cond": [], + "tiaozhuan": 3, + "order": 724, + "special": 0, + "show": "" + }, + "2724": { + "id": 2724, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2705", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2705", + "pretask": 2723, + "followtask": 2725, + "cond": [], + "tiaozhuan": 3, + "order": 725, + "special": 0, + "show": "" + }, + "2725": { + "id": 2725, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2706", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2706", + "pretask": 2724, + "followtask": 2726, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 726, + "special": 0, + "show": "" + }, + "2726": { + "id": 2726, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2707", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2707", + "pretask": 2725, + "followtask": 2727, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 727, + "special": 0, + "show": "" + }, + "2727": { + "id": 2727, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2708", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2708", + "pretask": 2726, + "followtask": 2728, + "cond": [], + "tiaozhuan": 8, + "order": 728, + "special": 0, + "show": "" + }, + "2728": { + "id": 2728, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 675, + "name": "intr_task_name_2709", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2709", + "pretask": 2727, + "followtask": 2729, + "cond": [], + "tiaozhuan": 3, + "order": 729, + "special": 0, + "show": "" + }, + "2729": { + "id": 2729, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2710", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2710", + "pretask": 2728, + "followtask": 2730, + "cond": [], + "tiaozhuan": 3, + "order": 730, + "special": 0, + "show": "" + }, + "2730": { + "id": 2730, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2711", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2711", + "pretask": 2729, + "followtask": 2731, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 731, + "special": 0, + "show": "" + }, + "2731": { + "id": 2731, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2712", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2712", + "pretask": 2730, + "followtask": 2732, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 732, + "special": 0, + "show": "" + }, + "2732": { + "id": 2732, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2713", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2713", + "pretask": 2731, + "followtask": 2733, + "cond": [], + "tiaozhuan": 8, + "order": 733, + "special": 0, + "show": "" + }, + "2733": { + "id": 2733, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 680, + "name": "intr_task_name_2714", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2714", + "pretask": 2732, + "followtask": 2734, + "cond": [], + "tiaozhuan": 3, + "order": 734, + "special": 0, + "show": "" + }, + "2734": { + "id": 2734, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2715", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2715", + "pretask": 2733, + "followtask": 2735, + "cond": [], + "tiaozhuan": 3, + "order": 735, + "special": 0, + "show": "" + }, + "2735": { + "id": 2735, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2716", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2716", + "pretask": 2734, + "followtask": 2736, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 736, + "special": 0, + "show": "" + }, + "2736": { + "id": 2736, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2717", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2717", + "pretask": 2735, + "followtask": 2737, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 737, + "special": 0, + "show": "" + }, + "2737": { + "id": 2737, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2718", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2718", + "pretask": 2736, + "followtask": 2738, + "cond": [], + "tiaozhuan": 8, + "order": 738, + "special": 0, + "show": "" + }, + "2738": { + "id": 2738, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 685, + "name": "intr_task_name_2719", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2719", + "pretask": 2737, + "followtask": 2739, + "cond": [], + "tiaozhuan": 3, + "order": 739, + "special": 0, + "show": "" + }, + "2739": { + "id": 2739, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2720", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2720", + "pretask": 2738, + "followtask": 2740, + "cond": [], + "tiaozhuan": 3, + "order": 740, + "special": 0, + "show": "" + }, + "2740": { + "id": 2740, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2721", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2721", + "pretask": 2739, + "followtask": 2741, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 741, + "special": 0, + "show": "" + }, + "2741": { + "id": 2741, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2722", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2722", + "pretask": 2740, + "followtask": 2742, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 742, + "special": 0, + "show": "" + }, + "2742": { + "id": 2742, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2723", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2723", + "pretask": 2741, + "followtask": 2743, + "cond": [], + "tiaozhuan": 8, + "order": 743, + "special": 0, + "show": "" + }, + "2743": { + "id": 2743, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 690, + "name": "intr_task_name_2724", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2724", + "pretask": 2742, + "followtask": 2744, + "cond": [], + "tiaozhuan": 3, + "order": 744, + "special": 0, + "show": "" + }, + "2744": { + "id": 2744, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2725", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2725", + "pretask": 2743, + "followtask": 2745, + "cond": [], + "tiaozhuan": 3, + "order": 745, + "special": 0, + "show": "" + }, + "2745": { + "id": 2745, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2726", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2726", + "pretask": 2744, + "followtask": 2746, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 746, + "special": 0, + "show": "" + }, + "2746": { + "id": 2746, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2727", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2727", + "pretask": 2745, + "followtask": 2747, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 747, + "special": 0, + "show": "" + }, + "2747": { + "id": 2747, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2728", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2728", + "pretask": 2746, + "followtask": 2748, + "cond": [], + "tiaozhuan": 8, + "order": 748, + "special": 0, + "show": "" + }, + "2748": { + "id": 2748, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 695, + "name": "intr_task_name_2729", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2729", + "pretask": 2747, + "followtask": 2749, + "cond": [], + "tiaozhuan": 3, + "order": 749, + "special": 0, + "show": "" + }, + "2749": { + "id": 2749, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2730", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2730", + "pretask": 2748, + "followtask": 2750, + "cond": [], + "tiaozhuan": 3, + "order": 750, + "special": 0, + "show": "" + }, + "2750": { + "id": 2750, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2731", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2731", + "pretask": 2749, + "followtask": 2751, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 751, + "special": 0, + "show": "" + }, + "2751": { + "id": 2751, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2732", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2732", + "pretask": 2750, + "followtask": 2752, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 752, + "special": 0, + "show": "" + }, + "2752": { + "id": 2752, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2733", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2733", + "pretask": 2751, + "followtask": 2753, + "cond": [], + "tiaozhuan": 8, + "order": 753, + "special": 0, + "show": "" + }, + "2753": { + "id": 2753, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 700, + "name": "intr_task_name_2734", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2734", + "pretask": 2752, + "followtask": 2754, + "cond": [], + "tiaozhuan": 3, + "order": 754, + "special": 0, + "show": "" + }, + "2754": { + "id": 2754, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2735", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2735", + "pretask": 2753, + "followtask": 2755, + "cond": [], + "tiaozhuan": 3, + "order": 755, + "special": 0, + "show": "" + }, + "2755": { + "id": 2755, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2736", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2736", + "pretask": 2754, + "followtask": 2756, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 756, + "special": 0, + "show": "" + }, + "2756": { + "id": 2756, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2737", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2737", + "pretask": 2755, + "followtask": 2757, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 757, + "special": 0, + "show": "" + }, + "2757": { + "id": 2757, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2738", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2738", + "pretask": 2756, + "followtask": 2758, + "cond": [], + "tiaozhuan": 8, + "order": 758, + "special": 0, + "show": "" + }, + "2758": { + "id": 2758, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 705, + "name": "intr_task_name_2739", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2739", + "pretask": 2757, + "followtask": 2759, + "cond": [], + "tiaozhuan": 3, + "order": 759, + "special": 0, + "show": "" + }, + "2759": { + "id": 2759, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2740", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2740", + "pretask": 2758, + "followtask": 2760, + "cond": [], + "tiaozhuan": 3, + "order": 760, + "special": 0, + "show": "" + }, + "2760": { + "id": 2760, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2741", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2741", + "pretask": 2759, + "followtask": 2761, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 761, + "special": 0, + "show": "" + }, + "2761": { + "id": 2761, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2742", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2742", + "pretask": 2760, + "followtask": 2762, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 762, + "special": 0, + "show": "" + }, + "2762": { + "id": 2762, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2743", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2743", + "pretask": 2761, + "followtask": 2763, + "cond": [], + "tiaozhuan": 8, + "order": 763, + "special": 0, + "show": "" + }, + "2763": { + "id": 2763, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 710, + "name": "intr_task_name_2744", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2744", + "pretask": 2762, + "followtask": 2764, + "cond": [], + "tiaozhuan": 3, + "order": 764, + "special": 0, + "show": "" + }, + "2764": { + "id": 2764, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2745", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2745", + "pretask": 2763, + "followtask": 2765, + "cond": [], + "tiaozhuan": 3, + "order": 765, + "special": 0, + "show": "" + }, + "2765": { + "id": 2765, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2746", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2746", + "pretask": 2764, + "followtask": 2766, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 766, + "special": 0, + "show": "" + }, + "2766": { + "id": 2766, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2747", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2747", + "pretask": 2765, + "followtask": 2767, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 767, + "special": 0, + "show": "" + }, + "2767": { + "id": 2767, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2748", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2748", + "pretask": 2766, + "followtask": 2768, + "cond": [], + "tiaozhuan": 8, + "order": 768, + "special": 0, + "show": "" + }, + "2768": { + "id": 2768, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 715, + "name": "intr_task_name_2749", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2749", + "pretask": 2767, + "followtask": 2769, + "cond": [], + "tiaozhuan": 3, + "order": 769, + "special": 0, + "show": "" + }, + "2769": { + "id": 2769, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2750", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2750", + "pretask": 2768, + "followtask": 2770, + "cond": [], + "tiaozhuan": 3, + "order": 770, + "special": 0, + "show": "" + }, + "2770": { + "id": 2770, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2751", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2751", + "pretask": 2769, + "followtask": 2771, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 771, + "special": 0, + "show": "" + }, + "2771": { + "id": 2771, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2752", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2752", + "pretask": 2770, + "followtask": 2772, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 772, + "special": 0, + "show": "" + }, + "2772": { + "id": 2772, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2753", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2753", + "pretask": 2771, + "followtask": 2773, + "cond": [], + "tiaozhuan": 8, + "order": 773, + "special": 0, + "show": "" + }, + "2773": { + "id": 2773, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 720, + "name": "intr_task_name_2754", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2754", + "pretask": 2772, + "followtask": 2774, + "cond": [], + "tiaozhuan": 3, + "order": 774, + "special": 0, + "show": "" + }, + "2774": { + "id": 2774, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2755", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2755", + "pretask": 2773, + "followtask": 2775, + "cond": [], + "tiaozhuan": 3, + "order": 775, + "special": 0, + "show": "" + }, + "2775": { + "id": 2775, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2756", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2756", + "pretask": 2774, + "followtask": 2776, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 776, + "special": 0, + "show": "" + }, + "2776": { + "id": 2776, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2757", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2757", + "pretask": 2775, + "followtask": 2777, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 777, + "special": 0, + "show": "" + }, + "2777": { + "id": 2777, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2758", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2758", + "pretask": 2776, + "followtask": 2778, + "cond": [], + "tiaozhuan": 8, + "order": 778, + "special": 0, + "show": "" + }, + "2778": { + "id": 2778, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 725, + "name": "intr_task_name_2759", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2759", + "pretask": 2777, + "followtask": 2779, + "cond": [], + "tiaozhuan": 3, + "order": 779, + "special": 0, + "show": "" + }, + "2779": { + "id": 2779, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2760", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2760", + "pretask": 2778, + "followtask": 2780, + "cond": [], + "tiaozhuan": 3, + "order": 780, + "special": 0, + "show": "" + }, + "2780": { + "id": 2780, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2761", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2761", + "pretask": 2779, + "followtask": 2781, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 781, + "special": 0, + "show": "" + }, + "2781": { + "id": 2781, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2762", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2762", + "pretask": 2780, + "followtask": 2782, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 782, + "special": 0, + "show": "" + }, + "2782": { + "id": 2782, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2763", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2763", + "pretask": 2781, + "followtask": 2783, + "cond": [], + "tiaozhuan": 8, + "order": 783, + "special": 0, + "show": "" + }, + "2783": { + "id": 2783, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 730, + "name": "intr_task_name_2764", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2764", + "pretask": 2782, + "followtask": 2784, + "cond": [], + "tiaozhuan": 3, + "order": 784, + "special": 0, + "show": "" + }, + "2784": { + "id": 2784, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2765", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2765", + "pretask": 2783, + "followtask": 2785, + "cond": [], + "tiaozhuan": 3, + "order": 785, + "special": 0, + "show": "" + }, + "2785": { + "id": 2785, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2766", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2766", + "pretask": 2784, + "followtask": 2786, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 786, + "special": 0, + "show": "" + }, + "2786": { + "id": 2786, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2767", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2767", + "pretask": 2785, + "followtask": 2787, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 787, + "special": 0, + "show": "" + }, + "2787": { + "id": 2787, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2768", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2768", + "pretask": 2786, + "followtask": 2788, + "cond": [], + "tiaozhuan": 8, + "order": 788, + "special": 0, + "show": "" + }, + "2788": { + "id": 2788, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 735, + "name": "intr_task_name_2769", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2769", + "pretask": 2787, + "followtask": 2789, + "cond": [], + "tiaozhuan": 3, + "order": 789, + "special": 0, + "show": "" + }, + "2789": { + "id": 2789, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2770", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2770", + "pretask": 2788, + "followtask": 2790, + "cond": [], + "tiaozhuan": 3, + "order": 790, + "special": 0, + "show": "" + }, + "2790": { + "id": 2790, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2771", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2771", + "pretask": 2789, + "followtask": 2791, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 791, + "special": 0, + "show": "" + }, + "2791": { + "id": 2791, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2772", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2772", + "pretask": 2790, + "followtask": 2792, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 792, + "special": 0, + "show": "" + }, + "2792": { + "id": 2792, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2773", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2773", + "pretask": 2791, + "followtask": 2793, + "cond": [], + "tiaozhuan": 8, + "order": 793, + "special": 0, + "show": "" + }, + "2793": { + "id": 2793, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 740, + "name": "intr_task_name_2774", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2774", + "pretask": 2792, + "followtask": 2794, + "cond": [], + "tiaozhuan": 3, + "order": 794, + "special": 0, + "show": "" + }, + "2794": { + "id": 2794, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2775", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2775", + "pretask": 2793, + "followtask": 2795, + "cond": [], + "tiaozhuan": 3, + "order": 795, + "special": 0, + "show": "" + }, + "2795": { + "id": 2795, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2776", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2776", + "pretask": 2794, + "followtask": 2796, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 796, + "special": 0, + "show": "" + }, + "2796": { + "id": 2796, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2777", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2777", + "pretask": 2795, + "followtask": 2797, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 797, + "special": 0, + "show": "" + }, + "2797": { + "id": 2797, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2778", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2778", + "pretask": 2796, + "followtask": 2798, + "cond": [], + "tiaozhuan": 8, + "order": 798, + "special": 0, + "show": "" + }, + "2798": { + "id": 2798, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 745, + "name": "intr_task_name_2779", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2779", + "pretask": 2797, + "followtask": 2799, + "cond": [], + "tiaozhuan": 3, + "order": 799, + "special": 0, + "show": "" + }, + "2799": { + "id": 2799, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2780", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2780", + "pretask": 2798, + "followtask": 2800, + "cond": [], + "tiaozhuan": 3, + "order": 800, + "special": 0, + "show": "" + }, + "2800": { + "id": 2800, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2781", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2781", + "pretask": 2799, + "followtask": 2801, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 801, + "special": 0, + "show": "" + }, + "2801": { + "id": 2801, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2782", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2782", + "pretask": 2800, + "followtask": 2802, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 802, + "special": 0, + "show": "" + }, + "2802": { + "id": 2802, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2783", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2783", + "pretask": 2801, + "followtask": 2803, + "cond": [], + "tiaozhuan": 8, + "order": 803, + "special": 0, + "show": "" + }, + "2803": { + "id": 2803, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 750, + "name": "intr_task_name_2784", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2784", + "pretask": 2802, + "followtask": 2804, + "cond": [], + "tiaozhuan": 3, + "order": 804, + "special": 0, + "show": "" + }, + "2804": { + "id": 2804, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2785", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2785", + "pretask": 2803, + "followtask": 2805, + "cond": [], + "tiaozhuan": 3, + "order": 805, + "special": 0, + "show": "" + }, + "2805": { + "id": 2805, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2786", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2786", + "pretask": 2804, + "followtask": 2806, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 806, + "special": 0, + "show": "" + }, + "2806": { + "id": 2806, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2787", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2787", + "pretask": 2805, + "followtask": 2807, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 807, + "special": 0, + "show": "" + }, + "2807": { + "id": 2807, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2788", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2788", + "pretask": 2806, + "followtask": 2808, + "cond": [], + "tiaozhuan": 8, + "order": 808, + "special": 0, + "show": "" + }, + "2808": { + "id": 2808, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 755, + "name": "intr_task_name_2789", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2789", + "pretask": 2807, + "followtask": 2809, + "cond": [], + "tiaozhuan": 3, + "order": 809, + "special": 0, + "show": "" + }, + "2809": { + "id": 2809, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2790", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2790", + "pretask": 2808, + "followtask": 2810, + "cond": [], + "tiaozhuan": 3, + "order": 810, + "special": 0, + "show": "" + }, + "2810": { + "id": 2810, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2791", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2791", + "pretask": 2809, + "followtask": 2811, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 811, + "special": 0, + "show": "" + }, + "2811": { + "id": 2811, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2792", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2792", + "pretask": 2810, + "followtask": 2812, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 812, + "special": 0, + "show": "" + }, + "2812": { + "id": 2812, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2793", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2793", + "pretask": 2811, + "followtask": 2813, + "cond": [], + "tiaozhuan": 8, + "order": 813, + "special": 0, + "show": "" + }, + "2813": { + "id": 2813, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 760, + "name": "intr_task_name_2794", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2794", + "pretask": 2812, + "followtask": 2814, + "cond": [], + "tiaozhuan": 3, + "order": 814, + "special": 0, + "show": "" + }, + "2814": { + "id": 2814, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2795", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2795", + "pretask": 2813, + "followtask": 2815, + "cond": [], + "tiaozhuan": 3, + "order": 815, + "special": 0, + "show": "" + }, + "2815": { + "id": 2815, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2796", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2796", + "pretask": 2814, + "followtask": 2816, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 816, + "special": 0, + "show": "" + }, + "2816": { + "id": 2816, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2797", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2797", + "pretask": 2815, + "followtask": 2817, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 817, + "special": 0, + "show": "" + }, + "2817": { + "id": 2817, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2798", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2798", + "pretask": 2816, + "followtask": 2818, + "cond": [], + "tiaozhuan": 8, + "order": 818, + "special": 0, + "show": "" + }, + "2818": { + "id": 2818, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 765, + "name": "intr_task_name_2799", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2799", + "pretask": 2817, + "followtask": 2819, + "cond": [], + "tiaozhuan": 3, + "order": 819, + "special": 0, + "show": "" + }, + "2819": { + "id": 2819, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2800", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2800", + "pretask": 2818, + "followtask": 2820, + "cond": [], + "tiaozhuan": 3, + "order": 820, + "special": 0, + "show": "" + }, + "2820": { + "id": 2820, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2801", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2801", + "pretask": 2819, + "followtask": 2821, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 821, + "special": 0, + "show": "" + }, + "2821": { + "id": 2821, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2802", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2802", + "pretask": 2820, + "followtask": 2822, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 822, + "special": 0, + "show": "" + }, + "2822": { + "id": 2822, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2803", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2803", + "pretask": 2821, + "followtask": 2823, + "cond": [], + "tiaozhuan": 8, + "order": 823, + "special": 0, + "show": "" + }, + "2823": { + "id": 2823, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 770, + "name": "intr_task_name_2804", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2804", + "pretask": 2822, + "followtask": 2824, + "cond": [], + "tiaozhuan": 3, + "order": 824, + "special": 0, + "show": "" + }, + "2824": { + "id": 2824, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2805", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2805", + "pretask": 2823, + "followtask": 2825, + "cond": [], + "tiaozhuan": 3, + "order": 825, + "special": 0, + "show": "" + }, + "2825": { + "id": 2825, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2806", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2806", + "pretask": 2824, + "followtask": 2826, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 826, + "special": 0, + "show": "" + }, + "2826": { + "id": 2826, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2807", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2807", + "pretask": 2825, + "followtask": 2827, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 827, + "special": 0, + "show": "" + }, + "2827": { + "id": 2827, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2808", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2808", + "pretask": 2826, + "followtask": 2828, + "cond": [], + "tiaozhuan": 8, + "order": 828, + "special": 0, + "show": "" + }, + "2828": { + "id": 2828, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 775, + "name": "intr_task_name_2809", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2809", + "pretask": 2827, + "followtask": 2829, + "cond": [], + "tiaozhuan": 3, + "order": 829, + "special": 0, + "show": "" + }, + "2829": { + "id": 2829, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2810", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2810", + "pretask": 2828, + "followtask": 2830, + "cond": [], + "tiaozhuan": 3, + "order": 830, + "special": 0, + "show": "" + }, + "2830": { + "id": 2830, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2811", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2811", + "pretask": 2829, + "followtask": 2831, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 831, + "special": 0, + "show": "" + }, + "2831": { + "id": 2831, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2812", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2812", + "pretask": 2830, + "followtask": 2832, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 832, + "special": 0, + "show": "" + }, + "2832": { + "id": 2832, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2813", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2813", + "pretask": 2831, + "followtask": 2833, + "cond": [], + "tiaozhuan": 8, + "order": 833, + "special": 0, + "show": "" + }, + "2833": { + "id": 2833, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 780, + "name": "intr_task_name_2814", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2814", + "pretask": 2832, + "followtask": 2834, + "cond": [], + "tiaozhuan": 3, + "order": 834, + "special": 0, + "show": "" + }, + "2834": { + "id": 2834, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2815", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2815", + "pretask": 2833, + "followtask": 2835, + "cond": [], + "tiaozhuan": 3, + "order": 835, + "special": 0, + "show": "" + }, + "2835": { + "id": 2835, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2816", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2816", + "pretask": 2834, + "followtask": 2836, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 836, + "special": 0, + "show": "" + }, + "2836": { + "id": 2836, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2817", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2817", + "pretask": 2835, + "followtask": 2837, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 837, + "special": 0, + "show": "" + }, + "2837": { + "id": 2837, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2818", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2818", + "pretask": 2836, + "followtask": 2838, + "cond": [], + "tiaozhuan": 8, + "order": 838, + "special": 0, + "show": "" + }, + "2838": { + "id": 2838, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 785, + "name": "intr_task_name_2819", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2819", + "pretask": 2837, + "followtask": 2839, + "cond": [], + "tiaozhuan": 3, + "order": 839, + "special": 0, + "show": "" + }, + "2839": { + "id": 2839, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2820", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2820", + "pretask": 2838, + "followtask": 2840, + "cond": [], + "tiaozhuan": 3, + "order": 840, + "special": 0, + "show": "" + }, + "2840": { + "id": 2840, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2821", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2821", + "pretask": 2839, + "followtask": 2841, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 841, + "special": 0, + "show": "" + }, + "2841": { + "id": 2841, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2822", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2822", + "pretask": 2840, + "followtask": 2842, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 842, + "special": 0, + "show": "" + }, + "2842": { + "id": 2842, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2823", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2823", + "pretask": 2841, + "followtask": 2843, + "cond": [], + "tiaozhuan": 8, + "order": 843, + "special": 0, + "show": "" + }, + "2843": { + "id": 2843, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 790, + "name": "intr_task_name_2824", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2824", + "pretask": 2842, + "followtask": 2844, + "cond": [], + "tiaozhuan": 3, + "order": 844, + "special": 0, + "show": "" + }, + "2844": { + "id": 2844, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2825", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2825", + "pretask": 2843, + "followtask": 2845, + "cond": [], + "tiaozhuan": 3, + "order": 845, + "special": 0, + "show": "" + }, + "2845": { + "id": 2845, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2826", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2826", + "pretask": 2844, + "followtask": 2846, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 846, + "special": 0, + "show": "" + }, + "2846": { + "id": 2846, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2827", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2827", + "pretask": 2845, + "followtask": 2847, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 847, + "special": 0, + "show": "" + }, + "2847": { + "id": 2847, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2828", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2828", + "pretask": 2846, + "followtask": 2848, + "cond": [], + "tiaozhuan": 8, + "order": 848, + "special": 0, + "show": "" + }, + "2848": { + "id": 2848, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 795, + "name": "intr_task_name_2829", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2829", + "pretask": 2847, + "followtask": 2849, + "cond": [], + "tiaozhuan": 3, + "order": 849, + "special": 0, + "show": "" + }, + "2849": { + "id": 2849, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2830", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2830", + "pretask": 2848, + "followtask": 2850, + "cond": [], + "tiaozhuan": 3, + "order": 850, + "special": 0, + "show": "" + }, + "2850": { + "id": 2850, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2831", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2831", + "pretask": 2849, + "followtask": 2851, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 851, + "special": 0, + "show": "" + }, + "2851": { + "id": 2851, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2832", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2832", + "pretask": 2850, + "followtask": 2852, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 852, + "special": 0, + "show": "" + }, + "2852": { + "id": 2852, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2833", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2833", + "pretask": 2851, + "followtask": 2853, + "cond": [], + "tiaozhuan": 8, + "order": 853, + "special": 0, + "show": "" + }, + "2853": { + "id": 2853, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 800, + "name": "intr_task_name_2834", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2834", + "pretask": 2852, + "followtask": 2854, + "cond": [], + "tiaozhuan": 3, + "order": 854, + "special": 0, + "show": "" + }, + "2854": { + "id": 2854, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2835", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2835", + "pretask": 2853, + "followtask": 2855, + "cond": [], + "tiaozhuan": 3, + "order": 855, + "special": 0, + "show": "" + }, + "2855": { + "id": 2855, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2836", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2836", + "pretask": 2854, + "followtask": 2856, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 856, + "special": 0, + "show": "" + }, + "2856": { + "id": 2856, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2837", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2837", + "pretask": 2855, + "followtask": 2857, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 857, + "special": 0, + "show": "" + }, + "2857": { + "id": 2857, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2838", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2838", + "pretask": 2856, + "followtask": 2858, + "cond": [], + "tiaozhuan": 8, + "order": 858, + "special": 0, + "show": "" + }, + "2858": { + "id": 2858, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 805, + "name": "intr_task_name_2839", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2839", + "pretask": 2857, + "followtask": 2859, + "cond": [], + "tiaozhuan": 3, + "order": 859, + "special": 0, + "show": "" + }, + "2859": { + "id": 2859, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2840", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2840", + "pretask": 2858, + "followtask": 2860, + "cond": [], + "tiaozhuan": 3, + "order": 860, + "special": 0, + "show": "" + }, + "2860": { + "id": 2860, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2841", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2841", + "pretask": 2859, + "followtask": 2861, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 861, + "special": 0, + "show": "" + }, + "2861": { + "id": 2861, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2842", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2842", + "pretask": 2860, + "followtask": 2862, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 862, + "special": 0, + "show": "" + }, + "2862": { + "id": 2862, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2843", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2843", + "pretask": 2861, + "followtask": 2863, + "cond": [], + "tiaozhuan": 8, + "order": 863, + "special": 0, + "show": "" + }, + "2863": { + "id": 2863, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 810, + "name": "intr_task_name_2844", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2844", + "pretask": 2862, + "followtask": 2864, + "cond": [], + "tiaozhuan": 3, + "order": 864, + "special": 0, + "show": "" + }, + "2864": { + "id": 2864, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2845", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2845", + "pretask": 2863, + "followtask": 2865, + "cond": [], + "tiaozhuan": 3, + "order": 865, + "special": 0, + "show": "" + }, + "2865": { + "id": 2865, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2846", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2846", + "pretask": 2864, + "followtask": 2866, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 866, + "special": 0, + "show": "" + }, + "2866": { + "id": 2866, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2847", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2847", + "pretask": 2865, + "followtask": 2867, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 867, + "special": 0, + "show": "" + }, + "2867": { + "id": 2867, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2848", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2848", + "pretask": 2866, + "followtask": 2868, + "cond": [], + "tiaozhuan": 8, + "order": 868, + "special": 0, + "show": "" + }, + "2868": { + "id": 2868, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 815, + "name": "intr_task_name_2849", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2849", + "pretask": 2867, + "followtask": 2869, + "cond": [], + "tiaozhuan": 3, + "order": 869, + "special": 0, + "show": "" + }, + "2869": { + "id": 2869, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2850", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2850", + "pretask": 2868, + "followtask": 2870, + "cond": [], + "tiaozhuan": 3, + "order": 870, + "special": 0, + "show": "" + }, + "2870": { + "id": 2870, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2851", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2851", + "pretask": 2869, + "followtask": 2871, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 871, + "special": 0, + "show": "" + }, + "2871": { + "id": 2871, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2852", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2852", + "pretask": 2870, + "followtask": 2872, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 872, + "special": 0, + "show": "" + }, + "2872": { + "id": 2872, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2853", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2853", + "pretask": 2871, + "followtask": 2873, + "cond": [], + "tiaozhuan": 8, + "order": 873, + "special": 0, + "show": "" + }, + "2873": { + "id": 2873, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 820, + "name": "intr_task_name_2854", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2854", + "pretask": 2872, + "followtask": 2874, + "cond": [], + "tiaozhuan": 3, + "order": 874, + "special": 0, + "show": "" + }, + "2874": { + "id": 2874, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2855", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2855", + "pretask": 2873, + "followtask": 2875, + "cond": [], + "tiaozhuan": 3, + "order": 875, + "special": 0, + "show": "" + }, + "2875": { + "id": 2875, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2856", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2856", + "pretask": 2874, + "followtask": 2876, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 876, + "special": 0, + "show": "" + }, + "2876": { + "id": 2876, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2857", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2857", + "pretask": 2875, + "followtask": 2877, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 877, + "special": 0, + "show": "" + }, + "2877": { + "id": 2877, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2858", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2858", + "pretask": 2876, + "followtask": 2878, + "cond": [], + "tiaozhuan": 8, + "order": 878, + "special": 0, + "show": "" + }, + "2878": { + "id": 2878, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 825, + "name": "intr_task_name_2859", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2859", + "pretask": 2877, + "followtask": 2879, + "cond": [], + "tiaozhuan": 3, + "order": 879, + "special": 0, + "show": "" + }, + "2879": { + "id": 2879, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2860", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2860", + "pretask": 2878, + "followtask": 2880, + "cond": [], + "tiaozhuan": 3, + "order": 880, + "special": 0, + "show": "" + }, + "2880": { + "id": 2880, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2861", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2861", + "pretask": 2879, + "followtask": 2881, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 881, + "special": 0, + "show": "" + }, + "2881": { + "id": 2881, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2862", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2862", + "pretask": 2880, + "followtask": 2882, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 882, + "special": 0, + "show": "" + }, + "2882": { + "id": 2882, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2863", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2863", + "pretask": 2881, + "followtask": 2883, + "cond": [], + "tiaozhuan": 8, + "order": 883, + "special": 0, + "show": "" + }, + "2883": { + "id": 2883, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 830, + "name": "intr_task_name_2864", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2864", + "pretask": 2882, + "followtask": 2884, + "cond": [], + "tiaozhuan": 3, + "order": 884, + "special": 0, + "show": "" + }, + "2884": { + "id": 2884, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2865", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2865", + "pretask": 2883, + "followtask": 2885, + "cond": [], + "tiaozhuan": 3, + "order": 885, + "special": 0, + "show": "" + }, + "2885": { + "id": 2885, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2866", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2866", + "pretask": 2884, + "followtask": 2886, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 886, + "special": 0, + "show": "" + }, + "2886": { + "id": 2886, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2867", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2867", + "pretask": 2885, + "followtask": 2887, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 887, + "special": 0, + "show": "" + }, + "2887": { + "id": 2887, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2868", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2868", + "pretask": 2886, + "followtask": 2888, + "cond": [], + "tiaozhuan": 8, + "order": 888, + "special": 0, + "show": "" + }, + "2888": { + "id": 2888, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 835, + "name": "intr_task_name_2869", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2869", + "pretask": 2887, + "followtask": 2889, + "cond": [], + "tiaozhuan": 3, + "order": 889, + "special": 0, + "show": "" + }, + "2889": { + "id": 2889, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2870", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2870", + "pretask": 2888, + "followtask": 2890, + "cond": [], + "tiaozhuan": 3, + "order": 890, + "special": 0, + "show": "" + }, + "2890": { + "id": 2890, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2871", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2871", + "pretask": 2889, + "followtask": 2891, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 891, + "special": 0, + "show": "" + }, + "2891": { + "id": 2891, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2872", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2872", + "pretask": 2890, + "followtask": 2892, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 892, + "special": 0, + "show": "" + }, + "2892": { + "id": 2892, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2873", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2873", + "pretask": 2891, + "followtask": 2893, + "cond": [], + "tiaozhuan": 8, + "order": 893, + "special": 0, + "show": "" + }, + "2893": { + "id": 2893, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 840, + "name": "intr_task_name_2874", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2874", + "pretask": 2892, + "followtask": 2894, + "cond": [], + "tiaozhuan": 3, + "order": 894, + "special": 0, + "show": "" + }, + "2894": { + "id": 2894, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2875", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2875", + "pretask": 2893, + "followtask": 2895, + "cond": [], + "tiaozhuan": 3, + "order": 895, + "special": 0, + "show": "" + }, + "2895": { + "id": 2895, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2876", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2876", + "pretask": 2894, + "followtask": 2896, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 896, + "special": 0, + "show": "" + }, + "2896": { + "id": 2896, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2877", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2877", + "pretask": 2895, + "followtask": 2897, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 897, + "special": 0, + "show": "" + }, + "2897": { + "id": 2897, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2878", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2878", + "pretask": 2896, + "followtask": 2898, + "cond": [], + "tiaozhuan": 8, + "order": 898, + "special": 0, + "show": "" + }, + "2898": { + "id": 2898, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 845, + "name": "intr_task_name_2879", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2879", + "pretask": 2897, + "followtask": 2899, + "cond": [], + "tiaozhuan": 3, + "order": 899, + "special": 0, + "show": "" + }, + "2899": { + "id": 2899, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2880", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2880", + "pretask": 2898, + "followtask": 2900, + "cond": [], + "tiaozhuan": 3, + "order": 900, + "special": 0, + "show": "" + }, + "2900": { + "id": 2900, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2881", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2881", + "pretask": 2899, + "followtask": 2901, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 901, + "special": 0, + "show": "" + }, + "2901": { + "id": 2901, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2882", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2882", + "pretask": 2900, + "followtask": 2902, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 902, + "special": 0, + "show": "" + }, + "2902": { + "id": 2902, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2883", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2883", + "pretask": 2901, + "followtask": 2903, + "cond": [], + "tiaozhuan": 8, + "order": 903, + "special": 0, + "show": "" + }, + "2903": { + "id": 2903, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 850, + "name": "intr_task_name_2884", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2884", + "pretask": 2902, + "followtask": 2904, + "cond": [], + "tiaozhuan": 3, + "order": 904, + "special": 0, + "show": "" + }, + "2904": { + "id": 2904, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2885", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2885", + "pretask": 2903, + "followtask": 2905, + "cond": [], + "tiaozhuan": 3, + "order": 905, + "special": 0, + "show": "" + }, + "2905": { + "id": 2905, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2886", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2886", + "pretask": 2904, + "followtask": 2906, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 906, + "special": 0, + "show": "" + }, + "2906": { + "id": 2906, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2887", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2887", + "pretask": 2905, + "followtask": 2907, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 907, + "special": 0, + "show": "" + }, + "2907": { + "id": 2907, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2888", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2888", + "pretask": 2906, + "followtask": 2908, + "cond": [], + "tiaozhuan": 8, + "order": 908, + "special": 0, + "show": "" + }, + "2908": { + "id": 2908, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 855, + "name": "intr_task_name_2889", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2889", + "pretask": 2907, + "followtask": 2909, + "cond": [], + "tiaozhuan": 3, + "order": 909, + "special": 0, + "show": "" + }, + "2909": { + "id": 2909, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2890", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2890", + "pretask": 2908, + "followtask": 2910, + "cond": [], + "tiaozhuan": 3, + "order": 910, + "special": 0, + "show": "" + }, + "2910": { + "id": 2910, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2891", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2891", + "pretask": 2909, + "followtask": 2911, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 911, + "special": 0, + "show": "" + }, + "2911": { + "id": 2911, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2892", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2892", + "pretask": 2910, + "followtask": 2912, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 912, + "special": 0, + "show": "" + }, + "2912": { + "id": 2912, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2893", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2893", + "pretask": 2911, + "followtask": 2913, + "cond": [], + "tiaozhuan": 8, + "order": 913, + "special": 0, + "show": "" + }, + "2913": { + "id": 2913, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 860, + "name": "intr_task_name_2894", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2894", + "pretask": 2912, + "followtask": 2914, + "cond": [], + "tiaozhuan": 3, + "order": 914, + "special": 0, + "show": "" + }, + "2914": { + "id": 2914, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2895", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2895", + "pretask": 2913, + "followtask": 2915, + "cond": [], + "tiaozhuan": 3, + "order": 915, + "special": 0, + "show": "" + }, + "2915": { + "id": 2915, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2896", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2896", + "pretask": 2914, + "followtask": 2916, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 916, + "special": 0, + "show": "" + }, + "2916": { + "id": 2916, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2897", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2897", + "pretask": 2915, + "followtask": 2917, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 917, + "special": 0, + "show": "" + }, + "2917": { + "id": 2917, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2898", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2898", + "pretask": 2916, + "followtask": 2918, + "cond": [], + "tiaozhuan": 8, + "order": 918, + "special": 0, + "show": "" + }, + "2918": { + "id": 2918, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 865, + "name": "intr_task_name_2899", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2899", + "pretask": 2917, + "followtask": 2919, + "cond": [], + "tiaozhuan": 3, + "order": 919, + "special": 0, + "show": "" + }, + "2919": { + "id": 2919, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2900", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2900", + "pretask": 2918, + "followtask": 2920, + "cond": [], + "tiaozhuan": 3, + "order": 920, + "special": 0, + "show": "" + }, + "2920": { + "id": 2920, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2901", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2901", + "pretask": 2919, + "followtask": 2921, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 921, + "special": 0, + "show": "" + }, + "2921": { + "id": 2921, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2902", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2902", + "pretask": 2920, + "followtask": 2922, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 922, + "special": 0, + "show": "" + }, + "2922": { + "id": 2922, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2903", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2903", + "pretask": 2921, + "followtask": 2923, + "cond": [], + "tiaozhuan": 8, + "order": 923, + "special": 0, + "show": "" + }, + "2923": { + "id": 2923, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 870, + "name": "intr_task_name_2904", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2904", + "pretask": 2922, + "followtask": 2924, + "cond": [], + "tiaozhuan": 3, + "order": 924, + "special": 0, + "show": "" + }, + "2924": { + "id": 2924, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2905", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2905", + "pretask": 2923, + "followtask": 2925, + "cond": [], + "tiaozhuan": 3, + "order": 925, + "special": 0, + "show": "" + }, + "2925": { + "id": 2925, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2906", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2906", + "pretask": 2924, + "followtask": 2926, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 926, + "special": 0, + "show": "" + }, + "2926": { + "id": 2926, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2907", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2907", + "pretask": 2925, + "followtask": 2927, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 927, + "special": 0, + "show": "" + }, + "2927": { + "id": 2927, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2908", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2908", + "pretask": 2926, + "followtask": 2928, + "cond": [], + "tiaozhuan": 8, + "order": 928, + "special": 0, + "show": "" + }, + "2928": { + "id": 2928, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 875, + "name": "intr_task_name_2909", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2909", + "pretask": 2927, + "followtask": 2929, + "cond": [], + "tiaozhuan": 3, + "order": 929, + "special": 0, + "show": "" + }, + "2929": { + "id": 2929, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2910", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2910", + "pretask": 2928, + "followtask": 2930, + "cond": [], + "tiaozhuan": 3, + "order": 930, + "special": 0, + "show": "" + }, + "2930": { + "id": 2930, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2911", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2911", + "pretask": 2929, + "followtask": 2931, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 931, + "special": 0, + "show": "" + }, + "2931": { + "id": 2931, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2912", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2912", + "pretask": 2930, + "followtask": 2932, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 932, + "special": 0, + "show": "" + }, + "2932": { + "id": 2932, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2913", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2913", + "pretask": 2931, + "followtask": 2933, + "cond": [], + "tiaozhuan": 8, + "order": 933, + "special": 0, + "show": "" + }, + "2933": { + "id": 2933, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 880, + "name": "intr_task_name_2914", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2914", + "pretask": 2932, + "followtask": 2934, + "cond": [], + "tiaozhuan": 3, + "order": 934, + "special": 0, + "show": "" + }, + "2934": { + "id": 2934, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2915", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2915", + "pretask": 2933, + "followtask": 2935, + "cond": [], + "tiaozhuan": 3, + "order": 935, + "special": 0, + "show": "" + }, + "2935": { + "id": 2935, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2916", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2916", + "pretask": 2934, + "followtask": 2936, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 936, + "special": 0, + "show": "" + }, + "2936": { + "id": 2936, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2917", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2917", + "pretask": 2935, + "followtask": 2937, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 937, + "special": 0, + "show": "" + }, + "2937": { + "id": 2937, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2918", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2918", + "pretask": 2936, + "followtask": 2938, + "cond": [], + "tiaozhuan": 8, + "order": 938, + "special": 0, + "show": "" + }, + "2938": { + "id": 2938, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 885, + "name": "intr_task_name_2919", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2919", + "pretask": 2937, + "followtask": 2939, + "cond": [], + "tiaozhuan": 3, + "order": 939, + "special": 0, + "show": "" + }, + "2939": { + "id": 2939, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2920", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2920", + "pretask": 2938, + "followtask": 2940, + "cond": [], + "tiaozhuan": 3, + "order": 940, + "special": 0, + "show": "" + }, + "2940": { + "id": 2940, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2921", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2921", + "pretask": 2939, + "followtask": 2941, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 941, + "special": 0, + "show": "" + }, + "2941": { + "id": 2941, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2922", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2922", + "pretask": 2940, + "followtask": 2942, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 942, + "special": 0, + "show": "" + }, + "2942": { + "id": 2942, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2923", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2923", + "pretask": 2941, + "followtask": 2943, + "cond": [], + "tiaozhuan": 8, + "order": 943, + "special": 0, + "show": "" + }, + "2943": { + "id": 2943, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 890, + "name": "intr_task_name_2924", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2924", + "pretask": 2942, + "followtask": 2944, + "cond": [], + "tiaozhuan": 3, + "order": 944, + "special": 0, + "show": "" + }, + "2944": { + "id": 2944, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2925", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2925", + "pretask": 2943, + "followtask": 2945, + "cond": [], + "tiaozhuan": 3, + "order": 945, + "special": 0, + "show": "" + }, + "2945": { + "id": 2945, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2926", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2926", + "pretask": 2944, + "followtask": 2946, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 946, + "special": 0, + "show": "" + }, + "2946": { + "id": 2946, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2927", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2927", + "pretask": 2945, + "followtask": 2947, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 947, + "special": 0, + "show": "" + }, + "2947": { + "id": 2947, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2928", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2928", + "pretask": 2946, + "followtask": 2948, + "cond": [], + "tiaozhuan": 8, + "order": 948, + "special": 0, + "show": "" + }, + "2948": { + "id": 2948, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 895, + "name": "intr_task_name_2929", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2929", + "pretask": 2947, + "followtask": 2949, + "cond": [], + "tiaozhuan": 3, + "order": 949, + "special": 0, + "show": "" + }, + "2949": { + "id": 2949, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2930", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2930", + "pretask": 2948, + "followtask": 2950, + "cond": [], + "tiaozhuan": 3, + "order": 950, + "special": 0, + "show": "" + }, + "2950": { + "id": 2950, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2931", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2931", + "pretask": 2949, + "followtask": 2951, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 951, + "special": 0, + "show": "" + }, + "2951": { + "id": 2951, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2932", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2932", + "pretask": 2950, + "followtask": 2952, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 952, + "special": 0, + "show": "" + }, + "2952": { + "id": 2952, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2933", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2933", + "pretask": 2951, + "followtask": 2953, + "cond": [], + "tiaozhuan": 8, + "order": 953, + "special": 0, + "show": "" + }, + "2953": { + "id": 2953, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 900, + "name": "intr_task_name_2934", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2934", + "pretask": 2952, + "followtask": 2954, + "cond": [], + "tiaozhuan": 3, + "order": 954, + "special": 0, + "show": "" + }, + "2954": { + "id": 2954, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2935", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2935", + "pretask": 2953, + "followtask": 2955, + "cond": [], + "tiaozhuan": 3, + "order": 955, + "special": 0, + "show": "" + }, + "2955": { + "id": 2955, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2936", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2936", + "pretask": 2954, + "followtask": 2956, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 956, + "special": 0, + "show": "" + }, + "2956": { + "id": 2956, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2937", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2937", + "pretask": 2955, + "followtask": 2957, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 957, + "special": 0, + "show": "" + }, + "2957": { + "id": 2957, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2938", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2938", + "pretask": 2956, + "followtask": 2958, + "cond": [], + "tiaozhuan": 8, + "order": 958, + "special": 0, + "show": "" + }, + "2958": { + "id": 2958, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 905, + "name": "intr_task_name_2939", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2939", + "pretask": 2957, + "followtask": 2959, + "cond": [], + "tiaozhuan": 3, + "order": 959, + "special": 0, + "show": "" + }, + "2959": { + "id": 2959, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2940", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2940", + "pretask": 2958, + "followtask": 2960, + "cond": [], + "tiaozhuan": 3, + "order": 960, + "special": 0, + "show": "" + }, + "2960": { + "id": 2960, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2941", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2941", + "pretask": 2959, + "followtask": 2961, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 961, + "special": 0, + "show": "" + }, + "2961": { + "id": 2961, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2942", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2942", + "pretask": 2960, + "followtask": 2962, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 962, + "special": 0, + "show": "" + }, + "2962": { + "id": 2962, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2943", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2943", + "pretask": 2961, + "followtask": 2963, + "cond": [], + "tiaozhuan": 8, + "order": 963, + "special": 0, + "show": "" + }, + "2963": { + "id": 2963, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 910, + "name": "intr_task_name_2944", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2944", + "pretask": 2962, + "followtask": 2964, + "cond": [], + "tiaozhuan": 3, + "order": 964, + "special": 0, + "show": "" + }, + "2964": { + "id": 2964, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2945", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2945", + "pretask": 2963, + "followtask": 2965, + "cond": [], + "tiaozhuan": 3, + "order": 965, + "special": 0, + "show": "" + }, + "2965": { + "id": 2965, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2946", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2946", + "pretask": 2964, + "followtask": 2966, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 966, + "special": 0, + "show": "" + }, + "2966": { + "id": 2966, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2947", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2947", + "pretask": 2965, + "followtask": 2967, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 967, + "special": 0, + "show": "" + }, + "2967": { + "id": 2967, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2948", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2948", + "pretask": 2966, + "followtask": 2968, + "cond": [], + "tiaozhuan": 8, + "order": 968, + "special": 0, + "show": "" + }, + "2968": { + "id": 2968, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 915, + "name": "intr_task_name_2949", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2949", + "pretask": 2967, + "followtask": 2969, + "cond": [], + "tiaozhuan": 3, + "order": 969, + "special": 0, + "show": "" + }, + "2969": { + "id": 2969, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2950", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2950", + "pretask": 2968, + "followtask": 2970, + "cond": [], + "tiaozhuan": 3, + "order": 970, + "special": 0, + "show": "" + }, + "2970": { + "id": 2970, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2951", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2951", + "pretask": 2969, + "followtask": 2971, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 971, + "special": 0, + "show": "" + }, + "2971": { + "id": 2971, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2952", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2952", + "pretask": 2970, + "followtask": 2972, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 972, + "special": 0, + "show": "" + }, + "2972": { + "id": 2972, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2953", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2953", + "pretask": 2971, + "followtask": 2973, + "cond": [], + "tiaozhuan": 8, + "order": 973, + "special": 0, + "show": "" + }, + "2973": { + "id": 2973, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 920, + "name": "intr_task_name_2954", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2954", + "pretask": 2972, + "followtask": 2974, + "cond": [], + "tiaozhuan": 3, + "order": 974, + "special": 0, + "show": "" + }, + "2974": { + "id": 2974, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2955", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2955", + "pretask": 2973, + "followtask": 2975, + "cond": [], + "tiaozhuan": 3, + "order": 975, + "special": 0, + "show": "" + }, + "2975": { + "id": 2975, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2956", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2956", + "pretask": 2974, + "followtask": 2976, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 976, + "special": 0, + "show": "" + }, + "2976": { + "id": 2976, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2957", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2957", + "pretask": 2975, + "followtask": 2977, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 977, + "special": 0, + "show": "" + }, + "2977": { + "id": 2977, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2958", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2958", + "pretask": 2976, + "followtask": 2978, + "cond": [], + "tiaozhuan": 8, + "order": 978, + "special": 0, + "show": "" + }, + "2978": { + "id": 2978, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 925, + "name": "intr_task_name_2959", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2959", + "pretask": 2977, + "followtask": 2979, + "cond": [], + "tiaozhuan": 3, + "order": 979, + "special": 0, + "show": "" + }, + "2979": { + "id": 2979, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2960", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2960", + "pretask": 2978, + "followtask": 2980, + "cond": [], + "tiaozhuan": 3, + "order": 980, + "special": 0, + "show": "" + }, + "2980": { + "id": 2980, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2961", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2961", + "pretask": 2979, + "followtask": 2981, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 981, + "special": 0, + "show": "" + }, + "2981": { + "id": 2981, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2962", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2962", + "pretask": 2980, + "followtask": 2982, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 982, + "special": 0, + "show": "" + }, + "2982": { + "id": 2982, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2963", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2963", + "pretask": 2981, + "followtask": 2983, + "cond": [], + "tiaozhuan": 8, + "order": 983, + "special": 0, + "show": "" + }, + "2983": { + "id": 2983, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 930, + "name": "intr_task_name_2964", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2964", + "pretask": 2982, + "followtask": 2984, + "cond": [], + "tiaozhuan": 3, + "order": 984, + "special": 0, + "show": "" + }, + "2984": { + "id": 2984, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2965", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2965", + "pretask": 2983, + "followtask": 2985, + "cond": [], + "tiaozhuan": 3, + "order": 985, + "special": 0, + "show": "" + }, + "2985": { + "id": 2985, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2966", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2966", + "pretask": 2984, + "followtask": 2986, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 986, + "special": 0, + "show": "" + }, + "2986": { + "id": 2986, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2967", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2967", + "pretask": 2985, + "followtask": 2987, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 987, + "special": 0, + "show": "" + }, + "2987": { + "id": 2987, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2968", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2968", + "pretask": 2986, + "followtask": 2988, + "cond": [], + "tiaozhuan": 8, + "order": 988, + "special": 0, + "show": "" + }, + "2988": { + "id": 2988, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 935, + "name": "intr_task_name_2969", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2969", + "pretask": 2987, + "followtask": 2989, + "cond": [], + "tiaozhuan": 3, + "order": 989, + "special": 0, + "show": "" + }, + "2989": { + "id": 2989, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2970", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2970", + "pretask": 2988, + "followtask": 2990, + "cond": [], + "tiaozhuan": 3, + "order": 990, + "special": 0, + "show": "" + }, + "2990": { + "id": 2990, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2971", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2971", + "pretask": 2989, + "followtask": 2991, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 991, + "special": 0, + "show": "" + }, + "2991": { + "id": 2991, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2972", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2972", + "pretask": 2990, + "followtask": 2992, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 992, + "special": 0, + "show": "" + }, + "2992": { + "id": 2992, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2973", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2973", + "pretask": 2991, + "followtask": 2993, + "cond": [], + "tiaozhuan": 8, + "order": 993, + "special": 0, + "show": "" + }, + "2993": { + "id": 2993, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 940, + "name": "intr_task_name_2974", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2974", + "pretask": 2992, + "followtask": 2994, + "cond": [], + "tiaozhuan": 3, + "order": 994, + "special": 0, + "show": "" + }, + "2994": { + "id": 2994, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2975", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2975", + "pretask": 2993, + "followtask": 2995, + "cond": [], + "tiaozhuan": 3, + "order": 995, + "special": 0, + "show": "" + }, + "2995": { + "id": 2995, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2976", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2976", + "pretask": 2994, + "followtask": 2996, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 996, + "special": 0, + "show": "" + }, + "2996": { + "id": 2996, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2977", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2977", + "pretask": 2995, + "followtask": 2997, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 997, + "special": 0, + "show": "" + }, + "2997": { + "id": 2997, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2978", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2978", + "pretask": 2996, + "followtask": 2998, + "cond": [], + "tiaozhuan": 8, + "order": 998, + "special": 0, + "show": "" + }, + "2998": { + "id": 2998, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 945, + "name": "intr_task_name_2979", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2979", + "pretask": 2997, + "followtask": 2999, + "cond": [], + "tiaozhuan": 3, + "order": 999, + "special": 0, + "show": "" + }, + "2999": { + "id": 2999, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2980", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2980", + "pretask": 2998, + "followtask": 3000, + "cond": [], + "tiaozhuan": 3, + "order": 1000, + "special": 0, + "show": "" + }, + "3000": { + "id": 3000, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2981", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2981", + "pretask": 2999, + "followtask": 3001, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 1001, + "special": 0, + "show": "" + }, + "3001": { + "id": 3001, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2982", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2982", + "pretask": 3000, + "followtask": 3002, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 1002, + "special": 0, + "show": "" + }, + "3002": { + "id": 3002, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2983", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2983", + "pretask": 3001, + "followtask": 3003, + "cond": [], + "tiaozhuan": 8, + "order": 1003, + "special": 0, + "show": "" + }, + "3003": { + "id": 3003, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 950, + "name": "intr_task_name_2984", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2984", + "pretask": 3002, + "followtask": 3004, + "cond": [], + "tiaozhuan": 3, + "order": 1004, + "special": 0, + "show": "" + }, + "3004": { + "id": 3004, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2985", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2985", + "pretask": 3003, + "followtask": 3005, + "cond": [], + "tiaozhuan": 3, + "order": 1005, + "special": 0, + "show": "" + }, + "3005": { + "id": 3005, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2986", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2986", + "pretask": 3004, + "followtask": 3006, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 1006, + "special": 0, + "show": "" + }, + "3006": { + "id": 3006, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2987", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2987", + "pretask": 3005, + "followtask": 3007, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 1007, + "special": 0, + "show": "" + }, + "3007": { + "id": 3007, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2988", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2988", + "pretask": 3006, + "followtask": 3008, + "cond": [], + "tiaozhuan": 8, + "order": 1008, + "special": 0, + "show": "" + }, + "3008": { + "id": 3008, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 955, + "name": "intr_task_name_2989", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2989", + "pretask": 3007, + "followtask": 3009, + "cond": [], + "tiaozhuan": 3, + "order": 1009, + "special": 0, + "show": "" + }, + "3009": { + "id": 3009, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2990", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2990", + "pretask": 3008, + "followtask": 3010, + "cond": [], + "tiaozhuan": 3, + "order": 1010, + "special": 0, + "show": "" + }, + "3010": { + "id": 3010, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2991", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2991", + "pretask": 3009, + "followtask": 3011, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 1011, + "special": 0, + "show": "" + }, + "3011": { + "id": 3011, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2992", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2992", + "pretask": 3010, + "followtask": 3012, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 1012, + "special": 0, + "show": "" + }, + "3012": { + "id": 3012, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2993", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2993", + "pretask": 3011, + "followtask": 3013, + "cond": [], + "tiaozhuan": 8, + "order": 1013, + "special": 0, + "show": "" + }, + "3013": { + "id": 3013, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 960, + "name": "intr_task_name_2994", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2994", + "pretask": 3012, + "followtask": 3014, + "cond": [], + "tiaozhuan": 3, + "order": 1014, + "special": 0, + "show": "" + }, + "3014": { + "id": 3014, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2995", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_2995", + "pretask": 3013, + "followtask": 3015, + "cond": [], + "tiaozhuan": 3, + "order": 1015, + "special": 0, + "show": "" + }, + "3015": { + "id": 3015, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_2996", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_2996", + "pretask": 3014, + "followtask": 3016, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 1016, + "special": 0, + "show": "" + }, + "3016": { + "id": 3016, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2997", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_2997", + "pretask": 3015, + "followtask": 3017, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 1017, + "special": 0, + "show": "" + }, + "3017": { + "id": 3017, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_2998", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_2998", + "pretask": 3016, + "followtask": 3018, + "cond": [], + "tiaozhuan": 8, + "order": 1018, + "special": 0, + "show": "" + }, + "3018": { + "id": 3018, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 965, + "name": "intr_task_name_2999", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_2999", + "pretask": 3017, + "followtask": 3019, + "cond": [], + "tiaozhuan": 3, + "order": 1019, + "special": 0, + "show": "" + }, + "3019": { + "id": 3019, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3000", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_3000", + "pretask": 3018, + "followtask": 3020, + "cond": [], + "tiaozhuan": 3, + "order": 1020, + "special": 0, + "show": "" + }, + "3020": { + "id": 3020, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3001", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_3001", + "pretask": 3019, + "followtask": 3021, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 1021, + "special": 0, + "show": "" + }, + "3021": { + "id": 3021, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3002", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_3002", + "pretask": 3020, + "followtask": 3022, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 1022, + "special": 0, + "show": "" + }, + "3022": { + "id": 3022, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3003", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_3003", + "pretask": 3021, + "followtask": 3023, + "cond": [], + "tiaozhuan": 8, + "order": 1023, + "special": 0, + "show": "" + }, + "3023": { + "id": 3023, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 970, + "name": "intr_task_name_3004", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_3004", + "pretask": 3022, + "followtask": 3024, + "cond": [], + "tiaozhuan": 3, + "order": 1024, + "special": 0, + "show": "" + }, + "3024": { + "id": 3024, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3005", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_3005", + "pretask": 3023, + "followtask": 3025, + "cond": [], + "tiaozhuan": 3, + "order": 1025, + "special": 0, + "show": "" + }, + "3025": { + "id": 3025, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3006", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_3006", + "pretask": 3024, + "followtask": 3026, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 1026, + "special": 0, + "show": "" + }, + "3026": { + "id": 3026, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3007", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_3007", + "pretask": 3025, + "followtask": 3027, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 1027, + "special": 0, + "show": "" + }, + "3027": { + "id": 3027, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3008", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_3008", + "pretask": 3026, + "followtask": 3028, + "cond": [], + "tiaozhuan": 8, + "order": 1028, + "special": 0, + "show": "" + }, + "3028": { + "id": 3028, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 975, + "name": "intr_task_name_3009", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_3009", + "pretask": 3027, + "followtask": 3029, + "cond": [], + "tiaozhuan": 3, + "order": 1029, + "special": 0, + "show": "" + }, + "3029": { + "id": 3029, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3010", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_3010", + "pretask": 3028, + "followtask": 3030, + "cond": [], + "tiaozhuan": 3, + "order": 1030, + "special": 0, + "show": "" + }, + "3030": { + "id": 3030, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3011", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_3011", + "pretask": 3029, + "followtask": 3031, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 1031, + "special": 0, + "show": "" + }, + "3031": { + "id": 3031, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3012", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_3012", + "pretask": 3030, + "followtask": 3032, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 1032, + "special": 0, + "show": "" + }, + "3032": { + "id": 3032, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3013", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_3013", + "pretask": 3031, + "followtask": 3033, + "cond": [], + "tiaozhuan": 8, + "order": 1033, + "special": 0, + "show": "" + }, + "3033": { + "id": 3033, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 980, + "name": "intr_task_name_3014", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_3014", + "pretask": 3032, + "followtask": 3034, + "cond": [], + "tiaozhuan": 3, + "order": 1034, + "special": 0, + "show": "" + }, + "3034": { + "id": 3034, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3015", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_3015", + "pretask": 3033, + "followtask": 3035, + "cond": [], + "tiaozhuan": 3, + "order": 1035, + "special": 0, + "show": "" + }, + "3035": { + "id": 3035, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3016", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_3016", + "pretask": 3034, + "followtask": 3036, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 1036, + "special": 0, + "show": "" + }, + "3036": { + "id": 3036, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3017", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_3017", + "pretask": 3035, + "followtask": 3037, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 1037, + "special": 0, + "show": "" + }, + "3037": { + "id": 3037, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3018", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_3018", + "pretask": 3036, + "followtask": 3038, + "cond": [], + "tiaozhuan": 8, + "order": 1038, + "special": 0, + "show": "" + }, + "3038": { + "id": 3038, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 985, + "name": "intr_task_name_3019", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_3019", + "pretask": 3037, + "followtask": 3039, + "cond": [], + "tiaozhuan": 3, + "order": 1039, + "special": 0, + "show": "" + }, + "3039": { + "id": 3039, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3020", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_3020", + "pretask": 3038, + "followtask": 3040, + "cond": [], + "tiaozhuan": 3, + "order": 1040, + "special": 0, + "show": "" + }, + "3040": { + "id": 3040, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3021", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_3021", + "pretask": 3039, + "followtask": 3041, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 1041, + "special": 0, + "show": "" + }, + "3041": { + "id": 3041, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3022", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_3022", + "pretask": 3040, + "followtask": 3042, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 1042, + "special": 0, + "show": "" + }, + "3042": { + "id": 3042, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3023", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_3023", + "pretask": 3041, + "followtask": 3043, + "cond": [], + "tiaozhuan": 8, + "order": 1043, + "special": 0, + "show": "" + }, + "3043": { + "id": 3043, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 990, + "name": "intr_task_name_3024", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_3024", + "pretask": 3042, + "followtask": 3044, + "cond": [], + "tiaozhuan": 3, + "order": 1044, + "special": 0, + "show": "" + }, + "3044": { + "id": 3044, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3025", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_3025", + "pretask": 3043, + "followtask": 3045, + "cond": [], + "tiaozhuan": 3, + "order": 1045, + "special": 0, + "show": "" + }, + "3045": { + "id": 3045, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3026", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_3026", + "pretask": 3044, + "followtask": 3046, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 1046, + "special": 0, + "show": "" + }, + "3046": { + "id": 3046, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3027", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_3027", + "pretask": 3045, + "followtask": 3047, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 1047, + "special": 0, + "show": "" + }, + "3047": { + "id": 3047, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3028", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_3028", + "pretask": 3046, + "followtask": 3048, + "cond": [], + "tiaozhuan": 8, + "order": 1048, + "special": 0, + "show": "" + }, + "3048": { + "id": 3048, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 995, + "name": "intr_task_name_3029", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_3029", + "pretask": 3047, + "followtask": 3049, + "cond": [], + "tiaozhuan": 3, + "order": 1049, + "special": 0, + "show": "" + }, + "3049": { + "id": 3049, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3030", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_3030", + "pretask": 3048, + "followtask": 3050, + "cond": [], + "tiaozhuan": 3, + "order": 1050, + "special": 0, + "show": "" + }, + "3050": { + "id": 3050, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3031", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_3031", + "pretask": 3049, + "followtask": 3051, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 1051, + "special": 0, + "show": "" + }, + "3051": { + "id": 3051, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3032", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_3032", + "pretask": 3050, + "followtask": 3052, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 1052, + "special": 0, + "show": "" + }, + "3052": { + "id": 3052, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3033", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_3033", + "pretask": 3051, + "followtask": 3053, + "cond": [], + "tiaozhuan": 8, + "order": 1053, + "special": 0, + "show": "" + }, + "3053": { + "id": 3053, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1000, + "name": "intr_task_name_3034", + "undefined": "有一些小黑帮已经闹到了你的头上,怎么能视而不见,去剿灭他们吧", + "intr": "intr_task_intr_3034", + "pretask": 3052, + "followtask": 3054, + "cond": [], + "tiaozhuan": 3, + "order": 1054, + "special": 0, + "show": "" + }, + "3054": { + "id": 3054, + "type": 2, + "stype": 145, + "prize": [ + { + "a": "item", + "t": "33", + "n": 1 + }, + { + "a": "item", + "t": "34", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3035", + "undefined": "在首领离开的期间,忠实的部下们收回了不少债,清理一下刚到手的资源吧。", + "intr": "intr_task_intr_3035", + "pretask": 3053, + "followtask": 3055, + "cond": [], + "tiaozhuan": 3, + "order": 1055, + "special": 0, + "show": "" + }, + "3055": { + "id": 3055, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "undefined": "背包里还放着箱子?打开吧,身为首领你已经背负了太多东西了。", + "intr": "intr_task_intr_3036", + "pretask": 3054, + "followtask": 3056, + "cond": [ + 33 + ], + "tiaozhuan": 4, + "order": 1056, + "special": 0, + "show": "" + }, + "3056": { + "id": 3056, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "1", + "n": 5000 + }, + { + "a": "item", + "t": "3", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3037", + "undefined": "黑帮的人生就像这个箱子,你永远不知道,打开后看见的是钞票还是倒计时的炸药。", + "intr": "intr_task_intr_3037", + "pretask": 3055, + "followtask": 3057, + "cond": [ + 633 + ], + "tiaozhuan": 4, + "order": 1057, + "special": 0, + "show": "" + }, + "3057": { + "id": 3057, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "undefined": "神圣的地方就要干些神圣的事。在上帝的注视下,去获取一波装备吧。", + "intr": "intr_task_intr_3038", + "pretask": 3056, + "followtask": 0, + "cond": [], + "tiaozhuan": 8, + "order": 1058, + "special": 0, + "show": "" + } + }, + "3": { + "200": { + "id": 200, + "type": 3, + "stype": 114, + "prize": [ + { + "a": "item", + "t": "27", + "n": 200 + }, + { + "a": "item", + "t": "12", + "n": 20 + } + ], + "pval": 1, + "name": "intr_task_name_170", + "pretask": 0, + "followtask": 201, + "cond": [ + 4 + ], + "tiaozhuan": 9, + "order": 1, + "special": 0, + "show": "" + }, + "201": { + "id": 201, + "type": 3, + "stype": 114, + "prize": [ + { + "a": "item", + "t": "27", + "n": 200 + }, + { + "a": "item", + "t": "12", + "n": 20 + } + ], + "pval": 2, + "name": "intr_task_name_171", + "pretask": 201, + "followtask": 202, + "cond": [ + 4 + ], + "tiaozhuan": 9, + "order": 2, + "special": 0, + "show": "" + }, + "202": { + "id": 202, + "type": 3, + "stype": 114, + "prize": [ + { + "a": "item", + "t": "27", + "n": 200 + }, + { + "a": "item", + "t": "12", + "n": 20 + } + ], + "pval": 3, + "name": "intr_task_name_172", + "pretask": 202, + "followtask": 203, + "cond": [ + 4 + ], + "tiaozhuan": 9, + "order": 3, + "special": 0, + "show": "" + }, + "203": { + "id": 203, + "type": 3, + "stype": 114, + "prize": [ + { + "a": "item", + "t": "27", + "n": 200 + }, + { + "a": "item", + "t": "12", + "n": 20 + } + ], + "pval": 4, + "name": "intr_task_name_173", + "pretask": 203, + "followtask": 204, + "cond": [ + 4 + ], + "tiaozhuan": 9, + "order": 4, + "special": 0, + "show": "" + }, + "204": { + "id": 204, + "type": 3, + "stype": 114, + "prize": [ + { + "a": "item", + "t": "27", + "n": 200 + }, + { + "a": "item", + "t": "12", + "n": 20 + } + ], + "pval": 5, + "name": "intr_task_name_174", + "pretask": 204, + "followtask": 205, + "cond": [ + 4 + ], + "tiaozhuan": 9, + "order": 5, + "special": 0, + "show": "" + }, + "205": { + "id": 205, + "type": 3, + "stype": 114, + "prize": [ + { + "a": "item", + "t": "27", + "n": 200 + }, + { + "a": "item", + "t": "12", + "n": 20 + } + ], + "pval": 6, + "name": "intr_task_name_175", + "pretask": 205, + "followtask": 206, + "cond": [ + 4 + ], + "tiaozhuan": 9, + "order": 6, + "special": 0, + "show": "" + }, + "206": { + "id": 206, + "type": 3, + "stype": 114, + "prize": [ + { + "a": "item", + "t": "27", + "n": 200 + }, + { + "a": "item", + "t": "12", + "n": 20 + } + ], + "pval": 7, + "name": "intr_task_name_176", + "pretask": 206, + "followtask": 207, + "cond": [ + 4 + ], + "tiaozhuan": 9, + "order": 7, + "special": 0, + "show": "" + }, + "207": { + "id": 207, + "type": 3, + "stype": 114, + "prize": [ + { + "a": "item", + "t": "27", + "n": 200 + }, + { + "a": "item", + "t": "12", + "n": 20 + } + ], + "pval": 8, + "name": "intr_task_name_177", + "pretask": 207, + "followtask": 208, + "cond": [ + 4 + ], + "tiaozhuan": 9, + "order": 8, + "special": 0, + "show": "" + }, + "208": { + "id": 208, + "type": 3, + "stype": 114, + "prize": [ + { + "a": "item", + "t": "27", + "n": 200 + }, + { + "a": "item", + "t": "12", + "n": 20 + } + ], + "pval": 9, + "name": "intr_task_name_178", + "pretask": 208, + "followtask": 209, + "cond": [ + 4 + ], + "tiaozhuan": 9, + "order": 9, + "special": 0, + "show": "" + }, + "209": { + "id": 209, + "type": 3, + "stype": 114, + "prize": [ + { + "a": "item", + "t": "27", + "n": 200 + }, + { + "a": "item", + "t": "12", + "n": 20 + } + ], + "pval": 10, + "name": "intr_task_name_179", + "pretask": 209, + "followtask": 210, + "cond": [ + 4 + ], + "tiaozhuan": 9, + "order": 10, + "special": 0, + "show": "" + }, + "210": { + "id": 210, + "type": 3, + "stype": 114, + "prize": [ + { + "a": "item", + "t": "27", + "n": 200 + }, + { + "a": "item", + "t": "12", + "n": 20 + } + ], + "pval": 11, + "name": "intr_task_name_180", + "pretask": 210, + "followtask": 211, + "cond": [ + 4 + ], + "tiaozhuan": 9, + "order": 11, + "special": 0, + "show": "" + }, + "211": { + "id": 211, + "type": 3, + "stype": 114, + "prize": [ + { + "a": "item", + "t": "27", + "n": 200 + }, + { + "a": "item", + "t": "12", + "n": 20 + } + ], + "pval": 12, + "name": "intr_task_name_181", + "pretask": 211, + "followtask": 212, + "cond": [ + 4 + ], + "tiaozhuan": 9, + "order": 12, + "special": 0, + "show": "" + }, + "212": { + "id": 212, + "type": 3, + "stype": 114, + "prize": [ + { + "a": "item", + "t": "27", + "n": 200 + }, + { + "a": "item", + "t": "12", + "n": 20 + } + ], + "pval": 13, + "name": "intr_task_name_182", + "pretask": 212, + "followtask": 213, + "cond": [ + 4 + ], + "tiaozhuan": 9, + "order": 13, + "special": 0, + "show": "" + }, + "213": { + "id": 213, + "type": 3, + "stype": 114, + "prize": [ + { + "a": "item", + "t": "27", + "n": 200 + }, + { + "a": "item", + "t": "12", + "n": 20 + } + ], + "pval": 14, + "name": "intr_task_name_183", + "pretask": 213, + "followtask": 214, + "cond": [ + 4 + ], + "tiaozhuan": 9, + "order": 14, + "special": 0, + "show": "" + }, + "214": { + "id": 214, + "type": 3, + "stype": 114, + "prize": [ + { + "a": "item", + "t": "27", + "n": 200 + }, + { + "a": "item", + "t": "12", + "n": 20 + } + ], + "pval": 15, + "name": "intr_task_name_184", + "pretask": 214, + "followtask": 215, + "cond": [ + 4 + ], + "tiaozhuan": 9, + "order": 15, + "special": 0, + "show": "" + }, + "215": { + "id": 215, + "type": 3, + "stype": 114, + "prize": [ + { + "a": "item", + "t": "27", + "n": 200 + }, + { + "a": "item", + "t": "12", + "n": 20 + } + ], + "pval": 16, + "name": "intr_task_name_185", + "pretask": 215, + "followtask": 216, + "cond": [ + 4 + ], + "tiaozhuan": 9, + "order": 16, + "special": 0, + "show": "" + }, + "216": { + "id": 216, + "type": 3, + "stype": 114, + "prize": [ + { + "a": "item", + "t": "27", + "n": 200 + }, + { + "a": "item", + "t": "12", + "n": 20 + } + ], + "pval": 17, + "name": "intr_task_name_186", + "pretask": 216, + "followtask": 217, + "cond": [ + 4 + ], + "tiaozhuan": 9, + "order": 17, + "special": 0, + "show": "" + }, + "217": { + "id": 217, + "type": 3, + "stype": 114, + "prize": [ + { + "a": "item", + "t": "27", + "n": 200 + }, + { + "a": "item", + "t": "12", + "n": 20 + } + ], + "pval": 18, + "name": "intr_task_name_187", + "pretask": 217, + "followtask": 218, + "cond": [ + 4 + ], + "tiaozhuan": 9, + "order": 18, + "special": 0, + "show": "" + }, + "218": { + "id": 218, + "type": 3, + "stype": 114, + "prize": [ + { + "a": "item", + "t": "27", + "n": 200 + }, + { + "a": "item", + "t": "12", + "n": 20 + } + ], + "pval": 19, + "name": "intr_task_name_188", + "pretask": 218, + "followtask": 219, + "cond": [ + 4 + ], + "tiaozhuan": 9, + "order": 19, + "special": 0, + "show": "" + }, + "219": { + "id": 219, + "type": 3, + "stype": 114, + "prize": [ + { + "a": "item", + "t": "27", + "n": 200 + }, + { + "a": "item", + "t": "12", + "n": 20 + } + ], + "pval": 20, + "name": "intr_task_name_189", + "pretask": 219, + "followtask": 0, + "cond": [ + 4 + ], + "tiaozhuan": 9, + "order": 20, + "special": 0, + "show": "" + }, + "220": { + "id": 220, + "type": 3, + "stype": 115, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "2", + "n": 100 + } + ], + "pval": 1, + "name": "intr_task_name_190", + "pretask": 0, + "followtask": 221, + "cond": [ + 4 + ], + "tiaozhuan": 8, + "order": 21, + "special": 0, + "show": "" + }, + "221": { + "id": 221, + "type": 3, + "stype": 115, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "2", + "n": 20 + } + ], + "pval": 2, + "name": "intr_task_name_191", + "pretask": 221, + "followtask": 222, + "cond": [ + 4 + ], + "tiaozhuan": 8, + "order": 22, + "special": 0, + "show": "" + }, + "222": { + "id": 222, + "type": 3, + "stype": 115, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "2", + "n": 20 + } + ], + "pval": 3, + "name": "intr_task_name_192", + "pretask": 222, + "followtask": 223, + "cond": [ + 4 + ], + "tiaozhuan": 8, + "order": 23, + "special": 0, + "show": "" + }, + "223": { + "id": 223, + "type": 3, + "stype": 115, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "2", + "n": 20 + } + ], + "pval": 4, + "name": "intr_task_name_193", + "pretask": 223, + "followtask": 224, + "cond": [ + 4 + ], + "tiaozhuan": 8, + "order": 24, + "special": 0, + "show": "" + }, + "224": { + "id": 224, + "type": 3, + "stype": 115, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "2", + "n": 20 + } + ], + "pval": 5, + "name": "intr_task_name_194", + "pretask": 224, + "followtask": 225, + "cond": [ + 4 + ], + "tiaozhuan": 8, + "order": 25, + "special": 0, + "show": "" + }, + "225": { + "id": 225, + "type": 3, + "stype": 115, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "2", + "n": 20 + } + ], + "pval": 6, + "name": "intr_task_name_195", + "pretask": 225, + "followtask": 226, + "cond": [ + 4 + ], + "tiaozhuan": 8, + "order": 26, + "special": 0, + "show": "" + }, + "226": { + "id": 226, + "type": 3, + "stype": 115, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "2", + "n": 20 + } + ], + "pval": 7, + "name": "intr_task_name_196", + "pretask": 226, + "followtask": 227, + "cond": [ + 4 + ], + "tiaozhuan": 8, + "order": 27, + "special": 0, + "show": "" + }, + "227": { + "id": 227, + "type": 3, + "stype": 115, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "2", + "n": 20 + } + ], + "pval": 8, + "name": "intr_task_name_197", + "pretask": 227, + "followtask": 228, + "cond": [ + 4 + ], + "tiaozhuan": 8, + "order": 28, + "special": 0, + "show": "" + }, + "228": { + "id": 228, + "type": 3, + "stype": 115, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "2", + "n": 20 + } + ], + "pval": 9, + "name": "intr_task_name_198", + "pretask": 228, + "followtask": 229, + "cond": [ + 4 + ], + "tiaozhuan": 8, + "order": 29, + "special": 0, + "show": "" + }, + "229": { + "id": 229, + "type": 3, + "stype": 115, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "2", + "n": 20 + } + ], + "pval": 10, + "name": "intr_task_name_199", + "pretask": 229, + "followtask": 230, + "cond": [ + 4 + ], + "tiaozhuan": 8, + "order": 30, + "special": 0, + "show": "" + }, + "230": { + "id": 230, + "type": 3, + "stype": 115, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "2", + "n": 20 + } + ], + "pval": 11, + "name": "intr_task_name_200", + "pretask": 230, + "followtask": 231, + "cond": [ + 4 + ], + "tiaozhuan": 8, + "order": 31, + "special": 0, + "show": "" + }, + "231": { + "id": 231, + "type": 3, + "stype": 115, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "2", + "n": 20 + } + ], + "pval": 12, + "name": "intr_task_name_201", + "pretask": 231, + "followtask": 232, + "cond": [ + 4 + ], + "tiaozhuan": 8, + "order": 32, + "special": 0, + "show": "" + }, + "232": { + "id": 232, + "type": 3, + "stype": 115, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "2", + "n": 20 + } + ], + "pval": 13, + "name": "intr_task_name_202", + "pretask": 232, + "followtask": 233, + "cond": [ + 4 + ], + "tiaozhuan": 8, + "order": 33, + "special": 0, + "show": "" + }, + "233": { + "id": 233, + "type": 3, + "stype": 115, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "2", + "n": 20 + } + ], + "pval": 14, + "name": "intr_task_name_203", + "pretask": 233, + "followtask": 234, + "cond": [ + 4 + ], + "tiaozhuan": 8, + "order": 34, + "special": 0, + "show": "" + }, + "234": { + "id": 234, + "type": 3, + "stype": 115, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "2", + "n": 20 + } + ], + "pval": 15, + "name": "intr_task_name_204", + "pretask": 234, + "followtask": 235, + "cond": [ + 4 + ], + "tiaozhuan": 8, + "order": 35, + "special": 0, + "show": "" + }, + "235": { + "id": 235, + "type": 3, + "stype": 115, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "2", + "n": 20 + } + ], + "pval": 17, + "name": "intr_task_name_205", + "pretask": 235, + "followtask": 236, + "cond": [ + 4 + ], + "tiaozhuan": 8, + "order": 36, + "special": 0, + "show": "" + }, + "236": { + "id": 236, + "type": 3, + "stype": 115, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "2", + "n": 20 + } + ], + "pval": 19, + "name": "intr_task_name_206", + "pretask": 236, + "followtask": 237, + "cond": [ + 4 + ], + "tiaozhuan": 8, + "order": 37, + "special": 0, + "show": "" + }, + "237": { + "id": 237, + "type": 3, + "stype": 115, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "2", + "n": 20 + } + ], + "pval": 21, + "name": "intr_task_name_207", + "pretask": 237, + "followtask": 238, + "cond": [ + 4 + ], + "tiaozhuan": 8, + "order": 38, + "special": 0, + "show": "" + }, + "238": { + "id": 238, + "type": 3, + "stype": 115, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "2", + "n": 20 + } + ], + "pval": 23, + "name": "intr_task_name_208", + "pretask": 238, + "followtask": 239, + "cond": [ + 4 + ], + "tiaozhuan": 8, + "order": 39, + "special": 0, + "show": "" + }, + "239": { + "id": 239, + "type": 3, + "stype": 115, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "2", + "n": 20 + } + ], + "pval": 25, + "name": "intr_task_name_209", + "pretask": 239, + "followtask": 240, + "cond": [ + 4 + ], + "tiaozhuan": 8, + "order": 40, + "special": 0, + "show": "" + }, + "240": { + "id": 240, + "type": 3, + "stype": 115, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "2", + "n": 20 + } + ], + "pval": 30, + "name": "intr_task_name_210", + "pretask": 240, + "followtask": 0, + "cond": [ + 4 + ], + "tiaozhuan": 8, + "order": 41, + "special": 0, + "show": "" + }, + "241": { + "id": 241, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "600", + "n": 5 + } + ], + "pval": 1000, + "name": "intr_task_name_211", + "pretask": 0, + "followtask": 242, + "cond": [], + "tiaozhuan": 33, + "order": 42, + "special": 0, + "show": "" + }, + "242": { + "id": 242, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "600", + "n": 5 + } + ], + "pval": 3000, + "name": "intr_task_name_212", + "pretask": 242, + "followtask": 243, + "cond": [], + "tiaozhuan": 33, + "order": 43, + "special": 0, + "show": "" + }, + "243": { + "id": 243, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "600", + "n": 5 + } + ], + "pval": 5000, + "name": "intr_task_name_213", + "pretask": 243, + "followtask": 244, + "cond": [], + "tiaozhuan": 33, + "order": 44, + "special": 0, + "show": "" + }, + "244": { + "id": 244, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "600", + "n": 5 + } + ], + "pval": 15000, + "name": "intr_task_name_214", + "pretask": 244, + "followtask": 245, + "cond": [], + "tiaozhuan": 33, + "order": 45, + "special": 0, + "show": "" + }, + "245": { + "id": 245, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 30000, + "name": "intr_task_name_215", + "pretask": 245, + "followtask": 246, + "cond": [], + "tiaozhuan": 33, + "order": 46, + "special": 0, + "show": "" + }, + "246": { + "id": 246, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 45000, + "name": "intr_task_name_216", + "pretask": 246, + "followtask": 247, + "cond": [], + "tiaozhuan": 33, + "order": 47, + "special": 0, + "show": "" + }, + "247": { + "id": 247, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 60000, + "name": "intr_task_name_217", + "pretask": 247, + "followtask": 248, + "cond": [], + "tiaozhuan": 33, + "order": 48, + "special": 0, + "show": "" + }, + "248": { + "id": 248, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 75000, + "name": "intr_task_name_218", + "pretask": 248, + "followtask": 249, + "cond": [], + "tiaozhuan": 33, + "order": 49, + "special": 0, + "show": "" + }, + "249": { + "id": 249, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 90000, + "name": "intr_task_name_219", + "pretask": 249, + "followtask": 250, + "cond": [], + "tiaozhuan": 33, + "order": 50, + "special": 0, + "show": "" + }, + "250": { + "id": 250, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 105000, + "name": "intr_task_name_220", + "pretask": 250, + "followtask": 251, + "cond": [], + "tiaozhuan": 33, + "order": 51, + "special": 0, + "show": "" + }, + "251": { + "id": 251, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 120000, + "name": "intr_task_name_221", + "pretask": 251, + "followtask": 252, + "cond": [], + "tiaozhuan": 33, + "order": 52, + "special": 0, + "show": "" + }, + "252": { + "id": 252, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 135000, + "name": "intr_task_name_222", + "pretask": 252, + "followtask": 253, + "cond": [], + "tiaozhuan": 33, + "order": 53, + "special": 0, + "show": "" + }, + "253": { + "id": 253, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 150000, + "name": "intr_task_name_223", + "pretask": 253, + "followtask": 254, + "cond": [], + "tiaozhuan": 33, + "order": 54, + "special": 0, + "show": "" + }, + "254": { + "id": 254, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 200000, + "name": "intr_task_name_224", + "pretask": 254, + "followtask": 255, + "cond": [], + "tiaozhuan": 33, + "order": 55, + "special": 0, + "show": "" + }, + "255": { + "id": 255, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 250000, + "name": "intr_task_name_225", + "pretask": 255, + "followtask": 256, + "cond": [], + "tiaozhuan": 33, + "order": 56, + "special": 0, + "show": "" + }, + "256": { + "id": 256, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 300000, + "name": "intr_task_name_226", + "pretask": 256, + "followtask": 257, + "cond": [], + "tiaozhuan": 33, + "order": 57, + "special": 0, + "show": "" + }, + "257": { + "id": 257, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 350000, + "name": "intr_task_name_211", + "pretask": 257, + "followtask": 258, + "cond": [], + "tiaozhuan": 33, + "order": 58, + "special": 0, + "show": "" + }, + "258": { + "id": 258, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 400000, + "name": "intr_task_name_228", + "pretask": 258, + "followtask": 259, + "cond": [], + "tiaozhuan": 33, + "order": 59, + "special": 0, + "show": "" + }, + "259": { + "id": 259, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 450000, + "name": "intr_task_name_229", + "pretask": 259, + "followtask": 260, + "cond": [], + "tiaozhuan": 33, + "order": 60, + "special": 0, + "show": "" + }, + "260": { + "id": 260, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 500000, + "name": "intr_task_name_230", + "pretask": 260, + "followtask": 245, + "cond": [], + "tiaozhuan": 33, + "order": 61, + "special": 0, + "show": "" + }, + "261": { + "id": 261, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 550000, + "name": "intr_task_name_231", + "pretask": 245, + "followtask": 262, + "cond": [], + "tiaozhuan": 33, + "order": 62, + "special": 0, + "show": "" + }, + "262": { + "id": 262, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 600000, + "name": "intr_task_name_232", + "pretask": 262, + "followtask": 263, + "cond": [], + "tiaozhuan": 33, + "order": 63, + "special": 0, + "show": "" + }, + "263": { + "id": 263, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 650000, + "name": "intr_task_name_233", + "pretask": 263, + "followtask": 264, + "cond": [], + "tiaozhuan": 33, + "order": 64, + "special": 0, + "show": "" + }, + "264": { + "id": 264, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 700000, + "name": "intr_task_name_234", + "pretask": 264, + "followtask": 265, + "cond": [], + "tiaozhuan": 33, + "order": 65, + "special": 0, + "show": "" + }, + "265": { + "id": 265, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 750000, + "name": "intr_task_name_235", + "pretask": 265, + "followtask": 266, + "cond": [], + "tiaozhuan": 33, + "order": 66, + "special": 0, + "show": "" + }, + "266": { + "id": 266, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 800000, + "name": "intr_task_name_236", + "pretask": 266, + "followtask": 267, + "cond": [], + "tiaozhuan": 33, + "order": 67, + "special": 0, + "show": "" + }, + "267": { + "id": 267, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 850000, + "name": "intr_task_name_237", + "pretask": 267, + "followtask": 268, + "cond": [], + "tiaozhuan": 33, + "order": 68, + "special": 0, + "show": "" + }, + "268": { + "id": 268, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 900000, + "name": "intr_task_name_238", + "pretask": 268, + "followtask": 269, + "cond": [], + "tiaozhuan": 33, + "order": 69, + "special": 0, + "show": "" + }, + "269": { + "id": 269, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 950000, + "name": "intr_task_name_239", + "pretask": 269, + "followtask": 270, + "cond": [], + "tiaozhuan": 33, + "order": 70, + "special": 0, + "show": "" + }, + "270": { + "id": 270, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 1000000, + "name": "intr_task_name_240", + "pretask": 270, + "followtask": 271, + "cond": [], + "tiaozhuan": 33, + "order": 71, + "special": 0, + "show": "" + }, + "271": { + "id": 271, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 1050000, + "name": "intr_task_name_241", + "pretask": 271, + "followtask": 272, + "cond": [], + "tiaozhuan": 33, + "order": 72, + "special": 0, + "show": "" + }, + "272": { + "id": 272, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 1100000, + "name": "intr_task_name_242", + "pretask": 272, + "followtask": 273, + "cond": [], + "tiaozhuan": 33, + "order": 73, + "special": 0, + "show": "" + }, + "273": { + "id": 273, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 1150000, + "name": "intr_task_name_243", + "pretask": 273, + "followtask": 274, + "cond": [], + "tiaozhuan": 33, + "order": 74, + "special": 0, + "show": "" + }, + "274": { + "id": 274, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 1200000, + "name": "intr_task_name_244", + "pretask": 274, + "followtask": 275, + "cond": [], + "tiaozhuan": 33, + "order": 75, + "special": 0, + "show": "" + }, + "275": { + "id": 275, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 1250000, + "name": "intr_task_name_245", + "pretask": 275, + "followtask": 276, + "cond": [], + "tiaozhuan": 33, + "order": 76, + "special": 0, + "show": "" + }, + "276": { + "id": 276, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 1300000, + "name": "intr_task_name_246", + "pretask": 276, + "followtask": 277, + "cond": [], + "tiaozhuan": 33, + "order": 77, + "special": 0, + "show": "" + }, + "277": { + "id": 277, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 1350000, + "name": "intr_task_name_247", + "pretask": 277, + "followtask": 278, + "cond": [], + "tiaozhuan": 33, + "order": 78, + "special": 0, + "show": "" + }, + "278": { + "id": 278, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 1400000, + "name": "intr_task_name_248", + "pretask": 278, + "followtask": 279, + "cond": [], + "tiaozhuan": 33, + "order": 79, + "special": 0, + "show": "" + }, + "279": { + "id": 279, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 1450000, + "name": "intr_task_name_249", + "pretask": 279, + "followtask": 280, + "cond": [], + "tiaozhuan": 33, + "order": 80, + "special": 0, + "show": "" + }, + "280": { + "id": 280, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 1500000, + "name": "intr_task_name_250", + "pretask": 280, + "followtask": 281, + "cond": [], + "tiaozhuan": 33, + "order": 81, + "special": 0, + "show": "" + }, + "281": { + "id": 281, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 1550000, + "name": "intr_task_name_251", + "pretask": 281, + "followtask": 282, + "cond": [], + "tiaozhuan": 33, + "order": 82, + "special": 0, + "show": "" + }, + "282": { + "id": 282, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 1600000, + "name": "intr_task_name_252", + "pretask": 282, + "followtask": 283, + "cond": [], + "tiaozhuan": 33, + "order": 83, + "special": 0, + "show": "" + }, + "283": { + "id": 283, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 1650000, + "name": "intr_task_name_253", + "pretask": 283, + "followtask": 284, + "cond": [], + "tiaozhuan": 33, + "order": 84, + "special": 0, + "show": "" + }, + "284": { + "id": 284, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 1700000, + "name": "intr_task_name_254", + "pretask": 284, + "followtask": 285, + "cond": [], + "tiaozhuan": 33, + "order": 85, + "special": 0, + "show": "" + }, + "285": { + "id": 285, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 1750000, + "name": "intr_task_name_255", + "pretask": 285, + "followtask": 286, + "cond": [], + "tiaozhuan": 33, + "order": 86, + "special": 0, + "show": "" + }, + "286": { + "id": 286, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 1800000, + "name": "intr_task_name_256", + "pretask": 286, + "followtask": 287, + "cond": [], + "tiaozhuan": 33, + "order": 87, + "special": 0, + "show": "" + }, + "287": { + "id": 287, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 1850000, + "name": "intr_task_name_257", + "pretask": 287, + "followtask": 288, + "cond": [], + "tiaozhuan": 33, + "order": 88, + "special": 0, + "show": "" + }, + "288": { + "id": 288, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 1900000, + "name": "intr_task_name_258", + "pretask": 288, + "followtask": 289, + "cond": [], + "tiaozhuan": 33, + "order": 89, + "special": 0, + "show": "" + }, + "289": { + "id": 289, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 1950000, + "name": "intr_task_name_259", + "pretask": 289, + "followtask": 290, + "cond": [], + "tiaozhuan": 33, + "order": 90, + "special": 0, + "show": "" + }, + "290": { + "id": 290, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 2000000, + "name": "intr_task_name_260", + "pretask": 290, + "followtask": 291, + "cond": [], + "tiaozhuan": 33, + "order": 91, + "special": 0, + "show": "" + }, + "291": { + "id": 291, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 2050000, + "name": "intr_task_name_261", + "pretask": 291, + "followtask": 292, + "cond": [], + "tiaozhuan": 33, + "order": 92, + "special": 0, + "show": "" + }, + "292": { + "id": 292, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 2100000, + "name": "intr_task_name_262", + "pretask": 292, + "followtask": 293, + "cond": [], + "tiaozhuan": 33, + "order": 93, + "special": 0, + "show": "" + }, + "293": { + "id": 293, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 2150000, + "name": "intr_task_name_263", + "pretask": 293, + "followtask": 294, + "cond": [], + "tiaozhuan": 33, + "order": 94, + "special": 0, + "show": "" + }, + "294": { + "id": 294, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 2200000, + "name": "intr_task_name_264", + "pretask": 294, + "followtask": 295, + "cond": [], + "tiaozhuan": 33, + "order": 95, + "special": 0, + "show": "" + }, + "295": { + "id": 295, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 2250000, + "name": "intr_task_name_265", + "pretask": 295, + "followtask": 296, + "cond": [], + "tiaozhuan": 33, + "order": 96, + "special": 0, + "show": "" + }, + "296": { + "id": 296, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 2300000, + "name": "intr_task_name_266", + "pretask": 296, + "followtask": 297, + "cond": [], + "tiaozhuan": 33, + "order": 97, + "special": 0, + "show": "" + }, + "297": { + "id": 297, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 2350000, + "name": "intr_task_name_267", + "pretask": 297, + "followtask": 298, + "cond": [], + "tiaozhuan": 33, + "order": 98, + "special": 0, + "show": "" + }, + "298": { + "id": 298, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 2400000, + "name": "intr_task_name_268", + "pretask": 298, + "followtask": 299, + "cond": [], + "tiaozhuan": 33, + "order": 99, + "special": 0, + "show": "" + }, + "299": { + "id": 299, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 2450000, + "name": "intr_task_name_269", + "pretask": 299, + "followtask": 300, + "cond": [], + "tiaozhuan": 33, + "order": 100, + "special": 0, + "show": "" + }, + "300": { + "id": 300, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 2500000, + "name": "intr_task_name_270", + "pretask": 300, + "followtask": 301, + "cond": [], + "tiaozhuan": 1, + "order": 101, + "special": 0, + "show": "" + }, + "301": { + "id": 301, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 2550000, + "name": "intr_task_name_271", + "pretask": 301, + "followtask": 302, + "cond": [], + "tiaozhuan": 3, + "order": 102, + "special": 0, + "show": "" + }, + "302": { + "id": 302, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 2600000, + "name": "intr_task_name_272", + "pretask": 302, + "followtask": 303, + "cond": [], + "tiaozhuan": 1, + "order": 103, + "special": 0, + "show": "" + }, + "303": { + "id": 303, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 2650000, + "name": "intr_task_name_273", + "pretask": 303, + "followtask": 304, + "cond": [], + "tiaozhuan": 1, + "order": 104, + "special": 0, + "show": "" + }, + "304": { + "id": 304, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 2700000, + "name": "intr_task_name_274", + "pretask": 304, + "followtask": 305, + "cond": [], + "tiaozhuan": 3, + "order": 105, + "special": 0, + "show": "" + }, + "305": { + "id": 305, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 2750000, + "name": "intr_task_name_275", + "pretask": 305, + "followtask": 306, + "cond": [], + "tiaozhuan": 1, + "order": 106, + "special": 0, + "show": "" + }, + "306": { + "id": 306, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 2800000, + "name": "intr_task_name_276", + "pretask": 306, + "followtask": 307, + "cond": [], + "tiaozhuan": 3, + "order": 107, + "special": 0, + "show": "" + }, + "307": { + "id": 307, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 2850000, + "name": "intr_task_name_277", + "pretask": 307, + "followtask": 308, + "cond": [], + "tiaozhuan": 1, + "order": 108, + "special": 0, + "show": "" + }, + "308": { + "id": 308, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 2900000, + "name": "intr_task_name_278", + "pretask": 308, + "followtask": 309, + "cond": [], + "tiaozhuan": 3, + "order": 109, + "special": 0, + "show": "" + }, + "309": { + "id": 309, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 2950000, + "name": "intr_task_name_279", + "pretask": 309, + "followtask": 310, + "cond": [], + "tiaozhuan": 1, + "order": 110, + "special": 0, + "show": "" + }, + "310": { + "id": 310, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 3000000, + "name": "intr_task_name_280", + "pretask": 310, + "followtask": 311, + "cond": [], + "tiaozhuan": 33, + "order": 111, + "special": 0, + "show": "" + }, + "311": { + "id": 311, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 3050000, + "name": "intr_task_name_281", + "pretask": 311, + "followtask": 312, + "cond": [], + "tiaozhuan": 33, + "order": 112, + "special": 0, + "show": "" + }, + "312": { + "id": 312, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 3100000, + "name": "intr_task_name_282", + "pretask": 312, + "followtask": 313, + "cond": [], + "tiaozhuan": 33, + "order": 113, + "special": 0, + "show": "" + }, + "313": { + "id": 313, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 3150000, + "name": "intr_task_name_283", + "pretask": 313, + "followtask": 314, + "cond": [], + "tiaozhuan": 33, + "order": 114, + "special": 0, + "show": "" + }, + "314": { + "id": 314, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 3200000, + "name": "intr_task_name_284", + "pretask": 314, + "followtask": 315, + "cond": [], + "tiaozhuan": 33, + "order": 115, + "special": 0, + "show": "" + }, + "315": { + "id": 315, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 3250000, + "name": "intr_task_name_285", + "pretask": 315, + "followtask": 316, + "cond": [], + "tiaozhuan": 33, + "order": 116, + "special": 0, + "show": "" + }, + "316": { + "id": 316, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 3300000, + "name": "intr_task_name_286", + "pretask": 316, + "followtask": 317, + "cond": [], + "tiaozhuan": 33, + "order": 117, + "special": 0, + "show": "" + }, + "317": { + "id": 317, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 3350000, + "name": "intr_task_name_287", + "pretask": 317, + "followtask": 318, + "cond": [], + "tiaozhuan": 33, + "order": 118, + "special": 0, + "show": "" + }, + "318": { + "id": 318, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 3400000, + "name": "intr_task_name_288", + "pretask": 318, + "followtask": 319, + "cond": [], + "tiaozhuan": 33, + "order": 119, + "special": 0, + "show": "" + }, + "319": { + "id": 319, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 3450000, + "name": "intr_task_name_289", + "pretask": 319, + "followtask": 320, + "cond": [], + "tiaozhuan": 33, + "order": 120, + "special": 0, + "show": "" + }, + "320": { + "id": 320, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 3500000, + "name": "intr_task_name_290", + "pretask": 320, + "followtask": 321, + "cond": [], + "tiaozhuan": 33, + "order": 121, + "special": 0, + "show": "" + }, + "321": { + "id": 321, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 3550000, + "name": "intr_task_name_291", + "pretask": 321, + "followtask": 322, + "cond": [], + "tiaozhuan": 33, + "order": 122, + "special": 0, + "show": "" + }, + "322": { + "id": 322, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 3600000, + "name": "intr_task_name_292", + "pretask": 322, + "followtask": 323, + "cond": [], + "tiaozhuan": 33, + "order": 123, + "special": 0, + "show": "" + }, + "323": { + "id": 323, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 3650000, + "name": "intr_task_name_293", + "pretask": 323, + "followtask": 324, + "cond": [], + "tiaozhuan": 33, + "order": 124, + "special": 0, + "show": "" + }, + "324": { + "id": 324, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 3700000, + "name": "intr_task_name_294", + "pretask": 324, + "followtask": 325, + "cond": [], + "tiaozhuan": 33, + "order": 125, + "special": 0, + "show": "" + }, + "325": { + "id": 325, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 3750000, + "name": "intr_task_name_295", + "pretask": 325, + "followtask": 326, + "cond": [], + "tiaozhuan": 33, + "order": 126, + "special": 0, + "show": "" + }, + "326": { + "id": 326, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 3800000, + "name": "intr_task_name_296", + "pretask": 326, + "followtask": 327, + "cond": [], + "tiaozhuan": 33, + "order": 127, + "special": 0, + "show": "" + }, + "327": { + "id": 327, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 3850000, + "name": "intr_task_name_297", + "pretask": 327, + "followtask": 328, + "cond": [], + "tiaozhuan": 33, + "order": 128, + "special": 0, + "show": "" + }, + "328": { + "id": 328, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 3900000, + "name": "intr_task_name_298", + "pretask": 328, + "followtask": 329, + "cond": [], + "tiaozhuan": 33, + "order": 129, + "special": 0, + "show": "" + }, + "329": { + "id": 329, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 3950000, + "name": "intr_task_name_299", + "pretask": 329, + "followtask": 330, + "cond": [], + "tiaozhuan": 33, + "order": 130, + "special": 0, + "show": "" + }, + "330": { + "id": 330, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 4000000, + "name": "intr_task_name_300", + "pretask": 330, + "followtask": 331, + "cond": [], + "tiaozhuan": 33, + "order": 131, + "special": 0, + "show": "" + }, + "331": { + "id": 331, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 4050000, + "name": "intr_task_name_301", + "pretask": 331, + "followtask": 332, + "cond": [], + "tiaozhuan": 33, + "order": 132, + "special": 0, + "show": "" + }, + "332": { + "id": 332, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 4100000, + "name": "intr_task_name_302", + "pretask": 332, + "followtask": 333, + "cond": [], + "tiaozhuan": 33, + "order": 133, + "special": 0, + "show": "" + }, + "333": { + "id": 333, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 4150000, + "name": "intr_task_name_303", + "pretask": 333, + "followtask": 334, + "cond": [], + "tiaozhuan": 33, + "order": 134, + "special": 0, + "show": "" + }, + "334": { + "id": 334, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 4200000, + "name": "intr_task_name_304", + "pretask": 334, + "followtask": 335, + "cond": [], + "tiaozhuan": 33, + "order": 135, + "special": 0, + "show": "" + }, + "335": { + "id": 335, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 4250000, + "name": "intr_task_name_305", + "pretask": 335, + "followtask": 336, + "cond": [], + "tiaozhuan": 33, + "order": 136, + "special": 0, + "show": "" + }, + "336": { + "id": 336, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 4300000, + "name": "intr_task_name_306", + "pretask": 336, + "followtask": 337, + "cond": [], + "tiaozhuan": 33, + "order": 137, + "special": 0, + "show": "" + }, + "337": { + "id": 337, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 4350000, + "name": "intr_task_name_307", + "pretask": 337, + "followtask": 338, + "cond": [], + "tiaozhuan": 33, + "order": 138, + "special": 0, + "show": "" + }, + "338": { + "id": 338, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 4400000, + "name": "intr_task_name_308", + "pretask": 338, + "followtask": 339, + "cond": [], + "tiaozhuan": 33, + "order": 139, + "special": 0, + "show": "" + }, + "339": { + "id": 339, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 4450000, + "name": "intr_task_name_309", + "pretask": 339, + "followtask": 340, + "cond": [], + "tiaozhuan": 33, + "order": 140, + "special": 0, + "show": "" + }, + "340": { + "id": 340, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 4500000, + "name": "intr_task_name_310", + "pretask": 340, + "followtask": 341, + "cond": [], + "tiaozhuan": 33, + "order": 141, + "special": 0, + "show": "" + }, + "341": { + "id": 341, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 4550000, + "name": "intr_task_name_311", + "pretask": 341, + "followtask": 342, + "cond": [], + "tiaozhuan": 33, + "order": 142, + "special": 0, + "show": "" + }, + "342": { + "id": 342, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 4600000, + "name": "intr_task_name_312", + "pretask": 342, + "followtask": 343, + "cond": [], + "tiaozhuan": 33, + "order": 143, + "special": 0, + "show": "" + }, + "343": { + "id": 343, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 4650000, + "name": "intr_task_name_313", + "pretask": 343, + "followtask": 344, + "cond": [], + "tiaozhuan": 33, + "order": 144, + "special": 0, + "show": "" + }, + "344": { + "id": 344, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 4700000, + "name": "intr_task_name_314", + "pretask": 344, + "followtask": 345, + "cond": [], + "tiaozhuan": 33, + "order": 145, + "special": 0, + "show": "" + }, + "345": { + "id": 345, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 4750000, + "name": "intr_task_name_315", + "pretask": 345, + "followtask": 346, + "cond": [], + "tiaozhuan": 33, + "order": 146, + "special": 0, + "show": "" + }, + "346": { + "id": 346, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 4800000, + "name": "intr_task_name_316", + "pretask": 346, + "followtask": 347, + "cond": [], + "tiaozhuan": 33, + "order": 147, + "special": 0, + "show": "" + }, + "347": { + "id": 347, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 4850000, + "name": "intr_task_name_317", + "pretask": 347, + "followtask": 348, + "cond": [], + "tiaozhuan": 33, + "order": 148, + "special": 0, + "show": "" + }, + "348": { + "id": 348, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 4900000, + "name": "intr_task_name_318", + "pretask": 348, + "followtask": 349, + "cond": [], + "tiaozhuan": 33, + "order": 149, + "special": 0, + "show": "" + }, + "349": { + "id": 349, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 4950000, + "name": "intr_task_name_319", + "pretask": 349, + "followtask": 350, + "cond": [], + "tiaozhuan": 33, + "order": 150, + "special": 0, + "show": "" + }, + "350": { + "id": 350, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 5000000, + "name": "intr_task_name_320", + "pretask": 350, + "followtask": 351, + "cond": [], + "tiaozhuan": 33, + "order": 151, + "special": 0, + "show": "" + }, + "351": { + "id": 351, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 5050000, + "name": "intr_task_name_321", + "pretask": 351, + "followtask": 352, + "cond": [], + "tiaozhuan": 33, + "order": 152, + "special": 0, + "show": "" + }, + "352": { + "id": 352, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 5100000, + "name": "intr_task_name_322", + "pretask": 352, + "followtask": 353, + "cond": [], + "tiaozhuan": 33, + "order": 153, + "special": 0, + "show": "" + }, + "353": { + "id": 353, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 5150000, + "name": "intr_task_name_323", + "pretask": 353, + "followtask": 354, + "cond": [], + "tiaozhuan": 33, + "order": 154, + "special": 0, + "show": "" + }, + "354": { + "id": 354, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 5200000, + "name": "intr_task_name_324", + "pretask": 354, + "followtask": 355, + "cond": [], + "tiaozhuan": 33, + "order": 155, + "special": 0, + "show": "" + }, + "355": { + "id": 355, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 5250000, + "name": "intr_task_name_325", + "pretask": 355, + "followtask": 356, + "cond": [], + "tiaozhuan": 33, + "order": 156, + "special": 0, + "show": "" + }, + "356": { + "id": 356, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 5300000, + "name": "intr_task_name_326", + "pretask": 356, + "followtask": 357, + "cond": [], + "tiaozhuan": 33, + "order": 157, + "special": 0, + "show": "" + }, + "357": { + "id": 357, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 5350000, + "name": "intr_task_name_311", + "pretask": 357, + "followtask": 358, + "cond": [], + "tiaozhuan": 33, + "order": 158, + "special": 0, + "show": "" + }, + "358": { + "id": 358, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 5400000, + "name": "intr_task_name_328", + "pretask": 358, + "followtask": 359, + "cond": [], + "tiaozhuan": 33, + "order": 159, + "special": 0, + "show": "" + }, + "359": { + "id": 359, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 5450000, + "name": "intr_task_name_329", + "pretask": 359, + "followtask": 360, + "cond": [], + "tiaozhuan": 33, + "order": 160, + "special": 0, + "show": "" + }, + "360": { + "id": 360, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 5500000, + "name": "intr_task_name_330", + "pretask": 360, + "followtask": 345, + "cond": [], + "tiaozhuan": 33, + "order": 161, + "special": 0, + "show": "" + }, + "361": { + "id": 361, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 5550000, + "name": "intr_task_name_331", + "pretask": 345, + "followtask": 362, + "cond": [], + "tiaozhuan": 33, + "order": 162, + "special": 0, + "show": "" + }, + "362": { + "id": 362, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 5600000, + "name": "intr_task_name_332", + "pretask": 362, + "followtask": 363, + "cond": [], + "tiaozhuan": 33, + "order": 163, + "special": 0, + "show": "" + }, + "363": { + "id": 363, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 5650000, + "name": "intr_task_name_333", + "pretask": 363, + "followtask": 364, + "cond": [], + "tiaozhuan": 33, + "order": 164, + "special": 0, + "show": "" + }, + "364": { + "id": 364, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 5700000, + "name": "intr_task_name_334", + "pretask": 364, + "followtask": 365, + "cond": [], + "tiaozhuan": 33, + "order": 165, + "special": 0, + "show": "" + }, + "365": { + "id": 365, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 5750000, + "name": "intr_task_name_335", + "pretask": 365, + "followtask": 366, + "cond": [], + "tiaozhuan": 33, + "order": 166, + "special": 0, + "show": "" + }, + "366": { + "id": 366, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 5800000, + "name": "intr_task_name_336", + "pretask": 366, + "followtask": 367, + "cond": [], + "tiaozhuan": 33, + "order": 167, + "special": 0, + "show": "" + }, + "367": { + "id": 367, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 5850000, + "name": "intr_task_name_337", + "pretask": 367, + "followtask": 368, + "cond": [], + "tiaozhuan": 33, + "order": 168, + "special": 0, + "show": "" + }, + "368": { + "id": 368, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 5900000, + "name": "intr_task_name_338", + "pretask": 368, + "followtask": 369, + "cond": [], + "tiaozhuan": 33, + "order": 169, + "special": 0, + "show": "" + }, + "369": { + "id": 369, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 5950000, + "name": "intr_task_name_339", + "pretask": 369, + "followtask": 370, + "cond": [], + "tiaozhuan": 33, + "order": 170, + "special": 0, + "show": "" + }, + "370": { + "id": 370, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 6000000, + "name": "intr_task_name_340", + "pretask": 370, + "followtask": 371, + "cond": [], + "tiaozhuan": 33, + "order": 171, + "special": 0, + "show": "" + }, + "371": { + "id": 371, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 6050000, + "name": "intr_task_name_341", + "pretask": 371, + "followtask": 372, + "cond": [], + "tiaozhuan": 33, + "order": 172, + "special": 0, + "show": "" + }, + "372": { + "id": 372, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 6100000, + "name": "intr_task_name_342", + "pretask": 372, + "followtask": 373, + "cond": [], + "tiaozhuan": 33, + "order": 173, + "special": 0, + "show": "" + }, + "373": { + "id": 373, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 6150000, + "name": "intr_task_name_343", + "pretask": 373, + "followtask": 374, + "cond": [], + "tiaozhuan": 33, + "order": 174, + "special": 0, + "show": "" + }, + "374": { + "id": 374, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 6200000, + "name": "intr_task_name_344", + "pretask": 374, + "followtask": 375, + "cond": [], + "tiaozhuan": 33, + "order": 175, + "special": 0, + "show": "" + }, + "375": { + "id": 375, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 6250000, + "name": "intr_task_name_345", + "pretask": 375, + "followtask": 376, + "cond": [], + "tiaozhuan": 33, + "order": 176, + "special": 0, + "show": "" + }, + "376": { + "id": 376, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 6300000, + "name": "intr_task_name_346", + "pretask": 376, + "followtask": 377, + "cond": [], + "tiaozhuan": 33, + "order": 177, + "special": 0, + "show": "" + }, + "377": { + "id": 377, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 6350000, + "name": "intr_task_name_347", + "pretask": 377, + "followtask": 378, + "cond": [], + "tiaozhuan": 33, + "order": 178, + "special": 0, + "show": "" + }, + "378": { + "id": 378, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 6400000, + "name": "intr_task_name_348", + "pretask": 378, + "followtask": 379, + "cond": [], + "tiaozhuan": 33, + "order": 179, + "special": 0, + "show": "" + }, + "379": { + "id": 379, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 6450000, + "name": "intr_task_name_349", + "pretask": 379, + "followtask": 380, + "cond": [], + "tiaozhuan": 33, + "order": 180, + "special": 0, + "show": "" + }, + "380": { + "id": 380, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 6500000, + "name": "intr_task_name_350", + "pretask": 380, + "followtask": 381, + "cond": [], + "tiaozhuan": 33, + "order": 181, + "special": 0, + "show": "" + }, + "381": { + "id": 381, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 6550000, + "name": "intr_task_name_351", + "pretask": 381, + "followtask": 382, + "cond": [], + "tiaozhuan": 33, + "order": 182, + "special": 0, + "show": "" + }, + "382": { + "id": 382, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 6600000, + "name": "intr_task_name_352", + "pretask": 382, + "followtask": 383, + "cond": [], + "tiaozhuan": 33, + "order": 183, + "special": 0, + "show": "" + }, + "383": { + "id": 383, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 6650000, + "name": "intr_task_name_353", + "pretask": 383, + "followtask": 384, + "cond": [], + "tiaozhuan": 33, + "order": 184, + "special": 0, + "show": "" + }, + "384": { + "id": 384, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 6700000, + "name": "intr_task_name_354", + "pretask": 384, + "followtask": 385, + "cond": [], + "tiaozhuan": 33, + "order": 185, + "special": 0, + "show": "" + }, + "385": { + "id": 385, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 6750000, + "name": "intr_task_name_355", + "pretask": 385, + "followtask": 386, + "cond": [], + "tiaozhuan": 33, + "order": 186, + "special": 0, + "show": "" + }, + "386": { + "id": 386, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 6800000, + "name": "intr_task_name_356", + "pretask": 386, + "followtask": 387, + "cond": [], + "tiaozhuan": 33, + "order": 187, + "special": 0, + "show": "" + }, + "387": { + "id": 387, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 6850000, + "name": "intr_task_name_357", + "pretask": 387, + "followtask": 388, + "cond": [], + "tiaozhuan": 33, + "order": 188, + "special": 0, + "show": "" + }, + "388": { + "id": 388, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 6900000, + "name": "intr_task_name_358", + "pretask": 388, + "followtask": 389, + "cond": [], + "tiaozhuan": 33, + "order": 189, + "special": 0, + "show": "" + }, + "389": { + "id": 389, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 6950000, + "name": "intr_task_name_359", + "pretask": 389, + "followtask": 390, + "cond": [], + "tiaozhuan": 33, + "order": 190, + "special": 0, + "show": "" + }, + "390": { + "id": 390, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 7000000, + "name": "intr_task_name_360", + "pretask": 390, + "followtask": 391, + "cond": [], + "tiaozhuan": 33, + "order": 191, + "special": 0, + "show": "" + }, + "391": { + "id": 391, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 7050000, + "name": "intr_task_name_361", + "pretask": 391, + "followtask": 392, + "cond": [], + "tiaozhuan": 33, + "order": 192, + "special": 0, + "show": "" + }, + "392": { + "id": 392, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 7100000, + "name": "intr_task_name_362", + "pretask": 392, + "followtask": 393, + "cond": [], + "tiaozhuan": 33, + "order": 193, + "special": 0, + "show": "" + }, + "393": { + "id": 393, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 7150000, + "name": "intr_task_name_363", + "pretask": 393, + "followtask": 394, + "cond": [], + "tiaozhuan": 33, + "order": 194, + "special": 0, + "show": "" + }, + "394": { + "id": 394, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 7200000, + "name": "intr_task_name_364", + "pretask": 394, + "followtask": 395, + "cond": [], + "tiaozhuan": 33, + "order": 195, + "special": 0, + "show": "" + }, + "395": { + "id": 395, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 7250000, + "name": "intr_task_name_365", + "pretask": 395, + "followtask": 396, + "cond": [], + "tiaozhuan": 33, + "order": 196, + "special": 0, + "show": "" + }, + "396": { + "id": 396, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 7300000, + "name": "intr_task_name_366", + "pretask": 396, + "followtask": 397, + "cond": [], + "tiaozhuan": 33, + "order": 197, + "special": 0, + "show": "" + }, + "397": { + "id": 397, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 7350000, + "name": "intr_task_name_367", + "pretask": 397, + "followtask": 398, + "cond": [], + "tiaozhuan": 33, + "order": 198, + "special": 0, + "show": "" + }, + "398": { + "id": 398, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 7400000, + "name": "intr_task_name_368", + "pretask": 398, + "followtask": 399, + "cond": [], + "tiaozhuan": 33, + "order": 199, + "special": 0, + "show": "" + }, + "399": { + "id": 399, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 7450000, + "name": "intr_task_name_369", + "pretask": 399, + "followtask": 400, + "cond": [], + "tiaozhuan": 33, + "order": 200, + "special": 0, + "show": "" + }, + "400": { + "id": 400, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 7500000, + "name": "intr_task_name_370", + "pretask": 400, + "followtask": 401, + "cond": [], + "tiaozhuan": 33, + "order": 201, + "special": 0, + "show": "" + }, + "401": { + "id": 401, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 7550000, + "name": "intr_task_name_371", + "pretask": 401, + "followtask": 402, + "cond": [], + "tiaozhuan": 33, + "order": 202, + "special": 0, + "show": "" + }, + "402": { + "id": 402, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 7600000, + "name": "intr_task_name_372", + "pretask": 402, + "followtask": 403, + "cond": [], + "tiaozhuan": 33, + "order": 203, + "special": 0, + "show": "" + }, + "403": { + "id": 403, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 7650000, + "name": "intr_task_name_373", + "pretask": 403, + "followtask": 404, + "cond": [], + "tiaozhuan": 33, + "order": 204, + "special": 0, + "show": "" + }, + "404": { + "id": 404, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 7700000, + "name": "intr_task_name_374", + "pretask": 404, + "followtask": 405, + "cond": [], + "tiaozhuan": 33, + "order": 205, + "special": 0, + "show": "" + }, + "405": { + "id": 405, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 7750000, + "name": "intr_task_name_375", + "pretask": 405, + "followtask": 406, + "cond": [], + "tiaozhuan": 33, + "order": 206, + "special": 0, + "show": "" + }, + "406": { + "id": 406, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 7800000, + "name": "intr_task_name_376", + "pretask": 406, + "followtask": 407, + "cond": [], + "tiaozhuan": 33, + "order": 207, + "special": 0, + "show": "" + }, + "407": { + "id": 407, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 7850000, + "name": "intr_task_name_377", + "pretask": 407, + "followtask": 408, + "cond": [], + "tiaozhuan": 33, + "order": 208, + "special": 0, + "show": "" + }, + "408": { + "id": 408, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 7900000, + "name": "intr_task_name_378", + "pretask": 408, + "followtask": 409, + "cond": [], + "tiaozhuan": 33, + "order": 209, + "special": 0, + "show": "" + }, + "409": { + "id": 409, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 7950000, + "name": "intr_task_name_379", + "pretask": 409, + "followtask": 410, + "cond": [], + "tiaozhuan": 33, + "order": 210, + "special": 0, + "show": "" + }, + "410": { + "id": 410, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 8000000, + "name": "intr_task_name_380", + "pretask": 410, + "followtask": 411, + "cond": [], + "tiaozhuan": 33, + "order": 211, + "special": 0, + "show": "" + }, + "411": { + "id": 411, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 8050000, + "name": "intr_task_name_381", + "pretask": 411, + "followtask": 412, + "cond": [], + "tiaozhuan": 33, + "order": 212, + "special": 0, + "show": "" + }, + "412": { + "id": 412, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 8100000, + "name": "intr_task_name_382", + "pretask": 412, + "followtask": 413, + "cond": [], + "tiaozhuan": 33, + "order": 213, + "special": 0, + "show": "" + }, + "413": { + "id": 413, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 8150000, + "name": "intr_task_name_383", + "pretask": 413, + "followtask": 414, + "cond": [], + "tiaozhuan": 33, + "order": 214, + "special": 0, + "show": "" + }, + "414": { + "id": 414, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 8200000, + "name": "intr_task_name_384", + "pretask": 414, + "followtask": 415, + "cond": [], + "tiaozhuan": 33, + "order": 215, + "special": 0, + "show": "" + }, + "415": { + "id": 415, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 8250000, + "name": "intr_task_name_385", + "pretask": 415, + "followtask": 416, + "cond": [], + "tiaozhuan": 33, + "order": 216, + "special": 0, + "show": "" + }, + "416": { + "id": 416, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 8300000, + "name": "intr_task_name_386", + "pretask": 416, + "followtask": 417, + "cond": [], + "tiaozhuan": 33, + "order": 217, + "special": 0, + "show": "" + }, + "417": { + "id": 417, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 8350000, + "name": "intr_task_name_387", + "pretask": 417, + "followtask": 418, + "cond": [], + "tiaozhuan": 33, + "order": 218, + "special": 0, + "show": "" + }, + "418": { + "id": 418, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 8400000, + "name": "intr_task_name_388", + "pretask": 418, + "followtask": 419, + "cond": [], + "tiaozhuan": 33, + "order": 219, + "special": 0, + "show": "" + }, + "419": { + "id": 419, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 8450000, + "name": "intr_task_name_389", + "pretask": 419, + "followtask": 420, + "cond": [], + "tiaozhuan": 33, + "order": 220, + "special": 0, + "show": "" + }, + "420": { + "id": 420, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 8500000, + "name": "intr_task_name_390", + "pretask": 420, + "followtask": 421, + "cond": [], + "tiaozhuan": 33, + "order": 221, + "special": 0, + "show": "" + }, + "421": { + "id": 421, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 8550000, + "name": "intr_task_name_391", + "pretask": 421, + "followtask": 422, + "cond": [], + "tiaozhuan": 33, + "order": 222, + "special": 0, + "show": "" + }, + "422": { + "id": 422, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 8600000, + "name": "intr_task_name_392", + "pretask": 422, + "followtask": 423, + "cond": [], + "tiaozhuan": 33, + "order": 223, + "special": 0, + "show": "" + }, + "423": { + "id": 423, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 8650000, + "name": "intr_task_name_393", + "pretask": 423, + "followtask": 424, + "cond": [], + "tiaozhuan": 33, + "order": 224, + "special": 0, + "show": "" + }, + "424": { + "id": 424, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 8700000, + "name": "intr_task_name_394", + "pretask": 424, + "followtask": 425, + "cond": [], + "tiaozhuan": 33, + "order": 225, + "special": 0, + "show": "" + }, + "425": { + "id": 425, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 8750000, + "name": "intr_task_name_395", + "pretask": 425, + "followtask": 426, + "cond": [], + "tiaozhuan": 33, + "order": 226, + "special": 0, + "show": "" + }, + "426": { + "id": 426, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 8800000, + "name": "intr_task_name_396", + "pretask": 426, + "followtask": 427, + "cond": [], + "tiaozhuan": 33, + "order": 227, + "special": 0, + "show": "" + }, + "427": { + "id": 427, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 8850000, + "name": "intr_task_name_397", + "pretask": 427, + "followtask": 428, + "cond": [], + "tiaozhuan": 33, + "order": 228, + "special": 0, + "show": "" + }, + "428": { + "id": 428, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 8900000, + "name": "intr_task_name_398", + "pretask": 428, + "followtask": 429, + "cond": [], + "tiaozhuan": 33, + "order": 229, + "special": 0, + "show": "" + }, + "429": { + "id": 429, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 8950000, + "name": "intr_task_name_399", + "pretask": 429, + "followtask": 430, + "cond": [], + "tiaozhuan": 33, + "order": 230, + "special": 0, + "show": "" + }, + "430": { + "id": 430, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 9000000, + "name": "intr_task_name_400", + "pretask": 430, + "followtask": 431, + "cond": [], + "tiaozhuan": 33, + "order": 231, + "special": 0, + "show": "" + }, + "431": { + "id": 431, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 9050000, + "name": "intr_task_name_401", + "pretask": 431, + "followtask": 432, + "cond": [], + "tiaozhuan": 33, + "order": 232, + "special": 0, + "show": "" + }, + "432": { + "id": 432, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 9100000, + "name": "intr_task_name_402", + "pretask": 432, + "followtask": 433, + "cond": [], + "tiaozhuan": 33, + "order": 233, + "special": 0, + "show": "" + }, + "433": { + "id": 433, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 9150000, + "name": "intr_task_name_403", + "pretask": 433, + "followtask": 434, + "cond": [], + "tiaozhuan": 33, + "order": 234, + "special": 0, + "show": "" + }, + "434": { + "id": 434, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 9200000, + "name": "intr_task_name_404", + "pretask": 434, + "followtask": 435, + "cond": [], + "tiaozhuan": 33, + "order": 235, + "special": 0, + "show": "" + }, + "435": { + "id": 435, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 9250000, + "name": "intr_task_name_405", + "pretask": 435, + "followtask": 436, + "cond": [], + "tiaozhuan": 33, + "order": 236, + "special": 0, + "show": "" + }, + "436": { + "id": 436, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 9300000, + "name": "intr_task_name_406", + "pretask": 436, + "followtask": 437, + "cond": [], + "tiaozhuan": 33, + "order": 237, + "special": 0, + "show": "" + }, + "437": { + "id": 437, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 9350000, + "name": "intr_task_name_407", + "pretask": 437, + "followtask": 438, + "cond": [], + "tiaozhuan": 33, + "order": 238, + "special": 0, + "show": "" + }, + "438": { + "id": 438, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 9400000, + "name": "intr_task_name_408", + "pretask": 438, + "followtask": 439, + "cond": [], + "tiaozhuan": 33, + "order": 239, + "special": 0, + "show": "" + }, + "439": { + "id": 439, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 9450000, + "name": "intr_task_name_409", + "pretask": 439, + "followtask": 440, + "cond": [], + "tiaozhuan": 33, + "order": 240, + "special": 0, + "show": "" + }, + "440": { + "id": 440, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 9500000, + "name": "intr_task_name_410", + "pretask": 440, + "followtask": 441, + "cond": [], + "tiaozhuan": 33, + "order": 241, + "special": 0, + "show": "" + }, + "441": { + "id": 441, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 9550000, + "name": "intr_task_name_411", + "pretask": 441, + "followtask": 442, + "cond": [], + "tiaozhuan": 33, + "order": 242, + "special": 0, + "show": "" + }, + "442": { + "id": 442, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 9600000, + "name": "intr_task_name_412", + "pretask": 442, + "followtask": 443, + "cond": [], + "tiaozhuan": 33, + "order": 243, + "special": 0, + "show": "" + }, + "443": { + "id": 443, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 9650000, + "name": "intr_task_name_413", + "pretask": 443, + "followtask": 444, + "cond": [], + "tiaozhuan": 33, + "order": 244, + "special": 0, + "show": "" + }, + "444": { + "id": 444, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 9700000, + "name": "intr_task_name_414", + "pretask": 444, + "followtask": 445, + "cond": [], + "tiaozhuan": 33, + "order": 245, + "special": 0, + "show": "" + }, + "445": { + "id": 445, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 9750000, + "name": "intr_task_name_415", + "pretask": 445, + "followtask": 446, + "cond": [], + "tiaozhuan": 33, + "order": 246, + "special": 0, + "show": "" + }, + "446": { + "id": 446, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 9800000, + "name": "intr_task_name_416", + "pretask": 446, + "followtask": 447, + "cond": [], + "tiaozhuan": 33, + "order": 247, + "special": 0, + "show": "" + }, + "447": { + "id": 447, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 9850000, + "name": "intr_task_name_417", + "pretask": 447, + "followtask": 448, + "cond": [], + "tiaozhuan": 33, + "order": 248, + "special": 0, + "show": "" + }, + "448": { + "id": 448, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 9900000, + "name": "intr_task_name_418", + "pretask": 448, + "followtask": 449, + "cond": [], + "tiaozhuan": 33, + "order": 249, + "special": 0, + "show": "" + }, + "449": { + "id": 449, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 9950000, + "name": "intr_task_name_419", + "pretask": 449, + "followtask": 450, + "cond": [], + "tiaozhuan": 33, + "order": 250, + "special": 0, + "show": "" + }, + "450": { + "id": 450, + "type": 3, + "stype": 116, + "prize": [ + { + "a": "item", + "t": "617", + "n": 1 + } + ], + "pval": 10000000, + "name": "intr_task_name_420", + "pretask": 450, + "followtask": 0, + "cond": [], + "tiaozhuan": 33, + "order": 251, + "special": 0, + "show": "" + }, + "451": { + "id": 451, + "type": 3, + "stype": 112, + "prize": [ + { + "a": "item", + "t": "36", + "n": 5 + }, + { + "a": "attr", + "t": "nexp", + "n": 15000 + } + ], + "pval": 30, + "name": "intr_task_name_2024", + "pretask": 0, + "followtask": 452, + "cond": [], + "tiaozhuan": 68, + "order": 252, + "special": 0, + "show": "" + }, + "452": { + "id": 452, + "type": 3, + "stype": 112, + "prize": [ + { + "a": "item", + "t": "26", + "n": 2 + }, + { + "a": "attr", + "t": "nexp", + "n": 20000 + } + ], + "pval": 35, + "name": "intr_task_name_2024", + "pretask": 452, + "followtask": 453, + "cond": [], + "tiaozhuan": 68, + "order": 253, + "special": 0, + "show": "" + }, + "453": { + "id": 453, + "type": 3, + "stype": 112, + "prize": [ + { + "a": "item", + "t": "26", + "n": 3 + }, + { + "a": "attr", + "t": "nexp", + "n": 20000 + } + ], + "pval": 40, + "name": "intr_task_name_2024", + "pretask": 453, + "followtask": 454, + "cond": [], + "tiaozhuan": 68, + "order": 254, + "special": 0, + "show": "" + }, + "454": { + "id": 454, + "type": 3, + "stype": 112, + "prize": [ + { + "a": "item", + "t": "26", + "n": 5 + }, + { + "a": "attr", + "t": "nexp", + "n": 20000 + } + ], + "pval": 45, + "name": "intr_task_name_2024", + "pretask": 454, + "followtask": 455, + "cond": [], + "tiaozhuan": 68, + "order": 255, + "special": 0, + "show": "" + }, + "455": { + "id": 455, + "type": 3, + "stype": 112, + "prize": [ + { + "a": "item", + "t": "26", + "n": 5 + }, + { + "a": "attr", + "t": "nexp", + "n": 20000 + } + ], + "pval": 50, + "name": "intr_task_name_2024", + "pretask": 455, + "followtask": 456, + "cond": [], + "tiaozhuan": 68, + "order": 256, + "special": 0, + "show": "" + }, + "456": { + "id": 456, + "type": 3, + "stype": 112, + "prize": [ + { + "a": "item", + "t": "26", + "n": 5 + }, + { + "a": "attr", + "t": "nexp", + "n": 20000 + } + ], + "pval": 55, + "name": "intr_task_name_2024", + "pretask": 456, + "followtask": 457, + "cond": [], + "tiaozhuan": 68, + "order": 257, + "special": 0, + "show": "" + }, + "457": { + "id": 457, + "type": 3, + "stype": 112, + "prize": [ + { + "a": "item", + "t": "26", + "n": 5 + }, + { + "a": "attr", + "t": "nexp", + "n": 20000 + } + ], + "pval": 60, + "name": "intr_task_name_2024", + "pretask": 457, + "followtask": 458, + "cond": [], + "tiaozhuan": 68, + "order": 258, + "special": 0, + "show": "" + }, + "458": { + "id": 458, + "type": 3, + "stype": 112, + "prize": [ + { + "a": "item", + "t": "26", + "n": 5 + }, + { + "a": "attr", + "t": "nexp", + "n": 20000 + } + ], + "pval": 65, + "name": "intr_task_name_2024", + "pretask": 458, + "followtask": 459, + "cond": [], + "tiaozhuan": 68, + "order": 259, + "special": 0, + "show": "" + }, + "459": { + "id": 459, + "type": 3, + "stype": 112, + "prize": [ + { + "a": "item", + "t": "26", + "n": 5 + }, + { + "a": "attr", + "t": "nexp", + "n": 20000 + } + ], + "pval": 70, + "name": "intr_task_name_2024", + "pretask": 459, + "followtask": 460, + "cond": [], + "tiaozhuan": 68, + "order": 260, + "special": 0, + "show": "" + }, + "460": { + "id": 460, + "type": 3, + "stype": 112, + "prize": [ + { + "a": "item", + "t": "26", + "n": 5 + }, + { + "a": "attr", + "t": "nexp", + "n": 20000 + } + ], + "pval": 100, + "name": "intr_task_name_2024", + "pretask": 460, + "followtask": 0, + "cond": [], + "tiaozhuan": 68, + "order": 261, + "special": 0, + "show": "" + }, + "461": { + "id": 461, + "type": 3, + "stype": 129, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "607", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "pval": 10000, + "name": "intr_task_name_534", + "pretask": 0, + "followtask": 462, + "cond": [], + "tiaozhuan": 28, + "order": 262, + "special": 0, + "show": "" + }, + "462": { + "id": 462, + "type": 3, + "stype": 129, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 20 + }, + { + "a": "item", + "t": "607", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ], + "pval": 8000, + "name": "intr_task_name_534", + "pretask": 462, + "followtask": 463, + "cond": [], + "tiaozhuan": 28, + "order": 263, + "special": 0, + "show": "" + }, + "463": { + "id": 463, + "type": 3, + "stype": 129, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + }, + { + "a": "item", + "t": "607", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "pval": 6000, + "name": "intr_task_name_534", + "pretask": 463, + "followtask": 464, + "cond": [], + "tiaozhuan": 28, + "order": 264, + "special": 0, + "show": "" + }, + "464": { + "id": 464, + "type": 3, + "stype": 129, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 40 + }, + { + "a": "item", + "t": "607", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "24", + "n": 1 + } + ], + "pval": 4000, + "name": "intr_task_name_534", + "pretask": 464, + "followtask": 465, + "cond": [], + "tiaozhuan": 28, + "order": 265, + "special": 0, + "show": "" + }, + "465": { + "id": 465, + "type": 3, + "stype": 129, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "607", + "n": 3 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "24", + "n": 1 + } + ], + "pval": 2000, + "name": "intr_task_name_534", + "pretask": 465, + "followtask": 466, + "cond": [], + "tiaozhuan": 28, + "order": 266, + "special": 0, + "show": "" + }, + "466": { + "id": 466, + "type": 3, + "stype": 129, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 60 + }, + { + "a": "item", + "t": "607", + "n": 3 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + }, + { + "a": "item", + "t": "24", + "n": 1 + } + ], + "pval": 1000, + "name": "intr_task_name_534", + "pretask": 466, + "followtask": 467, + "cond": [], + "tiaozhuan": 28, + "order": 267, + "special": 0, + "show": "" + }, + "467": { + "id": 467, + "type": 3, + "stype": 129, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 70 + }, + { + "a": "item", + "t": "607", + "n": 3 + }, + { + "a": "attr", + "t": "jinbi", + "n": 800000 + }, + { + "a": "item", + "t": "24", + "n": 1 + } + ], + "pval": 500, + "name": "intr_task_name_534", + "pretask": 467, + "followtask": 468, + "cond": [], + "tiaozhuan": 28, + "order": 268, + "special": 0, + "show": "" + }, + "468": { + "id": 468, + "type": 3, + "stype": 129, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 80 + }, + { + "a": "item", + "t": "607", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 800000 + }, + { + "a": "item", + "t": "24", + "n": 1 + } + ], + "pval": 300, + "name": "intr_task_name_534", + "pretask": 468, + "followtask": 469, + "cond": [], + "tiaozhuan": 28, + "order": 269, + "special": 0, + "show": "" + }, + "469": { + "id": 469, + "type": 3, + "stype": 129, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + }, + { + "a": "item", + "t": "607", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 800000 + }, + { + "a": "item", + "t": "24", + "n": 1 + } + ], + "pval": 150, + "name": "intr_task_name_534", + "pretask": 469, + "followtask": 470, + "cond": [], + "tiaozhuan": 28, + "order": 270, + "special": 0, + "show": "" + }, + "470": { + "id": 470, + "type": 3, + "stype": 129, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 120 + }, + { + "a": "item", + "t": "607", + "n": 4 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + }, + { + "a": "item", + "t": "24", + "n": 1 + } + ], + "pval": 80, + "name": "intr_task_name_534", + "pretask": 470, + "followtask": 471, + "cond": [], + "tiaozhuan": 28, + "order": 271, + "special": 0, + "show": "" + }, + "471": { + "id": 471, + "type": 3, + "stype": 129, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 140 + }, + { + "a": "item", + "t": "607", + "n": 5 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + }, + { + "a": "item", + "t": "24", + "n": 1 + } + ], + "pval": 50, + "name": "intr_task_name_534", + "pretask": 471, + "followtask": 472, + "cond": [], + "tiaozhuan": 28, + "order": 272, + "special": 0, + "show": "" + }, + "472": { + "id": 472, + "type": 3, + "stype": 129, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 160 + }, + { + "a": "item", + "t": "607", + "n": 5 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + }, + { + "a": "item", + "t": "24", + "n": 1 + } + ], + "pval": 35, + "name": "intr_task_name_534", + "pretask": 472, + "followtask": 473, + "cond": [], + "tiaozhuan": 28, + "order": 273, + "special": 0, + "show": "" + }, + "473": { + "id": 473, + "type": 3, + "stype": 129, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 180 + }, + { + "a": "item", + "t": "607", + "n": 5 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + }, + { + "a": "item", + "t": "24", + "n": 1 + } + ], + "pval": 20, + "name": "intr_task_name_534", + "pretask": 473, + "followtask": 474, + "cond": [], + "tiaozhuan": 28, + "order": 274, + "special": 0, + "show": "" + }, + "474": { + "id": 474, + "type": 3, + "stype": 129, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + }, + { + "a": "item", + "t": "607", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + }, + { + "a": "item", + "t": "24", + "n": 1 + } + ], + "pval": 10, + "name": "intr_task_name_534", + "pretask": 474, + "followtask": 475, + "cond": [], + "tiaozhuan": 28, + "order": 275, + "special": 0, + "show": "" + }, + "475": { + "id": 475, + "type": 3, + "stype": 129, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 250 + }, + { + "a": "item", + "t": "607", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1500000 + }, + { + "a": "item", + "t": "24", + "n": 1 + } + ], + "pval": 5, + "name": "intr_task_name_534", + "pretask": 475, + "followtask": 476, + "cond": [], + "tiaozhuan": 28, + "order": 276, + "special": 0, + "show": "" + }, + "476": { + "id": 476, + "type": 3, + "stype": 129, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + }, + { + "a": "item", + "t": "607", + "n": 6 + }, + { + "a": "attr", + "t": "jinbi", + "n": 2000000 + }, + { + "a": "item", + "t": "24", + "n": 1 + } + ], + "pval": 3, + "name": "intr_task_name_534", + "pretask": 476, + "followtask": 477, + "cond": [], + "tiaozhuan": 28, + "order": 277, + "special": 0, + "show": "" + }, + "477": { + "id": 477, + "type": 3, + "stype": 129, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + }, + { + "a": "item", + "t": "607", + "n": 7 + }, + { + "a": "attr", + "t": "jinbi", + "n": 3000000 + }, + { + "a": "item", + "t": "24", + "n": 1 + } + ], + "pval": 2, + "name": "intr_task_name_534", + "pretask": 477, + "followtask": 478, + "cond": [], + "tiaozhuan": 28, + "order": 278, + "special": 0, + "show": "" + }, + "478": { + "id": 478, + "type": 3, + "stype": 129, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + }, + { + "a": "item", + "t": "607", + "n": 8 + }, + { + "a": "attr", + "t": "jinbi", + "n": 5000000 + }, + { + "a": "item", + "t": "24", + "n": 1 + } + ], + "pval": 1, + "name": "intr_task_name_534", + "pretask": 478, + "followtask": 0, + "cond": [], + "tiaozhuan": 28, + "order": 279, + "special": 0, + "show": "" + } + }, + "4": { + "21": { + "id": 21, + "type": 4, + "stype": 999, + "prize": [ + { + "a": "item", + "t": "12", + "n": 50 + }, + { + "a": "item", + "t": "21", + "n": 5 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "pval": 3, + "name": "intr_task_name_17", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [], + "tiaozhuan": 37, + "order": 1, + "special": 0, + "show": "" + }, + "22": { + "id": 22, + "type": 4, + "stype": 999, + "prize": [ + { + "a": "item", + "t": "21", + "n": 10 + }, + { + "a": "item", + "t": "2", + "n": 100 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "pval": 6, + "name": "intr_task_name_17", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [], + "tiaozhuan": 37, + "order": 2, + "special": 0, + "show": "" + }, + "23": { + "id": 23, + "type": 4, + "stype": 999, + "prize": [ + { + "a": "item", + "t": "21", + "n": 10 + }, + { + "a": "item", + "t": "1", + "n": 200000 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "pval": 9, + "name": "intr_task_name_17", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [], + "tiaozhuan": 37, + "order": 3, + "special": 0, + "show": "" + }, + "24": { + "id": 24, + "type": 4, + "stype": 999, + "prize": [ + { + "a": "item", + "t": "6", + "n": 1 + }, + { + "a": "item", + "t": "21", + "n": 15 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "pval": 12, + "name": "intr_task_name_17", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [], + "tiaozhuan": 37, + "order": 4, + "special": 0, + "show": "" + }, + "25": { + "id": 25, + "type": 4, + "stype": 999, + "prize": [ + { + "a": "item", + "t": "14", + "n": 5 + }, + { + "a": "item", + "t": "4", + "n": 1 + }, + { + "a": "item", + "t": "21", + "n": 20 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + } + ], + "pval": 16, + "name": "intr_task_name_17", + "intr": "", + "pretask": 0, + "followtask": 0, + "cond": [], + "tiaozhuan": 37, + "order": 5, + "special": 0, + "show": "" + } + } +} \ No newline at end of file diff --git a/src/json/tujian_jc.json b/src/json/tujian_jc.json new file mode 100644 index 0000000..ed4d91e --- /dev/null +++ b/src/json/tujian_jc.json @@ -0,0 +1,330 @@ +{ + "1": { + "id": 1, + "jindu": 1, + "buff": { + "zj_liliang": 5, + "zj_zhishi": 5 + } + }, + "2": { + "id": 2, + "jindu": 5, + "buff": { + "zj_atk": 10, + "zj_def": 10 + } + }, + "3": { + "id": 3, + "jindu": 10, + "buff": { + "zj_liliang": 10, + "zj_zhishi": 10 + } + }, + "4": { + "id": 4, + "jindu": 15, + "buff": { + "zj_atk": 15, + "zj_def": 15 + } + }, + "5": { + "id": 5, + "jindu": 20, + "buff": { + "zj_liliang": 15, + "zj_zhishi": 15 + } + }, + "6": { + "id": 6, + "jindu": 25, + "buff": { + "zj_atk": 20, + "zj_def": 20 + } + }, + "7": { + "id": 7, + "jindu": 30, + "buff": { + "zj_liliang": 20, + "zj_zhishi": 20 + } + }, + "8": { + "id": 8, + "jindu": 35, + "buff": { + "zj_atk": 25, + "zj_def": 25 + } + }, + "9": { + "id": 9, + "jindu": 40, + "buff": { + "zj_liliang": 25, + "zj_zhishi": 25 + } + }, + "10": { + "id": 10, + "jindu": 45, + "buff": { + "zj_atk": 30, + "zj_def": 30 + } + }, + "11": { + "id": 11, + "jindu": 50, + "buff": { + "zj_liliang": 30, + "zj_zhishi": 30 + } + }, + "12": { + "id": 12, + "jindu": 55, + "buff": { + "zj_atk": 35, + "zj_def": 35 + } + }, + "13": { + "id": 13, + "jindu": 60, + "buff": { + "zj_liliang": 35, + "zj_zhishi": 35 + } + }, + "14": { + "id": 14, + "jindu": 65, + "buff": { + "zj_atk": 40, + "zj_def": 40 + } + }, + "15": { + "id": 15, + "jindu": 70, + "buff": { + "zj_liliang": 45, + "zj_zhishi": 45 + } + }, + "16": { + "id": 16, + "jindu": 75, + "buff": { + "zj_atk": 50, + "zj_def": 50 + } + }, + "17": { + "id": 17, + "jindu": 80, + "buff": { + "zj_liliang": 50, + "zj_zhishi": 50 + } + }, + "18": { + "id": 18, + "jindu": 85, + "buff": { + "zj_atk": 55, + "zj_def": 55 + } + }, + "19": { + "id": 19, + "jindu": 90, + "buff": { + "zj_liliang": 60, + "zj_zhishi": 60 + } + }, + "20": { + "id": 20, + "jindu": 95, + "buff": { + "zj_atk": 60, + "zj_def": 60 + } + }, + "21": { + "id": 21, + "jindu": 100, + "buff": { + "zj_liliang": 65, + "zj_zhishi": 65 + } + }, + "22": { + "id": 22, + "jindu": 105, + "buff": { + "zj_atk": 65, + "zj_def": 65 + } + }, + "23": { + "id": 23, + "jindu": 110, + "buff": { + "zj_liliang": 70, + "zj_zhishi": 70 + } + }, + "24": { + "id": 24, + "jindu": 115, + "buff": { + "zj_atk": 70, + "zj_def": 70 + } + }, + "25": { + "id": 25, + "jindu": 120, + "buff": { + "zj_liliang": 75, + "zj_zhishi": 75 + } + }, + "26": { + "id": 26, + "jindu": 125, + "buff": { + "zj_atk": 75, + "zj_def": 75 + } + }, + "27": { + "id": 27, + "jindu": 130, + "buff": { + "zj_liliang": 80, + "zj_zhishi": 80 + } + }, + "28": { + "id": 28, + "jindu": 135, + "buff": { + "zj_atk": 80, + "zj_def": 80 + } + }, + "29": { + "id": 29, + "jindu": 140, + "buff": { + "zj_liliang": 85, + "zj_zhishi": 85 + } + }, + "30": { + "id": 30, + "jindu": 145, + "buff": { + "zj_atk": 85, + "zj_def": 85 + } + }, + "31": { + "id": 31, + "jindu": 150, + "buff": { + "zj_liliang": 90, + "zj_zhishi": 90 + } + }, + "32": { + "id": 32, + "jindu": 155, + "buff": { + "zj_atk": 90, + "zj_def": 90 + } + }, + "33": { + "id": 33, + "jindu": 160, + "buff": { + "zj_liliang": 95, + "zj_zhishi": 95 + } + }, + "34": { + "id": 34, + "jindu": 165, + "buff": { + "zj_atk": 95, + "zj_def": 95 + } + }, + "35": { + "id": 35, + "jindu": 170, + "buff": { + "zj_liliang": 100, + "zj_zhishi": 100 + } + }, + "36": { + "id": 36, + "jindu": 175, + "buff": { + "zj_atk": 100, + "zj_def": 100 + } + }, + "37": { + "id": 37, + "jindu": 180, + "buff": { + "zj_liliang": 105, + "zj_zhishi": 105 + } + }, + "38": { + "id": 38, + "jindu": 185, + "buff": { + "zj_atk": 105, + "zj_def": 105 + } + }, + "39": { + "id": 39, + "jindu": 190, + "buff": { + "zj_liliang": 110, + "zj_zhishi": 110 + } + }, + "40": { + "id": 40, + "jindu": 195, + "buff": { + "zj_atk": 110, + "zj_def": 110 + } + }, + "41": { + "id": 41, + "jindu": 200, + "buff": { + "zj_liliang": 115, + "zj_zhishi": 115 + } + } +} \ No newline at end of file diff --git a/src/json/usercom.json b/src/json/usercom.json new file mode 100644 index 0000000..f980edf --- /dev/null +++ b/src/json/usercom.json @@ -0,0 +1,7 @@ +{ + "changeName": { + "a": "attr", + "t": "rmbmoney", + "n": "num*50" + } +} \ No newline at end of file diff --git a/src/json/vip.json b/src/json/vip.json new file mode 100644 index 0000000..c344ab0 --- /dev/null +++ b/src/json/vip.json @@ -0,0 +1,70 @@ +{ + "1": { + "vip": 1, + "exp": 60 + }, + "2": { + "vip": 2, + "exp": 180 + }, + "3": { + "vip": 3, + "exp": 300 + }, + "4": { + "vip": 4, + "exp": 500 + }, + "5": { + "vip": 5, + "exp": 1000 + }, + "6": { + "vip": 6, + "exp": 2000 + }, + "7": { + "vip": 7, + "exp": 5000 + }, + "8": { + "vip": 8, + "exp": 10000 + }, + "9": { + "vip": 9, + "exp": 15000 + }, + "10": { + "vip": 10, + "exp": 30000 + }, + "11": { + "vip": 11, + "exp": 50000 + }, + "12": { + "vip": 12, + "exp": 100000 + }, + "13": { + "vip": 13, + "exp": 150000 + }, + "14": { + "vip": 14, + "exp": 300000 + }, + "15": { + "vip": 15, + "exp": 500000 + }, + "16": { + "vip": 16, + "exp": 1000000 + }, + "17": { + "vip": 17, + "exp": 3000000 + } +} \ No newline at end of file diff --git a/src/json/wangzherongyao.json5 b/src/json/wangzherongyao.json5 new file mode 100644 index 0000000..7a46c7b --- /dev/null +++ b/src/json/wangzherongyao.json5 @@ -0,0 +1,775 @@ +{ + "comment": {}, + "wangzhe": { + "bmneed": { + "lv": 50 + }, + "dldrefrenum": 5, + "dlpknum": 15, + "bmprize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + } + ], + "timestatus": [ + { + "stime": 0, + "etime": 85800, + "status": 1, + "stage": "baoming", + "desc": "tlsd_des_1" + }, + { + "stime": 85800, + "etime": 86400, + "status": 2, + "stage": "baoming", + "desc": "tlsd_des_2" + }, + { + "stime": 86400, + "etime": 172200, + "status": 3, + "stage": "luandou", + "desc": "tlsd_des_3" + }, + { + "stime": 172200, + "etime": 172800, + "status": 4, + "stage": "luandou", + "desc": "tlsd_des_4", + "intr": "tlsd_intr_4" + }, + { + "stime": 172800, + "etime": 216000, + "status": 5, + "stage": "256", + "desc": "tlsd_des_5", + "intr": "tlsd_intr_5" + }, + { + "stime": 216000, + "etime": 216300, + "status": 6, + "stage": "256", + "desc": "tlsd_des_6", + "intr": "tlsd_intr_6" + }, + { + "stime": 216300, + "etime": 244800, + "status": 7, + "stage": "256", + "desc": "tlsd_des_7", + "intr": "tlsd_intr_7" + }, + { + "stime": 244800, + "etime": 245100, + "status": 8, + "stage": "256", + "desc": "tlsd_des_8", + "intr": "tlsd_intr_8" + }, + { + "stime": 245100, + "etime": 302400, + "status": 9, + "stage": "64", + "desc": "tlsd_des_9", + "intr": "tlsd_intr_9" + }, + { + "stime": 302400, + "etime": 302700, + "status": 10, + "stage": "64", + "desc": "tlsd_des_10", + "intr": "tlsd_intr_10" + }, + { + "stime": 302700, + "etime": 322400, + "status": 11, + "stage": "64", + "desc": "tlsd_des_11", + "intr": "tlsd_intr_11" + }, + { + "stime": 322400, + "etime": 322700, + "status": 12, + "stage": "64", + "desc": "tlsd_des_12", + "intr": "tlsd_intr_12" + }, + { + "stime": 322700, + "etime": 331200, + "status": 13, + "stage": "64", + "desc": "tlsd_des_13", + "intr": "tlsd_intr_13" + }, + { + "stime": 331200, + "etime": 331500, + "status": 14, + "stage": "64", + "desc": "tlsd_des_14", + "intr": "tlsd_intr_14" + }, + { + "stime": 331500, + "etime": 475200, + "status": 15, + "stage": "8", + "desc": "tlsd_des_15", + "intr": "tlsd_intr_15" + }, + { + "stime": 475200, + "etime": 475500, + "status": 16, + "stage": "8", + "desc": "tlsd_des_16", + "intr": "tlsd_intr_16" + }, + { + "stime": 475500, + "etime": 475800, + "status": 17, + "stage": "8", + "desc": "tlsd_des_17", + "intr": "tlsd_intr_17" + }, + { + "stime": 475800, + "etime": 496800, + "status": 18, + "stage": "8", + "desc": "tlsd_des_18", + "intr": "tlsd_intr_18" + }, + { + "stime": 496800, + "etime": 497100, + "status": 19, + "stage": "8", + "desc": "tlsd_des_19", + "intr": "tlsd_intr_19" + }, + { + "stime": 497100, + "etime": 497400, + "status": 20, + "stage": "8", + "desc": "tlsd_des_20", + "intr": "tlsd_intr_20" + }, + { + "stime": 497400, + "etime": 598200, + "status": 21, + "stage": "8", + "desc": "tlsd_des_21", + "intr": "tlsd_intr_21" + } + ], + "eventtime": { + "autobaomingtime": 0, + "dldstart": 86400, + "start256": 172300, + "start64": 301800, + "zuanshisaisendprize": 331800, + "start8": 474600, + "wanzhesaisendprize": 591600 + }, + "noupdate": [ + 3, + 6, + 8, + 10, + 12, + 14, + 17, + 19, + 21, + ], + "addnpcid": [ + 100, + 200000000 + ], + "jiangli": { + "dld": [ + { + "intr": "tlsd_jiangli_intr_1", + "jifen": -1, + "p": [ + { + "a": "item", + "t": "622", + "n": 5 + }, + { + "a": "item", + "t": "28", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ] + }, + { + "intr": "tlsd_jiangli_intr_2", + "jifen": 269, + "p": [ + { + "a": "item", + "t": "622", + "n": 3 + }, + { + "a": "item", + "t": "28", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ] + }, + { + "intr": "tlsd_jiangli_intr_3", + "jifen": 246, + "p": [ + { + "a": "item", + "t": "622", + "n": 2 + }, + { + "a": "item", + "t": "28", + "n": 1500 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ] + }, + { + "intr": "tlsd_jiangli_intr_4", + "jifen": 200, + "p": [ + { + "a": "item", + "t": "623", + "n": 5 + }, + { + "a": "item", + "t": "28", + "n": 1500 + }, + { + "a": "attr", + "t": "jinbi", + "n": 400000 + } + ] + }, + { + "intr": "tlsd_jiangli_intr_5", + "jifen": 180, + "p": [ + { + "a": "item", + "t": "622", + "n": 2 + }, + { + "a": "item", + "t": "28", + "n": 1000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ] + }, + { + "intr": "tlsd_jiangli_intr_6", + "jifen": 150, + "p": [ + { + "a": "item", + "t": "623", + "n": 5 + }, + { + "a": "item", + "t": "28", + "n": 1000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ] + }, + { + "intr": "tlsd_jiangli_intr_7", + "jifen": 125, + "p": [ + { + "a": "item", + "t": "18", + "n": 30 + }, + { + "a": "item", + "t": "28", + "n": 800 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ] + }, + { + "intr": "tlsd_jiangli_intr_8", + "jifen": 100, + "p": [ + { + "a": "item", + "t": "623", + "n": 5 + }, + { + "a": "item", + "t": "28", + "n": 800 + }, + { + "a": "attr", + "t": "jinbi", + "n": 200000 + } + ] + }, + { + "intr": "tlsd_jiangli_intr_9", + "jifen": 80, + "p": [ + { + "a": "item", + "t": "622", + "n": 2 + }, + { + "a": "item", + "t": "28", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ] + }, + { + "intr": "tlsd_jiangli_intr_10", + "jifen": 60, + "p": [ + { + "a": "item", + "t": "623", + "n": 5 + }, + { + "a": "item", + "t": "28", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ] + }, + { + "intr": "tlsd_jiangli_intr_11", + "jifen": 45, + "p": [ + { + "a": "item", + "t": "12", + "n": 300 + }, + { + "a": "item", + "t": "28", + "n": 500 + }, + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ] + }, + { + "intr": "tlsd_jiangli_intr_12", + "jifen": 30, + "p": [ + { + "a": "item", + "t": "12", + "n": 300 + }, + { + "a": "item", + "t": "28", + "n": 500 + }, + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ] + } + ], + "zuanshi": [ + { + "intr": "tlsd_jiangli_intr_13", + "p": [ + { + "a": "item", + "t": "622", + "n": 15 + }, + { + "a": "item", + "t": "605", + "n": 5 + }, + { + "a": "item", + "t": "28", + "n": 10000 + }, + { + "a": "item", + "t": "29", + "n": 50 + } + ] + }, + { + "intr": "tlsd_jiangli_intr_14", + "p": [ + { + "a": "item", + "t": "622", + "n": 10 + }, + { + "a": "item", + "t": "605", + "n": 3 + }, + { + "a": "item", + "t": "28", + "n": 7000 + }, + { + "a": "item", + "t": "29", + "n": 40 + } + ] + }, + { + "intr": "tlsd_jiangli_intr_15", + "p": [ + { + "a": "item", + "t": "622", + "n": 7 + }, + { + "a": "item", + "t": "605", + "n": 2 + }, + { + "a": "item", + "t": "28", + "n": 5000 + }, + { + "a": "item", + "t": "29", + "n": 30 + } + ] + }, + { + "intr": "tlsd_jiangli_intr_16", + "p": [ + { + "a": "item", + "t": "622", + "n": 5 + }, + { + "a": "item", + "t": "605", + "n": 2 + }, + { + "a": "item", + "t": "28", + "n": 3000 + }, + { + "a": "item", + "t": "29", + "n": 20 + } + ] + } + ], + "wangzhe": [ + { + "intr": "tlsd_jiangli_intr_17", + "p": [ + { + "a": "item", + "t": "632", + "n": 20 + }, + { + "a": "item", + "t": "605", + "n": 8 + }, + { + "a": "item", + "t": "28", + "n": 10000 + }, + { + "a": "item", + "t": "47", + "n": 1 + } + ] + }, + { + "intr": "tlsd_jiangli_intr_18", + "p": [ + { + "a": "item", + "t": "632", + "n": 16 + }, + { + "a": "item", + "t": "605", + "n": 5 + }, + { + "a": "item", + "t": "28", + "n": 7000 + }, + { + "a": "item", + "t": "48", + "n": 1 + } + ] + }, + { + "intr": "tlsd_jiangli_intr_19", + "p": [ + { + "a": "item", + "t": "632", + "n": 12 + }, + { + "a": "item", + "t": "605", + "n": 3 + }, + { + "a": "item", + "t": "28", + "n": 5000 + }, + { + "a": "item", + "t": "48", + "n": 1 + } + ] + }, + { + "intr": "tlsd_jiangli_intr_20", + "p": [ + { + "a": "item", + "t": "632", + "n": 10 + }, + { + "a": "item", + "t": "605", + "n": 2 + }, + { + "a": "item", + "t": "28", + "n": 3000 + }, + { + "a": "item", + "t": "48", + "n": 1 + } + ] + } + ] + }, + "email": { + "dldbaoming": { + "title": "intr_wzry_sdbm1", + "content": "intr_wzry_sdbm2" + }, + "dldjifen": { + "title": "intr_wzry_dld1", + "content": "intr_wzry_dld2" + }, + "dldjinji": { + "title": "intr_wzry_zssjj1", + "content": "intr_wzry_zssjj2" + }, + "zuanshi": { + "title": "intr_wzry_zss1", + "content": "intr_wzry_zss2" + }, + "wangzhe": { + "title": "intr_wzry_wzs1", + "content": "intr_wzry_wzs2" + }, + "jingcaikaiqi": { + "title": "intr_wzry_jcwz1", + "content": "intr_wzry_jcwz2" + }, + "jingcai": { + "title": "intr_wzry_jcwzjl1", + "content": "intr_wzry_jcwzjl2" + }, + "jingcaifail": { + "title": "intr_wzry_jcwzsb1 ", + "content": "intr_wzry_jcwzsb2", + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 10000 + } + ] + } + }, + "guess": { + "1": { + "needvip": 1, + "prize": [ + { + "a": "item", + "t": "5001", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 500000 + } + ], + "name": "tlsd_guess_name_1", + "intr": "tlsd_guess_intr_1", + "addmoney": 100 + }, + "2": { + "needvip": 3, + "prize": [ + { + "a": "item", + "t": "5001", + "n": 1 + }, + { + "a": "item", + "t": "20", + "n": 1 + }, + { + "a": "attr", + "t": "jinbi", + "n": 800000 + } + ], + "name": "tlsd_guess_name_2", + "intr": "tlsd_guess_intr_2", + "addmoney": 200 + }, + "3": { + "needvip": 5, + "prize": [ + { + "a": "item", + "t": "5001", + "n": 1 + }, + { + "a": "item", + "t": "20", + "n": 3 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1000000 + } + ], + "name": "tlsd_guess_name_3", + "intr": "tlsd_guess_intr_3", + "addmoney": 300 + } + } + } +} \ No newline at end of file diff --git a/src/json/weixiuchang_dz.json b/src/json/weixiuchang_dz.json new file mode 100644 index 0000000..0d9a15c --- /dev/null +++ b/src/json/weixiuchang_dz.json @@ -0,0 +1,1713 @@ +{ + "1": { + "id": 1, + "type": 1, + "item": [ + { + "a": "item", + "t": "60101", + "n": 5 + } + ], + "target": 60001, + "success": 1, + "lose": 60200, + "itemType": 2, + "title": "" + }, + "2": { + "id": 2, + "type": 1, + "item": [ + { + "a": "item", + "t": "60102", + "n": 5 + } + ], + "target": 60002, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "3": { + "id": 3, + "type": 1, + "item": [ + { + "a": "item", + "t": "60103", + "n": 5 + } + ], + "target": 60003, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "4": { + "id": 4, + "type": 1, + "item": [ + { + "a": "item", + "t": "60104", + "n": 5 + } + ], + "target": 60004, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "5": { + "id": 5, + "type": 1, + "item": [ + { + "a": "item", + "t": "60105", + "n": 5 + } + ], + "target": 60005, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "6": { + "id": 6, + "type": 1, + "item": [ + { + "a": "item", + "t": "60201", + "n": 5 + } + ], + "target": 60006, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "7": { + "id": 7, + "type": 1, + "item": [ + { + "a": "item", + "t": "60202", + "n": 5 + } + ], + "target": 60007, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "8": { + "id": 8, + "type": 1, + "item": [ + { + "a": "item", + "t": "60203", + "n": 5 + } + ], + "target": 60008, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "9": { + "id": 9, + "type": 1, + "item": [ + { + "a": "item", + "t": "60204", + "n": 5 + } + ], + "target": 60009, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "10": { + "id": 10, + "type": 1, + "item": [ + { + "a": "item", + "t": "60205", + "n": 5 + } + ], + "target": 60010, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "11": { + "id": 11, + "type": 1, + "item": [ + { + "a": "item", + "t": "60301", + "n": 5 + } + ], + "target": 60011, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "12": { + "id": 12, + "type": 1, + "item": [ + { + "a": "item", + "t": "60302", + "n": 5 + } + ], + "target": 60012, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "13": { + "id": 13, + "type": 1, + "item": [ + { + "a": "item", + "t": "60303", + "n": 5 + } + ], + "target": 60013, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "14": { + "id": 14, + "type": 1, + "item": [ + { + "a": "item", + "t": "60304", + "n": 5 + } + ], + "target": 60014, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "15": { + "id": 15, + "type": 1, + "item": [ + { + "a": "item", + "t": "60305", + "n": 5 + } + ], + "target": 60015, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "16": { + "id": 16, + "type": 1, + "item": [ + { + "a": "item", + "t": "60401", + "n": 5 + } + ], + "target": 60016, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "17": { + "id": 17, + "type": 1, + "item": [ + { + "a": "item", + "t": "60402", + "n": 5 + } + ], + "target": 60017, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "18": { + "id": 18, + "type": 1, + "item": [ + { + "a": "item", + "t": "60403", + "n": 5 + } + ], + "target": 60018, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "19": { + "id": 19, + "type": 1, + "item": [ + { + "a": "item", + "t": "60404", + "n": 5 + } + ], + "target": 60019, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "20": { + "id": 20, + "type": 1, + "item": [ + { + "a": "item", + "t": "60405", + "n": 5 + } + ], + "target": 60020, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "21": { + "id": 21, + "type": 1, + "item": [ + { + "a": "item", + "t": "60501", + "n": 5 + } + ], + "target": 60021, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "22": { + "id": 22, + "type": 1, + "item": [ + { + "a": "item", + "t": "60502", + "n": 5 + } + ], + "target": 60022, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "23": { + "id": 23, + "type": 1, + "item": [ + { + "a": "item", + "t": "60503", + "n": 5 + } + ], + "target": 60023, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "24": { + "id": 24, + "type": 1, + "item": [ + { + "a": "item", + "t": "60504", + "n": 5 + } + ], + "target": 60024, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "25": { + "id": 25, + "type": 1, + "item": [ + { + "a": "item", + "t": "60505", + "n": 5 + } + ], + "target": 60025, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "26": { + "id": 26, + "type": 1, + "item": [ + { + "a": "item", + "t": "60601", + "n": 5 + } + ], + "target": 60026, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "27": { + "id": 27, + "type": 1, + "item": [ + { + "a": "item", + "t": "60602", + "n": 5 + } + ], + "target": 60027, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "28": { + "id": 28, + "type": 1, + "item": [ + { + "a": "item", + "t": "60603", + "n": 5 + } + ], + "target": 60028, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "29": { + "id": 29, + "type": 1, + "item": [ + { + "a": "item", + "t": "60604", + "n": 5 + } + ], + "target": 60029, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "30": { + "id": 30, + "type": 1, + "item": [ + { + "a": "item", + "t": "60605", + "n": 5 + } + ], + "target": 60030, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "31": { + "id": 31, + "type": 1, + "item": [ + { + "a": "item", + "t": "60701", + "n": 5 + } + ], + "target": 60031, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "32": { + "id": 32, + "type": 1, + "item": [ + { + "a": "item", + "t": "60702", + "n": 5 + } + ], + "target": 60032, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "33": { + "id": 33, + "type": 1, + "item": [ + { + "a": "item", + "t": "60703", + "n": 5 + } + ], + "target": 60033, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "34": { + "id": 34, + "type": 1, + "item": [ + { + "a": "item", + "t": "60704", + "n": 5 + } + ], + "target": 60034, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "35": { + "id": 35, + "type": 1, + "item": [ + { + "a": "item", + "t": "60705", + "n": 5 + } + ], + "target": 60035, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "36": { + "id": 36, + "type": 1, + "item": [ + { + "a": "item", + "t": "60801", + "n": 5 + } + ], + "target": 60036, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "37": { + "id": 37, + "type": 1, + "item": [ + { + "a": "item", + "t": "60802", + "n": 5 + } + ], + "target": 60037, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "38": { + "id": 38, + "type": 1, + "item": [ + { + "a": "item", + "t": "60803", + "n": 5 + } + ], + "target": 60038, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "39": { + "id": 39, + "type": 1, + "item": [ + { + "a": "item", + "t": "60804", + "n": 5 + } + ], + "target": 60039, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "40": { + "id": 40, + "type": 1, + "item": [ + { + "a": "item", + "t": "60805", + "n": 5 + } + ], + "target": 60040, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "41": { + "id": 41, + "type": 1, + "item": [ + { + "a": "item", + "t": "60901", + "n": 5 + } + ], + "target": 60041, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "42": { + "id": 42, + "type": 1, + "item": [ + { + "a": "item", + "t": "60902", + "n": 5 + } + ], + "target": 60042, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "43": { + "id": 43, + "type": 1, + "item": [ + { + "a": "item", + "t": "60903", + "n": 5 + } + ], + "target": 60043, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "44": { + "id": 44, + "type": 1, + "item": [ + { + "a": "item", + "t": "60904", + "n": 5 + } + ], + "target": 60044, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "45": { + "id": 45, + "type": 1, + "item": [ + { + "a": "item", + "t": "60905", + "n": 5 + } + ], + "target": 60045, + "success": 1, + "lose": 60200, + "itemType": 2 + }, + "46": { + "id": 46, + "type": 1, + "item": [ + { + "a": "item", + "t": "61101", + "n": 5 + } + ], + "target": 60046, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "47": { + "id": 47, + "type": 1, + "item": [ + { + "a": "item", + "t": "61102", + "n": 5 + } + ], + "target": 60047, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "48": { + "id": 48, + "type": 1, + "item": [ + { + "a": "item", + "t": "61103", + "n": 5 + } + ], + "target": 60048, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "49": { + "id": 49, + "type": 1, + "item": [ + { + "a": "item", + "t": "61104", + "n": 5 + } + ], + "target": 60049, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "50": { + "id": 50, + "type": 1, + "item": [ + { + "a": "item", + "t": "61105", + "n": 5 + } + ], + "target": 60050, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "51": { + "id": 51, + "type": 1, + "item": [ + { + "a": "item", + "t": "61201", + "n": 5 + } + ], + "target": 60051, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "52": { + "id": 52, + "type": 1, + "item": [ + { + "a": "item", + "t": "61202", + "n": 5 + } + ], + "target": 60052, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "53": { + "id": 53, + "type": 1, + "item": [ + { + "a": "item", + "t": "61203", + "n": 5 + } + ], + "target": 60053, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "54": { + "id": 54, + "type": 1, + "item": [ + { + "a": "item", + "t": "61204", + "n": 5 + } + ], + "target": 60054, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "55": { + "id": 55, + "type": 1, + "item": [ + { + "a": "item", + "t": "61205", + "n": 5 + } + ], + "target": 60055, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "56": { + "id": 56, + "type": 1, + "item": [ + { + "a": "item", + "t": "61301", + "n": 5 + } + ], + "target": 60056, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "57": { + "id": 57, + "type": 1, + "item": [ + { + "a": "item", + "t": "61302", + "n": 5 + } + ], + "target": 60057, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "58": { + "id": 58, + "type": 1, + "item": [ + { + "a": "item", + "t": "61303", + "n": 5 + } + ], + "target": 60058, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "59": { + "id": 59, + "type": 1, + "item": [ + { + "a": "item", + "t": "61304", + "n": 5 + } + ], + "target": 60059, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "60": { + "id": 60, + "type": 1, + "item": [ + { + "a": "item", + "t": "61305", + "n": 5 + } + ], + "target": 60060, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "61": { + "id": 61, + "type": 1, + "item": [ + { + "a": "item", + "t": "61401", + "n": 5 + } + ], + "target": 60061, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "62": { + "id": 62, + "type": 1, + "item": [ + { + "a": "item", + "t": "61402", + "n": 5 + } + ], + "target": 60062, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "63": { + "id": 63, + "type": 1, + "item": [ + { + "a": "item", + "t": "61403", + "n": 5 + } + ], + "target": 60063, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "64": { + "id": 64, + "type": 1, + "item": [ + { + "a": "item", + "t": "61404", + "n": 5 + } + ], + "target": 60064, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "65": { + "id": 65, + "type": 1, + "item": [ + { + "a": "item", + "t": "61405", + "n": 5 + } + ], + "target": 60065, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "66": { + "id": 66, + "type": 1, + "item": [ + { + "a": "item", + "t": "61501", + "n": 5 + } + ], + "target": 60066, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "67": { + "id": 67, + "type": 1, + "item": [ + { + "a": "item", + "t": "61502", + "n": 5 + } + ], + "target": 60067, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "68": { + "id": 68, + "type": 1, + "item": [ + { + "a": "item", + "t": "61503", + "n": 5 + } + ], + "target": 60068, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "69": { + "id": 69, + "type": 1, + "item": [ + { + "a": "item", + "t": "61504", + "n": 5 + } + ], + "target": 60069, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "70": { + "id": 70, + "type": 1, + "item": [ + { + "a": "item", + "t": "61505", + "n": 5 + } + ], + "target": 60070, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "71": { + "id": 71, + "type": 1, + "item": [ + { + "a": "item", + "t": "61601", + "n": 5 + } + ], + "target": 60071, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "72": { + "id": 72, + "type": 1, + "item": [ + { + "a": "item", + "t": "61602", + "n": 5 + } + ], + "target": 60072, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "73": { + "id": 73, + "type": 1, + "item": [ + { + "a": "item", + "t": "61603", + "n": 5 + } + ], + "target": 60073, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "74": { + "id": 74, + "type": 1, + "item": [ + { + "a": "item", + "t": "61604", + "n": 5 + } + ], + "target": 60074, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "75": { + "id": 75, + "type": 1, + "item": [ + { + "a": "item", + "t": "61605", + "n": 5 + } + ], + "target": 60075, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "76": { + "id": 76, + "type": 1, + "item": [ + { + "a": "item", + "t": "61701", + "n": 5 + } + ], + "target": 60076, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "77": { + "id": 77, + "type": 1, + "item": [ + { + "a": "item", + "t": "61702", + "n": 5 + } + ], + "target": 60077, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "78": { + "id": 78, + "type": 1, + "item": [ + { + "a": "item", + "t": "61703", + "n": 5 + } + ], + "target": 60078, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "79": { + "id": 79, + "type": 1, + "item": [ + { + "a": "item", + "t": "61704", + "n": 5 + } + ], + "target": 60079, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "80": { + "id": 80, + "type": 1, + "item": [ + { + "a": "item", + "t": "61705", + "n": 5 + } + ], + "target": 60080, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "81": { + "id": 81, + "type": 1, + "item": [ + { + "a": "item", + "t": "61801", + "n": 5 + } + ], + "target": 60081, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "82": { + "id": 82, + "type": 1, + "item": [ + { + "a": "item", + "t": "61802", + "n": 5 + } + ], + "target": 60082, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "83": { + "id": 83, + "type": 1, + "item": [ + { + "a": "item", + "t": "61803", + "n": 5 + } + ], + "target": 60083, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "84": { + "id": 84, + "type": 1, + "item": [ + { + "a": "item", + "t": "61804", + "n": 5 + } + ], + "target": 60084, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "85": { + "id": 85, + "type": 1, + "item": [ + { + "a": "item", + "t": "61805", + "n": 5 + } + ], + "target": 60085, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "86": { + "id": 86, + "type": 1, + "item": [ + { + "a": "item", + "t": "61901", + "n": 5 + } + ], + "target": 60086, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "87": { + "id": 87, + "type": 1, + "item": [ + { + "a": "item", + "t": "61902", + "n": 5 + } + ], + "target": 60087, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "88": { + "id": 88, + "type": 1, + "item": [ + { + "a": "item", + "t": "61903", + "n": 5 + } + ], + "target": 60088, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "89": { + "id": 89, + "type": 1, + "item": [ + { + "a": "item", + "t": "61904", + "n": 5 + } + ], + "target": 60089, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "90": { + "id": 90, + "type": 1, + "item": [ + { + "a": "item", + "t": "61905", + "n": 5 + } + ], + "target": 60090, + "success": 1, + "lose": 60200, + "itemType": 1 + }, + "1001": { + "id": 1001, + "type": 2, + "item": [ + { + "a": "item", + "t": "61101", + "n": 10 + }, + { + "a": "item", + "t": "61102", + "n": 10 + }, + { + "a": "item", + "t": "61103", + "n": 1 + }, + { + "a": "item", + "t": "61104", + "n": 10 + }, + { + "a": "item", + "t": "61105", + "n": 10 + } + ], + "target": 60101, + "success": 0.4, + "lose": 60200, + "itemType": 0, + "title": "wxc_hecheng_title_1001" + }, + "1002": { + "id": 1002, + "type": 2, + "item": [ + { + "a": "item", + "t": "61201", + "n": 10 + }, + { + "a": "item", + "t": "61202", + "n": 10 + }, + { + "a": "item", + "t": "61203", + "n": 1 + }, + { + "a": "item", + "t": "61204", + "n": 10 + }, + { + "a": "item", + "t": "61205", + "n": 10 + } + ], + "target": 60102, + "success": 0.4, + "lose": 60200, + "itemType": 0, + "title": "wxc_hecheng_title_1002" + }, + "1003": { + "id": 1003, + "type": 2, + "item": [ + { + "a": "item", + "t": "61301", + "n": 10 + }, + { + "a": "item", + "t": "61302", + "n": 10 + }, + { + "a": "item", + "t": "61303", + "n": 1 + }, + { + "a": "item", + "t": "61304", + "n": 10 + }, + { + "a": "item", + "t": "61305", + "n": 10 + } + ], + "target": 60103, + "success": 0.4, + "lose": 60200, + "itemType": 0, + "title": "wxc_hecheng_title_1003" + }, + "1004": { + "id": 1004, + "type": 2, + "item": [ + { + "a": "item", + "t": "61401", + "n": 10 + }, + { + "a": "item", + "t": "61402", + "n": 10 + }, + { + "a": "item", + "t": "61403", + "n": 1 + }, + { + "a": "item", + "t": "61404", + "n": 10 + }, + { + "a": "item", + "t": "61405", + "n": 10 + } + ], + "target": 60104, + "success": 0.4, + "lose": 60200, + "itemType": 0, + "title": "wxc_hecheng_title_1004" + }, + "1005": { + "id": 1005, + "type": 2, + "item": [ + { + "a": "item", + "t": "61501", + "n": 10 + }, + { + "a": "item", + "t": "61502", + "n": 10 + }, + { + "a": "item", + "t": "61503", + "n": 1 + }, + { + "a": "item", + "t": "61504", + "n": 10 + }, + { + "a": "item", + "t": "61505", + "n": 10 + } + ], + "target": 60105, + "success": 0.4, + "lose": 60200, + "itemType": 0, + "title": "wxc_hecheng_title_1005" + }, + "1006": { + "id": 1006, + "type": 2, + "item": [ + { + "a": "item", + "t": "61601", + "n": 10 + }, + { + "a": "item", + "t": "61602", + "n": 10 + }, + { + "a": "item", + "t": "61603", + "n": 1 + }, + { + "a": "item", + "t": "61604", + "n": 10 + }, + { + "a": "item", + "t": "61605", + "n": 10 + } + ], + "target": 60106, + "success": 0.4, + "lose": 60200, + "itemType": 0, + "title": "wxc_hecheng_title_1006" + }, + "1007": { + "id": 1007, + "type": 2, + "item": [ + { + "a": "item", + "t": "61701", + "n": 10 + }, + { + "a": "item", + "t": "61702", + "n": 10 + }, + { + "a": "item", + "t": "61703", + "n": 1 + }, + { + "a": "item", + "t": "61704", + "n": 10 + }, + { + "a": "item", + "t": "61705", + "n": 10 + } + ], + "target": 60107, + "success": 0.4, + "lose": 60200, + "itemType": 0, + "title": "wxc_hecheng_title_1007" + }, + "1008": { + "id": 1008, + "type": 2, + "item": [ + { + "a": "item", + "t": "61801", + "n": 10 + }, + { + "a": "item", + "t": "61802", + "n": 10 + }, + { + "a": "item", + "t": "61803", + "n": 1 + }, + { + "a": "item", + "t": "61804", + "n": 10 + }, + { + "a": "item", + "t": "61805", + "n": 10 + } + ], + "target": 60108, + "success": 0.4, + "lose": 60200, + "itemType": 0, + "title": "wxc_hecheng_title_1008" + }, + "1009": { + "id": 1009, + "type": 2, + "item": [ + { + "a": "item", + "t": "61901", + "n": 10 + }, + { + "a": "item", + "t": "61902", + "n": 10 + }, + { + "a": "item", + "t": "61903", + "n": 1 + }, + { + "a": "item", + "t": "61904", + "n": 10 + }, + { + "a": "item", + "t": "61905", + "n": 10 + } + ], + "target": 60109, + "success": 0.4, + "lose": 60200, + "itemType": 0, + "title": "wxc_hecheng_title_1009" + }, + "1010": { + "id": 1010, + "type": 2, + "item": [ + { + "a": "item", + "t": "62001", + "n": 10 + }, + { + "a": "item", + "t": "62002", + "n": 10 + }, + { + "a": "item", + "t": "62003", + "n": 1 + }, + { + "a": "item", + "t": "62004", + "n": 10 + }, + { + "a": "item", + "t": "62005", + "n": 10 + } + ], + "target": 60110, + "success": 0.4, + "lose": 60200, + "itemType": 0, + "title": "wxc_hecheng_title_1010" + } +} \ No newline at end of file diff --git a/src/json/weixiuchang_item.json b/src/json/weixiuchang_item.json new file mode 100644 index 0000000..1f86a42 --- /dev/null +++ b/src/json/weixiuchang_item.json @@ -0,0 +1,502 @@ +{ + "60101": { + "itemId": 60101, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 50 + } + ] + }, + "60102": { + "itemId": 60102, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 50 + } + ] + }, + "60103": { + "itemId": 60103, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 50 + } + ] + }, + "60104": { + "itemId": 60104, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 50 + } + ] + }, + "60105": { + "itemId": 60105, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 50 + } + ] + }, + "60201": { + "itemId": 60201, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 100 + } + ] + }, + "60202": { + "itemId": 60202, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 100 + } + ] + }, + "60203": { + "itemId": 60203, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 100 + } + ] + }, + "60204": { + "itemId": 60204, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 100 + } + ] + }, + "60205": { + "itemId": 60205, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 100 + } + ] + }, + "60301": { + "itemId": 60301, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 150 + } + ] + }, + "60302": { + "itemId": 60302, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 150 + } + ] + }, + "60303": { + "itemId": 60303, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 150 + } + ] + }, + "60304": { + "itemId": 60304, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 150 + } + ] + }, + "60305": { + "itemId": 60305, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 150 + } + ] + }, + "60401": { + "itemId": 60401, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 200 + } + ] + }, + "60402": { + "itemId": 60402, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 200 + } + ] + }, + "60403": { + "itemId": 60403, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 200 + } + ] + }, + "60404": { + "itemId": 60404, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 200 + } + ] + }, + "60405": { + "itemId": 60405, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 200 + } + ] + }, + "60501": { + "itemId": 60501, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 250 + } + ] + }, + "60502": { + "itemId": 60502, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 250 + } + ] + }, + "60503": { + "itemId": 60503, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 250 + } + ] + }, + "60504": { + "itemId": 60504, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 250 + } + ] + }, + "60505": { + "itemId": 60505, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 250 + } + ] + }, + "60601": { + "itemId": 60601, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 300 + } + ] + }, + "60602": { + "itemId": 60602, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 300 + } + ] + }, + "60603": { + "itemId": 60603, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 300 + } + ] + }, + "60604": { + "itemId": 60604, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 300 + } + ] + }, + "60605": { + "itemId": 60605, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 300 + } + ] + }, + "60701": { + "itemId": 60701, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 350 + } + ] + }, + "60702": { + "itemId": 60702, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 350 + } + ] + }, + "60703": { + "itemId": 60703, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 350 + } + ] + }, + "60704": { + "itemId": 60704, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 350 + } + ] + }, + "60705": { + "itemId": 60705, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 350 + } + ] + }, + "60801": { + "itemId": 60801, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 400 + } + ] + }, + "60802": { + "itemId": 60802, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 400 + } + ] + }, + "60803": { + "itemId": 60803, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 400 + } + ] + }, + "60804": { + "itemId": 60804, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 400 + } + ] + }, + "60805": { + "itemId": 60805, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 400 + } + ] + }, + "60901": { + "itemId": 60901, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 450 + } + ] + }, + "60902": { + "itemId": 60902, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 450 + } + ] + }, + "60903": { + "itemId": 60903, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 450 + } + ] + }, + "60904": { + "itemId": 60904, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 450 + } + ] + }, + "60905": { + "itemId": 60905, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 450 + } + ] + }, + "61001": { + "itemId": 61001, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 500 + } + ] + }, + "61002": { + "itemId": 61002, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 500 + } + ] + }, + "61003": { + "itemId": 61003, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 500 + } + ] + }, + "61004": { + "itemId": 61004, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 500 + } + ] + }, + "61005": { + "itemId": 61005, + "fenjie": [ + { + "a": "item", + "t": "22", + "n": 500 + } + ] + } +} \ No newline at end of file diff --git a/src/json/weixiuchang_zz.json b/src/json/weixiuchang_zz.json new file mode 100644 index 0000000..4c032b5 --- /dev/null +++ b/src/json/weixiuchang_zz.json @@ -0,0 +1,8602 @@ +{ + "1": { + "id": 1, + "name": "intr_weixiuchang_zz_name_1", + "car": "che_hc", + "parts": 1, + "stage": 1, + "star": 1, + "need": [ + { + "a": "item", + "t": "60101", + "n": 1 + }, + { + "a": "item", + "t": "60102", + "n": 1 + }, + { + "a": "item", + "t": "60103", + "n": 1 + }, + { + "a": "item", + "t": "60104", + "n": 1 + }, + { + "a": "item", + "t": "60105", + "n": 1 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 200 + } + ], + "buff": { + "1": { + "zj_liliang": 1 + }, + "2": { + "zj_def": 1 + }, + "3": { + "zj_atk": 1 + }, + "4": { + "zj_zhishi": 1 + }, + "5": { + "zj_atk": 1 + } + }, + "buff2": { + "zj_liliang": 10, + "zj_atk": 10, + "zj_zhishi": 10, + "zj_def": 10 + }, + "drop": 70001 + }, + "2": { + "id": 2, + "name": "intr_weixiuchang_zz_name_1", + "car": "che_hc", + "parts": 2, + "stage": 1, + "star": 2, + "need": [ + { + "a": "item", + "t": "60101", + "n": 2 + }, + { + "a": "item", + "t": "60102", + "n": 2 + }, + { + "a": "item", + "t": "60103", + "n": 2 + }, + { + "a": "item", + "t": "60104", + "n": 2 + }, + { + "a": "item", + "t": "60105", + "n": 2 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 200 + } + ], + "buff": { + "1": { + "zj_liliang": 2 + }, + "2": { + "zj_def": 2 + }, + "3": { + "zj_atk": 2 + }, + "4": { + "zj_zhishi": 2 + }, + "5": { + "zj_atk": 2 + } + }, + "buff2": { + "zj_liliang": 12, + "zj_atk": 12, + "zj_zhishi": 12, + "zj_def": 12 + }, + "drop": 70001 + }, + "3": { + "id": 3, + "name": "intr_weixiuchang_zz_name_1", + "car": "che_hc", + "parts": 3, + "stage": 1, + "star": 3, + "need": [ + { + "a": "item", + "t": "60101", + "n": 3 + }, + { + "a": "item", + "t": "60102", + "n": 3 + }, + { + "a": "item", + "t": "60103", + "n": 3 + }, + { + "a": "item", + "t": "60104", + "n": 3 + }, + { + "a": "item", + "t": "60105", + "n": 3 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 200 + } + ], + "buff": { + "1": { + "zj_liliang": 3 + }, + "2": { + "zj_def": 3 + }, + "3": { + "zj_atk": 3 + }, + "4": { + "zj_zhishi": 3 + }, + "5": { + "zj_atk": 3 + } + }, + "buff2": { + "zj_liliang": 14, + "zj_atk": 14, + "zj_zhishi": 14, + "zj_def": 14 + }, + "drop": 70001 + }, + "4": { + "id": 4, + "name": "intr_weixiuchang_zz_name_1", + "car": "che_hc", + "parts": 4, + "stage": 1, + "star": 4, + "need": [ + { + "a": "item", + "t": "60101", + "n": 4 + }, + { + "a": "item", + "t": "60102", + "n": 4 + }, + { + "a": "item", + "t": "60103", + "n": 4 + }, + { + "a": "item", + "t": "60104", + "n": 4 + }, + { + "a": "item", + "t": "60105", + "n": 4 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 200 + } + ], + "buff": { + "1": { + "zj_liliang": 4 + }, + "2": { + "zj_def": 4 + }, + "3": { + "zj_atk": 4 + }, + "4": { + "zj_zhishi": 4 + }, + "5": { + "zj_atk": 4 + } + }, + "buff2": { + "zj_liliang": 16, + "zj_atk": 16, + "zj_zhishi": 16, + "zj_def": 16 + }, + "drop": 70001 + }, + "5": { + "id": 5, + "name": "intr_weixiuchang_zz_name_1", + "car": "che_hc", + "parts": 5, + "stage": 1, + "star": 5, + "need": [ + { + "a": "item", + "t": "60101", + "n": 5 + }, + { + "a": "item", + "t": "60102", + "n": 5 + }, + { + "a": "item", + "t": "60103", + "n": 5 + }, + { + "a": "item", + "t": "60104", + "n": 5 + }, + { + "a": "item", + "t": "60105", + "n": 5 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 200 + } + ], + "buff": { + "1": { + "zj_liliang": 5 + }, + "2": { + "zj_def": 5 + }, + "3": { + "zj_atk": 5 + }, + "4": { + "zj_zhishi": 5 + }, + "5": { + "zj_atk": 5 + } + }, + "buff2": { + "zj_liliang": 18, + "zj_atk": 18, + "zj_zhishi": 18, + "zj_def": 18 + }, + "drop": 70001 + }, + "6": { + "id": 6, + "name": "intr_weixiuchang_zz_name_1", + "car": "che_hc", + "parts": 6, + "stage": 1, + "star": 6, + "need": [ + { + "a": "item", + "t": "60101", + "n": 6 + }, + { + "a": "item", + "t": "60102", + "n": 6 + }, + { + "a": "item", + "t": "60103", + "n": 6 + }, + { + "a": "item", + "t": "60104", + "n": 6 + }, + { + "a": "item", + "t": "60105", + "n": 6 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 200 + } + ], + "buff": { + "1": { + "zj_liliang": 6 + }, + "2": { + "zj_def": 6 + }, + "3": { + "zj_atk": 6 + }, + "4": { + "zj_zhishi": 6 + }, + "5": { + "zj_atk": 6 + } + }, + "buff2": { + "zj_liliang": 20, + "zj_atk": 20, + "zj_zhishi": 20, + "zj_def": 20 + }, + "drop": 70001 + }, + "7": { + "id": 7, + "name": "intr_weixiuchang_zz_name_1", + "car": "che_hc", + "parts": 7, + "stage": 1, + "star": 7, + "need": [ + { + "a": "item", + "t": "60101", + "n": 7 + }, + { + "a": "item", + "t": "60102", + "n": 7 + }, + { + "a": "item", + "t": "60103", + "n": 7 + }, + { + "a": "item", + "t": "60104", + "n": 7 + }, + { + "a": "item", + "t": "60105", + "n": 7 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 200 + } + ], + "buff": { + "1": { + "zj_liliang": 7 + }, + "2": { + "zj_def": 7 + }, + "3": { + "zj_atk": 7 + }, + "4": { + "zj_zhishi": 7 + }, + "5": { + "zj_atk": 7 + } + }, + "buff2": { + "zj_liliang": 22, + "zj_atk": 22, + "zj_zhishi": 22, + "zj_def": 22 + }, + "drop": 70001 + }, + "8": { + "id": 8, + "name": "intr_weixiuchang_zz_name_1", + "car": "che_hc", + "parts": 8, + "stage": 1, + "star": 8, + "need": [ + { + "a": "item", + "t": "60101", + "n": 8 + }, + { + "a": "item", + "t": "60102", + "n": 8 + }, + { + "a": "item", + "t": "60103", + "n": 8 + }, + { + "a": "item", + "t": "60104", + "n": 8 + }, + { + "a": "item", + "t": "60105", + "n": 8 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 200 + } + ], + "buff": { + "1": { + "zj_liliang": 8 + }, + "2": { + "zj_def": 8 + }, + "3": { + "zj_atk": 8 + }, + "4": { + "zj_zhishi": 8 + }, + "5": { + "zj_atk": 8 + } + }, + "buff2": { + "zj_liliang": 24, + "zj_atk": 24, + "zj_zhishi": 24, + "zj_def": 24 + }, + "drop": 70001 + }, + "9": { + "id": 9, + "name": "intr_weixiuchang_zz_name_1", + "car": "che_hc", + "parts": 9, + "stage": 1, + "star": 9, + "need": [ + { + "a": "item", + "t": "60101", + "n": 9 + }, + { + "a": "item", + "t": "60102", + "n": 9 + }, + { + "a": "item", + "t": "60103", + "n": 9 + }, + { + "a": "item", + "t": "60104", + "n": 9 + }, + { + "a": "item", + "t": "60105", + "n": 9 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 200 + } + ], + "buff": { + "1": { + "zj_liliang": 9 + }, + "2": { + "zj_def": 9 + }, + "3": { + "zj_atk": 9 + }, + "4": { + "zj_zhishi": 9 + }, + "5": { + "zj_atk": 9 + } + }, + "buff2": { + "zj_liliang": 26, + "zj_atk": 26, + "zj_zhishi": 26, + "zj_def": 26 + }, + "drop": 70001 + }, + "10": { + "id": 10, + "name": "intr_weixiuchang_zz_name_1", + "car": "che_hc", + "parts": 10, + "stage": 1, + "star": 10, + "need": [ + { + "a": "item", + "t": "60101", + "n": 10 + }, + { + "a": "item", + "t": "60102", + "n": 10 + }, + { + "a": "item", + "t": "60103", + "n": 10 + }, + { + "a": "item", + "t": "60104", + "n": 10 + }, + { + "a": "item", + "t": "60105", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 200 + }, + { + "a": "item", + "t": "22", + "n": 200 + } + ], + "buff": { + "1": { + "zj_liliang": 10 + }, + "2": { + "zj_def": 10 + }, + "3": { + "zj_atk": 10 + }, + "4": { + "zj_zhishi": 10 + }, + "5": { + "zj_atk": 10 + } + }, + "buff2": { + "zj_liliang": 28, + "zj_atk": 28, + "zj_zhishi": 28, + "zj_def": 28 + }, + "drop": 70001 + }, + "11": { + "id": 11, + "name": "intr_weixiuchang_zz_name_2", + "car": "che_zxc", + "parts": 1, + "stage": 2, + "star": 1, + "need": [ + { + "a": "item", + "t": "60201", + "n": 10 + }, + { + "a": "item", + "t": "60202", + "n": 10 + }, + { + "a": "item", + "t": "60203", + "n": 10 + }, + { + "a": "item", + "t": "60204", + "n": 10 + }, + { + "a": "item", + "t": "60205", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 1250 + }, + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 300 + } + ], + "buff": { + "1": { + "zj_liliang": 20 + }, + "2": { + "zj_def": 20 + }, + "3": { + "zj_atk": 20 + }, + "4": { + "zj_zhishi": 20 + }, + "5": { + "zj_atk": 20 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70002 + }, + "12": { + "id": 12, + "name": "intr_weixiuchang_zz_name_2", + "car": "che_zxc", + "parts": 2, + "stage": 2, + "star": 2, + "need": [ + { + "a": "item", + "t": "60201", + "n": 10 + }, + { + "a": "item", + "t": "60202", + "n": 10 + }, + { + "a": "item", + "t": "60203", + "n": 10 + }, + { + "a": "item", + "t": "60204", + "n": 10 + }, + { + "a": "item", + "t": "60205", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 1250 + }, + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 300 + } + ], + "buff": { + "1": { + "zj_liliang": 20 + }, + "2": { + "zj_def": 20 + }, + "3": { + "zj_atk": 20 + }, + "4": { + "zj_zhishi": 20 + }, + "5": { + "zj_atk": 20 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70002 + }, + "13": { + "id": 13, + "name": "intr_weixiuchang_zz_name_2", + "car": "che_zxc", + "parts": 3, + "stage": 2, + "star": 3, + "need": [ + { + "a": "item", + "t": "60201", + "n": 10 + }, + { + "a": "item", + "t": "60202", + "n": 10 + }, + { + "a": "item", + "t": "60203", + "n": 10 + }, + { + "a": "item", + "t": "60204", + "n": 10 + }, + { + "a": "item", + "t": "60205", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 1250 + }, + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 300 + } + ], + "buff": { + "1": { + "zj_liliang": 20 + }, + "2": { + "zj_def": 20 + }, + "3": { + "zj_atk": 20 + }, + "4": { + "zj_zhishi": 20 + }, + "5": { + "zj_atk": 20 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70002 + }, + "14": { + "id": 14, + "name": "intr_weixiuchang_zz_name_2", + "car": "che_zxc", + "parts": 4, + "stage": 2, + "star": 4, + "need": [ + { + "a": "item", + "t": "60201", + "n": 10 + }, + { + "a": "item", + "t": "60202", + "n": 10 + }, + { + "a": "item", + "t": "60203", + "n": 10 + }, + { + "a": "item", + "t": "60204", + "n": 10 + }, + { + "a": "item", + "t": "60205", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 1250 + }, + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 300 + } + ], + "buff": { + "1": { + "zj_liliang": 20 + }, + "2": { + "zj_def": 20 + }, + "3": { + "zj_atk": 20 + }, + "4": { + "zj_zhishi": 20 + }, + "5": { + "zj_atk": 20 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70002 + }, + "15": { + "id": 15, + "name": "intr_weixiuchang_zz_name_2", + "car": "che_zxc", + "parts": 5, + "stage": 2, + "star": 5, + "need": [ + { + "a": "item", + "t": "60201", + "n": 10 + }, + { + "a": "item", + "t": "60202", + "n": 10 + }, + { + "a": "item", + "t": "60203", + "n": 10 + }, + { + "a": "item", + "t": "60204", + "n": 10 + }, + { + "a": "item", + "t": "60205", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 1250 + }, + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 300 + } + ], + "buff": { + "1": { + "zj_liliang": 20 + }, + "2": { + "zj_def": 20 + }, + "3": { + "zj_atk": 20 + }, + "4": { + "zj_zhishi": 20 + }, + "5": { + "zj_atk": 20 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70002 + }, + "16": { + "id": 16, + "name": "intr_weixiuchang_zz_name_2", + "car": "che_zxc", + "parts": 6, + "stage": 2, + "star": 6, + "need": [ + { + "a": "item", + "t": "60201", + "n": 10 + }, + { + "a": "item", + "t": "60202", + "n": 10 + }, + { + "a": "item", + "t": "60203", + "n": 10 + }, + { + "a": "item", + "t": "60204", + "n": 10 + }, + { + "a": "item", + "t": "60205", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 1250 + }, + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 300 + } + ], + "buff": { + "1": { + "zj_liliang": 20 + }, + "2": { + "zj_def": 20 + }, + "3": { + "zj_atk": 20 + }, + "4": { + "zj_zhishi": 20 + }, + "5": { + "zj_atk": 20 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70002 + }, + "17": { + "id": 17, + "name": "intr_weixiuchang_zz_name_2", + "car": "che_zxc", + "parts": 7, + "stage": 2, + "star": 7, + "need": [ + { + "a": "item", + "t": "60201", + "n": 10 + }, + { + "a": "item", + "t": "60202", + "n": 10 + }, + { + "a": "item", + "t": "60203", + "n": 10 + }, + { + "a": "item", + "t": "60204", + "n": 10 + }, + { + "a": "item", + "t": "60205", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 1250 + }, + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 300 + } + ], + "buff": { + "1": { + "zj_liliang": 20 + }, + "2": { + "zj_def": 20 + }, + "3": { + "zj_atk": 20 + }, + "4": { + "zj_zhishi": 20 + }, + "5": { + "zj_atk": 20 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70002 + }, + "18": { + "id": 18, + "name": "intr_weixiuchang_zz_name_2", + "car": "che_zxc", + "parts": 8, + "stage": 2, + "star": 8, + "need": [ + { + "a": "item", + "t": "60201", + "n": 10 + }, + { + "a": "item", + "t": "60202", + "n": 10 + }, + { + "a": "item", + "t": "60203", + "n": 10 + }, + { + "a": "item", + "t": "60204", + "n": 10 + }, + { + "a": "item", + "t": "60205", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 1250 + }, + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 300 + } + ], + "buff": { + "1": { + "zj_liliang": 20 + }, + "2": { + "zj_def": 20 + }, + "3": { + "zj_atk": 20 + }, + "4": { + "zj_zhishi": 20 + }, + "5": { + "zj_atk": 20 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70002 + }, + "19": { + "id": 19, + "name": "intr_weixiuchang_zz_name_2", + "car": "che_zxc", + "parts": 9, + "stage": 2, + "star": 9, + "need": [ + { + "a": "item", + "t": "60201", + "n": 10 + }, + { + "a": "item", + "t": "60202", + "n": 10 + }, + { + "a": "item", + "t": "60203", + "n": 10 + }, + { + "a": "item", + "t": "60204", + "n": 10 + }, + { + "a": "item", + "t": "60205", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 1250 + }, + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 300 + } + ], + "buff": { + "1": { + "zj_liliang": 20 + }, + "2": { + "zj_def": 20 + }, + "3": { + "zj_atk": 20 + }, + "4": { + "zj_zhishi": 20 + }, + "5": { + "zj_atk": 20 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70002 + }, + "20": { + "id": 20, + "name": "intr_weixiuchang_zz_name_2", + "car": "che_zxc", + "parts": 10, + "stage": 2, + "star": 10, + "need": [ + { + "a": "item", + "t": "60201", + "n": 10 + }, + { + "a": "item", + "t": "60202", + "n": 10 + }, + { + "a": "item", + "t": "60203", + "n": 10 + }, + { + "a": "item", + "t": "60204", + "n": 10 + }, + { + "a": "item", + "t": "60205", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 1250 + }, + { + "a": "item", + "t": "22", + "n": 300 + }, + { + "a": "item", + "t": "22", + "n": 300 + } + ], + "buff": { + "1": { + "zj_liliang": 20 + }, + "2": { + "zj_def": 20 + }, + "3": { + "zj_atk": 20 + }, + "4": { + "zj_zhishi": 20 + }, + "5": { + "zj_atk": 20 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70002 + }, + "21": { + "id": 21, + "name": "intr_weixiuchang_zz_name_3", + "car": "che_yy", + "parts": 1, + "stage": 3, + "star": 1, + "need": [ + { + "a": "item", + "t": "60301", + "n": 10 + }, + { + "a": "item", + "t": "60302", + "n": 10 + }, + { + "a": "item", + "t": "60303", + "n": 10 + }, + { + "a": "item", + "t": "60304", + "n": 10 + }, + { + "a": "item", + "t": "60305", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 1500 + }, + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 400 + } + ], + "buff": { + "1": { + "zj_liliang": 30 + }, + "2": { + "zj_def": 30 + }, + "3": { + "zj_atk": 30 + }, + "4": { + "zj_zhishi": 30 + }, + "5": { + "zj_atk": 30 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70003 + }, + "22": { + "id": 22, + "name": "intr_weixiuchang_zz_name_3", + "car": "che_yy", + "parts": 2, + "stage": 3, + "star": 2, + "need": [ + { + "a": "item", + "t": "60301", + "n": 10 + }, + { + "a": "item", + "t": "60302", + "n": 10 + }, + { + "a": "item", + "t": "60303", + "n": 10 + }, + { + "a": "item", + "t": "60304", + "n": 10 + }, + { + "a": "item", + "t": "60305", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 1500 + }, + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 400 + } + ], + "buff": { + "1": { + "zj_liliang": 30 + }, + "2": { + "zj_def": 30 + }, + "3": { + "zj_atk": 30 + }, + "4": { + "zj_zhishi": 30 + }, + "5": { + "zj_atk": 30 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70003 + }, + "23": { + "id": 23, + "name": "intr_weixiuchang_zz_name_3", + "car": "che_yy", + "parts": 3, + "stage": 3, + "star": 3, + "need": [ + { + "a": "item", + "t": "60301", + "n": 10 + }, + { + "a": "item", + "t": "60302", + "n": 10 + }, + { + "a": "item", + "t": "60303", + "n": 10 + }, + { + "a": "item", + "t": "60304", + "n": 10 + }, + { + "a": "item", + "t": "60305", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 1500 + }, + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 400 + } + ], + "buff": { + "1": { + "zj_liliang": 30 + }, + "2": { + "zj_def": 30 + }, + "3": { + "zj_atk": 30 + }, + "4": { + "zj_zhishi": 30 + }, + "5": { + "zj_atk": 30 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70003 + }, + "24": { + "id": 24, + "name": "intr_weixiuchang_zz_name_3", + "car": "che_yy", + "parts": 4, + "stage": 3, + "star": 4, + "need": [ + { + "a": "item", + "t": "60301", + "n": 10 + }, + { + "a": "item", + "t": "60302", + "n": 10 + }, + { + "a": "item", + "t": "60303", + "n": 10 + }, + { + "a": "item", + "t": "60304", + "n": 10 + }, + { + "a": "item", + "t": "60305", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 1500 + }, + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 400 + } + ], + "buff": { + "1": { + "zj_liliang": 30 + }, + "2": { + "zj_def": 30 + }, + "3": { + "zj_atk": 30 + }, + "4": { + "zj_zhishi": 30 + }, + "5": { + "zj_atk": 30 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70003 + }, + "25": { + "id": 25, + "name": "intr_weixiuchang_zz_name_3", + "car": "che_yy", + "parts": 5, + "stage": 3, + "star": 5, + "need": [ + { + "a": "item", + "t": "60301", + "n": 10 + }, + { + "a": "item", + "t": "60302", + "n": 10 + }, + { + "a": "item", + "t": "60303", + "n": 10 + }, + { + "a": "item", + "t": "60304", + "n": 10 + }, + { + "a": "item", + "t": "60305", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 1500 + }, + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 400 + } + ], + "buff": { + "1": { + "zj_liliang": 30 + }, + "2": { + "zj_def": 30 + }, + "3": { + "zj_atk": 30 + }, + "4": { + "zj_zhishi": 30 + }, + "5": { + "zj_atk": 30 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70003 + }, + "26": { + "id": 26, + "name": "intr_weixiuchang_zz_name_3", + "car": "che_yy", + "parts": 6, + "stage": 3, + "star": 6, + "need": [ + { + "a": "item", + "t": "60301", + "n": 10 + }, + { + "a": "item", + "t": "60302", + "n": 10 + }, + { + "a": "item", + "t": "60303", + "n": 10 + }, + { + "a": "item", + "t": "60304", + "n": 10 + }, + { + "a": "item", + "t": "60305", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 1500 + }, + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 400 + } + ], + "buff": { + "1": { + "zj_liliang": 30 + }, + "2": { + "zj_def": 30 + }, + "3": { + "zj_atk": 30 + }, + "4": { + "zj_zhishi": 30 + }, + "5": { + "zj_atk": 30 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70003 + }, + "27": { + "id": 27, + "name": "intr_weixiuchang_zz_name_3", + "car": "che_yy", + "parts": 7, + "stage": 3, + "star": 7, + "need": [ + { + "a": "item", + "t": "60301", + "n": 10 + }, + { + "a": "item", + "t": "60302", + "n": 10 + }, + { + "a": "item", + "t": "60303", + "n": 10 + }, + { + "a": "item", + "t": "60304", + "n": 10 + }, + { + "a": "item", + "t": "60305", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 1500 + }, + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 400 + } + ], + "buff": { + "1": { + "zj_liliang": 30 + }, + "2": { + "zj_def": 30 + }, + "3": { + "zj_atk": 30 + }, + "4": { + "zj_zhishi": 30 + }, + "5": { + "zj_atk": 30 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70003 + }, + "28": { + "id": 28, + "name": "intr_weixiuchang_zz_name_3", + "car": "che_yy", + "parts": 8, + "stage": 3, + "star": 8, + "need": [ + { + "a": "item", + "t": "60301", + "n": 10 + }, + { + "a": "item", + "t": "60302", + "n": 10 + }, + { + "a": "item", + "t": "60303", + "n": 10 + }, + { + "a": "item", + "t": "60304", + "n": 10 + }, + { + "a": "item", + "t": "60305", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 1500 + }, + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 400 + } + ], + "buff": { + "1": { + "zj_liliang": 30 + }, + "2": { + "zj_def": 30 + }, + "3": { + "zj_atk": 30 + }, + "4": { + "zj_zhishi": 30 + }, + "5": { + "zj_atk": 30 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70003 + }, + "29": { + "id": 29, + "name": "intr_weixiuchang_zz_name_3", + "car": "che_yy", + "parts": 9, + "stage": 3, + "star": 9, + "need": [ + { + "a": "item", + "t": "60301", + "n": 10 + }, + { + "a": "item", + "t": "60302", + "n": 10 + }, + { + "a": "item", + "t": "60303", + "n": 10 + }, + { + "a": "item", + "t": "60304", + "n": 10 + }, + { + "a": "item", + "t": "60305", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 1500 + }, + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 400 + } + ], + "buff": { + "1": { + "zj_liliang": 30 + }, + "2": { + "zj_def": 30 + }, + "3": { + "zj_atk": 30 + }, + "4": { + "zj_zhishi": 30 + }, + "5": { + "zj_atk": 30 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70003 + }, + "30": { + "id": 30, + "name": "intr_weixiuchang_zz_name_3", + "car": "che_yy", + "parts": 10, + "stage": 3, + "star": 10, + "need": [ + { + "a": "item", + "t": "60301", + "n": 10 + }, + { + "a": "item", + "t": "60302", + "n": 10 + }, + { + "a": "item", + "t": "60303", + "n": 10 + }, + { + "a": "item", + "t": "60304", + "n": 10 + }, + { + "a": "item", + "t": "60305", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 1500 + }, + { + "a": "item", + "t": "22", + "n": 400 + }, + { + "a": "item", + "t": "22", + "n": 400 + } + ], + "buff": { + "1": { + "zj_liliang": 30 + }, + "2": { + "zj_def": 30 + }, + "3": { + "zj_atk": 30 + }, + "4": { + "zj_zhishi": 30 + }, + "5": { + "zj_atk": 30 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70003 + }, + "31": { + "id": 31, + "name": "intr_weixiuchang_zz_name_4", + "car": "che_jp", + "parts": 1, + "stage": 4, + "star": 1, + "need": [ + { + "a": "item", + "t": "60401", + "n": 10 + }, + { + "a": "item", + "t": "60402", + "n": 10 + }, + { + "a": "item", + "t": "60403", + "n": 10 + }, + { + "a": "item", + "t": "60404", + "n": 10 + }, + { + "a": "item", + "t": "60405", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 1750 + }, + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 500 + } + ], + "buff": { + "1": { + "zj_liliang": 40 + }, + "2": { + "zj_def": 40 + }, + "3": { + "zj_atk": 40 + }, + "4": { + "zj_zhishi": 40 + }, + "5": { + "zj_atk": 40 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70004 + }, + "32": { + "id": 32, + "name": "intr_weixiuchang_zz_name_4", + "car": "che_jp", + "parts": 2, + "stage": 4, + "star": 2, + "need": [ + { + "a": "item", + "t": "60401", + "n": 10 + }, + { + "a": "item", + "t": "60402", + "n": 10 + }, + { + "a": "item", + "t": "60403", + "n": 10 + }, + { + "a": "item", + "t": "60404", + "n": 10 + }, + { + "a": "item", + "t": "60405", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 1750 + }, + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 500 + } + ], + "buff": { + "1": { + "zj_liliang": 40 + }, + "2": { + "zj_def": 40 + }, + "3": { + "zj_atk": 40 + }, + "4": { + "zj_zhishi": 40 + }, + "5": { + "zj_atk": 40 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70004 + }, + "33": { + "id": 33, + "name": "intr_weixiuchang_zz_name_4", + "car": "che_jp", + "parts": 3, + "stage": 4, + "star": 3, + "need": [ + { + "a": "item", + "t": "60401", + "n": 10 + }, + { + "a": "item", + "t": "60402", + "n": 10 + }, + { + "a": "item", + "t": "60403", + "n": 10 + }, + { + "a": "item", + "t": "60404", + "n": 10 + }, + { + "a": "item", + "t": "60405", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 1750 + }, + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 500 + } + ], + "buff": { + "1": { + "zj_liliang": 40 + }, + "2": { + "zj_def": 40 + }, + "3": { + "zj_atk": 40 + }, + "4": { + "zj_zhishi": 40 + }, + "5": { + "zj_atk": 40 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70004 + }, + "34": { + "id": 34, + "name": "intr_weixiuchang_zz_name_4", + "car": "che_jp", + "parts": 4, + "stage": 4, + "star": 4, + "need": [ + { + "a": "item", + "t": "60401", + "n": 10 + }, + { + "a": "item", + "t": "60402", + "n": 10 + }, + { + "a": "item", + "t": "60403", + "n": 10 + }, + { + "a": "item", + "t": "60404", + "n": 10 + }, + { + "a": "item", + "t": "60405", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 1750 + }, + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 500 + } + ], + "buff": { + "1": { + "zj_liliang": 40 + }, + "2": { + "zj_def": 40 + }, + "3": { + "zj_atk": 40 + }, + "4": { + "zj_zhishi": 40 + }, + "5": { + "zj_atk": 40 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70004 + }, + "35": { + "id": 35, + "name": "intr_weixiuchang_zz_name_4", + "car": "che_jp", + "parts": 5, + "stage": 4, + "star": 5, + "need": [ + { + "a": "item", + "t": "60401", + "n": 10 + }, + { + "a": "item", + "t": "60402", + "n": 10 + }, + { + "a": "item", + "t": "60403", + "n": 10 + }, + { + "a": "item", + "t": "60404", + "n": 10 + }, + { + "a": "item", + "t": "60405", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 1750 + }, + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 500 + } + ], + "buff": { + "1": { + "zj_liliang": 40 + }, + "2": { + "zj_def": 40 + }, + "3": { + "zj_atk": 40 + }, + "4": { + "zj_zhishi": 40 + }, + "5": { + "zj_atk": 40 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70004 + }, + "36": { + "id": 36, + "name": "intr_weixiuchang_zz_name_4", + "car": "che_jp", + "parts": 6, + "stage": 4, + "star": 6, + "need": [ + { + "a": "item", + "t": "60401", + "n": 10 + }, + { + "a": "item", + "t": "60402", + "n": 10 + }, + { + "a": "item", + "t": "60403", + "n": 10 + }, + { + "a": "item", + "t": "60404", + "n": 10 + }, + { + "a": "item", + "t": "60405", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 1750 + }, + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 500 + } + ], + "buff": { + "1": { + "zj_liliang": 40 + }, + "2": { + "zj_def": 40 + }, + "3": { + "zj_atk": 40 + }, + "4": { + "zj_zhishi": 40 + }, + "5": { + "zj_atk": 40 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70004 + }, + "37": { + "id": 37, + "name": "intr_weixiuchang_zz_name_4", + "car": "che_jp", + "parts": 7, + "stage": 4, + "star": 7, + "need": [ + { + "a": "item", + "t": "60401", + "n": 10 + }, + { + "a": "item", + "t": "60402", + "n": 10 + }, + { + "a": "item", + "t": "60403", + "n": 10 + }, + { + "a": "item", + "t": "60404", + "n": 10 + }, + { + "a": "item", + "t": "60405", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 1750 + }, + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 500 + } + ], + "buff": { + "1": { + "zj_liliang": 40 + }, + "2": { + "zj_def": 40 + }, + "3": { + "zj_atk": 40 + }, + "4": { + "zj_zhishi": 40 + }, + "5": { + "zj_atk": 40 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70004 + }, + "38": { + "id": 38, + "name": "intr_weixiuchang_zz_name_4", + "car": "che_jp", + "parts": 8, + "stage": 4, + "star": 8, + "need": [ + { + "a": "item", + "t": "60401", + "n": 10 + }, + { + "a": "item", + "t": "60402", + "n": 10 + }, + { + "a": "item", + "t": "60403", + "n": 10 + }, + { + "a": "item", + "t": "60404", + "n": 10 + }, + { + "a": "item", + "t": "60405", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 1750 + }, + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 500 + } + ], + "buff": { + "1": { + "zj_liliang": 40 + }, + "2": { + "zj_def": 40 + }, + "3": { + "zj_atk": 40 + }, + "4": { + "zj_zhishi": 40 + }, + "5": { + "zj_atk": 40 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70004 + }, + "39": { + "id": 39, + "name": "intr_weixiuchang_zz_name_4", + "car": "che_jp", + "parts": 9, + "stage": 4, + "star": 9, + "need": [ + { + "a": "item", + "t": "60401", + "n": 10 + }, + { + "a": "item", + "t": "60402", + "n": 10 + }, + { + "a": "item", + "t": "60403", + "n": 10 + }, + { + "a": "item", + "t": "60404", + "n": 10 + }, + { + "a": "item", + "t": "60405", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 1750 + }, + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 500 + } + ], + "buff": { + "1": { + "zj_liliang": 40 + }, + "2": { + "zj_def": 40 + }, + "3": { + "zj_atk": 40 + }, + "4": { + "zj_zhishi": 40 + }, + "5": { + "zj_atk": 40 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70004 + }, + "40": { + "id": 40, + "name": "intr_weixiuchang_zz_name_4", + "car": "che_jp", + "parts": 10, + "stage": 4, + "star": 10, + "need": [ + { + "a": "item", + "t": "60401", + "n": 10 + }, + { + "a": "item", + "t": "60402", + "n": 10 + }, + { + "a": "item", + "t": "60403", + "n": 10 + }, + { + "a": "item", + "t": "60404", + "n": 10 + }, + { + "a": "item", + "t": "60405", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 1750 + }, + { + "a": "item", + "t": "22", + "n": 500 + }, + { + "a": "item", + "t": "22", + "n": 500 + } + ], + "buff": { + "1": { + "zj_liliang": 40 + }, + "2": { + "zj_def": 40 + }, + "3": { + "zj_atk": 40 + }, + "4": { + "zj_zhishi": 40 + }, + "5": { + "zj_atk": 40 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70004 + }, + "41": { + "id": 41, + "name": "intr_weixiuchang_zz_name_5", + "car": "che_db", + "parts": 1, + "stage": 5, + "star": 1, + "need": [ + { + "a": "item", + "t": "60501", + "n": 10 + }, + { + "a": "item", + "t": "60502", + "n": 10 + }, + { + "a": "item", + "t": "60503", + "n": 10 + }, + { + "a": "item", + "t": "60504", + "n": 10 + }, + { + "a": "item", + "t": "60505", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 2000 + }, + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 600 + } + ], + "buff": { + "1": { + "zj_liliang": 50 + }, + "2": { + "zj_def": 50 + }, + "3": { + "zj_atk": 50 + }, + "4": { + "zj_zhishi": 50 + }, + "5": { + "zj_atk": 50 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70005 + }, + "42": { + "id": 42, + "name": "intr_weixiuchang_zz_name_5", + "car": "che_db", + "parts": 2, + "stage": 5, + "star": 2, + "need": [ + { + "a": "item", + "t": "60501", + "n": 10 + }, + { + "a": "item", + "t": "60502", + "n": 10 + }, + { + "a": "item", + "t": "60503", + "n": 10 + }, + { + "a": "item", + "t": "60504", + "n": 10 + }, + { + "a": "item", + "t": "60505", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 2000 + }, + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 600 + } + ], + "buff": { + "1": { + "zj_liliang": 50 + }, + "2": { + "zj_def": 50 + }, + "3": { + "zj_atk": 50 + }, + "4": { + "zj_zhishi": 50 + }, + "5": { + "zj_atk": 50 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70005 + }, + "43": { + "id": 43, + "name": "intr_weixiuchang_zz_name_5", + "car": "che_db", + "parts": 3, + "stage": 5, + "star": 3, + "need": [ + { + "a": "item", + "t": "60501", + "n": 10 + }, + { + "a": "item", + "t": "60502", + "n": 10 + }, + { + "a": "item", + "t": "60503", + "n": 10 + }, + { + "a": "item", + "t": "60504", + "n": 10 + }, + { + "a": "item", + "t": "60505", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 2000 + }, + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 600 + } + ], + "buff": { + "1": { + "zj_liliang": 50 + }, + "2": { + "zj_def": 50 + }, + "3": { + "zj_atk": 50 + }, + "4": { + "zj_zhishi": 50 + }, + "5": { + "zj_atk": 50 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70005 + }, + "44": { + "id": 44, + "name": "intr_weixiuchang_zz_name_5", + "car": "che_db", + "parts": 4, + "stage": 5, + "star": 4, + "need": [ + { + "a": "item", + "t": "60501", + "n": 10 + }, + { + "a": "item", + "t": "60502", + "n": 10 + }, + { + "a": "item", + "t": "60503", + "n": 10 + }, + { + "a": "item", + "t": "60504", + "n": 10 + }, + { + "a": "item", + "t": "60505", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 2000 + }, + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 600 + } + ], + "buff": { + "1": { + "zj_liliang": 50 + }, + "2": { + "zj_def": 50 + }, + "3": { + "zj_atk": 50 + }, + "4": { + "zj_zhishi": 50 + }, + "5": { + "zj_atk": 50 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70005 + }, + "45": { + "id": 45, + "name": "intr_weixiuchang_zz_name_5", + "car": "che_db", + "parts": 5, + "stage": 5, + "star": 5, + "need": [ + { + "a": "item", + "t": "60501", + "n": 10 + }, + { + "a": "item", + "t": "60502", + "n": 10 + }, + { + "a": "item", + "t": "60503", + "n": 10 + }, + { + "a": "item", + "t": "60504", + "n": 10 + }, + { + "a": "item", + "t": "60505", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 2000 + }, + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 600 + } + ], + "buff": { + "1": { + "zj_liliang": 50 + }, + "2": { + "zj_def": 50 + }, + "3": { + "zj_atk": 50 + }, + "4": { + "zj_zhishi": 50 + }, + "5": { + "zj_atk": 50 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70005 + }, + "46": { + "id": 46, + "name": "intr_weixiuchang_zz_name_5", + "car": "che_db", + "parts": 6, + "stage": 5, + "star": 6, + "need": [ + { + "a": "item", + "t": "60501", + "n": 10 + }, + { + "a": "item", + "t": "60502", + "n": 10 + }, + { + "a": "item", + "t": "60503", + "n": 10 + }, + { + "a": "item", + "t": "60504", + "n": 10 + }, + { + "a": "item", + "t": "60505", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 2000 + }, + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 600 + } + ], + "buff": { + "1": { + "zj_liliang": 50 + }, + "2": { + "zj_def": 50 + }, + "3": { + "zj_atk": 50 + }, + "4": { + "zj_zhishi": 50 + }, + "5": { + "zj_atk": 50 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70005 + }, + "47": { + "id": 47, + "name": "intr_weixiuchang_zz_name_5", + "car": "che_db", + "parts": 7, + "stage": 5, + "star": 7, + "need": [ + { + "a": "item", + "t": "60501", + "n": 10 + }, + { + "a": "item", + "t": "60502", + "n": 10 + }, + { + "a": "item", + "t": "60503", + "n": 10 + }, + { + "a": "item", + "t": "60504", + "n": 10 + }, + { + "a": "item", + "t": "60505", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 2000 + }, + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 600 + } + ], + "buff": { + "1": { + "zj_liliang": 50 + }, + "2": { + "zj_def": 50 + }, + "3": { + "zj_atk": 50 + }, + "4": { + "zj_zhishi": 50 + }, + "5": { + "zj_atk": 50 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70005 + }, + "48": { + "id": 48, + "name": "intr_weixiuchang_zz_name_5", + "car": "che_db", + "parts": 8, + "stage": 5, + "star": 8, + "need": [ + { + "a": "item", + "t": "60501", + "n": 10 + }, + { + "a": "item", + "t": "60502", + "n": 10 + }, + { + "a": "item", + "t": "60503", + "n": 10 + }, + { + "a": "item", + "t": "60504", + "n": 10 + }, + { + "a": "item", + "t": "60505", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 2000 + }, + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 600 + } + ], + "buff": { + "1": { + "zj_liliang": 50 + }, + "2": { + "zj_def": 50 + }, + "3": { + "zj_atk": 50 + }, + "4": { + "zj_zhishi": 50 + }, + "5": { + "zj_atk": 50 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70005 + }, + "49": { + "id": 49, + "name": "intr_weixiuchang_zz_name_5", + "car": "che_db", + "parts": 9, + "stage": 5, + "star": 9, + "need": [ + { + "a": "item", + "t": "60501", + "n": 10 + }, + { + "a": "item", + "t": "60502", + "n": 10 + }, + { + "a": "item", + "t": "60503", + "n": 10 + }, + { + "a": "item", + "t": "60504", + "n": 10 + }, + { + "a": "item", + "t": "60505", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 2000 + }, + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 600 + } + ], + "buff": { + "1": { + "zj_liliang": 50 + }, + "2": { + "zj_def": 50 + }, + "3": { + "zj_atk": 50 + }, + "4": { + "zj_zhishi": 50 + }, + "5": { + "zj_atk": 50 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70005 + }, + "50": { + "id": 50, + "name": "intr_weixiuchang_zz_name_5", + "car": "che_db", + "parts": 10, + "stage": 5, + "star": 10, + "need": [ + { + "a": "item", + "t": "60501", + "n": 10 + }, + { + "a": "item", + "t": "60502", + "n": 10 + }, + { + "a": "item", + "t": "60503", + "n": 10 + }, + { + "a": "item", + "t": "60504", + "n": 10 + }, + { + "a": "item", + "t": "60505", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 2000 + }, + { + "a": "item", + "t": "22", + "n": 600 + }, + { + "a": "item", + "t": "22", + "n": 600 + } + ], + "buff": { + "1": { + "zj_liliang": 50 + }, + "2": { + "zj_def": 50 + }, + "3": { + "zj_atk": 50 + }, + "4": { + "zj_zhishi": 50 + }, + "5": { + "zj_atk": 50 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70005 + }, + "51": { + "id": 51, + "name": "intr_weixiuchang_zz_name_6", + "car": "che_dxc", + "parts": 1, + "stage": 6, + "star": 1, + "need": [ + { + "a": "item", + "t": "60601", + "n": 10 + }, + { + "a": "item", + "t": "60602", + "n": 10 + }, + { + "a": "item", + "t": "60603", + "n": 10 + }, + { + "a": "item", + "t": "60604", + "n": 10 + }, + { + "a": "item", + "t": "60605", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 2250 + }, + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 700 + } + ], + "buff": { + "1": { + "zj_liliang": 60 + }, + "2": { + "zj_def": 60 + }, + "3": { + "zj_atk": 60 + }, + "4": { + "zj_zhishi": 60 + }, + "5": { + "zj_atk": 60 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70006 + }, + "52": { + "id": 52, + "name": "intr_weixiuchang_zz_name_6", + "car": "che_dxc", + "parts": 2, + "stage": 6, + "star": 2, + "need": [ + { + "a": "item", + "t": "60601", + "n": 10 + }, + { + "a": "item", + "t": "60602", + "n": 10 + }, + { + "a": "item", + "t": "60603", + "n": 10 + }, + { + "a": "item", + "t": "60604", + "n": 10 + }, + { + "a": "item", + "t": "60605", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 2250 + }, + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 700 + } + ], + "buff": { + "1": { + "zj_liliang": 60 + }, + "2": { + "zj_def": 60 + }, + "3": { + "zj_atk": 60 + }, + "4": { + "zj_zhishi": 60 + }, + "5": { + "zj_atk": 60 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70006 + }, + "53": { + "id": 53, + "name": "intr_weixiuchang_zz_name_6", + "car": "che_dxc", + "parts": 3, + "stage": 6, + "star": 3, + "need": [ + { + "a": "item", + "t": "60601", + "n": 10 + }, + { + "a": "item", + "t": "60602", + "n": 10 + }, + { + "a": "item", + "t": "60603", + "n": 10 + }, + { + "a": "item", + "t": "60604", + "n": 10 + }, + { + "a": "item", + "t": "60605", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 2250 + }, + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 700 + } + ], + "buff": { + "1": { + "zj_liliang": 60 + }, + "2": { + "zj_def": 60 + }, + "3": { + "zj_atk": 60 + }, + "4": { + "zj_zhishi": 60 + }, + "5": { + "zj_atk": 60 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70006 + }, + "54": { + "id": 54, + "name": "intr_weixiuchang_zz_name_6", + "car": "che_dxc", + "parts": 4, + "stage": 6, + "star": 4, + "need": [ + { + "a": "item", + "t": "60601", + "n": 10 + }, + { + "a": "item", + "t": "60602", + "n": 10 + }, + { + "a": "item", + "t": "60603", + "n": 10 + }, + { + "a": "item", + "t": "60604", + "n": 10 + }, + { + "a": "item", + "t": "60605", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 2250 + }, + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 700 + } + ], + "buff": { + "1": { + "zj_liliang": 60 + }, + "2": { + "zj_def": 60 + }, + "3": { + "zj_atk": 60 + }, + "4": { + "zj_zhishi": 60 + }, + "5": { + "zj_atk": 60 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70006 + }, + "55": { + "id": 55, + "name": "intr_weixiuchang_zz_name_6", + "car": "che_dxc", + "parts": 5, + "stage": 6, + "star": 5, + "need": [ + { + "a": "item", + "t": "60601", + "n": 10 + }, + { + "a": "item", + "t": "60602", + "n": 10 + }, + { + "a": "item", + "t": "60603", + "n": 10 + }, + { + "a": "item", + "t": "60604", + "n": 10 + }, + { + "a": "item", + "t": "60605", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 2250 + }, + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 700 + } + ], + "buff": { + "1": { + "zj_liliang": 60 + }, + "2": { + "zj_def": 60 + }, + "3": { + "zj_atk": 60 + }, + "4": { + "zj_zhishi": 60 + }, + "5": { + "zj_atk": 60 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70006 + }, + "56": { + "id": 56, + "name": "intr_weixiuchang_zz_name_6", + "car": "che_dxc", + "parts": 6, + "stage": 6, + "star": 6, + "need": [ + { + "a": "item", + "t": "60601", + "n": 10 + }, + { + "a": "item", + "t": "60602", + "n": 10 + }, + { + "a": "item", + "t": "60603", + "n": 10 + }, + { + "a": "item", + "t": "60604", + "n": 10 + }, + { + "a": "item", + "t": "60605", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 2250 + }, + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 700 + } + ], + "buff": { + "1": { + "zj_liliang": 60 + }, + "2": { + "zj_def": 60 + }, + "3": { + "zj_atk": 60 + }, + "4": { + "zj_zhishi": 60 + }, + "5": { + "zj_atk": 60 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70006 + }, + "57": { + "id": 57, + "name": "intr_weixiuchang_zz_name_6", + "car": "che_dxc", + "parts": 7, + "stage": 6, + "star": 7, + "need": [ + { + "a": "item", + "t": "60601", + "n": 10 + }, + { + "a": "item", + "t": "60602", + "n": 10 + }, + { + "a": "item", + "t": "60603", + "n": 10 + }, + { + "a": "item", + "t": "60604", + "n": 10 + }, + { + "a": "item", + "t": "60605", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 2250 + }, + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 700 + } + ], + "buff": { + "1": { + "zj_liliang": 60 + }, + "2": { + "zj_def": 60 + }, + "3": { + "zj_atk": 60 + }, + "4": { + "zj_zhishi": 60 + }, + "5": { + "zj_atk": 60 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70006 + }, + "58": { + "id": 58, + "name": "intr_weixiuchang_zz_name_6", + "car": "che_dxc", + "parts": 8, + "stage": 6, + "star": 8, + "need": [ + { + "a": "item", + "t": "60601", + "n": 10 + }, + { + "a": "item", + "t": "60602", + "n": 10 + }, + { + "a": "item", + "t": "60603", + "n": 10 + }, + { + "a": "item", + "t": "60604", + "n": 10 + }, + { + "a": "item", + "t": "60605", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 2250 + }, + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 700 + } + ], + "buff": { + "1": { + "zj_liliang": 60 + }, + "2": { + "zj_def": 60 + }, + "3": { + "zj_atk": 60 + }, + "4": { + "zj_zhishi": 60 + }, + "5": { + "zj_atk": 60 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70006 + }, + "59": { + "id": 59, + "name": "intr_weixiuchang_zz_name_6", + "car": "che_dxc", + "parts": 9, + "stage": 6, + "star": 9, + "need": [ + { + "a": "item", + "t": "60601", + "n": 10 + }, + { + "a": "item", + "t": "60602", + "n": 10 + }, + { + "a": "item", + "t": "60603", + "n": 10 + }, + { + "a": "item", + "t": "60604", + "n": 10 + }, + { + "a": "item", + "t": "60605", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 2250 + }, + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 700 + } + ], + "buff": { + "1": { + "zj_liliang": 60 + }, + "2": { + "zj_def": 60 + }, + "3": { + "zj_atk": 60 + }, + "4": { + "zj_zhishi": 60 + }, + "5": { + "zj_atk": 60 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70006 + }, + "60": { + "id": 60, + "name": "intr_weixiuchang_zz_name_6", + "car": "che_dxc", + "parts": 10, + "stage": 6, + "star": 10, + "need": [ + { + "a": "item", + "t": "60601", + "n": 10 + }, + { + "a": "item", + "t": "60602", + "n": 10 + }, + { + "a": "item", + "t": "60603", + "n": 10 + }, + { + "a": "item", + "t": "60604", + "n": 10 + }, + { + "a": "item", + "t": "60605", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 2250 + }, + { + "a": "item", + "t": "22", + "n": 700 + }, + { + "a": "item", + "t": "22", + "n": 700 + } + ], + "buff": { + "1": { + "zj_liliang": 60 + }, + "2": { + "zj_def": 60 + }, + "3": { + "zj_atk": 60 + }, + "4": { + "zj_zhishi": 60 + }, + "5": { + "zj_atk": 60 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70006 + }, + "61": { + "id": 61, + "name": "intr_weixiuchang_zz_name_7", + "car": "che_mb", + "parts": 1, + "stage": 7, + "star": 1, + "need": [ + { + "a": "item", + "t": "60701", + "n": 10 + }, + { + "a": "item", + "t": "60702", + "n": 10 + }, + { + "a": "item", + "t": "60703", + "n": 10 + }, + { + "a": "item", + "t": "60704", + "n": 10 + }, + { + "a": "item", + "t": "60705", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 2500 + }, + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 800 + } + ], + "buff": { + "1": { + "zj_liliang": 70 + }, + "2": { + "zj_def": 70 + }, + "3": { + "zj_atk": 70 + }, + "4": { + "zj_zhishi": 70 + }, + "5": { + "zj_atk": 70 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70007 + }, + "62": { + "id": 62, + "name": "intr_weixiuchang_zz_name_7", + "car": "che_mb", + "parts": 2, + "stage": 7, + "star": 2, + "need": [ + { + "a": "item", + "t": "60701", + "n": 10 + }, + { + "a": "item", + "t": "60702", + "n": 10 + }, + { + "a": "item", + "t": "60703", + "n": 10 + }, + { + "a": "item", + "t": "60704", + "n": 10 + }, + { + "a": "item", + "t": "60705", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 2500 + }, + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 800 + } + ], + "buff": { + "1": { + "zj_liliang": 70 + }, + "2": { + "zj_def": 70 + }, + "3": { + "zj_atk": 70 + }, + "4": { + "zj_zhishi": 70 + }, + "5": { + "zj_atk": 70 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70007 + }, + "63": { + "id": 63, + "name": "intr_weixiuchang_zz_name_7", + "car": "che_mb", + "parts": 3, + "stage": 7, + "star": 3, + "need": [ + { + "a": "item", + "t": "60701", + "n": 10 + }, + { + "a": "item", + "t": "60702", + "n": 10 + }, + { + "a": "item", + "t": "60703", + "n": 10 + }, + { + "a": "item", + "t": "60704", + "n": 10 + }, + { + "a": "item", + "t": "60705", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 2500 + }, + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 800 + } + ], + "buff": { + "1": { + "zj_liliang": 70 + }, + "2": { + "zj_def": 70 + }, + "3": { + "zj_atk": 70 + }, + "4": { + "zj_zhishi": 70 + }, + "5": { + "zj_atk": 70 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70007 + }, + "64": { + "id": 64, + "name": "intr_weixiuchang_zz_name_7", + "car": "che_mb", + "parts": 4, + "stage": 7, + "star": 4, + "need": [ + { + "a": "item", + "t": "60701", + "n": 10 + }, + { + "a": "item", + "t": "60702", + "n": 10 + }, + { + "a": "item", + "t": "60703", + "n": 10 + }, + { + "a": "item", + "t": "60704", + "n": 10 + }, + { + "a": "item", + "t": "60705", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 2500 + }, + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 800 + } + ], + "buff": { + "1": { + "zj_liliang": 70 + }, + "2": { + "zj_def": 70 + }, + "3": { + "zj_atk": 70 + }, + "4": { + "zj_zhishi": 70 + }, + "5": { + "zj_atk": 70 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70007 + }, + "65": { + "id": 65, + "name": "intr_weixiuchang_zz_name_7", + "car": "che_mb", + "parts": 5, + "stage": 7, + "star": 5, + "need": [ + { + "a": "item", + "t": "60701", + "n": 10 + }, + { + "a": "item", + "t": "60702", + "n": 10 + }, + { + "a": "item", + "t": "60703", + "n": 10 + }, + { + "a": "item", + "t": "60704", + "n": 10 + }, + { + "a": "item", + "t": "60705", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 2500 + }, + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 800 + } + ], + "buff": { + "1": { + "zj_liliang": 70 + }, + "2": { + "zj_def": 70 + }, + "3": { + "zj_atk": 70 + }, + "4": { + "zj_zhishi": 70 + }, + "5": { + "zj_atk": 70 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70007 + }, + "66": { + "id": 66, + "name": "intr_weixiuchang_zz_name_7", + "car": "che_mb", + "parts": 6, + "stage": 7, + "star": 6, + "need": [ + { + "a": "item", + "t": "60701", + "n": 10 + }, + { + "a": "item", + "t": "60702", + "n": 10 + }, + { + "a": "item", + "t": "60703", + "n": 10 + }, + { + "a": "item", + "t": "60704", + "n": 10 + }, + { + "a": "item", + "t": "60705", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 2500 + }, + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 800 + } + ], + "buff": { + "1": { + "zj_liliang": 70 + }, + "2": { + "zj_def": 70 + }, + "3": { + "zj_atk": 70 + }, + "4": { + "zj_zhishi": 70 + }, + "5": { + "zj_atk": 70 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70007 + }, + "67": { + "id": 67, + "name": "intr_weixiuchang_zz_name_7", + "car": "che_mb", + "parts": 7, + "stage": 7, + "star": 7, + "need": [ + { + "a": "item", + "t": "60701", + "n": 10 + }, + { + "a": "item", + "t": "60702", + "n": 10 + }, + { + "a": "item", + "t": "60703", + "n": 10 + }, + { + "a": "item", + "t": "60704", + "n": 10 + }, + { + "a": "item", + "t": "60705", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 2500 + }, + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 800 + } + ], + "buff": { + "1": { + "zj_liliang": 70 + }, + "2": { + "zj_def": 70 + }, + "3": { + "zj_atk": 70 + }, + "4": { + "zj_zhishi": 70 + }, + "5": { + "zj_atk": 70 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70007 + }, + "68": { + "id": 68, + "name": "intr_weixiuchang_zz_name_7", + "car": "che_mb", + "parts": 8, + "stage": 7, + "star": 8, + "need": [ + { + "a": "item", + "t": "60701", + "n": 10 + }, + { + "a": "item", + "t": "60702", + "n": 10 + }, + { + "a": "item", + "t": "60703", + "n": 10 + }, + { + "a": "item", + "t": "60704", + "n": 10 + }, + { + "a": "item", + "t": "60705", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 2500 + }, + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 800 + } + ], + "buff": { + "1": { + "zj_liliang": 70 + }, + "2": { + "zj_def": 70 + }, + "3": { + "zj_atk": 70 + }, + "4": { + "zj_zhishi": 70 + }, + "5": { + "zj_atk": 70 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70007 + }, + "69": { + "id": 69, + "name": "intr_weixiuchang_zz_name_7", + "car": "che_mb", + "parts": 9, + "stage": 7, + "star": 9, + "need": [ + { + "a": "item", + "t": "60701", + "n": 10 + }, + { + "a": "item", + "t": "60702", + "n": 10 + }, + { + "a": "item", + "t": "60703", + "n": 10 + }, + { + "a": "item", + "t": "60704", + "n": 10 + }, + { + "a": "item", + "t": "60705", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 2500 + }, + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 800 + } + ], + "buff": { + "1": { + "zj_liliang": 70 + }, + "2": { + "zj_def": 70 + }, + "3": { + "zj_atk": 70 + }, + "4": { + "zj_zhishi": 70 + }, + "5": { + "zj_atk": 70 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70007 + }, + "70": { + "id": 70, + "name": "intr_weixiuchang_zz_name_7", + "car": "che_mb", + "parts": 10, + "stage": 7, + "star": 10, + "need": [ + { + "a": "item", + "t": "60701", + "n": 10 + }, + { + "a": "item", + "t": "60702", + "n": 10 + }, + { + "a": "item", + "t": "60703", + "n": 10 + }, + { + "a": "item", + "t": "60704", + "n": 10 + }, + { + "a": "item", + "t": "60705", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 2500 + }, + { + "a": "item", + "t": "22", + "n": 800 + }, + { + "a": "item", + "t": "22", + "n": 800 + } + ], + "buff": { + "1": { + "zj_liliang": 70 + }, + "2": { + "zj_def": 70 + }, + "3": { + "zj_atk": 70 + }, + "4": { + "zj_zhishi": 70 + }, + "5": { + "zj_atk": 70 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70007 + }, + "71": { + "id": 71, + "name": "intr_weixiuchang_zz_name_8", + "car": "che_cp", + "parts": 1, + "stage": 8, + "star": 1, + "need": [ + { + "a": "item", + "t": "60801", + "n": 10 + }, + { + "a": "item", + "t": "60802", + "n": 10 + }, + { + "a": "item", + "t": "60803", + "n": 10 + }, + { + "a": "item", + "t": "60804", + "n": 10 + }, + { + "a": "item", + "t": "60805", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 2750 + }, + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 900 + } + ], + "buff": { + "1": { + "zj_liliang": 80 + }, + "2": { + "zj_def": 80 + }, + "3": { + "zj_atk": 80 + }, + "4": { + "zj_zhishi": 80 + }, + "5": { + "zj_atk": 80 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70008 + }, + "72": { + "id": 72, + "name": "intr_weixiuchang_zz_name_8", + "car": "che_cp", + "parts": 2, + "stage": 8, + "star": 2, + "need": [ + { + "a": "item", + "t": "60801", + "n": 10 + }, + { + "a": "item", + "t": "60802", + "n": 10 + }, + { + "a": "item", + "t": "60803", + "n": 10 + }, + { + "a": "item", + "t": "60804", + "n": 10 + }, + { + "a": "item", + "t": "60805", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 2750 + }, + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 900 + } + ], + "buff": { + "1": { + "zj_liliang": 80 + }, + "2": { + "zj_def": 80 + }, + "3": { + "zj_atk": 80 + }, + "4": { + "zj_zhishi": 80 + }, + "5": { + "zj_atk": 80 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70008 + }, + "73": { + "id": 73, + "name": "intr_weixiuchang_zz_name_8", + "car": "che_cp", + "parts": 3, + "stage": 8, + "star": 3, + "need": [ + { + "a": "item", + "t": "60801", + "n": 10 + }, + { + "a": "item", + "t": "60802", + "n": 10 + }, + { + "a": "item", + "t": "60803", + "n": 10 + }, + { + "a": "item", + "t": "60804", + "n": 10 + }, + { + "a": "item", + "t": "60805", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 2750 + }, + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 900 + } + ], + "buff": { + "1": { + "zj_liliang": 80 + }, + "2": { + "zj_def": 80 + }, + "3": { + "zj_atk": 80 + }, + "4": { + "zj_zhishi": 80 + }, + "5": { + "zj_atk": 80 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70008 + }, + "74": { + "id": 74, + "name": "intr_weixiuchang_zz_name_8", + "car": "che_cp", + "parts": 4, + "stage": 8, + "star": 4, + "need": [ + { + "a": "item", + "t": "60801", + "n": 10 + }, + { + "a": "item", + "t": "60802", + "n": 10 + }, + { + "a": "item", + "t": "60803", + "n": 10 + }, + { + "a": "item", + "t": "60804", + "n": 10 + }, + { + "a": "item", + "t": "60805", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 2750 + }, + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 900 + } + ], + "buff": { + "1": { + "zj_liliang": 80 + }, + "2": { + "zj_def": 80 + }, + "3": { + "zj_atk": 80 + }, + "4": { + "zj_zhishi": 80 + }, + "5": { + "zj_atk": 80 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70008 + }, + "75": { + "id": 75, + "name": "intr_weixiuchang_zz_name_8", + "car": "che_cp", + "parts": 5, + "stage": 8, + "star": 5, + "need": [ + { + "a": "item", + "t": "60801", + "n": 10 + }, + { + "a": "item", + "t": "60802", + "n": 10 + }, + { + "a": "item", + "t": "60803", + "n": 10 + }, + { + "a": "item", + "t": "60804", + "n": 10 + }, + { + "a": "item", + "t": "60805", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 2750 + }, + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 900 + } + ], + "buff": { + "1": { + "zj_liliang": 80 + }, + "2": { + "zj_def": 80 + }, + "3": { + "zj_atk": 80 + }, + "4": { + "zj_zhishi": 80 + }, + "5": { + "zj_atk": 80 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70008 + }, + "76": { + "id": 76, + "name": "intr_weixiuchang_zz_name_8", + "car": "che_cp", + "parts": 6, + "stage": 8, + "star": 6, + "need": [ + { + "a": "item", + "t": "60801", + "n": 10 + }, + { + "a": "item", + "t": "60802", + "n": 10 + }, + { + "a": "item", + "t": "60803", + "n": 10 + }, + { + "a": "item", + "t": "60804", + "n": 10 + }, + { + "a": "item", + "t": "60805", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 2750 + }, + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 900 + } + ], + "buff": { + "1": { + "zj_liliang": 80 + }, + "2": { + "zj_def": 80 + }, + "3": { + "zj_atk": 80 + }, + "4": { + "zj_zhishi": 80 + }, + "5": { + "zj_atk": 80 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70008 + }, + "77": { + "id": 77, + "name": "intr_weixiuchang_zz_name_8", + "car": "che_cp", + "parts": 7, + "stage": 8, + "star": 7, + "need": [ + { + "a": "item", + "t": "60801", + "n": 10 + }, + { + "a": "item", + "t": "60802", + "n": 10 + }, + { + "a": "item", + "t": "60803", + "n": 10 + }, + { + "a": "item", + "t": "60804", + "n": 10 + }, + { + "a": "item", + "t": "60805", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 2750 + }, + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 900 + } + ], + "buff": { + "1": { + "zj_liliang": 80 + }, + "2": { + "zj_def": 80 + }, + "3": { + "zj_atk": 80 + }, + "4": { + "zj_zhishi": 80 + }, + "5": { + "zj_atk": 80 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70008 + }, + "78": { + "id": 78, + "name": "intr_weixiuchang_zz_name_8", + "car": "che_cp", + "parts": 8, + "stage": 8, + "star": 8, + "need": [ + { + "a": "item", + "t": "60801", + "n": 10 + }, + { + "a": "item", + "t": "60802", + "n": 10 + }, + { + "a": "item", + "t": "60803", + "n": 10 + }, + { + "a": "item", + "t": "60804", + "n": 10 + }, + { + "a": "item", + "t": "60805", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 2750 + }, + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 900 + } + ], + "buff": { + "1": { + "zj_liliang": 80 + }, + "2": { + "zj_def": 80 + }, + "3": { + "zj_atk": 80 + }, + "4": { + "zj_zhishi": 80 + }, + "5": { + "zj_atk": 80 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70008 + }, + "79": { + "id": 79, + "name": "intr_weixiuchang_zz_name_8", + "car": "che_cp", + "parts": 9, + "stage": 8, + "star": 9, + "need": [ + { + "a": "item", + "t": "60801", + "n": 10 + }, + { + "a": "item", + "t": "60802", + "n": 10 + }, + { + "a": "item", + "t": "60803", + "n": 10 + }, + { + "a": "item", + "t": "60804", + "n": 10 + }, + { + "a": "item", + "t": "60805", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 2750 + }, + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 900 + } + ], + "buff": { + "1": { + "zj_liliang": 80 + }, + "2": { + "zj_def": 80 + }, + "3": { + "zj_atk": 80 + }, + "4": { + "zj_zhishi": 80 + }, + "5": { + "zj_atk": 80 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70008 + }, + "80": { + "id": 80, + "name": "intr_weixiuchang_zz_name_8", + "car": "che_cp", + "parts": 10, + "stage": 8, + "star": 10, + "need": [ + { + "a": "item", + "t": "60801", + "n": 10 + }, + { + "a": "item", + "t": "60802", + "n": 10 + }, + { + "a": "item", + "t": "60803", + "n": 10 + }, + { + "a": "item", + "t": "60804", + "n": 10 + }, + { + "a": "item", + "t": "60805", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 2750 + }, + { + "a": "item", + "t": "22", + "n": 900 + }, + { + "a": "item", + "t": "22", + "n": 900 + } + ], + "buff": { + "1": { + "zj_liliang": 80 + }, + "2": { + "zj_def": 80 + }, + "3": { + "zj_atk": 80 + }, + "4": { + "zj_zhishi": 80 + }, + "5": { + "zj_atk": 80 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70008 + }, + "81": { + "id": 81, + "name": "intr_weixiuchang_zz_name_9", + "car": "che_fj", + "parts": 1, + "stage": 9, + "star": 1, + "need": [ + { + "a": "item", + "t": "60901", + "n": 10 + }, + { + "a": "item", + "t": "60902", + "n": 10 + }, + { + "a": "item", + "t": "60903", + "n": 10 + }, + { + "a": "item", + "t": "60904", + "n": 10 + }, + { + "a": "item", + "t": "60905", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 3000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + } + ], + "buff": { + "1": { + "zj_liliang": 90 + }, + "2": { + "zj_def": 90 + }, + "3": { + "zj_atk": 90 + }, + "4": { + "zj_zhishi": 90 + }, + "5": { + "zj_atk": 90 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70009 + }, + "82": { + "id": 82, + "name": "intr_weixiuchang_zz_name_9", + "car": "che_fj", + "parts": 2, + "stage": 9, + "star": 2, + "need": [ + { + "a": "item", + "t": "60901", + "n": 10 + }, + { + "a": "item", + "t": "60902", + "n": 10 + }, + { + "a": "item", + "t": "60903", + "n": 10 + }, + { + "a": "item", + "t": "60904", + "n": 10 + }, + { + "a": "item", + "t": "60905", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 3000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + } + ], + "buff": { + "1": { + "zj_liliang": 90 + }, + "2": { + "zj_def": 90 + }, + "3": { + "zj_atk": 90 + }, + "4": { + "zj_zhishi": 90 + }, + "5": { + "zj_atk": 90 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70009 + }, + "83": { + "id": 83, + "name": "intr_weixiuchang_zz_name_9", + "car": "che_fj", + "parts": 3, + "stage": 9, + "star": 3, + "need": [ + { + "a": "item", + "t": "60901", + "n": 10 + }, + { + "a": "item", + "t": "60902", + "n": 10 + }, + { + "a": "item", + "t": "60903", + "n": 10 + }, + { + "a": "item", + "t": "60904", + "n": 10 + }, + { + "a": "item", + "t": "60905", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 3000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + } + ], + "buff": { + "1": { + "zj_liliang": 90 + }, + "2": { + "zj_def": 90 + }, + "3": { + "zj_atk": 90 + }, + "4": { + "zj_zhishi": 90 + }, + "5": { + "zj_atk": 90 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70009 + }, + "84": { + "id": 84, + "name": "intr_weixiuchang_zz_name_9", + "car": "che_fj", + "parts": 4, + "stage": 9, + "star": 4, + "need": [ + { + "a": "item", + "t": "60901", + "n": 10 + }, + { + "a": "item", + "t": "60902", + "n": 10 + }, + { + "a": "item", + "t": "60903", + "n": 10 + }, + { + "a": "item", + "t": "60904", + "n": 10 + }, + { + "a": "item", + "t": "60905", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 3000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + } + ], + "buff": { + "1": { + "zj_liliang": 90 + }, + "2": { + "zj_def": 90 + }, + "3": { + "zj_atk": 90 + }, + "4": { + "zj_zhishi": 90 + }, + "5": { + "zj_atk": 90 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70009 + }, + "85": { + "id": 85, + "name": "intr_weixiuchang_zz_name_9", + "car": "che_fj", + "parts": 5, + "stage": 9, + "star": 5, + "need": [ + { + "a": "item", + "t": "60901", + "n": 10 + }, + { + "a": "item", + "t": "60902", + "n": 10 + }, + { + "a": "item", + "t": "60903", + "n": 10 + }, + { + "a": "item", + "t": "60904", + "n": 10 + }, + { + "a": "item", + "t": "60905", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 3000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + } + ], + "buff": { + "1": { + "zj_liliang": 90 + }, + "2": { + "zj_def": 90 + }, + "3": { + "zj_atk": 90 + }, + "4": { + "zj_zhishi": 90 + }, + "5": { + "zj_atk": 90 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70009 + }, + "86": { + "id": 86, + "name": "intr_weixiuchang_zz_name_9", + "car": "che_fj", + "parts": 6, + "stage": 9, + "star": 6, + "need": [ + { + "a": "item", + "t": "60901", + "n": 10 + }, + { + "a": "item", + "t": "60902", + "n": 10 + }, + { + "a": "item", + "t": "60903", + "n": 10 + }, + { + "a": "item", + "t": "60904", + "n": 10 + }, + { + "a": "item", + "t": "60905", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 3000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + } + ], + "buff": { + "1": { + "zj_liliang": 90 + }, + "2": { + "zj_def": 90 + }, + "3": { + "zj_atk": 90 + }, + "4": { + "zj_zhishi": 90 + }, + "5": { + "zj_atk": 90 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70009 + }, + "87": { + "id": 87, + "name": "intr_weixiuchang_zz_name_9", + "car": "che_fj", + "parts": 7, + "stage": 9, + "star": 7, + "need": [ + { + "a": "item", + "t": "60901", + "n": 10 + }, + { + "a": "item", + "t": "60902", + "n": 10 + }, + { + "a": "item", + "t": "60903", + "n": 10 + }, + { + "a": "item", + "t": "60904", + "n": 10 + }, + { + "a": "item", + "t": "60905", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 3000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + } + ], + "buff": { + "1": { + "zj_liliang": 90 + }, + "2": { + "zj_def": 90 + }, + "3": { + "zj_atk": 90 + }, + "4": { + "zj_zhishi": 90 + }, + "5": { + "zj_atk": 90 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70009 + }, + "88": { + "id": 88, + "name": "intr_weixiuchang_zz_name_9", + "car": "che_fj", + "parts": 8, + "stage": 9, + "star": 8, + "need": [ + { + "a": "item", + "t": "60901", + "n": 10 + }, + { + "a": "item", + "t": "60902", + "n": 10 + }, + { + "a": "item", + "t": "60903", + "n": 10 + }, + { + "a": "item", + "t": "60904", + "n": 10 + }, + { + "a": "item", + "t": "60905", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 3000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + } + ], + "buff": { + "1": { + "zj_liliang": 90 + }, + "2": { + "zj_def": 90 + }, + "3": { + "zj_atk": 90 + }, + "4": { + "zj_zhishi": 90 + }, + "5": { + "zj_atk": 90 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70009 + }, + "89": { + "id": 89, + "name": "intr_weixiuchang_zz_name_9", + "car": "che_fj", + "parts": 9, + "stage": 9, + "star": 9, + "need": [ + { + "a": "item", + "t": "60901", + "n": 10 + }, + { + "a": "item", + "t": "60902", + "n": 10 + }, + { + "a": "item", + "t": "60903", + "n": 10 + }, + { + "a": "item", + "t": "60904", + "n": 10 + }, + { + "a": "item", + "t": "60905", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 3000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + } + ], + "buff": { + "1": { + "zj_liliang": 90 + }, + "2": { + "zj_def": 90 + }, + "3": { + "zj_atk": 90 + }, + "4": { + "zj_zhishi": 90 + }, + "5": { + "zj_atk": 90 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70009 + }, + "90": { + "id": 90, + "name": "intr_weixiuchang_zz_name_9", + "car": "che_fj", + "parts": 10, + "stage": 9, + "star": 10, + "need": [ + { + "a": "item", + "t": "60901", + "n": 10 + }, + { + "a": "item", + "t": "60902", + "n": 10 + }, + { + "a": "item", + "t": "60903", + "n": 10 + }, + { + "a": "item", + "t": "60904", + "n": 10 + }, + { + "a": "item", + "t": "60905", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 3000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + }, + { + "a": "item", + "t": "22", + "n": 1000 + } + ], + "buff": { + "1": { + "zj_liliang": 90 + }, + "2": { + "zj_def": 90 + }, + "3": { + "zj_atk": 90 + }, + "4": { + "zj_zhishi": 90 + }, + "5": { + "zj_atk": 90 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70009 + }, + "91": { + "id": 91, + "name": "intr_weixiuchang_zz_name_10", + "car": "che_zsfj", + "parts": 1, + "stage": 10, + "star": 1, + "need": [ + { + "a": "item", + "t": "61001", + "n": 10 + }, + { + "a": "item", + "t": "61002", + "n": 10 + }, + { + "a": "item", + "t": "61003", + "n": 10 + }, + { + "a": "item", + "t": "61004", + "n": 10 + }, + { + "a": "item", + "t": "61005", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 3250 + }, + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 1100 + } + ], + "buff": { + "1": { + "zj_liliang": 100 + }, + "2": { + "zj_def": 100 + }, + "3": { + "zj_atk": 100 + }, + "4": { + "zj_zhishi": 100 + }, + "5": { + "zj_atk": 100 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70010 + }, + "92": { + "id": 92, + "name": "intr_weixiuchang_zz_name_10", + "car": "che_zsfj", + "parts": 2, + "stage": 10, + "star": 2, + "need": [ + { + "a": "item", + "t": "61001", + "n": 10 + }, + { + "a": "item", + "t": "61002", + "n": 10 + }, + { + "a": "item", + "t": "61003", + "n": 10 + }, + { + "a": "item", + "t": "61004", + "n": 10 + }, + { + "a": "item", + "t": "61005", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 3250 + }, + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 1100 + } + ], + "buff": { + "1": { + "zj_liliang": 100 + }, + "2": { + "zj_def": 100 + }, + "3": { + "zj_atk": 100 + }, + "4": { + "zj_zhishi": 100 + }, + "5": { + "zj_atk": 100 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70010 + }, + "93": { + "id": 93, + "name": "intr_weixiuchang_zz_name_10", + "car": "che_zsfj", + "parts": 3, + "stage": 10, + "star": 3, + "need": [ + { + "a": "item", + "t": "61001", + "n": 10 + }, + { + "a": "item", + "t": "61002", + "n": 10 + }, + { + "a": "item", + "t": "61003", + "n": 10 + }, + { + "a": "item", + "t": "61004", + "n": 10 + }, + { + "a": "item", + "t": "61005", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 3250 + }, + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 1100 + } + ], + "buff": { + "1": { + "zj_liliang": 100 + }, + "2": { + "zj_def": 100 + }, + "3": { + "zj_atk": 100 + }, + "4": { + "zj_zhishi": 100 + }, + "5": { + "zj_atk": 100 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70010 + }, + "94": { + "id": 94, + "name": "intr_weixiuchang_zz_name_10", + "car": "che_zsfj", + "parts": 4, + "stage": 10, + "star": 4, + "need": [ + { + "a": "item", + "t": "61001", + "n": 10 + }, + { + "a": "item", + "t": "61002", + "n": 10 + }, + { + "a": "item", + "t": "61003", + "n": 10 + }, + { + "a": "item", + "t": "61004", + "n": 10 + }, + { + "a": "item", + "t": "61005", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 3250 + }, + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 1100 + } + ], + "buff": { + "1": { + "zj_liliang": 100 + }, + "2": { + "zj_def": 100 + }, + "3": { + "zj_atk": 100 + }, + "4": { + "zj_zhishi": 100 + }, + "5": { + "zj_atk": 100 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70010 + }, + "95": { + "id": 95, + "name": "intr_weixiuchang_zz_name_10", + "car": "che_zsfj", + "parts": 5, + "stage": 10, + "star": 5, + "need": [ + { + "a": "item", + "t": "61001", + "n": 10 + }, + { + "a": "item", + "t": "61002", + "n": 10 + }, + { + "a": "item", + "t": "61003", + "n": 10 + }, + { + "a": "item", + "t": "61004", + "n": 10 + }, + { + "a": "item", + "t": "61005", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 3250 + }, + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 1100 + } + ], + "buff": { + "1": { + "zj_liliang": 100 + }, + "2": { + "zj_def": 100 + }, + "3": { + "zj_atk": 100 + }, + "4": { + "zj_zhishi": 100 + }, + "5": { + "zj_atk": 100 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70010 + }, + "96": { + "id": 96, + "name": "intr_weixiuchang_zz_name_10", + "car": "che_zsfj", + "parts": 6, + "stage": 10, + "star": 6, + "need": [ + { + "a": "item", + "t": "61001", + "n": 10 + }, + { + "a": "item", + "t": "61002", + "n": 10 + }, + { + "a": "item", + "t": "61003", + "n": 10 + }, + { + "a": "item", + "t": "61004", + "n": 10 + }, + { + "a": "item", + "t": "61005", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 3250 + }, + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 1100 + } + ], + "buff": { + "1": { + "zj_liliang": 100 + }, + "2": { + "zj_def": 100 + }, + "3": { + "zj_atk": 100 + }, + "4": { + "zj_zhishi": 100 + }, + "5": { + "zj_atk": 100 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70010 + }, + "97": { + "id": 97, + "name": "intr_weixiuchang_zz_name_10", + "car": "che_zsfj", + "parts": 7, + "stage": 10, + "star": 7, + "need": [ + { + "a": "item", + "t": "61001", + "n": 10 + }, + { + "a": "item", + "t": "61002", + "n": 10 + }, + { + "a": "item", + "t": "61003", + "n": 10 + }, + { + "a": "item", + "t": "61004", + "n": 10 + }, + { + "a": "item", + "t": "61005", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 3250 + }, + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 1100 + } + ], + "buff": { + "1": { + "zj_liliang": 100 + }, + "2": { + "zj_def": 100 + }, + "3": { + "zj_atk": 100 + }, + "4": { + "zj_zhishi": 100 + }, + "5": { + "zj_atk": 100 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70010 + }, + "98": { + "id": 98, + "name": "intr_weixiuchang_zz_name_10", + "car": "che_zsfj", + "parts": 8, + "stage": 10, + "star": 8, + "need": [ + { + "a": "item", + "t": "61001", + "n": 10 + }, + { + "a": "item", + "t": "61002", + "n": 10 + }, + { + "a": "item", + "t": "61003", + "n": 10 + }, + { + "a": "item", + "t": "61004", + "n": 10 + }, + { + "a": "item", + "t": "61005", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 3250 + }, + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 1100 + } + ], + "buff": { + "1": { + "zj_liliang": 100 + }, + "2": { + "zj_def": 100 + }, + "3": { + "zj_atk": 100 + }, + "4": { + "zj_zhishi": 100 + }, + "5": { + "zj_atk": 100 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70010 + }, + "99": { + "id": 99, + "name": "intr_weixiuchang_zz_name_10", + "car": "che_zsfj", + "parts": 9, + "stage": 10, + "star": 9, + "need": [ + { + "a": "item", + "t": "61001", + "n": 10 + }, + { + "a": "item", + "t": "61002", + "n": 10 + }, + { + "a": "item", + "t": "61003", + "n": 10 + }, + { + "a": "item", + "t": "61004", + "n": 10 + }, + { + "a": "item", + "t": "61005", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 3250 + }, + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 1100 + } + ], + "buff": { + "1": { + "zj_liliang": 100 + }, + "2": { + "zj_def": 100 + }, + "3": { + "zj_atk": 100 + }, + "4": { + "zj_zhishi": 100 + }, + "5": { + "zj_atk": 100 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70010 + }, + "100": { + "id": 100, + "name": "intr_weixiuchang_zz_name_10", + "car": "che_zsfj", + "parts": 10, + "stage": 10, + "star": 10, + "need": [ + { + "a": "item", + "t": "61001", + "n": 10 + }, + { + "a": "item", + "t": "61002", + "n": 10 + }, + { + "a": "item", + "t": "61003", + "n": 10 + }, + { + "a": "item", + "t": "61004", + "n": 10 + }, + { + "a": "item", + "t": "61005", + "n": 10 + } + ], + "need2": [ + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 3250 + }, + { + "a": "item", + "t": "22", + "n": 1100 + }, + { + "a": "item", + "t": "22", + "n": 1100 + } + ], + "buff": { + "1": { + "zj_liliang": 100 + }, + "2": { + "zj_def": 100 + }, + "3": { + "zj_atk": 100 + }, + "4": { + "zj_zhishi": 100 + }, + "5": { + "zj_atk": 100 + } + }, + "buff2": { + "zj_liliang": 30, + "zj_atk": 30, + "zj_zhishi": 30, + "zj_def": 30 + }, + "drop": 70010 + } +} \ No newline at end of file diff --git a/src/json/xianshilibao.json5 b/src/json/xianshilibao.json5 new file mode 100644 index 0000000..3eebb66 --- /dev/null +++ b/src/json/xianshilibao.json5 @@ -0,0 +1,20 @@ +{ + lv31: { payId: 'lv30', time: 7200 }, + lv45: { payId: 'lv40', time: 7200 }, + lv54: { payId: 'lv55', time: 7200 }, + lv58: { payId: 'lv58', time: 7200 }, + lv60: { payId: 'lv60', time: 7200 }, + lv63: { payId: 'lv63', time: 7200 }, + lv66: { payId: 'lv66', time: 7200 }, + lv69: { payId: 'lv69', time: 7200 }, + lv72: { payId: 'lv72', time: 7200 }, + lv75: { payId: 'lv75', time: 7200 }, + lv78: { payId: 'lv78', time: 7200 }, + lv81: { payId: 'lv81', time: 7200 }, + lv84: { payId: 'lv84', time: 7200 }, + lv87: { payId: 'lv87', time: 7200 }, + lv90: { payId: 'lv90', time: 7200 }, + lv93: { payId: 'lv93', time: 7200 }, + lv96: { payId: 'lv96', time: 7200 }, + lv99: { payId: 'lv99', time: 7200 } +} \ No newline at end of file diff --git a/src/json/xianshizhaomu.json5 b/src/json/xianshizhaomu.json5 new file mode 100644 index 0000000..a8704fe --- /dev/null +++ b/src/json/xianshizhaomu.json5 @@ -0,0 +1,69 @@ +{ + //活动时间 + time: [604800, 691200], + //单抽消耗 + oneNeed: [{a: 'attr', t: 'rmbmoney', n: 100}], + //十抽消耗 + tenNeed: [{a: 'attr', t: 'rmbmoney', n: 1000}], + //单抽奖励 + onePrize: [{a: 'attr', t: 'jinbi', n: 1}], + //十抽奖励 + tenPrize: [{a: 'attr', t: 'jinbi', n: 10}], + //单抽掉落 + oneDrop: [1001], + //十抽掉落 + tenDrop: [1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001], + //单抽x次后替换掉落组 + oneReplace: { + num: 10, + drop: [3], + }, + //回馈奖励 + eventPrize: [ + { total: 10, prize: [{a: 'item', t: '16', n: 10}] }, + { total: 30, prize: [{a: 'item', t: '16', n: 20}] }, + { total: 60, prize: [{a: 'item', t: '16', n: 30}] }, + { total: 100, prize: [{a: 'item', t: '16', n: 40}] }, + { total: 150, prize: [{a: 'item', t: '16', n: 50}] }, + { total: 230, prize: [{a: 'item', t: '16', n: 80}] }, + { total: 350, prize: [{a: 'item', t: '16', n: 120}] }, + { total: 500, prize: [{a: 'item', t: '16', n: 150}] }, + { total: 700, prize: [{a: 'item', t: '16', n: 200}] }, + { total: 950, prize: [{a: 'item', t: '16', n: 250}] }, + { total: 1300, prize: [{a: 'item', t: '16', n: 350}] }, + { total: 1800, prize: [{a: 'item', t: '16', n: 500}] } + ], + //礼包 + gift: [ + { need: [], prize: [{a: 'attr', t: 'rmbmoney', n: 10}], num: 1, payId: '' }, + { need: [{a: 'attr', t: 'rmbmoney', n: 1200}], prize: [{a: 'item', t: '16', n: 10}], num: 15, payId: '' }, + { payId: 'xianshizhaomu_gift_1' }, + { payId: 'xianshizhaomu_gift_2' }, + { payId: 'xianshizhaomu_gift_3' }, + { payId: 'xianshizhaomu_gift_4' }, + { payId: 'xianshizhaomu_gift_5' }, + { payId: 'xianshizhaomu_gift_6' } + ], + //兑换 + duihuan: [ + { need: [{a: 'item', t: '16', n: 200}], prize: [{a: 'hero', t: '5001', n: 1}], num: 1 }, + { need: [{a: 'item', t: '16', n: 400}], prize: [{a: 'hero', t: '5001', n: 1}], num: 5 }, + { need: [{a: 'item', t: '16', n: 200}], prize: [{a: 'hero', t: '5002', n: 1}], num: 5 }, + { need: [{a: 'item', t: '16', n: 20}], prize: [{a: 'item', t: '12', n: 1000}], num: 99 }, + { need: [{a: 'item', t: '16', n: 1}], prize: [{a: 'item', t: '1', n: 10000}], num: 999 }, + { need: [{a: 'item', t: '16', n: 1}], prize: [{a: 'attr', t: 'jinbi', n: 2500}], num: 999 } + ], + //排名奖励 + rankPrize: [ + { ph: [1,1], prize: [{a: 'hero', t: '5001', n: 1},{a: 'item', t: '4', n: 30}] }, + { ph: [2,2], prize: [{a: 'attr', t: '5001', n: 1},{a: 'item', t: '4', n: 20}] }, + { ph: [3,3], prize: [{a: 'attr', t: '5001', n: 1},{a: 'item', t: '4', n: 20}] }, + { ph: [4,5], prize: [{a: 'item', t: '4', n: 10},{a: 'item', t: '1', n: 300000}] }, + { ph: [6,10], prize: [{a: 'item', t: '4', n: 10},{a: 'item', t: '1', n: 150000}] } + ], + //邮件 + email: { + title: 'title_email_xianshizhaomu', + content: 'content_email_xianshizhaomu' + } +} \ No newline at end of file diff --git a/src/json/xinshoulibao.json5 b/src/json/xinshoulibao.json5 new file mode 100644 index 0000000..8c987e0 --- /dev/null +++ b/src/json/xinshoulibao.json5 @@ -0,0 +1,24 @@ +[ + { + //刷新时间 + time: 172800, + //礼包内容 + pays: [ + { payId: 'xslb_1_1' }, + { payId: 'xslb_1_2' }, + { payId: 'xslb_1_3' }, + { payId: 'xslb_1_4' } + ] + }, + { + //刷新时间 + time: 172800, + //礼包内容 + pays: [ + { payId: 'xslb_2_1' }, + { payId: 'xslb_2_2' }, + { payId: 'xslb_2_3' }, + { payId: 'xslb_2_4' } + ] + } +] \ No newline at end of file diff --git a/src/json/xstask.json b/src/json/xstask.json new file mode 100644 index 0000000..e89ed6a --- /dev/null +++ b/src/json/xstask.json @@ -0,0 +1,572 @@ +{ + "1": { + "id": 1, + "name": "intr_xuanshangrenwu_name_1", + "colour": 1, + "time": 28800, + "needNum": 3, + "needStar": 3, + "needZhanli": 0, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 10000 + } + ], + "p": 3, + "intr": "intr_xuanshangrenwu_intr_1", + "img": "icon_jinbi" + }, + "2": { + "id": 2, + "name": "intr_xuanshangrenwu_name_2", + "colour": 1, + "time": 28800, + "needNum": 3, + "needStar": 3, + "needZhanli": 0, + "prize": [ + { + "a": "item", + "t": "2", + "n": 80 + } + ], + "p": 4, + "intr": "intr_xuanshangrenwu_intr_2", + "img": "icon_jinbi" + }, + "3": { + "id": 3, + "name": "intr_xuanshangrenwu_name_3", + "colour": 1, + "time": 28800, + "needNum": 3, + "needStar": 3, + "needZhanli": 0, + "prize": [ + { + "a": "item", + "t": "1", + "n": 20000 + } + ], + "p": 5, + "intr": "intr_xuanshangrenwu_intr_3", + "img": "icon_jinbi" + }, + "4": { + "id": 4, + "name": "intr_xuanshangrenwu_name_4", + "colour": 1, + "time": 28800, + "needNum": 3, + "needStar": 3, + "needZhanli": 0, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 30 + } + ], + "p": 6, + "intr": "intr_xuanshangrenwu_intr_4", + "img": "icon_jinbi" + }, + "5": { + "id": 5, + "name": "intr_xuanshangrenwu_name_5", + "colour": 1, + "time": 28800, + "needNum": 3, + "needStar": 3, + "needZhanli": 0, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "p": 7, + "intr": "intr_xuanshangrenwu_intr_5", + "img": "icon_jinbi" + }, + "6": { + "id": 6, + "name": "intr_xuanshangrenwu_name_4", + "colour": 2, + "time": 28800, + "needNum": 3, + "needStar": 4, + "needZhanli": 0, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 60 + } + ], + "p": 8, + "intr": "intr_xuanshangrenwu_intr_4", + "img": "icon_jinbi" + }, + "7": { + "id": 7, + "name": "intr_xuanshangrenwu_name_5", + "colour": 2, + "time": 28800, + "needNum": 3, + "needStar": 4, + "needZhanli": 0, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "p": 9, + "intr": "intr_xuanshangrenwu_intr_5", + "img": "icon_jinbi" + }, + "8": { + "id": 8, + "name": "intr_xuanshangrenwu_name_6", + "colour": 2, + "time": 28800, + "needNum": 3, + "needStar": 4, + "needZhanli": 0, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 40000 + } + ], + "p": 10, + "intr": "intr_xuanshangrenwu_intr_6", + "img": "icon_jinbi" + }, + "9": { + "id": 9, + "name": "intr_xuanshangrenwu_name_7", + "colour": 2, + "time": 28800, + "needNum": 3, + "needStar": 4, + "needZhanli": 0, + "prize": [ + { + "a": "item", + "t": "2", + "n": 110 + } + ], + "p": 11, + "intr": "intr_xuanshangrenwu_intr_7", + "img": "icon_jinbi" + }, + "10": { + "id": 10, + "name": "intr_xuanshangrenwu_name_8", + "colour": 2, + "time": 28800, + "needNum": 3, + "needStar": 4, + "needZhanli": 0, + "prize": [ + { + "a": "item", + "t": "1", + "n": 30000 + } + ], + "p": 12, + "intr": "intr_xuanshangrenwu_intr_8", + "img": "icon_jinbi" + }, + "11": { + "id": 11, + "name": "intr_xuanshangrenwu_name_6", + "colour": 3, + "time": 28800, + "needNum": 3, + "needStar": 5, + "needZhanli": 0, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 30000 + } + ], + "p": 13, + "intr": "intr_xuanshangrenwu_intr_6", + "img": "icon_jinbi" + }, + "12": { + "id": 12, + "name": "intr_xuanshangrenwu_name_7", + "colour": 3, + "time": 28800, + "needNum": 3, + "needStar": 5, + "needZhanli": 0, + "prize": [ + { + "a": "item", + "t": "2", + "n": 140 + } + ], + "p": 14, + "intr": "intr_xuanshangrenwu_intr_7", + "img": "icon_jinbi" + }, + "13": { + "id": 13, + "name": "intr_xuanshangrenwu_name_8", + "colour": 3, + "time": 28800, + "needNum": 3, + "needStar": 5, + "needZhanli": 0, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 60000 + } + ], + "p": 15, + "intr": "intr_xuanshangrenwu_intr_8", + "img": "icon_jinbi" + }, + "14": { + "id": 14, + "name": "intr_xuanshangrenwu_name_9", + "colour": 3, + "time": 28800, + "needNum": 3, + "needStar": 5, + "needZhanli": 0, + "prize": [ + { + "a": "item", + "t": "1", + "n": 40000 + } + ], + "p": 16, + "intr": "intr_xuanshangrenwu_intr_9", + "img": "icon_jinbi" + }, + "15": { + "id": 15, + "name": "intr_xuanshangrenwu_name_10", + "colour": 3, + "time": 28800, + "needNum": 3, + "needStar": 5, + "needZhanli": 0, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 90 + } + ], + "p": 17, + "intr": "intr_xuanshangrenwu_intr_10", + "img": "icon_jinbi" + }, + "16": { + "id": 16, + "name": "intr_xuanshangrenwu_name_8", + "colour": 4, + "time": 28800, + "needNum": 2, + "needStar": 5, + "needZhanli": 0, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 40000 + } + ], + "p": 18, + "intr": "intr_xuanshangrenwu_intr_8", + "img": "icon_jinbi" + }, + "17": { + "id": 17, + "name": "intr_xuanshangrenwu_name_9", + "colour": 4, + "time": 28800, + "needNum": 2, + "needStar": 5, + "needZhanli": 0, + "prize": [ + { + "a": "item", + "t": "1", + "n": 50000 + } + ], + "p": 19, + "intr": "intr_xuanshangrenwu_intr_9", + "img": "icon_jinbi" + }, + "18": { + "id": 18, + "name": "intr_xuanshangrenwu_name_10", + "colour": 4, + "time": 28800, + "needNum": 2, + "needStar": 5, + "needZhanli": 0, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 120 + } + ], + "p": 20, + "intr": "intr_xuanshangrenwu_intr_10", + "img": "icon_jinbi" + }, + "19": { + "id": 19, + "name": "intr_xuanshangrenwu_name_11", + "colour": 4, + "time": 28800, + "needNum": 2, + "needStar": 5, + "needZhanli": 0, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 80000 + } + ], + "p": 21, + "intr": "intr_xuanshangrenwu_intr_11", + "img": "icon_jinbi" + }, + "20": { + "id": 20, + "name": "intr_xuanshangrenwu_name_12", + "colour": 4, + "time": 28800, + "needNum": 2, + "needStar": 5, + "needZhanli": 0, + "prize": [ + { + "a": "item", + "t": "2", + "n": 170 + } + ], + "p": 22, + "intr": "intr_xuanshangrenwu_intr_12", + "img": "icon_jinbi" + }, + "21": { + "id": 21, + "name": "intr_xuanshangrenwu_name_11", + "colour": 5, + "time": 28800, + "needNum": 2, + "needStar": 6, + "needZhanli": 0, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 100000 + } + ], + "p": 23, + "intr": "intr_xuanshangrenwu_intr_11", + "img": "icon_jinbi" + }, + "22": { + "id": 22, + "name": "intr_xuanshangrenwu_name_12", + "colour": 5, + "time": 28800, + "needNum": 2, + "needStar": 6, + "needZhanli": 0, + "prize": [ + { + "a": "item", + "t": "2", + "n": 200 + } + ], + "p": 24, + "intr": "intr_xuanshangrenwu_intr_12", + "img": "icon_jinbi" + }, + "23": { + "id": 23, + "name": "intr_xuanshangrenwu_name_13", + "colour": 5, + "time": 28800, + "needNum": 2, + "needStar": 6, + "needZhanli": 0, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 150 + } + ], + "p": 25, + "intr": "intr_xuanshangrenwu_intr_13", + "img": "icon_jinbi" + }, + "24": { + "id": 24, + "name": "intr_xuanshangrenwu_name_14", + "colour": 5, + "time": 28800, + "needNum": 2, + "needStar": 6, + "needZhanli": 0, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 50000 + } + ], + "p": 26, + "intr": "intr_xuanshangrenwu_intr_14", + "img": "icon_jinbi" + }, + "25": { + "id": 25, + "name": "intr_xuanshangrenwu_name_15", + "colour": 5, + "time": 28800, + "needNum": 2, + "needStar": 6, + "needZhanli": 0, + "prize": [ + { + "a": "item", + "t": "1", + "n": 60000 + } + ], + "p": 27, + "intr": "intr_xuanshangrenwu_intr_15", + "img": "icon_jinbi" + }, + "26": { + "id": 26, + "name": "intr_xuanshangrenwu_name_14", + "colour": 6, + "time": 28800, + "needNum": 2, + "needStar": 7, + "needZhanli": 0, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 60000 + } + ], + "p": 28, + "intr": "intr_xuanshangrenwu_intr_14", + "img": "icon_jinbi" + }, + "27": { + "id": 27, + "name": "intr_xuanshangrenwu_name_15", + "colour": 6, + "time": 28800, + "needNum": 2, + "needStar": 7, + "needZhanli": 0, + "prize": [ + { + "a": "item", + "t": "1", + "n": 75000 + } + ], + "p": 29, + "intr": "intr_xuanshangrenwu_intr_15", + "img": "icon_jinbi" + }, + "28": { + "id": 28, + "name": "intr_xuanshangrenwu_name_16", + "colour": 6, + "time": 28800, + "needNum": 2, + "needStar": 7, + "needZhanli": 0, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 180 + } + ], + "p": 30, + "intr": "intr_xuanshangrenwu_intr_16", + "img": "icon_jinbi" + }, + "29": { + "id": 29, + "name": "intr_xuanshangrenwu_name_17", + "colour": 6, + "time": 28800, + "needNum": 2, + "needStar": 7, + "needZhanli": 0, + "prize": [ + { + "a": "item", + "t": "2", + "n": 230 + } + ], + "p": 31, + "intr": "intr_xuanshangrenwu_intr_17", + "img": "icon_jinbi" + }, + "30": { + "id": 30, + "name": "intr_xuanshangrenwu_name_18", + "colour": 6, + "time": 28800, + "needNum": 2, + "needStar": 7, + "needZhanli": 0, + "prize": [ + { + "a": "attr", + "t": "jinbi", + "n": 120000 + } + ], + "p": 32, + "intr": "intr_xuanshangrenwu_intr_18", + "img": "icon_jinbi" + } +} \ No newline at end of file diff --git a/src/json/xstaskcom.json b/src/json/xstaskcom.json new file mode 100644 index 0000000..d4e90b2 --- /dev/null +++ b/src/json/xstaskcom.json @@ -0,0 +1,121 @@ +{ + "freeRefreshNum": 0, + "refreshNeed": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + } + ], + "jiasu": [ + { + "time": [ + 0, + 3600 + ], + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + } + ] + }, + { + "time": [ + 3601, + 28800 + ], + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ] + }, + { + "time": [ + 3601, + 28800 + ], + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ] + }, + { + "time": [ + 28801, + 57600 + ], + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + } + ] + }, + { + "time": [ + 57601, + 9999999999 + ], + "need": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + } + ] + } + ], + "lv": { + "1": { + "taskColor": [ + 1 + ], + "maxTaskNum": 8, + "need": 0 + }, + "2": { + "taskColor": [ + 2 + ], + "maxTaskNum": 8, + "need": 20 + }, + "3": { + "taskColor": [ + 3 + ], + "maxTaskNum": 8, + "need": 60 + }, + "4": { + "taskColor": [ + 4 + ], + "maxTaskNum": 8, + "need": 120 + }, + "5": { + "taskColor": [ + 5 + ], + "maxTaskNum": 8, + "need": 200 + }, + "6": { + "taskColor": [ + 6 + ], + "maxTaskNum": 8, + "need": 360 + } + } +} \ No newline at end of file diff --git a/src/json/xunlianjihua.json b/src/json/xunlianjihua.json new file mode 100644 index 0000000..6f3876b --- /dev/null +++ b/src/json/xunlianjihua.json @@ -0,0 +1,996 @@ +{ + "800": { + "id": 800, + "name": "intr_xunlian_skill_name_1", + "undefined": "防御", + "icon": "qiang_1", + "tab": 1, + "xysite": "1,1", + "use": 0, + "skillType": "intr_xljn_type_2", + "lv": 5, + "need": 1, + "cond": 0, + "front": [ + 0, + 0 + ], + "relevance": 1, + "skill": "def", + "describe": "intr_xunlian_skill_describe_1", + "v": [ + "slv*50" + ], + "desCoefficient": [ + 1 + ], + "intr": "干部防御提升{1}" + }, + "801": { + "id": 801, + "name": "intr_xunlian_skill_name_2", + "undefined": "破防", + "icon": "qiang_2", + "tab": 1, + "xysite": "1,2", + "use": 1, + "skillType": "intr_xljn_type_1", + "lv": 5, + "need": 1, + "cond": 0, + "front": [ + 800, + 5 + ], + "relevance": 1, + "skill": 10001100, + "describe": "intr_xunlian_skill_describe_2", + "v": [ + "1000+100*slv", + "slv*0.1" + ], + "desCoefficient": [ + 1, + 100 + ], + "intr": "随机对1名敌人造成{1}点穿透伤害,攻击时有{2}%概率降低目标80%防御2回合
消耗怒气:50", + "nuqi": 50 + }, + "802": { + "id": 802, + "name": "intr_xunlian_skill_name_3", + "undefined": "攻击", + "icon": "qiang_3", + "tab": 1, + "xysite": "1,3", + "use": 0, + "skillType": "intr_xljn_type_2", + "lv": 5, + "need": 1, + "cond": 5, + "front": [ + 0, + 0 + ], + "relevance": 2, + "skill": "atk", + "describe": "intr_xunlian_skill_describe_3", + "v": [ + "30*slv" + ], + "desCoefficient": [ + 1 + ], + "intr": "干部攻击增加{1}点" + }, + "803": { + "id": 803, + "name": "intr_xunlian_skill_name_4", + "undefined": "重伤", + "icon": "qiang_4", + "tab": 1, + "xysite": "1,4", + "use": 1, + "skillType": "intr_xljn_type_1", + "lv": 5, + "need": 1, + "cond": 10, + "front": [ + 802, + 5 + ], + "relevance": 2, + "skill": 10001200, + "describe": "intr_xunlian_skill_describe_4", + "v": [ + "2000+200*slv", + "slv*0.1" + ], + "desCoefficient": [ + 1, + 100 + ], + "intr": "随机对3名敌人造成{1}点穿透伤害,攻击时有{2}%概率使敌人枯萎,2回合无法恢复生命
消耗怒气:150", + "nuqi": 150 + }, + "804": { + "id": 804, + "name": "intr_xunlian_skill_name_5", + "undefined": "减伤", + "icon": "qiang_5", + "tab": 1, + "xysite": "1,5", + "use": 0, + "skillType": "intr_xljn_type_2", + "lv": 5, + "need": 1, + "cond": 20, + "front": [ + 0, + 0 + ], + "relevance": 3, + "skill": "undpspro", + "describe": "intr_xunlian_skill_describe_5", + "v": [ + "slv*0.01" + ], + "desCoefficient": [ + 100 + ], + "intr": "所有干部伤害减免增加{1}%" + }, + "805": { + "id": 805, + "name": "intr_xunlian_skill_name_6", + "undefined": "坚毅", + "icon": "qiang_6", + "tab": 1, + "xysite": "1,6", + "use": 0, + "skillType": "intr_xljn_type_2", + "lv": 5, + "need": 1, + "cond": 25, + "front": [ + 0, + 0 + ], + "relevance": 4, + "skill": "defpro", + "describe": "intr_xunlian_skill_describe_6", + "v": [ + "slv*0.01" + ], + "desCoefficient": [ + 100 + ], + "intr": "干部防御提升{1}%" + }, + "806": { + "id": 806, + "name": "intr_xunlian_skill_name_7", + "undefined": "幸运", + "icon": "qiang_7", + "tab": 1, + "xysite": "1,7", + "use": 1, + "skillType": "intr_xljn_type_1", + "lv": 5, + "need": 1, + "cond": 35, + "front": [ + 805, + 5 + ], + "relevance": 4, + "skill": 10001300, + "describe": "intr_xunlian_skill_describe_7", + "v": [ + "1*slv", + "500+120*slv", + "1*slv" + ], + "desCoefficient": [ + 1, + 1, + 1 + ], + "intr": "随机对{1}名干部造成{2}点穿透伤害,并使己方{3}个干部进入暴怒状态1回合,暴怒状态出手必定造成暴击
消耗怒气:50", + "nuqi": 50 + }, + "807": { + "id": 807, + "name": "intr_xunlian_skill_name_8", + "undefined": "穿透", + "icon": "qiang_8", + "tab": 1, + "xysite": "1,8", + "use": 0, + "skillType": "intr_xljn_type_2", + "lv": 5, + "need": 1, + "cond": 45, + "front": [ + 0, + 0 + ], + "relevance": 5, + "skill": "earthdpspro", + "describe": "intr_xunlian_skill_describe_8", + "v": [ + "slv*0.01" + ], + "desCoefficient": [ + 100 + ], + "intr": "穿透伤害提升{1}%" + }, + "808": { + "id": 808, + "name": "intr_xunlian_skill_name_9", + "undefined": "抵抗", + "icon": "qiang_9", + "tab": 1, + "xysite": "1,9", + "use": 1, + "skillType": "intr_xljn_type_1", + "lv": 5, + "need": 1, + "cond": 50, + "front": [ + 807, + 5 + ], + "relevance": 5, + "skill": 10001400, + "describe": "intr_xunlian_skill_describe_9", + "v": [ + "3000+300*slv", + "slv*0.05" + ], + "desCoefficient": [ + 1, + 100 + ], + "intr": "对全体敌人造成{1}点穿透伤害,且有{2}%几率进入眩晕状态,无法行动1回合,且自身所有干部免疫穿透属性攻击1回合
消耗怒气:200", + "nuqi": 200 + }, + "809": { + "id": 809, + "name": "intr_xunlian_skill_name_11", + "undefined": "伤害", + "icon": "qiang_11", + "tab": 1, + "xysite": "2,2", + "use": 0, + "skillType": "intr_xljn_type_2", + "lv": 5, + "need": 1, + "cond": 0, + "front": [ + 810, + 5 + ], + "relevance": 6, + "skill": "dpspro", + "describe": "intr_xunlian_skill_describe_11", + "v": [ + "slv*0.01" + ], + "desCoefficient": [ + 100 + ], + "intr": "干部伤害提升{1}%" + }, + "810": { + "id": 810, + "name": "intr_xunlian_skill_name_10", + "undefined": "偷袭", + "icon": "qiang_10", + "tab": 1, + "xysite": "2,1", + "use": 1, + "skillType": "intr_xljn_type_1", + "lv": 5, + "need": 1, + "cond": 0, + "front": [ + 0, + 0 + ], + "relevance": 6, + "skill": 20001100, + "describe": "intr_xunlian_skill_describe_10", + "v": [ + "500+slv*50" + ], + "desCoefficient": [ + 1 + ], + "intr": "随机对3名敌人造成{1}点破甲伤害
消耗怒气:50", + "nuqi": 50 + }, + "811": { + "id": 811, + "name": "intr_xunlian_skill_name_12", + "undefined": "生命", + "icon": "qiang_12", + "tab": 1, + "xysite": "2,3", + "use": 0, + "skillType": "intr_xljn_type_2", + "lv": 5, + "need": 1, + "cond": 5, + "front": [ + 0, + 0 + ], + "relevance": 7, + "skill": "hp", + "describe": "intr_xunlian_skill_describe_12", + "v": [ + "slv*150" + ], + "desCoefficient": [ + 1 + ], + "intr": "干部生命增加{1}点" + }, + "812": { + "id": 812, + "name": "intr_xunlian_skill_name_13", + "undefined": "吸血", + "icon": "qiang_13", + "tab": 1, + "xysite": "2,4", + "use": 0, + "skillType": "intr_xljn_type_2", + "lv": 5, + "need": 1, + "cond": 15, + "front": [ + 0, + 0 + ], + "relevance": 8, + "skill": "xixuepro", + "describe": "intr_xunlian_skill_describe_13", + "v": [ + "slv*0.01" + ], + "desCoefficient": [ + 100 + ], + "intr": "所有干部吸血能力提升{1}%" + }, + "813": { + "id": 813, + "name": "intr_xunlian_skill_name_14", + "undefined": "激励", + "icon": "qiang_14", + "tab": 1, + "xysite": "2,5", + "use": 1, + "skillType": "intr_xljn_type_1", + "lv": 5, + "need": 1, + "cond": 20, + "front": [ + 812, + 5 + ], + "relevance": 8, + "skill": 20001200, + "describe": "intr_xunlian_skill_describe_14", + "v": [ + "1000+150*slv", + "slv*0.05", + "slv*0.05" + ], + "desCoefficient": [ + 1, + 100, + 100 + ], + "intr": "随机对1敌方干部造成{1}点破甲伤害,并随机使我方3名干部进入强攻状态,提升{2}%伤害,{3}%防御
消耗怒气:50", + "nuqi": 50 + }, + "814": { + "id": 814, + "name": "intr_xunlian_skill_name_15", + "undefined": "速度", + "icon": "qiang_15", + "tab": 1, + "xysite": "2,6", + "use": 0, + "skillType": "intr_xljn_type_2", + "lv": 5, + "need": 1, + "cond": 30, + "front": [ + 0, + 0 + ], + "relevance": 9, + "skill": "speed", + "describe": "intr_xunlian_skill_describe_15", + "v": [ + "slv*5" + ], + "desCoefficient": [ + 1 + ], + "intr": "干部速度提升{1}点" + }, + "815": { + "id": 815, + "name": "intr_xunlian_skill_name_16", + "undefined": "破甲", + "icon": "qiang_16", + "tab": 1, + "xysite": "2,7", + "use": 0, + "skillType": "intr_xljn_type_2", + "lv": 5, + "need": 1, + "cond": 40, + "front": [ + 0, + 0 + ], + "relevance": 10, + "skill": "firedpspro", + "describe": "intr_xunlian_skill_describe_16", + "v": [ + "slv*0.01" + ], + "desCoefficient": [ + 100 + ], + "intr": "破甲伤害提升{1}%" + }, + "816": { + "id": 816, + "name": "intr_xunlian_skill_name_17", + "undefined": "点燃", + "icon": "qiang_17", + "tab": 1, + "xysite": "2,8", + "use": 1, + "skillType": "intr_xljn_type_1", + "lv": 5, + "need": 1, + "cond": 50, + "front": [ + 815, + 5 + ], + "relevance": 10, + "skill": 20001300, + "describe": "intr_xunlian_skill_describe_17", + "v": [ + "3000+200*slv", + "slv*0.05" + ], + "desCoefficient": [ + 1, + 100 + ], + "intr": "对全体敌人造成{1}点破甲伤害,且有{2}%几率进入燃烧状态,持续掉血1回合,且自身所有干部免疫破甲属性攻击1回合
消耗怒气:200", + "nuqi": 200 + }, + "817": { + "id": 817, + "name": "intr_xunlian_skill_name_18", + "undefined": "耐力", + "icon": "gedou_1", + "tab": 2, + "xysite": "1,1", + "use": 0, + "skillType": "intr_xljn_type_2", + "lv": 5, + "need": 1, + "cond": 0, + "front": [ + 0, + 0 + ], + "relevance": 11, + "skill": "hppro", + "describe": "intr_xunlian_skill_describe_18", + "v": [ + "slv*0.005" + ], + "desCoefficient": [ + 100 + ], + "intr": "干部生命提升{1}%" + }, + "818": { + "id": 818, + "name": "intr_xunlian_skill_name_19", + "undefined": "震荡", + "icon": "gedou_2", + "tab": 2, + "xysite": "1,2", + "use": 1, + "skillType": "intr_xljn_type_1", + "lv": 5, + "need": 1, + "cond": 0, + "front": [ + 817, + 5 + ], + "relevance": 11, + "skill": 30001100, + "describe": "intr_xunlian_skill_describe_19", + "v": [ + "500+120*slv" + ], + "desCoefficient": [ + 1 + ], + "intr": "对全体敌人造成{1}点震荡伤害
消耗怒气:50", + "nuqi": 50 + }, + "819": { + "id": 819, + "name": "intr_xunlian_skill_name_20", + "undefined": "震慑", + "icon": "gedou_3", + "tab": 2, + "xysite": "1,3", + "use": 1, + "skillType": "intr_xljn_type_1", + "lv": 5, + "need": 1, + "cond": 5, + "front": [ + 818, + 5 + ], + "relevance": 11, + "skill": 30001200, + "describe": "intr_xunlian_skill_describe_20", + "v": [ + "1000+150*slv", + "slv*0.1" + ], + "desCoefficient": [ + 1, + 100 + ], + "intr": "随机对3名敌人造成{1}点震荡伤害,使其伤害降低{2}%持续1回合
消耗怒气:100", + "nuqi": 100 + }, + "820": { + "id": 820, + "name": "intr_xunlian_skill_name_21", + "undefined": "力量", + "icon": "gedou_4", + "tab": 2, + "xysite": "1,4", + "use": 2, + "skillType": "intr_xljn_type_2", + "lv": 5, + "need": 1, + "cond": 10, + "front": [ + 0, + 0 + ], + "relevance": 12, + "skill": "zj_liliangpro", + "describe": "intr_xunlian_skill_describe_21", + "v": [ + "slv*0.02" + ], + "desCoefficient": [ + 100 + ], + "intr": "主角体能提升{1}%" + }, + "821": { + "id": 821, + "name": "intr_xunlian_skill_name_22", + "undefined": "闪避", + "icon": "gedou_5", + "tab": 2, + "xysite": "1,5", + "use": 0, + "skillType": "intr_xljn_type_2", + "lv": 5, + "need": 1, + "cond": 15, + "front": [ + 0, + 0 + ], + "relevance": 13, + "skill": "shanbipro", + "describe": "intr_xunlian_skill_describe_22", + "v": [ + "slv*0.01" + ], + "desCoefficient": [ + 100 + ], + "intr": "所有干部闪避提升{1}%" + }, + "822": { + "id": 822, + "name": "intr_xunlian_skill_name_23", + "undefined": "暴怒", + "icon": "gedou_6", + "tab": 2, + "xysite": "1,6", + "use": 2, + "skillType": "intr_xljn_type_2", + "lv": 5, + "need": 1, + "cond": 25, + "front": [ + 0, + 0 + ], + "relevance": 14, + "skill": "backmp", + "describe": "intr_xunlian_skill_describe_23", + "v": [ + "slv*10" + ], + "desCoefficient": [ + 1 + ], + "intr": "每回合回复怒气{1}点" + }, + "823": { + "id": 823, + "name": "intr_xunlian_skill_name_24", + "undefined": "保护", + "icon": "gedou_7", + "tab": 2, + "xysite": "1,7", + "use": 1, + "skillType": "intr_xljn_type_1", + "lv": 5, + "need": 1, + "cond": 35, + "front": [ + 822, + 5 + ], + "relevance": 14, + "skill": 30001300, + "describe": "intr_xunlian_skill_describe_24", + "v": [ + "1000+150*slv", + "2000+1000*slv" + ], + "desCoefficient": [ + 1, + 1 + ], + "intr": "随机对1名敌方干部造成{1}点震荡伤害,并使我方随机3名干部获得护盾效果,最多可抵消{2}点伤害,持续2回合
消耗怒气:200", + "nuqi": 200 + }, + "824": { + "id": 824, + "name": "intr_xunlian_skill_name_25", + "undefined": "奋力", + "icon": "gedou_8", + "tab": 2, + "xysite": "1,8", + "use": 0, + "skillType": "intr_xljn_type_2", + "lv": 5, + "need": 1, + "cond": 45, + "front": [ + 0, + 0 + ], + "relevance": 15, + "skill": "waterdpspro", + "describe": "intr_xunlian_skill_describe_25", + "v": [ + "slv*0.01" + ], + "desCoefficient": [ + 100 + ], + "intr": "震荡伤害提升{1}%" + }, + "825": { + "id": 825, + "name": "intr_xunlian_skill_name_26", + "undefined": "沉稳", + "icon": "gedou_9", + "tab": 2, + "xysite": "1,9", + "use": 1, + "skillType": "intr_xljn_type_1", + "lv": 5, + "need": 1, + "cond": 50, + "front": [ + 824, + 5 + ], + "relevance": 15, + "skill": 30001400, + "describe": "intr_xunlian_skill_describe_26", + "v": [ + "3000+300*slv", + "slv*0.12" + ], + "desCoefficient": [ + 1, + 100 + ], + "intr": "对全体敌人造成{1}点震荡伤害,且有{2}%几率使目标沉睡持续2回合,自身所有干部免疫震荡属性攻击1回合
消耗怒气:200", + "nuqi": 200 + }, + "826": { + "id": 826, + "name": "intr_xunlian_skill_name_27", + "undefined": "重击", + "icon": "gedou_10", + "tab": 2, + "xysite": "2,1", + "use": 0, + "skillType": "intr_xljn_type_2", + "lv": 5, + "need": 1, + "cond": 0, + "front": [ + 0, + 0 + ], + "relevance": 16, + "skill": "atkpro", + "describe": "intr_xunlian_skill_describe_27", + "v": [ + "slv*0.01" + ], + "desCoefficient": [ + 100 + ], + "intr": "干部攻击提升{1}%" + }, + "827": { + "id": 827, + "name": "intr_xunlian_skill_name_28", + "undefined": "击晕", + "icon": "gedou_11", + "tab": 2, + "xysite": "2,2", + "use": 1, + "skillType": "intr_xljn_type_1", + "lv": 5, + "need": 1, + "cond": 5, + "front": [ + 826, + 5 + ], + "relevance": 16, + "skill": 40001100, + "describe": "intr_xunlian_skill_describe_28", + "v": [ + "800+150*slv", + "slv*0.1" + ], + "desCoefficient": [ + 1, + 100 + ], + "intr": "随机对2名敌人造成{1}点冲击伤害,攻击时{2}%概率使敌人眩晕1回合
消耗怒气:150", + "nuqi": 150 + }, + "828": { + "id": 828, + "name": "intr_xunlian_skill_name_29", + "undefined": "知识", + "icon": "gedou_12", + "tab": 2, + "xysite": "2,3", + "use": 2, + "skillType": "intr_xljn_type_2", + "lv": 5, + "need": 1, + "cond": 5, + "front": [ + 0, + 0 + ], + "relevance": 17, + "skill": "zj_zhishipro", + "describe": "intr_xunlian_skill_describe_29", + "v": [ + "slv*0.02" + ], + "desCoefficient": [ + 100 + ], + "intr": "主角意志提升{1}%" + }, + "829": { + "id": 829, + "name": "intr_xunlian_skill_name_30", + "undefined": "专注", + "icon": "gedou_13", + "tab": 2, + "xysite": "2,4", + "use": 1, + "skillType": "intr_xljn_type_1", + "lv": 5, + "need": 1, + "cond": 15, + "front": [ + 828, + 5 + ], + "relevance": 17, + "skill": 40001200, + "describe": "intr_xunlian_skill_describe_30", + "v": [ + "1000+150*slv", + "slv*1" + ], + "desCoefficient": [ + 1, + 1 + ], + "intr": "随机对1名敌方干部造成{1}点冲击伤害,并驱散己方随机{2}个干部的异常状态
消耗怒气:50", + "nuqi": 50 + }, + "830": { + "id": 830, + "name": "intr_xunlian_skill_name_31", + "undefined": "鼓舞", + "icon": "gedou_14", + "tab": 2, + "xysite": "2,5", + "use": 0, + "skillType": "intr_xljn_type_2", + "lv": 5, + "need": 1, + "cond": 25, + "front": [ + 0, + 0 + ], + "relevance": 18, + "skill": "shiqipro", + "describe": "intr_xunlian_skill_describe_31", + "v": [ + "slv*0.01" + ], + "desCoefficient": [ + 100 + ], + "intr": "所有干部士气提升{1}%" + }, + "831": { + "id": 831, + "name": "intr_xunlian_skill_name_32", + "undefined": "嗜血", + "icon": "gedou_15", + "tab": 2, + "xysite": "2,6", + "use": 1, + "skillType": "intr_xljn_type_1", + "lv": 5, + "need": 1, + "cond": 30, + "front": [ + 830, + 5 + ], + "relevance": 18, + "skill": 40001300, + "describe": "intr_xunlian_skill_describe_32", + "v": [ + "slv*1", + "1000+150*slv", + "slv*1", + "slv*0.01" + ], + "desCoefficient": [ + 1, + 1, + 1, + 100 + ], + "intr": "随机对{1}名敌方干部造成{2}点冲击伤害,并使己方随机{3}名干部进入吸血状态,攻击吸血提升{4}%,持续2回合
消耗怒气:50", + "nuqi": 50 + }, + "832": { + "id": 832, + "name": "intr_xunlian_skill_name_33", + "undefined": "迅捷", + "icon": "gedou_16", + "tab": 2, + "xysite": "2,7", + "use": 0, + "skillType": "intr_xljn_type_2", + "lv": 5, + "need": 1, + "cond": 40, + "front": [ + 0, + 0 + ], + "relevance": 19, + "skill": "speedpro", + "describe": "intr_xunlian_skill_describe_33", + "v": [ + "slv*0.01" + ], + "desCoefficient": [ + 100 + ], + "intr": "干部速度提升{1}%" + }, + "833": { + "id": 833, + "name": "intr_xunlian_skill_name_34", + "undefined": "冲击", + "icon": "gedou_17", + "tab": 2, + "xysite": "2,8", + "use": 0, + "skillType": "intr_xljn_type_2", + "lv": 5, + "need": 1, + "cond": 45, + "front": [ + 0, + 0 + ], + "relevance": 20, + "skill": "winddpspro", + "describe": "intr_xunlian_skill_describe_34", + "v": [ + "slv*0.01" + ], + "desCoefficient": [ + 100 + ], + "intr": "冲击伤害提升{1}%" + }, + "834": { + "id": 834, + "name": "intr_xunlian_skill_name_35", + "undefined": "蔑视", + "icon": "gedou_18", + "tab": 2, + "xysite": "2,9", + "use": 1, + "skillType": "intr_xljn_type_1", + "lv": 5, + "need": 1, + "cond": 50, + "front": [ + 833, + 5 + ], + "relevance": 20, + "skill": 40001400, + "describe": "intr_xunlian_skill_describe_35", + "v": [ + "3000+300*slv", + "slv*0.05" + ], + "desCoefficient": [ + 1, + 100 + ], + "intr": "对全体敌人造成{1}点冲击伤害,且有{2}%几率使目标伤害降低30%1回合,且自身所有干部免疫冲击属性攻击1回合
消耗怒气:200", + "nuqi": 200 + } +} \ No newline at end of file diff --git a/src/json/yangchengmubiao.json5 b/src/json/yangchengmubiao.json5 new file mode 100644 index 0000000..39187cb --- /dev/null +++ b/src/json/yangchengmubiao.json5 @@ -0,0 +1,2481 @@ +{ + '1': { //模板 + //持续时间 根据服务器的时间,天数走 ttype 0 开服时间 1 创号时间 + time: {start: 9999, end: 300, hdid: 1, ttype: 0}, + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr1: 'intr_yczm_tips_2', + intr2: 'intr_yczm_tips_3', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_1', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab1: 'intr_ychd_tab_name_2', + tab2: 'intr_ychd_tab_name_4', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '1': '8', + '2': '4', + //礼包 + gift: [ + { + index: 0, + need: [], + free: true, + payId: '', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 200} ] + }, + { + index: 1, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 500}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '2', 'n': 2000} ], + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_1_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '21', 'n': 200} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_1_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '21', 'n': 600} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_1_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '21', 'n': 1500} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_1_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '21', 'n': 2500} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_1_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '21', 'n': 6000} ] + }, + { + index: 7, + need: [], + free: false, + payId: 'ycmb_1_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '21', 'n': 12000} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [[2],5], + tasklist:{ + '1': { + '1001': { + 'prize': [{'a': 'item', 't': '2', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 1, + 'pval': 5, + 'cond': ['4'], + 'stype': 115, + //任务进度计数是否清零:0-不配 1-清零 + 'zero': 1 + }, + '1002': { + 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 1, + 'pval': 10, + 'cond': ['4'], + 'stype': 115, + 'zero': 1 + }, + '1003': { + 'prize': [{'a': 'item', 't': '2', 'n': 700}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 1, + 'pval': 15, + 'cond': ['4'], + 'stype': 115, + 'zero': 1 + }, + '1004': { + 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 1, + 'pval': 25, + 'cond': ['4'], + 'stype': 115, + 'zero': 1 + }, + }, + '2': { + '2001': { + 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 2, + 'pval': 600, + 'cond': ['2'], + 'stype': 134 + }, + '2002': { + 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 2, + 'pval': 2000, + 'cond': ['2'], + 'stype': 134 + }, + '2003': { + 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 2, + 'pval': 13000, + 'cond': ['2'], + 'stype': 134 + }, + '2004': { + 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 2, + 'pval': 35000, + 'cond': ['2'], + 'stype': 134 + }, + }, + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '2', 'n': 100}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + }, + '3003': { + 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 5, + 'cond': [], + 'stype': 135 + }, + }, + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '9', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 3000, + 'cond': ['9'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '10', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 10000, + 'cond': ['9'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '9', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 20000, + 'cond': ['9'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '10', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 40000, + 'cond': ['9'], + 'stype': 134 + }, + } + } + }, + + '3': { //每日获得紫色装备 mfmid 1683191 + //持续时间 根据服务器的时间,天数走 ttype 0 开服时间 1 创号时间 + time: {start: 0, end: 3, hdid: 3, ttype: 0}, + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_1', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '3': '8', + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 800}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '2', 'n': 1000} ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_1_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '2', 'n': 1000},{'a': 'attr', 't': 'jinbi', 'n': 100000} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_1_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '2', 'n': 3000},{'a': 'attr', 't': 'jinbi', 'n': 600000} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_1_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '615', 'n': 1},{'a': 'item', 't': '2', 'n': 4000} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_1_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '615', 'n': 2},{'a': 'item', 't': '2', 'n': 8000} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_1_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '609', 'n': 1},{'a': 'item', 't': '2', 'n': 20000} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_1_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '611', 'n': 1},{'a': 'item', 't': '2', 'n': 40000} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录(一次性任务) 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist:{ + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '2', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 4, + 'pval': 5, + 'cond': ['4'], + 'stype': 115, + 'zero': 1 + }, + '4002': { + 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 4, + 'pval': 10, + 'cond': ['4'], + 'stype': 115, + 'zero': 1 + }, + '4003': { + 'prize': [{'a': 'item', 't': '2', 'n': 700}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 4, + 'pval': 15, + 'cond': ['4'], + 'stype': 115, + 'zero': 1 + }, + '4004': { + 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 4, + 'pval': 25, + 'cond': ['4'], + 'stype': 115, + 'zero': 1 + }, + '4005': { + 'prize': [{'a': 'item', 't': '2', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 4, + 'pval': 600, + 'cond': ['2'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 4, + 'pval': 2000, + 'cond': ['2'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 4, + 'pval': 13000, + 'cond': ['2'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '615', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 4, + 'pval': 35000, + 'cond': ['2'], + 'stype': 134 + }, + }, + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '2', 'n': 100}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + }, + + '4': { //每日修复胶 mfmid 1683192 + //持续时间 根据服务器的时间,天数走 ttype 0 开服时间 1 创号时间 + time: {start: 3, end: 6, hdid: 4, ttype: 0}, + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_1', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '3': '38', + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 4000}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '21', 'n': 1000} ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_1_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '21', 'n': 200} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_1_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '21', 'n': 600} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_1_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '21', 'n': 1500} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_1_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '21', 'n': 2500} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_1_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '21', 'n': 6000} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_1_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '21', 'n': 12000} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist:{ + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '21', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 600, + 'cond': ['21'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '21', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 1200, + 'cond': ['21'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '21', 'n': 150}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 2000, + 'cond': ['21'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '21', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 3600, + 'cond': ['21'], + 'stype': 134 + }, + '4005': { + 'prize': [{'a': 'item', 't': '21', 'n': 300}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 5400, + 'cond': ['21'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '21', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 7200, + 'cond': ['21'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '21', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 9200, + 'cond': ['21'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '21', 'n': 600}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 12000, + 'cond': ['21'], + 'stype': 134 + } + }, + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '21', 'n': 20}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '21', 'n': 100}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + }, + + '5': { //每日专属材料 mfmid 1683193 + //持续时间 根据服务器的时间,天数走 ttype 0 开服时间 1 创号时间 + time: {start: 6, end: 9, hdid: 5, ttype: 0}, + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_1', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '3': '2', + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 3500}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '9', 'n': 5000} ] + }, + { + index: 1, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 3200}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '10', 'n': 200} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_3_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '10', 'n': 70} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_3_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '9', 'n': 3000} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_3_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '9', 'n': 3000}, {'a': 'item', 't': '10', 'n': 150} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_3_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '9', 'n': 5000}, {'a': 'item', 't': '10', 'n': 300} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_3_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '9', 'n': 20000}, {'a': 'item', 't': '10', 'n': 500} ] + }, + { + index: 7, + need: [], + free: false, + payId: 'ycmb_3_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '9', 'n': 40000}, {'a': 'item', 't': '10', 'n': 1000} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist:{ + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '9', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 3000, + 'cond': ['9'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '10', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 10000, + 'cond': ['9'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '9', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 20000, + 'cond': ['9'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '10', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 40000, + 'cond': ['9'], + 'stype': 134 + }, + '4005': { + 'prize': [{'a': 'item', 't': '9', 'n': 600}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 100, + 'cond': ['10'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '9', 'n': 800}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 300, + 'cond': ['10'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '10', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 500, + 'cond': ['10'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '9', 'n': 2000}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 1000, + 'cond': ['10'], + 'stype': 134 + } + }, + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '10', 'n': 5}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '9', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + }, + + '6': { //每日紫色配件 mfmid 1683194 + //持续时间 根据服务器的时间,天数走 ttype 0 开服时间 1 创号时间 + time: {start: 9, end: 12, hdid: 6, ttype: 0}, + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_1', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '3': '37', + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 140}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '28', 'n': 2000} ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_4_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '28', 'n': 1000},{'a': 'item', 't': '29', 'n': 20} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_4_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '28', 'n': 5000},{'a': 'item', 't': '29', 'n': 40} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_4_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '606', 'n': 2}, {'a': 'item', 't': '29', 'n': 80} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_4_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '606', 'n': 4}, {'a': 'item', 't': '29', 'n': 150} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_4_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '605', 'n': 6}, {'a': 'item', 't': '29', 'n': 400} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_4_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '605', 'n': 12}, {'a': 'item', 't': '29', 'n': 800} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist:{ + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '28', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 1, + 'cond': ['4'], + 'stype': 137, + 'zero': 1 + }, + '4002': { + 'prize': [{'a': 'item', 't': '28', 'n': 1500}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 6, + 'cond': ['4'], + 'stype': 137, + 'zero': 1 + }, + '4003': { + 'prize': [{'a': 'item', 't': '28', 'n': 3500}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 12, + 'cond': ['4'], + 'stype': 137, + 'zero': 1 + }, + '4004': { + 'prize': [{'a': 'item', 't': '28', 'n': 10000}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 18, + 'cond': ['4'], + 'stype': 137, + 'zero': 1 + }, + '4005': { + 'prize': [{'a': 'item', 't': '20', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 40, + 'cond': ['4'], + 'stype': 138, + 'zero': 1 + }, + '4006': { + 'prize': [{'a': 'item', 't': '20', 'n': 150}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 50, + 'cond': ['4'], + 'stype': 138, + 'zero': 1 + }, + '4007': { + 'prize': [{'a': 'item', 't': '606', 'n': 2}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 60, + 'cond': ['4'], + 'stype': 138, + 'zero': 1 + }, + '4008': { + 'prize': [{'a': 'item', 't': '606', 'n': 4}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 70, + 'cond': ['4'], + 'stype': 138, + 'zero': 1 + } + + }, + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '29', 'n': 10}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '20', 'n': 50}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + }, + + '7': { //每日装备蓝图 mfmid 1683195 + //持续时间 根据服务器的时间,天数走 ttype 0 开服时间 1 创号时间 + time: {start: 12, end: 15, hdid: 6, ttype: 0}, + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_1', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 3500}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '18', 'n': 500} ] + }, + { + index: 1, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 8000}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '601', 'n': 1} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_5_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '18', 'n': 100},{'a': 'attr', 't': 'jinbi', 'n': 100000} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_5_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '18', 'n': 300},{'a': 'attr', 't': 'jinbi', 'n': 600000} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_5_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '18', 'n': 400}, {'a': 'item', 't': '615', 'n': 1} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_5_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '18', 'n': 800}, {'a': 'item', 't': '615', 'n': 2} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_5_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '18', 'n': 2000}, {'a': 'item', 't': '609', 'n': 1} ] + }, + { + index: 7, + need: [], + free: false, + payId: 'ycmb_5_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '18', 'n': 4000}, {'a': 'item', 't': '611', 'n': 1} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist:{ + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '18', 'n': 10}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 100, + 'cond': ['18'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '18', 'n': 30}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 400, + 'cond': ['18'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '18', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 900, + 'cond': ['18'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '18', 'n': 80}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 1600, + 'cond': ['18'], + 'stype': 134 + }, + '4005': { + 'prize': [{'a': 'item', 't': '18', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 2500, + 'cond': ['18'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '18', 'n': 300}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 3500, + 'cond': ['18'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '627', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 4500, + 'cond': ['18'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '625', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 6000, + 'cond': ['18'], + 'stype': 134 + } + + }, + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '18', 'n': 10}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '18', 'n': 50}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + }, + + '8': { //每日装备调校合金 mfmid 1683198 + //持续时间 根据服务器的时间,天数走 ttype 0 开服时间 1 创号时间 + time: {start: 15, end: 18, hdid: 8, ttype: 0}, + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_1', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '3': '2', + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 7000}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '19', 'n': 500} ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_6_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '19', 'n': 50},{'a': 'attr', 't': 'jinbi', 'n': 100000} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_6_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '19', 'n': 150},{'a': 'attr', 't': 'jinbi', 'n': 600000} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_6_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '19', 'n': 200}, {'a': 'item', 't': '615', 'n': 1} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_6_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '19', 'n': 400}, {'a': 'item', 't': '615', 'n': 2} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_6_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '19', 'n': 1000}, {'a': 'item', 't': '609', 'n': 1} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_6_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '19', 'n': 2000}, {'a': 'item', 't': '611', 'n': 1} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist:{ + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '19', 'n': 10}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 90, + 'cond': ['19'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '19', 'n': 30}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 200, + 'cond': ['19'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '19', 'n': 40}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 400, + 'cond': ['19'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '19', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 700, + 'cond': ['19'], + 'stype': 134 + }, + '4005': { + 'prize': [{'a': 'item', 't': '19', 'n': 60}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 1000, + 'cond': ['19'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '19', 'n': 70}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 1500, + 'cond': ['19'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '615', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 2000, + 'cond': ['19'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '625', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 3000, + 'cond': ['19'], + 'stype': 134 + } + }, + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '19', 'n': 5}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '19', 'n': 25}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + }, + + '9': { //每日人才档案和营养液 mfmid 1683199 + //持续时间 根据服务器的时间,天数走 ttype 0 开服时间 1 创号时间 + time: {start: 18, end: 21, hdid: 9, ttype: 0}, + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_1', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 2100}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '13', 'n': 600} ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_7_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '13', 'n': 200} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_7_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '27', 'n': 7000} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_7_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680}, {'a': 'item', 't': '27', 'n': 15000} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_7_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '27', 'n': 20000}, {'a': 'item', 't': '13', 'n': 900} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_7_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '600', 'n': 20}, {'a': 'item', 't': '27', 'n': 50000} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_7_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '600', 'n': 40}, {'a': 'item', 't': '27', 'n': 100000} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist:{ + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '13', 'n': 5}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 20000, + 'cond': ['27'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '13', 'n': 10}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 40000, + 'cond': ['27'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '13', 'n': 15}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 60000, + 'cond': ['27'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '13', 'n': 20}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 80000, + 'cond': ['27'], + 'stype': 134 + }, + '4005': { + 'prize': [{'a': 'item', 't': '13', 'n': 25}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 120000, + 'cond': ['27'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '13', 'n': 30}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_7', + 'type': 4, + 'pval': 400, + 'cond': ['13'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '13', 'n': 35}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_7', + 'type': 4, + 'pval': 1000, + 'cond': ['13'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '600', 'n': 20}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_7', + 'type': 4, + 'pval': 1800, + 'cond': ['13'], + 'stype': 134 + } + }, + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '27', 'n': 5}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '13', 'n': 25}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + }, + + '10': { //每日修复胶 mfmid 16831910 + //持续时间 根据服务器的时间,天数走 ttype 0 开服时间 1 创号时间 + time: {start: 21, end: 24, hdid: 10, ttype: 0}, + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_1', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '3': '38', + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 4000}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '21', 'n': 1000} ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_1_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '21', 'n': 200} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_1_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '21', 'n': 600} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_1_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '21', 'n': 1500} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_1_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '21', 'n': 2500} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_1_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '21', 'n': 6000} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_1_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '21', 'n': 12000} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist:{ + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '21', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 600, + 'cond': ['21'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '21', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 1200, + 'cond': ['21'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '21', 'n': 150}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 2000, + 'cond': ['21'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '21', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 3600, + 'cond': ['21'], + 'stype': 134 + }, + '4005': { + 'prize': [{'a': 'item', 't': '21', 'n': 300}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 5400, + 'cond': ['21'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '21', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 7200, + 'cond': ['21'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '21', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 9200, + 'cond': ['21'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '21', 'n': 600}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 12000, + 'cond': ['21'], + 'stype': 134 + } + }, + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '21', 'n': 20}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '21', 'n': 100}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + }, + + '11': { //每日专属材料 mfmid 16831911 + //持续时间 根据服务器的时间,天数走 ttype 0 开服时间 1 创号时间 + time: {start: 24, end: 27, hdid: 11, ttype: 0}, + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_1', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '3': '2', + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 3500}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '9', 'n': 5000} ] + }, + { + index: 1, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 3200}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '10', 'n': 200} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_3_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '10', 'n': 70} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_3_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '9', 'n': 3000} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_3_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '9', 'n': 3000}, {'a': 'item', 't': '10', 'n': 150} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_3_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '9', 'n': 5000}, {'a': 'item', 't': '10', 'n': 300} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_3_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '9', 'n': 20000}, {'a': 'item', 't': '10', 'n': 500} ] + }, + { + index: 7, + need: [], + free: false, + payId: 'ycmb_3_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '9', 'n': 40000}, {'a': 'item', 't': '10', 'n': 1000} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist:{ + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '9', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 3000, + 'cond': ['9'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '10', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 10000, + 'cond': ['9'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '9', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 20000, + 'cond': ['9'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '10', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 40000, + 'cond': ['9'], + 'stype': 134 + }, + '4005': { + 'prize': [{'a': 'item', 't': '9', 'n': 600}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 100, + 'cond': ['10'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '9', 'n': 800}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 300, + 'cond': ['10'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '10', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 500, + 'cond': ['10'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '9', 'n': 2000}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 1000, + 'cond': ['10'], + 'stype': 134 + } + }, + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '10', 'n': 5}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '9', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + }, + + '12': { //每日紫色配件 mfmid 16831912 + //持续时间 根据服务器的时间,天数走 ttype 0 开服时间 1 创号时间 + time: {start: 27, end: 30, hdid: 12, ttype: 0}, + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_1', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '3': '37', + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 140}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '28', 'n': 2000} ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_4_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '28', 'n': 1000},{'a': 'item', 't': '29', 'n': 20} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_4_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '28', 'n': 5000},{'a': 'item', 't': '29', 'n': 40} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_4_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '606', 'n': 2}, {'a': 'item', 't': '29', 'n': 80} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_4_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '606', 'n': 4}, {'a': 'item', 't': '29', 'n': 150} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_4_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '605', 'n': 3}, {'a': 'item', 't': '29', 'n': 400} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_4_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '605', 'n': 3}, {'a': 'item', 't': '29', 'n': 800} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist:{ + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '28', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 1, + 'cond': ['4'], + 'stype': 137, + 'zero': 1 + }, + '4002': { + 'prize': [{'a': 'item', 't': '28', 'n': 1500}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 6, + 'cond': ['4'], + 'stype': 137, + 'zero': 1 + }, + '4003': { + 'prize': [{'a': 'item', 't': '28', 'n': 3500}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 12, + 'cond': ['4'], + 'stype': 137, + 'zero': 1 + }, + '4004': { + 'prize': [{'a': 'item', 't': '28', 'n': 10000}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 18, + 'cond': ['4'], + 'stype': 137, + 'zero': 1 + }, + '4005': { + 'prize': [{'a': 'item', 't': '20', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 40, + 'cond': ['4'], + 'stype': 138, + 'zero': 1 + }, + '4006': { + 'prize': [{'a': 'item', 't': '20', 'n': 150}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 50, + 'cond': ['4'], + 'stype': 138, + 'zero': 1 + }, + '4007': { + 'prize': [{'a': 'item', 't': '606', 'n': 2}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 60, + 'cond': ['4'], + 'stype': 138, + 'zero': 1 + }, + '4008': { + 'prize': [{'a': 'item', 't': '606', 'n': 4}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 70, + 'cond': ['4'], + 'stype': 138, + 'zero': 1 + } + }, + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '29', 'n': 10}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '20', 'n': 50}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + }, + + '13': { //每日人才档案和营养液 mfmid 16831915 + //持续时间 根据服务器的时间,天数走 ttype 0 开服时间 1 创号时间 + time: {start: 30, end: 33, hdid: 13, ttype: 0}, + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_1', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + //礼包 + gift: [ + { + index: 0, + need: [{'a': 'attr', t: 'rmbmoney', 'n': 2100}], + free: false, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '13', 'n': 600} ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_7_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '13', 'n': 200} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_7_2', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '27', 'n': 7000} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_7_3', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680}, {'a': 'item', 't': '27', 'n': 15000} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_7_4', + buyNum: 2, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '27', 'n': 20000}, {'a': 'item', 't': '13', 'n': 900} ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_7_5', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '600', 'n': 20}, {'a': 'item', 't': '27', 'n': 50000} ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_7_6', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '600', 'n': 40}, {'a': 'item', 't': '27', 'n': 100000} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist:{ + '4': { + '4001': { + 'prize': [{'a': 'item', 't': '13', 'n': 5}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 20000, + 'cond': ['27'], + 'stype': 134 + }, + '4002': { + 'prize': [{'a': 'item', 't': '13', 'n': 10}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 40000, + 'cond': ['27'], + 'stype': 134 + }, + '4003': { + 'prize': [{'a': 'item', 't': '13', 'n': 15}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 60000, + 'cond': ['27'], + 'stype': 134 + }, + '4004': { + 'prize': [{'a': 'item', 't': '13', 'n': 20}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 80000, + 'cond': ['27'], + 'stype': 134 + }, + '4005': { + 'prize': [{'a': 'item', 't': '13', 'n': 25}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 120000, + 'cond': ['27'], + 'stype': 134 + }, + '4006': { + 'prize': [{'a': 'item', 't': '13', 'n': 30}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_7', + 'type': 4, + 'pval': 400, + 'cond': ['13'], + 'stype': 134 + }, + '4007': { + 'prize': [{'a': 'item', 't': '13', 'n': 35}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], + 'tujing': '', + 'title': 'intr_yczm_day_des_7', + 'type': 4, + 'pval': 1000, + 'cond': ['13'], + 'stype': 134 + }, + '4008': { + 'prize': [{'a': 'item', 't': '600', 'n': 20}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], + 'tujing': '', + 'title': 'intr_yczm_day_des_7', + 'type': 4, + 'pval': 1800, + 'cond': ['13'], + 'stype': 134 + } + }, + '3': { + '3001': { + 'prize': [{'a': 'item', 't': '27', 'n': 5}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [{'a': 'item', 't': '13', 'n': 25}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + }, + + '100': { //轮数抽卡 mfmid 168318 + //持续时间 根据服务器的时间,天数走 ttype 0 开服时间 1 创号时间 + time: {start: 9999, end: 6, hdid: 100, ttype: 0}, + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr2: 'intr_yczm_tips_3', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_3', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab2: 'intr_ychd_tab_name_4', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '2': '9', + //礼包 + gift: [ + { + index: 0, + need: [], + free: true, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '4', 'n': 10} ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_2_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 600},{'a': 'item', 't': '4', 'n': 10} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_2_2', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1360},{'a': 'item', 't': '4', 'n': 20} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_2_3', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 2560},{'a': 'item', 't': '4', 'n': 50} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_2_4', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6560},{'a': 'item', 't': '4', 'n': 100} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_2_5', + buyNum: 10, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 12960},{'a': 'item', 't': '4', 'n': 200} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [[2],5], + tasklist:{ + '2': { + '2001': { + 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 50, + 'cond': [], + 'stype': 118 + }, + '2002': { + 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 100, + 'cond': [], + 'stype': 118 + }, + '2003': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '626', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 200, + 'cond': [], + 'stype': 118 + }, + '2004': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 300, + 'cond': [], + 'stype': 118 + }, + '2005': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 400, + 'cond': [], + 'stype': 118 + }, + '2006': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 40}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 500, + 'cond': [], + 'stype': 118 + } + } + } + }, + + '101': { //轮数抽卡 mfmid 168319 + //持续时间 根据服务器的时间,天数走 ttype 0 开服时间 1 创号时间 + time: {start: 9999, end: 6, hdid: 101, ttype: 0}, + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr2: 'intr_yczm_tips_3', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_3', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab2: 'intr_ychd_tab_name_4', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '2': '9', + //礼包 + gift: [ + { + index: 0, + need: [], + free: true, + payId: '', + buyNum: 1, + prize: [ {'a': 'item', 't': '4', 'n': 10} ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_2_1', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 600},{'a': 'item', 't': '4', 'n': 10} ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_2_2', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1360},{'a': 'item', 't': '4', 'n': 20} ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_2_3', + buyNum: 1, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 2560},{'a': 'item', 't': '4', 'n': 50} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_2_4', + buyNum: 3, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6560},{'a': 'item', 't': '4', 'n': 100} ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_2_5', + buyNum: 10, + prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 12960},{'a': 'item', 't': '4', 'n': 200} ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [[2],5], + tasklist:{ + '2': { + '2001': { + 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 50, + 'cond': [], + 'stype': 118 + }, + '2002': { + 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 100, + 'cond': [], + 'stype': 118 + }, + '2003': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '626', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 200, + 'cond': [], + 'stype': 118 + }, + '2004': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 300, + 'cond': [], + 'stype': 118 + }, + '2005': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 400, + 'cond': [], + 'stype': 118 + }, + '2006': { + 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 40}], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 500, + 'cond': [], + 'stype': 118 + } + } + } + }, + + +} \ No newline at end of file diff --git a/src/json/yibaichou.json5 b/src/json/yibaichou.json5 new file mode 100644 index 0000000..f80c3c3 --- /dev/null +++ b/src/json/yibaichou.json5 @@ -0,0 +1,71 @@ + +{ + onlinePrize: [ + { + total: 300, + prize: [{a: 'item', t: '12', n: 100}] + }, + { + total: 600, + prize: [{a: 'item', t: '4', n: 10}] + }, + { + total: 1200, + prize: [{a: 'item', t: '4007', n: 20}] + }, + { + total: 1800, + prize: [{a: 'attr', t: 'rmbmoney', n: 200}] + }, + { + total: 2400, + prize: [{a: 'item', t: '4005', n: 20}] + }, + { + total: 3000, + prize: [{a: 'item', t: '2', n: 200}] + }, + { + total: 3600, + prize: [{a: 'attr', t: 'rmbmoney', n: 300}] + } + ], + loginPrize: [ + { + total: 2, + prize: [{a: 'item', t: '4', n: 10}] + }, + { + total: 3, + prize: [{a: 'item', t: '4', n: 10}] + }, + { + total: 4, + prize: [{a: 'item', t: '4', n: 10}] + }, + { + total: 5, + prize: [{a: 'item', t: '4', n: 10}] + }, + { + total: 6, + prize: [{a: 'item', t: '4', n: 10}] + }, + { + total: 7, + prize: [{a: 'item', t: '4', n: 10}] + }, + { + total: 8, + prize: [{a: 'item', t: '4', n: 10}] + }, + { + total: 9, + prize: [{a: 'item', t: '4', n: 10}] + }, + { + total: 10, + prize: [{a: 'item', t: '4', n: 10}] + } + ] +} \ No newline at end of file diff --git a/src/json/yuedujijin.json5 b/src/json/yuedujijin.json5 new file mode 100644 index 0000000..947cbec --- /dev/null +++ b/src/json/yuedujijin.json5 @@ -0,0 +1,84 @@ +[ + { + payId: '128jijin', + prize: [ + {a:'item',t:'4',n:10}, + {a:'attr',t:'rmbmoney',n:300}, + {a:'attr',t:'rmbmoney',n:300}, + {a:'item',t:'9',n:2000}, + {a:'attr',t:'rmbmoney',n:300}, + {a:'attr',t:'rmbmoney',n:300}, + {a:'item',t:'609',n:1}, + {a:'item',t:'4',n:10}, + {a:'attr',t:'rmbmoney',n:500}, + {a:'attr',t:'rmbmoney',n:300}, + {a:'item',t:'18',n:300}, + {a:'attr',t:'rmbmoney',n:300}, + {a:'attr',t:'rmbmoney',n:300}, + {a:'item',t:'6',n:20}, + {a:'attr',t:'rmbmoney',n:300}, + {a:'attr',t:'rmbmoney',n:300}, + {a:'item',t:'9',n:3000}, + {a:'attr',t:'rmbmoney',n:300}, + {a:'attr',t:'rmbmoney',n:300}, + {a:'item',t:'4',n:10}, + {a:'attr',t:'rmbmoney',n:500}, + {a:'attr',t:'rmbmoney',n:300}, + {a:'item',t:'20',n:200}, + {a:'attr',t:'rmbmoney',n:300}, + {a:'attr',t:'rmbmoney',n:300}, + {a:'item',t:'9',n:3000}, + {a:'attr',t:'rmbmoney',n:300}, + {a:'attr',t:'rmbmoney',n:300}, + {a:'attr',t:'rmbmoney',n:1000}, + {a:'item',t:'628',n:1}, + ], + //奖励总价值X钻 + num1: 38200, + //购买立即获得X钻 + num2: 1280, + //XX倍返利 + img: "ydjj_wz2_yh" + }, + { + payId: '328jijin', + prize: [ + {a:'item',t:'4',n:30}, + {a:'attr',t:'rmbmoney',n:800}, + {a:'attr',t:'rmbmoney',n:800}, + {a:'item',t:'10',n:300}, + {a:'attr',t:'rmbmoney',n:800}, + {a:'attr',t:'rmbmoney',n:800}, + {a:'item',t:'628',n:1}, + {a:'item',t:'4',n:20}, + {a:'attr',t:'rmbmoney',n:800}, + {a:'attr',t:'rmbmoney',n:800}, + {a:'item',t:'628',n:1}, + {a:'attr',t:'rmbmoney',n:800}, + {a:'attr',t:'rmbmoney',n:800}, + {a:'item',t:'628',n:1}, + {a:'attr',t:'rmbmoney',n:800}, + {a:'attr',t:'rmbmoney',n:800}, + {a:'item',t:'628',n:1}, + {a:'attr',t:'rmbmoney',n:800}, + {a:'attr',t:'rmbmoney',n:800}, + {a:'item',t:'4',n:20}, + {a:'attr',t:'rmbmoney',n:800}, + {a:'attr',t:'rmbmoney',n:800}, + {a:'item',t:'10',n:400}, + {a:'attr',t:'rmbmoney',n:800}, + {a:'attr',t:'rmbmoney',n:800}, + {a:'item',t:'10',n:400}, + {a:'attr',t:'rmbmoney',n:800}, + {a:'attr',t:'rmbmoney',n:800}, + {a:'attr',t:'rmbmoney',n:1500}, + {a:'item',t:'617',n:1}, + ], + //奖励总价值X钻 + num1: 70080, + //购买立即获得X钻 + num2: 3280, + //XX倍返利 + img: "ydjj_wz4_yh" + } +] \ No newline at end of file diff --git a/src/json/zhangjie.json b/src/json/zhangjie.json new file mode 100644 index 0000000..7870f04 --- /dev/null +++ b/src/json/zhangjie.json @@ -0,0 +1,156 @@ +{ + "1": { + "id": 1, + "name": "intr_zhangjie_name_1", + "undefined": "第一章-大佛", + "liangImg": "tx_jianzhu4", + "anImg": "tx_jianzhu4_hui", + "xy": [ + 205, + -252 + ] + }, + "2": { + "id": 2, + "name": "intr_zhangjie_name_2", + "undefined": "第二章-维修厂", + "liangImg": "tx_jianzhu1", + "anImg": "tx_jianzhu1_hui", + "xy": [ + -72, + -360 + ] + }, + "3": { + "id": 3, + "name": "intr_zhangjie_name_3", + "undefined": "第三章-三合会", + "liangImg": "tx_jianzhu9", + "anImg": "tx_jianzhu9_hui", + "xy": [ + -84, + -76 + ] + }, + "4": { + "id": 4, + "name": "intr_zhangjie_name_4", + "undefined": "第四章-咖啡厅", + "liangImg": "tx_jianzhu10", + "anImg": "tx_jianzhu10_hui", + "xy": [ + -359, + -137 + ] + }, + "5": { + "id": 5, + "name": "intr_zhangjie_name_5", + "undefined": "第五章-黑礁商会", + "liangImg": "tx_jianzhu11", + "anImg": "tx_jianzhu11_hui", + "xy": [ + -327, + 50 + ] + }, + "6": { + "id": 6, + "name": "intr_zhangjie_name_6", + "undefined": "第六章-酒吧", + "liangImg": "tx_jianzhu2", + "anImg": "tx_jianzhu2_hui", + "xy": [ + -483, + 188 + ] + }, + "7": { + "id": 7, + "name": "intr_zhangjie_name_7", + "undefined": "第七章-三冠殿", + "liangImg": "tx_jianzhu8", + "anImg": "tx_jianzhu8_hui", + "xy": [ + -211, + 330 + ] + }, + "8": { + "id": 8, + "name": "intr_zhangjie_name_8", + "undefined": "第八章-教堂", + "liangImg": "tx_jianzhu3", + "anImg": "tx_jianzhu3_hui", + "xy": [ + -16, + 97 + ] + }, + "9": { + "id": 9, + "name": "intr_zhangjie_name_9", + "undefined": "第九章-公园", + "liangImg": "tx_jianzhu15", + "anImg": "tx_jianzhu15_hui", + "xy": [ + 60, + 292 + ] + }, + "10": { + "id": 10, + "name": "intr_zhangjie_name_10", + "undefined": "第十章-码头", + "liangImg": "tx_jianzhu5", + "anImg": "tx_jianzhu5_hui", + "xy": [ + 68, + 437 + ] + }, + "11": { + "id": 11, + "name": "intr_zhangjie_name_11", + "undefined": "第十一章-莫斯科旅馆", + "liangImg": "tx_jianzhu7", + "anImg": "tx_jianzhu7_hui", + "xy": [ + 325, + 337 + ] + }, + "12": { + "id": 12, + "name": "intr_zhangjie_name_12", + "undefined": "第十二章-沉船小岛", + "liangImg": "tx_jianzhu13", + "anImg": "tx_jianzhu13_hui", + "xy": [ + 490, + 228 + ] + }, + "13": { + "id": 13, + "name": "intr_zhangjie_name_13", + "undefined": "第十三章-警察局", + "liangImg": "tx_jianzhu6", + "anImg": "tx_jianzhu6_hui", + "xy": [ + 252, + 101 + ] + }, + "14": { + "id": 14, + "name": "intr_zhangjie_name_14", + "undefined": "第十四章-艾路洛依", + "liangImg": "tx_jianzhu14", + "anImg": "tx_jianzhu14_hui", + "xy": [ + 542, + -81 + ] + } +} \ No newline at end of file diff --git a/src/json/zhanling.json5 b/src/json/zhanling.json5 new file mode 100644 index 0000000..274ecb1 --- /dev/null +++ b/src/json/zhanling.json5 @@ -0,0 +1,133 @@ +{ + //活动一轮开放天数 + eventOpen: { day: 30, lv: 0 }, + payId: 'zhanling', + payAddLv: 10, + email: { + title: 'intr_zhanling_title_1', + content: 'intr_zhanling_content_1' + }, + task: [ + { intr: 'intr_zhanling_task1', taskId: 'user/Login', type: 'day', total: 1, exp: 150 ,"tiaozhuan": 1}, + { intr: 'intr_zhanling_task2', taskId: 'gonghui/Jx', type: 'day', total: 1, exp: 150 ,"tiaozhuan": 20}, + { intr: 'intr_zhanling_task3', taskId: 'pata', type: 'day', total: 1, exp: 200 ,"tiaozhuan": 29}, + { intr: 'intr_zhanling_task4', taskId: 'jjc/Fight', type: 'day', total: 3, exp: 200 ,"tiaozhuan": 28}, + { intr: 'intr_zhanling_task5', taskId: 'use_attr_rmbmoney', type: 'day', total: 500, exp: 200 ,"tiaozhuan": 11}, + { intr: 'intr_zhanling_task6', taskId: 'tqexp', type: 'day', total: 1, exp: 300 ,"tiaozhuan": 36}, + + { intr: 'intr_zhanling_task7', taskId: 'gonghui/Jx/2', type: 'week', total: 5, exp: 800 ,"tiaozhuan": 20}, + { intr: 'intr_zhanling_task8', taskId: 'ganhai_finish', type: 'week', total: 3, exp: 800 ,"tiaozhuan": 23}, + { intr: 'intr_zhanling_task9', taskId: 'task_finish_type_1', type: 'week', total: 70, exp: 800 ,"tiaozhuan": 14}, + { intr: 'intr_zhanling_task10', taskId: 'tanxian/FastGuaJi', type: 'week', total: 14, exp: 800 ,"tiaozhuan": 3}, + { intr: 'intr_zhanling_task11', taskId: 'dixiaqianzhuang/Qf', type: 'week', total: 100, exp: 800 ,"tiaozhuan": 25}, + + { intr: 'intr_zhanling_task12', taskId: 'jiuba/Lottery', type: 'round', total: 20, exp: 2000 ,"tiaozhuan": 9}, + { intr: 'intr_zhanling_task13', taskId: 'tanxian/FastGuaJi', type: 'round', total: 90, exp: 2000 ,"tiaozhuan": 3}, + { intr: 'intr_zhanling_task14', taskId: 'gonglukuangbiao/Fight', type: 'round', total: 50, exp: 2000 ,"tiaozhuan": 3}, + { intr: 'intr_zhanling_task15', taskId: 'use_attr_rmbmoney', type: 'round', total: 20000, exp: 2000 ,"tiaozhuan": 11}, + ], + lvNeed: [{a: 'attr', t: 'rmbmoney', n: 300}], + lv: { +"2": 1000, +"3": 2000, +"4": 3000, +"5": 4000, +"6": 5000, +"7": 6000, +"8": 7000, +"9": 8000, +"10": 9000, +"11": 10000, +"12": 11000, +"13": 12000, +"14": 13000, +"15": 14000, +"16": 15000, +"17": 16000, +"18": 17000, +"19": 18000, +"20": 19000, +"21": 20000, +"22": 21000, +"23": 22000, +"24": 23000, +"25": 24000, +"26": 25000, +"27": 26000, +"28": 27000, +"29": 28000, +"30": 29000, +"31": 30000, +"32": 31000, +"33": 32000, +"34": 33000, +"35": 34000, +"36": 35000, +"37": 36000, +"38": 37000, +"39": 38000, +"40": 39000, +"41": 40000, +"42": 41000, +"43": 42000, +"44": 43000, +"45": 44000, +"46": 45000, +"47": 46000, +"48": 47000, +"49": 48000, +"50": 49000 + }, + prize: [ +{ lv: 1, pt: [{ a: 'item', t: '6', n: 5 }], tq: [{ a: 'item', t: '43', n: 1 }] }, +{ lv: 2, pt: [{ a: 'item', t: '1', n: 200000 }], tq: [{ a: 'item', t: '1', n: 400000 }] }, +{ lv: 3, pt: [{ a: 'item', t: '12', n: 300 }], tq: [{ a: 'item', t: '10', n: 100 }] }, +{ lv: 4, pt: [{ a: 'item', t: '2', n: 400 }], tq: [{ a: 'item', t: '9', n: 500 }] }, +{ lv: 5, pt: [{ a: 'item', t: '1', n: 200000 }], tq: [{ a: 'attr', t: 'rmbmoney', n: 500 },{ a: 'item', t: '600', n: 5 }] }, +{ lv: 6, pt: [{ a: 'attr', t: 'rmbmoney', n: 100 }], tq: [{ a: 'attr', t: 'jinbi', n: 20000000 }] }, +{ lv: 7, pt: [{ a: 'attr', t: 'jinbi', n: 10000000 }], tq: [{ a: 'item', t: '2', n: 1000 }] }, +{ lv: 8, pt: [{ a: 'item', t: '2', n: 400 }], tq: [{ a: 'item', t: '1', n: 400000 }] }, +{ lv: 9, pt: [{ a: 'attr', t: 'jinbi', n: 10000000 }], tq: [{ a: 'item', t: '9', n: 500 }] }, +{ lv: 10, pt: [{ a: 'item', t: '2', n: 400 }], tq: [{ a: 'item', t: '615', n: 1 },{ a: 'item', t: '600', n: 5 }] }, +{ lv: 11, pt: [{ a: 'attr', t: 'rmbmoney', n: 100 }], tq: [{ a: 'item', t: '9', n: 500 }] }, +{ lv: 12, pt: [{ a: 'item', t: '2', n: 400 }], tq: [{ a: 'item', t: '18', n: 100 }] }, +{ lv: 13, pt: [{ a: 'item', t: '18', n: 40 }], tq: [{ a: 'item', t: '10', n: 100 }] }, +{ lv: 14, pt: [{ a: 'item', t: '2', n: 500 }], tq: [{ a: 'item', t: '9', n: 500 }] }, +{ lv: 15, pt: [{ a: 'attr', t: 'rmbmoney', n: 100 }], tq: [{ a: 'attr', t: 'rmbmoney', n: 500 },{ a: 'item', t: '600', n: 5 }] }, +{ lv: 16, pt: [{ a: 'item', t: '1', n: 200000 }], tq: [{ a: 'item', t: '9', n: 500 }] }, +{ lv: 17, pt: [{ a: 'attr', t: 'jinbi', n: 10000000 }], tq: [{ a: 'item', t: '2', n: 1000 }] }, +{ lv: 18, pt: [{ a: 'item', t: '2', n: 500 }], tq: [{ a: 'attr', t: 'jinbi', n: 20000000 }] }, +{ lv: 19, pt: [{ a: 'attr', t: 'jinbi', n: 10000000 }], tq: [{ a: 'item', t: '1', n: 400000 }] }, +{ lv: 20, pt: [{ a: 'item', t: '6', n: 5 }], tq: [{ a: 'attr', t: 'rmbmoney', n: 500 },{ a: 'item', t: '600', n: 5 }] }, +{ lv: 21, pt: [{ a: 'item', t: '24', n: 2 }], tq: [{ a: 'attr', t: 'jinbi', n: 20000000 }] }, +{ lv: 22, pt: [{ a: 'item', t: '2', n: 400 }], tq: [{ a: 'item', t: '9', n: 500 }] }, +{ lv: 23, pt: [{ a: 'item', t: '18', n: 50 }], tq: [{ a: 'item', t: '1', n: 400000 }] }, +{ lv: 24, pt: [{ a: 'item', t: '2', n: 500 }], tq: [{ a: 'item', t: '9', n: 500 }] }, +{ lv: 25, pt: [{ a: 'item', t: '24', n: 2 }], tq: [{ a: 'attr', t: 'rmbmoney', n: 500 },{ a: 'hero', t: '5003', n: 1 }] }, +{ lv: 26, pt: [{ a: 'item', t: '1', n: 200000 }], tq: [{ a: 'item', t: '1', n: 400000 }] }, +{ lv: 27, pt: [{ a: 'attr', t: 'jinbi', n: 10000000 }], tq: [{ a: 'item', t: '2', n: 1000 }] }, +{ lv: 28, pt: [{ a: 'item', t: '2', n: 500 }], tq: [{ a: 'item', t: '18', n: 100 }] }, +{ lv: 29, pt: [{ a: 'item', t: '18', n: 50 }], tq: [{ a: 'item', t: '18', n: 150 }] }, +{ lv: 30, pt: [{ a: 'item', t: '6', n: 10 }], tq: [{ a: 'attr', t: 'rmbmoney', n: 500 },{ a: 'item', t: '600', n: 5 }] }, +{ lv: 31, pt: [{ a: 'item', t: '24', n: 2 }], tq: [{ a: 'item', t: '1', n: 400000 }] }, +{ lv: 32, pt: [{ a: 'item', t: '18', n: 50 }], tq: [{ a: 'item', t: '10', n: 100 }] }, +{ lv: 33, pt: [{ a: 'attr', t: 'jinbi', n: 10000000 }], tq: [{ a: 'item', t: '24', n: 3 }] }, +{ lv: 34, pt: [{ a: 'item', t: '2', n: 500 }], tq: [{ a: 'item', t: '9', n: 1500 }] }, +{ lv: 35, pt: [{ a: 'item', t: '24', n: 2 }], tq: [{ a: 'attr', t: 'rmbmoney', n: 500 },{ a: 'item', t: '600', n: 5 }] }, +{ lv: 36, pt: [{ a: 'item', t: '1', n: 200000 }], tq: [{ a: 'item', t: '18', n: 200 }] }, +{ lv: 37, pt: [{ a: 'attr', t: 'jinbi', n: 10000000 }], tq: [{ a: 'item', t: '2', n: 1000 }] }, +{ lv: 38, pt: [{ a: 'item', t: '2', n: 500 }], tq: [{ a: 'item', t: '18', n: 100 }] }, +{ lv: 39, pt: [{ a: 'item', t: '18', n: 50 }], tq: [{ a: 'attr', t: 'jinbi', n: 20000000 }] }, +{ lv: 40, pt: [{ a: 'item', t: '6', n: 10 }], tq: [{ a: 'attr', t: 'rmbmoney', n: 500 },{ a: 'item', t: '600', n: 5 }] }, +{ lv: 41, pt: [{ a: 'item', t: '24', n: 2 }], tq: [{ a: 'attr', t: 'jinbi', n: 30000000 }] }, +{ lv: 42, pt: [{ a: 'item', t: '12', n: 500 }], tq: [{ a: 'item', t: '1', n: 400000 }] }, +{ lv: 43, pt: [{ a: 'item', t: '1', n: 200000 }], tq: [{ a: 'item', t: '24', n: 5 }] }, +{ lv: 44, pt: [{ a: 'item', t: '2', n: 500 }], tq: [{ a: 'item', t: '10', n: 100 }] }, +{ lv: 45, pt: [{ a: 'item', t: '24', n: 2 }], tq: [{ a: 'attr', t: 'rmbmoney', n: 500 },{ a: 'item', t: '600', n: 5 }] }, +{ lv: 46, pt: [{ a: 'item', t: '18', n: 50 }], tq: [{ a: 'item', t: '9', n: 500 }] }, +{ lv: 47, pt: [{ a: 'item', t: '18', n: 50 }], tq: [{ a: 'item', t: '18', n: 200 }] }, +{ lv: 48, pt: [{ a: 'item', t: '2', n: 500 }], tq: [{ a: 'item', t: '10', n: 100 }] }, +{ lv: 49, pt: [{ a: 'attr', t: 'rmbmoney', n: 100 }], tq: [{ a: 'item', t: '9', n: 1500 }] }, +{ lv: 50, pt: [{ a: 'item', t: '6', n: 10 }], tq: [{ a: 'attr', t: 'rmbmoney', n: 500 },{ a: 'item', t: '600', n: 5 }] }, + ] +} \ No newline at end of file diff --git a/src/json/zhuanshu.json b/src/json/zhuanshu.json new file mode 100644 index 0000000..2dc9e74 --- /dev/null +++ b/src/json/zhuanshu.json @@ -0,0 +1,66222 @@ +{ + "3001": { + "0": { + "0": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.091, + "defpro": 0.063, + "hppro": 0.123, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.093, + "defpro": 0.066, + "hppro": 0.127, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.095, + "defpro": 0.07, + "hppro": 0.132, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.097, + "defpro": 0.074, + "hppro": 0.138, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.1, + "defpro": 0.078, + "hppro": 0.143, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.103, + "defpro": 0.082, + "hppro": 0.15, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.107, + "defpro": 0.086, + "hppro": 0.156, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.111, + "defpro": 0.09, + "hppro": 0.163, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.115, + "defpro": 0.095, + "hppro": 0.171, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.12, + "defpro": 0.1, + "hppro": 0.18, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.125, + "defpro": 0.105, + "hppro": 0.189, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.131, + "defpro": 0.11, + "hppro": 0.198, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.137, + "defpro": 0.116, + "hppro": 0.209, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.143, + "defpro": 0.122, + "hppro": 0.22, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.15, + "defpro": 0.128, + "hppro": 0.231, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.157, + "defpro": 0.134, + "hppro": 0.243, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.165, + "defpro": 0.14, + "hppro": 0.255, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.173, + "defpro": 0.146, + "hppro": 0.268, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.181, + "defpro": 0.153, + "hppro": 0.282, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.19, + "defpro": 0.16, + "hppro": 0.296, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.199, + "defpro": 0.167, + "hppro": 0.31, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.209, + "defpro": 0.174, + "hppro": 0.326, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.219, + "defpro": 0.182, + "hppro": 0.342, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.229, + "defpro": 0.19, + "hppro": 0.358, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.24, + "defpro": 0.198, + "hppro": 0.375, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.251, + "defpro": 0.206, + "hppro": 0.393, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.263, + "defpro": 0.214, + "hppro": 0.41, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.275, + "defpro": 0.222, + "hppro": 0.429, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.287, + "defpro": 0.231, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.3, + "defpro": 0.24, + "hppro": 0.468, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.313, + "defpro": 0.249, + "hppro": 0.488, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.327, + "defpro": 0.258, + "hppro": 0.509, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.341, + "defpro": 0.268, + "hppro": 0.53, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.355, + "defpro": 0.278, + "hppro": 0.553, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.37, + "defpro": 0.288, + "hppro": 0.575, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.385, + "defpro": 0.298, + "hppro": 0.598, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.401, + "defpro": 0.308, + "hppro": 0.622, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.417, + "defpro": 0.318, + "hppro": 0.646, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.433, + "defpro": 0.329, + "hppro": 0.67, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.45, + "defpro": 0.34, + "hppro": 0.696, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.467, + "defpro": 0.351, + "hppro": 0.722, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.485, + "defpro": 0.362, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.503, + "defpro": 0.374, + "hppro": 0.775, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.521, + "defpro": 0.386, + "hppro": 0.803, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.54, + "defpro": 0.398, + "hppro": 0.831, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.559, + "defpro": 0.41, + "hppro": 0.86, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.579, + "defpro": 0.422, + "hppro": 0.889, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.599, + "defpro": 0.434, + "hppro": 0.918, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.619, + "defpro": 0.447, + "hppro": 0.949, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.64, + "defpro": 0.46, + "hppro": 0.98, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.66, + "defpro": 0.473, + "hppro": 1.004, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.68, + "defpro": 0.486, + "hppro": 1.028, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.7, + "defpro": 0.499, + "hppro": 1.052, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.72, + "defpro": 0.512, + "hppro": 1.076, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.74, + "defpro": 0.525, + "hppro": 1.1, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.76, + "defpro": 0.538, + "hppro": 1.124, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.78, + "defpro": 0.551, + "hppro": 1.148, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.8, + "defpro": 0.564, + "hppro": 1.172, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.82, + "defpro": 0.577, + "hppro": 1.196, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.85, + "defpro": 0.6, + "hppro": 1.224, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.87, + "defpro": 0.613, + "hppro": 1.248, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.89, + "defpro": 0.626, + "hppro": 1.272, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.91, + "defpro": 0.639, + "hppro": 1.296, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.93, + "defpro": 0.652, + "hppro": 1.32, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.95, + "defpro": 0.665, + "hppro": 1.344, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3001, + "name": "intr_hero_zhuanshu_22", + "img": 3001, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.97, + "defpro": 0.678, + "hppro": 1.368, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "3002": { + "0": { + "0": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.091, + "defpro": 0.063, + "hppro": 0.123, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.093, + "defpro": 0.066, + "hppro": 0.127, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.095, + "defpro": 0.07, + "hppro": 0.132, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.097, + "defpro": 0.074, + "hppro": 0.138, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.1, + "defpro": 0.078, + "hppro": 0.143, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.103, + "defpro": 0.082, + "hppro": 0.15, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.107, + "defpro": 0.086, + "hppro": 0.156, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.111, + "defpro": 0.09, + "hppro": 0.163, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.115, + "defpro": 0.095, + "hppro": 0.171, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.12, + "defpro": 0.1, + "hppro": 0.18, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.125, + "defpro": 0.105, + "hppro": 0.189, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.131, + "defpro": 0.11, + "hppro": 0.198, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.137, + "defpro": 0.116, + "hppro": 0.209, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.143, + "defpro": 0.122, + "hppro": 0.22, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.15, + "defpro": 0.128, + "hppro": 0.231, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.157, + "defpro": 0.134, + "hppro": 0.243, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.165, + "defpro": 0.14, + "hppro": 0.255, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.173, + "defpro": 0.146, + "hppro": 0.268, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.181, + "defpro": 0.153, + "hppro": 0.282, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.19, + "defpro": 0.16, + "hppro": 0.296, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.199, + "defpro": 0.167, + "hppro": 0.31, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.209, + "defpro": 0.174, + "hppro": 0.326, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.219, + "defpro": 0.182, + "hppro": 0.342, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.229, + "defpro": 0.19, + "hppro": 0.358, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.24, + "defpro": 0.198, + "hppro": 0.375, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.251, + "defpro": 0.206, + "hppro": 0.393, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.263, + "defpro": 0.214, + "hppro": 0.41, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.275, + "defpro": 0.222, + "hppro": 0.429, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.287, + "defpro": 0.231, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.3, + "defpro": 0.24, + "hppro": 0.468, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.313, + "defpro": 0.249, + "hppro": 0.488, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.327, + "defpro": 0.258, + "hppro": 0.509, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.341, + "defpro": 0.268, + "hppro": 0.53, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.355, + "defpro": 0.278, + "hppro": 0.553, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.37, + "defpro": 0.288, + "hppro": 0.575, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.385, + "defpro": 0.298, + "hppro": 0.598, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.401, + "defpro": 0.308, + "hppro": 0.622, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.417, + "defpro": 0.318, + "hppro": 0.646, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.433, + "defpro": 0.329, + "hppro": 0.67, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.45, + "defpro": 0.34, + "hppro": 0.696, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.467, + "defpro": 0.351, + "hppro": 0.722, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.485, + "defpro": 0.362, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.503, + "defpro": 0.374, + "hppro": 0.775, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.521, + "defpro": 0.386, + "hppro": 0.803, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.54, + "defpro": 0.398, + "hppro": 0.831, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.559, + "defpro": 0.41, + "hppro": 0.86, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.579, + "defpro": 0.422, + "hppro": 0.889, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.599, + "defpro": 0.434, + "hppro": 0.918, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.619, + "defpro": 0.447, + "hppro": 0.949, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.64, + "defpro": 0.46, + "hppro": 0.98, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.66, + "defpro": 0.473, + "hppro": 1.004, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.68, + "defpro": 0.486, + "hppro": 1.028, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.7, + "defpro": 0.499, + "hppro": 1.052, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.72, + "defpro": 0.512, + "hppro": 1.076, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.74, + "defpro": 0.525, + "hppro": 1.1, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.76, + "defpro": 0.538, + "hppro": 1.124, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.78, + "defpro": 0.551, + "hppro": 1.148, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.8, + "defpro": 0.564, + "hppro": 1.172, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.82, + "defpro": 0.577, + "hppro": 1.196, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.85, + "defpro": 0.6, + "hppro": 1.224, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.87, + "defpro": 0.613, + "hppro": 1.248, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.89, + "defpro": 0.626, + "hppro": 1.272, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.91, + "defpro": 0.639, + "hppro": 1.296, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.93, + "defpro": 0.652, + "hppro": 1.32, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.95, + "defpro": 0.665, + "hppro": 1.344, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3002, + "name": "intr_hero_zhuanshu_23", + "img": 3002, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.97, + "defpro": 0.678, + "hppro": 1.368, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "3003": { + "0": { + "0": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.063, + "defpro": 0.091, + "hppro": 0.123, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.066, + "defpro": 0.093, + "hppro": 0.127, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.07, + "defpro": 0.095, + "hppro": 0.132, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.074, + "defpro": 0.097, + "hppro": 0.138, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.078, + "defpro": 0.1, + "hppro": 0.143, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.082, + "defpro": 0.103, + "hppro": 0.15, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.086, + "defpro": 0.107, + "hppro": 0.156, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.09, + "defpro": 0.111, + "hppro": 0.163, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.095, + "defpro": 0.115, + "hppro": 0.171, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.1, + "defpro": 0.12, + "hppro": 0.18, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.105, + "defpro": 0.125, + "hppro": 0.189, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.11, + "defpro": 0.131, + "hppro": 0.198, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.116, + "defpro": 0.137, + "hppro": 0.209, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.122, + "defpro": 0.143, + "hppro": 0.22, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.128, + "defpro": 0.15, + "hppro": 0.231, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.134, + "defpro": 0.157, + "hppro": 0.243, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.14, + "defpro": 0.165, + "hppro": 0.255, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.146, + "defpro": 0.173, + "hppro": 0.268, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.153, + "defpro": 0.181, + "hppro": 0.282, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.16, + "defpro": 0.19, + "hppro": 0.296, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.167, + "defpro": 0.199, + "hppro": 0.31, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.174, + "defpro": 0.209, + "hppro": 0.326, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.182, + "defpro": 0.219, + "hppro": 0.342, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.19, + "defpro": 0.229, + "hppro": 0.358, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.198, + "defpro": 0.24, + "hppro": 0.375, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.206, + "defpro": 0.251, + "hppro": 0.393, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.214, + "defpro": 0.263, + "hppro": 0.41, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.222, + "defpro": 0.275, + "hppro": 0.429, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.231, + "defpro": 0.287, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.24, + "defpro": 0.3, + "hppro": 0.468, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.249, + "defpro": 0.313, + "hppro": 0.488, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.258, + "defpro": 0.327, + "hppro": 0.509, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.268, + "defpro": 0.341, + "hppro": 0.53, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.278, + "defpro": 0.355, + "hppro": 0.553, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.288, + "defpro": 0.37, + "hppro": 0.575, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.298, + "defpro": 0.385, + "hppro": 0.598, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.308, + "defpro": 0.401, + "hppro": 0.622, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.318, + "defpro": 0.417, + "hppro": 0.646, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.329, + "defpro": 0.433, + "hppro": 0.67, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.34, + "defpro": 0.45, + "hppro": 0.696, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.351, + "defpro": 0.467, + "hppro": 0.722, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.362, + "defpro": 0.485, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.374, + "defpro": 0.503, + "hppro": 0.775, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.386, + "defpro": 0.521, + "hppro": 0.803, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.398, + "defpro": 0.54, + "hppro": 0.831, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.41, + "defpro": 0.559, + "hppro": 0.86, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.422, + "defpro": 0.579, + "hppro": 0.889, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.434, + "defpro": 0.599, + "hppro": 0.918, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.447, + "defpro": 0.619, + "hppro": 0.949, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.46, + "defpro": 0.64, + "hppro": 0.98, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.473, + "defpro": 0.66, + "hppro": 1.004, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.486, + "defpro": 0.68, + "hppro": 1.028, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.499, + "defpro": 0.7, + "hppro": 1.052, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.512, + "defpro": 0.72, + "hppro": 1.076, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.525, + "defpro": 0.74, + "hppro": 1.1, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.538, + "defpro": 0.76, + "hppro": 1.124, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.551, + "defpro": 0.78, + "hppro": 1.148, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.564, + "defpro": 0.8, + "hppro": 1.172, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.577, + "defpro": 0.82, + "hppro": 1.196, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.6, + "defpro": 0.85, + "hppro": 1.224, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.613, + "defpro": 0.87, + "hppro": 1.248, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.626, + "defpro": 0.89, + "hppro": 1.272, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.639, + "defpro": 0.91, + "hppro": 1.296, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.652, + "defpro": 0.93, + "hppro": 1.32, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.665, + "defpro": 0.95, + "hppro": 1.344, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3003, + "name": "intr_hero_zhuanshu_24", + "img": 3003, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.678, + "defpro": 0.97, + "hppro": 1.368, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "3004": { + "0": { + "0": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.091, + "defpro": 0.063, + "hppro": 0.123, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.093, + "defpro": 0.066, + "hppro": 0.127, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.095, + "defpro": 0.07, + "hppro": 0.132, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.097, + "defpro": 0.074, + "hppro": 0.138, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.1, + "defpro": 0.078, + "hppro": 0.143, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.103, + "defpro": 0.082, + "hppro": 0.15, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.107, + "defpro": 0.086, + "hppro": 0.156, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.111, + "defpro": 0.09, + "hppro": 0.163, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.115, + "defpro": 0.095, + "hppro": 0.171, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.12, + "defpro": 0.1, + "hppro": 0.18, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.125, + "defpro": 0.105, + "hppro": 0.189, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.131, + "defpro": 0.11, + "hppro": 0.198, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.137, + "defpro": 0.116, + "hppro": 0.209, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.143, + "defpro": 0.122, + "hppro": 0.22, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.15, + "defpro": 0.128, + "hppro": 0.231, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.157, + "defpro": 0.134, + "hppro": 0.243, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.165, + "defpro": 0.14, + "hppro": 0.255, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.173, + "defpro": 0.146, + "hppro": 0.268, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.181, + "defpro": 0.153, + "hppro": 0.282, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.19, + "defpro": 0.16, + "hppro": 0.296, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.199, + "defpro": 0.167, + "hppro": 0.31, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.209, + "defpro": 0.174, + "hppro": 0.326, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.219, + "defpro": 0.182, + "hppro": 0.342, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.229, + "defpro": 0.19, + "hppro": 0.358, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.24, + "defpro": 0.198, + "hppro": 0.375, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.251, + "defpro": 0.206, + "hppro": 0.393, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.263, + "defpro": 0.214, + "hppro": 0.41, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.275, + "defpro": 0.222, + "hppro": 0.429, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.287, + "defpro": 0.231, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.3, + "defpro": 0.24, + "hppro": 0.468, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.313, + "defpro": 0.249, + "hppro": 0.488, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.327, + "defpro": 0.258, + "hppro": 0.509, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.341, + "defpro": 0.268, + "hppro": 0.53, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.355, + "defpro": 0.278, + "hppro": 0.553, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.37, + "defpro": 0.288, + "hppro": 0.575, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.385, + "defpro": 0.298, + "hppro": 0.598, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.401, + "defpro": 0.308, + "hppro": 0.622, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.417, + "defpro": 0.318, + "hppro": 0.646, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.433, + "defpro": 0.329, + "hppro": 0.67, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.45, + "defpro": 0.34, + "hppro": 0.696, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.467, + "defpro": 0.351, + "hppro": 0.722, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.485, + "defpro": 0.362, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.503, + "defpro": 0.374, + "hppro": 0.775, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.521, + "defpro": 0.386, + "hppro": 0.803, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.54, + "defpro": 0.398, + "hppro": 0.831, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.559, + "defpro": 0.41, + "hppro": 0.86, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.579, + "defpro": 0.422, + "hppro": 0.889, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.599, + "defpro": 0.434, + "hppro": 0.918, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.619, + "defpro": 0.447, + "hppro": 0.949, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.64, + "defpro": 0.46, + "hppro": 0.98, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.66, + "defpro": 0.473, + "hppro": 1.004, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.68, + "defpro": 0.486, + "hppro": 1.028, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.7, + "defpro": 0.499, + "hppro": 1.052, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.72, + "defpro": 0.512, + "hppro": 1.076, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.74, + "defpro": 0.525, + "hppro": 1.1, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.76, + "defpro": 0.538, + "hppro": 1.124, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.78, + "defpro": 0.551, + "hppro": 1.148, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.8, + "defpro": 0.564, + "hppro": 1.172, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.82, + "defpro": 0.577, + "hppro": 1.196, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.85, + "defpro": 0.6, + "hppro": 1.224, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.87, + "defpro": 0.613, + "hppro": 1.248, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.89, + "defpro": 0.626, + "hppro": 1.272, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.91, + "defpro": 0.639, + "hppro": 1.296, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.93, + "defpro": 0.652, + "hppro": 1.32, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.95, + "defpro": 0.665, + "hppro": 1.344, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3004, + "name": "intr_hero_zhuanshu_25", + "img": 3004, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.97, + "defpro": 0.678, + "hppro": 1.368, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "3005": { + "0": { + "0": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.07, + "defpro": 0.07, + "hppro": 0.154, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.072, + "defpro": 0.072, + "hppro": 0.159, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.075, + "defpro": 0.075, + "hppro": 0.165, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.078, + "defpro": 0.078, + "hppro": 0.172, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.081, + "defpro": 0.081, + "hppro": 0.179, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.084, + "defpro": 0.084, + "hppro": 0.187, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.088, + "defpro": 0.088, + "hppro": 0.195, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.091, + "defpro": 0.091, + "hppro": 0.204, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.095, + "defpro": 0.095, + "hppro": 0.214, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.1, + "defpro": 0.1, + "hppro": 0.225, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.105, + "defpro": 0.105, + "hppro": 0.236, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.11, + "defpro": 0.11, + "hppro": 0.248, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.115, + "defpro": 0.115, + "hppro": 0.261, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.12, + "defpro": 0.12, + "hppro": 0.275, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.126, + "defpro": 0.126, + "hppro": 0.289, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.132, + "defpro": 0.132, + "hppro": 0.304, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.139, + "defpro": 0.139, + "hppro": 0.319, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.145, + "defpro": 0.145, + "hppro": 0.335, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.152, + "defpro": 0.152, + "hppro": 0.352, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.159, + "defpro": 0.159, + "hppro": 0.37, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.166, + "defpro": 0.166, + "hppro": 0.388, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.174, + "defpro": 0.174, + "hppro": 0.407, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.182, + "defpro": 0.182, + "hppro": 0.427, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.19, + "defpro": 0.19, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.199, + "defpro": 0.199, + "hppro": 0.469, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.208, + "defpro": 0.208, + "hppro": 0.491, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.217, + "defpro": 0.217, + "hppro": 0.513, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.226, + "defpro": 0.226, + "hppro": 0.536, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.235, + "defpro": 0.235, + "hppro": 0.56, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.245, + "defpro": 0.245, + "hppro": 0.585, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.255, + "defpro": 0.255, + "hppro": 0.61, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.266, + "defpro": 0.266, + "hppro": 0.636, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.277, + "defpro": 0.277, + "hppro": 0.663, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.288, + "defpro": 0.288, + "hppro": 0.691, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.299, + "defpro": 0.299, + "hppro": 0.719, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.31, + "defpro": 0.31, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.322, + "defpro": 0.322, + "hppro": 0.777, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.334, + "defpro": 0.334, + "hppro": 0.807, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.346, + "defpro": 0.346, + "hppro": 0.838, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.359, + "defpro": 0.359, + "hppro": 0.87, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.372, + "defpro": 0.372, + "hppro": 0.902, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.385, + "defpro": 0.385, + "hppro": 0.935, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.399, + "defpro": 0.399, + "hppro": 0.969, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.412, + "defpro": 0.412, + "hppro": 1.004, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.426, + "defpro": 0.426, + "hppro": 1.039, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.44, + "defpro": 0.44, + "hppro": 1.075, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.455, + "defpro": 0.455, + "hppro": 1.111, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.47, + "defpro": 0.47, + "hppro": 1.148, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.485, + "defpro": 0.485, + "hppro": 1.186, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.5, + "defpro": 0.5, + "hppro": 1.225, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.515, + "defpro": 0.515, + "hppro": 1.255, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.53, + "defpro": 0.53, + "hppro": 1.285, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.545, + "defpro": 0.545, + "hppro": 1.315, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.56, + "defpro": 0.56, + "hppro": 1.345, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.575, + "defpro": 0.575, + "hppro": 1.375, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.59, + "defpro": 0.59, + "hppro": 1.405, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.605, + "defpro": 0.605, + "hppro": 1.435, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.62, + "defpro": 0.62, + "hppro": 1.465, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.635, + "defpro": 0.635, + "hppro": 1.495, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.659, + "defpro": 0.659, + "hppro": 1.53, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.674, + "defpro": 0.674, + "hppro": 1.56, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.689, + "defpro": 0.689, + "hppro": 1.59, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.704, + "defpro": 0.704, + "hppro": 1.62, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.719, + "defpro": 0.719, + "hppro": 1.65, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.734, + "defpro": 0.734, + "hppro": 1.68, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3005, + "name": "intr_hero_zhuanshu_26", + "img": 3005, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.749, + "defpro": 0.749, + "hppro": 1.71, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "3006": { + "0": { + "0": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.063, + "defpro": 0.091, + "hppro": 0.123, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.066, + "defpro": 0.093, + "hppro": 0.127, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.07, + "defpro": 0.095, + "hppro": 0.132, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.074, + "defpro": 0.097, + "hppro": 0.138, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.078, + "defpro": 0.1, + "hppro": 0.143, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.082, + "defpro": 0.103, + "hppro": 0.15, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.086, + "defpro": 0.107, + "hppro": 0.156, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.09, + "defpro": 0.111, + "hppro": 0.163, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.095, + "defpro": 0.115, + "hppro": 0.171, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.1, + "defpro": 0.12, + "hppro": 0.18, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.105, + "defpro": 0.125, + "hppro": 0.189, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.11, + "defpro": 0.131, + "hppro": 0.198, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.116, + "defpro": 0.137, + "hppro": 0.209, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.122, + "defpro": 0.143, + "hppro": 0.22, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.128, + "defpro": 0.15, + "hppro": 0.231, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.134, + "defpro": 0.157, + "hppro": 0.243, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.14, + "defpro": 0.165, + "hppro": 0.255, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.146, + "defpro": 0.173, + "hppro": 0.268, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.153, + "defpro": 0.181, + "hppro": 0.282, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.16, + "defpro": 0.19, + "hppro": 0.296, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.167, + "defpro": 0.199, + "hppro": 0.31, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.174, + "defpro": 0.209, + "hppro": 0.326, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.182, + "defpro": 0.219, + "hppro": 0.342, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.19, + "defpro": 0.229, + "hppro": 0.358, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.198, + "defpro": 0.24, + "hppro": 0.375, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.206, + "defpro": 0.251, + "hppro": 0.393, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.214, + "defpro": 0.263, + "hppro": 0.41, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.222, + "defpro": 0.275, + "hppro": 0.429, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.231, + "defpro": 0.287, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.24, + "defpro": 0.3, + "hppro": 0.468, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.249, + "defpro": 0.313, + "hppro": 0.488, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.258, + "defpro": 0.327, + "hppro": 0.509, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.268, + "defpro": 0.341, + "hppro": 0.53, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.278, + "defpro": 0.355, + "hppro": 0.553, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.288, + "defpro": 0.37, + "hppro": 0.575, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.298, + "defpro": 0.385, + "hppro": 0.598, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.308, + "defpro": 0.401, + "hppro": 0.622, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.318, + "defpro": 0.417, + "hppro": 0.646, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.329, + "defpro": 0.433, + "hppro": 0.67, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.34, + "defpro": 0.45, + "hppro": 0.696, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.351, + "defpro": 0.467, + "hppro": 0.722, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.362, + "defpro": 0.485, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.374, + "defpro": 0.503, + "hppro": 0.775, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.386, + "defpro": 0.521, + "hppro": 0.803, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.398, + "defpro": 0.54, + "hppro": 0.831, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.41, + "defpro": 0.559, + "hppro": 0.86, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.422, + "defpro": 0.579, + "hppro": 0.889, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.434, + "defpro": 0.599, + "hppro": 0.918, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.447, + "defpro": 0.619, + "hppro": 0.949, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.46, + "defpro": 0.64, + "hppro": 0.98, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.473, + "defpro": 0.66, + "hppro": 1.004, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.486, + "defpro": 0.68, + "hppro": 1.028, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.499, + "defpro": 0.7, + "hppro": 1.052, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.512, + "defpro": 0.72, + "hppro": 1.076, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.525, + "defpro": 0.74, + "hppro": 1.1, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.538, + "defpro": 0.76, + "hppro": 1.124, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.551, + "defpro": 0.78, + "hppro": 1.148, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.564, + "defpro": 0.8, + "hppro": 1.172, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.577, + "defpro": 0.82, + "hppro": 1.196, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.6, + "defpro": 0.85, + "hppro": 1.224, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.613, + "defpro": 0.87, + "hppro": 1.248, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.626, + "defpro": 0.89, + "hppro": 1.272, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.639, + "defpro": 0.91, + "hppro": 1.296, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.652, + "defpro": 0.93, + "hppro": 1.32, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.665, + "defpro": 0.95, + "hppro": 1.344, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3006, + "name": "intr_hero_zhuanshu_27", + "img": 3006, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.678, + "defpro": 0.97, + "hppro": 1.368, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "3007": { + "0": { + "0": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.07, + "defpro": 0.07, + "hppro": 0.154, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.072, + "defpro": 0.072, + "hppro": 0.159, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.075, + "defpro": 0.075, + "hppro": 0.165, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.078, + "defpro": 0.078, + "hppro": 0.172, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.081, + "defpro": 0.081, + "hppro": 0.179, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.084, + "defpro": 0.084, + "hppro": 0.187, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.088, + "defpro": 0.088, + "hppro": 0.195, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.091, + "defpro": 0.091, + "hppro": 0.204, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.095, + "defpro": 0.095, + "hppro": 0.214, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.1, + "defpro": 0.1, + "hppro": 0.225, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.105, + "defpro": 0.105, + "hppro": 0.236, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.11, + "defpro": 0.11, + "hppro": 0.248, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.115, + "defpro": 0.115, + "hppro": 0.261, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.12, + "defpro": 0.12, + "hppro": 0.275, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.126, + "defpro": 0.126, + "hppro": 0.289, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.132, + "defpro": 0.132, + "hppro": 0.304, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.139, + "defpro": 0.139, + "hppro": 0.319, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.145, + "defpro": 0.145, + "hppro": 0.335, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.152, + "defpro": 0.152, + "hppro": 0.352, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.159, + "defpro": 0.159, + "hppro": 0.37, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.166, + "defpro": 0.166, + "hppro": 0.388, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.174, + "defpro": 0.174, + "hppro": 0.407, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.182, + "defpro": 0.182, + "hppro": 0.427, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.19, + "defpro": 0.19, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.199, + "defpro": 0.199, + "hppro": 0.469, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.208, + "defpro": 0.208, + "hppro": 0.491, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.217, + "defpro": 0.217, + "hppro": 0.513, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.226, + "defpro": 0.226, + "hppro": 0.536, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.235, + "defpro": 0.235, + "hppro": 0.56, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.245, + "defpro": 0.245, + "hppro": 0.585, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.255, + "defpro": 0.255, + "hppro": 0.61, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.266, + "defpro": 0.266, + "hppro": 0.636, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.277, + "defpro": 0.277, + "hppro": 0.663, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.288, + "defpro": 0.288, + "hppro": 0.691, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.299, + "defpro": 0.299, + "hppro": 0.719, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.31, + "defpro": 0.31, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.322, + "defpro": 0.322, + "hppro": 0.777, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.334, + "defpro": 0.334, + "hppro": 0.807, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.346, + "defpro": 0.346, + "hppro": 0.838, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.359, + "defpro": 0.359, + "hppro": 0.87, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.372, + "defpro": 0.372, + "hppro": 0.902, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.385, + "defpro": 0.385, + "hppro": 0.935, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.399, + "defpro": 0.399, + "hppro": 0.969, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.412, + "defpro": 0.412, + "hppro": 1.004, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.426, + "defpro": 0.426, + "hppro": 1.039, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.44, + "defpro": 0.44, + "hppro": 1.075, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.455, + "defpro": 0.455, + "hppro": 1.111, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.47, + "defpro": 0.47, + "hppro": 1.148, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.485, + "defpro": 0.485, + "hppro": 1.186, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.5, + "defpro": 0.5, + "hppro": 1.225, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.515, + "defpro": 0.515, + "hppro": 1.255, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.53, + "defpro": 0.53, + "hppro": 1.285, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.545, + "defpro": 0.545, + "hppro": 1.315, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.56, + "defpro": 0.56, + "hppro": 1.345, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.575, + "defpro": 0.575, + "hppro": 1.375, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.59, + "defpro": 0.59, + "hppro": 1.405, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.605, + "defpro": 0.605, + "hppro": 1.435, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.62, + "defpro": 0.62, + "hppro": 1.465, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.635, + "defpro": 0.635, + "hppro": 1.495, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.659, + "defpro": 0.659, + "hppro": 1.53, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.674, + "defpro": 0.674, + "hppro": 1.56, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.689, + "defpro": 0.689, + "hppro": 1.59, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.704, + "defpro": 0.704, + "hppro": 1.62, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.719, + "defpro": 0.719, + "hppro": 1.65, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.734, + "defpro": 0.734, + "hppro": 1.68, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3007, + "name": "intr_hero_zhuanshu_28", + "img": 3007, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.749, + "defpro": 0.749, + "hppro": 1.71, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "3008": { + "0": { + "0": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.091, + "defpro": 0.063, + "hppro": 0.123, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.093, + "defpro": 0.066, + "hppro": 0.127, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.095, + "defpro": 0.07, + "hppro": 0.132, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.097, + "defpro": 0.074, + "hppro": 0.138, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.1, + "defpro": 0.078, + "hppro": 0.143, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.103, + "defpro": 0.082, + "hppro": 0.15, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.107, + "defpro": 0.086, + "hppro": 0.156, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.111, + "defpro": 0.09, + "hppro": 0.163, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.115, + "defpro": 0.095, + "hppro": 0.171, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.12, + "defpro": 0.1, + "hppro": 0.18, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.125, + "defpro": 0.105, + "hppro": 0.189, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.131, + "defpro": 0.11, + "hppro": 0.198, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.137, + "defpro": 0.116, + "hppro": 0.209, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.143, + "defpro": 0.122, + "hppro": 0.22, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.15, + "defpro": 0.128, + "hppro": 0.231, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.157, + "defpro": 0.134, + "hppro": 0.243, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.165, + "defpro": 0.14, + "hppro": 0.255, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.173, + "defpro": 0.146, + "hppro": 0.268, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.181, + "defpro": 0.153, + "hppro": 0.282, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.19, + "defpro": 0.16, + "hppro": 0.296, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.199, + "defpro": 0.167, + "hppro": 0.31, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.209, + "defpro": 0.174, + "hppro": 0.326, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.219, + "defpro": 0.182, + "hppro": 0.342, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.229, + "defpro": 0.19, + "hppro": 0.358, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.24, + "defpro": 0.198, + "hppro": 0.375, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.251, + "defpro": 0.206, + "hppro": 0.393, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.263, + "defpro": 0.214, + "hppro": 0.41, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.275, + "defpro": 0.222, + "hppro": 0.429, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.287, + "defpro": 0.231, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.3, + "defpro": 0.24, + "hppro": 0.468, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.313, + "defpro": 0.249, + "hppro": 0.488, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.327, + "defpro": 0.258, + "hppro": 0.509, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.341, + "defpro": 0.268, + "hppro": 0.53, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.355, + "defpro": 0.278, + "hppro": 0.553, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.37, + "defpro": 0.288, + "hppro": 0.575, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.385, + "defpro": 0.298, + "hppro": 0.598, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.401, + "defpro": 0.308, + "hppro": 0.622, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.417, + "defpro": 0.318, + "hppro": 0.646, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.433, + "defpro": 0.329, + "hppro": 0.67, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.45, + "defpro": 0.34, + "hppro": 0.696, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.467, + "defpro": 0.351, + "hppro": 0.722, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.485, + "defpro": 0.362, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.503, + "defpro": 0.374, + "hppro": 0.775, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.521, + "defpro": 0.386, + "hppro": 0.803, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.54, + "defpro": 0.398, + "hppro": 0.831, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.559, + "defpro": 0.41, + "hppro": 0.86, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.579, + "defpro": 0.422, + "hppro": 0.889, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.599, + "defpro": 0.434, + "hppro": 0.918, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.619, + "defpro": 0.447, + "hppro": 0.949, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.64, + "defpro": 0.46, + "hppro": 0.98, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.66, + "defpro": 0.473, + "hppro": 1.004, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.68, + "defpro": 0.486, + "hppro": 1.028, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.7, + "defpro": 0.499, + "hppro": 1.052, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.72, + "defpro": 0.512, + "hppro": 1.076, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.74, + "defpro": 0.525, + "hppro": 1.1, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.76, + "defpro": 0.538, + "hppro": 1.124, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.78, + "defpro": 0.551, + "hppro": 1.148, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.8, + "defpro": 0.564, + "hppro": 1.172, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.82, + "defpro": 0.577, + "hppro": 1.196, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.85, + "defpro": 0.6, + "hppro": 1.224, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.87, + "defpro": 0.613, + "hppro": 1.248, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.89, + "defpro": 0.626, + "hppro": 1.272, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.91, + "defpro": 0.639, + "hppro": 1.296, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.93, + "defpro": 0.652, + "hppro": 1.32, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.95, + "defpro": 0.665, + "hppro": 1.344, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3008, + "name": "intr_hero_zhuanshu_29", + "img": 3008, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.97, + "defpro": 0.678, + "hppro": 1.368, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "3009": { + "0": { + "0": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.07, + "defpro": 0.07, + "hppro": 0.154, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.072, + "defpro": 0.072, + "hppro": 0.159, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.075, + "defpro": 0.075, + "hppro": 0.165, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.078, + "defpro": 0.078, + "hppro": 0.172, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.081, + "defpro": 0.081, + "hppro": 0.179, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.084, + "defpro": 0.084, + "hppro": 0.187, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.088, + "defpro": 0.088, + "hppro": 0.195, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.091, + "defpro": 0.091, + "hppro": 0.204, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.095, + "defpro": 0.095, + "hppro": 0.214, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.1, + "defpro": 0.1, + "hppro": 0.225, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.105, + "defpro": 0.105, + "hppro": 0.236, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.11, + "defpro": 0.11, + "hppro": 0.248, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.115, + "defpro": 0.115, + "hppro": 0.261, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.12, + "defpro": 0.12, + "hppro": 0.275, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.126, + "defpro": 0.126, + "hppro": 0.289, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.132, + "defpro": 0.132, + "hppro": 0.304, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.139, + "defpro": 0.139, + "hppro": 0.319, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.145, + "defpro": 0.145, + "hppro": 0.335, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.152, + "defpro": 0.152, + "hppro": 0.352, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.159, + "defpro": 0.159, + "hppro": 0.37, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.166, + "defpro": 0.166, + "hppro": 0.388, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.174, + "defpro": 0.174, + "hppro": 0.407, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.182, + "defpro": 0.182, + "hppro": 0.427, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.19, + "defpro": 0.19, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.199, + "defpro": 0.199, + "hppro": 0.469, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.208, + "defpro": 0.208, + "hppro": 0.491, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.217, + "defpro": 0.217, + "hppro": 0.513, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.226, + "defpro": 0.226, + "hppro": 0.536, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.235, + "defpro": 0.235, + "hppro": 0.56, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.245, + "defpro": 0.245, + "hppro": 0.585, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.255, + "defpro": 0.255, + "hppro": 0.61, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.266, + "defpro": 0.266, + "hppro": 0.636, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.277, + "defpro": 0.277, + "hppro": 0.663, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.288, + "defpro": 0.288, + "hppro": 0.691, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.299, + "defpro": 0.299, + "hppro": 0.719, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.31, + "defpro": 0.31, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.322, + "defpro": 0.322, + "hppro": 0.777, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.334, + "defpro": 0.334, + "hppro": 0.807, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.346, + "defpro": 0.346, + "hppro": 0.838, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.359, + "defpro": 0.359, + "hppro": 0.87, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.372, + "defpro": 0.372, + "hppro": 0.902, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.385, + "defpro": 0.385, + "hppro": 0.935, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.399, + "defpro": 0.399, + "hppro": 0.969, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.412, + "defpro": 0.412, + "hppro": 1.004, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.426, + "defpro": 0.426, + "hppro": 1.039, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.44, + "defpro": 0.44, + "hppro": 1.075, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.455, + "defpro": 0.455, + "hppro": 1.111, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.47, + "defpro": 0.47, + "hppro": 1.148, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.485, + "defpro": 0.485, + "hppro": 1.186, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.5, + "defpro": 0.5, + "hppro": 1.225, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.515, + "defpro": 0.515, + "hppro": 1.255, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.53, + "defpro": 0.53, + "hppro": 1.285, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.545, + "defpro": 0.545, + "hppro": 1.315, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.56, + "defpro": 0.56, + "hppro": 1.345, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.575, + "defpro": 0.575, + "hppro": 1.375, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.59, + "defpro": 0.59, + "hppro": 1.405, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.605, + "defpro": 0.605, + "hppro": 1.435, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.62, + "defpro": 0.62, + "hppro": 1.465, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.635, + "defpro": 0.635, + "hppro": 1.495, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.659, + "defpro": 0.659, + "hppro": 1.53, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.674, + "defpro": 0.674, + "hppro": 1.56, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.689, + "defpro": 0.689, + "hppro": 1.59, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.704, + "defpro": 0.704, + "hppro": 1.62, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.719, + "defpro": 0.719, + "hppro": 1.65, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.734, + "defpro": 0.734, + "hppro": 1.68, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3009, + "name": "intr_hero_zhuanshu_30", + "img": 3009, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.749, + "defpro": 0.749, + "hppro": 1.71, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "3010": { + "0": { + "0": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.063, + "defpro": 0.091, + "hppro": 0.123, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.066, + "defpro": 0.093, + "hppro": 0.127, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.07, + "defpro": 0.095, + "hppro": 0.132, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.074, + "defpro": 0.097, + "hppro": 0.138, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.078, + "defpro": 0.1, + "hppro": 0.143, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.082, + "defpro": 0.103, + "hppro": 0.15, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.086, + "defpro": 0.107, + "hppro": 0.156, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.09, + "defpro": 0.111, + "hppro": 0.163, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.095, + "defpro": 0.115, + "hppro": 0.171, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.1, + "defpro": 0.12, + "hppro": 0.18, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.105, + "defpro": 0.125, + "hppro": 0.189, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.11, + "defpro": 0.131, + "hppro": 0.198, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.116, + "defpro": 0.137, + "hppro": 0.209, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.122, + "defpro": 0.143, + "hppro": 0.22, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.128, + "defpro": 0.15, + "hppro": 0.231, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.134, + "defpro": 0.157, + "hppro": 0.243, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.14, + "defpro": 0.165, + "hppro": 0.255, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.146, + "defpro": 0.173, + "hppro": 0.268, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.153, + "defpro": 0.181, + "hppro": 0.282, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.16, + "defpro": 0.19, + "hppro": 0.296, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.167, + "defpro": 0.199, + "hppro": 0.31, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.174, + "defpro": 0.209, + "hppro": 0.326, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.182, + "defpro": 0.219, + "hppro": 0.342, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.19, + "defpro": 0.229, + "hppro": 0.358, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.198, + "defpro": 0.24, + "hppro": 0.375, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.206, + "defpro": 0.251, + "hppro": 0.393, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.214, + "defpro": 0.263, + "hppro": 0.41, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.222, + "defpro": 0.275, + "hppro": 0.429, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.231, + "defpro": 0.287, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.24, + "defpro": 0.3, + "hppro": 0.468, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.249, + "defpro": 0.313, + "hppro": 0.488, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.258, + "defpro": 0.327, + "hppro": 0.509, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.268, + "defpro": 0.341, + "hppro": 0.53, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.278, + "defpro": 0.355, + "hppro": 0.553, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.288, + "defpro": 0.37, + "hppro": 0.575, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.298, + "defpro": 0.385, + "hppro": 0.598, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.308, + "defpro": 0.401, + "hppro": 0.622, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.318, + "defpro": 0.417, + "hppro": 0.646, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.329, + "defpro": 0.433, + "hppro": 0.67, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.34, + "defpro": 0.45, + "hppro": 0.696, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.351, + "defpro": 0.467, + "hppro": 0.722, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.362, + "defpro": 0.485, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.374, + "defpro": 0.503, + "hppro": 0.775, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.386, + "defpro": 0.521, + "hppro": 0.803, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.398, + "defpro": 0.54, + "hppro": 0.831, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.41, + "defpro": 0.559, + "hppro": 0.86, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.422, + "defpro": 0.579, + "hppro": 0.889, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.434, + "defpro": 0.599, + "hppro": 0.918, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.447, + "defpro": 0.619, + "hppro": 0.949, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.46, + "defpro": 0.64, + "hppro": 0.98, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.473, + "defpro": 0.66, + "hppro": 1.004, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.486, + "defpro": 0.68, + "hppro": 1.028, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.499, + "defpro": 0.7, + "hppro": 1.052, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.512, + "defpro": 0.72, + "hppro": 1.076, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.525, + "defpro": 0.74, + "hppro": 1.1, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.538, + "defpro": 0.76, + "hppro": 1.124, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.551, + "defpro": 0.78, + "hppro": 1.148, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.564, + "defpro": 0.8, + "hppro": 1.172, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.577, + "defpro": 0.82, + "hppro": 1.196, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.6, + "defpro": 0.85, + "hppro": 1.224, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.613, + "defpro": 0.87, + "hppro": 1.248, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.626, + "defpro": 0.89, + "hppro": 1.272, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.639, + "defpro": 0.91, + "hppro": 1.296, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.652, + "defpro": 0.93, + "hppro": 1.32, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.665, + "defpro": 0.95, + "hppro": 1.344, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3010, + "name": "intr_hero_zhuanshu_31", + "img": 3010, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.678, + "defpro": 0.97, + "hppro": 1.368, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "3011": { + "0": { + "0": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.063, + "defpro": 0.091, + "hppro": 0.123, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.066, + "defpro": 0.093, + "hppro": 0.127, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.07, + "defpro": 0.095, + "hppro": 0.132, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.074, + "defpro": 0.097, + "hppro": 0.138, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.078, + "defpro": 0.1, + "hppro": 0.143, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.082, + "defpro": 0.103, + "hppro": 0.15, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.086, + "defpro": 0.107, + "hppro": 0.156, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.09, + "defpro": 0.111, + "hppro": 0.163, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.095, + "defpro": 0.115, + "hppro": 0.171, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.1, + "defpro": 0.12, + "hppro": 0.18, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.105, + "defpro": 0.125, + "hppro": 0.189, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.11, + "defpro": 0.131, + "hppro": 0.198, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.116, + "defpro": 0.137, + "hppro": 0.209, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.122, + "defpro": 0.143, + "hppro": 0.22, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.128, + "defpro": 0.15, + "hppro": 0.231, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.134, + "defpro": 0.157, + "hppro": 0.243, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.14, + "defpro": 0.165, + "hppro": 0.255, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.146, + "defpro": 0.173, + "hppro": 0.268, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.153, + "defpro": 0.181, + "hppro": 0.282, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.16, + "defpro": 0.19, + "hppro": 0.296, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.167, + "defpro": 0.199, + "hppro": 0.31, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.174, + "defpro": 0.209, + "hppro": 0.326, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.182, + "defpro": 0.219, + "hppro": 0.342, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.19, + "defpro": 0.229, + "hppro": 0.358, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.198, + "defpro": 0.24, + "hppro": 0.375, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.206, + "defpro": 0.251, + "hppro": 0.393, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.214, + "defpro": 0.263, + "hppro": 0.41, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.222, + "defpro": 0.275, + "hppro": 0.429, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.231, + "defpro": 0.287, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.24, + "defpro": 0.3, + "hppro": 0.468, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.249, + "defpro": 0.313, + "hppro": 0.488, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.258, + "defpro": 0.327, + "hppro": 0.509, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.268, + "defpro": 0.341, + "hppro": 0.53, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.278, + "defpro": 0.355, + "hppro": 0.553, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.288, + "defpro": 0.37, + "hppro": 0.575, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.298, + "defpro": 0.385, + "hppro": 0.598, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.308, + "defpro": 0.401, + "hppro": 0.622, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.318, + "defpro": 0.417, + "hppro": 0.646, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.329, + "defpro": 0.433, + "hppro": 0.67, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.34, + "defpro": 0.45, + "hppro": 0.696, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.351, + "defpro": 0.467, + "hppro": 0.722, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.362, + "defpro": 0.485, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.374, + "defpro": 0.503, + "hppro": 0.775, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.386, + "defpro": 0.521, + "hppro": 0.803, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.398, + "defpro": 0.54, + "hppro": 0.831, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.41, + "defpro": 0.559, + "hppro": 0.86, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.422, + "defpro": 0.579, + "hppro": 0.889, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.434, + "defpro": 0.599, + "hppro": 0.918, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.447, + "defpro": 0.619, + "hppro": 0.949, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.46, + "defpro": 0.64, + "hppro": 0.98, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.473, + "defpro": 0.66, + "hppro": 1.004, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.486, + "defpro": 0.68, + "hppro": 1.028, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.499, + "defpro": 0.7, + "hppro": 1.052, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.512, + "defpro": 0.72, + "hppro": 1.076, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.525, + "defpro": 0.74, + "hppro": 1.1, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.538, + "defpro": 0.76, + "hppro": 1.124, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.551, + "defpro": 0.78, + "hppro": 1.148, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.564, + "defpro": 0.8, + "hppro": 1.172, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.577, + "defpro": 0.82, + "hppro": 1.196, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.6, + "defpro": 0.85, + "hppro": 1.224, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.613, + "defpro": 0.87, + "hppro": 1.248, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.626, + "defpro": 0.89, + "hppro": 1.272, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.639, + "defpro": 0.91, + "hppro": 1.296, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.652, + "defpro": 0.93, + "hppro": 1.32, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.665, + "defpro": 0.95, + "hppro": 1.344, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3011, + "name": "intr_hero_zhuanshu_32", + "img": 3011, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.678, + "defpro": 0.97, + "hppro": 1.368, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "3012": { + "0": { + "0": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.091, + "defpro": 0.063, + "hppro": 0.123, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.093, + "defpro": 0.066, + "hppro": 0.127, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.095, + "defpro": 0.07, + "hppro": 0.132, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.097, + "defpro": 0.074, + "hppro": 0.138, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.1, + "defpro": 0.078, + "hppro": 0.143, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.103, + "defpro": 0.082, + "hppro": 0.15, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.107, + "defpro": 0.086, + "hppro": 0.156, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.111, + "defpro": 0.09, + "hppro": 0.163, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.115, + "defpro": 0.095, + "hppro": 0.171, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.12, + "defpro": 0.1, + "hppro": 0.18, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.125, + "defpro": 0.105, + "hppro": 0.189, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.131, + "defpro": 0.11, + "hppro": 0.198, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.137, + "defpro": 0.116, + "hppro": 0.209, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.143, + "defpro": 0.122, + "hppro": 0.22, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.15, + "defpro": 0.128, + "hppro": 0.231, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.157, + "defpro": 0.134, + "hppro": 0.243, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.165, + "defpro": 0.14, + "hppro": 0.255, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.173, + "defpro": 0.146, + "hppro": 0.268, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.181, + "defpro": 0.153, + "hppro": 0.282, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.19, + "defpro": 0.16, + "hppro": 0.296, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.199, + "defpro": 0.167, + "hppro": 0.31, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.209, + "defpro": 0.174, + "hppro": 0.326, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.219, + "defpro": 0.182, + "hppro": 0.342, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.229, + "defpro": 0.19, + "hppro": 0.358, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.24, + "defpro": 0.198, + "hppro": 0.375, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.251, + "defpro": 0.206, + "hppro": 0.393, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.263, + "defpro": 0.214, + "hppro": 0.41, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.275, + "defpro": 0.222, + "hppro": 0.429, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.287, + "defpro": 0.231, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.3, + "defpro": 0.24, + "hppro": 0.468, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.313, + "defpro": 0.249, + "hppro": 0.488, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.327, + "defpro": 0.258, + "hppro": 0.509, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.341, + "defpro": 0.268, + "hppro": 0.53, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.355, + "defpro": 0.278, + "hppro": 0.553, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.37, + "defpro": 0.288, + "hppro": 0.575, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.385, + "defpro": 0.298, + "hppro": 0.598, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.401, + "defpro": 0.308, + "hppro": 0.622, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.417, + "defpro": 0.318, + "hppro": 0.646, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.433, + "defpro": 0.329, + "hppro": 0.67, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.45, + "defpro": 0.34, + "hppro": 0.696, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.467, + "defpro": 0.351, + "hppro": 0.722, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.485, + "defpro": 0.362, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.503, + "defpro": 0.374, + "hppro": 0.775, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.521, + "defpro": 0.386, + "hppro": 0.803, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.54, + "defpro": 0.398, + "hppro": 0.831, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.559, + "defpro": 0.41, + "hppro": 0.86, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.579, + "defpro": 0.422, + "hppro": 0.889, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.599, + "defpro": 0.434, + "hppro": 0.918, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.619, + "defpro": 0.447, + "hppro": 0.949, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.64, + "defpro": 0.46, + "hppro": 0.98, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.66, + "defpro": 0.473, + "hppro": 1.004, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.68, + "defpro": 0.486, + "hppro": 1.028, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.7, + "defpro": 0.499, + "hppro": 1.052, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.72, + "defpro": 0.512, + "hppro": 1.076, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.74, + "defpro": 0.525, + "hppro": 1.1, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.76, + "defpro": 0.538, + "hppro": 1.124, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.78, + "defpro": 0.551, + "hppro": 1.148, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.8, + "defpro": 0.564, + "hppro": 1.172, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.82, + "defpro": 0.577, + "hppro": 1.196, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.85, + "defpro": 0.6, + "hppro": 1.224, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.87, + "defpro": 0.613, + "hppro": 1.248, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.89, + "defpro": 0.626, + "hppro": 1.272, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.91, + "defpro": 0.639, + "hppro": 1.296, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.93, + "defpro": 0.652, + "hppro": 1.32, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.95, + "defpro": 0.665, + "hppro": 1.344, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3012, + "name": "intr_hero_zhuanshu_33", + "img": 3012, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.97, + "defpro": 0.678, + "hppro": 1.368, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "3013": { + "0": { + "0": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.063, + "defpro": 0.091, + "hppro": 0.123, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.066, + "defpro": 0.093, + "hppro": 0.127, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.07, + "defpro": 0.095, + "hppro": 0.132, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.074, + "defpro": 0.097, + "hppro": 0.138, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.078, + "defpro": 0.1, + "hppro": 0.143, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.082, + "defpro": 0.103, + "hppro": 0.15, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.086, + "defpro": 0.107, + "hppro": 0.156, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.09, + "defpro": 0.111, + "hppro": 0.163, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.095, + "defpro": 0.115, + "hppro": 0.171, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.1, + "defpro": 0.12, + "hppro": 0.18, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.105, + "defpro": 0.125, + "hppro": 0.189, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.11, + "defpro": 0.131, + "hppro": 0.198, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.116, + "defpro": 0.137, + "hppro": 0.209, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.122, + "defpro": 0.143, + "hppro": 0.22, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.128, + "defpro": 0.15, + "hppro": 0.231, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.134, + "defpro": 0.157, + "hppro": 0.243, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.14, + "defpro": 0.165, + "hppro": 0.255, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.146, + "defpro": 0.173, + "hppro": 0.268, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.153, + "defpro": 0.181, + "hppro": 0.282, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.16, + "defpro": 0.19, + "hppro": 0.296, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.167, + "defpro": 0.199, + "hppro": 0.31, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.174, + "defpro": 0.209, + "hppro": 0.326, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.182, + "defpro": 0.219, + "hppro": 0.342, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.19, + "defpro": 0.229, + "hppro": 0.358, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.198, + "defpro": 0.24, + "hppro": 0.375, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.206, + "defpro": 0.251, + "hppro": 0.393, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.214, + "defpro": 0.263, + "hppro": 0.41, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.222, + "defpro": 0.275, + "hppro": 0.429, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.231, + "defpro": 0.287, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.24, + "defpro": 0.3, + "hppro": 0.468, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.249, + "defpro": 0.313, + "hppro": 0.488, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.258, + "defpro": 0.327, + "hppro": 0.509, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.268, + "defpro": 0.341, + "hppro": 0.53, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.278, + "defpro": 0.355, + "hppro": 0.553, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.288, + "defpro": 0.37, + "hppro": 0.575, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.298, + "defpro": 0.385, + "hppro": 0.598, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.308, + "defpro": 0.401, + "hppro": 0.622, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.318, + "defpro": 0.417, + "hppro": 0.646, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.329, + "defpro": 0.433, + "hppro": 0.67, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.34, + "defpro": 0.45, + "hppro": 0.696, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.351, + "defpro": 0.467, + "hppro": 0.722, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.362, + "defpro": 0.485, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.374, + "defpro": 0.503, + "hppro": 0.775, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.386, + "defpro": 0.521, + "hppro": 0.803, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.398, + "defpro": 0.54, + "hppro": 0.831, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.41, + "defpro": 0.559, + "hppro": 0.86, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.422, + "defpro": 0.579, + "hppro": 0.889, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.434, + "defpro": 0.599, + "hppro": 0.918, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.447, + "defpro": 0.619, + "hppro": 0.949, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.46, + "defpro": 0.64, + "hppro": 0.98, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.473, + "defpro": 0.66, + "hppro": 1.004, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.486, + "defpro": 0.68, + "hppro": 1.028, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.499, + "defpro": 0.7, + "hppro": 1.052, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.512, + "defpro": 0.72, + "hppro": 1.076, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.525, + "defpro": 0.74, + "hppro": 1.1, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.538, + "defpro": 0.76, + "hppro": 1.124, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.551, + "defpro": 0.78, + "hppro": 1.148, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.564, + "defpro": 0.8, + "hppro": 1.172, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.577, + "defpro": 0.82, + "hppro": 1.196, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.6, + "defpro": 0.85, + "hppro": 1.224, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.613, + "defpro": 0.87, + "hppro": 1.248, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.626, + "defpro": 0.89, + "hppro": 1.272, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.639, + "defpro": 0.91, + "hppro": 1.296, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.652, + "defpro": 0.93, + "hppro": 1.32, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.665, + "defpro": 0.95, + "hppro": 1.344, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3013, + "name": "intr_hero_zhuanshu_34", + "img": 3013, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.678, + "defpro": 0.97, + "hppro": 1.368, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "3014": { + "0": { + "0": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.063, + "defpro": 0.091, + "hppro": 0.123, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.066, + "defpro": 0.093, + "hppro": 0.127, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.07, + "defpro": 0.095, + "hppro": 0.132, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.074, + "defpro": 0.097, + "hppro": 0.138, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.078, + "defpro": 0.1, + "hppro": 0.143, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.082, + "defpro": 0.103, + "hppro": 0.15, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.086, + "defpro": 0.107, + "hppro": 0.156, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.09, + "defpro": 0.111, + "hppro": 0.163, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.095, + "defpro": 0.115, + "hppro": 0.171, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.1, + "defpro": 0.12, + "hppro": 0.18, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.105, + "defpro": 0.125, + "hppro": 0.189, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.11, + "defpro": 0.131, + "hppro": 0.198, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.116, + "defpro": 0.137, + "hppro": 0.209, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.122, + "defpro": 0.143, + "hppro": 0.22, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.128, + "defpro": 0.15, + "hppro": 0.231, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.134, + "defpro": 0.157, + "hppro": 0.243, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.14, + "defpro": 0.165, + "hppro": 0.255, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.146, + "defpro": 0.173, + "hppro": 0.268, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.153, + "defpro": 0.181, + "hppro": 0.282, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.16, + "defpro": 0.19, + "hppro": 0.296, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.167, + "defpro": 0.199, + "hppro": 0.31, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.174, + "defpro": 0.209, + "hppro": 0.326, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.182, + "defpro": 0.219, + "hppro": 0.342, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.19, + "defpro": 0.229, + "hppro": 0.358, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.198, + "defpro": 0.24, + "hppro": 0.375, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.206, + "defpro": 0.251, + "hppro": 0.393, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.214, + "defpro": 0.263, + "hppro": 0.41, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.222, + "defpro": 0.275, + "hppro": 0.429, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.231, + "defpro": 0.287, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.24, + "defpro": 0.3, + "hppro": 0.468, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.249, + "defpro": 0.313, + "hppro": 0.488, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.258, + "defpro": 0.327, + "hppro": 0.509, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.268, + "defpro": 0.341, + "hppro": 0.53, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.278, + "defpro": 0.355, + "hppro": 0.553, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.288, + "defpro": 0.37, + "hppro": 0.575, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.298, + "defpro": 0.385, + "hppro": 0.598, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.308, + "defpro": 0.401, + "hppro": 0.622, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.318, + "defpro": 0.417, + "hppro": 0.646, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.329, + "defpro": 0.433, + "hppro": 0.67, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.34, + "defpro": 0.45, + "hppro": 0.696, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.351, + "defpro": 0.467, + "hppro": 0.722, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.362, + "defpro": 0.485, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.374, + "defpro": 0.503, + "hppro": 0.775, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.386, + "defpro": 0.521, + "hppro": 0.803, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.398, + "defpro": 0.54, + "hppro": 0.831, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.41, + "defpro": 0.559, + "hppro": 0.86, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.422, + "defpro": 0.579, + "hppro": 0.889, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.434, + "defpro": 0.599, + "hppro": 0.918, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.447, + "defpro": 0.619, + "hppro": 0.949, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.46, + "defpro": 0.64, + "hppro": 0.98, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.473, + "defpro": 0.66, + "hppro": 1.004, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.486, + "defpro": 0.68, + "hppro": 1.028, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.499, + "defpro": 0.7, + "hppro": 1.052, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.512, + "defpro": 0.72, + "hppro": 1.076, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.525, + "defpro": 0.74, + "hppro": 1.1, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.538, + "defpro": 0.76, + "hppro": 1.124, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.551, + "defpro": 0.78, + "hppro": 1.148, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.564, + "defpro": 0.8, + "hppro": 1.172, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.577, + "defpro": 0.82, + "hppro": 1.196, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.6, + "defpro": 0.85, + "hppro": 1.224, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.613, + "defpro": 0.87, + "hppro": 1.248, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.626, + "defpro": 0.89, + "hppro": 1.272, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.639, + "defpro": 0.91, + "hppro": 1.296, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.652, + "defpro": 0.93, + "hppro": 1.32, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.665, + "defpro": 0.95, + "hppro": 1.344, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3014, + "name": "intr_hero_zhuanshu_35", + "img": 3014, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.678, + "defpro": 0.97, + "hppro": 1.368, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "3015": { + "0": { + "0": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.091, + "defpro": 0.063, + "hppro": 0.123, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.093, + "defpro": 0.066, + "hppro": 0.127, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.095, + "defpro": 0.07, + "hppro": 0.132, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.097, + "defpro": 0.074, + "hppro": 0.138, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.1, + "defpro": 0.078, + "hppro": 0.143, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.103, + "defpro": 0.082, + "hppro": 0.15, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.107, + "defpro": 0.086, + "hppro": 0.156, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.111, + "defpro": 0.09, + "hppro": 0.163, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.115, + "defpro": 0.095, + "hppro": 0.171, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.12, + "defpro": 0.1, + "hppro": 0.18, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.125, + "defpro": 0.105, + "hppro": 0.189, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.131, + "defpro": 0.11, + "hppro": 0.198, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.137, + "defpro": 0.116, + "hppro": 0.209, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.143, + "defpro": 0.122, + "hppro": 0.22, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.15, + "defpro": 0.128, + "hppro": 0.231, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.157, + "defpro": 0.134, + "hppro": 0.243, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.165, + "defpro": 0.14, + "hppro": 0.255, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.173, + "defpro": 0.146, + "hppro": 0.268, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.181, + "defpro": 0.153, + "hppro": 0.282, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.19, + "defpro": 0.16, + "hppro": 0.296, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.199, + "defpro": 0.167, + "hppro": 0.31, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.209, + "defpro": 0.174, + "hppro": 0.326, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.219, + "defpro": 0.182, + "hppro": 0.342, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.229, + "defpro": 0.19, + "hppro": 0.358, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.24, + "defpro": 0.198, + "hppro": 0.375, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.251, + "defpro": 0.206, + "hppro": 0.393, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.263, + "defpro": 0.214, + "hppro": 0.41, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.275, + "defpro": 0.222, + "hppro": 0.429, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.287, + "defpro": 0.231, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.3, + "defpro": 0.24, + "hppro": 0.468, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.313, + "defpro": 0.249, + "hppro": 0.488, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.327, + "defpro": 0.258, + "hppro": 0.509, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.341, + "defpro": 0.268, + "hppro": 0.53, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.355, + "defpro": 0.278, + "hppro": 0.553, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.37, + "defpro": 0.288, + "hppro": 0.575, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.385, + "defpro": 0.298, + "hppro": 0.598, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.401, + "defpro": 0.308, + "hppro": 0.622, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.417, + "defpro": 0.318, + "hppro": 0.646, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.433, + "defpro": 0.329, + "hppro": 0.67, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.45, + "defpro": 0.34, + "hppro": 0.696, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.467, + "defpro": 0.351, + "hppro": 0.722, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.485, + "defpro": 0.362, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.503, + "defpro": 0.374, + "hppro": 0.775, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.521, + "defpro": 0.386, + "hppro": 0.803, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.54, + "defpro": 0.398, + "hppro": 0.831, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.559, + "defpro": 0.41, + "hppro": 0.86, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.579, + "defpro": 0.422, + "hppro": 0.889, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.599, + "defpro": 0.434, + "hppro": 0.918, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.619, + "defpro": 0.447, + "hppro": 0.949, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.64, + "defpro": 0.46, + "hppro": 0.98, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.66, + "defpro": 0.473, + "hppro": 1.004, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.68, + "defpro": 0.486, + "hppro": 1.028, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.7, + "defpro": 0.499, + "hppro": 1.052, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.72, + "defpro": 0.512, + "hppro": 1.076, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.74, + "defpro": 0.525, + "hppro": 1.1, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.76, + "defpro": 0.538, + "hppro": 1.124, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.78, + "defpro": 0.551, + "hppro": 1.148, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.8, + "defpro": 0.564, + "hppro": 1.172, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.82, + "defpro": 0.577, + "hppro": 1.196, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.85, + "defpro": 0.6, + "hppro": 1.224, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.87, + "defpro": 0.613, + "hppro": 1.248, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.89, + "defpro": 0.626, + "hppro": 1.272, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.91, + "defpro": 0.639, + "hppro": 1.296, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.93, + "defpro": 0.652, + "hppro": 1.32, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.95, + "defpro": 0.665, + "hppro": 1.344, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 3015, + "name": "intr_hero_zhuanshu_36", + "img": 3015, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.97, + "defpro": 0.678, + "hppro": 1.368, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "4001": { + "0": { + "0": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.07, + "defpro": 0.07, + "hppro": 0.154, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.072, + "defpro": 0.072, + "hppro": 0.159, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.075, + "defpro": 0.075, + "hppro": 0.165, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.078, + "defpro": 0.078, + "hppro": 0.172, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.081, + "defpro": 0.081, + "hppro": 0.179, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.084, + "defpro": 0.084, + "hppro": 0.187, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.088, + "defpro": 0.088, + "hppro": 0.195, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.091, + "defpro": 0.091, + "hppro": 0.204, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.095, + "defpro": 0.095, + "hppro": 0.214, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.1, + "defpro": 0.1, + "hppro": 0.225, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.105, + "defpro": 0.105, + "hppro": 0.236, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.11, + "defpro": 0.11, + "hppro": 0.248, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.115, + "defpro": 0.115, + "hppro": 0.261, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.12, + "defpro": 0.12, + "hppro": 0.275, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.126, + "defpro": 0.126, + "hppro": 0.289, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.132, + "defpro": 0.132, + "hppro": 0.304, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.139, + "defpro": 0.139, + "hppro": 0.319, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.145, + "defpro": 0.145, + "hppro": 0.335, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.152, + "defpro": 0.152, + "hppro": 0.352, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.159, + "defpro": 0.159, + "hppro": 0.37, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.166, + "defpro": 0.166, + "hppro": 0.388, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.174, + "defpro": 0.174, + "hppro": 0.407, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.182, + "defpro": 0.182, + "hppro": 0.427, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.19, + "defpro": 0.19, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.199, + "defpro": 0.199, + "hppro": 0.469, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.208, + "defpro": 0.208, + "hppro": 0.491, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.217, + "defpro": 0.217, + "hppro": 0.513, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.226, + "defpro": 0.226, + "hppro": 0.536, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.235, + "defpro": 0.235, + "hppro": 0.56, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.245, + "defpro": 0.245, + "hppro": 0.585, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.255, + "defpro": 0.255, + "hppro": 0.61, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.266, + "defpro": 0.266, + "hppro": 0.636, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.277, + "defpro": 0.277, + "hppro": 0.663, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.288, + "defpro": 0.288, + "hppro": 0.691, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.299, + "defpro": 0.299, + "hppro": 0.719, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.31, + "defpro": 0.31, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.322, + "defpro": 0.322, + "hppro": 0.777, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.334, + "defpro": 0.334, + "hppro": 0.807, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.346, + "defpro": 0.346, + "hppro": 0.838, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.359, + "defpro": 0.359, + "hppro": 0.87, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.372, + "defpro": 0.372, + "hppro": 0.902, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.385, + "defpro": 0.385, + "hppro": 0.935, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.399, + "defpro": 0.399, + "hppro": 0.969, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.412, + "defpro": 0.412, + "hppro": 1.004, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.426, + "defpro": 0.426, + "hppro": 1.039, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.44, + "defpro": 0.44, + "hppro": 1.075, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.455, + "defpro": 0.455, + "hppro": 1.111, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.47, + "defpro": 0.47, + "hppro": 1.148, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.485, + "defpro": 0.485, + "hppro": 1.186, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.5, + "defpro": 0.5, + "hppro": 1.225, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.515, + "defpro": 0.515, + "hppro": 1.255, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.53, + "defpro": 0.53, + "hppro": 1.285, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.545, + "defpro": 0.545, + "hppro": 1.315, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.56, + "defpro": 0.56, + "hppro": 1.345, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.575, + "defpro": 0.575, + "hppro": 1.375, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.59, + "defpro": 0.59, + "hppro": 1.405, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.605, + "defpro": 0.605, + "hppro": 1.435, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.62, + "defpro": 0.62, + "hppro": 1.465, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.635, + "defpro": 0.635, + "hppro": 1.495, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.659, + "defpro": 0.659, + "hppro": 1.53, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.674, + "defpro": 0.674, + "hppro": 1.56, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.689, + "defpro": 0.689, + "hppro": 1.59, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.704, + "defpro": 0.704, + "hppro": 1.62, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.719, + "defpro": 0.719, + "hppro": 1.65, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.734, + "defpro": 0.734, + "hppro": 1.68, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4001, + "name": "intr_hero_zhuanshu_6", + "img": 4001, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.749, + "defpro": 0.749, + "hppro": 1.71, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "4002": { + "0": { + "0": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.07, + "defpro": 0.07, + "hppro": 0.154, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.072, + "defpro": 0.072, + "hppro": 0.159, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.075, + "defpro": 0.075, + "hppro": 0.165, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.078, + "defpro": 0.078, + "hppro": 0.172, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.081, + "defpro": 0.081, + "hppro": 0.179, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.084, + "defpro": 0.084, + "hppro": 0.187, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.088, + "defpro": 0.088, + "hppro": 0.195, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.091, + "defpro": 0.091, + "hppro": 0.204, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.095, + "defpro": 0.095, + "hppro": 0.214, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.1, + "defpro": 0.1, + "hppro": 0.225, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.105, + "defpro": 0.105, + "hppro": 0.236, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.11, + "defpro": 0.11, + "hppro": 0.248, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.115, + "defpro": 0.115, + "hppro": 0.261, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.12, + "defpro": 0.12, + "hppro": 0.275, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.126, + "defpro": 0.126, + "hppro": 0.289, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.132, + "defpro": 0.132, + "hppro": 0.304, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.139, + "defpro": 0.139, + "hppro": 0.319, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.145, + "defpro": 0.145, + "hppro": 0.335, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.152, + "defpro": 0.152, + "hppro": 0.352, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.159, + "defpro": 0.159, + "hppro": 0.37, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.166, + "defpro": 0.166, + "hppro": 0.388, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.174, + "defpro": 0.174, + "hppro": 0.407, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.182, + "defpro": 0.182, + "hppro": 0.427, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.19, + "defpro": 0.19, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.199, + "defpro": 0.199, + "hppro": 0.469, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.208, + "defpro": 0.208, + "hppro": 0.491, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.217, + "defpro": 0.217, + "hppro": 0.513, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.226, + "defpro": 0.226, + "hppro": 0.536, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.235, + "defpro": 0.235, + "hppro": 0.56, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.245, + "defpro": 0.245, + "hppro": 0.585, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.255, + "defpro": 0.255, + "hppro": 0.61, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.266, + "defpro": 0.266, + "hppro": 0.636, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.277, + "defpro": 0.277, + "hppro": 0.663, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.288, + "defpro": 0.288, + "hppro": 0.691, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.299, + "defpro": 0.299, + "hppro": 0.719, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.31, + "defpro": 0.31, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.322, + "defpro": 0.322, + "hppro": 0.777, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.334, + "defpro": 0.334, + "hppro": 0.807, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.346, + "defpro": 0.346, + "hppro": 0.838, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.359, + "defpro": 0.359, + "hppro": 0.87, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.372, + "defpro": 0.372, + "hppro": 0.902, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.385, + "defpro": 0.385, + "hppro": 0.935, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.399, + "defpro": 0.399, + "hppro": 0.969, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.412, + "defpro": 0.412, + "hppro": 1.004, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.426, + "defpro": 0.426, + "hppro": 1.039, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.44, + "defpro": 0.44, + "hppro": 1.075, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.455, + "defpro": 0.455, + "hppro": 1.111, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.47, + "defpro": 0.47, + "hppro": 1.148, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.485, + "defpro": 0.485, + "hppro": 1.186, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.5, + "defpro": 0.5, + "hppro": 1.225, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.515, + "defpro": 0.515, + "hppro": 1.255, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.53, + "defpro": 0.53, + "hppro": 1.285, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.545, + "defpro": 0.545, + "hppro": 1.315, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.56, + "defpro": 0.56, + "hppro": 1.345, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.575, + "defpro": 0.575, + "hppro": 1.375, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.59, + "defpro": 0.59, + "hppro": 1.405, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.605, + "defpro": 0.605, + "hppro": 1.435, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.62, + "defpro": 0.62, + "hppro": 1.465, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.635, + "defpro": 0.635, + "hppro": 1.495, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.659, + "defpro": 0.659, + "hppro": 1.53, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.674, + "defpro": 0.674, + "hppro": 1.56, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.689, + "defpro": 0.689, + "hppro": 1.59, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.704, + "defpro": 0.704, + "hppro": 1.62, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.719, + "defpro": 0.719, + "hppro": 1.65, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.734, + "defpro": 0.734, + "hppro": 1.68, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4002, + "name": "intr_hero_zhuanshu_7", + "img": 4002, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.749, + "defpro": 0.749, + "hppro": 1.71, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "4003": { + "0": { + "0": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.063, + "defpro": 0.091, + "hppro": 0.123, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.066, + "defpro": 0.093, + "hppro": 0.127, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.07, + "defpro": 0.095, + "hppro": 0.132, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.074, + "defpro": 0.097, + "hppro": 0.138, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.078, + "defpro": 0.1, + "hppro": 0.143, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.082, + "defpro": 0.103, + "hppro": 0.15, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.086, + "defpro": 0.107, + "hppro": 0.156, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.09, + "defpro": 0.111, + "hppro": 0.163, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.095, + "defpro": 0.115, + "hppro": 0.171, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.1, + "defpro": 0.12, + "hppro": 0.18, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.105, + "defpro": 0.125, + "hppro": 0.189, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.11, + "defpro": 0.131, + "hppro": 0.198, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.116, + "defpro": 0.137, + "hppro": 0.209, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.122, + "defpro": 0.143, + "hppro": 0.22, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.128, + "defpro": 0.15, + "hppro": 0.231, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.134, + "defpro": 0.157, + "hppro": 0.243, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.14, + "defpro": 0.165, + "hppro": 0.255, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.146, + "defpro": 0.173, + "hppro": 0.268, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.153, + "defpro": 0.181, + "hppro": 0.282, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.16, + "defpro": 0.19, + "hppro": 0.296, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.167, + "defpro": 0.199, + "hppro": 0.31, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.174, + "defpro": 0.209, + "hppro": 0.326, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.182, + "defpro": 0.219, + "hppro": 0.342, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.19, + "defpro": 0.229, + "hppro": 0.358, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.198, + "defpro": 0.24, + "hppro": 0.375, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.206, + "defpro": 0.251, + "hppro": 0.393, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.214, + "defpro": 0.263, + "hppro": 0.41, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.222, + "defpro": 0.275, + "hppro": 0.429, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.231, + "defpro": 0.287, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.24, + "defpro": 0.3, + "hppro": 0.468, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.249, + "defpro": 0.313, + "hppro": 0.488, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.258, + "defpro": 0.327, + "hppro": 0.509, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.268, + "defpro": 0.341, + "hppro": 0.53, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.278, + "defpro": 0.355, + "hppro": 0.553, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.288, + "defpro": 0.37, + "hppro": 0.575, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.298, + "defpro": 0.385, + "hppro": 0.598, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.308, + "defpro": 0.401, + "hppro": 0.622, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.318, + "defpro": 0.417, + "hppro": 0.646, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.329, + "defpro": 0.433, + "hppro": 0.67, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.34, + "defpro": 0.45, + "hppro": 0.696, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.351, + "defpro": 0.467, + "hppro": 0.722, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.362, + "defpro": 0.485, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.374, + "defpro": 0.503, + "hppro": 0.775, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.386, + "defpro": 0.521, + "hppro": 0.803, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.398, + "defpro": 0.54, + "hppro": 0.831, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.41, + "defpro": 0.559, + "hppro": 0.86, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.422, + "defpro": 0.579, + "hppro": 0.889, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.434, + "defpro": 0.599, + "hppro": 0.918, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.447, + "defpro": 0.619, + "hppro": 0.949, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.46, + "defpro": 0.64, + "hppro": 0.98, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.473, + "defpro": 0.66, + "hppro": 1.004, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.486, + "defpro": 0.68, + "hppro": 1.028, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.499, + "defpro": 0.7, + "hppro": 1.052, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.512, + "defpro": 0.72, + "hppro": 1.076, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.525, + "defpro": 0.74, + "hppro": 1.1, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.538, + "defpro": 0.76, + "hppro": 1.124, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.551, + "defpro": 0.78, + "hppro": 1.148, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.564, + "defpro": 0.8, + "hppro": 1.172, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.577, + "defpro": 0.82, + "hppro": 1.196, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.6, + "defpro": 0.85, + "hppro": 1.224, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.613, + "defpro": 0.87, + "hppro": 1.248, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.626, + "defpro": 0.89, + "hppro": 1.272, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.639, + "defpro": 0.91, + "hppro": 1.296, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.652, + "defpro": 0.93, + "hppro": 1.32, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.665, + "defpro": 0.95, + "hppro": 1.344, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4003, + "name": "intr_hero_zhuanshu_8", + "img": 4003, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.678, + "defpro": 0.97, + "hppro": 1.368, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "4004": { + "0": { + "0": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.063, + "defpro": 0.091, + "hppro": 0.123, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.066, + "defpro": 0.093, + "hppro": 0.127, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.07, + "defpro": 0.095, + "hppro": 0.132, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.074, + "defpro": 0.097, + "hppro": 0.138, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.078, + "defpro": 0.1, + "hppro": 0.143, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.082, + "defpro": 0.103, + "hppro": 0.15, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.086, + "defpro": 0.107, + "hppro": 0.156, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.09, + "defpro": 0.111, + "hppro": 0.163, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.095, + "defpro": 0.115, + "hppro": 0.171, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.1, + "defpro": 0.12, + "hppro": 0.18, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.105, + "defpro": 0.125, + "hppro": 0.189, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.11, + "defpro": 0.131, + "hppro": 0.198, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.116, + "defpro": 0.137, + "hppro": 0.209, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.122, + "defpro": 0.143, + "hppro": 0.22, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.128, + "defpro": 0.15, + "hppro": 0.231, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.134, + "defpro": 0.157, + "hppro": 0.243, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.14, + "defpro": 0.165, + "hppro": 0.255, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.146, + "defpro": 0.173, + "hppro": 0.268, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.153, + "defpro": 0.181, + "hppro": 0.282, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.16, + "defpro": 0.19, + "hppro": 0.296, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.167, + "defpro": 0.199, + "hppro": 0.31, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.174, + "defpro": 0.209, + "hppro": 0.326, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.182, + "defpro": 0.219, + "hppro": 0.342, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.19, + "defpro": 0.229, + "hppro": 0.358, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.198, + "defpro": 0.24, + "hppro": 0.375, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.206, + "defpro": 0.251, + "hppro": 0.393, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.214, + "defpro": 0.263, + "hppro": 0.41, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.222, + "defpro": 0.275, + "hppro": 0.429, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.231, + "defpro": 0.287, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.24, + "defpro": 0.3, + "hppro": 0.468, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.249, + "defpro": 0.313, + "hppro": 0.488, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.258, + "defpro": 0.327, + "hppro": 0.509, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.268, + "defpro": 0.341, + "hppro": 0.53, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.278, + "defpro": 0.355, + "hppro": 0.553, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.288, + "defpro": 0.37, + "hppro": 0.575, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.298, + "defpro": 0.385, + "hppro": 0.598, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.308, + "defpro": 0.401, + "hppro": 0.622, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.318, + "defpro": 0.417, + "hppro": 0.646, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.329, + "defpro": 0.433, + "hppro": 0.67, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.34, + "defpro": 0.45, + "hppro": 0.696, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.351, + "defpro": 0.467, + "hppro": 0.722, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.362, + "defpro": 0.485, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.374, + "defpro": 0.503, + "hppro": 0.775, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.386, + "defpro": 0.521, + "hppro": 0.803, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.398, + "defpro": 0.54, + "hppro": 0.831, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.41, + "defpro": 0.559, + "hppro": 0.86, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.422, + "defpro": 0.579, + "hppro": 0.889, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.434, + "defpro": 0.599, + "hppro": 0.918, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.447, + "defpro": 0.619, + "hppro": 0.949, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.46, + "defpro": 0.64, + "hppro": 0.98, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.473, + "defpro": 0.66, + "hppro": 1.004, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.486, + "defpro": 0.68, + "hppro": 1.028, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.499, + "defpro": 0.7, + "hppro": 1.052, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.512, + "defpro": 0.72, + "hppro": 1.076, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.525, + "defpro": 0.74, + "hppro": 1.1, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.538, + "defpro": 0.76, + "hppro": 1.124, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.551, + "defpro": 0.78, + "hppro": 1.148, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.564, + "defpro": 0.8, + "hppro": 1.172, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.577, + "defpro": 0.82, + "hppro": 1.196, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.6, + "defpro": 0.85, + "hppro": 1.224, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.613, + "defpro": 0.87, + "hppro": 1.248, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.626, + "defpro": 0.89, + "hppro": 1.272, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.639, + "defpro": 0.91, + "hppro": 1.296, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.652, + "defpro": 0.93, + "hppro": 1.32, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.665, + "defpro": 0.95, + "hppro": 1.344, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4004, + "name": "intr_hero_zhuanshu_9", + "img": 4004, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.678, + "defpro": 0.97, + "hppro": 1.368, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "4005": { + "0": { + "0": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.07, + "defpro": 0.07, + "hppro": 0.154, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.072, + "defpro": 0.072, + "hppro": 0.159, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.075, + "defpro": 0.075, + "hppro": 0.165, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.078, + "defpro": 0.078, + "hppro": 0.172, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.081, + "defpro": 0.081, + "hppro": 0.179, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.084, + "defpro": 0.084, + "hppro": 0.187, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.088, + "defpro": 0.088, + "hppro": 0.195, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.091, + "defpro": 0.091, + "hppro": 0.204, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.095, + "defpro": 0.095, + "hppro": 0.214, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.1, + "defpro": 0.1, + "hppro": 0.225, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.105, + "defpro": 0.105, + "hppro": 0.236, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.11, + "defpro": 0.11, + "hppro": 0.248, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.115, + "defpro": 0.115, + "hppro": 0.261, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.12, + "defpro": 0.12, + "hppro": 0.275, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.126, + "defpro": 0.126, + "hppro": 0.289, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.132, + "defpro": 0.132, + "hppro": 0.304, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.139, + "defpro": 0.139, + "hppro": 0.319, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.145, + "defpro": 0.145, + "hppro": 0.335, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.152, + "defpro": 0.152, + "hppro": 0.352, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.159, + "defpro": 0.159, + "hppro": 0.37, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.166, + "defpro": 0.166, + "hppro": 0.388, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.174, + "defpro": 0.174, + "hppro": 0.407, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.182, + "defpro": 0.182, + "hppro": 0.427, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.19, + "defpro": 0.19, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.199, + "defpro": 0.199, + "hppro": 0.469, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.208, + "defpro": 0.208, + "hppro": 0.491, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.217, + "defpro": 0.217, + "hppro": 0.513, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.226, + "defpro": 0.226, + "hppro": 0.536, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.235, + "defpro": 0.235, + "hppro": 0.56, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.245, + "defpro": 0.245, + "hppro": 0.585, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.255, + "defpro": 0.255, + "hppro": 0.61, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.266, + "defpro": 0.266, + "hppro": 0.636, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.277, + "defpro": 0.277, + "hppro": 0.663, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.288, + "defpro": 0.288, + "hppro": 0.691, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.299, + "defpro": 0.299, + "hppro": 0.719, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.31, + "defpro": 0.31, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.322, + "defpro": 0.322, + "hppro": 0.777, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.334, + "defpro": 0.334, + "hppro": 0.807, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.346, + "defpro": 0.346, + "hppro": 0.838, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.359, + "defpro": 0.359, + "hppro": 0.87, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.372, + "defpro": 0.372, + "hppro": 0.902, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.385, + "defpro": 0.385, + "hppro": 0.935, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.399, + "defpro": 0.399, + "hppro": 0.969, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.412, + "defpro": 0.412, + "hppro": 1.004, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.426, + "defpro": 0.426, + "hppro": 1.039, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.44, + "defpro": 0.44, + "hppro": 1.075, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.455, + "defpro": 0.455, + "hppro": 1.111, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.47, + "defpro": 0.47, + "hppro": 1.148, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.485, + "defpro": 0.485, + "hppro": 1.186, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.5, + "defpro": 0.5, + "hppro": 1.225, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.515, + "defpro": 0.515, + "hppro": 1.255, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.53, + "defpro": 0.53, + "hppro": 1.285, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.545, + "defpro": 0.545, + "hppro": 1.315, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.56, + "defpro": 0.56, + "hppro": 1.345, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.575, + "defpro": 0.575, + "hppro": 1.375, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.59, + "defpro": 0.59, + "hppro": 1.405, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.605, + "defpro": 0.605, + "hppro": 1.435, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.62, + "defpro": 0.62, + "hppro": 1.465, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.635, + "defpro": 0.635, + "hppro": 1.495, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.659, + "defpro": 0.659, + "hppro": 1.53, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.674, + "defpro": 0.674, + "hppro": 1.56, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.689, + "defpro": 0.689, + "hppro": 1.59, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.704, + "defpro": 0.704, + "hppro": 1.62, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.719, + "defpro": 0.719, + "hppro": 1.65, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.734, + "defpro": 0.734, + "hppro": 1.68, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4005, + "name": "intr_hero_zhuanshu_10", + "img": 4005, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.749, + "defpro": 0.749, + "hppro": 1.71, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "4006": { + "0": { + "0": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.091, + "defpro": 0.063, + "hppro": 0.123, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.093, + "defpro": 0.066, + "hppro": 0.127, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.095, + "defpro": 0.07, + "hppro": 0.132, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.097, + "defpro": 0.074, + "hppro": 0.138, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.1, + "defpro": 0.078, + "hppro": 0.143, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.103, + "defpro": 0.082, + "hppro": 0.15, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.107, + "defpro": 0.086, + "hppro": 0.156, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.111, + "defpro": 0.09, + "hppro": 0.163, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.115, + "defpro": 0.095, + "hppro": 0.171, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.12, + "defpro": 0.1, + "hppro": 0.18, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.125, + "defpro": 0.105, + "hppro": 0.189, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.131, + "defpro": 0.11, + "hppro": 0.198, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.137, + "defpro": 0.116, + "hppro": 0.209, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.143, + "defpro": 0.122, + "hppro": 0.22, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.15, + "defpro": 0.128, + "hppro": 0.231, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.157, + "defpro": 0.134, + "hppro": 0.243, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.165, + "defpro": 0.14, + "hppro": 0.255, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.173, + "defpro": 0.146, + "hppro": 0.268, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.181, + "defpro": 0.153, + "hppro": 0.282, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.19, + "defpro": 0.16, + "hppro": 0.296, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.199, + "defpro": 0.167, + "hppro": 0.31, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.209, + "defpro": 0.174, + "hppro": 0.326, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.219, + "defpro": 0.182, + "hppro": 0.342, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.229, + "defpro": 0.19, + "hppro": 0.358, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.24, + "defpro": 0.198, + "hppro": 0.375, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.251, + "defpro": 0.206, + "hppro": 0.393, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.263, + "defpro": 0.214, + "hppro": 0.41, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.275, + "defpro": 0.222, + "hppro": 0.429, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.287, + "defpro": 0.231, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.3, + "defpro": 0.24, + "hppro": 0.468, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.313, + "defpro": 0.249, + "hppro": 0.488, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.327, + "defpro": 0.258, + "hppro": 0.509, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.341, + "defpro": 0.268, + "hppro": 0.53, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.355, + "defpro": 0.278, + "hppro": 0.553, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.37, + "defpro": 0.288, + "hppro": 0.575, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.385, + "defpro": 0.298, + "hppro": 0.598, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.401, + "defpro": 0.308, + "hppro": 0.622, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.417, + "defpro": 0.318, + "hppro": 0.646, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.433, + "defpro": 0.329, + "hppro": 0.67, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.45, + "defpro": 0.34, + "hppro": 0.696, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.467, + "defpro": 0.351, + "hppro": 0.722, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.485, + "defpro": 0.362, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.503, + "defpro": 0.374, + "hppro": 0.775, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.521, + "defpro": 0.386, + "hppro": 0.803, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.54, + "defpro": 0.398, + "hppro": 0.831, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.559, + "defpro": 0.41, + "hppro": 0.86, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.579, + "defpro": 0.422, + "hppro": 0.889, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.599, + "defpro": 0.434, + "hppro": 0.918, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.619, + "defpro": 0.447, + "hppro": 0.949, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.64, + "defpro": 0.46, + "hppro": 0.98, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.66, + "defpro": 0.473, + "hppro": 1.004, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.68, + "defpro": 0.486, + "hppro": 1.028, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.7, + "defpro": 0.499, + "hppro": 1.052, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.72, + "defpro": 0.512, + "hppro": 1.076, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.74, + "defpro": 0.525, + "hppro": 1.1, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.76, + "defpro": 0.538, + "hppro": 1.124, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.78, + "defpro": 0.551, + "hppro": 1.148, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.8, + "defpro": 0.564, + "hppro": 1.172, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.82, + "defpro": 0.577, + "hppro": 1.196, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.85, + "defpro": 0.6, + "hppro": 1.224, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.87, + "defpro": 0.613, + "hppro": 1.248, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.89, + "defpro": 0.626, + "hppro": 1.272, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.91, + "defpro": 0.639, + "hppro": 1.296, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.93, + "defpro": 0.652, + "hppro": 1.32, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.95, + "defpro": 0.665, + "hppro": 1.344, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4006, + "name": "intr_hero_zhuanshu_11", + "img": 4006, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.97, + "defpro": 0.678, + "hppro": 1.368, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "4007": { + "0": { + "0": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.07, + "defpro": 0.07, + "hppro": 0.154, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.072, + "defpro": 0.072, + "hppro": 0.159, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.075, + "defpro": 0.075, + "hppro": 0.165, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.078, + "defpro": 0.078, + "hppro": 0.172, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.081, + "defpro": 0.081, + "hppro": 0.179, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.084, + "defpro": 0.084, + "hppro": 0.187, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.088, + "defpro": 0.088, + "hppro": 0.195, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.091, + "defpro": 0.091, + "hppro": 0.204, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.095, + "defpro": 0.095, + "hppro": 0.214, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.1, + "defpro": 0.1, + "hppro": 0.225, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.105, + "defpro": 0.105, + "hppro": 0.236, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.11, + "defpro": 0.11, + "hppro": 0.248, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.115, + "defpro": 0.115, + "hppro": 0.261, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.12, + "defpro": 0.12, + "hppro": 0.275, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.126, + "defpro": 0.126, + "hppro": 0.289, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.132, + "defpro": 0.132, + "hppro": 0.304, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.139, + "defpro": 0.139, + "hppro": 0.319, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.145, + "defpro": 0.145, + "hppro": 0.335, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.152, + "defpro": 0.152, + "hppro": 0.352, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.159, + "defpro": 0.159, + "hppro": 0.37, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.166, + "defpro": 0.166, + "hppro": 0.388, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.174, + "defpro": 0.174, + "hppro": 0.407, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.182, + "defpro": 0.182, + "hppro": 0.427, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.19, + "defpro": 0.19, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.199, + "defpro": 0.199, + "hppro": 0.469, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.208, + "defpro": 0.208, + "hppro": 0.491, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.217, + "defpro": 0.217, + "hppro": 0.513, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.226, + "defpro": 0.226, + "hppro": 0.536, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.235, + "defpro": 0.235, + "hppro": 0.56, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.245, + "defpro": 0.245, + "hppro": 0.585, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.255, + "defpro": 0.255, + "hppro": 0.61, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.266, + "defpro": 0.266, + "hppro": 0.636, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.277, + "defpro": 0.277, + "hppro": 0.663, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.288, + "defpro": 0.288, + "hppro": 0.691, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.299, + "defpro": 0.299, + "hppro": 0.719, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.31, + "defpro": 0.31, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.322, + "defpro": 0.322, + "hppro": 0.777, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.334, + "defpro": 0.334, + "hppro": 0.807, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.346, + "defpro": 0.346, + "hppro": 0.838, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.359, + "defpro": 0.359, + "hppro": 0.87, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.372, + "defpro": 0.372, + "hppro": 0.902, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.385, + "defpro": 0.385, + "hppro": 0.935, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.399, + "defpro": 0.399, + "hppro": 0.969, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.412, + "defpro": 0.412, + "hppro": 1.004, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.426, + "defpro": 0.426, + "hppro": 1.039, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.44, + "defpro": 0.44, + "hppro": 1.075, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.455, + "defpro": 0.455, + "hppro": 1.111, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.47, + "defpro": 0.47, + "hppro": 1.148, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.485, + "defpro": 0.485, + "hppro": 1.186, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.5, + "defpro": 0.5, + "hppro": 1.225, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.515, + "defpro": 0.515, + "hppro": 1.255, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.53, + "defpro": 0.53, + "hppro": 1.285, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.545, + "defpro": 0.545, + "hppro": 1.315, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.56, + "defpro": 0.56, + "hppro": 1.345, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.575, + "defpro": 0.575, + "hppro": 1.375, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.59, + "defpro": 0.59, + "hppro": 1.405, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.605, + "defpro": 0.605, + "hppro": 1.435, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.62, + "defpro": 0.62, + "hppro": 1.465, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.635, + "defpro": 0.635, + "hppro": 1.495, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.659, + "defpro": 0.659, + "hppro": 1.53, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.674, + "defpro": 0.674, + "hppro": 1.56, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.689, + "defpro": 0.689, + "hppro": 1.59, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.704, + "defpro": 0.704, + "hppro": 1.62, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.719, + "defpro": 0.719, + "hppro": 1.65, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.734, + "defpro": 0.734, + "hppro": 1.68, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4007, + "name": "intr_hero_zhuanshu_12", + "img": 4007, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.749, + "defpro": 0.749, + "hppro": 1.71, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "4008": { + "0": { + "0": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.091, + "defpro": 0.063, + "hppro": 0.123, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.093, + "defpro": 0.066, + "hppro": 0.127, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.095, + "defpro": 0.07, + "hppro": 0.132, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.097, + "defpro": 0.074, + "hppro": 0.138, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.1, + "defpro": 0.078, + "hppro": 0.143, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.103, + "defpro": 0.082, + "hppro": 0.15, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.107, + "defpro": 0.086, + "hppro": 0.156, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.111, + "defpro": 0.09, + "hppro": 0.163, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.115, + "defpro": 0.095, + "hppro": 0.171, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.12, + "defpro": 0.1, + "hppro": 0.18, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.125, + "defpro": 0.105, + "hppro": 0.189, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.131, + "defpro": 0.11, + "hppro": 0.198, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.137, + "defpro": 0.116, + "hppro": 0.209, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.143, + "defpro": 0.122, + "hppro": 0.22, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.15, + "defpro": 0.128, + "hppro": 0.231, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.157, + "defpro": 0.134, + "hppro": 0.243, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.165, + "defpro": 0.14, + "hppro": 0.255, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.173, + "defpro": 0.146, + "hppro": 0.268, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.181, + "defpro": 0.153, + "hppro": 0.282, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.19, + "defpro": 0.16, + "hppro": 0.296, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.199, + "defpro": 0.167, + "hppro": 0.31, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.209, + "defpro": 0.174, + "hppro": 0.326, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.219, + "defpro": 0.182, + "hppro": 0.342, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.229, + "defpro": 0.19, + "hppro": 0.358, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.24, + "defpro": 0.198, + "hppro": 0.375, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.251, + "defpro": 0.206, + "hppro": 0.393, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.263, + "defpro": 0.214, + "hppro": 0.41, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.275, + "defpro": 0.222, + "hppro": 0.429, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.287, + "defpro": 0.231, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.3, + "defpro": 0.24, + "hppro": 0.468, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.313, + "defpro": 0.249, + "hppro": 0.488, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.327, + "defpro": 0.258, + "hppro": 0.509, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.341, + "defpro": 0.268, + "hppro": 0.53, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.355, + "defpro": 0.278, + "hppro": 0.553, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.37, + "defpro": 0.288, + "hppro": 0.575, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.385, + "defpro": 0.298, + "hppro": 0.598, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.401, + "defpro": 0.308, + "hppro": 0.622, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.417, + "defpro": 0.318, + "hppro": 0.646, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.433, + "defpro": 0.329, + "hppro": 0.67, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.45, + "defpro": 0.34, + "hppro": 0.696, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.467, + "defpro": 0.351, + "hppro": 0.722, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.485, + "defpro": 0.362, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.503, + "defpro": 0.374, + "hppro": 0.775, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.521, + "defpro": 0.386, + "hppro": 0.803, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.54, + "defpro": 0.398, + "hppro": 0.831, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.559, + "defpro": 0.41, + "hppro": 0.86, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.579, + "defpro": 0.422, + "hppro": 0.889, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.599, + "defpro": 0.434, + "hppro": 0.918, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.619, + "defpro": 0.447, + "hppro": 0.949, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.64, + "defpro": 0.46, + "hppro": 0.98, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.66, + "defpro": 0.473, + "hppro": 1.004, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.68, + "defpro": 0.486, + "hppro": 1.028, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.7, + "defpro": 0.499, + "hppro": 1.052, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.72, + "defpro": 0.512, + "hppro": 1.076, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.74, + "defpro": 0.525, + "hppro": 1.1, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.76, + "defpro": 0.538, + "hppro": 1.124, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.78, + "defpro": 0.551, + "hppro": 1.148, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.8, + "defpro": 0.564, + "hppro": 1.172, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.82, + "defpro": 0.577, + "hppro": 1.196, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.85, + "defpro": 0.6, + "hppro": 1.224, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.87, + "defpro": 0.613, + "hppro": 1.248, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.89, + "defpro": 0.626, + "hppro": 1.272, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.91, + "defpro": 0.639, + "hppro": 1.296, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.93, + "defpro": 0.652, + "hppro": 1.32, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.95, + "defpro": 0.665, + "hppro": 1.344, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4008, + "name": "intr_hero_zhuanshu_13", + "img": 4008, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.97, + "defpro": 0.678, + "hppro": 1.368, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "4009": { + "0": { + "0": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.063, + "defpro": 0.091, + "hppro": 0.123, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.066, + "defpro": 0.093, + "hppro": 0.127, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.07, + "defpro": 0.095, + "hppro": 0.132, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.074, + "defpro": 0.097, + "hppro": 0.138, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.078, + "defpro": 0.1, + "hppro": 0.143, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.082, + "defpro": 0.103, + "hppro": 0.15, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.086, + "defpro": 0.107, + "hppro": 0.156, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.09, + "defpro": 0.111, + "hppro": 0.163, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.095, + "defpro": 0.115, + "hppro": 0.171, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.1, + "defpro": 0.12, + "hppro": 0.18, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.105, + "defpro": 0.125, + "hppro": 0.189, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.11, + "defpro": 0.131, + "hppro": 0.198, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.116, + "defpro": 0.137, + "hppro": 0.209, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.122, + "defpro": 0.143, + "hppro": 0.22, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.128, + "defpro": 0.15, + "hppro": 0.231, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.134, + "defpro": 0.157, + "hppro": 0.243, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.14, + "defpro": 0.165, + "hppro": 0.255, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.146, + "defpro": 0.173, + "hppro": 0.268, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.153, + "defpro": 0.181, + "hppro": 0.282, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.16, + "defpro": 0.19, + "hppro": 0.296, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.167, + "defpro": 0.199, + "hppro": 0.31, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.174, + "defpro": 0.209, + "hppro": 0.326, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.182, + "defpro": 0.219, + "hppro": 0.342, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.19, + "defpro": 0.229, + "hppro": 0.358, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.198, + "defpro": 0.24, + "hppro": 0.375, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.206, + "defpro": 0.251, + "hppro": 0.393, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.214, + "defpro": 0.263, + "hppro": 0.41, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.222, + "defpro": 0.275, + "hppro": 0.429, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.231, + "defpro": 0.287, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.24, + "defpro": 0.3, + "hppro": 0.468, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.249, + "defpro": 0.313, + "hppro": 0.488, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.258, + "defpro": 0.327, + "hppro": 0.509, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.268, + "defpro": 0.341, + "hppro": 0.53, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.278, + "defpro": 0.355, + "hppro": 0.553, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.288, + "defpro": 0.37, + "hppro": 0.575, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.298, + "defpro": 0.385, + "hppro": 0.598, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.308, + "defpro": 0.401, + "hppro": 0.622, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.318, + "defpro": 0.417, + "hppro": 0.646, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.329, + "defpro": 0.433, + "hppro": 0.67, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.34, + "defpro": 0.45, + "hppro": 0.696, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.351, + "defpro": 0.467, + "hppro": 0.722, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.362, + "defpro": 0.485, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.374, + "defpro": 0.503, + "hppro": 0.775, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.386, + "defpro": 0.521, + "hppro": 0.803, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.398, + "defpro": 0.54, + "hppro": 0.831, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.41, + "defpro": 0.559, + "hppro": 0.86, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.422, + "defpro": 0.579, + "hppro": 0.889, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.434, + "defpro": 0.599, + "hppro": 0.918, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.447, + "defpro": 0.619, + "hppro": 0.949, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.46, + "defpro": 0.64, + "hppro": 0.98, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.473, + "defpro": 0.66, + "hppro": 1.004, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.486, + "defpro": 0.68, + "hppro": 1.028, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.499, + "defpro": 0.7, + "hppro": 1.052, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.512, + "defpro": 0.72, + "hppro": 1.076, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.525, + "defpro": 0.74, + "hppro": 1.1, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.538, + "defpro": 0.76, + "hppro": 1.124, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.551, + "defpro": 0.78, + "hppro": 1.148, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.564, + "defpro": 0.8, + "hppro": 1.172, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.577, + "defpro": 0.82, + "hppro": 1.196, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.6, + "defpro": 0.85, + "hppro": 1.224, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.613, + "defpro": 0.87, + "hppro": 1.248, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.626, + "defpro": 0.89, + "hppro": 1.272, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.639, + "defpro": 0.91, + "hppro": 1.296, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.652, + "defpro": 0.93, + "hppro": 1.32, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.665, + "defpro": 0.95, + "hppro": 1.344, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4009, + "name": "intr_hero_zhuanshu_14", + "img": 4009, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.678, + "defpro": 0.97, + "hppro": 1.368, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "4010": { + "0": { + "0": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.091, + "defpro": 0.063, + "hppro": 0.123, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.093, + "defpro": 0.066, + "hppro": 0.127, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.095, + "defpro": 0.07, + "hppro": 0.132, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.097, + "defpro": 0.074, + "hppro": 0.138, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.1, + "defpro": 0.078, + "hppro": 0.143, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.103, + "defpro": 0.082, + "hppro": 0.15, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.107, + "defpro": 0.086, + "hppro": 0.156, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.111, + "defpro": 0.09, + "hppro": 0.163, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.115, + "defpro": 0.095, + "hppro": 0.171, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.12, + "defpro": 0.1, + "hppro": 0.18, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.125, + "defpro": 0.105, + "hppro": 0.189, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.131, + "defpro": 0.11, + "hppro": 0.198, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.137, + "defpro": 0.116, + "hppro": 0.209, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.143, + "defpro": 0.122, + "hppro": 0.22, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.15, + "defpro": 0.128, + "hppro": 0.231, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.157, + "defpro": 0.134, + "hppro": 0.243, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.165, + "defpro": 0.14, + "hppro": 0.255, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.173, + "defpro": 0.146, + "hppro": 0.268, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.181, + "defpro": 0.153, + "hppro": 0.282, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.19, + "defpro": 0.16, + "hppro": 0.296, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.199, + "defpro": 0.167, + "hppro": 0.31, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.209, + "defpro": 0.174, + "hppro": 0.326, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.219, + "defpro": 0.182, + "hppro": 0.342, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.229, + "defpro": 0.19, + "hppro": 0.358, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.24, + "defpro": 0.198, + "hppro": 0.375, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.251, + "defpro": 0.206, + "hppro": 0.393, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.263, + "defpro": 0.214, + "hppro": 0.41, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.275, + "defpro": 0.222, + "hppro": 0.429, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.287, + "defpro": 0.231, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.3, + "defpro": 0.24, + "hppro": 0.468, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.313, + "defpro": 0.249, + "hppro": 0.488, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.327, + "defpro": 0.258, + "hppro": 0.509, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.341, + "defpro": 0.268, + "hppro": 0.53, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.355, + "defpro": 0.278, + "hppro": 0.553, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.37, + "defpro": 0.288, + "hppro": 0.575, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.385, + "defpro": 0.298, + "hppro": 0.598, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.401, + "defpro": 0.308, + "hppro": 0.622, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.417, + "defpro": 0.318, + "hppro": 0.646, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.433, + "defpro": 0.329, + "hppro": 0.67, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.45, + "defpro": 0.34, + "hppro": 0.696, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.467, + "defpro": 0.351, + "hppro": 0.722, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.485, + "defpro": 0.362, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.503, + "defpro": 0.374, + "hppro": 0.775, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.521, + "defpro": 0.386, + "hppro": 0.803, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.54, + "defpro": 0.398, + "hppro": 0.831, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.559, + "defpro": 0.41, + "hppro": 0.86, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.579, + "defpro": 0.422, + "hppro": 0.889, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.599, + "defpro": 0.434, + "hppro": 0.918, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.619, + "defpro": 0.447, + "hppro": 0.949, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.64, + "defpro": 0.46, + "hppro": 0.98, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.66, + "defpro": 0.473, + "hppro": 1.004, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.68, + "defpro": 0.486, + "hppro": 1.028, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.7, + "defpro": 0.499, + "hppro": 1.052, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.72, + "defpro": 0.512, + "hppro": 1.076, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.74, + "defpro": 0.525, + "hppro": 1.1, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.76, + "defpro": 0.538, + "hppro": 1.124, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.78, + "defpro": 0.551, + "hppro": 1.148, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.8, + "defpro": 0.564, + "hppro": 1.172, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.82, + "defpro": 0.577, + "hppro": 1.196, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.85, + "defpro": 0.6, + "hppro": 1.224, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.87, + "defpro": 0.613, + "hppro": 1.248, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.89, + "defpro": 0.626, + "hppro": 1.272, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.91, + "defpro": 0.639, + "hppro": 1.296, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.93, + "defpro": 0.652, + "hppro": 1.32, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.95, + "defpro": 0.665, + "hppro": 1.344, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4010, + "name": "intr_hero_zhuanshu_15", + "img": 4010, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.97, + "defpro": 0.678, + "hppro": 1.368, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "4011": { + "0": { + "0": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.07, + "defpro": 0.07, + "hppro": 0.154, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.072, + "defpro": 0.072, + "hppro": 0.159, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.075, + "defpro": 0.075, + "hppro": 0.165, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.078, + "defpro": 0.078, + "hppro": 0.172, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.081, + "defpro": 0.081, + "hppro": 0.179, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.084, + "defpro": 0.084, + "hppro": 0.187, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.088, + "defpro": 0.088, + "hppro": 0.195, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.091, + "defpro": 0.091, + "hppro": 0.204, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.095, + "defpro": 0.095, + "hppro": 0.214, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.1, + "defpro": 0.1, + "hppro": 0.225, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.105, + "defpro": 0.105, + "hppro": 0.236, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.11, + "defpro": 0.11, + "hppro": 0.248, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.115, + "defpro": 0.115, + "hppro": 0.261, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.12, + "defpro": 0.12, + "hppro": 0.275, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.126, + "defpro": 0.126, + "hppro": 0.289, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.132, + "defpro": 0.132, + "hppro": 0.304, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.139, + "defpro": 0.139, + "hppro": 0.319, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.145, + "defpro": 0.145, + "hppro": 0.335, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.152, + "defpro": 0.152, + "hppro": 0.352, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.159, + "defpro": 0.159, + "hppro": 0.37, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.166, + "defpro": 0.166, + "hppro": 0.388, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.174, + "defpro": 0.174, + "hppro": 0.407, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.182, + "defpro": 0.182, + "hppro": 0.427, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.19, + "defpro": 0.19, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.199, + "defpro": 0.199, + "hppro": 0.469, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.208, + "defpro": 0.208, + "hppro": 0.491, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.217, + "defpro": 0.217, + "hppro": 0.513, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.226, + "defpro": 0.226, + "hppro": 0.536, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.235, + "defpro": 0.235, + "hppro": 0.56, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.245, + "defpro": 0.245, + "hppro": 0.585, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.255, + "defpro": 0.255, + "hppro": 0.61, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.266, + "defpro": 0.266, + "hppro": 0.636, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.277, + "defpro": 0.277, + "hppro": 0.663, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.288, + "defpro": 0.288, + "hppro": 0.691, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.299, + "defpro": 0.299, + "hppro": 0.719, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.31, + "defpro": 0.31, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.322, + "defpro": 0.322, + "hppro": 0.777, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.334, + "defpro": 0.334, + "hppro": 0.807, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.346, + "defpro": 0.346, + "hppro": 0.838, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.359, + "defpro": 0.359, + "hppro": 0.87, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.372, + "defpro": 0.372, + "hppro": 0.902, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.385, + "defpro": 0.385, + "hppro": 0.935, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.399, + "defpro": 0.399, + "hppro": 0.969, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.412, + "defpro": 0.412, + "hppro": 1.004, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.426, + "defpro": 0.426, + "hppro": 1.039, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.44, + "defpro": 0.44, + "hppro": 1.075, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.455, + "defpro": 0.455, + "hppro": 1.111, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.47, + "defpro": 0.47, + "hppro": 1.148, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.485, + "defpro": 0.485, + "hppro": 1.186, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.5, + "defpro": 0.5, + "hppro": 1.225, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.515, + "defpro": 0.515, + "hppro": 1.255, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.53, + "defpro": 0.53, + "hppro": 1.285, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.545, + "defpro": 0.545, + "hppro": 1.315, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.56, + "defpro": 0.56, + "hppro": 1.345, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.575, + "defpro": 0.575, + "hppro": 1.375, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.59, + "defpro": 0.59, + "hppro": 1.405, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.605, + "defpro": 0.605, + "hppro": 1.435, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.62, + "defpro": 0.62, + "hppro": 1.465, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.635, + "defpro": 0.635, + "hppro": 1.495, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.659, + "defpro": 0.659, + "hppro": 1.53, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.674, + "defpro": 0.674, + "hppro": 1.56, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.689, + "defpro": 0.689, + "hppro": 1.59, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.704, + "defpro": 0.704, + "hppro": 1.62, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.719, + "defpro": 0.719, + "hppro": 1.65, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.734, + "defpro": 0.734, + "hppro": 1.68, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4011, + "name": "intr_hero_zhuanshu_17", + "img": 4011, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.749, + "defpro": 0.749, + "hppro": 1.71, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "4012": { + "0": { + "0": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.07, + "defpro": 0.07, + "hppro": 0.154, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.072, + "defpro": 0.072, + "hppro": 0.159, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.075, + "defpro": 0.075, + "hppro": 0.165, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.078, + "defpro": 0.078, + "hppro": 0.172, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.081, + "defpro": 0.081, + "hppro": 0.179, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.084, + "defpro": 0.084, + "hppro": 0.187, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.088, + "defpro": 0.088, + "hppro": 0.195, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.091, + "defpro": 0.091, + "hppro": 0.204, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.095, + "defpro": 0.095, + "hppro": 0.214, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.1, + "defpro": 0.1, + "hppro": 0.225, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.105, + "defpro": 0.105, + "hppro": 0.236, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.11, + "defpro": 0.11, + "hppro": 0.248, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.115, + "defpro": 0.115, + "hppro": 0.261, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.12, + "defpro": 0.12, + "hppro": 0.275, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.126, + "defpro": 0.126, + "hppro": 0.289, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.132, + "defpro": 0.132, + "hppro": 0.304, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.139, + "defpro": 0.139, + "hppro": 0.319, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.145, + "defpro": 0.145, + "hppro": 0.335, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.152, + "defpro": 0.152, + "hppro": 0.352, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.159, + "defpro": 0.159, + "hppro": 0.37, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.166, + "defpro": 0.166, + "hppro": 0.388, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.174, + "defpro": 0.174, + "hppro": 0.407, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.182, + "defpro": 0.182, + "hppro": 0.427, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.19, + "defpro": 0.19, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.199, + "defpro": 0.199, + "hppro": 0.469, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.208, + "defpro": 0.208, + "hppro": 0.491, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.217, + "defpro": 0.217, + "hppro": 0.513, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.226, + "defpro": 0.226, + "hppro": 0.536, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.235, + "defpro": 0.235, + "hppro": 0.56, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.245, + "defpro": 0.245, + "hppro": 0.585, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.255, + "defpro": 0.255, + "hppro": 0.61, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.266, + "defpro": 0.266, + "hppro": 0.636, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.277, + "defpro": 0.277, + "hppro": 0.663, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.288, + "defpro": 0.288, + "hppro": 0.691, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.299, + "defpro": 0.299, + "hppro": 0.719, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.31, + "defpro": 0.31, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.322, + "defpro": 0.322, + "hppro": 0.777, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.334, + "defpro": 0.334, + "hppro": 0.807, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.346, + "defpro": 0.346, + "hppro": 0.838, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.359, + "defpro": 0.359, + "hppro": 0.87, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.372, + "defpro": 0.372, + "hppro": 0.902, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.385, + "defpro": 0.385, + "hppro": 0.935, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.399, + "defpro": 0.399, + "hppro": 0.969, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.412, + "defpro": 0.412, + "hppro": 1.004, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.426, + "defpro": 0.426, + "hppro": 1.039, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.44, + "defpro": 0.44, + "hppro": 1.075, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.455, + "defpro": 0.455, + "hppro": 1.111, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.47, + "defpro": 0.47, + "hppro": 1.148, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.485, + "defpro": 0.485, + "hppro": 1.186, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.5, + "defpro": 0.5, + "hppro": 1.225, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.515, + "defpro": 0.515, + "hppro": 1.255, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.53, + "defpro": 0.53, + "hppro": 1.285, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.545, + "defpro": 0.545, + "hppro": 1.315, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.56, + "defpro": 0.56, + "hppro": 1.345, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.575, + "defpro": 0.575, + "hppro": 1.375, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.59, + "defpro": 0.59, + "hppro": 1.405, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.605, + "defpro": 0.605, + "hppro": 1.435, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.62, + "defpro": 0.62, + "hppro": 1.465, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.635, + "defpro": 0.635, + "hppro": 1.495, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.659, + "defpro": 0.659, + "hppro": 1.53, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.674, + "defpro": 0.674, + "hppro": 1.56, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.689, + "defpro": 0.689, + "hppro": 1.59, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.704, + "defpro": 0.704, + "hppro": 1.62, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.719, + "defpro": 0.719, + "hppro": 1.65, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.734, + "defpro": 0.734, + "hppro": 1.68, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4012, + "name": "intr_hero_zhuanshu_18", + "img": 4012, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.749, + "defpro": 0.749, + "hppro": 1.71, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "4013": { + "0": { + "0": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.091, + "defpro": 0.063, + "hppro": 0.123, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.093, + "defpro": 0.066, + "hppro": 0.127, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.095, + "defpro": 0.07, + "hppro": 0.132, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.097, + "defpro": 0.074, + "hppro": 0.138, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.1, + "defpro": 0.078, + "hppro": 0.143, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.103, + "defpro": 0.082, + "hppro": 0.15, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.107, + "defpro": 0.086, + "hppro": 0.156, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.111, + "defpro": 0.09, + "hppro": 0.163, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.115, + "defpro": 0.095, + "hppro": 0.171, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.12, + "defpro": 0.1, + "hppro": 0.18, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.125, + "defpro": 0.105, + "hppro": 0.189, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.131, + "defpro": 0.11, + "hppro": 0.198, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.137, + "defpro": 0.116, + "hppro": 0.209, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.143, + "defpro": 0.122, + "hppro": 0.22, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.15, + "defpro": 0.128, + "hppro": 0.231, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.157, + "defpro": 0.134, + "hppro": 0.243, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.165, + "defpro": 0.14, + "hppro": 0.255, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.173, + "defpro": 0.146, + "hppro": 0.268, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.181, + "defpro": 0.153, + "hppro": 0.282, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.19, + "defpro": 0.16, + "hppro": 0.296, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.199, + "defpro": 0.167, + "hppro": 0.31, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.209, + "defpro": 0.174, + "hppro": 0.326, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.219, + "defpro": 0.182, + "hppro": 0.342, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.229, + "defpro": 0.19, + "hppro": 0.358, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.24, + "defpro": 0.198, + "hppro": 0.375, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.251, + "defpro": 0.206, + "hppro": 0.393, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.263, + "defpro": 0.214, + "hppro": 0.41, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.275, + "defpro": 0.222, + "hppro": 0.429, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.287, + "defpro": 0.231, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.3, + "defpro": 0.24, + "hppro": 0.468, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.313, + "defpro": 0.249, + "hppro": 0.488, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.327, + "defpro": 0.258, + "hppro": 0.509, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.341, + "defpro": 0.268, + "hppro": 0.53, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.355, + "defpro": 0.278, + "hppro": 0.553, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.37, + "defpro": 0.288, + "hppro": 0.575, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.385, + "defpro": 0.298, + "hppro": 0.598, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.401, + "defpro": 0.308, + "hppro": 0.622, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.417, + "defpro": 0.318, + "hppro": 0.646, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.433, + "defpro": 0.329, + "hppro": 0.67, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.45, + "defpro": 0.34, + "hppro": 0.696, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.467, + "defpro": 0.351, + "hppro": 0.722, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.485, + "defpro": 0.362, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.503, + "defpro": 0.374, + "hppro": 0.775, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.521, + "defpro": 0.386, + "hppro": 0.803, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.54, + "defpro": 0.398, + "hppro": 0.831, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.559, + "defpro": 0.41, + "hppro": 0.86, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.579, + "defpro": 0.422, + "hppro": 0.889, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.599, + "defpro": 0.434, + "hppro": 0.918, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.619, + "defpro": 0.447, + "hppro": 0.949, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.64, + "defpro": 0.46, + "hppro": 0.98, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.66, + "defpro": 0.473, + "hppro": 1.004, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.68, + "defpro": 0.486, + "hppro": 1.028, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.7, + "defpro": 0.499, + "hppro": 1.052, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.72, + "defpro": 0.512, + "hppro": 1.076, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.74, + "defpro": 0.525, + "hppro": 1.1, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.76, + "defpro": 0.538, + "hppro": 1.124, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.78, + "defpro": 0.551, + "hppro": 1.148, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.8, + "defpro": 0.564, + "hppro": 1.172, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.82, + "defpro": 0.577, + "hppro": 1.196, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.85, + "defpro": 0.6, + "hppro": 1.224, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.87, + "defpro": 0.613, + "hppro": 1.248, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.89, + "defpro": 0.626, + "hppro": 1.272, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.91, + "defpro": 0.639, + "hppro": 1.296, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.93, + "defpro": 0.652, + "hppro": 1.32, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.95, + "defpro": 0.665, + "hppro": 1.344, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4013, + "name": "intr_hero_zhuanshu_19", + "img": 4013, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.97, + "defpro": 0.678, + "hppro": 1.368, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "4014": { + "0": { + "0": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.07, + "defpro": 0.07, + "hppro": 0.154, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.072, + "defpro": 0.072, + "hppro": 0.159, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.075, + "defpro": 0.075, + "hppro": 0.165, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.078, + "defpro": 0.078, + "hppro": 0.172, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.081, + "defpro": 0.081, + "hppro": 0.179, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.084, + "defpro": 0.084, + "hppro": 0.187, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.088, + "defpro": 0.088, + "hppro": 0.195, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.091, + "defpro": 0.091, + "hppro": 0.204, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.095, + "defpro": 0.095, + "hppro": 0.214, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.1, + "defpro": 0.1, + "hppro": 0.225, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.105, + "defpro": 0.105, + "hppro": 0.236, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.11, + "defpro": 0.11, + "hppro": 0.248, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.115, + "defpro": 0.115, + "hppro": 0.261, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.12, + "defpro": 0.12, + "hppro": 0.275, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.126, + "defpro": 0.126, + "hppro": 0.289, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.132, + "defpro": 0.132, + "hppro": 0.304, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.139, + "defpro": 0.139, + "hppro": 0.319, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.145, + "defpro": 0.145, + "hppro": 0.335, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.152, + "defpro": 0.152, + "hppro": 0.352, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.159, + "defpro": 0.159, + "hppro": 0.37, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.166, + "defpro": 0.166, + "hppro": 0.388, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.174, + "defpro": 0.174, + "hppro": 0.407, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.182, + "defpro": 0.182, + "hppro": 0.427, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.19, + "defpro": 0.19, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.199, + "defpro": 0.199, + "hppro": 0.469, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.208, + "defpro": 0.208, + "hppro": 0.491, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.217, + "defpro": 0.217, + "hppro": 0.513, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.226, + "defpro": 0.226, + "hppro": 0.536, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.235, + "defpro": 0.235, + "hppro": 0.56, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.245, + "defpro": 0.245, + "hppro": 0.585, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.255, + "defpro": 0.255, + "hppro": 0.61, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.266, + "defpro": 0.266, + "hppro": 0.636, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.277, + "defpro": 0.277, + "hppro": 0.663, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.288, + "defpro": 0.288, + "hppro": 0.691, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.299, + "defpro": 0.299, + "hppro": 0.719, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.31, + "defpro": 0.31, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.322, + "defpro": 0.322, + "hppro": 0.777, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.334, + "defpro": 0.334, + "hppro": 0.807, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.346, + "defpro": 0.346, + "hppro": 0.838, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.359, + "defpro": 0.359, + "hppro": 0.87, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.372, + "defpro": 0.372, + "hppro": 0.902, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.385, + "defpro": 0.385, + "hppro": 0.935, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.399, + "defpro": 0.399, + "hppro": 0.969, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.412, + "defpro": 0.412, + "hppro": 1.004, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.426, + "defpro": 0.426, + "hppro": 1.039, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.44, + "defpro": 0.44, + "hppro": 1.075, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.455, + "defpro": 0.455, + "hppro": 1.111, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.47, + "defpro": 0.47, + "hppro": 1.148, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.485, + "defpro": 0.485, + "hppro": 1.186, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.5, + "defpro": 0.5, + "hppro": 1.225, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.515, + "defpro": 0.515, + "hppro": 1.255, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.53, + "defpro": 0.53, + "hppro": 1.285, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.545, + "defpro": 0.545, + "hppro": 1.315, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.56, + "defpro": 0.56, + "hppro": 1.345, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.575, + "defpro": 0.575, + "hppro": 1.375, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.59, + "defpro": 0.59, + "hppro": 1.405, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.605, + "defpro": 0.605, + "hppro": 1.435, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.62, + "defpro": 0.62, + "hppro": 1.465, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.635, + "defpro": 0.635, + "hppro": 1.495, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.659, + "defpro": 0.659, + "hppro": 1.53, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.674, + "defpro": 0.674, + "hppro": 1.56, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.689, + "defpro": 0.689, + "hppro": 1.59, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.704, + "defpro": 0.704, + "hppro": 1.62, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.719, + "defpro": 0.719, + "hppro": 1.65, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.734, + "defpro": 0.734, + "hppro": 1.68, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4014, + "name": "intr_hero_zhuanshu_20", + "img": 4017, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.749, + "defpro": 0.749, + "hppro": 1.71, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "4015": { + "0": { + "0": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.063, + "defpro": 0.091, + "hppro": 0.123, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.066, + "defpro": 0.093, + "hppro": 0.127, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.07, + "defpro": 0.095, + "hppro": 0.132, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.074, + "defpro": 0.097, + "hppro": 0.138, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.078, + "defpro": 0.1, + "hppro": 0.143, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.082, + "defpro": 0.103, + "hppro": 0.15, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.086, + "defpro": 0.107, + "hppro": 0.156, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.09, + "defpro": 0.111, + "hppro": 0.163, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.095, + "defpro": 0.115, + "hppro": 0.171, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.1, + "defpro": 0.12, + "hppro": 0.18, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.105, + "defpro": 0.125, + "hppro": 0.189, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.11, + "defpro": 0.131, + "hppro": 0.198, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.116, + "defpro": 0.137, + "hppro": 0.209, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.122, + "defpro": 0.143, + "hppro": 0.22, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.128, + "defpro": 0.15, + "hppro": 0.231, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.134, + "defpro": 0.157, + "hppro": 0.243, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.14, + "defpro": 0.165, + "hppro": 0.255, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.146, + "defpro": 0.173, + "hppro": 0.268, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.153, + "defpro": 0.181, + "hppro": 0.282, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.16, + "defpro": 0.19, + "hppro": 0.296, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.167, + "defpro": 0.199, + "hppro": 0.31, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.174, + "defpro": 0.209, + "hppro": 0.326, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.182, + "defpro": 0.219, + "hppro": 0.342, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.19, + "defpro": 0.229, + "hppro": 0.358, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.198, + "defpro": 0.24, + "hppro": 0.375, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.206, + "defpro": 0.251, + "hppro": 0.393, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.214, + "defpro": 0.263, + "hppro": 0.41, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.222, + "defpro": 0.275, + "hppro": 0.429, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.231, + "defpro": 0.287, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.24, + "defpro": 0.3, + "hppro": 0.468, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.249, + "defpro": 0.313, + "hppro": 0.488, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.258, + "defpro": 0.327, + "hppro": 0.509, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.268, + "defpro": 0.341, + "hppro": 0.53, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.278, + "defpro": 0.355, + "hppro": 0.553, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.288, + "defpro": 0.37, + "hppro": 0.575, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.298, + "defpro": 0.385, + "hppro": 0.598, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.308, + "defpro": 0.401, + "hppro": 0.622, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.318, + "defpro": 0.417, + "hppro": 0.646, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.329, + "defpro": 0.433, + "hppro": 0.67, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.34, + "defpro": 0.45, + "hppro": 0.696, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.351, + "defpro": 0.467, + "hppro": 0.722, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.362, + "defpro": 0.485, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.374, + "defpro": 0.503, + "hppro": 0.775, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.386, + "defpro": 0.521, + "hppro": 0.803, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.398, + "defpro": 0.54, + "hppro": 0.831, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.41, + "defpro": 0.559, + "hppro": 0.86, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.422, + "defpro": 0.579, + "hppro": 0.889, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.434, + "defpro": 0.599, + "hppro": 0.918, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.447, + "defpro": 0.619, + "hppro": 0.949, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.46, + "defpro": 0.64, + "hppro": 0.98, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.473, + "defpro": 0.66, + "hppro": 1.004, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.486, + "defpro": 0.68, + "hppro": 1.028, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.499, + "defpro": 0.7, + "hppro": 1.052, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.512, + "defpro": 0.72, + "hppro": 1.076, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.525, + "defpro": 0.74, + "hppro": 1.1, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.538, + "defpro": 0.76, + "hppro": 1.124, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.551, + "defpro": 0.78, + "hppro": 1.148, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.564, + "defpro": 0.8, + "hppro": 1.172, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.577, + "defpro": 0.82, + "hppro": 1.196, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.6, + "defpro": 0.85, + "hppro": 1.224, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.613, + "defpro": 0.87, + "hppro": 1.248, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.626, + "defpro": 0.89, + "hppro": 1.272, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.639, + "defpro": 0.91, + "hppro": 1.296, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.652, + "defpro": 0.93, + "hppro": 1.32, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.665, + "defpro": 0.95, + "hppro": 1.344, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 4015, + "name": "intr_hero_zhuanshu_21", + "img": 4015, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.678, + "defpro": 0.97, + "hppro": 1.368, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "5001": { + "0": { + "0": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.063, + "defpro": 0.091, + "hppro": 0.123, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.066, + "defpro": 0.093, + "hppro": 0.127, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.07, + "defpro": 0.095, + "hppro": 0.132, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.074, + "defpro": 0.097, + "hppro": 0.138, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.078, + "defpro": 0.1, + "hppro": 0.143, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.082, + "defpro": 0.103, + "hppro": 0.15, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.086, + "defpro": 0.107, + "hppro": 0.156, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.09, + "defpro": 0.111, + "hppro": 0.163, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.095, + "defpro": 0.115, + "hppro": 0.171, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.1, + "defpro": 0.12, + "hppro": 0.18, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.105, + "defpro": 0.125, + "hppro": 0.189, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.11, + "defpro": 0.131, + "hppro": 0.198, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.116, + "defpro": 0.137, + "hppro": 0.209, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.122, + "defpro": 0.143, + "hppro": 0.22, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.128, + "defpro": 0.15, + "hppro": 0.231, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.134, + "defpro": 0.157, + "hppro": 0.243, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.14, + "defpro": 0.165, + "hppro": 0.255, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.146, + "defpro": 0.173, + "hppro": 0.268, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.153, + "defpro": 0.181, + "hppro": 0.282, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.16, + "defpro": 0.19, + "hppro": 0.296, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.167, + "defpro": 0.199, + "hppro": 0.31, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.174, + "defpro": 0.209, + "hppro": 0.326, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.182, + "defpro": 0.219, + "hppro": 0.342, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.19, + "defpro": 0.229, + "hppro": 0.358, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.198, + "defpro": 0.24, + "hppro": 0.375, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.206, + "defpro": 0.251, + "hppro": 0.393, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.214, + "defpro": 0.263, + "hppro": 0.41, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.222, + "defpro": 0.275, + "hppro": 0.429, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.231, + "defpro": 0.287, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.24, + "defpro": 0.3, + "hppro": 0.468, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.249, + "defpro": 0.313, + "hppro": 0.488, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.258, + "defpro": 0.327, + "hppro": 0.509, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.268, + "defpro": 0.341, + "hppro": 0.53, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.278, + "defpro": 0.355, + "hppro": 0.553, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.288, + "defpro": 0.37, + "hppro": 0.575, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.298, + "defpro": 0.385, + "hppro": 0.598, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.308, + "defpro": 0.401, + "hppro": 0.622, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.318, + "defpro": 0.417, + "hppro": 0.646, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.329, + "defpro": 0.433, + "hppro": 0.67, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.34, + "defpro": 0.45, + "hppro": 0.696, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.351, + "defpro": 0.467, + "hppro": 0.722, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.362, + "defpro": 0.485, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.374, + "defpro": 0.503, + "hppro": 0.775, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.386, + "defpro": 0.521, + "hppro": 0.803, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.398, + "defpro": 0.54, + "hppro": 0.831, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.41, + "defpro": 0.559, + "hppro": 0.86, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.422, + "defpro": 0.579, + "hppro": 0.889, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.434, + "defpro": 0.599, + "hppro": 0.918, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.447, + "defpro": 0.619, + "hppro": 0.949, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.46, + "defpro": 0.64, + "hppro": 0.98, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.473, + "defpro": 0.66, + "hppro": 1.004, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.486, + "defpro": 0.68, + "hppro": 1.028, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.499, + "defpro": 0.7, + "hppro": 1.052, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.512, + "defpro": 0.72, + "hppro": 1.076, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.525, + "defpro": 0.74, + "hppro": 1.1, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.538, + "defpro": 0.76, + "hppro": 1.124, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.551, + "defpro": 0.78, + "hppro": 1.148, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.564, + "defpro": 0.8, + "hppro": 1.172, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.577, + "defpro": 0.82, + "hppro": 1.196, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.6, + "defpro": 0.85, + "hppro": 1.224, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.613, + "defpro": 0.87, + "hppro": 1.248, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.626, + "defpro": 0.89, + "hppro": 1.272, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.639, + "defpro": 0.91, + "hppro": 1.296, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.652, + "defpro": 0.93, + "hppro": 1.32, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.665, + "defpro": 0.95, + "hppro": 1.344, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 5001, + "name": "intr_hero_zhuanshu_1", + "img": 5001, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.678, + "defpro": 0.97, + "hppro": 1.368, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "5002": { + "0": { + "0": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.07, + "defpro": 0.07, + "hppro": 0.154, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.072, + "defpro": 0.072, + "hppro": 0.159, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.075, + "defpro": 0.075, + "hppro": 0.165, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.078, + "defpro": 0.078, + "hppro": 0.172, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.081, + "defpro": 0.081, + "hppro": 0.179, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.084, + "defpro": 0.084, + "hppro": 0.187, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.088, + "defpro": 0.088, + "hppro": 0.195, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.091, + "defpro": 0.091, + "hppro": 0.204, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.095, + "defpro": 0.095, + "hppro": 0.214, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.1, + "defpro": 0.1, + "hppro": 0.225, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.105, + "defpro": 0.105, + "hppro": 0.236, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.11, + "defpro": 0.11, + "hppro": 0.248, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.115, + "defpro": 0.115, + "hppro": 0.261, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.12, + "defpro": 0.12, + "hppro": 0.275, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.126, + "defpro": 0.126, + "hppro": 0.289, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.132, + "defpro": 0.132, + "hppro": 0.304, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.139, + "defpro": 0.139, + "hppro": 0.319, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.145, + "defpro": 0.145, + "hppro": 0.335, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.152, + "defpro": 0.152, + "hppro": 0.352, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.159, + "defpro": 0.159, + "hppro": 0.37, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.166, + "defpro": 0.166, + "hppro": 0.388, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.174, + "defpro": 0.174, + "hppro": 0.407, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.182, + "defpro": 0.182, + "hppro": 0.427, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.19, + "defpro": 0.19, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.199, + "defpro": 0.199, + "hppro": 0.469, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.208, + "defpro": 0.208, + "hppro": 0.491, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.217, + "defpro": 0.217, + "hppro": 0.513, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.226, + "defpro": 0.226, + "hppro": 0.536, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.235, + "defpro": 0.235, + "hppro": 0.56, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.245, + "defpro": 0.245, + "hppro": 0.585, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.255, + "defpro": 0.255, + "hppro": 0.61, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.266, + "defpro": 0.266, + "hppro": 0.636, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.277, + "defpro": 0.277, + "hppro": 0.663, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.288, + "defpro": 0.288, + "hppro": 0.691, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.299, + "defpro": 0.299, + "hppro": 0.719, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.31, + "defpro": 0.31, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.322, + "defpro": 0.322, + "hppro": 0.777, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.334, + "defpro": 0.334, + "hppro": 0.807, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.346, + "defpro": 0.346, + "hppro": 0.838, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.359, + "defpro": 0.359, + "hppro": 0.87, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.372, + "defpro": 0.372, + "hppro": 0.902, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.385, + "defpro": 0.385, + "hppro": 0.935, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.399, + "defpro": 0.399, + "hppro": 0.969, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.412, + "defpro": 0.412, + "hppro": 1.004, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.426, + "defpro": 0.426, + "hppro": 1.039, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.44, + "defpro": 0.44, + "hppro": 1.075, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.455, + "defpro": 0.455, + "hppro": 1.111, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.47, + "defpro": 0.47, + "hppro": 1.148, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.485, + "defpro": 0.485, + "hppro": 1.186, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.5, + "defpro": 0.5, + "hppro": 1.225, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.515, + "defpro": 0.515, + "hppro": 1.255, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.53, + "defpro": 0.53, + "hppro": 1.285, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.545, + "defpro": 0.545, + "hppro": 1.315, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.56, + "defpro": 0.56, + "hppro": 1.345, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.575, + "defpro": 0.575, + "hppro": 1.375, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.59, + "defpro": 0.59, + "hppro": 1.405, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.605, + "defpro": 0.605, + "hppro": 1.435, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.62, + "defpro": 0.62, + "hppro": 1.465, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.635, + "defpro": 0.635, + "hppro": 1.495, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.659, + "defpro": 0.659, + "hppro": 1.53, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.674, + "defpro": 0.674, + "hppro": 1.56, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.689, + "defpro": 0.689, + "hppro": 1.59, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.704, + "defpro": 0.704, + "hppro": 1.62, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.719, + "defpro": 0.719, + "hppro": 1.65, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.734, + "defpro": 0.734, + "hppro": 1.68, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 5002, + "name": "intr_hero_zhuanshu_2", + "img": 5002, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.749, + "defpro": 0.749, + "hppro": 1.71, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "5003": { + "0": { + "0": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.07, + "defpro": 0.07, + "hppro": 0.154, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.072, + "defpro": 0.072, + "hppro": 0.159, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.075, + "defpro": 0.075, + "hppro": 0.165, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.078, + "defpro": 0.078, + "hppro": 0.172, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.081, + "defpro": 0.081, + "hppro": 0.179, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.084, + "defpro": 0.084, + "hppro": 0.187, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.088, + "defpro": 0.088, + "hppro": 0.195, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.091, + "defpro": 0.091, + "hppro": 0.204, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.095, + "defpro": 0.095, + "hppro": 0.214, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.1, + "defpro": 0.1, + "hppro": 0.225, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.105, + "defpro": 0.105, + "hppro": 0.236, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.11, + "defpro": 0.11, + "hppro": 0.248, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.115, + "defpro": 0.115, + "hppro": 0.261, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.12, + "defpro": 0.12, + "hppro": 0.275, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.126, + "defpro": 0.126, + "hppro": 0.289, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.132, + "defpro": 0.132, + "hppro": 0.304, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.139, + "defpro": 0.139, + "hppro": 0.319, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.145, + "defpro": 0.145, + "hppro": 0.335, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.152, + "defpro": 0.152, + "hppro": 0.352, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.159, + "defpro": 0.159, + "hppro": 0.37, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.166, + "defpro": 0.166, + "hppro": 0.388, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.174, + "defpro": 0.174, + "hppro": 0.407, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.182, + "defpro": 0.182, + "hppro": 0.427, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.19, + "defpro": 0.19, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.199, + "defpro": 0.199, + "hppro": 0.469, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.208, + "defpro": 0.208, + "hppro": 0.491, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.217, + "defpro": 0.217, + "hppro": 0.513, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.226, + "defpro": 0.226, + "hppro": 0.536, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.235, + "defpro": 0.235, + "hppro": 0.56, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.245, + "defpro": 0.245, + "hppro": 0.585, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.255, + "defpro": 0.255, + "hppro": 0.61, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.266, + "defpro": 0.266, + "hppro": 0.636, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.277, + "defpro": 0.277, + "hppro": 0.663, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.288, + "defpro": 0.288, + "hppro": 0.691, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.299, + "defpro": 0.299, + "hppro": 0.719, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.31, + "defpro": 0.31, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.322, + "defpro": 0.322, + "hppro": 0.777, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.334, + "defpro": 0.334, + "hppro": 0.807, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.346, + "defpro": 0.346, + "hppro": 0.838, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.359, + "defpro": 0.359, + "hppro": 0.87, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.372, + "defpro": 0.372, + "hppro": 0.902, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.385, + "defpro": 0.385, + "hppro": 0.935, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.399, + "defpro": 0.399, + "hppro": 0.969, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.412, + "defpro": 0.412, + "hppro": 1.004, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.426, + "defpro": 0.426, + "hppro": 1.039, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.44, + "defpro": 0.44, + "hppro": 1.075, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.455, + "defpro": 0.455, + "hppro": 1.111, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.47, + "defpro": 0.47, + "hppro": 1.148, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.485, + "defpro": 0.485, + "hppro": 1.186, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.5, + "defpro": 0.5, + "hppro": 1.225, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.515, + "defpro": 0.515, + "hppro": 1.255, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.53, + "defpro": 0.53, + "hppro": 1.285, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.545, + "defpro": 0.545, + "hppro": 1.315, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.56, + "defpro": 0.56, + "hppro": 1.345, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.575, + "defpro": 0.575, + "hppro": 1.375, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.59, + "defpro": 0.59, + "hppro": 1.405, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.605, + "defpro": 0.605, + "hppro": 1.435, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.62, + "defpro": 0.62, + "hppro": 1.465, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.635, + "defpro": 0.635, + "hppro": 1.495, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.659, + "defpro": 0.659, + "hppro": 1.53, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.674, + "defpro": 0.674, + "hppro": 1.56, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.689, + "defpro": 0.689, + "hppro": 1.59, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.704, + "defpro": 0.704, + "hppro": 1.62, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.719, + "defpro": 0.719, + "hppro": 1.65, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.734, + "defpro": 0.734, + "hppro": 1.68, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 5003, + "name": "intr_hero_zhuanshu_3", + "img": 5003, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.749, + "defpro": 0.749, + "hppro": 1.71, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "5004": { + "0": { + "0": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.091, + "defpro": 0.063, + "hppro": 0.123, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.093, + "defpro": 0.066, + "hppro": 0.127, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.095, + "defpro": 0.07, + "hppro": 0.132, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.097, + "defpro": 0.074, + "hppro": 0.138, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.1, + "defpro": 0.078, + "hppro": 0.143, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.103, + "defpro": 0.082, + "hppro": 0.15, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.107, + "defpro": 0.086, + "hppro": 0.156, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.111, + "defpro": 0.09, + "hppro": 0.163, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.115, + "defpro": 0.095, + "hppro": 0.171, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.12, + "defpro": 0.1, + "hppro": 0.18, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.125, + "defpro": 0.105, + "hppro": 0.189, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.131, + "defpro": 0.11, + "hppro": 0.198, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.137, + "defpro": 0.116, + "hppro": 0.209, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.143, + "defpro": 0.122, + "hppro": 0.22, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.15, + "defpro": 0.128, + "hppro": 0.231, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.157, + "defpro": 0.134, + "hppro": 0.243, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.165, + "defpro": 0.14, + "hppro": 0.255, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.173, + "defpro": 0.146, + "hppro": 0.268, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.181, + "defpro": 0.153, + "hppro": 0.282, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.19, + "defpro": 0.16, + "hppro": 0.296, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.199, + "defpro": 0.167, + "hppro": 0.31, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.209, + "defpro": 0.174, + "hppro": 0.326, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.219, + "defpro": 0.182, + "hppro": 0.342, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.229, + "defpro": 0.19, + "hppro": 0.358, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.24, + "defpro": 0.198, + "hppro": 0.375, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.251, + "defpro": 0.206, + "hppro": 0.393, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.263, + "defpro": 0.214, + "hppro": 0.41, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.275, + "defpro": 0.222, + "hppro": 0.429, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.287, + "defpro": 0.231, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.3, + "defpro": 0.24, + "hppro": 0.468, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.313, + "defpro": 0.249, + "hppro": 0.488, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.327, + "defpro": 0.258, + "hppro": 0.509, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.341, + "defpro": 0.268, + "hppro": 0.53, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.355, + "defpro": 0.278, + "hppro": 0.553, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.37, + "defpro": 0.288, + "hppro": 0.575, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.385, + "defpro": 0.298, + "hppro": 0.598, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.401, + "defpro": 0.308, + "hppro": 0.622, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.417, + "defpro": 0.318, + "hppro": 0.646, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.433, + "defpro": 0.329, + "hppro": 0.67, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.45, + "defpro": 0.34, + "hppro": 0.696, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.467, + "defpro": 0.351, + "hppro": 0.722, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.485, + "defpro": 0.362, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.503, + "defpro": 0.374, + "hppro": 0.775, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.521, + "defpro": 0.386, + "hppro": 0.803, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.54, + "defpro": 0.398, + "hppro": 0.831, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.559, + "defpro": 0.41, + "hppro": 0.86, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.579, + "defpro": 0.422, + "hppro": 0.889, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.599, + "defpro": 0.434, + "hppro": 0.918, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.619, + "defpro": 0.447, + "hppro": 0.949, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.64, + "defpro": 0.46, + "hppro": 0.98, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.66, + "defpro": 0.473, + "hppro": 1.004, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.68, + "defpro": 0.486, + "hppro": 1.028, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.7, + "defpro": 0.499, + "hppro": 1.052, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.72, + "defpro": 0.512, + "hppro": 1.076, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.74, + "defpro": 0.525, + "hppro": 1.1, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.76, + "defpro": 0.538, + "hppro": 1.124, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.78, + "defpro": 0.551, + "hppro": 1.148, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.8, + "defpro": 0.564, + "hppro": 1.172, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.82, + "defpro": 0.577, + "hppro": 1.196, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.85, + "defpro": 0.6, + "hppro": 1.224, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.87, + "defpro": 0.613, + "hppro": 1.248, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.89, + "defpro": 0.626, + "hppro": 1.272, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.91, + "defpro": 0.639, + "hppro": 1.296, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.93, + "defpro": 0.652, + "hppro": 1.32, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.95, + "defpro": 0.665, + "hppro": 1.344, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 5004, + "name": "intr_hero_zhuanshu_4", + "img": 5004, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.97, + "defpro": 0.678, + "hppro": 1.368, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + }, + "5005": { + "0": { + "0": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 0, + "star": 0, + "buff": {}, + "need": [], + "probability": 1 + } + }, + "1": { + "0": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 1, + "star": 0, + "buff": { + "atkpro": 0.091, + "defpro": 0.063, + "hppro": 0.123, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 800000 + }, + { + "a": "item", + "t": "10", + "n": 70 + } + ], + "probability": 1 + }, + "1": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 1, + "star": 1, + "buff": { + "atkpro": 0.093, + "defpro": 0.066, + "hppro": 0.127, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 1 + }, + "2": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 1, + "star": 2, + "buff": { + "atkpro": 0.095, + "defpro": 0.07, + "hppro": 0.132, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.9 + }, + "3": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 1, + "star": 3, + "buff": { + "atkpro": 0.097, + "defpro": 0.074, + "hppro": 0.138, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.8 + }, + "4": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 1, + "star": 4, + "buff": { + "atkpro": 0.1, + "defpro": 0.078, + "hppro": 0.143, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.7 + }, + "5": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 1, + "star": 5, + "buff": { + "atkpro": 0.103, + "defpro": 0.082, + "hppro": 0.15, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.6 + }, + "6": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 1, + "star": 6, + "buff": { + "atkpro": 0.107, + "defpro": 0.086, + "hppro": 0.156, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.5 + }, + "7": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 1, + "star": 7, + "buff": { + "atkpro": 0.111, + "defpro": 0.09, + "hppro": 0.163, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.4 + }, + "8": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 1, + "star": 8, + "buff": { + "atkpro": 0.115, + "defpro": 0.095, + "hppro": 0.171, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.3 + }, + "9": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 1, + "star": 9, + "buff": { + "atkpro": 0.12, + "defpro": 0.1, + "hppro": 0.18, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.2 + }, + "10": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 1, + "star": 10, + "buff": { + "atkpro": 0.125, + "defpro": 0.105, + "hppro": 0.189, + "speed": 0 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 180 + }, + { + "a": "attr", + "t": "jinbi", + "n": 150000 + } + ], + "probability": 0.1 + } + }, + "2": { + "0": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 2, + "star": 0, + "buff": { + "atkpro": 0.131, + "defpro": 0.11, + "hppro": 0.198, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 1400000 + }, + { + "a": "item", + "t": "10", + "n": 140 + } + ], + "probability": 1 + }, + "1": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 2, + "star": 1, + "buff": { + "atkpro": 0.137, + "defpro": 0.116, + "hppro": 0.209, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.9 + }, + "2": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 2, + "star": 2, + "buff": { + "atkpro": 0.143, + "defpro": 0.122, + "hppro": 0.22, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.8 + }, + "3": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 2, + "star": 3, + "buff": { + "atkpro": 0.15, + "defpro": 0.128, + "hppro": 0.231, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.7 + }, + "4": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 2, + "star": 4, + "buff": { + "atkpro": 0.157, + "defpro": 0.134, + "hppro": 0.243, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.6 + }, + "5": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 2, + "star": 5, + "buff": { + "atkpro": 0.165, + "defpro": 0.14, + "hppro": 0.255, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.5 + }, + "6": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 2, + "star": 6, + "buff": { + "atkpro": 0.173, + "defpro": 0.146, + "hppro": 0.268, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.4 + }, + "7": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 2, + "star": 7, + "buff": { + "atkpro": 0.181, + "defpro": 0.153, + "hppro": 0.282, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.3 + }, + "8": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 2, + "star": 8, + "buff": { + "atkpro": 0.19, + "defpro": 0.16, + "hppro": 0.296, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.2 + }, + "9": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 2, + "star": 9, + "buff": { + "atkpro": 0.199, + "defpro": 0.167, + "hppro": 0.31, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 2, + "star": 10, + "buff": { + "atkpro": 0.209, + "defpro": 0.174, + "hppro": 0.326, + "speed": 10 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 280 + }, + { + "a": "attr", + "t": "jinbi", + "n": 300000 + } + ], + "probability": 0.05 + } + }, + "3": { + "0": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 3, + "star": 0, + "buff": { + "atkpro": 0.219, + "defpro": 0.182, + "hppro": 0.342, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 2900000 + }, + { + "a": "item", + "t": "10", + "n": 320 + } + ], + "probability": 1 + }, + "1": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 3, + "star": 1, + "buff": { + "atkpro": 0.229, + "defpro": 0.19, + "hppro": 0.358, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 3, + "star": 2, + "buff": { + "atkpro": 0.24, + "defpro": 0.198, + "hppro": 0.375, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.5 + }, + "3": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 3, + "star": 3, + "buff": { + "atkpro": 0.251, + "defpro": 0.206, + "hppro": 0.393, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.4 + }, + "4": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 3, + "star": 4, + "buff": { + "atkpro": 0.263, + "defpro": 0.214, + "hppro": 0.41, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.35 + }, + "5": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 3, + "star": 5, + "buff": { + "atkpro": 0.275, + "defpro": 0.222, + "hppro": 0.429, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.3 + }, + "6": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 3, + "star": 6, + "buff": { + "atkpro": 0.287, + "defpro": 0.231, + "hppro": 0.448, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.25 + }, + "7": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 3, + "star": 7, + "buff": { + "atkpro": 0.3, + "defpro": 0.24, + "hppro": 0.468, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.2 + }, + "8": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 3, + "star": 8, + "buff": { + "atkpro": 0.313, + "defpro": 0.249, + "hppro": 0.488, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.15 + }, + "9": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 3, + "star": 9, + "buff": { + "atkpro": 0.327, + "defpro": 0.258, + "hppro": 0.509, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.1 + }, + "10": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 3, + "star": 10, + "buff": { + "atkpro": 0.341, + "defpro": 0.268, + "hppro": 0.53, + "speed": 20 + }, + "need": [ + { + "a": "item", + "t": "9", + "n": 480 + }, + { + "a": "attr", + "t": "jinbi", + "n": 450000 + } + ], + "probability": 0.05 + } + }, + "4": { + "0": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 4, + "star": 0, + "buff": { + "atkpro": 0.355, + "defpro": 0.278, + "hppro": 0.553, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 4850000 + }, + { + "a": "item", + "t": "10", + "n": 500 + } + ], + "probability": 1 + }, + "1": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 4, + "star": 1, + "buff": { + "atkpro": 0.37, + "defpro": 0.288, + "hppro": 0.575, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.5 + }, + "2": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 4, + "star": 2, + "buff": { + "atkpro": 0.385, + "defpro": 0.298, + "hppro": 0.598, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.4 + }, + "3": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 4, + "star": 3, + "buff": { + "atkpro": 0.401, + "defpro": 0.308, + "hppro": 0.622, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.3 + }, + "4": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 4, + "star": 4, + "buff": { + "atkpro": 0.417, + "defpro": 0.318, + "hppro": 0.646, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.25 + }, + "5": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 4, + "star": 5, + "buff": { + "atkpro": 0.433, + "defpro": 0.329, + "hppro": 0.67, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.2 + }, + "6": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 4, + "star": 6, + "buff": { + "atkpro": 0.45, + "defpro": 0.34, + "hppro": 0.696, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.15 + }, + "7": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 4, + "star": 7, + "buff": { + "atkpro": 0.467, + "defpro": 0.351, + "hppro": 0.722, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.1 + }, + "8": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 4, + "star": 8, + "buff": { + "atkpro": 0.485, + "defpro": 0.362, + "hppro": 0.748, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.05 + }, + "9": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 4, + "star": 9, + "buff": { + "atkpro": 0.503, + "defpro": 0.374, + "hppro": 0.775, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.03 + }, + "10": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 4, + "star": 10, + "buff": { + "atkpro": 0.521, + "defpro": 0.386, + "hppro": 0.803, + "speed": 30 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 5 + }, + { + "a": "item", + "t": "9", + "n": 600 + }, + { + "a": "attr", + "t": "jinbi", + "n": 600000 + } + ], + "probability": 0.02 + } + }, + "5": { + "0": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 5, + "star": 0, + "buff": { + "atkpro": 0.54, + "defpro": 0.398, + "hppro": 0.831, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 7300000 + }, + { + "a": "item", + "t": "10", + "n": 1000 + } + ], + "probability": 1 + }, + "1": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 5, + "star": 1, + "buff": { + "atkpro": 0.559, + "defpro": 0.41, + "hppro": 0.86, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.3 + }, + "2": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 5, + "star": 2, + "buff": { + "atkpro": 0.579, + "defpro": 0.422, + "hppro": 0.889, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.25 + }, + "3": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 5, + "star": 3, + "buff": { + "atkpro": 0.599, + "defpro": 0.434, + "hppro": 0.918, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.2 + }, + "4": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 5, + "star": 4, + "buff": { + "atkpro": 0.619, + "defpro": 0.447, + "hppro": 0.949, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.15 + }, + "5": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 5, + "star": 5, + "buff": { + "atkpro": 0.64, + "defpro": 0.46, + "hppro": 0.98, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.1 + }, + "6": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 5, + "star": 6, + "buff": { + "atkpro": 0.66, + "defpro": 0.473, + "hppro": 1.004, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 5, + "star": 7, + "buff": { + "atkpro": 0.68, + "defpro": 0.486, + "hppro": 1.028, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 5, + "star": 8, + "buff": { + "atkpro": 0.7, + "defpro": 0.499, + "hppro": 1.052, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 5, + "star": 9, + "buff": { + "atkpro": 0.72, + "defpro": 0.512, + "hppro": 1.076, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 5, + "star": 10, + "buff": { + "atkpro": 0.74, + "defpro": 0.525, + "hppro": 1.1, + "speed": 40 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 30 + }, + { + "a": "item", + "t": "9", + "n": 900 + }, + { + "a": "attr", + "t": "jinbi", + "n": 900000 + } + ], + "probability": 0.01 + } + }, + "6": { + "0": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 6, + "star": 0, + "buff": { + "atkpro": 0.76, + "defpro": 0.538, + "hppro": 1.124, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "23", + "n": 14600000 + }, + { + "a": "item", + "t": "10", + "n": 3000 + } + ], + "probability": 1 + }, + "1": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 6, + "star": 1, + "buff": { + "atkpro": 0.78, + "defpro": 0.551, + "hppro": 1.148, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.1 + }, + "2": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 6, + "star": 2, + "buff": { + "atkpro": 0.8, + "defpro": 0.564, + "hppro": 1.172, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.09 + }, + "3": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 6, + "star": 3, + "buff": { + "atkpro": 0.82, + "defpro": 0.577, + "hppro": 1.196, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.08 + }, + "4": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 6, + "star": 4, + "buff": { + "atkpro": 0.85, + "defpro": 0.6, + "hppro": 1.224, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.07 + }, + "5": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 6, + "star": 5, + "buff": { + "atkpro": 0.87, + "defpro": 0.613, + "hppro": 1.248, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.06 + }, + "6": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 6, + "star": 6, + "buff": { + "atkpro": 0.89, + "defpro": 0.626, + "hppro": 1.272, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.05 + }, + "7": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 6, + "star": 7, + "buff": { + "atkpro": 0.91, + "defpro": 0.639, + "hppro": 1.296, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.04 + }, + "8": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 6, + "star": 8, + "buff": { + "atkpro": 0.93, + "defpro": 0.652, + "hppro": 1.32, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.03 + }, + "9": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 6, + "star": 9, + "buff": { + "atkpro": 0.95, + "defpro": 0.665, + "hppro": 1.344, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.02 + }, + "10": { + "ID": 5005, + "name": "intr_hero_zhuanshu_5", + "img": 5005, + "jieji": 6, + "star": 10, + "buff": { + "atkpro": 0.97, + "defpro": 0.678, + "hppro": 1.368, + "speed": 50 + }, + "need": [ + { + "a": "item", + "t": "10", + "n": 90 + }, + { + "a": "item", + "t": "9", + "n": 2000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 1200000 + } + ], + "probability": 0.01 + } + } + } +} \ No newline at end of file diff --git a/src/json/zixuanlibao.json5 b/src/json/zixuanlibao.json5 new file mode 100644 index 0000000..738e649 --- /dev/null +++ b/src/json/zixuanlibao.json5 @@ -0,0 +1,85 @@ +{ + //持续时间 + time: 1296000, + //活动文本描述 + intr: "intr_zixuan_1", + //礼包 + gift: [ + { + need: [], + free: true, + payId: '', + buyNum: 1, + prize: [ + [ {a: 'attr', t: 'rmbmoney', n: 30}], + [ {a: 'attr', t: 'jinbi', n: 50000}, {a: 'item', t: '1', n: 50000} ] + ] + }, + { + need: [], + free: false, + payId: 'zixuanlibao6', + buyNum: 1, + prize: [ + [ {a: 'attr', t: 'rmbmoney', n: 60} ], + [ {a: 'item', t: '2', n: 60}, {a: 'item', t: '12', n: 50} ], + [ {a: 'item', t: '27', n: 1500}, {a: 'item', t: '1', n: 100000} ] + ] + }, + { + need: [], + free: false, + payId: 'zixuanlibao30', + buyNum: 2, + prize: [ + [ {a: 'attr', t: 'rmbmoney', n: 300} ], + [ {a: 'item', t: '2', n: 200}, {a: 'item', t: '12', n: 100} ], + [ {a: 'item', t: '27', n: 7000}, {a: 'item', t: '1', n: 200000} ] + ] + }, + { + need: [], + free: false, + payId: 'zixuanlibao68', + buyNum: 2, + prize: [ + [ {a: 'attr', t: 'rmbmoney', n: 680} ], + [ {a: 'item', t: '18', n: 100}, {a: 'item', t: '21', n: 200}, {a: 'item', t: '9', n: 1000} ], + [ {a: 'item', t: '27', n: 15000}, {a: 'item', t: '1', n: 300000} ] + ] + }, + { + need: [], + free: false, + payId: 'zixuanlibao128', + buyNum: 2, + prize: [ + [ {a: 'attr', t: 'rmbmoney', n: 1280} ], + [ {a: 'item', t: '18', n: 200}, {a: 'item', t: '9', n: 2000}, {a: 'item', t: '10', n: 200} ], + [ {a: 'item', t: '27', n: 20000}, {a: 'item', t: '1', n: 500000} ] + ] + }, + { + need: [], + free: false, + payId: 'zixuanlibao328', + buyNum: 3, + prize: [ + [ {a: 'attr', t: 'rmbmoney', n: 3280} ], + [ {a: 'item', t: '600', n: 20}, {a: 'item', t: '601', n: 20}, {a: 'item', t: '616', n: 40} ], + [ {a: 'item', t: '27', n: 50000}, {a: 'item', t: '1', n: 700000} ] + ] + }, + { + need: [], + free: false, + payId: 'zixuanlibao648', + buyNum: 3, + prize: [ + [ {a: 'attr', t: 'rmbmoney', n: 6480} ], + [ {a: 'item', t: '600', n: 40}, {a: 'item', t: '601', n: 40}, {a: 'item', t: '616', n: 80} ], + [ {a: 'item', t: '27', n: 100000}, {a: 'item', t: '1', n: 1000000} ] + ] + } + ] +} \ No newline at end of file diff --git a/src/jsonType.ts b/src/jsonType.ts new file mode 100644 index 0000000..9a0dbaa --- /dev/null +++ b/src/jsonType.ts @@ -0,0 +1,1838 @@ + + +type gc_armyattr = k_v<{ + /** 属性编号 */ + 'id': number + /** 攻击 */ + 'atk': number + /** 最小伤害 */ + 'mindps': number + /** 最大伤害 */ + 'maxdps': number + /** 防御 */ + 'def': number + /** 生命 */ + 'hp': number + /** 速度 */ + 'speed': number + /** 命中 */ + 'mingzhongpro': number + /** 闪避 */ + 'misspro': number + /** 吸血 */ + 'xixuepro': number + /** 反伤 */ + 'backdps': number + /** 幸运伤害倍率 */ + 'baoshangpro': number + /** 伤害减免 */ + 'undpspro': number + /** 降低受到的物理伤害 */ + 'phydpsdrop': number + /** 降低受到的魔法伤害 */ + 'magdpsdrop': number + /** 每回合回复生命 */ + 'backhp': number + /** 幸运 */ + 'baoji': number + /** 士气 */ + 'shiqi': number + /** 伤害加成 */ + 'dpspro': number + /** 中毒上限 */ + 'ducontrol': number +}>; + +type gc_attr = k_v<{ + /** 字段名称 */ + 'id': string + /** 中文名 */ + 'name': string + 'undefined': string + /** 品质 */ + 'colour': number + /** 大图标 */ + 'icon': string + /** 小图标 */ + 'sicon': string + /** 描述 */ + 'describe': string + /** icon上特效 */ + 'advancedEffects': string +}>; + +type gc_boss = k_v<{ + /** bossID */ + 'id': number + /** 角色名称 */ + 'name': string + /** 角色形象 */ + 'img': number + /** 描述 */ + 'intr': string + /** 技能 */ + 'skill': { [x: string]: any } + /** 攻击前技能1 */ + 'bdskill': any[] + /** 需要展示的技能 */ + 'mbskill': any[] +}>; + +type gc_buff = k_v<{ + /** 名字buff */ + 'id': string + /** buff类型 */ + 'bufftype': string + /** 效果类型 */ + 'type': number + 'undefined': string + /** buff动画 */ + 'ani': string + /** 动效类型 */ + 'anitype': number + /** 图标 */ + 'img': string + /** 图标是否显示 */ + 'isshow': number +}>; + +type gc_chongzhi = { "payCom": { "payId": string, "firstPayPrize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "tequan": { [key: string]: { "gift": { "buyNum": number, "sale": number, "need": { "a": string, "t": string, "n": number, [x: string]: any }[], "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }, "tip": string, "tq": { "1": { "tip": [ string, number ], "isnew": boolean, [x: string]: any }, [x: string]: any }, [x: string]: any } }, [x: string]: any } + +type gc_choujiang = { "base": { "need1": string, "need2": string, "free": string, "firstdiaoluo": string, "diaoluo": string, "replace": { "num": string, "colour": string, "diaoluo": string, [x: string]: any }, [x: string]: any }, "jiaotang": { "1": { "name": string, "need1": { "a": string, "t": number, "n": number, [x: string]: any }, "need2": { "a": string, "t": string, "n": number, [x: string]: any }, "free": number, "firstdiaoluo": number, "diaoluo": number, "replace": { "num": number, "colour": number, "diaoluo": number, [x: string]: any }, [x: string]: any }, "2": { "name": string, "need1": { "a": string, "t": number, "n": number, [x: string]: any }, "need2": { "a": string, "t": string, "n": number, [x: string]: any }, "firstdiaoluo": [ number, number, number, number, number, number, number, number, number, number ], "diaoluo": [ number, number, number, number, number, number, number, number, number, number ], [x: string]: any }, [x: string]: any }, "jiuba": { "1": { "name": string, "need1": { "a": string, "t": number, "n": number, [x: string]: any }, "need2": { "a": string, "t": string, "n": number, [x: string]: any }, "free": number, "firstdiaoluo": number, "diaoluo": [ number, number, number, number, number, number, number, number, number, number ], "replace": { "num": number, "colour": [ number, number ], "diaoluo": number, [x: string]: any }, [x: string]: any }, "2": { "name": string, "need1": { "a": string, "t": number, "n": number, [x: string]: any }, "need2": { "a": string, "t": string, "n": number, [x: string]: any }, "firstdiaoluo": [ number, number, number, number, number, number, number, number, number, number ], "diaoluo": [ number, number, number, number, number, number, number, number, number, number ], [x: string]: any }, [x: string]: any }, "jiubabaodi": { "numbd": { "50": [ number ], "250": [ number ], "550": [ number ], "1000": [ number ], "1500": [ number ], "2000": [ number ], "2500": [ number ], "3000": [ number ], "3500": [ number ], "4000": [ number ], "4500": [ number ], "5000": [ number ], "5500": [ number ], "6000": [ number ], "6500": [ number ], "7000": [ number ], "7500": [ number ], "8000": [ number ], "8500": [ number ], "9000": [ number ], "9500": [ number ], "10000": [ number ], [x: string]: any }, [x: string]: any }, [x: string]: any } + +type gc_chuanshuozhilu = { "hid": string, "time": number, "task": { "idx": number, "total": number, "type": string, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "des": string, [x: string]: any }[], "box": { "total": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }, [x: string]: any }[] + +type gc_clsl_com = { "divide": { "day": [ number, number ], "group": number, [x: string]: any }[], "divideTime": number, "fightTime": [ number, number ], "prizeTime": number, "fightWinPrize": { "total": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "star": number, [x: string]: any }[], "fightNum": number, "vipBuyFightNum": [ number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number ], "buyFightNumNeed": { "a": string, "t": string, "n": number, [x: string]: any }[], "rankPrize": { "rank": [ number, number ], "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "title": string, [x: string]: any }[], "danPrize": { "star": [ number, number ], "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "email_rank": { "title": string, "content": string, [x: string]: any }, "email_dan": { "title": string, "content": string, [x: string]: any }, [x: string]: any } + +type gc_clsl_dan = k_v<{ + /** 总星级 */ + 'allStar': number + /** 段位 */ + 'dan': number + /** 段位名字 */ + 'danName': string + /** 阶级 */ + 'jieji': number + /** 星级 */ + 'star': number + /** 失败扣除星级 */ + 'failCut': number + /** 战斗奖励 */ + 'fightPrize': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 机器人 */ + 'npc': number +}>; + +type gc_com = k_v<{ + /** id */ + 'id': string + /** 字段类型 */ + 'type': string + /** 值 */ + 'value': number + /** 策划备注,程序不读 */ + 'text': string +}>; + +type gc_common = { "base": { "patacom": { "patamax": string, [x: string]: any }, "gbtxcom": { "gbtxadd": string, [x: string]: any }, "usercom": { "changename": string, [x: string]: any }, [x: string]: any }, "patacom": { "patamax": number, [x: string]: any }, "gbtxcom": { "gbtxadd": number, [x: string]: any }, "usercom": { "changename": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }, [x: string]: any } + +type gc_diaoluo = k_v<{ + /** 掉落组 */ + 'id': number + /** 掉落类型 */ + 'a': string + /** 掉落id */ + 't': string + /** 掉落数量 */ + 'n': number + /** 权重 */ + 'p': number +}[]>; + +type gc_diaoluoduihuan = { "diaoluo": { "a": string, "t": string, "n": number, "p": number, "s": number, [x: string]: any }[], "tiaozhuan": number, "event": { "time": number, "itemId": string, "duihuan": { "need": { "a": string, "t": string, "n": number, [x: string]: any }[], "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "num": number, [x: string]: any }[], "shop": { "need": { "a": string, "t": string, "n": number, [x: string]: any }[], "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "num": number, [x: string]: any }[], "gift": { "payId": string, "num": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], [x: string]: any }, [x: string]: any } + +type gc_dixiaheishi = { "tqyk": { [key: string]: { "payId": string, "title": string, [x: string]: any } }, "zsk": { "payId": string, [x: string]: any }, "yueka": { "payId": string, [x: string]: any }[], "zhoulibao": { "time": number, "pays": { "payId": string, [x: string]: any }[], [x: string]: any }, "136Gift": { "payId": string, "prize": any[], [x: string]: any }[], [x: string]: any } + +type gc_dixiaqianzhuang = k_v<{ + /** ID */ + 'id': number + /** 可购买次数 */ + 'cs': [ number, number ] + /** 消耗钻石 */ + 'need': number + /** 需要VIP等级 */ + 'needVIP': number +}>; + +type gc_dxlt_com = { "open": [ number, number ], "heroNum": [ number, number ], "dayFightLayer": number, "fastFightNeedNum": number, "getPrizeByMiBaoNum": number, "dayResetBackLayer": number, "weekResetBackLayer": number, "fightPrize": { "random": { "type": string, "rd": { "id": string, "p": number, [x: string]: any }[], "p": number, [x: string]: any }[], "item": { [key: string]: { "name": string, "val": number, "intr": string, [x: string]: any } }, "buff": { [key: string]: { "name": string, "buff": { "dpspro": number, [x: string]: any }, "intr": string, [x: string]: any } }, "prizeDlz": number, [x: string]: any }, "fightPrizeBoss": { "random": { "p": number, "dlz": number, [x: string]: any }[], [x: string]: any }, "killPrize": { "need": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "passPrize": { "need": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], [x: string]: any } + +type gc_dxlt_layer = k_v<{ + /** id */ + 'id': number + /** 类型 */ + 'type': number + /** 战斗组 */ + 'npcId': number + /** 战斗奖励 */ + 'price': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 是不是守卫长 */ + 'isBoss': number + /** 层数 */ + 'ceng': number + /** 关 */ + 'guan': number +}>; + +type gc_dxlt_mb = k_v<{ + /** id */ + 'id': number + /** 密宝 */ + 'mibao': { "a": string, "t": string, "n": number, [x: string]: any }[] +}>; + +type gc_dxlt_shop = k_v<{ + /** id */ + 'id': number + /** 商品名称 */ + 'name': string + /** 购买次数 */ + 'buyNum': number + /** 购买消耗 */ + 'need': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 购买获得 */ + 'prize': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 权重 */ + 'p': number +}>; + +type gc_equip = k_v<{ + /** 装备id */ + 'id': number + /** 装备名称 */ + 'name': string + 'undefined': string + /** 类型 */ + 'type': number + /** 品质 */ + 'colour': number + /** 图片 */ + 'icon': string + /** 初始属性 */ + 'buff': { "mindps": number, "maxdps": number, [x: string]: any } + /** 强化公式 */ + 'qh': { "mindps": string, "maxdps": string, [x: string]: any } + /** 套装id */ + 'tzid': number + /** 装备描述 */ + 'des': string + /** icon上特效 */ + 'advancedEffects': string +}>; + +type gc_equipAdjusting = k_v<{ + /** 调校等级 */ + 'lv': number + /** 调校消耗 */ + 'need': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 加成 */ + 'percent': number +}>; + +type gc_equiplvup = k_v<{ + /** 等级 */ + 'lv': number + /** 消耗 */ + 'need': { "a": string, "t": string, "n": number, [x: string]: any }[] +}>; + +type gc_equipMaster = k_v<{ + /** 培养类型 */ + 'type': string + /** 大师等级 */ + 'lv': number + /** 激活等级 */ + 'aLv': number + /** 属性加成 */ + 'buff': { "atk": number, [x: string]: any } +}[]>; + +type gc_equipstar = k_v>; + +type gc_equipSuit = k_v<{ + /** 套装id */ + 'id': number + /** 套装名字 */ + 'name': string + /** 套装buff */ + 'buff': { "2": { "hp": number, [x: string]: any }, "3": { "atk": number, [x: string]: any }, "4": { "def": number, [x: string]: any }, [x: string]: any } +}>; + +type gc_eventOpen = { [key: string]: { "day": number, [x: string]: any } } + +type gc_exchangeRate = k_v<{ + /** RMB */ + 'CNY': number + /** 日元 */ + 'JPY': number + /** 美元 */ + 'USD': number + /** 台币 */ + 'TWD': number + /** 韩币 */ + 'KRW': number +}>; + +type gc_fightPlan = k_v>; + +type gc_friend = { "tuijianNum": number, "maxFriendNum": number, "maxSendGiftNum": number, "maxGetGiftNum": number, "giftPrize": number, [x: string]: any } + +type gc_ganbutexun = k_v<{ + /** 干部ID */ + 'heroid': number + /** 解锁条件 */ + 'cond': { "mapId": number, [x: string]: any } + /** 挑战消耗 */ + 'need': { "a": string, "t": string, "n": number, [x: string]: any } + /** NPC战斗组 */ + 'battle': number + /** 干部碎片 */ + 'item': number + /** 奖励 */ + 'prize': { "a": string, "t": string, "n": number, [x: string]: any }[] +}>; + +type gc_ganhai = { "ships": { "name": string, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "ldRatio": number, "kshsNeed": { "a": string, "t": string, "n": number, [x: string]: any }[], "ldNum": number, "p": number, "time": number, [x: string]: any }[], "doubleTime": [ [ number, number ], [ number, number ] ], "refreshNum": number, "refreshNeed": { "a": string, "t": string, "n": number, [x: string]: any }[], "refreshMaxNeed": number, "fightNum": number, "escortNum": number, "num": number, "oneClickNeed": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any } + +type gc_gonglukuangbiao = { "config": { "type": string, "need": number, "killHonor": number, "round": { "default": number, "min": number, [x: string]: any }, "npc": [ string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string ], [x: string]: any }[], "killDeduct": number, "timeDeduct": number, "drop1": [ number ], "drop2": any[], "refreshNeed": { "a": string, "t": string, "n": number, [x: string]: any }[], "fightNum": number, "vipBuyFightNum": [ number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number ], "buyFightNumNeed": { "a": string, "t": string, "n": number, [x: string]: any }[], "star": { "1": [ number, number ], "2": [ number, number ], "3": [ number, number ], "4": [ number, number ], "5": [ number, number ], [x: string]: any }, "wanted": { [key: string]: { "wanted": [ number, number ], "addwanted": number, "spwanted": number, "jinbi": string, "index": number, "fightsppro": [ number, number ], [x: string]: any } }, "qdusersp": [ string, string, string ], "npcname": [ string, string, string, string, string, string ], [x: string]: any } + +type gc_group = k_v<{ + /** 序号 */ + 'id': number + /** 英雄id */ + 'page': number + /** 羁绊id */ + 'group_id': number + /** 羁绊名称 */ + 'name': string + 'undefined': string + /** 羁绊成员 */ + 'member': string + /** 属性 */ + 'skill': { "atkpro": number, [x: string]: any } + /** 羁绊描述 */ + 'describe': string + /** 组合类型 */ + 'type': string +}[]>; + +type gc_guanlidiaodu = { "hero_qs_need": { "a": string, "t": string, "n": number, [x: string]: any }[], "hero_qs_prize": { "1": { "a": string, "t": string, "n": number, [x: string]: any }[], "2": { "a": string, "t": string, "n": number, [x: string]: any }[], "3": { "a": string, "t": string, "n": number, [x: string]: any }[], "4": { "a": string, "t": string, "n": number, [x: string]: any }[], "5": { "a": string, "t": string, "n": number, [x: string]: any }[], "6": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }, "hero_cz_need": { "a": string, "t": string, "n": number, [x: string]: any }[], "hero_cz_jinbi": number, "equip_qs_need": { "a": string, "t": string, "n": number, [x: string]: any }[], "equip_qs_prize": { "1": { "a": string, "t": string, "n": number, [x: string]: any }[], "2": { "a": string, "t": string, "n": number, [x: string]: any }[], "3": { "a": string, "t": string, "n": number, [x: string]: any }[], "4": { "a": string, "t": string, "n": number, [x: string]: any }[], "5": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }, "equip_cz_need": { "a": string, "t": string, "n": number, [x: string]: any }[], "equip_cz_jinbi": number, "showRes": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any } + +type gc_guide = k_v>; + +type gc_hbzb = { "schedulerTime": number, "jfsOpenLv": number, "jfsFightNum": number, "jfsEnemyNum": number, "jfsOpenTime": [ number, number ], "jfsBuyFightNum": [ number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number ], "jfsRefreshNum": number, "jfsRefreshNeed": { "a": string, "t": string, "n": number, [x: string]: any }[], "jfsBuyFightNumNeed": { "nums": [ number, number ], "need": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "jfsFightWinNumPrize": { "total": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "jfsMatchingAuto": { "max": string, "min": string, [x: string]: any }[], "jfsMatchingHand": { "max": string, "min": string, [x: string]: any }[], "jfsRefreshNpcId": { "lvs": [ number, number ], "npcs": [ [ string ], [ string ], [ string ] ], [x: string]: any }[], "jfsJifenRange": [ number, number ], "jfsFightWinPrize": { "a": string, "t": string, "n": number, [x: string]: any }[], "jfsFightFailPrize": { "a": string, "t": string, "n": number, [x: string]: any }[], "jfsCrossRankPrize": { "ph": [ number, number ], "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "jfsLocalRankPrize": { "ph": [ number, number ], "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "jfsLocalEmail": { "titel": string, "content": string, [x: string]: any }, "jfsCrossEmail": { "titel": string, "content": string, [x: string]: any }, "jfsFightLogNum": number, "zbsOpenTime": [ number, number ], "zbsRankPrize": { "ph": [ number, number ], "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "zbsEmail": { "titel": string, "content": string, [x: string]: any }, "zbsFightWinNumPrize": { "total": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "zbsFightFailCd": number, "zbsFightNum": number, "zbsBuyFightNum": [ number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number ], "zbsBuyFightNumNeed": { "nums": [ number, number ], "need": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "zbsFightLogNum": number, "zbsFightWinPrize": { "a": string, "t": string, "n": number, [x: string]: any }[], "zbsFightFailPrize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any } + +type gc_hero = k_v<{ + /** 角色名称 */ + 'name': string + /** 角色ID */ + 'id': number + /** 角色形象 */ + 'img': number + /** 星级 */ + 'star': number + /** 品质 */ + 'colour': number + /** 升级编号 */ + 'lvup': number + /** 进阶编号 */ + 'jjup': number + /** 专属武器 */ + 'zhuanshu': number + /** 英雄描述 */ + 'describe': string + /** icon上特效 */ + 'advancedEffects': string + /** 干部传记 */ + 'intr': string + /** 传记奖励 */ + 'prize': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 定位描述 */ + 'orientationDes': string +}>; + +type gc_heroAbility = k_v<{ + /** ID */ + 'id': number + /** 属性名称 */ + 'name': string + 'undefined': string + /** 字段 */ + 'shuxing': string + /** 格式 */ + 'type': number + /** 描述 */ + 'des': string +}>; + +type gc_herocom = { "szHeroLimit": { "1": number, "2": number, "3": number, "4": number, "5": number, "6": number, [x: string]: any }, "equipOpenLv": number, "zswqOpenLv": number, "zswqVip": [ number, number, number, number, number, number, number ], "zhuzhan": [ [ string, number, string, number ], [ string, number, string, number ], [ string, number, string, number ], [ string, number, string, number ], [ string, number, string, number ], [ string, number, string, number ], [ string, number, string, number ], [ string, number, string, number ], [ string, number ], [ string, number ] ], "zhuzhanBuff": { "need": number, "value": { "atk": number, "def": number, "hp": number, "mingzhongpro": number, [x: string]: any }, [x: string]: any }[], [x: string]: any } + +type gc_herogrow = k_v>; + +type gc_herolv = k_v<{ + /** 角色id */ + 'id': number + /** 升级属性 */ + 'buff': { "atk": string, "def": string, "hp": string, "speed": number, "mindps": string, "maxdps": string, [x: string]: any } +}>; + +type gc_herolvup = k_v<{ + /** 等级 */ + 'lv': number + /** 经验 */ + 'expneed': number + /** 美金 */ + 'jinbineed': number +}>; + +type gc_heroskill = k_v>; + +type gc_hero_jx = k_v<{ + /** 等级 */ + 'lv': number + /** 升级消耗材料 */ + 'item_cos': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 升级多少个干部本体碎片 */ + 'HeroDebris_Cos': number + /** 总天赋点 */ + 'talent_point': number +}>; + +type gc_hero_qianneng = k_v>; + +type gc_hero_tf = k_v>; + +type gc_huobanzhaomu = { "total": number, "gudKey": string, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[] + +type gc_huodong = { "hdid": number, "htype": number, "stype": number, "ttype": number, "stime": number, "rtime": number, "etime": number, "name": string, "icon": string, "showtime": string, "data": { "1": string, "2": string, "intr0": string, "intr1": string, "intr2": string, "intr3": string, "intr4": string, "name": string, "icon": string, "tab0": string, "tab1": string, "tab2": string, "tab3": string, "tab4": string, "gift": { "index": number, "need": any[], "free": boolean, "payId": string, "buyNum": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "maxlun": [ [ number ], number ], "tasklist": { "1": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": [ string ], "stype": number, "zero": number, [x: string]: any } }, "2": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": [ string ], "stype": number, [x: string]: any } }, "3": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": any[], "stype": number, [x: string]: any } }, "4": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": [ string ], "stype": number, [x: string]: any } }, [x: string]: any }, [x: string]: any }, [x: string]: any }[] + +type gc_item = k_v<{ + /** 道具ID */ + 'id': number + /** 道具名称 */ + 'name': string + 'undefined': string + /** 道具类型 */ + 'type': number + /** 背包分类 */ + 'sort': number + /** 道具品质 */ + 'colour': number + /** 获取途径 */ + 'way': [ number, number, number, number ] + /** 使用跳转 */ + 'go': string + /** 道具图标 */ + 'icon': string + /** 小图标 */ + 'sicon': string + /** 道具描述 */ + 'describe': string + /** 掉落组 */ + 'diaoluo': number + /** 使用等级 */ + 'lv': number + /** 合成数量 */ + 'num': number + /** 合成指定英雄ID */ + 'hero': number + /** 合成指定装备ID */ + 'equip': number + /** 合成指定道具 */ + 'item': number + /** 使用消耗 */ + 'useNeed': any[] + /** 使用后获得 */ + 'usePrize': any[] + /** 可选择的奖励 */ + 'selecPrize': any[] + /** pay表ID */ + 'payId': string + /** icon上特效 */ + 'advancedEffects': string +}>; + +type gc_jierihuodong = { "denglufuli": { "total": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "huodongrenwu": { "idx": number, "taskId": string, "total": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "decs": string, [x: string]: any }[], "duihuan": { "need": { "a": string, "t": string, "n": number, [x: string]: any }[], "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "num": number, [x: string]: any }[], "libao": { "need": { "a": string, "t": string, "n": number, [x: string]: any }[], "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "num": number, [x: string]: any }[], [x: string]: any } + +type gc_jijin = k_v<{ + /** 基金类型 */ + 'type': string + /** 需要达到的值 */ + 'total': number + /** 普通奖励 */ + 'pt': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 特权奖励 */ + 'tq': { "a": string, "t": string, "n": number, [x: string]: any }[] +}[]>; + +type gc_jjc_com = { "fightNum": number, "fightWinPrize": { "a": string, "t": string, "n": number, [x: string]: any }[], "fightFailPrize": { "a": string, "t": string, "n": number, [x: string]: any }[], "buyFightNumVip": { "0": number, "1": number, "2": number, "3": number, "4": number, "5": number, "6": number, "7": number, "8": number, "9": number, "10": number, "11": number, "12": number, "13": number, "14": number, "15": number, "16": number, "17": number, [x: string]: any }, "buyFightNumNeed": { "a": string, "t": string, "n": number, [x: string]: any }[], "fightLogMaxNum": number, "email": { "titel": string, "content": string, [x: string]: any }, "sendPrizeTime": [ string, number ], [x: string]: any } + +type gc_jjc_npc = k_v<{ + /** id */ + 'id': string + /** 名字 */ + 'name': string + /** npc表的npcid */ + 'npcId': number + /** 荣誉值 */ + 'rongyu': number + /** 战力 */ + 'power': number + /** 等级 */ + 'lv': number +}>; + +type gc_jjc_ph = k_v<{ + /** id */ + 'id': number + /** 排名 */ + 'ph': [ number, number ] + /** 固定奖励 */ + 'prize': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 荣誉奖励(itemid:11) */ + 'rongyuprize': number +}>; + +type gc_jjc_tz = k_v<{ + /** id */ + 'id': number + /** 挑战次数 */ + 'num': number + /** 奖励 */ + 'prize': { "a": string, "t": string, "n": number, [x: string]: any }[] +}>; + +type gc_kaifukuanghuan = { "loginPrize": [ { "a": string, "t": string, "n": number, [x: string]: any }[], { "a": string, "t": string, "n": number, [x: string]: any }[], { "a": string, "t": string, "n": number, [x: string]: any }[], { "a": string, "t": string, "n": number, [x: string]: any }[], { "a": string, "t": string, "n": number, [x: string]: any }[], { "a": string, "t": string, "n": number, [x: string]: any }[], { "a": string, "t": string, "n": number, [x: string]: any }[] ], "shop": { "buyNum": number, "day": number, "vip": number, "sale": number, "need": { "a": string, "t": string, "n": number, [x: string]: any }[], "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "taskType": { "今日登陆": string, "今日累计充值x元": string, "任意装备强化至x级": string, "竞技场排名达到x": string, "同时出战x名紫色干部": string, "通过斩草除根关卡": string, "拥有x件蓝色及以上装备": string, "拥有x名进阶+1的干部": string, "佣兵助战上阵x个干部 ": string, "维修厂老实轿车突破到x阶x星 ": string, "干部羁绊属性激活x条 ": string, "玩家等级达到x级": string, "玩家总战力达到x": string, "主线关卡": string, [x: string]: any }, "task": { "1": { "taskId": string, "taskType": string, "total": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tiaozhuan": number, [x: string]: any }[], "2": { "taskId": string, "taskType": string, "total": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tiaozhuan": number, [x: string]: any }[], "3": { "taskId": string, "taskType": string, "total": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tiaozhuan": number, [x: string]: any }[], "4": { "taskId": string, "taskType": string, "total": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tiaozhuan": number, [x: string]: any }[], "5": { "taskId": string, "taskType": string, "total": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tiaozhuan": number, [x: string]: any }[], "6": { "taskId": string, "taskType": string, "total": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tiaozhuan": number, [x: string]: any }[], "7": { "taskId": string, "taskType": string, "total": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tiaozhuan": number, [x: string]: any }[], [x: string]: any }, "taskBoxPrize": { "total": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "email": { "title": string, "content": string, [x: string]: any }, [x: string]: any } + +type gc_kbzz = { "autoApplyNeedVip": number, "time": { "apply": [ number, number ], "applyEnd": [ number, number ], "eventCycle": [ number, number ], [x: string]: any }, "groupNum": number, "troop": { "name": string, [x: string]: any }[], "troopScore": number, "playerScore": number, "winScore": number, "winPrize": { "a": string, "t": string, "n": number, [x: string]: any }[], "failScore": number, "failPrize": { "a": string, "t": string, "n": number, [x: string]: any }[], "scorePrize": { "total": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "playerPrize": { "ph": [ number, number ], "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "troopPrize": { "ph": [ number, number ], "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "fightNum": number, "maxFightNum": number, "recoverFightNum": number, "buyFightNum": [ number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number ], "buyFightNumNeed": { "nums": [ number, number ], "need": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "refreshEnemyNum": number, [x: string]: any } + +type gc_land = k_v<{ + /** 序号 */ + 'id': number + /** 区域类型 */ + 'type': number + /** 第几条街道 */ + 'page': number + /** 此街道上的建筑叫什么名字 */ + 'name': string + /** 街道名称 */ + 'jieName': string + /** 是否为公共街道 */ + 'public_map': number + /** 策划自用 */ + 'intr': string + /** 建筑图标 */ + 'png': string + /** 获得什么道具 */ + 'reward': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 每秒奖励公式 */ + 'formula': string + /** 占领时间 */ + 'time': number +}>; + +type gc_leijichongzhi = { "time": number, "tasks": { "total": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], [x: string]: any } + +type gc_meirishilian = k_v>; + +type gc_meirishilian_com = { "fightNum": number, "fightBuyNum": number, "fightBuyNumNeed": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any } + +type gc_mingdao = k_v<{ + /** ID */ + 'id': number + /** 名刀ID */ + 'dao': number + /** 激活条件 */ + 'condition': [ [ string, number ] ] + /** 最高等级 */ + 'level': number + /** 升级所需材料 */ + 'need': { "a": string, "t": string, "n": number, [x: string]: any } + /** 升级所需 */ + 'needExp': number + /** 修复奖励 */ + 'reward': { [key: string]: { "a": string, "t": string, "n": number, [x: string]: any } } + /** 基础属性 */ + 'buff': { "atk": number, "def": number, "hp": number, [x: string]: any } + /** 每次升级加属性 */ + 'upBuff': { "atk": number, "def": number, "hp": number, [x: string]: any } + /** 特权 */ + 'privilege': { "zjgy_xld": number, [x: string]: any } + /** 名刀图片 */ + 'img': number + /** 名称 */ + 'name': string + /** 描述 */ + 'des': string + /** 特权描述 */ + 'privilege_des': string +}>; + +type gc_mingdao_com = { "crit": { "multiple": number, "p": number, [x: string]: any }[], "addExp": number, "changeNeed": { "a": string, "t": string, "n": number, [x: string]: any }, [x: string]: any } + +type gc_mw_com = { "gift": { "index": number, "need": any[], "free": boolean, "payId": string, "buyNum": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "giftdayprize": { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }, [x: string]: any } + +type gc_mw_dj = k_v<{ + /** 等级 */ + 'id': number + /** 名望称号 */ + 'name': string + /** 星级 */ + 'star': number + /** 等级限制 */ + 'lv': number + /** 提升消耗 */ + 'need': any[] + /** 属性加成 */ + 'buff': { "zj_atk": number, "zj_def": number, "zj_liliang": number, "zj_zhishi": number, [x: string]: any } + /** 图片 */ + 'img': number +}>; + +type gc_name = k_v<{ + /** id */ + 'id': number + /** 前缀 */ + 'qian': string + /** 后缀 */ + 'hou': string +}>; + +type gc_niudanji = { "pay2num": number, "num2lottery": number, "lottery": { "p": number, "pmd": boolean, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], [x: string]: any } + +type gc_npc = k_v<{ + /** NPC编号 */ + 'npcId': number + /** 额外属性 */ + 'attr': k_v + /** NPC列表 */ + 'npclist': string + /** NPC显示等级 */ + 'npcLv': any[] + /** BOSS识别 */ + 'isboss': number + /**工会名称 */ + 'ghname': string + /**npc名称 */ + 'npcname': string +}>; + +type gc_openCond = k_v<{ + /** 功能名称 */ + 'name': string + 'undefined': string + /** 且条件 */ + 'and': { "lv": number, [x: string]: any } + /** 或条件 */ + 'or': { [x: string]: any } + /** 时间(s) */ + 'time': number + /** 未开放时提示 */ + 'tips': string + /** 到达条件就显示 */ + 'display': { "lv": number, [x: string]: any } +}>; + +type gc_openFun = k_v<{ + /** id */ + 'id': number + /** 玩家等级 */ + 'lv': number + /** 名称 */ + 'name': string + 'undefined': string +}>; + +type gc_other = { "item614": { "lv": [ number, number ], "dlz": number, [x: string]: any }[], [x: string]: any } + +type gc_pata = k_v<{ + /** 爬塔层数 */ + 'id': number + /** 关卡 */ + 'npcid': number + /** 通关奖励 */ + 'prize': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 地图 */ + 'img': string + /** 扫荡奖励 */ + 'sdprize': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 是否可以快速挑战 */ + 'quickChallenge': number +}>; + +type gc_patacom = k_v<{ + /** 爬塔层数 */ + 'id': number + /** 层数奖励 */ + 'prize': { "a": string, "t": string, "n": number, [x: string]: any }[] +}>; + +type gc_pay = k_v<{ + /** 充值id */ + 'id': string + 'undefined': string + /** 充值金额 */ + 'money': number + /** 充值增加多少vip经验 */ + 'payExp': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 奖励 */ + 'prize': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 首次充值奖励 */ + 'firstPayPrize': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 名字 */ + 'name': string + /** 购买持续时间 */ + 'time': number + /** 购买次数 */ + 'buys': number + /** vip要求 */ + 'needVip': number + /** 前置购买 */ + 'front': { [x: string]: any } +}>; + +type gc_payEmail = { "caifutequan": { "day": number, "title": string, "content": string, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "jiubatequan": { "day": number, "title": string, "content": string, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "zhongshenka": { "day": number, "title": string, "content": string, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "chaozhiyueka": { "day": number, "title": string, "content": string, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "zhizunyueka": { "day": number, "title": string, "content": string, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], [x: string]: any } + +type gc_peijian = k_v<{ + /** 配件id */ + 'id': number + /** 部位id */ + 'pos': number + /** 名字 */ + 'name': string + 'undefined': string + /** 配件图标 */ + 'icon': string + /** 颜色品质 */ + 'colour': number + /** 是否经验配件 */ + 'isExp': number + /** 转化金币额度 */ + 'conversion': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** buff加成 */ + 'buff': any[] + /** 套装id */ + 'suit': number + /** 拆解奖励 */ + 'rmPrize': any[] + /** 进阶id */ + 'jjid': number + /** 描述 */ + 'intr': string + /** 是否在图鉴显示 */ + 'tujian': number + /** icon上特效 */ + 'advancedEffects': string +}>; + +type gc_peijiancangku = { "warehouse": { "p": number, "index": number, "name": string, "need": { "a": string, "t": string, "n": number, [x: string]: any }[], "drop": { "p": number, "dlz": [ string ], [x: string]: any }[], [x: string]: any }[], "jumpWarehouse": { "index": number, "need": { "a": string, "t": string, "n": number, [x: string]: any }[], "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }, "showAtn": { "a": string, "t": string, [x: string]: any }[], [x: string]: any } + +type gc_peijiancom = { "jinjieLv": number, "jinjieNeed": { "a": string, "t": string, "n": number, [x: string]: any }[], "jinglianColour": [ number ], "backpackNum": number, "resetNeed": { "a": string, "t": string, "n": number, [x: string]: any }[], "gridCond": { [key: string]: { "lv": number, "need": any[], [x: string]: any } }, "suitName": { "0": string, "1": string, "2": string, "3": string, "4": string, "5": string, "6": string, "7": string, "8": string, [x: string]: any }, [x: string]: any } + +type gc_peijian_jl = k_v<{ + /** 等级 */ + 'lv': number + /** 强化等级要求 */ + 'needLv': number + /** 精炼消耗 */ + 'need': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 吞噬的配件数量,配件id是能进阶为当前橙色配件紫色配件 */ + 'peijianNum': number + /** 基础属性加成百分比 */ + 'pro': number +}>; + +type gc_peijian_lv = k_v>; + +type gc_peijian_master = k_v>; + +type gc_PiratesFight = k_v<{ + /** 序号 */ + 'id': number + /** 海盗名称 */ + 'name': string + 'undefined': string + /** 海盗等级/解锁等级 */ + 'lv': number + /** 海盗头像 */ + 'png': string + /** 海盗阵容 */ + 'army': number + /** 海盗实际掉落 */ + 'drop': [ number, number ] + /** 海盗击杀掉落 */ + 'kill_drop': [ number, number ] + /** 海盗展示掉落 */ + 'display_drop': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 海盗复活时间/min */ + 'member': number +}>; + +type gc_playerChatFrame = k_v<{ + /** id */ + 'id': number + /** 名字 */ + 'name': string + /** 图片 */ + 'img': string + /** 解锁条件 */ + 'cond': [ string, number ] + 'undefined': string + /** 说明 */ + 'intr': string + /** 前端排序 */ + 'sort': number + /** buff增益 */ + 'buff': { "defpro": number, [x: string]: any } + /** 品质 */ + 'colour': number + /** 动效 */ + 'ani': string +}>; + +type gc_playerdata = { "data": { "a": string, "t": string, "n": number, [x: string]: any }[], "hero": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any } + +type gc_playerHead = k_v<{ + /** id */ + 'id': number + /** 名字 */ + 'name': string + 'undefined': string + /** 图片 */ + 'img': number + /** 解锁条件 */ + 'cond': [ string, number ] + /** 说明 */ + 'intr': string + /** 前端排序 */ + 'sort': number + /** buff增益 */ + 'buff': { [x: string]: any } + /** 品质 */ + 'colour': number + /** 动效 */ + 'ani': string +}>; + +type gc_playerHeadFrame = k_v<{ + /** id */ + 'id': number + /** 名字 */ + 'name': string + /** 图片 */ + 'img': string + /** 解锁条件 */ + 'cond': [ string, number ] + 'undefined': string + /** 说明 */ + 'intr': string + /** 前端排序 */ + 'sort': number + /** buff增益 */ + 'buff': { [x: string]: any } + /** 品质 */ + 'colour': number + /** 动效 */ + 'ani': string +}>; + +type gc_playerLv = k_v<{ + /** 等级 */ + 'lv': number + /** 所需经验 */ + 'need': number + /** 奖励主角的家点数 */ + 'tujianlv': number +}>; + +type gc_playerModel = k_v>; + +type gc_pmd = { "get_hero_star5_pmd": string, "glkb_pmd": string, "jinjie_peijian": string, "guild_pmd": string, "tlsd_pmd": string, "hbzb_pmd1": string, "hbzb_pmd2": string, "hbzb_pmd3": string, [x: string]: any } + +type gc_qiandao = k_v>; + +type gc_qiandaocom = k_v<{ + /** 天数 */ + 'daynum': number + /** 奖励 */ + 'prize': { "a": string, "t": string, "n": number, [x: string]: any }[] +}>; + +type gc_qirichongzhi = { "time": number, "tasks": { "total": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], [x: string]: any }[] + +type gc_qiridenglu = { "day": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[] + +type gc_qjzzd = { "rankPrize": { "ph": [ number, number ], "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "rankphPrize": { "0": { "ph": [ number, number ], "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "1": { "ph": [ number, number ], "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "2": { "ph": [ number, number ], "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], [x: string]: any }, "email": { "titel": string, "content": string, [x: string]: any }, "fightNum": number, "boss": [ string, string, string ], "bossTime": { "0": [ number, number ], "1": [ number, number ], "2": [ number, number ], [x: string]: any }, "time": [ number, number ], "fightPirze": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "dlz": [ number ], [x: string]: any } }, [x: string]: any } + +type gc_ranking = k_v<{ + /** 排行榜id */ + 'id': number + /** 排行榜类 */ + 'key': string + /** 名字 */ + 'name': string + 'undefined': string + /** 配图 */ + 'img': string + /** 排名内容 */ + 'des': string + /** 背景图 */ + 'bg': string +}>; + +type gc_shilihuizhang = { [key: string]: { "icon": string, [x: string]: any } } + +type gc_shili_com = { "badges": [ string, string, string, string, string ], "defaultNotice": string, "defaultJoinLv": number, "defaultAutoJoin": boolean, "createVip": number, "createNeed": { "a": string, "t": string, "n": number, [x: string]: any }[], "changeNameNeed": { "a": string, "t": string, "n": number, [x: string]: any }[], "juanxian": { "need": { "a": string, "t": string, "n": number, [x: string]: any }[], "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "maxNum": number, "addExp": number, "vipAddNum": any[], [x: string]: any }[], "tanheTime": number, "ghTask": { "total": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "task": { "taskId": string, "taskType": string, "total": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "addExp": number, "title": string, "intr": string, "tiaozhuan": number, [x: string]: any }[], "maxNameLength": number, "maxNoticeLength": number, "exitGuildConfirm": string, "fightNum": number, "fightNumBuyNeed": { "a": string, "t": string, "n": number, [x: string]: any }[], "email": { "titel": string, "content": string, [x: string]: any }, "resHelp": { "need": { "a": string, "t": string, "n": number, [x: string]: any }, "num": number, "helpPrizeDrop": string, [x: string]: any }[], [x: string]: any } + +type gc_shili_fb = k_v<{ + /** 副本id */ + 'id': number + /** 章节 */ + 'chapters': number + /** 关卡图片 */ + 'img': string + /** 关卡怪物 */ + 'npc': number + /** 战斗奖励(掉落组) */ + 'fightPrize': [ number, number ] + /** 贡献奖励 */ + 'gongxianprize': number + /** 名字 */ + 'name': string + /** boss人物 */ + 'bossspine': number +}>; + +type gc_shili_fbyj = k_v<{ + /** 副本id */ + 'id': number + /** 排名区间 */ + 'rank': [ number, number ] + /** 邮件奖励 */ + 'prize': { "a": string, "t": string, "n": number, [x: string]: any }[] +}[]>; + +type gc_shili_lv = k_v<{ + /** 等级 */ + 'lv': number + /** 所需贡献 */ + 'exp': number + /** 最大人数 */ + 'maxNum': number +}>; + +type gc_shili_wz = k_v>; + +type gc_shiwu = k_v<{ + /** id */ + 'id': number + /** 名称 */ + 'name': string + 'undefined': string + /** 图标 */ + 'icon': string + /** 穿戴等级 */ + 'lv': number + /** 精炼下一个ID */ + 'next': number + /** 基础属性及区间 */ + 'buff': { "mindps": [ number, number ], [x: string]: any } + /** 专属概率 */ + 'zhuanshu': number +}>; + +type gc_shiwucom = { "base": { "jichu_colour": { "2": number, "3": number, "4": number, "5": number, [x: string]: any }, "hero_zhuanshu": [ number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number ], "fujia_colour": { "buffRandom": { "range": [ number, number ], "buff": { "hppro": [ number, number ], [x: string]: any }[], [x: string]: any }[], "color": { "range": [ number, number ], "color": number, [x: string]: any }[], [x: string]: any }, "fujianum_colour": { "2": number, "3": number, "4": number, "5": number, [x: string]: any }, "putongxilian": { "a": string, "t": string, "n": string, [x: string]: any }, "gaojixilian": { [key: string]: { "a": string, "t": string, "n": number, [x: string]: any } }, "buff_zhuanshu": { "hppro": number, "p": number, [x: string]: any }[], "skill_zhuanshu": { "id": string, "p": number, [x: string]: any }[], "chongzhuneed1": { "a": string, "t": string, "n": number, [x: string]: any }, "chongzhuneed2": { "a": string, "t": string, "n": number, [x: string]: any }, "chongzhurate": { "buff_zhuanshu": number, "skill_zhuanshu": number, [x: string]: any }, "tilian": { "2": { "a": string, "t": string, "n": number, [x: string]: any }[], "3": { "a": string, "t": string, "n": number, [x: string]: any }[], "4": { "a": string, "t": string, "n": number, [x: string]: any }[], "5": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }, "tilianhuobi": { "a": string, "t": string, [x: string]: any }, "tilianfactor": { "2": number, "3": number, "4": number, "5": number, [x: string]: any }, [x: string]: any }, "comment": { "jichu_colour": string, "fujia_colour": string, "fujianum_colour": string, "putongxilian": string, "gaojixilian": string, "hero_zhuanshu": string, "buff_zhuanshu": string, "skill_zhuanshu": string, "chongzhuneed": string, "chongzhurate": string, "tilianhuobi": string, [x: string]: any }, [x: string]: any } + +type gc_shiwuleichong = { "dayPayNeed": number, "data": { "time": number, "tasks": { "total": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], [x: string]: any }[], [x: string]: any } + +type gc_shoot = { [key: string]: { "name": string, "num": number, "speed": number, "cartridge": number, "time": number, "prize": { [key: string]: { "describe": string, "hit": number, "content": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any } }, [x: string]: any } } + +type gc_shop = k_v<{ + /** 商店id */ + 'id': number + /** 商店类型 */ + 'type': number + /** 商店名字 */ + 'name': string + 'undefined': string + /** 开启条件 */ + 'openCond': [ string, number ] + /** 自动刷新间隔 */ + 'autoRefreshTime': number + /** 手动刷新消耗 */ + 'recoilRefreshNeed': any[] + /** 手动刷新次数 */ + 'recoilRefreshNum': number + /** 免费刷新次数刷新间隔 */ + 'freeRefreshInterval': number + /** 免费刷新次数 */ + 'freeRefreshNum': number + /** 商品组 */ + 'shopItems': [ number, number, number, number, number, number, number, number, number, number, number, number ] + /** 展示道具 */ + 'showItem': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** vip增加的手动刷新次数 */ + 'vip': any[] + /** 看板娘图片 */ + 'npcImg': number + /** 商店看板娘说话 */ + 'npcText': string +}>; + +type gc_shopcom = k_v<{ + /** ID */ + 'id': number + /** 商店表ID */ + 'shopId': number + /** 商店表类型 */ + 'shopType': number + /** 标题 */ + 'title': string + 'undefined': string + /** 开启条件 */ + 'openCond': string + /** 描述 */ + 'des': string + /** 图片 */ + 'img': string + /** 展示货币 */ + 'cost': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 看板娘图片 */ + 'npcImg': string + /** 商店看板娘说话 */ + 'npcText': string +}>; + +type gc_shopItem = k_v<{ + /** 掉落组 */ + 'id': number + /** 掉落类型 */ + 'a': string + /** 掉落id */ + 't': number + /** 掉落数量 */ + 'n': number + /** 权重 */ + 'p': number + /** 品质 */ + 'colour': number + /** 购买次数 */ + 'buyNum': number + /** 开服多少天之后开启 */ + 'openDay': number + /** 购买消耗(计算了折扣后的消耗) */ + 'buyNeed': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 折扣(仅前端显示用) */ + 'sale': number + /** vip需要达到多少才可购买 */ + 'needVip': number + /** 需要通关斩草除根关卡数 */ + 'needZCCG': number + /** 玩家等级 */ + 'lv': [ number, number ] + /** vip增加购买次数 */ + 'vipAddbuyNum': [ number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number ] +}[]>; + +type gc_shoucangpin = k_v>; + +type gc_shouchong = { [key: string]: { "paynum": number, "cartoon": { "hero": number, [x: string]: any }, "prize": [ { "a": string, "t": string, "n": number, [x: string]: any }[], { "a": string, "t": string, "n": number, [x: string]: any }[], { "a": string, "t": string, "n": number, [x: string]: any }[] ], [x: string]: any } } + +type gc_skillani = k_v<{ + /** 技能id */ + 'id': string + /** 角色 */ + 'name': string + /** 技能名称 */ + 'jnname': string + /** 类型 */ + 'type': string + /** 角色移动类型 */ + 'movetype': string + /** 伤害分段 */ + 'atknum': number + /** 每段伤害的权重 */ + 'frequencyArr': [ number, number, number ] + /** 受击动效 */ + 'hitani': string + /** 受击动效类型 */ + 'hitanitype': number + /** 全屏氛围 */ + 'hitAniBg': string + /** 震屏幅度 */ + 'shake': [ number ] + /** 技能音效 */ + 'sound': string + /** 受击音效 */ + 'sjsound': string +}>; + +type gc_skillintr = k_v<{ + /** 技能id */ + 'skillid': number + /** 主动技能图标 */ + 'skillicon': string + /** 名字 */ + 'name': string + /** 技能描述 */ + 'describe': string +}>; + +type gc_skill_afteratk = k_v<{ + /** 技能ID */ + 'skillid': number + /** 技能类型 */ + 'type': number + /** 攻击动作 */ + 'act': string + /** 选敌类型 */ + 'side': number + /** 释放概率 */ + 'randnum': number + /** 目标选敌 */ + 'order': string + /** 选敌数量 */ + 'limit': number + /** 数据 */ + 'data': { "pro": number, [x: string]: any } + /** 检测条件 */ + 'chkdata': { [x: string]: any } + /** 其他数据 */ + 'ext': { "mofa": number, "islong": number, [x: string]: any } + /** 描述 */ + 'describe': string +}>; + +type gc_skill_atk = k_v<{ + /** 技能id */ + 'skillid': number + /** 技能名称 */ + 'name': string + /** atk/skill */ + 'atkType': string + /** 技能类型 */ + 'type': number + /** 选敌类型 */ + 'side': number + /** 排序选择 */ + 'order': string + /** 数量 */ + 'limit': number + /** 受控是否触发 */ + 'constrol': number + /** 攻击后技能 */ + 'v': [ string ] + /** 技能描述 */ + 'describe': string +}>; + +type gc_skill_buff = k_v<{ + /** 技能id */ + 'skillid': number + /** 技能类型 */ + 'type': number + /** 选敌类型 */ + 'side': number + /** 排序选择 */ + 'order': string + /** 数量 */ + 'limit': number + /** 概率 */ + 'randnum': number + /** 效果(固定为buff) */ + 'act': string + /** buff类型 */ + 'sxleixing': string + /** buff增减益 */ + 'buff_type': number + /** 效果参数 */ + 'xiaoguocanshu': { [x: string]: any } + /** 持续回合 */ + 'round': number + /** buff 组 */ + 'group': number + /** 叠加效果 */ + 'jiejiaxiaoguo': string + /** 叠加层数 */ + 'diejiacengshu': number +}>; + +type gc_skill_passive = k_v<{ + /** 技能id */ + 'skillid': number + /** 技能类型 */ + 'type': number + /** 被动ID */ + 'bdid': string + /** 选敌类型 */ + 'side': number + /** 排序选择 */ + 'order': string + /** 数量 */ + 'limit': number + /** 概率 */ + 'randnum': number + /** 触发技能 */ + 'v': { "runskill": [ string ], [x: string]: any } + /** 持续时间 */ + 'round': number + /** 触发条件 */ + 'chkdata': { "when": string, "side": number, [x: string]: any } + /** 技能描述 */ + 'describe': string +}>; + +type gc_slzd = { "openDay": number, "openTime": [ number, number ], "schedulerPrize": number, "schedulerGroup": number, "forts": { [key: string]: { "name": string, "npc": { "lvs": [ number, number ], "npcs": [ string, string, string ], [x: string]: any }[], "prize": { "ph": [ number, number ], "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "luckPrize": { "need": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }, "joinPrize": { "need": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }, [x: string]: any } }, "slotDrop": string, "slotNeed": { "a": string, "t": string, "n": number, [x: string]: any }[], "slotBingo": { "a": string, "t": string, [x: string]: any }[], "replyCd": number, "maxFightNum": number, "ctorFightNum": number, "buyFightNum": [ number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number ], "buyFightNumNeed": { "nums": [ number, number ], "need": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "refreshNum": number, "refreshNeed": { "a": string, "t": string, "n": number, [x: string]: any }[], "fightWinNumPrize": { "total": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "email_prize": { "title": string, "content": string, [x: string]: any }, "email_luck": { "title": string, "content": string, [x: string]: any }, "email_join": { "title": string, "content": string, [x: string]: any }, [x: string]: any } + +type gc_swskillcom = k_v<{ + /** 技能ID */ + 'id': string + /** 技能描述 */ + 'name': string + /** 策划自用 */ + 'intr': string +}>; + +type gc_tanxian = k_v<{ + /** 关卡id */ + 'id': number + /** 章节 */ + 'chapter': number + /** 地图 */ + 'mapbg': string + /** 解锁等级 */ + 'needLv': number + /** 关卡BOSS */ + 'npcId': number + /** 关卡名称 */ + 'name': string + /** 挂机奖励 */ + 'gjPrize': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 掉落组产出 */ + 'dlz': any[] + /** 通关奖励 */ + 'passPrize': [ number, number, number, number, number, number, number, number, number, number ] + /** 美金事件基数 */ + 'base': number + /** 美金时间档 */ + 'round': [ number, number, number ] + /** 事件掉落组 */ + 'drop': [ number, number ] + /** 关卡位置 */ + 'pos': [ number, number ] + /** 战斗地图 */ + 'fightmap': string +}>; + +type gc_tanxian_com = { "fastGuaJiNum": number, "fastGuaJiFreeNum": number, "fastGuaJiTime": number, "fastGuaJiNeed": [ number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number ], "fastGuaJiNumAddBuyVip": [ number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number ], "guaJiPrizeInterval": number, "guaJiDlzInterval": number, "maxGuaJiTime": number, "eventCd": number, "event": { "p": number, "type": string, "round": [ number, number, number ], [x: string]: any }[], [x: string]: any } + +type gc_tanxian_shiwu = k_v<{ + /** 序号 */ + 'id': number + /** 玩家等级 */ + 'level': [ number, number ] + /** 掉落组ID */ + 'diaoluo': number + /** 挂机掉落组ID */ + 'guajidiaoluo': number +}>; + +type gc_tanxian_tgjl = k_v<{ + /** 通关奖励id */ + 'id': number + /** 需要通关的地图id */ + 'mapId': number + /** 奖励 */ + 'prize': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 所在章节 */ + 'chapter': number + /** 描述 */ + 'des': string +}>; + +type gc_task = k_v>; + +type gc_tujian_jc = k_v<{ + /** id */ + 'id': number + /** 进度 */ + 'jindu': number + /** 加成 */ + 'buff': { "zj_liliang": number, "zj_zhishi": number, [x: string]: any } +}>; + +type gc_usercom = { "changeName": { "a": string, "t": string, "n": string, [x: string]: any }, [x: string]: any } + +type gc_vip = k_v<{ + /** vip等级 */ + 'vip': number + /** 所需经验 */ + 'exp': number +}>; + +type gc_wangzherongyao = { "comment": { [x: string]: any }, "wangzhe": { "bmneed": { "lv": number, [x: string]: any }, "dldrefrenum": number, "dlpknum": number, "bmprize": { "a": string, "t": string, "n": number, [x: string]: any }[], "timestatus": { "stime": number, "etime": number, "status": number, "stage": string, "desc": string, [x: string]: any }[], "eventtime": { "autobaomingtime": number, "dldstart": number, "start256": number, "start64": number, "zuanshisaisendprize": number, "start8": number, "wanzhesaisendprize": number, [x: string]: any }, "noupdate": any[], "addnpcid": [ number, number ], "jiangli": { "dld": { "intr": string, "jifen": number, "p": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "zuanshi": { "intr": string, "p": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "wangzhe": { "intr": string, "p": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], [x: string]: any }, "email": { [key: string]: { "title": string, "content": string, [x: string]: any } }, "guess": { [key: string]: { "needvip": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "name": string, "intr": string, "addmoney": number, [x: string]: any } }, [x: string]: any }, [x: string]: any } + +type gc_weixiuchang_dz = k_v<{ + /** id */ + 'id': number + /** 1合成2打造 */ + 'type': number + /** 材料道具 */ + 'item': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 获得(掉落组) */ + 'target': number + /** 成功概率 */ + 'success': number + /** 失败奖励(掉落组) */ + 'lose': number + /** 合成列表标题 */ + 'title': string +}>; + +type gc_weixiuchang_zz = k_v<{ + /** id */ + 'id': number + /** 座驾名称 */ + 'name': string + /** 座驾图片 */ + 'car': string + /** 零件图片 */ + 'parts': number + /** 阶级 */ + 'stage': number + /** 星级 */ + 'star': number + /** 升级消耗 */ + 'need': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 直接升级购买消耗 */ + 'need2': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 属性 */ + 'buff': { "1": { "zj_liliang": number, [x: string]: any }, "2": { "zj_def": number, [x: string]: any }, "3": { "zj_atk": number, [x: string]: any }, "4": { "zj_zhishi": number, [x: string]: any }, "5": { "zj_atk": number, [x: string]: any }, [x: string]: any } + /** 组装额外属性 */ + 'buff2': { "zj_liliang": number, "zj_atk": number, "zj_zhishi": number, "zj_def": number, [x: string]: any } + /** 关卡获得材料掉落组ID */ + 'drop': number +}>; + +type gc_xianshilibao = { [key: string]: { "payId": string, "time": number, [x: string]: any } } + +type gc_xianshizhaomu = { "time": [ number, number ], "oneNeed": { "a": string, "t": string, "n": number, [x: string]: any }[], "tenNeed": { "a": string, "t": string, "n": number, [x: string]: any }[], "onePrize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tenPrize": { "a": string, "t": string, "n": number, [x: string]: any }[], "oneDrop": [ number ], "tenDrop": [ number, number, number, number, number, number, number, number, number, number ], "oneReplace": { "num": number, "drop": [ number ], [x: string]: any }, "eventPrize": { "total": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "gift": { "need": any[], "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "num": number, "payId": string, [x: string]: any }[], "duihuan": { "need": { "a": string, "t": string, "n": number, [x: string]: any }[], "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "num": number, [x: string]: any }[], "rankPrize": { "ph": [ number, number ], "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "email": { "title": string, "content": string, [x: string]: any }, [x: string]: any } + +type gc_xinshoulibao = { "time": number, "pays": { "payId": string, [x: string]: any }[], [x: string]: any }[] + +type gc_xstask = k_v<{ + /** 任务id */ + 'id': number + /** 任务名称 */ + 'name': string + /** 品质 */ + 'colour': number + /** 时间 */ + 'time': number + /** 最大派遣英雄数量 */ + 'needNum': number + /** 需要的总星级 */ + 'needStar': number + /** 需要的总战力 */ + 'needZhanli': number + /** 奖励 */ + 'prize': { "a": string, "t": string, "n": number, [x: string]: any }[] + /** 权重 */ + 'p': number + /** 任务描述 */ + 'intr': string + /** 图片 */ + 'img': string +}>; + +type gc_xstaskcom = { "freeRefreshNum": number, "refreshNeed": { "a": string, "t": string, "n": number, [x: string]: any }[], "jiasu": { "time": [ number, number ], "need": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "lv": { [key: string]: { "taskColor": [ number ], "maxTaskNum": number, "need": number, [x: string]: any } }, [x: string]: any } + +type gc_xunlianjihua = k_v<{ + /** 技能id */ + 'id': number + /** 技能名称 */ + 'name': string + 'undefined': string + /** 技能图标 */ + 'icon': string + /** 页签类型 */ + 'tab': number + /** 技能位置 */ + 'xysite': string + /** 是否可使用 */ + 'use': number + /** 技能类型文本 */ + 'skillType': string + /** 等级上限 */ + 'lv': number + /** 消耗训练点 */ + 'need': number + /** 总点数条件 */ + 'cond': number + /** 前置技能及点数 */ + 'front': [ number, number ] + /** 关联技能组 */ + 'relevance': number + /** 对应技能ID */ + 'skill': string + /** 技能描述 */ + 'describe': string + /** 计算公式 */ + 'v': [ string ] + /** 描述显示系数 */ + 'desCoefficient': [ number ] + /** 策划看技能描述 */ + 'intr': string +}>; + +type gc_yangchengmubiao = { "1": { "1": string, "2": string, "time": { "start": number, "end": number, "hdid": number, "ttype": number, [x: string]: any }, "intr0": string, "intr1": string, "intr2": string, "intr3": string, "intr4": string, "name": string, "icon": string, "tab0": string, "tab1": string, "tab2": string, "tab3": string, "tab4": string, "gift": { "index": number, "need": any[], "free": boolean, "payId": string, "buyNum": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "maxlun": [ [ number ], number ], "tasklist": { "1": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": [ string ], "stype": number, "zero": number, [x: string]: any } }, "2": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": [ string ], "stype": number, [x: string]: any } }, "3": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": any[], "stype": number, [x: string]: any } }, "4": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": [ string ], "stype": number, [x: string]: any } }, [x: string]: any }, [x: string]: any }, "3": { "3": string, "time": { "start": number, "end": number, "hdid": number, "ttype": number, [x: string]: any }, "intr0": string, "intr3": string, "intr4": string, "name": string, "icon": string, "tab0": string, "tab3": string, "tab4": string, "gift": { "index": number, "need": { "a": string, "t": string, "n": number, [x: string]: any }[], "free": boolean, "payId": string, "buyNum": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "maxlun": any[], "tasklist": { "3": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": any[], "stype": number, [x: string]: any } }, "4": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": [ string ], "stype": number, "zero": number, [x: string]: any } }, [x: string]: any }, [x: string]: any }, "4": { "3": string, "time": { "start": number, "end": number, "hdid": number, "ttype": number, [x: string]: any }, "intr0": string, "intr3": string, "intr4": string, "name": string, "icon": string, "tab0": string, "tab3": string, "tab4": string, "gift": { "index": number, "need": { "a": string, "t": string, "n": number, [x: string]: any }[], "free": boolean, "payId": string, "buyNum": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "maxlun": any[], "tasklist": { "3": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": any[], "stype": number, [x: string]: any } }, "4": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": [ string ], "stype": number, [x: string]: any } }, [x: string]: any }, [x: string]: any }, "5": { "3": string, "time": { "start": number, "end": number, "hdid": number, "ttype": number, [x: string]: any }, "intr0": string, "intr3": string, "intr4": string, "name": string, "icon": string, "tab0": string, "tab3": string, "tab4": string, "gift": { "index": number, "need": { "a": string, "t": string, "n": number, [x: string]: any }[], "free": boolean, "payId": string, "buyNum": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "maxlun": any[], "tasklist": { "3": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": any[], "stype": number, [x: string]: any } }, "4": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": [ string ], "stype": number, [x: string]: any } }, [x: string]: any }, [x: string]: any }, "6": { "3": string, "time": { "start": number, "end": number, "hdid": number, "ttype": number, [x: string]: any }, "intr0": string, "intr3": string, "intr4": string, "name": string, "icon": string, "tab0": string, "tab3": string, "tab4": string, "gift": { "index": number, "need": { "a": string, "t": string, "n": number, [x: string]: any }[], "free": boolean, "payId": string, "buyNum": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "maxlun": any[], "tasklist": { "3": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": any[], "stype": number, [x: string]: any } }, "4": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": [ string ], "stype": number, "zero": number, [x: string]: any } }, [x: string]: any }, [x: string]: any }, "7": { "time": { "start": number, "end": number, "hdid": number, "ttype": number, [x: string]: any }, "intr0": string, "intr3": string, "intr4": string, "name": string, "icon": string, "tab0": string, "tab3": string, "tab4": string, "gift": { "index": number, "need": { "a": string, "t": string, "n": number, [x: string]: any }[], "free": boolean, "payId": string, "buyNum": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "maxlun": any[], "tasklist": { "3": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": any[], "stype": number, [x: string]: any } }, "4": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": [ string ], "stype": number, [x: string]: any } }, [x: string]: any }, [x: string]: any }, "8": { "3": string, "time": { "start": number, "end": number, "hdid": number, "ttype": number, [x: string]: any }, "intr0": string, "intr3": string, "intr4": string, "name": string, "icon": string, "tab0": string, "tab3": string, "tab4": string, "gift": { "index": number, "need": { "a": string, "t": string, "n": number, [x: string]: any }[], "free": boolean, "payId": string, "buyNum": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "maxlun": any[], "tasklist": { "3": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": any[], "stype": number, [x: string]: any } }, "4": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": [ string ], "stype": number, [x: string]: any } }, [x: string]: any }, [x: string]: any }, "9": { "time": { "start": number, "end": number, "hdid": number, "ttype": number, [x: string]: any }, "intr0": string, "intr3": string, "intr4": string, "name": string, "icon": string, "tab0": string, "tab3": string, "tab4": string, "gift": { "index": number, "need": { "a": string, "t": string, "n": number, [x: string]: any }[], "free": boolean, "payId": string, "buyNum": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "maxlun": any[], "tasklist": { "3": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": any[], "stype": number, [x: string]: any } }, "4": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": [ string ], "stype": number, [x: string]: any } }, [x: string]: any }, [x: string]: any }, "10": { "3": string, "time": { "start": number, "end": number, "hdid": number, "ttype": number, [x: string]: any }, "intr0": string, "intr3": string, "intr4": string, "name": string, "icon": string, "tab0": string, "tab3": string, "tab4": string, "gift": { "index": number, "need": { "a": string, "t": string, "n": number, [x: string]: any }[], "free": boolean, "payId": string, "buyNum": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "maxlun": any[], "tasklist": { "3": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": any[], "stype": number, [x: string]: any } }, "4": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": [ string ], "stype": number, [x: string]: any } }, [x: string]: any }, [x: string]: any }, "11": { "3": string, "time": { "start": number, "end": number, "hdid": number, "ttype": number, [x: string]: any }, "intr0": string, "intr3": string, "intr4": string, "name": string, "icon": string, "tab0": string, "tab3": string, "tab4": string, "gift": { "index": number, "need": { "a": string, "t": string, "n": number, [x: string]: any }[], "free": boolean, "payId": string, "buyNum": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "maxlun": any[], "tasklist": { "3": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": any[], "stype": number, [x: string]: any } }, "4": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": [ string ], "stype": number, [x: string]: any } }, [x: string]: any }, [x: string]: any }, "12": { "3": string, "time": { "start": number, "end": number, "hdid": number, "ttype": number, [x: string]: any }, "intr0": string, "intr3": string, "intr4": string, "name": string, "icon": string, "tab0": string, "tab3": string, "tab4": string, "gift": { "index": number, "need": { "a": string, "t": string, "n": number, [x: string]: any }[], "free": boolean, "payId": string, "buyNum": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "maxlun": any[], "tasklist": { "3": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": any[], "stype": number, [x: string]: any } }, "4": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": [ string ], "stype": number, "zero": number, [x: string]: any } }, [x: string]: any }, [x: string]: any }, "13": { "time": { "start": number, "end": number, "hdid": number, "ttype": number, [x: string]: any }, "intr0": string, "intr3": string, "intr4": string, "name": string, "icon": string, "tab0": string, "tab3": string, "tab4": string, "gift": { "index": number, "need": { "a": string, "t": string, "n": number, [x: string]: any }[], "free": boolean, "payId": string, "buyNum": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "maxlun": any[], "tasklist": { "3": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": any[], "stype": number, [x: string]: any } }, "4": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": [ string ], "stype": number, [x: string]: any } }, [x: string]: any }, [x: string]: any }, "100": { "2": string, "time": { "start": number, "end": number, "hdid": number, "ttype": number, [x: string]: any }, "intr2": string, "intr4": string, "name": string, "icon": string, "tab2": string, "tab4": string, "gift": { "index": number, "need": any[], "free": boolean, "payId": string, "buyNum": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "maxlun": [ [ number ], number ], "tasklist": { "2": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": any[], "stype": number, [x: string]: any } }, [x: string]: any }, [x: string]: any }, "101": { "2": string, "time": { "start": number, "end": number, "hdid": number, "ttype": number, [x: string]: any }, "intr2": string, "intr4": string, "name": string, "icon": string, "tab2": string, "tab4": string, "gift": { "index": number, "need": any[], "free": boolean, "payId": string, "buyNum": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "maxlun": [ [ number ], number ], "tasklist": { "2": { [key: string]: { "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "tujing": string, "title": string, "type": number, "pval": number, "cond": any[], "stype": number, [x: string]: any } }, [x: string]: any }, [x: string]: any }, [x: string]: any } + +type gc_yibaichou = { "onlinePrize": { "total": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], "loginPrize": { "total": number, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], [x: string]: any } + +type gc_yuedujijin = { "payId": string, "prize": { "a": string, "t": string, "n": number, [x: string]: any }[], "intr": string, "num": number, [x: string]: any }[] + +type gc_zhangjie = k_v<{ + /** 章节id */ + 'id': number + /** 章节名 */ + 'name': string + 'undefined': string + /** 亮图建筑 */ + 'liangImg': string + /** 灰图建筑 */ + 'anImg': string + /** 坐标 */ + 'xy': [ number, number ] +}>; + +type gc_zhanling = { "eventOpen": k_v, "payId": string, "payAddLv": number, "email": { "title": string, "content": string, [x: string]: any }, "task": { "intr": string, "taskId": string, "type": string, "total": number, "exp": number, "tiaozhuan": number, [x: string]: any }[], "lvNeed": { "a": string, "t": string, "n": number, [x: string]: any }[], "lv": { "2": number, "3": number, "4": number, "5": number, "6": number, "7": number, "8": number, "9": number, "10": number, "11": number, "12": number, "13": number, "14": number, "15": number, "16": number, "17": number, "18": number, "19": number, "20": number, "21": number, "22": number, "23": number, "24": number, "25": number, "26": number, "27": number, "28": number, "29": number, "30": number, "31": number, "32": number, "33": number, "34": number, "35": number, "36": number, "37": number, "38": number, "39": number, "40": number, "41": number, "42": number, "43": number, "44": number, "45": number, "46": number, "47": number, "48": number, "49": number, "50": number, [x: string]: any }, "prize": { "lv": number, "pt": { "a": string, "t": string, "n": number, [x: string]: any }[], "tq": { "a": string, "t": string, "n": number, [x: string]: any }[], [x: string]: any }[], [x: string]: any } + +type gc_zhuanshu = k_v>>; + +type gc_zixuanlibao = { "time": number, "intr": string, "gift": { "need": any[], "free": boolean, "payId": string, "buyNum": number, "prize": [ { "a": string, "t": string, "n": number, [x: string]: any }[], { "a": string, "t": string, "n": number, [x: string]: any }[] ], [x: string]: any }[], [x: string]: any } + +type gcType = { + [key: string]: any + armyattr: gc_armyattr + attr: gc_attr + boss: gc_boss + buff: gc_buff + chongzhi: gc_chongzhi + choujiang: gc_choujiang + chuanshuozhilu: gc_chuanshuozhilu + clsl_com: gc_clsl_com + clsl_dan: gc_clsl_dan + com: gc_com + common: gc_common + diaoluo: gc_diaoluo + diaoluoduihuan: gc_diaoluoduihuan + dixiaheishi: gc_dixiaheishi + dixiaqianzhuang: gc_dixiaqianzhuang + dxlt_com: gc_dxlt_com + dxlt_layer: gc_dxlt_layer + dxlt_mb: gc_dxlt_mb + dxlt_shop: gc_dxlt_shop + equip: gc_equip + equipAdjusting: gc_equipAdjusting + equiplvup: gc_equiplvup + equipMaster: gc_equipMaster + equipstar: gc_equipstar + equipSuit: gc_equipSuit + eventOpen: gc_eventOpen + exchangeRate: gc_exchangeRate + fightPlan: gc_fightPlan + friend: gc_friend + ganbutexun: gc_ganbutexun + ganhai: gc_ganhai + gonglukuangbiao: gc_gonglukuangbiao + group: gc_group + guanlidiaodu: gc_guanlidiaodu + guide: gc_guide + hbzb: gc_hbzb + hero: gc_hero + heroAbility: gc_heroAbility + herocom: gc_herocom + herogrow: gc_herogrow + herolv: gc_herolv + herolvup: gc_herolvup + heroskill: gc_heroskill + hero_jx: gc_hero_jx + hero_qianneng: gc_hero_qianneng + hero_tf: gc_hero_tf + huobanzhaomu: gc_huobanzhaomu + huodong: gc_huodong + item: gc_item + jierihuodong: gc_jierihuodong + jijin: gc_jijin + jjc_com: gc_jjc_com + jjc_npc: gc_jjc_npc + jjc_ph: gc_jjc_ph + jjc_tz: gc_jjc_tz + kaifukuanghuan: gc_kaifukuanghuan + kbzz: gc_kbzz + land: gc_land + leijichongzhi: gc_leijichongzhi + meirishilian: gc_meirishilian + meirishilian_com: gc_meirishilian_com + mingdao: gc_mingdao + mingdao_com: gc_mingdao_com + mw_com: gc_mw_com + mw_dj: gc_mw_dj + name: gc_name + niudanji: gc_niudanji + npc: gc_npc + openCond: gc_openCond + openFun: gc_openFun + other: gc_other + pata: gc_pata + patacom: gc_patacom + pay: gc_pay + payEmail: gc_payEmail + peijian: gc_peijian + peijiancangku: gc_peijiancangku + peijiancom: gc_peijiancom + peijian_jl: gc_peijian_jl + peijian_lv: gc_peijian_lv + peijian_master: gc_peijian_master + PiratesFight: gc_PiratesFight + playerChatFrame: gc_playerChatFrame + playerdata: gc_playerdata + playerHead: gc_playerHead + playerHeadFrame: gc_playerHeadFrame + playerLv: gc_playerLv + playerModel: gc_playerModel + pmd: gc_pmd + qiandao: gc_qiandao + qiandaocom: gc_qiandaocom + qirichongzhi: gc_qirichongzhi + qiridenglu: gc_qiridenglu + qjzzd: gc_qjzzd + ranking: gc_ranking + shilihuizhang: gc_shilihuizhang + shili_com: gc_shili_com + shili_fb: gc_shili_fb + shili_fbyj: gc_shili_fbyj + shili_lv: gc_shili_lv + shili_wz: gc_shili_wz + shiwu: gc_shiwu + shiwucom: gc_shiwucom + shiwuleichong: gc_shiwuleichong + shoot: gc_shoot + shop: gc_shop + shopcom: gc_shopcom + shopItem: gc_shopItem + shoucangpin: gc_shoucangpin + shouchong: gc_shouchong + skillani: gc_skillani + skillintr: gc_skillintr + skill_afteratk: gc_skill_afteratk + skill_atk: gc_skill_atk + skill_buff: gc_skill_buff + skill_passive: gc_skill_passive + slzd: gc_slzd + swskillcom: gc_swskillcom + tanxian: gc_tanxian + tanxian_com: gc_tanxian_com + tanxian_shiwu: gc_tanxian_shiwu + tanxian_tgjl: gc_tanxian_tgjl + task: gc_task + tujian_jc: gc_tujian_jc + usercom: gc_usercom + vip: gc_vip + wangzherongyao: gc_wangzherongyao + weixiuchang_dz: gc_weixiuchang_dz + weixiuchang_zz: gc_weixiuchang_zz + xianshilibao: gc_xianshilibao + xianshizhaomu: gc_xianshizhaomu + xinshoulibao: gc_xinshoulibao + xstask: gc_xstask + xstaskcom: gc_xstaskcom + xunlianjihua: gc_xunlianjihua + yangchengmubiao: gc_yangchengmubiao + yibaichou: gc_yibaichou + yuedujijin: gc_yuedujijin + zhangjie: gc_zhangjie + zhanling: gc_zhanling + zhuanshu: gc_zhuanshu + zixuanlibao: gc_zixuanlibao +} + + +declare global { + type _gcType = gcType; +} + +export function initGcType () { + +} + \ No newline at end of file diff --git a/src/lng.ts b/src/lng.ts new file mode 100644 index 0000000..3c4e130 --- /dev/null +++ b/src/lng.ts @@ -0,0 +1,346 @@ + +declare global { + var lng: Lng; +} + +export function createLng() { + globalThis.lng = new Lng(); +} + +class Lng { + + hero_not_exist = 'hero_not_exist'; + hero_sz_err1 = 'hero_sz_err1'; + hero_sz_err2 = 'hero_sz_err2'; + hero_sz_err3 = 'hero_sz_err3'; + hero_sz_err4 = 'hero_sz_err4'; + + hero_lv_err1 = 'hero_lv_err1'; + hero_jj_err1 = 'hero_jj_err1'; + hero_jj_err2 = 'hero_jj_err2'; + hero_jj_err3 = 'hero_jj_err3'; + hero_jj_err4 = 'hero_jj_err4'; + hero_jj_err5 = 'hero_jj_err5'; + hero_jj_err6 = 'hero_jj_err6'; + + hero_equip_open = 'hero_equip_open'; + hero_equip_wear = 'hero_equip_wear'; + hero_equip_take_err1 = 'hero_equip_take_err1'; + hero_equip_take_err2 = 'hero_equip_take_err2'; + hero_equip_take_err3 = 'hero_equip_take_err3'; + hero_equip_lv_up_err1 = 'hero_equip_lv_up_err1'; + hero_equip_lv_up_max = 'hero_equip_lv_up_max'; + hero_equip_star_up_err = 'hero_equip_star_up_err'; + + pata_fight_1 = 'pata_fight_1'; + pata_fight_2 = 'pata_fight_2'; + pata_getprize_1 = 'pata_getprize_1'; + pata_getprize_2 = 'pata_getprize_2'; + pata_getprize_3 = 'pata_getprize_3'; + + user_zaoxing_1 = 'user_zaoxing_1'; + user_zaoxing_2 = 'user_zaoxing_2'; + + user_cdkey_1 = 'user_cdkey_1'; + user_cdkey_2 = 'user_cdkey_2'; + + rank_kbzz = 'rank_kbzz'; + + sign_boxprize_1 = 'sign_boxprize_1'; + sign_boxprize_2 = 'sign_boxprize_2'; + sign_boxprize_3 = 'sign_boxprize_3'; + + dixaiqianzhuang_1 = 'dixaiqianzhuang_1'; + kudangdong_1 = 'kudangdong_1'; + kudangdong_2 = 'kudangdong_2'; + kudangdong_3 = 'kudangdong_3'; + kudangdong_4 = 'kudangdong_4'; + kudangdong_5 = 'kudangdong_5'; + kudangdong_6 = 'kudangdong_6'; + kudangdong_7 = 'kudangdong_7'; + kudangdong_8 = 'kudangdong_8'; + kudangdong_9 = 'kudangdong_9'; + kudangdong_10 = 'kudangdong_10'; + kudangdong_11 = 'kudangdong_11'; + kudangdong_12 = 'kudangdong_12'; + + lingzhulaixi_1 = 'lingzhulaixi_1'; + lingzhulaixi_2 = 'lingzhulaixi_2'; + lingzhulaixi_3 = 'lingzhulaixi_3'; + lingzhulaixi_4 = 'lingzhulaixi_4'; + lingzhulaixi_5 = 'lingzhulaixi_5'; + lingzhulaixi_6 = 'lingzhulaixi_6'; + + task_finsh_1 = 'task_finsh_1'; + task_finsh_2 = 'task_finsh_2'; + task_finsh_3 = 'task_finsh_3'; + task_finsh_4 = 'task_finsh_4'; + task_finsh_5 = 'task_finsh_5'; + + wzry_1 = "wzrytip_1"; + wzry_2 = "wzrytip_2"; + wzry_3 = "wzrytip_3"; + wzry_4 = "wzrytip_4"; + wzry_5 = "wzrytip_5"; + wzry_6 = "wzrytip_6"; + wzry_7 = "wzrytip_7"; + wzry_8 = "wzry_tip8"; + wzry_9 = "wzry_tip9"; + wzry_10 = "wzry_tip10"; + wzry_11 = "wzry_tip11"; + wzry_12 = "wzry_tip12"; + wzry_13 = "wzry_tip13"; + wzry_14 = "wzry_tip14"; + wzry_15 = "wzry_tip15"; + wzry_16 = "wzry_tip16"; + wzry_17 = "wzry_tip17"; + wzry_18 = "wzry_tip18"; + + yangchengmubiao_1 = "yangchengmubiao_1"; + yangchengmubiao_2 = "yangchengmubiao_2"; + yangchengmubiao_3 = "yangchengmubiao_3"; + yangchengmubiao_4 = "yangchengmubiao_4"; + + equip_starup_1 = 'equip_starup_1'; + + huodong_open_1 = 'huodong_open_1'; + + + chat_1 = "chat_1"; + chat_2 = "chat_2"; + chat_3 = "chat_3"; + + chongzhi_1 = "chongzhitip_1"; + chongzhi_2 = "chongzhitip_2"; + chongzhi_3 = "chongzhitip_3"; + + dixiaheishi_3 = "dixiaheishi_3"; + + dixialeitai_1 = "dixialeitai_1"; + dixialeitai_2 = "dixialeitai_2"; + dixialeitai_3 = "dixialeitai_3"; + dixialeitai_4 = "dixialeitai_4"; + dixialeitai_5 = "dixialeitai_5"; + dixialeitai_6 = "dixialeitai_6"; + dixialeitai_7 = "dixialeitai_7"; + dixialeitai_8 = "dixialeitai_8"; + dixialeitai_9 = "dixialeitai_9"; + dixialeitai_10 = "dixialeitai_10"; + dixialeitai_11 = "dixialeitai_11"; + dixialeitai_12 = "dixialeitai_12"; + + email_1 = "email_1"; + email_2 = "email_2"; + email_3 = "email_3"; + email_4 = "email_4"; + email_5 = "email_5"; + email_6 = "email_6"; + + equip_1 = "equiptip_1"; + equip_2 = "equiptip_2"; + equip_3 = "equiptip_3"; + equip_4 = "equiptip_4"; + equip_5 = "equiptip_5"; + equip_6 = "equip_6"; + equip_7 = "equip_7"; + equip_8 = "equip_8"; + equip_9 = "equip_9"; + equip_10 = "equip_10"; + equip_11 = "equip_11"; + + friend_1 = "friend_1"; + friend_2 = "friend_2"; + friend_3 = "friend_3"; + friend_4 = "friend_4"; + friend_5 = "friend_5"; + friend_6 = "friend_6"; + friend_7 = "friend_7"; + friend_8 = "friend_8"; + friend_9 = "friend_9"; + friend_10 = "friend_10"; + friend_11 = "friend_11"; + friend_12 = "friend_12"; + friend_13 = "friend_13"; + friend_14 = "friend_14"; + friend_15 = "friend_15"; + friend_16 = "friend_16"; + friend_17 = "friend_17"; + friend_18 = "friend_18"; + friend_19 = "friend_19"; + friend_20 = "friend_20"; + friend_21 = "friend_21"; + friend_22 = "friend_22"; + + gonghui_1 = "gonghui_1"; + gonghui_2 = "gonghui_2"; + gonghui_3 = "gonghui_3"; + gonghui_4 = "gonghui_4"; + gonghui_5 = "gonghui_5"; + gonghui_6 = "gonghui_6"; + gonghui_7 = "gonghui_7"; + gonghui_8 = "gonghui_8"; + gonghui_9 = "gonghui_9"; + gonghui_10 = "gonghui_10"; + gonghui_11 = "gonghui_11"; + gonghui_12 = "gonghui_12"; + gonghui_13 = "gonghui_13"; + gonghui_14 = "gonghui_14"; + gonghui_15 = "gonghui_15"; + gonghui_16 = "gonghui_16"; + gonghui_17 = "gonghui_17"; + gonghui_18 = "gonghui_18"; + gonghui_19 = "gonghui_19"; + gonghui_20 = "gonghui_20"; + gonghui_21 = "gonghui_21"; + gonghui_22 = "gonghui_22"; + gonghui_23 = "gonghui_23"; + gonghui_24 = "gonghui_24"; + gonghui_25 = "gonghui_25"; + gonghui_26 = "gonghui_26"; + gonghui_27 = "gonghui_27"; + gonghui_28 = "gonghui_28"; + gonghui_29 = "gonghui_29"; + + gongyu_1 = "gongyu_1"; + gongyu_2 = "gongyu_2"; + gongyu_3 = "gongyu_3"; + gongyu_4 = "gongyu_4"; + gongyu_5 = "gongyu_5"; + gongyu_6 = "gongyu_6"; + gongyu_7 = "gongyu_7"; + + hbzb_7 = "hbzb_7"; + hbzb_8 = "hbzb_8"; + hbzb_9 = "hbzb_9"; + hbzb_10 = "hbzb_10"; + hbzb_11 = "hbzb_11"; + + hero_1 = "hero_1"; + hero_2 = "hero_2"; + hero_3 = "hero_3"; + hero_4 = "hero_4"; + hero_5 = "hero_5"; + hero_6 = "hero_6"; + hero_7 = "hero_7"; + hero_8 = "hero_8"; + hero_9 = "hero_9"; + hero_10 = "hero_10"; + hero_11 = "hero_11"; + hero_12 = "hero_12"; + hero_13 = "hero_13"; + hero_14 = "hero_14"; + hero_15 = "hero_15"; + hero_16 = "hero_16"; + hero_17 = "hero_17"; + hero_18 = "hero_18"; + hero_19 = "hero_19"; + + item_1 = "item_1"; + item_2 = "item_2"; + item_3 = "item_3"; + item_4 = "item_4"; + item_5 = "item_5"; + + jjc_1 = "jjc_1"; + jjc_2 = "jjc_2"; + jjc_3 = "jjc_3"; + jjc_4 = "jjc_4"; + jjc_5 = "jjc_5"; + jjc_6 = "jjc_6"; + + kbzz_1 = "kbzz_1"; + kbzz_2 = "kbzz_2"; + kbzz_3 = "kbzz_3"; + kbzz_4 = "kbzz_4"; + kbzz_5 = "kbzz_5"; + + qjzzd_5 = "qjzzd_5"; + + shiwu_1 = "shiwu_1"; + shiwu_2 = "shiwu_2"; + shiwu_3 = "shiwu_3"; + shiwu_4 = "shiwu_4"; + shiwu_5 = "shiwu_5"; + shiwu_6 = "shiwu_6"; + shiwu_7 = "shiwu_7"; + shiwu_8 = "shiwu_8"; + shiwu_9 = "shiwu_9"; + + shootgame_1 = "shootgame_1"; + shootgame_2 = "shootgame_2"; + shootgame_3 = "shootgame_3"; + + shop_1 = "shop_1"; + shop_2 = "shoptip_2"; + shop_3 = "shop_3"; + shop_4 = "shop_4"; + shop_5 = "shop_5"; + shop_6 = "shop_6"; + shop_7 = "shop_7"; + + slzd_1 = "slzd_1"; + slzd_2 = "slzd_2"; + slzd_3 = "slzd_3"; + slzd_4 = "slzd_4"; + slzd_5 = "slzd_5"; + slzd_6 = "slzd_6"; + + tanxian_1 = "tanxian_1"; + tanxian_2 = "tanxian_2"; + tanxian_3 = "tanxian_3"; + tanxian_4 = "tanxian_4"; + tanxian_5 = "tanxian_5"; + tanxian_6 = "tanxian_6"; + + user_1 = "user_1"; + user_2 = "user_2"; + user_3 = "user_3"; + user_4 = "user_4"; + user_5 = "user_5"; + user_6 = "user_6"; + user_7 = "user_7"; + user_8 = "user_8"; + user_9 = "user_9"; + + weixiuchang_1 = "weixiuchang_1"; + weixiuchang_2 = "weixiuchang_2"; + + xstask_1 = "xstask_1"; + xstask_2 = "xstask_2"; + xstask_3 = "xstask_3"; + xstask_4 = "xstask_4"; + xstask_5 = "xstask_5"; + xstask_6 = "xstask_6"; + xstask_7 = "xstask_7"; + xstask_8 = "xstask_8"; + xstask_9 = "xstask_9"; + xstask_10 = "xstask_10"; + xstask_11 = "xstask_11"; + xstask_12 = "xstask_12"; + xstask_13 = "xstask_13"; + + event_jijin_1 = "event_jijin_1"; + event_jijin_2 = "event_jijin_2"; + event_jijin_3 = "event_jijin_3"; + event_kfkh_3 = "event_kfkh_3"; + event_kfkh_4 = "event_kfkh_4"; + event_kfkh_5 = "event_kfkh_5"; + event_kfkh_6 = "event_kfkh_6"; + event_kfkh_7 = "event_kfkh_7"; + event_kfkh_8 = "event_kfkh_8"; + event_kfkh_9 = "event_kfkh_9"; + event_kfkh_10 = "event_kfkh_10"; + event_kfkh_11 = "event_kfkh_11"; + event_kfkh_12 = "event_kfkh_12"; + event_kfkh_13 = "event_kfkh_13"; + + qingxiandenglu: "qingxiandenglu"; + wuciwanjia: "wuciwanjia"; + huoqupaihang: "huoqupaihang"; + wucigonghui: "wucigonghui"; + nameyicunzai: "nameyicunzai"; + + + "11111" = "globalThis.lng.chat_1" + // return call.error('', { code: -3, message: globalThis.lng.chat_2 }); +} \ No newline at end of file diff --git a/src/localConfig.ts b/src/localConfig.ts new file mode 100644 index 0000000..cd8dd95 --- /dev/null +++ b/src/localConfig.ts @@ -0,0 +1,38 @@ + +export default { + /**时区偏移量 */ + utc: 8, + /**是否开发模式 */ + debug: true, + /**消息服socket端口*/ + msgPort: 7778, + /**http端口 msg服专用*/ + // httpPort: 7779, + /**跨服socket端口 */ + crossPort: 7780, + /**跨服 ws url */ + corssWsUrl: "ws://10.0.1.20:10003", + /**服务器id */ + serverId: 0, + /**redis url */ + redisUrl: 'redis://:lyMaple525458@10.0.1.20:6379/0', + /**mongodb url */ + mongodbUrl: 'mongodb://root:lyMaple525458@10.0.1.20:27017/heijiao?authSource=admin', + /**cross redis url */ + crossRedisUrl: 'redis://:lyMaple525458@10.0.1.20:6379/1', + /**cross mongodb url */ + crossMongodbUrl: 'mongodb://root:lyMaple525458@10.0.1.20:27017/heijiao_cross?authSource=admin', + /**服务器时间 */ + time: '', + /**开服时间 */ + openTime: '2022-10-10 1:0:0', + /**项目名称 */ + projectName: 'heijiao', + /**加密key */ + APIKEY: 'uutown123456', + /**wss */ + wss: { + key: '', + cert: '' + } +}; \ No newline at end of file diff --git a/src/localindex.ts b/src/localindex.ts new file mode 100644 index 0000000..27fe0fa --- /dev/null +++ b/src/localindex.ts @@ -0,0 +1,30 @@ +import { extendType } from './extends'; +import { ctor } from './global'; +import { initGcType } from './jsonType'; +import { createLng } from './lng'; +import { initMongoDB } from './setMongodb'; +import { initStarupFun } from './starup'; + +// todo 本地创建数据库索引文件,线上勿用(创建索引和配置增加活动与项目分离) + +async function start() { + //定义全局变量 + ctor(); + // 创建跨服索引(默认本服) + // G.argv.serverType = "cross" + //连接mongodb + await initMongoDB(); + await initStarupFun.initStart() + //创建语言包 + await createLng(); + + console.log('等待一会后结束程序'); + setTimeout(function() { + console.log('结束程序'); + process.exit(); + }, 5000); // 等待5秒后结束程序 +} + +//启动服务 +start(); + diff --git a/src/module/collection_actionLog.ts b/src/module/collection_actionLog.ts new file mode 100644 index 0000000..d9d829c --- /dev/null +++ b/src/module/collection_actionLog.ts @@ -0,0 +1,19 @@ + + +export type actionLogType = { + day: { + log: { + [k: string]: number; + }; + }; + retain: { + log: { + [k: string]: number; + }; + }; +}; + +export type CollectionActionLog = { + uid: string; + type: T; +} & actionLogType[T]; \ No newline at end of file diff --git a/src/module/collection_apiCount.ts b/src/module/collection_apiCount.ts new file mode 100644 index 0000000..59b885f --- /dev/null +++ b/src/module/collection_apiCount.ts @@ -0,0 +1,5 @@ +export type CollectionApiCount = { + api: string; + callnums: number; + needtimes: number; +}; diff --git a/src/module/collection_cardlog.ts b/src/module/collection_cardlog.ts new file mode 100644 index 0000000..c9731bf --- /dev/null +++ b/src/module/collection_cardlog.ts @@ -0,0 +1,6 @@ + +export type CollectionCardlog = { + uid: string; + //兑换卡唯一 + cardnum: string +} \ No newline at end of file diff --git a/src/module/collection_chat.ts b/src/module/collection_chat.ts new file mode 100644 index 0000000..ccd6860 --- /dev/null +++ b/src/module/collection_chat.ts @@ -0,0 +1,4 @@ +import { MsgChat } from '../shared/protocols/msg_s2c/MsgChat'; + + +export type CollectionChat = MsgChat; \ No newline at end of file diff --git a/src/module/collection_clsl.ts b/src/module/collection_clsl.ts new file mode 100644 index 0000000..39767cd --- /dev/null +++ b/src/module/collection_clsl.ts @@ -0,0 +1,9 @@ +import { joinFightData } from '../shared/fightControl/fightType'; + + +export type CollectionCllsCrossUser = { + uid: string; + area: number; + allStar: number; + info: joinFightData; +}; \ No newline at end of file diff --git a/src/module/collection_crosskv.ts b/src/module/collection_crosskv.ts new file mode 100644 index 0000000..2813556 --- /dev/null +++ b/src/module/collection_crosskv.ts @@ -0,0 +1,12 @@ + +export type playerInfoTypeCross = { + /**王者荣耀奖池总金额 */ + wzryallnum: { + num: number; + }; +}; + +export type CollectionCrosskv = { + uid: string; + type: T; +} & playerInfoTypeCross[T]; \ No newline at end of file diff --git a/src/module/collection_dayPay.ts b/src/module/collection_dayPay.ts new file mode 100644 index 0000000..1717b07 --- /dev/null +++ b/src/module/collection_dayPay.ts @@ -0,0 +1,7 @@ + + +export type CollectionDayPay = { + uid: string; + time: number; + payNum: number; +}; \ No newline at end of file diff --git a/src/module/collection_dxlt.ts b/src/module/collection_dxlt.ts new file mode 100644 index 0000000..4579cc4 --- /dev/null +++ b/src/module/collection_dxlt.ts @@ -0,0 +1,4 @@ +import { ResOpen } from '../shared/protocols/dixialeitai/PtlOpen'; + + +export type CollectionDxlt = ResOpen; \ No newline at end of file diff --git a/src/module/collection_email.ts b/src/module/collection_email.ts new file mode 100644 index 0000000..ecec35c --- /dev/null +++ b/src/module/collection_email.ts @@ -0,0 +1,4 @@ +import { ResOpen } from '../shared/protocols/email/PtlOpen'; + + +export type CollectionEmail = ResOpen[0]; \ No newline at end of file diff --git a/src/module/collection_equip.ts b/src/module/collection_equip.ts new file mode 100644 index 0000000..737ed18 --- /dev/null +++ b/src/module/collection_equip.ts @@ -0,0 +1,6 @@ +import { ResGetList } from '../shared/protocols/equip/PtlGetList'; + +export type CollectionEquip = ResGetList['list'][''] & { + /**玩家uid */ + uid: string; +}; \ No newline at end of file diff --git a/src/module/collection_event.ts b/src/module/collection_event.ts new file mode 100644 index 0000000..d7c4689 --- /dev/null +++ b/src/module/collection_event.ts @@ -0,0 +1,55 @@ +import { ResOpen as ResOpen136Gift } from '../shared/protocols/event/136Gift/PtlOpen'; +import { ResOpen as ResOpenChuanshuozhilu } from '../shared/protocols/event/chuanshuozhilu/PtlOpen'; +import { ResOpen as ResOpenDiaoluoduihuan } from '../shared/protocols/event/diaoluoduihuan/PtlOpen'; +import { ResOpen as ResOpenHuobanzhaomu } from '../shared/protocols/event/huobanzhaomu/PtlOpen'; +import { ResOpen as ResOpenJierihuodong } from '../shared/protocols/event/jierihuodong/PtlOpen'; +import { ResOpen as ResOpenJiJin } from '../shared/protocols/event/jijin/PtlOpen'; +import { ResOpen } from '../shared/protocols/event/kaifukuanghuan/PtlOpen'; +import { ResOpen as ResOpenLeijichongzhi } from '../shared/protocols/event/leijichongzhi/PtlOpen'; +import { ResOpen as ResOpenNiudanji } from '../shared/protocols/event/niudanji/PtlOpen'; +import { ResOpen as ResOpenQirichongzhi } from '../shared/protocols/event/qirichongzhi/PtlOpen'; +import { ResOpen as ResOpenQiridenglu } from '../shared/protocols/event/qiridenglu/PtlOpen'; +import { ResOpen as ResOpen15leichong } from '../shared/protocols/event/shiwuleichong/PtlOpen'; +import { ResOpen as ResOpenXianshizhaomu } from '../shared/protocols/event/xianshizhaomu/PtlOpen'; +import { ResOpen as ResOpenXinshoulibao } from '../shared/protocols/event/xinshoulibao/PtlOpen'; +import { yangchengmubiao } from '../shared/protocols/event/yangchengmubiao/PtlOpen'; +import { ResOpen as ResOpenYibaichou } from '../shared/protocols/event/yibaichou/PtlOpen'; +import { ResOpen as ResOpenYuedujijin } from '../shared/protocols/event/yuedujijin/PtlOpen'; +import { ResOpen as ResOpenZhanLing } from '../shared/protocols/event/zhanling/PtlOpen'; +import { ResOpen as ResOpenZhoulibao } from '../shared/protocols/event/zhoulibao/PtlOpen'; +import { ResOpen as ResOpenZixuanlibao } from '../shared/protocols/event/zixuanlibao/PtlOpen'; + +export type eventType = { + shouchong: { + receive: k_v; + }; + kaifukuanghuan: Omit; + dayjijin: Omit; + dengjijijin: Omit; + guanqiajijin: Omit; + tianshujijin: Omit; + zhanling: Omit & { refreshTime: number; }; + zhoulibao: ResOpenZhoulibao; + xinshoulibao: ResOpenXinshoulibao; + yibaichou: ResOpenYibaichou; + huobanzhaomu: Omit; + niudanji: Omit; + '136Gift': ResOpen136Gift & { refreshTime: number; }; + '15leichong': Omit; + xianshizhaomu: ResOpenXianshizhaomu & { refreshTime: number; }; + qirichongzhi: Omit; + jierihuodong: Omit & { refreshTime: number; }; +} & { + [k: `${number}jijin`]: ResOpenYuedujijin; + [k: `yangchengmubiao${number}`]: yangchengmubiao; + [k: `diaoluoduihuan${number}`]: ResOpenDiaoluoduihuan; + [k: `chuanshuozhilu${number}`]: ResOpenChuanshuozhilu; + [k: `zixuanlibao${number}`]: ResOpenZixuanlibao; + [k: `leijichongzhi${number}`]: Omit; + [k: `qiridenglu${number}`]: Pick; +}; + +export type CollectionEvent = { + uid: string; + type: T; +} & eventType[T]; \ No newline at end of file diff --git a/src/module/collection_fightLog.ts b/src/module/collection_fightLog.ts new file mode 100644 index 0000000..337b9fe --- /dev/null +++ b/src/module/collection_fightLog.ts @@ -0,0 +1,4 @@ +import { fightResult } from '../shared/fightControl/fightType'; + + +export type CollectionFightLog = fightResult; \ No newline at end of file diff --git a/src/module/collection_friend.ts b/src/module/collection_friend.ts new file mode 100644 index 0000000..3db4f20 --- /dev/null +++ b/src/module/collection_friend.ts @@ -0,0 +1,4 @@ +import { ResOpen } from '../shared/protocols/friend/PtlOpen'; + + +export type CollectionFriend = ResOpen & { uid: string; refreshTime: number; }; \ No newline at end of file diff --git a/src/module/collection_ganhai.ts b/src/module/collection_ganhai.ts new file mode 100644 index 0000000..f38515f --- /dev/null +++ b/src/module/collection_ganhai.ts @@ -0,0 +1,4 @@ +import { ResOpen } from '../shared/protocols/ganhai/PtlOpen'; + + +export type CollectionGanHai = ResOpen & { refreshTime: number; uid: string; }; \ No newline at end of file diff --git a/src/module/collection_gbtx.ts b/src/module/collection_gbtx.ts new file mode 100644 index 0000000..4daa877 --- /dev/null +++ b/src/module/collection_gbtx.ts @@ -0,0 +1,8 @@ + + +export type CollectionGBTX = { + luck: { + [hid: string]: number; + }, + fightNum: k_v; +}; \ No newline at end of file diff --git a/src/module/collection_giftLog.ts b/src/module/collection_giftLog.ts new file mode 100644 index 0000000..0514f6b --- /dev/null +++ b/src/module/collection_giftLog.ts @@ -0,0 +1,30 @@ +import {Reqpopup} from "../monopoly/protocols/gift/Ptlpopup"; + + +export type CollectionGiftLog = { + //popup推送数据 + popup_id: string; + ctwid: string; + game_user_id: string; + game_server_id: string; + role: { id: string }; + gift: { id: string }; + template_id: string; + + //获取到的礼包详情 + id: string + vipPoints: number + amountToDiamond: number + price: number + priceValueRatio: number + duration: number + purchaseLimitAmount: number + isAISupported: boolean + platformCreative: { enabled: boolean } + items: { [k: string]: any } + + //用户显示或购买记录 + showTime: number; + endTime: number; + buyNumber: number; +} \ No newline at end of file diff --git a/src/module/collection_gonghui.ts b/src/module/collection_gonghui.ts new file mode 100644 index 0000000..2fcc92f --- /dev/null +++ b/src/module/collection_gonghui.ts @@ -0,0 +1,32 @@ +import { gonghuiBase } from '../shared/protocols/gonghui/type'; + + +export type CollectionGongHui = gonghuiBase; + +export type CollectionGongHuiUser = { + jx?: { + /**刷新时间 */ + refreshTime: number; + /**捐献记录 */ + record: { + [index: number]: number; + }; + }; + task?: { + ghRec: number[]; + myRec: number[]; + refreshTime: number; + }; + fuben?: { + fightNum: number; + refreshTime: number; + /**每日可增加的次数 */ + addNum?: number + }; +}; + +export type CollectionGongHuiFb = { + ghId: string; + fbId: string; + rankList: k_v; +}; \ No newline at end of file diff --git a/src/module/collection_hbzb_user_cross.ts b/src/module/collection_hbzb_user_cross.ts new file mode 100644 index 0000000..57b3645 --- /dev/null +++ b/src/module/collection_hbzb_user_cross.ts @@ -0,0 +1,5 @@ +import { ResGetUser } from '../cross/protocols/hbzb/jfs/PtlGetUser'; + +export type CollectionHbzbUserCross = Omit & { uid: string; }; + +export type CollectionHbzbUserZbs = ResGetUser & { uid: string; }; \ No newline at end of file diff --git a/src/module/collection_hdinfo.ts b/src/module/collection_hdinfo.ts new file mode 100644 index 0000000..ea56a7d --- /dev/null +++ b/src/module/collection_hdinfo.ts @@ -0,0 +1,4 @@ +import { ReqAddHuoDong } from "../monopoly/protocols/PtlAddHuoDong"; + + +export type CollectionHdinfo = ReqAddHuoDong \ No newline at end of file diff --git a/src/module/collection_hero.ts b/src/module/collection_hero.ts new file mode 100644 index 0000000..d1279bf --- /dev/null +++ b/src/module/collection_hero.ts @@ -0,0 +1,6 @@ +import { ResGetList } from '../shared/protocols/hero/PtlGetList'; + +export type CollectionHero = ResGetList['list'][''] & { + /**玩家uid */ + uid: string; +}; \ No newline at end of file diff --git a/src/module/collection_item.ts b/src/module/collection_item.ts new file mode 100644 index 0000000..debd053 --- /dev/null +++ b/src/module/collection_item.ts @@ -0,0 +1,6 @@ +import { ResGetList } from '../shared/protocols/item/PtlGetList'; + +export type CollectionItem = ResGetList['list'][''] & { + /**玩家uid */ + uid: string; +}; \ No newline at end of file diff --git a/src/module/collection_jjc.ts b/src/module/collection_jjc.ts new file mode 100644 index 0000000..380e746 --- /dev/null +++ b/src/module/collection_jjc.ts @@ -0,0 +1,4 @@ +import { ResOpen } from '../shared/protocols/jjc/PtlOpen'; + + +export type CollectionJJC = Omit; \ No newline at end of file diff --git a/src/module/collection_kbzz.ts b/src/module/collection_kbzz.ts new file mode 100644 index 0000000..491e438 --- /dev/null +++ b/src/module/collection_kbzz.ts @@ -0,0 +1,25 @@ +import { joinFightData } from '../shared/fightControl/fightType'; +import { player } from '../shared/protocols/user/type'; + + +export type CollectionKbzzApplyUser = { + uid: string; + info: joinFightData; +}; + +export type CollectionKbzzGroupUser = CollectionKbzzApplyUser & CollectionKbzzGroupTroop; + +export type CollectionKbzzGroupTroop = { + group: number; + troop: number; + score: number; +}; + +export type CollectionKbzzGroupLog = { + group: number; + log: { + player: Partial[]; + troop: number[]; + winSide: number; + }[]; +}; \ No newline at end of file diff --git a/src/module/collection_kuangdong.ts b/src/module/collection_kuangdong.ts new file mode 100644 index 0000000..b26f623 --- /dev/null +++ b/src/module/collection_kuangdong.ts @@ -0,0 +1,4 @@ + +import { KuangDongKuang } from '../shared/protocols/kuangdong/PtlOpen'; + +export type CollectionKuangDong = KuangDongKuang \ No newline at end of file diff --git a/src/module/collection_lingzhulaixi.ts b/src/module/collection_lingzhulaixi.ts new file mode 100644 index 0000000..57a992a --- /dev/null +++ b/src/module/collection_lingzhulaixi.ts @@ -0,0 +1,4 @@ + +import { lingzhulaixi_BOSSmmMoRenZhi } from '../shared/protocols/lingzhulaixi/PtlOpen'; + +export type CollectionLingZhuLaiXi = lingzhulaixi_BOSSmmMoRenZhi \ No newline at end of file diff --git a/src/module/collection_loginLog.ts b/src/module/collection_loginLog.ts new file mode 100644 index 0000000..906fafc --- /dev/null +++ b/src/module/collection_loginLog.ts @@ -0,0 +1,9 @@ +/** + * 登录记录 + */ +export type CollectionLoginLog = { + uid: string + bindUid: string + sid: number + loginTime: number +} \ No newline at end of file diff --git a/src/module/collection_mingdao.ts b/src/module/collection_mingdao.ts new file mode 100644 index 0000000..f79cdbb --- /dev/null +++ b/src/module/collection_mingdao.ts @@ -0,0 +1,4 @@ +import { ResOpen } from '../shared/protocols/gongyu/mingdao/PtlOpen'; + + +export type CollectionMingdao = Pick; \ No newline at end of file diff --git a/src/module/collection_palyerInfo.ts b/src/module/collection_palyerInfo.ts new file mode 100644 index 0000000..158700a --- /dev/null +++ b/src/module/collection_palyerInfo.ts @@ -0,0 +1,120 @@ +import { ResOpen as ResOpen_clsl } from '../shared/protocols/conglinshoulie/PtlOpen'; +import { ResOpen as ResOpen_dixaiqianzhuang } from '../shared/protocols/dixiaqianzhuang/PtlOpen'; +import { ResOpen as ResOpen_hbzb } from '../shared/protocols/hbzb/jfs/PtlOpen'; +import { ResOpen as ResOpen_hbzbZbs } from '../shared/protocols/hbzb/zbs/PtlOpen'; +import { ResOpen } from '../shared/protocols/jiaotang/PtlOpen'; +import { eventCycle } from '../shared/protocols/kbzz/PtlOpen'; +import { KuangDongCiShuInfo } from '../shared/protocols/kuangdong/PtlOpen'; +import { lingzhulaixi_CiSHU } from '../shared/protocols/lingzhulaixi/PtlOpen'; +import { ResOpen as ResOpen_mrsl } from '../shared/protocols/meirishilian/PtlOpen'; +import { usertasklog } from '../shared/protocols/task/type'; +import { Renown_info } from '../shared/protocols/user/PtlRenownOpen'; +import { wzry_info } from '../shared/protocols/wzry/PtlOpen'; +import { ResOpen as ResOpen_xs } from '../shared/protocols/xstask/PtlOpen'; + +export type playerInfoType = { + /**酒吧抽奖 */ + jiuba: ResOpen & { + /**单抽n次后没有出配置要求的物品后替换掉落组 */ + oneReplaceNum: number; + }; + /**教堂抽奖 */ + jiaotang: ResOpen & { + /**单抽n次后没有出配置要求的物品后替换掉落组 */ + oneReplaceNum: number; + }; + /**英雄获得历史记录数量 */ + lshd_hero: { + [heroId: string]: number; + }; + /**装备获得历史记录数量 */ + lshd_equip: { + [equipId: string]: number; + }; + /**配件获得历史记录数量 */ + lshd_peijian: { + [peijianId: string]: number; + }; + /**悬赏任务记录 */ + xstask: Omit; + /**玩家头像、头像框、聊天框、模型 */ + playerInfo: { + active: { + [id: string]: number; + }; + }; + /**射击小游戏 */ + shootGame: { + /**上一次重置时间戳 */ + refreshTime: number; + /**已通关过的难度 */ + passList: { + [id: string]: number; + }; + /**今日已领取的难度奖励 */ + receiveList: string[]; + }; + /**充值 */ + chongzhi: { + giftBy: k_v; + }; + /**真主党 */ + qjzzd: { + refreshTime: number; + useFightNum: number; + maxDps: number; + // 刷新挑战次数时间 + refreFightTime?: number + }; + /**黑帮争霸积分赛 */ + hbzb: { + data: Omit & { refreshTime: number; }; + }; + hbzbZbs: { + data: Omit & { refreshTime: number; }; + }; + /**恐怖战争报名 */ + kbzzApply: { + apply: boolean; + applyTime: number; + autoApply: boolean; + }; + /**恐怖战争个人信息 */ + kbzzUser: eventCycle & { refreshTime: number; }; + /**每日试炼 */ + meirishilian: { + data: ResOpen_mrsl & { refreshTime: number; }; + }; + /**地下钱庄(点金) */ + dixiaqianzhuang: ResOpen_dixaiqianzhuang & { + /**抽奖次数 */ + num: number; + /**修改数据的时间 */ + time: number; + }; + /**配件仓库 */ + peijiancangku: { + index: number; + }; + /**矿洞次数信息 */ + kuangdong: KuangDongCiShuInfo; + /**丛林狩猎 */ + clsl: ResOpen_clsl & { refreshTime: number; }; + /**领主来袭次数 */ + lingzhulaixi: lingzhulaixi_CiSHU; + /**干部最高等级 */ + usertasklog: usertasklog; + /**王者荣耀本服玩家数据 */ + wzry: wzry_info; + /**干部传记奖励领取 */ + gbzj: { + rec: k_v; + }; + /**爵位相关数据 */ + juewei: Renown_info; +}; + +export type CollectionPlayerInfo = { + uid: string; + type: T; +} & playerInfoType[T]; \ No newline at end of file diff --git a/src/module/collection_pata.ts b/src/module/collection_pata.ts new file mode 100644 index 0000000..d073b99 --- /dev/null +++ b/src/module/collection_pata.ts @@ -0,0 +1,7 @@ +import { paTaType } from '../shared/protocols/pata/type'; + + +export type CollectionPata = paTaType & { + /**玩家uid */ + uid: string; +}; \ No newline at end of file diff --git a/src/module/collection_payLogNew.ts b/src/module/collection_payLogNew.ts new file mode 100644 index 0000000..dbfa536 --- /dev/null +++ b/src/module/collection_payLogNew.ts @@ -0,0 +1,13 @@ +/** + * 充值记录 + */ +export type CollectionPayLogNew = { + uid: string + key: string + values: payLogValues[] +} + +type payLogValues = { + type: string + time: number +} \ No newline at end of file diff --git a/src/module/collection_peijian.ts b/src/module/collection_peijian.ts new file mode 100644 index 0000000..c9320f7 --- /dev/null +++ b/src/module/collection_peijian.ts @@ -0,0 +1,4 @@ +import { PeiJian } from '../shared/protocols/peijian/PtlGetList'; + + +export type CollectionPeiJian = Omit & { uid: string; }; \ No newline at end of file diff --git a/src/module/collection_playattr.ts b/src/module/collection_playattr.ts new file mode 100644 index 0000000..cf31e6f --- /dev/null +++ b/src/module/collection_playattr.ts @@ -0,0 +1,5 @@ + +export type CollectionPlayAttr = { + ctype: string; + uid: string +}; \ No newline at end of file diff --git a/src/module/collection_rank.ts b/src/module/collection_rank.ts new file mode 100644 index 0000000..9ee8d62 --- /dev/null +++ b/src/module/collection_rank.ts @@ -0,0 +1,11 @@ +import { rankType } from '../shared/protocols/rank/PtlOpen'; +import { rankInfo } from '../shared/protocols/type'; + + +export type CollectionRank = rankInfo; + +export type CollectionRankList = { + type: rankType; + idKey: string; + data: rankInfo; +}; \ No newline at end of file diff --git a/src/module/collection_record.ts b/src/module/collection_record.ts new file mode 100644 index 0000000..6be934e --- /dev/null +++ b/src/module/collection_record.ts @@ -0,0 +1,12 @@ + + + +export type recordType = { + jjcFridayTop3: { + uids: string[]; + }; +}; + +export type CollectionRecord = { + type: T; +} & recordType[T]; \ No newline at end of file diff --git a/src/module/collection_scheduler.ts b/src/module/collection_scheduler.ts new file mode 100644 index 0000000..31a4118 --- /dev/null +++ b/src/module/collection_scheduler.ts @@ -0,0 +1,9 @@ +import { schedulerType } from '../public/scheduler/scheduler'; + + +export type CollectionSchedler = { + type: schedulerType; + /**上一次执行的时间 */ + lastRunTime: number; + [k: string]: any; +}; \ No newline at end of file diff --git a/src/module/collection_shiwu.ts b/src/module/collection_shiwu.ts new file mode 100644 index 0000000..b539a4d --- /dev/null +++ b/src/module/collection_shiwu.ts @@ -0,0 +1,6 @@ +import { ResGetList } from '../shared/protocols/shiwu/PtlGetList'; + +export type CollectionShiwu = ResGetList['list'][''] & { + /**玩家uid */ + uid: string; +};; \ No newline at end of file diff --git a/src/module/collection_shop.ts b/src/module/collection_shop.ts new file mode 100644 index 0000000..4e6c31d --- /dev/null +++ b/src/module/collection_shop.ts @@ -0,0 +1,4 @@ +import { ResOpen } from '../shared/protocols/shop/PtlOpen'; + + +export type CollectionShop = ResOpen; \ No newline at end of file diff --git a/src/module/collection_slzd.ts b/src/module/collection_slzd.ts new file mode 100644 index 0000000..6f2524c --- /dev/null +++ b/src/module/collection_slzd.ts @@ -0,0 +1,26 @@ +import { e } from 'mathjs'; +import { joinFightData } from '../shared/fightControl/fightType'; +import { ResOpen } from '../shared/protocols/slzd/PtlOpen'; + + +export type CollectionSlzdUser = { + uid: string; + val: k_v; + ghid: string; + info: joinFightData; + recordFightNum: number; + data: Omit & { refreshTime: number; }; +}; + +export type CollectionSlzdGh = { + val: k_v; + ghid: string; + ghName: string; + soltLog: { name: string, prize: any[]; }[]; +}; + +export type CollectionSlzdStash = { + key: string + val: k_v + utime: number +} \ No newline at end of file diff --git a/src/module/collection_tanxian.ts b/src/module/collection_tanxian.ts new file mode 100644 index 0000000..b2a92a7 --- /dev/null +++ b/src/module/collection_tanxian.ts @@ -0,0 +1,4 @@ +import { ResOpen } from '../shared/protocols/tanxian/PtlOpen'; + + +export type CollectionTanXian = ResOpen; \ No newline at end of file diff --git a/src/module/collection_task.ts b/src/module/collection_task.ts new file mode 100644 index 0000000..531b14d --- /dev/null +++ b/src/module/collection_task.ts @@ -0,0 +1,8 @@ +import { taskType } from '../shared/protocols/task/type'; + + +export type CollectionTask = taskType & { + /**玩家uid */ + uid: string; + taskid: number +}; \ No newline at end of file diff --git a/src/module/collection_user.ts b/src/module/collection_user.ts new file mode 100644 index 0000000..1ad4190 --- /dev/null +++ b/src/module/collection_user.ts @@ -0,0 +1,4 @@ +import { ResLogin } from '../shared/protocols/user/PtlLogin'; + + +export type CollectionUser = ResLogin['gud']; \ No newline at end of file diff --git a/src/module/collection_wanted.ts b/src/module/collection_wanted.ts new file mode 100644 index 0000000..8f7076c --- /dev/null +++ b/src/module/collection_wanted.ts @@ -0,0 +1,4 @@ +import { ResOpen } from '../shared/protocols/gonglukuangbiao/PtlOpen'; + + +export type CollectionWanted = ResOpen & { refreshTime: number; uid: string; }; \ No newline at end of file diff --git a/src/module/collection_wjjl.ts b/src/module/collection_wjjl.ts new file mode 100644 index 0000000..863f66c --- /dev/null +++ b/src/module/collection_wjjl.ts @@ -0,0 +1,31 @@ +import { md_redPoint_check } from '../api_s2c/gongyu/mingdao/ApiOpen'; +import { Queue } from '../shared/public/queue'; + + +export type CollectionWjjl = k_v; + +export class Wjjl { + static queue = new Queue(); + static async setVal(uid: string, type: string, val: number, change = true) { + this.queue.enqueue(async () => { + if (change) { + let d = await G.mongodb.collection('wjjl').findOne({ uid: uid }); + let des = 'up'; + if (type == 'jjc_rank') { + des = 'down'; + } + if (!d?.[type] || (des == 'up' ? val > d[type] : val < d[type])) { + if (type == 'power') { + md_redPoint_check(G.server.uid_connections[uid], type); + } + await G.mongodb.collection('wjjl').updateOne({ uid: uid }, { $set: G.mongodb.createTreeObj({ key: type, val: val }) }, { upsert: true }); + } + } else { + await G.mongodb.collection('wjjl').updateOne({ uid: uid }, { $inc: G.mongodb.createTreeObj({ key: type, val: val }) }, { upsert: true }); + } + }); + } + static async getVal(uid: string, type: string) { + return (await G.mongodb.collection('wjjl').findOne({ uid: uid }))?.[type] || 0; + } +} \ No newline at end of file diff --git a/src/module/collection_wzry_user_cross.ts b/src/module/collection_wzry_user_cross.ts new file mode 100644 index 0000000..e32cf61 --- /dev/null +++ b/src/module/collection_wzry_user_cross.ts @@ -0,0 +1,4 @@ +import { ResGetUser } from '../cross/protocols/hbzb/jfs/PtlGetUser'; +import { wangzherongyao_baoming } from '../shared/protocols/wzry/PtlOpen'; + +export type CollectionWzryCross = wangzherongyao_baoming & { uid: string; }; \ No newline at end of file diff --git a/src/module/collection_wzryfight.ts b/src/module/collection_wzryfight.ts new file mode 100644 index 0000000..8ea68ed --- /dev/null +++ b/src/module/collection_wzryfight.ts @@ -0,0 +1,4 @@ +import { ResGetUser } from '../cross/protocols/hbzb/jfs/PtlGetUser'; +import { wangzherongyao_baoming, wangzherongyao_fight_group } from '../shared/protocols/wzry/PtlOpen'; + +export type CollectionWzryCrossFight = wangzherongyao_baoming & { uid: string; } & wangzherongyao_fight_group; \ No newline at end of file diff --git a/src/module/collection_wzryfightlOG.ts b/src/module/collection_wzryfightlOG.ts new file mode 100644 index 0000000..28080e4 --- /dev/null +++ b/src/module/collection_wzryfightlOG.ts @@ -0,0 +1,4 @@ +import { ResGetUser } from '../cross/protocols/hbzb/jfs/PtlGetUser'; +import { fightResult } from '../shared/fightControl/fightType'; + +export type CollectionWzryCrossFightLOG = fightResult \ No newline at end of file diff --git a/src/module/collection_wzrywiner.ts b/src/module/collection_wzrywiner.ts new file mode 100644 index 0000000..aba12cd --- /dev/null +++ b/src/module/collection_wzrywiner.ts @@ -0,0 +1,4 @@ +import { ResGetUser } from '../cross/protocols/hbzb/jfs/PtlGetUser'; +import { wangzherongyao_fourWiner } from '../shared/protocols/wzry/PtlOpen'; + +export type CollectionWzryCrossWiner = wangzherongyao_fourWiner \ No newline at end of file diff --git a/src/module/collection_xstask.ts b/src/module/collection_xstask.ts new file mode 100644 index 0000000..f1b51ea --- /dev/null +++ b/src/module/collection_xstask.ts @@ -0,0 +1,7 @@ +import { xsTask } from '../shared/protocols/xstask/type'; + + +export type CollectionXstask = xsTask & { + /**玩家uid */ + uid: string; +}; \ No newline at end of file diff --git a/src/module/collection_zhanling.ts b/src/module/collection_zhanling.ts new file mode 100644 index 0000000..b2470e0 --- /dev/null +++ b/src/module/collection_zhanling.ts @@ -0,0 +1,7 @@ + + +export type CollectionZhanLing = { + uid: string; + type: 'day' | 'week' | 'round'; + data: k_v; +}; \ No newline at end of file diff --git a/src/module/mongodb.ts b/src/module/mongodb.ts new file mode 100644 index 0000000..fb4cb29 --- /dev/null +++ b/src/module/mongodb.ts @@ -0,0 +1,121 @@ +import {ResSyncBtn} from '../shared/protocols/PtlSyncBtn'; +import {payLog} from '../shared/protocols/pay/PtlGetList'; +import {rankType} from '../shared/protocols/rank/PtlOpen'; +import {CollectionActionLog} from './collection_actionLog'; +import {CollectionCardlog} from './collection_cardlog'; +import {CollectionCllsCrossUser} from './collection_clsl'; +import {CollectionCrosskv} from './collection_crosskv'; +import {CollectionDayPay} from './collection_dayPay'; +import {CollectionDxlt} from './collection_dxlt'; +import {CollectionEmail} from './collection_email'; +import {CollectionEquip} from './collection_equip'; +import {CollectionEvent} from './collection_event'; +import {CollectionFriend} from './collection_friend'; +import {CollectionGanHai} from './collection_ganhai'; +import {CollectionGBTX} from './collection_gbtx'; +import {CollectionGongHui, CollectionGongHuiFb, CollectionGongHuiUser} from './collection_gonghui'; +import {CollectionHbzbUserCross, CollectionHbzbUserZbs} from './collection_hbzb_user_cross'; +import {CollectionHero} from './collection_hero'; +import {CollectionItem} from './collection_item'; +import {CollectionJJC} from './collection_jjc'; +import { + CollectionKbzzApplyUser, + CollectionKbzzGroupLog, + CollectionKbzzGroupTroop, + CollectionKbzzGroupUser +} from './collection_kbzz'; +import {CollectionKuangDong} from './collection_kuangdong'; +import {CollectionLingZhuLaiXi} from './collection_lingzhulaixi'; +import {CollectionMingdao} from './collection_mingdao'; +import {CollectionPlayerInfo} from './collection_palyerInfo'; +import {CollectionPata} from './collection_pata'; +import {CollectionPeiJian} from './collection_peijian'; +import {CollectionPlayAttr} from './collection_playattr'; +import {CollectionRank, CollectionRankList} from './collection_rank'; +import {CollectionRecord} from './collection_record'; +import {CollectionSchedler} from './collection_scheduler'; +import {CollectionShiwu} from './collection_shiwu'; +import {CollectionSlzdGh, CollectionSlzdUser, CollectionSlzdStash} from './collection_slzd'; +import {CollectionTanXian} from './collection_tanxian'; +import {CollectionTask} from './collection_task'; +import {CollectionUser} from './collection_user'; +import {CollectionWanted} from './collection_wanted'; +import {CollectionWjjl} from './collection_wjjl'; +import {CollectionWzryCross} from './collection_wzry_user_cross'; +import {CollectionWzryCrossFight} from './collection_wzryfight'; +import {CollectionWzryCrossFightLOG} from './collection_wzryfightlOG'; +import {CollectionWzryCrossWiner} from './collection_wzrywiner'; +import {CollectionXstask} from './collection_xstask'; +import {CollectionZhanLing} from './collection_zhanling'; +import {CollectionHdinfo} from './collection_hdinfo'; +import {CollectionGiftLog} from "./collection_giftLog"; +import {CollectionLoginLog} from "./collection_loginLog"; +import {CollectionPayLogNew} from "./collection_payLogNew"; +import {CollectionApiCount} from "./collection_apiCount"; + +export type MongodbCollections = { + user: CollectionUser; + item: Omit; + hero: Omit; + equip: Omit; + shiwu: Omit; + xstask: Omit; + email: Omit & { ttl: Date; }; + pata: Omit; + gbtx: CollectionGBTX & { uid: string; }; + tanxian: Omit & { uid: string; }; + cardlog: Omit; + dxlt: CollectionDxlt & { uid: string; }; + playerInfo: CollectionPlayerInfo; + rank: { + type: rankType; + rankList: CollectionRank[]; + }; + rankList: CollectionRankList; + jjc: CollectionJJC & { uid: string; }; + scheduler: CollectionSchedler; + playattr: CollectionPlayAttr; + gonghui: Omit; + gonghuiUser: CollectionGongHuiUser & { uid: string; }; + gonghuiFb: CollectionGongHuiFb; + task: CollectionTask; + actionLog: CollectionActionLog; + event: CollectionEvent; + syncBtns: ResSyncBtn & { uid: string; }; + payLog: k_v & { uid: string; }; + friend: CollectionFriend; + chat: { type: string, list: any[]; }; + hbzb_user_cross: CollectionHbzbUserCross; + hbzb_user_zbs: CollectionHbzbUserZbs; + record: CollectionRecord; + slzdGh: CollectionSlzdGh; + slzdUser: CollectionSlzdUser; + slzdStash: CollectionSlzdStash; + ganhai: CollectionGanHai; + dayPay: CollectionDayPay; + wanted: CollectionWanted; + peijian: CollectionPeiJian; + kbzzApplyUser: CollectionKbzzApplyUser; + kbzzGroupUser: CollectionKbzzGroupUser; + kbzzGroupTroop: CollectionKbzzGroupTroop; + kbzzGroupLog: CollectionKbzzGroupLog; + ghbzcjlog: { type: string, list: any[]; }; + kuangdong: CollectionKuangDong & { ttl: Date; }; + mingdao: CollectionMingdao & { uid: string; }; + wjjl: CollectionWjjl & { uid: string; }; + any: { type: string, data: any[]; }; + zhanling: CollectionZhanLing; + + clslCrossUser: CollectionCllsCrossUser; + lingzhulaixi: CollectionLingZhuLaiXi; + wzry_user_cross: CollectionWzryCross; + wzry_fight: CollectionWzryCrossFight; + wzry_fight_log: CollectionWzryCrossFightLOG; + wzrywiner: CollectionWzryCrossWiner; + crosskv: CollectionCrosskv; + hdinfo: CollectionHdinfo; + giftLog: CollectionGiftLog; + loginLog: CollectionLoginLog; + payLogNew: CollectionPayLogNew; + apiCount: CollectionApiCount +}; \ No newline at end of file diff --git a/src/module/redis.ts b/src/module/redis.ts new file mode 100644 index 0000000..4e14ff2 --- /dev/null +++ b/src/module/redis.ts @@ -0,0 +1,73 @@ +import { PeiJian } from '../shared/protocols/peijian/PtlGetList'; +import { CollectionDxlt } from './collection_dxlt'; +import { CollectionEmail } from './collection_email'; +import { CollectionEquip } from './collection_equip'; +import { CollectionFightLog } from './collection_fightLog'; +import { CollectionGBTX } from './collection_gbtx'; +import { CollectionHero } from './collection_hero'; +import { CollectionItem } from './collection_item'; +import { CollectionJJC } from './collection_jjc'; +import { CollectionShiwu } from './collection_shiwu'; +import { CollectionShop } from './collection_shop'; +import { CollectionTanXian } from './collection_tanxian'; +import { CollectionUser } from './collection_user'; +import {payLog} from '../shared/protocols/pay/PtlGetList'; +import { rankInfo } from '../shared/protocols/type'; +import { CollectionFriend } from '../module/collection_friend'; +import { CollectionGongHui } from '../module/collection_gonghui'; + + + +export type sortEd = { + score: number, + value: string +} + +// export type sortEd = sortEd; + +/**一层嵌套对象 */ +export type RedisCollections1 = { + user: CollectionUser; + gbtx: CollectionGBTX; + tanxian: Omit; + dxlt: CollectionDxlt; + jjc: CollectionJJC; +}; + +/**二层嵌套对象 */ +export type RedisCollections2 = { + item: CollectionItem; + hero: CollectionHero; + equip: CollectionEquip; + shiwu: CollectionShiwu; + shop: CollectionShop; + email: CollectionEmail; + peijian: PeiJian; +}; + +export type RedisCollectionsHkey1String = { + "player:uids": string; +} + +export type RedisCollectionsHkeyObj1 = { + "player:payLog": k_v + "rank:jjc:data": rankInfo; // 竞技场单个玩家数据 + "friend:list": CollectionFriend; + "gonghui:list": CollectionGongHui; + "gonghui:isFightBoss": boolean; +} + +export type RedisCollectionsSortedObj1 = { + "rank:jjc:sort": sortEd | sortEd[] +} + +// "rankjjc:sort": +/**一层嵌套数组 */ +export type RedisCollectionsArr1 = { + chatPrivate: string; +}; + +/**二层嵌套数组 */ +export type RedisCollectionsArr2 = { + fightLog: CollectionFightLog; +}; \ No newline at end of file diff --git a/src/monopoly/protocols/PtlAddHuoDong.ts b/src/monopoly/protocols/PtlAddHuoDong.ts new file mode 100644 index 0000000..90208f1 --- /dev/null +++ b/src/monopoly/protocols/PtlAddHuoDong.ts @@ -0,0 +1,47 @@ +import { StringTypeSchema } from "tsbuffer-schema"; + +/** + * 增加活动 + */ +export type ReqAddHuoDong = { + /**唯一活动id */ + hdid: number; + /**后端唯一识别标识 */ + htype: Htypes; + /**前端唯一识别标识 */ + stype: Stypes; + /**计算时间方式 0 开服时间, 1 玩家注册时间 4 屏蔽状态*/ + ttype: 0 | 1 | 4; + /**活动开始时间 如果 ttype=0 stime=-1就是永久活动*/ + stime: number; + /**活动显示结束时间(前端倒计时) */ + rtime: number; + /**活动实际结束时间(后端活动消失) */ + etime: number; + /**showtime 显示时间 代码会重新计算*/ + showtime: string; + /**游戏内所有活动的格式 */ + data: { [id: string]: any }; + /**活动名字 */ + name: string; + // icon + icon?: string; + // 开启条件 + opencond?: string; + +}; + + +// 后端用 htype 值 1:巅峰荣耀; 2: 掉落兑换; 3: 传说之路/心腹培养; 4: 自选礼包/定制礼包; 5: 累计充值; 6: 七日登录;7: 开服狂欢 +export type Htypes = number; + +// 预留前端用 stype 值 100:巅峰荣耀; 200 掉落兑换; 300:传说之路; 400:自选礼包; 500: 累计充值; 600:七日登录;700: 开服狂欢 +export type Stypes = number; + + +export type ResAddHuoDong = { + /** + * 如果发送成功 将返回活动数据库插入id + */ + insertId: string; +}; \ No newline at end of file diff --git a/src/monopoly/protocols/PtlCatAllhd.ts b/src/monopoly/protocols/PtlCatAllhd.ts new file mode 100644 index 0000000..c4ffcdc --- /dev/null +++ b/src/monopoly/protocols/PtlCatAllhd.ts @@ -0,0 +1,17 @@ +import { StringTypeSchema } from "tsbuffer-schema"; +import { ReqAddHuoDong } from "./PtlAddHuoDong"; + +/** + * 查询所有活动 暂未对接正式数据 + */ +export type ReqCatAllhd = { + where?: { [id: string]: any } +}; + + +export type ResCatAllhd = { + /** + * 如果发送成功 将返回所有活动 + */ + hdlist: ReqAddHuoDong[]; +}; \ No newline at end of file diff --git a/src/monopoly/protocols/PtlDelHuoDong.ts b/src/monopoly/protocols/PtlDelHuoDong.ts new file mode 100644 index 0000000..57e31a2 --- /dev/null +++ b/src/monopoly/protocols/PtlDelHuoDong.ts @@ -0,0 +1,17 @@ +import { StringTypeSchema } from "tsbuffer-schema"; + +/** + * 删除活动 暂未对接正式数据 + */ +export type ReqDelHuoDong = { + /**唯一活动id */ + hdid: number; +}; + + +export type ResDelHuoDong = { + /** + * 如果发送成功 将返回 + */ + status: "success"; +}; \ No newline at end of file diff --git a/src/monopoly/protocols/PtlEmail.ts b/src/monopoly/protocols/PtlEmail.ts new file mode 100644 index 0000000..3742ae6 --- /dev/null +++ b/src/monopoly/protocols/PtlEmail.ts @@ -0,0 +1,32 @@ + +/** + * 向玩家发送邮件 + */ +export type ReqEmail = { + /**玩家uid */ + uid: string; + /**邮件类型 */ + type: 'system' | 'gm'; + /**邮件标题 */ + title: string; + /**邮件内容 */ + content: string; + /**邮件奖励 没有可不传入*/ + prize?: { a: string, t: string, n: number; }[]; + /**插入邮件内容的值 str(content, contentInsertArr) */ + contentInsertArr?: any[]; + /**全服邮件 是否领取,存在uid为领取 */ + prizelist?: string[], + /**全服邮件 是否删除,存在uid为删除 */ + dellist?: string[], + /**记录一些杂七杂八的,没什么用又必须记录 */ + g123log?: { [id: string]: any } +}; + + +export type ResEmail = { + /** + * 如果发送成功 将返回邮件数据库插入id + */ + insertId: string; +}; \ No newline at end of file diff --git a/src/monopoly/protocols/PtlGetLog.ts b/src/monopoly/protocols/PtlGetLog.ts new file mode 100644 index 0000000..f5b910d --- /dev/null +++ b/src/monopoly/protocols/PtlGetLog.ts @@ -0,0 +1,9 @@ + +/** + * 获取日志 + */ +export type ReqGetLog = { + +}; + +export type ResGetLog = string; \ No newline at end of file diff --git a/src/monopoly/protocols/Ptlhealthz.ts b/src/monopoly/protocols/Ptlhealthz.ts new file mode 100644 index 0000000..c2bc1c6 --- /dev/null +++ b/src/monopoly/protocols/Ptlhealthz.ts @@ -0,0 +1,30 @@ +import { StringTypeSchema } from "tsbuffer-schema"; +import { ReqAddHuoDong } from "./PtlAddHuoDong"; + +/** + * 对方平台直接请求游服 + * 查看服务器是否正常 + */ +export type Reqhealthz = { + /**身份认证秘钥 */ + key?: string +}; + + +export type Reshealthz = { + /**code 0: Healthy 健康 101: Failure 异常 102: Maintenance 维护中 */ + code: number + data: { + dependencies: { + dependency: string, // 依存服务名 + status: number, // 依存服务状态 0:健康 101:异常 102:维护中 + reason: string, // 依存服务异常描述。比如read timeout等。 + severity: string, // 重要度 + // - critical: 致命。对游戏的主要功能和流水有直接影响,例如支付、登录、购买等。 + // - warning: 警告。对游戏有影响,但玩家仍可游玩,例如缓存失败导致性能下降。 + // - trivial: 微小。对游戏有影响,但对玩家无明显影响,例如新功能不可用 + lastcheck: string // 最后一次检查时间,时间格式为YYYY-MM-DDTHH:MM+01:00 + }[] + } + +}; \ No newline at end of file diff --git a/src/monopoly/protocols/games/Ptldeploy.ts b/src/monopoly/protocols/games/Ptldeploy.ts new file mode 100644 index 0000000..9cfa125 --- /dev/null +++ b/src/monopoly/protocols/games/Ptldeploy.ts @@ -0,0 +1,17 @@ +import { StringTypeSchema } from "tsbuffer-schema"; + +/** + * 区服初始化 + */ +export type Reqdeploy = { + +}; + + +export type Resdeploy = { + /** + * 如果发送成功 将返回 + */ + code: number + message: "success"; +}; \ No newline at end of file diff --git a/src/monopoly/protocols/games/Ptlmetrics.ts b/src/monopoly/protocols/games/Ptlmetrics.ts new file mode 100644 index 0000000..a9acd7b --- /dev/null +++ b/src/monopoly/protocols/games/Ptlmetrics.ts @@ -0,0 +1,19 @@ +import { StringTypeSchema } from "tsbuffer-schema"; + +/** + * 游戏指标采集 + */ +export type Reqmetrics = { + +}; + + +export type Resmetrics = { + /**当前区服付费人数 */ + now_paid_user_num: number; + /**当前区服在线人数 */ + now_login_user_num: number; + /**当前区服注册人数 */ + now_register_user_num: number; + +}; \ No newline at end of file diff --git a/src/monopoly/protocols/games/Ptlnotification.ts b/src/monopoly/protocols/games/Ptlnotification.ts new file mode 100644 index 0000000..8df0d5d --- /dev/null +++ b/src/monopoly/protocols/games/Ptlnotification.ts @@ -0,0 +1,204 @@ +import { StringTypeSchema } from "tsbuffer-schema"; + +/** + * 告知类相关服务 + */ +export type Reqnotification = { + /**publish 发布全服邮件/个人邮件/公告板/跑马灯 offline 下线全服邮件/公告板/跑马灯 */ + action: "publish" | "offline", + /**server_mail 全服邮件 player_mail 个人邮件 bulletin 游戏公告板 news_ticker 游戏跑马灯 */ + template: "server_mail" | "player_mail" | "bulletin" | "news_ticker" + /**富文本语法枚举 */ + richTextType?: string + data?: any +}; + + +export type Resnotification = { + /** + * 如果发送成功 将返回 + */ + code: number + message: "success"; +}; + + +export type GongGaoBan_info = { + /**公告内容 */ + content: string; + /**展示结束时间 */ + etime: string; + /**展示结束时间 */ + stime: string; + /**排序 */ + sort: string; + /**公告标题 */ + title: string; + /**其他 */ + otherData?: { [id: string]: any } +}; + + + + + +// 构造请求参数 发布全服邮件 +export type canshuwurenhedifangdiaoyongnotificationargs1 = { + "action": "publish", + "template": "server_mail", + "data": { + "id": 123, + "serverIds": [], + "startTime": 1694403109, + "endTime": 1696995109, + "levelMin": 10, + "levelMax": 100, + "registeredBefore": 1694403109, + "registeredAfter": 1694403109, + "extends": {}, + "mail": [ + { + "language": "zh", + "header": "测试邮件标题 server_mail publish 1", + "content": "测试邮件内容 server_mail publish 1", + "bannerLink": "url" + }, + { + "language": "zh", + "header": "测试邮件标题 server_mail publish 2", + "content": "测试邮件内容 server_mail publish 2", + "bannerLink": "url" + } + ], + "assets": [ + { + "itemId": "1", + "num": 10 + }, + { + "itemId": "2", + "num": 10 + } + ] + + } +}; + +// 构造请求参数 下线全服邮件 +export type canshuwurenhedifangdiaoyongnotificationargs3 = { + "action": "offline", + "template": "server_mail", + "data": [123] +}; + +// 构造请求参数 发布个人邮件 playerIds 放url +export type canshuwurenhedifangdiaoyongnotificationargs2 = { + "action": "publish", + "template": "player_mail", + "data": { + "id": 123, + "playerIds": [], + "sendTime": 1694403109, + "extends": {}, + "mail": [ + { + "language": "zh", + "header": "测试邮件标题 player_mail publish 100", + "content": "测试邮件内容 player_mail publish 100", + "bannerLink": "url" + }, + { + "language": "zh", + "header": "测试邮件标题 player_mail publish 200", + "content": "测试邮件内容 player_mail publish 200", + "bannerLink": "url" + } + ], + "assets": [ + { + "itemId": "1", + "num": 10 + }, + { + "itemId": "2", + "num": 10 + } + ] + + } +}; + +// 构造请求参数 跑马灯 +export type canshuwurenhedifangdiaoyongnotificationargspmd1 = { + "action": "publish", + "template": "news_ticker", + "data": { + "id": 123456, // G123生成的告知唯一ID + "serverIds": [1], // 服务器ID列表 + "startTime": 1694403109, // 开始时间 13位时间戳 + "endTime": 1696995109, // 结束时间 13位时间戳 + "levelMin": 10, // 玩家最小等级 + "levelMax": 70, // 玩家最大等级 + "interval": 3, // 播放间隔,单位分钟,为0时仅播放 frequency 次 + "frequency": 1, // 每回播放频次,单位条数 + "newsTicker": [ // 告知内容 + { + "language": "zh", + "content": "测试跑马灯 1" + }, + { + "language": "zh", + "content": "测试跑马灯 2" + } + ] + } +}; + +// 构造请求参数 删除(下线)跑马灯 +export type canshuwurenhedifangdiaoyongnotificationargspmd2 = { + "action": "offline", + "template": "news_ticker", + "data": [123456] +}; + +// 构造请求参数 增加/编辑公告 +export type canshuwurenhedifangdiaoyongnotificationargsgonggao1 = { + "action": "publish", + "template": "bulletin", + "data": { + "id": 1, + "serverIds": [], // 为空时默任展现给所有区服 + "startTime": 1694403109, // 开始时间 + "endTime": 1726025509, // 结束时间 + "levelMin": 10, // 玩家最小等级 + "levelMax": 70, // 玩家最大等级 + "bulletin": [ + { + "language": "zh", + "header": "新服公告新服公告新服公告新服公告", + "content": "新服火热开启!各种福利来袭,任何游戏问题欢迎咨询官方客服,祝您游戏愉快!", + "tag": "", // 公告板标签 + "bannerLink": "" // 背景图片 + }, + { + "language": "zh", + "header": "新服公告新服公告新服公告新服公告", + "content": "新服火热开启!各种福利来袭,任何游戏问题欢迎咨询官方客服,祝您游戏愉快!", + "tag": "", // 公告板标签 + "bannerLink": "" // 背景图片 + } + ] + + } +}; + +// 构造请求参数 增加/编辑公告 +export type canshuwurenhedifangdiaoyongnotificationargsgonggao2 = { + "action": "offline", + "template": "bulletin", + "data": [1] +}; + + + + diff --git a/src/monopoly/protocols/games/Ptlopen.ts b/src/monopoly/protocols/games/Ptlopen.ts new file mode 100644 index 0000000..2c8467f --- /dev/null +++ b/src/monopoly/protocols/games/Ptlopen.ts @@ -0,0 +1,18 @@ +import { StringTypeSchema } from "tsbuffer-schema"; + +/** + * 获取开服时间 + */ +export type Reqopen = { + opentime: string; + utc?: string; +}; + + +export type Resopen = { + /** + * 如果发送成功将返回 服务器时间 + */ + code: number; + message: string; +}; \ No newline at end of file diff --git a/src/monopoly/protocols/games/Ptlranking.ts b/src/monopoly/protocols/games/Ptlranking.ts new file mode 100644 index 0000000..279cf1c --- /dev/null +++ b/src/monopoly/protocols/games/Ptlranking.ts @@ -0,0 +1,33 @@ +import { int, StringTypeSchema } from "tsbuffer-schema"; +import { rankType } from "../../../shared/protocols/rank/PtlOpen"; + +/** + * 获取排行榜 + */ +export type Reqranking = { + /**获取数量 */ + num: number; + /**跳过数量 */ + skip: number; + /**排行榜类型 */ + rankid: rankType +}; + + +export type Resranking = { + /** + * 如果发送成功将返回 + */ + code: number; + message: string; + data: { + /**排名 */ + ranking: number; + /**实体id(如: 玩家id, 工会id) */ + id: string; + /**实体名称(如:玩家名称,工会名称) */ + name: string; + /**排行值 */ + rankkingValue: string; + }[] +}; \ No newline at end of file diff --git a/src/monopoly/protocols/gift/Ptlpopup.ts b/src/monopoly/protocols/gift/Ptlpopup.ts new file mode 100644 index 0000000..af4514a --- /dev/null +++ b/src/monopoly/protocols/gift/Ptlpopup.ts @@ -0,0 +1,29 @@ +export type Reqpopup = { + /** + * 推送的礼包详情 + */ + //popup推送数据 + popup_id: string; + ctwid: string; + game_user_id: string; + game_server_id: string; + role: { id: string }; + gift: { id: string }; + template_id: string; + + //获取到的礼包详情 + id: string + vipPoints: number + amountToDiamond: number + price: number + priceValueRatio: number + duration: number + purchaseLimitAmount: number + isAISupported: boolean + platformCreative: { enabled: boolean } + items: { [k: string]: any } +}; + + +export type Respopup = {}; + diff --git a/src/monopoly/protocols/gm/PtlPay.ts b/src/monopoly/protocols/gm/PtlPay.ts new file mode 100644 index 0000000..b0fb983 --- /dev/null +++ b/src/monopoly/protocols/gm/PtlPay.ts @@ -0,0 +1,11 @@ +/** + * 内部充值 + */ +export type ReqPay = { + uid: string; + payId: string; + payArgs?: any; + type: "system" | "user" | "legu"; +} + +export type ResPay = {} diff --git a/src/monopoly/protocols/gm/PtlSendPrize.ts b/src/monopoly/protocols/gm/PtlSendPrize.ts new file mode 100644 index 0000000..c5d7067 --- /dev/null +++ b/src/monopoly/protocols/gm/PtlSendPrize.ts @@ -0,0 +1,7 @@ +export type ReqSendPrize = { + uid: string; + payId: string; + type: "system" | "user"; +} + +export type ResSendPrize = {} diff --git a/src/monopoly/protocols/hdinfo/Ptldetails.ts b/src/monopoly/protocols/hdinfo/Ptldetails.ts new file mode 100644 index 0000000..2d81ad9 --- /dev/null +++ b/src/monopoly/protocols/hdinfo/Ptldetails.ts @@ -0,0 +1,56 @@ +import { StringTypeSchema } from "tsbuffer-schema"; + +/** + * 活动详情 + */ +export type Reqdetails = { + /**获取数量 */ + num: number; + /**跳过数量 */ + skip: number; + /**无uid 取随机 */ + uid?: string +}; + + +export type Resdetails = { + /** + * 如果发送成功将返回 + */ + status: number; + message: string; + data: g123_response_hdinfo_details[]; +}; + + +/**返回活动格式 */ +export type g123_response_hdinfo_details = { + // 总数 + total: number; + // 区服详情列表 + elemengts: g123_response_hdinfo_details_taowa[]; +} + +/**子格式 */ +export type g123_response_hdinfo_details_taowa = { + // 活动id + eventId: string; + // 活动名 + eventName: string; + // 服务器ID + serverId: number; + // 结束时间 毫秒 + accountingTime: number; + // 结算数据 继续套娃 + accountingData: g123_response_hdinfo_details_accountingData[] +} + +/**子格式 */ +export type g123_response_hdinfo_details_accountingData = { + // 结算排名 + ranking: number; + // 参与者id,玩家id 或工会id + participantId: string; + // 结算数据,如战力,消费金额,击杀数 + value: string; +} \ No newline at end of file diff --git a/src/monopoly/protocols/serviceProto.ts b/src/monopoly/protocols/serviceProto.ts new file mode 100644 index 0000000..201c9f5 --- /dev/null +++ b/src/monopoly/protocols/serviceProto.ts @@ -0,0 +1,2414 @@ +import { ServiceProto } from 'tsrpc-proto'; +import { Reqdeploy, Resdeploy } from './games/Ptldeploy'; +import { Reqmetrics, Resmetrics } from './games/Ptlmetrics'; +import { Reqnotification, Resnotification } from './games/Ptlnotification'; +import { Reqopen, Resopen } from './games/Ptlopen'; +import { Reqranking, Resranking } from './games/Ptlranking'; +import { Reqpopup, Respopup } from './gift/Ptlpopup'; +import { ReqPay, ResPay } from './gm/PtlPay'; +import { ReqSendPrize, ResSendPrize } from './gm/PtlSendPrize'; +import { Reqdetails, Resdetails } from './hdinfo/Ptldetails'; +import { ReqAddHuoDong, ResAddHuoDong } from './PtlAddHuoDong'; +import { ReqCatAllhd, ResCatAllhd } from './PtlCatAllhd'; +import { ReqDelHuoDong, ResDelHuoDong } from './PtlDelHuoDong'; +import { ReqEmail, ResEmail } from './PtlEmail'; +import { ReqGetLog, ResGetLog } from './PtlGetLog'; +import { Reqhealthz, Reshealthz } from './Ptlhealthz'; +import { Reqrename, Resrename } from './union/Ptlrename'; +import { Reqdata, Resdata } from './user/Ptldata'; +import { Reqgetdata, Resgetdata } from './user/Ptlgetdata'; +import { Reqrename as Reqrename_1, Resrename as Resrename_1 } from './user/Ptlrename'; + +export interface ServiceType { + api: { + "games/deploy": { + req: Reqdeploy, + res: Resdeploy + }, + "games/metrics": { + req: Reqmetrics, + res: Resmetrics + }, + "games/notification": { + req: Reqnotification, + res: Resnotification + }, + "games/open": { + req: Reqopen, + res: Resopen + }, + "games/ranking": { + req: Reqranking, + res: Resranking + }, + "gift/popup": { + req: Reqpopup, + res: Respopup + }, + "gm/Pay": { + req: ReqPay, + res: ResPay + }, + "gm/SendPrize": { + req: ReqSendPrize, + res: ResSendPrize + }, + "hdinfo/details": { + req: Reqdetails, + res: Resdetails + }, + "AddHuoDong": { + req: ReqAddHuoDong, + res: ResAddHuoDong + }, + "CatAllhd": { + req: ReqCatAllhd, + res: ResCatAllhd + }, + "DelHuoDong": { + req: ReqDelHuoDong, + res: ResDelHuoDong + }, + "Email": { + req: ReqEmail, + res: ResEmail + }, + "GetLog": { + req: ReqGetLog, + res: ResGetLog + }, + "healthz": { + req: Reqhealthz, + res: Reshealthz + }, + "union/rename": { + req: Reqrename, + res: Resrename + }, + "user/data": { + req: Reqdata, + res: Resdata + }, + "user/getdata": { + req: Reqgetdata, + res: Resgetdata + }, + "user/rename": { + req: Reqrename_1, + res: Resrename_1 + } + }, + msg: { + + } +} + +export const serviceProto: ServiceProto = { + "services": [ + { + "id": 0, + "name": "games/deploy", + "type": "api" + }, + { + "id": 1, + "name": "games/metrics", + "type": "api" + }, + { + "id": 2, + "name": "games/notification", + "type": "api" + }, + { + "id": 3, + "name": "games/open", + "type": "api" + }, + { + "id": 4, + "name": "games/ranking", + "type": "api" + }, + { + "id": 5, + "name": "gift/popup", + "type": "api" + }, + { + "id": 6, + "name": "gm/Pay", + "type": "api" + }, + { + "id": 7, + "name": "gm/SendPrize", + "type": "api" + }, + { + "id": 8, + "name": "hdinfo/details", + "type": "api" + }, + { + "id": 9, + "name": "AddHuoDong", + "type": "api" + }, + { + "id": 10, + "name": "CatAllhd", + "type": "api" + }, + { + "id": 11, + "name": "DelHuoDong", + "type": "api" + }, + { + "id": 12, + "name": "Email", + "type": "api" + }, + { + "id": 13, + "name": "GetLog", + "type": "api" + }, + { + "id": 14, + "name": "healthz", + "type": "api" + }, + { + "id": 15, + "name": "union/rename", + "type": "api" + }, + { + "id": 16, + "name": "user/data", + "type": "api" + }, + { + "id": 17, + "name": "user/getdata", + "type": "api" + }, + { + "id": 18, + "name": "user/rename", + "type": "api" + } + ], + "types": { + "games/Ptldeploy/Reqdeploy": { + "type": "Interface" + }, + "games/Ptldeploy/Resdeploy": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "code", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "message", + "type": { + "type": "Literal", + "literal": "success" + } + } + ] + }, + "games/Ptlmetrics/Reqmetrics": { + "type": "Interface" + }, + "games/Ptlmetrics/Resmetrics": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "now_paid_user_num", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "now_login_user_num", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "now_register_user_num", + "type": { + "type": "Number" + } + } + ] + }, + "games/Ptlnotification/Reqnotification": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "action", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "publish" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "offline" + } + } + ] + } + }, + { + "id": 1, + "name": "template", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "server_mail" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "player_mail" + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": "bulletin" + } + }, + { + "id": 3, + "type": { + "type": "Literal", + "literal": "news_ticker" + } + } + ] + } + }, + { + "id": 2, + "name": "richTextType", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 3, + "name": "data", + "type": { + "type": "Any" + }, + "optional": true + } + ] + }, + "games/Ptlnotification/Resnotification": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "code", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "message", + "type": { + "type": "Literal", + "literal": "success" + } + } + ] + }, + "games/Ptlopen/Reqopen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "opentime", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "utc", + "type": { + "type": "String" + }, + "optional": true + } + ] + }, + "games/Ptlopen/Resopen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "code", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "message", + "type": { + "type": "String" + } + } + ] + }, + "games/Ptlranking/Reqranking": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "skip", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "rankid", + "type": { + "type": "Reference", + "target": "../../shared/protocols/rank/PtlOpen/rankType" + } + } + ] + }, + "../../shared/protocols/rank/PtlOpen/rankType": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "jjc" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "tanxian" + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": "zhanli" + } + }, + { + "id": 3, + "type": { + "type": "Literal", + "literal": "qjzzd" + } + }, + { + "id": 4, + "type": { + "type": "Literal", + "literal": "hbzbLocal" + } + }, + { + "id": 5, + "type": { + "type": "Literal", + "literal": "hbzbCross" + } + }, + { + "id": 6, + "type": { + "type": "Literal", + "literal": "hbzbZbsCross" + } + }, + { + "id": 7, + "type": { + "type": "Literal", + "literal": "slzd1" + } + }, + { + "id": 8, + "type": { + "type": "Literal", + "literal": "slzd2" + } + }, + { + "id": 9, + "type": { + "type": "Literal", + "literal": "slzd3" + } + }, + { + "id": 10, + "type": { + "type": "Literal", + "literal": "slzd4" + } + }, + { + "id": 11, + "type": { + "type": "Literal", + "literal": "slzd5" + } + }, + { + "id": 12, + "type": { + "type": "Literal", + "literal": "slzd6" + } + }, + { + "id": 13, + "type": { + "type": "Literal", + "literal": "kbzz" + } + }, + { + "id": 14, + "type": { + "type": "Literal", + "literal": "xszm" + } + }, + { + "id": 15, + "type": { + "type": "Literal", + "literal": "clslCross" + } + }, + { + "id": 16, + "type": { + "type": "Literal", + "literal": "zccg" + } + }, + { + "id": 17, + "type": { + "type": "Literal", + "literal": "gbzl" + } + }, + { + "id": 18, + "type": { + "type": "Literal", + "literal": "tujian" + } + }, + { + "id": 19, + "type": { + "type": "Literal", + "literal": "wzryCross" + } + } + ] + }, + "games/Ptlranking/Resranking": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "code", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "message", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "data", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "ranking", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "name", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "rankkingValue", + "type": { + "type": "String" + } + } + ] + } + } + } + ] + }, + "gift/Ptlpopup/Reqpopup": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "popup_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "ctwid", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "game_user_id", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "game_server_id", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "role", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + } + ] + } + }, + { + "id": 5, + "name": "gift", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + } + ] + } + }, + { + "id": 6, + "name": "template_id", + "type": { + "type": "String" + } + }, + { + "id": 7, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 8, + "name": "vipPoints", + "type": { + "type": "Number" + } + }, + { + "id": 9, + "name": "amountToDiamond", + "type": { + "type": "Number" + } + }, + { + "id": 10, + "name": "price", + "type": { + "type": "Number" + } + }, + { + "id": 11, + "name": "priceValueRatio", + "type": { + "type": "Number" + } + }, + { + "id": 12, + "name": "duration", + "type": { + "type": "Number" + } + }, + { + "id": 13, + "name": "purchaseLimitAmount", + "type": { + "type": "Number" + } + }, + { + "id": 14, + "name": "isAISupported", + "type": { + "type": "Boolean" + } + }, + { + "id": 15, + "name": "platformCreative", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "enabled", + "type": { + "type": "Boolean" + } + } + ] + } + }, + { + "id": 16, + "name": "items", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + } + } + ] + }, + "gift/Ptlpopup/Respopup": { + "type": "Interface" + }, + "gm/PtlPay/ReqPay": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "payId", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "payArgs", + "type": { + "type": "Any" + }, + "optional": true + }, + { + "id": 3, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "system" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "user" + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": "legu" + } + } + ] + } + } + ] + }, + "gm/PtlPay/ResPay": { + "type": "Interface" + }, + "gm/PtlSendPrize/ReqSendPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "payId", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "system" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "user" + } + } + ] + } + } + ] + }, + "gm/PtlSendPrize/ResSendPrize": { + "type": "Interface" + }, + "hdinfo/Ptldetails/Reqdetails": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "skip", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "uid", + "type": { + "type": "String" + }, + "optional": true + } + ] + }, + "hdinfo/Ptldetails/Resdetails": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "status", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "message", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "data", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "hdinfo/Ptldetails/g123_response_hdinfo_details" + } + } + } + ] + }, + "hdinfo/Ptldetails/g123_response_hdinfo_details": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "total", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "elemengts", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "hdinfo/Ptldetails/g123_response_hdinfo_details_taowa" + } + } + } + ] + }, + "hdinfo/Ptldetails/g123_response_hdinfo_details_taowa": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "eventId", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "eventName", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "serverId", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "accountingTime", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "accountingData", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "hdinfo/Ptldetails/g123_response_hdinfo_details_accountingData" + } + } + } + ] + }, + "hdinfo/Ptldetails/g123_response_hdinfo_details_accountingData": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "ranking", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "participantId", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "value", + "type": { + "type": "String" + } + } + ] + }, + "PtlAddHuoDong/ReqAddHuoDong": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdid", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "htype", + "type": { + "type": "Reference", + "target": "PtlAddHuoDong/Htypes" + } + }, + { + "id": 2, + "name": "stype", + "type": { + "type": "Reference", + "target": "PtlAddHuoDong/Stypes" + } + }, + { + "id": 3, + "name": "ttype", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 0 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 1 + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": 4 + } + } + ] + } + }, + { + "id": 4, + "name": "stime", + "type": { + "type": "Number" + } + }, + { + "id": 5, + "name": "rtime", + "type": { + "type": "Number" + } + }, + { + "id": 6, + "name": "etime", + "type": { + "type": "Number" + } + }, + { + "id": 7, + "name": "showtime", + "type": { + "type": "String" + } + }, + { + "id": 8, + "name": "data", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + } + }, + { + "id": 9, + "name": "name", + "type": { + "type": "String" + } + }, + { + "id": 10, + "name": "icon", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 11, + "name": "opencond", + "type": { + "type": "String" + }, + "optional": true + } + ] + }, + "PtlAddHuoDong/Htypes": { + "type": "Number" + }, + "PtlAddHuoDong/Stypes": { + "type": "Number" + }, + "PtlAddHuoDong/ResAddHuoDong": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "insertId", + "type": { + "type": "String" + } + } + ] + }, + "PtlCatAllhd/ReqCatAllhd": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "where", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "optional": true + } + ] + }, + "PtlCatAllhd/ResCatAllhd": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdlist", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "PtlAddHuoDong/ReqAddHuoDong" + } + } + } + ] + }, + "PtlDelHuoDong/ReqDelHuoDong": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdid", + "type": { + "type": "Number" + } + } + ] + }, + "PtlDelHuoDong/ResDelHuoDong": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "status", + "type": { + "type": "Literal", + "literal": "success" + } + } + ] + }, + "PtlEmail/ReqEmail": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "system" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "gm" + } + } + ] + } + }, + { + "id": 2, + "name": "title", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "content", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "a", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "t", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "n", + "type": { + "type": "Number" + } + } + ] + } + }, + "optional": true + }, + { + "id": 5, + "name": "contentInsertArr", + "type": { + "type": "Array", + "elementType": { + "type": "Any" + } + }, + "optional": true + }, + { + "id": 6, + "name": "prizelist", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + }, + "optional": true + }, + { + "id": 7, + "name": "dellist", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + }, + "optional": true + }, + { + "id": 8, + "name": "g123log", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "optional": true + } + ] + }, + "PtlEmail/ResEmail": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "insertId", + "type": { + "type": "String" + } + } + ] + }, + "PtlGetLog/ReqGetLog": { + "type": "Interface" + }, + "PtlGetLog/ResGetLog": { + "type": "String" + }, + "Ptlhealthz/Reqhealthz": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "key", + "type": { + "type": "String" + }, + "optional": true + } + ] + }, + "Ptlhealthz/Reshealthz": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "code", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "data", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "dependencies", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "dependency", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "status", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "reason", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "severity", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "lastcheck", + "type": { + "type": "String" + } + } + ] + } + } + } + ] + } + } + ] + }, + "union/Ptlrename/Reqrename": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "guildId", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "guildName", + "type": { + "type": "String" + } + } + ] + }, + "union/Ptlrename/Resrename": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "status", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "message", + "type": { + "type": "String" + } + } + ] + }, + "user/Ptldata/Reqdata": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "action", + "type": { + "type": "Literal", + "literal": "import" + } + }, + { + "id": 1, + "name": "template", + "type": { + "type": "Literal", + "literal": "players" + } + }, + { + "id": 2, + "name": "data", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "playerId", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "playerData", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + } + } + ] + } + } + ] + }, + "user/Ptldata/Resdata": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "code", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "message", + "type": { + "type": "String" + } + } + ] + }, + "user/Ptlgetdata/Reqgetdata": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "user_id", + "type": { + "type": "String" + } + } + ] + }, + "user/Ptlgetdata/Resgetdata": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "code", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "message", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "data", + "type": { + "type": "IndexedAccess", + "index": "gud", + "objectType": { + "type": "Reference", + "target": "../../shared/protocols/user/PtlLogin/ResLogin" + } + } + } + ] + }, + "../../shared/protocols/user/PtlLogin/ResLogin": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "gud", + "type": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Reference", + "target": "../../shared/protocols/user/PtlLogin/playerInfo" + } + }, + { + "id": 1, + "type": { + "type": "Reference", + "target": "../../shared/protocols/user/PtlLogin/playerAttr" + } + }, + { + "id": 2, + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "../../shared/protocols/user/PtlLogin/playerAppend" + } + } + } + ] + } + }, + { + "id": 1, + "name": "openTime", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "curTime", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "firstLogin", + "type": { + "type": "Boolean" + } + }, + { + "id": 4, + "name": "otherData", + "type": { + "type": "Any" + }, + "optional": true + } + ] + }, + "../../shared/protocols/user/PtlLogin/playerInfo": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "vip", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "bindUid", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "power", + "type": { + "type": "Number" + } + } + ] + }, + "../../shared/protocols/user/PtlLogin/playerAttr": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "nexp", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "jinbi", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "rmbmoney", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "rongyu", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "payExp", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 5, + "name": "guijinshu", + "type": { + "type": "Number" + }, + "optional": true + } + ] + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + } + } + ] + }, + "../../shared/protocols/user/PtlLogin/playerAppend": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "tujianLv", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "head", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 2, + "name": "headFrame", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 3, + "name": "chatFrame", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 4, + "name": "name", + "type": { + "type": "String" + } + }, + { + "id": 5, + "name": "model", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + } + } + } + }, + { + "id": 6, + "name": "renown", + "type": { + "type": "Number" + } + }, + { + "id": 7, + "name": "wxcLv", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "ids", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + ] + } + }, + { + "id": 8, + "name": "mapId", + "type": { + "type": "Number" + } + }, + { + "id": 9, + "name": "shoucangping", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 10, + "name": "useTujianLvPoint", + "type": { + "type": "Number" + } + }, + { + "id": 11, + "name": "skills", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 12, + "name": "fightSkills", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + }, + { + "id": 13, + "name": "heroPos", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + }, + { + "id": 14, + "name": "ghId", + "type": { + "type": "String" + } + }, + { + "id": 15, + "name": "ghName", + "type": { + "type": "String" + } + }, + { + "id": 16, + "name": "ghLevel", + "type": { + "type": "Reference", + "target": "../../shared/protocols/gonghui/type/gonghuiLevel" + } + }, + { + "id": 17, + "name": "ghwz", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + }, + { + "id": 18, + "name": "ghExitTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 19, + "name": "loginTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 20, + "name": "logoutTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 21, + "name": "cTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 22, + "name": "loginDays", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 23, + "name": "serverName", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 24, + "name": "sid", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 25, + "name": "onlineTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 26, + "name": "newonlinetime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 27, + "name": "isNpc", + "type": { + "type": "Boolean" + }, + "optional": true + }, + { + "id": 28, + "name": "matrix", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + }, + { + "id": 29, + "name": "matrixPos", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + } + }, + "optional": true + }, + { + "id": 30, + "name": "selectMatrix", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 31, + "name": "fightHeros", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + }, + "optional": true + }, + { + "id": 32, + "name": "helpHeros", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "jieji", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "heroId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + }, + "optional": true + }, + { + "id": 3, + "name": "heroPosId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + }, + { + "id": 2, + "type": { + "type": "Literal" + } + } + ] + }, + "optional": true + } + ] + } + }, + "optional": true + }, + { + "id": 33, + "name": "changeNameNum", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 34, + "name": "peijianUnlock", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + }, + "optional": true + }, + { + "id": 35, + "name": "headFrames", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + }, + { + "id": 36, + "name": "chatFrames", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + } + ] + }, + "../../shared/protocols/gonghui/type/gonghuiLevel": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 0 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 1 + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": 2 + } + }, + { + "id": 3, + "type": { + "type": "Literal", + "literal": 3 + } + }, + { + "id": 4, + "type": { + "type": "Literal", + "literal": 4 + } + } + ] + }, + "user/Ptlrename/Reqrename": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "action", + "type": { + "type": "Literal", + "literal": "rename" + } + }, + { + "id": 1, + "name": "template", + "type": { + "type": "Literal", + "literal": "players" + } + }, + { + "id": 2, + "name": "data", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "playerId", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "nickname", + "type": { + "type": "String" + } + } + ] + } + } + ] + }, + "user/Ptlrename/Resrename": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "code", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "message", + "type": { + "type": "String" + } + } + ] + } + } +}; \ No newline at end of file diff --git a/src/monopoly/protocols/union/Ptlrename.ts b/src/monopoly/protocols/union/Ptlrename.ts new file mode 100644 index 0000000..8f0e70d --- /dev/null +++ b/src/monopoly/protocols/union/Ptlrename.ts @@ -0,0 +1,20 @@ +import { StringTypeSchema } from "tsbuffer-schema"; + +/** + * 改工会名 + */ +export type Reqrename = { + /**工会id */ + guildId: string; + /**新的工会名称 */ + guildName: string; +}; + + +export type Resrename = { + /** + * 如果发送成功将返回 + */ + status: number; + message: string; +}; \ No newline at end of file diff --git a/src/monopoly/protocols/user/Ptldata.ts b/src/monopoly/protocols/user/Ptldata.ts new file mode 100644 index 0000000..b4ee4fe --- /dev/null +++ b/src/monopoly/protocols/user/Ptldata.ts @@ -0,0 +1,27 @@ +import { StringTypeSchema } from "tsbuffer-schema"; +import { ResLogin } from "../../../shared/protocols/user/PtlLogin"; + +/** + * g123 单个玩家导入 批量修改数据 + */ +export type Reqdata = { + /**操作类型 此处固定 */ + action: "import"; + /**玩家数据模板类型 此处固定 */ + template: "players"; + data: { + /**玩家ID(uid) */ + playerId: string; + /**导出接口的 json 数据 */ + playerData: { [id: string]: any }; + } +}; + + +export type Resdata = { + /** + * 如果发送成功将返回 + */ + code: number; + message: string; +}; \ No newline at end of file diff --git a/src/monopoly/protocols/user/Ptlgetdata.ts b/src/monopoly/protocols/user/Ptlgetdata.ts new file mode 100644 index 0000000..752972b --- /dev/null +++ b/src/monopoly/protocols/user/Ptlgetdata.ts @@ -0,0 +1,20 @@ +import { StringTypeSchema } from "tsbuffer-schema"; +import { ResLogin } from "../../../shared/protocols/user/PtlLogin"; + +/** + * g123 单个玩家导出 + */ +export type Reqgetdata = { + /**玩家id uid */ + user_id: string +}; + + +export type Resgetdata = { + /** + * 如果发送成功将返回 + */ + code: number; + message: string; + data: ResLogin['gud'] +}; \ No newline at end of file diff --git a/src/monopoly/protocols/user/Ptlrename.ts b/src/monopoly/protocols/user/Ptlrename.ts new file mode 100644 index 0000000..ca61187 --- /dev/null +++ b/src/monopoly/protocols/user/Ptlrename.ts @@ -0,0 +1,26 @@ +import { StringTypeSchema } from "tsbuffer-schema"; + +/** + * g123 玩家重命名 + */ +export type Reqrename = { + /**操作类型 此处固定 */ + action: "rename"; + /**玩家数据模板类型 此处固定 */ + template: "players"; + data: { + /**玩家ID(uid) */ + playerId: string; + /**玩家新的昵称 */ + nickname: string; + } +}; + + +export type Resrename = { + /** + * 如果发送成功将返回 + */ + code: number; + message: string; +}; \ No newline at end of file diff --git a/src/public/actionLog/actionLog.ts b/src/public/actionLog/actionLog.ts new file mode 100644 index 0000000..a3e64b2 --- /dev/null +++ b/src/public/actionLog/actionLog.ts @@ -0,0 +1,42 @@ + + +export class ActionLog { + static async initDayLog(uid: string) { + G.mongodb.cActionLog('day').updateOne({ uid: uid, type: 'day' }, { $set: { log: {} } }, { upsert: true }); + } + static async addDayLog(uid: string, ...args: { key: string, val: number; }[]) { + const addObj = G.mongodb.createTreeObj(...args.map(a => { return { key: 'log', k: a.key, val: a.val }; })); + G.mongodb.cActionLog('day').updateOne({ uid: uid, type: 'day' }, { $inc: addObj }); + } + static async getDayLog(uid: string, key: string): Promise; + static async getDayLog(uid: string, ...keys: string[]): Promise>; + static async getDayLog(uid: string, keyArr: string[]): Promise>; + static async getDayLog(uid: string) { + let log = (await G.mongodb.cActionLog('day').findOne({ uid: uid, type: 'day' }))?.log || {}; + if (arguments.length == 2) { + if (typeof arguments[1] == 'string') return log[arguments[1]] || 0; + else return Object.fromEntries(arguments[1].map(key => [key, log[key] || 0])); + } + return Object.fromEntries(Array.from(arguments).slice(1).map(key => [key, log[key] || 0])); + } + + static async addRetainLog(uid: string, ...args: { key: string, val: number; }[]) { + const addObj = G.mongodb.createTreeObj(...args.map(a => { return { key: 'log', k: a.key, val: a.val }; })); + G.mongodb.cActionLog('retain').updateOne({ uid: uid, type: 'retain' }, { $inc: addObj }, { upsert: true }); + }; + static async getRetainLog(uid: string, key: string): Promise; + static async getRetainLog(uid: string, ...keys: string[]): Promise>; + static async getRetainLog(uid: string, keyArr: string[]): Promise>; + static async getRetainLog(uid: string) { + let log = (await G.mongodb.cActionLog('retain').findOne({ uid: uid, type: 'retain' }))?.log || {}; + if (arguments.length == 2) { + if (typeof arguments[1] == 'string') return log[arguments[1]] || 0; + else return Object.fromEntries(arguments[1].map(key => [key, log[key] || 0])); + } + return Object.fromEntries(Array.from(arguments).slice(1).map(key => [key, log[key] || 0])); + } + static async getLogByTaskType(uid: string, ...tasks: { taskId: string, taskType?: string; }[]) { + let taskArr = tasks.map(task => { return { ...task, taskType: task.taskType || 'day' }; }); + return taskArr[0].taskType == 'day' ? await this.getDayLog(uid, ...taskArr.map(task => task.taskId)) : await this.getRetainLog(uid, ...taskArr.map(task => task.taskId)); + } +} \ No newline at end of file diff --git a/src/public/chat.ts b/src/public/chat.ts new file mode 100644 index 0000000..9ed43a2 --- /dev/null +++ b/src/public/chat.ts @@ -0,0 +1,49 @@ + +import { MsgChat } from '../shared/protocols/msg_s2c/MsgChat'; +import { player } from '../shared/protocols/user/type'; + +const msgListLen = { + 'cross': 30, + 'local': 30, + 'guild': 20 +}; + +export class ChatFun { + /**新增消息 */ + static async newMsg(sendData: MsgChat) { + G.mongodb.collection('chat').updateOne( + { type: `${sendData.type}${sendData.type == 'guild' ? (sendData.sender as player)?.ghId : ''}` }, + { $push: { list: { $each: [sendData], $slice: -msgListLen[sendData.type] } } }, + { upsert: true } + ); + + if (sendData.type == 'guild') { + G.server.broadcastClusterMsg('msg_s2c/Chat', sendData,{ghId:(sendData.sender as player)?.ghId}); + }else{ + G.server.broadcastClusterMsg('msg_s2c/Chat', sendData); + } + + } + /**获取私聊列表 */ + static async getPrivateList(uid: string) { + let privateIds = await G.redis.get('chatPrivate', uid) || []; + + if (privateIds.length < 1) return {}; + + let privateList = await G.mongodb.collection('chat').find({ type: { $in: privateIds } }).toArray(); + + return Object.fromEntries(privateIds.map((p, i) => [p, privateList[i]?.list || []])); + } + /**写入私聊id */ + static async writePrivateId(uid: string, privateId: string) { + G.redis.get('chatPrivate', uid).then(v => { + if (v == null) { + G.redis.set('chatPrivate', uid, [privateId]); + } else { + if (!v.includes(privateId)) { + G.redis.arrAppend('chatPrivate', uid, privateId); + } + } + }); + } +} \ No newline at end of file diff --git a/src/public/dixiaqianzhuang.ts b/src/public/dixiaqianzhuang.ts new file mode 100644 index 0000000..be227a3 --- /dev/null +++ b/src/public/dixiaqianzhuang.ts @@ -0,0 +1,82 @@ +import { boolean } from 'mathjs'; +import { ApiCall } from 'tsrpc'; +import { PublicShared } from '../shared/public/public'; + + +export class DiXiaQianZhuangFun { + /**获取配置信息 */ + static async getCon() { + let _con = G.gc.dixiaqianzhuang; + return _con; + } + + /**获取我的数据 */ + static async getMyData(call: ApiCall,) { + let result = await G.mongodb.collection('playerInfo', 'dixiaqianzhuang').findOne({ uid: call.uid, type: 'dixiaqianzhuang' }); + let num: number = 0; + if (result && PublicShared.chkSameDate(result.time, G.time)) { + num = result.num; + } + return num; + } + + /**返回 第 num 次祈福的消耗*/ + static async getNumNeed(call: ApiCall, num: number) { + let _res = { + jinbi: 0, + need: 0, + needvip: 0 + }; + let _con = await this.getCon(); + let maxJb = G.gc.com.dxqz_dh_sx.value; // 单次获得金币最大值 + let lv = call.conn.gud.lv; + // let lv = 10000000 // 测试数据 + let _gongshi = G.gc.com.dxqz_gs.value.toString(); // 获得金币公式 + let _isnum: 0 | 1 = 0; + for (let index = 1; index <= Object.keys(_con).length; index++) { + const element = _con[index.toString()]; + + let acquire = Math.floor(eval(_gongshi)); + if (acquire > maxJb) acquire = maxJb; + + if (element.cs[0] <= num && num <= element.cs[1]) { + _res.jinbi += acquire; + _res.need += element.need; + _res.needvip = element.needVIP; + _isnum = 1; + break; + } + } + if (_isnum == 0) { + _res.needvip = 999999; + } + return _res; + } + + /**获取暴击倍数 */ + static async getBj() { + let _sjNum = PublicShared.randomNum(1, 100); + let _twoNum = Number(G.gc.com.dxqz_crit_2.value) * 100; + let _threeNum = Number(G.gc.com.dxqz_crit_3.value) * 100; + let bj = 1; + if (_sjNum <= _threeNum) { + bj = 3; + } else if (_sjNum <= _twoNum) { + bj = 2; + } + return bj; + } + + /**红点 */ + static async getHongDian(call: ApiCall) { + let _res = { + show: false + }; + let _num = await this.getMyData(call) + 1; + let _con = await this.getNumNeed(call, _num); + if (_con.needvip <= call.conn.gud.vip && !_con.need) { + _res.show = true; + } + return _res; + } +} \ No newline at end of file diff --git a/src/public/dxlt.ts b/src/public/dxlt.ts new file mode 100644 index 0000000..10fddb2 --- /dev/null +++ b/src/public/dxlt.ts @@ -0,0 +1,142 @@ +import { ApiCall } from 'tsrpc'; +import { ResOpen } from '../shared/protocols/dixialeitai/PtlOpen'; +import { PublicShared } from '../shared/public/public'; + + +export class DxltFun { + /**修改数据 */ + static async changeData(call: ApiCall, change: Partial) { + + Object.entries(change).forEach(v => { + G.redis.set('dxlt', call.uid, v[0] as any, v[1]); + }); + G.mongodb.collection('dxlt').updateOne({ uid: call.uid }, { $set: { ...change } }); + + return change; + } + static async getData(call: ApiCall) { + return await G.redis.get('dxlt', call.uid); + } + /**回退层数 */ + static backLayer(data: ResOpen) { + let num = data.curLayer - G.gc.dxlt_com.dayResetBackLayer; + data.curLayer = num < 1 ? 1 : num; + data.over = G.gc.dxlt_layer[data.curLayer].type == 2; + } + /**扫荡 */ + static saodan(data: ResOpen, num?: number) { + let prizeNum = 0; + + data.saodang = { + item: {}, + buff: {} + }; + + let conf = G.gc.dxlt_layer[data.curLayer]; + + if (conf.isBoss) { + let random = PublicShared.randomDropAny(G.gc.dxlt_com.fightPrizeBoss.random); + + if (random.dlz) data.saodang.prize = PublicShared.randomDropGroup(random.dlz); + if (random.mibaoNum) data.saodang.mibaoNum = random.mibaoNum; + } else { + let r = PublicShared.randomDropAny(G.gc.dxlt_com.fightPrize.random); + + switch (r.type) { + case 'item': + let item = PublicShared.randomDropAny(r.rd); + let itemObj = Object.fromEntries(Object.keys(item).filter(k => k == 'id').map(k => [item[k], 1])); + PublicShared.mergeProperty(data.saodang.item, itemObj); + PublicShared.mergeProperty(data.item, itemObj); + break; + case 'buff': + let buff = PublicShared.randomDropAny(r.rd); + let buffObj = Object.fromEntries(Object.keys(buff).filter(k => k == 'id').map(k => [buff[k], 1])); + PublicShared.mergeProperty(data.saodang.buff, buffObj); + PublicShared.mergeProperty(data.buff, buffObj); + break; + case 'prize': + prizeNum++; + break; + case 'shop': + data.saodang.shop = true; + break; + } + if (prizeNum > 0) { + data.saodang.prize = PublicShared.randomDropGroup(G.gc.dxlt_com.fightPrize.prizeDlz, prizeNum); + } + } + } + /**获取buff */ + static getBuff(data: ResOpen) { + let buff = {}; + + Object.entries(data.buff).forEach(b => { + PublicShared.mergeProperty(buff, G.gc.dxlt_com.fightPrize.buff[b[0]]); + buff[b[0]] *= b[1]; + }); + + return buff; + } + /**通关一层后修改数据 */ + static passLayerChange(data: ResOpen, change: Partial) { + if (data.curLayer > data.maxLayer) change.maxLayer = data.curLayer; + if (data.curLayer > data.curMaxLayer) change.curMaxLayer = data.curLayer; + if (data.recordLayer < G.gc.dxlt_com.getMiBaoByFightNum * G.gc.dxlt_com.getPrizeByMiBaoNum) change.recordLayer = data.recordLayer + 1; + } + /**修改商店 */ + static changeShop(data: ResOpen, change: Partial) { + let shop = PublicShared.randomDropAny(Object.values(G.gc.dxlt_shop)); + + if (data.shop[shop.id]) { + data.shop[shop.id].buyNum++; + } else { + data.shop[shop.id] = { + ...shop, + useBuyNum: 0 + }; + } + change.shop = data.shop; + } + + /**红点 子函数 */ + static async getFinish(call: ApiCall, _type: string, data) { + let ishd: 0 | 1 = 0; + let _val = _type == 'killPrizeRec' ? (data.killBoss || 0) : data.maxLayer; + let _taskCon = _type == 'killPrizeRec' ? G.gc.dxlt_com.killPrize : G.gc.dxlt_com.passPrize; + for (let indexTask = 0; indexTask < _taskCon.length; indexTask++) { + const elementTask = _taskCon[indexTask]; + if (elementTask.need > _val) continue; + if (data[_type].includes(indexTask)) continue; + ishd = 1; + break; + } + return ishd; + } + + /**红点 */ + static async getHongDian(call: ApiCall) { + let _res = { + show: false + }; + let data = await this.getData(call); + if (!data) return _res; + if (data.recordLayer / G.gc.dxlt_com.getMiBaoByFightNum >= G.gc.dxlt_com.getPrizeByMiBaoNum) { + // 秘宝奖励 + _res.show = true; + } + + if (!_res.show) { + const _type = ['killPrizeRec']; + for (let index = 0; index < _type.length; index++) { + const element = _type[index]; + let ishd = await this.getFinish(call, element, data); + if (ishd) { + _res.show = true; + break; + } + } + } + return _res; + } +} \ No newline at end of file diff --git a/src/public/email.ts b/src/public/email.ts new file mode 100644 index 0000000..a16f99f --- /dev/null +++ b/src/public/email.ts @@ -0,0 +1,204 @@ +import { CollectionEmail } from '../module/collection_email'; +import { ReqEmail } from '../monopoly/protocols/PtlEmail'; +import { MsgEmail } from '../shared/protocols/msg_s2c/MsgEmail'; +import { UserFun } from './user'; + + +export class EmailFun { + /**获取玩家单个邮件 */ + static async getEmail(uid: string, _id: string) { + return await G.redis.get('email', uid, _id); + } + /**获取玩家所有邮件 */ + static async getAllEmail(uid: string, cache = false) { + + if (!cache) { + let kvList: k_v = {}; + // let emailList = await G.mongodb.collection('email') + // .find({ uid: { $in: [uid, "system"] } }) + // .sort({"createTime": -1}) + // .toArray(); + + //let gud = await G.mongodb.collection('user').findOne({ uid: uid }) // 全服的邮件增加创号时间检测 + + let gud = await G.mongodb.findOne('user',{ uid: uid },['cTime']) // 全服的邮件增加创号时间检测 + + let emailList = await G.mongodb.collection("email").find({ + $or: [ + { uid: uid}, + { + uid: "system", + dellist: { $not: { $in: [uid] } }, + createTime: { $gte: gud.cTime } + } + ] + }).sort({"createTime": -1}).toArray(); + + + for(let email of emailList) { + let _email = G.mongodb.conversionIdObj(email); + // let emailRead = await G.redis.get('email', uid, _email._id, 'emailRead'); + let emailRead = await G.redis.get('email', uid, _email._id, 'emailRead'); + _email.emailRead = emailRead ? emailRead : false + + if (email.uid != "system") { + kvList[G.formatRedisKey(_email._id)] = _email; + } else { + // 全服邮件 数据操作 + if (email?.dellist?.indexOf(uid) == -1 && gud && gud.cTime <= email.createTime) { + if (_email.prizeData) _email.prizeData.isGet = email?.prizelist.indexOf(uid) != -1 + kvList[G.formatRedisKey(_email._id)] = _email; + } + } + }; + G.redis.set('email', uid, kvList); + return Object.values(kvList); + } else { + return Object.values(await G.redis.get('email', uid)); + } + } + /**领取邮件 */ + static receiveEmail(uid: string, _id: string): k_v; + static receiveEmail(uid: string, _id: string[]): k_v; + static receiveEmail(uid: string, _id: string | string[]) { + + let _ids: string[] = [].concat(_id); + let change: k_v = {}; + let oids = _ids.map(id => { + change[id] = true; + G.redis.set('email', uid, id, 'prizeData', 'isGet', true); + return { _id: G.mongodb.conversionId(id) }; + }); + + G.mongodb.collection('email').updateMany( + { uid: uid, $or: oids, prizelist: { $exists: false } }, + { + $set: { + emailRead: true, + 'prizeData.isGet': true + } + } + ); + G.mongodb.collection('email').updateMany({ uid: "system", $or: oids, prizelist: { $exists: true } }, { $push: { prizelist: uid } }); + + return change; + } + + // 更改邮件状态为已读-仅限没有奖励的邮件 + static async readEmail(uid: string, id: string) { + // G.mongodb.collection('email').updateMany({ uid: uid, id: {$in: ids}}, {$set: { emailRead: true}}) + // 查询系统邮件, + // let systemEmail = await G.mongodb.collection('email').find({ uid: "system", id: {$in: ids}}); + // console.log(systemEmail) + G.redis.set('email', uid, id, 'emailRead', true); + return + } + + /**删除邮件 */ + static removeEmail(uid: string, _id: string): string[]; + static removeEmail(uid: string, _id: string[]): string[]; + static removeEmail(uid: string, _id: string | string[]) { + let _ids: string[] = [].concat(_id); + + let oids = _ids.map(id => { + G.redis.del('email', uid, id); + return { _id: G.mongodb.conversionId(id) }; + }); + + G.mongodb.collection('email').deleteMany({ uid: uid, $or: oids, dellist: { $exists: false } }); + G.mongodb.collection('email').updateMany({ uid: "system", $or: oids, dellist: { $exists: true } }, { $push: { dellist: uid } }); + + return _ids; + } + + /**向玩家发送邮件 */ /**增加 跨服定时器发送邮件 直接写入数据 (跨服定时器执行检测时会报错)*/ + static async addEmail(email: ReqEmail & { createTime?: number; }, isCross: boolean = false) { + let { prize, uid, ...e } = email; + let existUid = await G.redis.hGet('player:uids', uid) + if (!isCross && !existUid) return '玩家uid不存在: ' + uid; + + let sendEmail: MsgEmail = { + _id: null, + uid: uid, + type: e.type, + title: e.title, + content: e.content, + createTime: e.createTime || G.time, + contentInsertArr: e.contentInsertArr || [] + }; + if (prize) sendEmail.prizeData = { + prize: email.prize, + isGet: false + }; + if (email.g123log && Object.keys(email.g123log).length > 0) sendEmail.g123log = email.g123log; + + let emailList = await this.getAllEmail(uid); + if (!isCross && emailList.length >= 50) { + emailList.sort((a, b) => { + let noPrizeA = a.prizeData == undefined ? 0 : 1; + let noPrizeB = b.prizeData == undefined ? 0 : 1; + let getA = a.prizeData?.isGet == true ? 0 : 1; + let getB = b.prizeData?.isGet == true ? 0 : 1; + + if (noPrizeA != noPrizeB) { + return noPrizeA - noPrizeB; + } else if (getA != getB) { + return getA - getB; + } return a.createTime - b.createTime; + }); + + this.removeEmail(uid, emailList[0]._id); + G.server.sendMsgByUid(uid, 'msg_s2c/EmailDel', emailList[0]._id); + } + + let _id = (await G.mongodb.collection('email').insertOne({ + ttl: new Date(), + ...G.mongodb.conversionIdObj(sendEmail) + })).insertedId.toHexString(); + + // 跨服定时器发送的邮件直接返回 + if (isCross) return _id + + sendEmail._id = _id; + G.redis.set('email', uid, _id, sendEmail); + G.server.sendMsgByUid(uid, 'msg_s2c/Email', sendEmail); + + return _id; + } + + /**发送全服邮件 */ + static async addQuanFuEmail(email: ReqEmail & { createTime?: number; }) { + let { prize, uid, ...e } = email; + if (uid != "system") return '全服邮件 uid 为 system : ' + uid; + + let sendEmail: MsgEmail = { + _id: null, + uid: uid, + type: e.type, + title: e.title, + content: e.content, + createTime: e.createTime || G.time, + contentInsertArr: e.contentInsertArr || [], + prizelist: [], + dellist: [], + }; + if (prize) sendEmail.prizeData = { + prize: email.prize, + isGet: false + }; + + if (email.g123log && Object.keys(email.g123log).length > 0) sendEmail.g123log = email.g123log; + + let _id = (await G.mongodb.collection('email').insertOne({ + ttl: new Date(), + ...G.mongodb.conversionIdObj(sendEmail) + })).insertedId.toHexString(); + sendEmail._id = _id; + + // let conns = G.server.connections; + // G.redis.set('email', uid, _id, sendEmail); + // G.server.broadcastMsg('msg_s2c/Email', sendEmail, conns); + + return _id; + } +} diff --git a/src/public/equip.ts b/src/public/equip.ts new file mode 100644 index 0000000..419c780 --- /dev/null +++ b/src/public/equip.ts @@ -0,0 +1,49 @@ +import { ObjectId } from 'mongodb'; +import { ApiCall } from 'tsrpc'; +import { CollectionEquip } from '../module/collection_equip'; +import { HeroFun } from './hero'; +import { call } from './player'; + +type equipChange = Partial>; + +export class EquipFun { + /** + * 修改装备属性 + */ + static async changeEquipAttr(call: call, equip: Pick & Partial>, change: equipChange, changeHero = true) { + if (Object.keys(change).length < 1) return; + + //穿戴装备时该装备穿戴在另一个英雄身上 + if (change.wearaId != undefined && equip.wearaId && equip.wearaId != change.wearaId && changeHero) { + let takeHero = await G.redis.get('hero', call.uid, equip.wearaId); + if (takeHero) { + let _equip = Object.assign({}, takeHero.equip); + _equip[G.gc.equip[equip.equipId].type] = ''; + await HeroFun.changeHeroAttr(call, takeHero, { equip: _equip }); + } + } + + Object.assign(equip, change); + + for (let k in change) { + G.redis.set('equip', call.uid, equip._id, k as keyof CollectionEquip, change[k]); + } + G.mongodb.collection('equip').updateOne({ uid: call.uid, _id: new ObjectId(equip._id) }, { $set: { ...change } }); + call.addEventMsg('msg_s2c/EquipChange', equip._id, change); + } + /** + * 获取装备 + */ + static async getEquip(call: ApiCall, _id: string): Promise; + static async getEquip(call: ApiCall, _id: string[]): Promise; + static async getEquip(call: ApiCall, _id: string | string[]) { + if (typeof _id == 'string') { + return await G.redis.get('equip', call.uid, _id); + } else { + let equips = await G.mongodb.collection('equip').find({ uid: call.uid, _id: { $in: _id.map(v => G.mongodb.conversionId(v)) } }).toArray(); + return equips.map(v => G.mongodb.conversionIdObj(v)); + } + } +} \ No newline at end of file diff --git a/src/public/event/event.ts b/src/public/event/event.ts new file mode 100644 index 0000000..65f99e4 --- /dev/null +++ b/src/public/event/event.ts @@ -0,0 +1,33 @@ +import { eventType } from '../../module/collection_event'; +import { player } from '../../shared/protocols/user/type'; + + +export class EventFun { + + /** + * 补发玩家战令奖励 + */ + static async reissueZhanLingPrize(data: eventType['zhanling'], player: player) { + let prize: atn[] = []; + let rec = data.rec; + let isPay = data.isPay; + + for (let index = 0; index < G.gc.zhanling.prize.length; index++) { + let conf = G.gc.zhanling.prize[index]; + if (data.lv < conf.lv) break; + + if (!rec[index] || !rec[index].pt) conf.pt.length > 0 && prize.push(...conf.pt); + if (isPay && (!rec[index] || !rec[index].tq)) conf.tq.length > 0 && prize.push(...conf.tq); + } + + if (prize.length > 0) { + // EmailFun.addEmail({ + // uid: player.uid, + // type: 'system', + // prize: PublicShared.mergePrize(prize), + // title: G.gc.zhanling.email.title, + // content: G.gc.zhanling.email.content + // }); + } + } +} \ No newline at end of file diff --git a/src/public/fight.ts b/src/public/fight.ts new file mode 100644 index 0000000..d458ddb --- /dev/null +++ b/src/public/fight.ts @@ -0,0 +1,89 @@ +import { ApiCall, TsrpcError } from 'tsrpc'; +import { FightControl } from '../shared/fightControl/fightCntrol'; +import { formatNpcData } from '../shared/fightControl/fightFun'; +import { fightResult, joinFightData, roleDataType } from '../shared/fightControl/fightType'; +import { rankInfo } from '../shared/protocols/type'; +import { HeroShared } from '../shared/public/hero'; +import { PlayerShared } from '../shared/public/player'; +import { HeroFun } from './hero'; +import { UserFun } from './user'; + +type fightType = 'tanxian' | 'pata' | 'jjc' | 'gbtx' | 'qjzzd' | 'meirishilian' | 'wzrycross'; + +export class FightFun { + + static fight(data: joinFightData[], maxRoundNums = 30, fightType: "pvp" | "pve" = 'pvp') { + return new FightControl(data, maxRoundNums, fightType).getResult(); + } + /**获取玩家数据 */ + static async getPlayerFightData(uid: string) { + + const player = await G.mongodb.collection('user').findOne({ uid: uid }); + + if (!player) return null; + + let posObj = player.heroPos; + if (player.selectMatrix && player.matrixPos[player.selectMatrix]) { + posObj = player.matrixPos[player.selectMatrix]; + } + const roles: k_v = {}; + const heros = await HeroFun.getHeros(player, Object.values(posObj).filter(_id => _id != '')); + + Object.entries(posObj).forEach(obj => { + const pos = obj[0]; + const _id = obj[1]; + const hero = heros.filter(h => h._id == _id)[0]; + + if (hero) { + roles[pos] = { + ...hero, + attr: { + ...HeroShared.getHeroBasicAttr(hero, { ...UserFun.getOtherBuff(player), allBuff: HeroShared.getAllBuff(heros) }, Number(pos)) + } + }; + } + }); + + return { + player: { ...player, buff: PlayerShared.getBuff(player) }, + roles: roles + }; + } + /**挑战竞技场 */ + static async fightJJc(call: ApiCall, rankInfo: rankInfo) { + + if (rankInfo.player.uid.indexOf('npc_') != -1) return await this.fightNpc(call, G.gc.jjc_npc[rankInfo.player.uid].npcId, 'jjc', await this.getPlayerFightData(call.conn.uid)); + return this.fight([await this.getPlayerFightData(call.conn.uid), await this.getPlayerFightData(rankInfo.player.uid)]); + } + /**挑战npc */ + static async fightNpc(call: ApiCall, npcId: string | number, type: fightType, data?: joinFightData) { + + let my = data || await call.conn.getDefaultFightData(); + + if (Object.keys(my.roles).length < 1) { + throw new TsrpcError('至少需要上阵一个英雄'); + } + + if (!G.gc.npc[npcId]) { + throw new TsrpcError(`npcId: ${npcId} 不存在`); + } + + let npc = formatNpcData(npcId); + + return this.fight([my, npc], 30, 'pve'); + } + + static async saveLog(uid: string, type: string, result: fightResult, maxLen = 10) { + if (uid.indexOf('npc') != -1) return; + + if (await G.redis.type('fightLog', type, uid) == null) await G.redis.set('fightLog', type, uid, []); + + G.redis.arrAppend('fightLog', type, uid, result).then(len => { + if (len > maxLen) G.redis.arrPop('fightLog', type, uid, 0); + }); + } + + static async readLog(uid: string, type: string) { + return await G.redis.get('fightLog', type, uid) || []; + } +} \ No newline at end of file diff --git a/src/public/friend/friend.ts b/src/public/friend/friend.ts new file mode 100644 index 0000000..9a14a87 --- /dev/null +++ b/src/public/friend/friend.ts @@ -0,0 +1,94 @@ +import { OptionalId, UpdateFilter } from 'mongodb'; +import { CollectionFriend } from '../../module/collection_friend'; +import { MongodbCollections } from '../../module/mongodb'; +import { ResOpen } from '../../shared/protocols/friend/PtlOpen'; +import { PublicShared } from '../../shared/public/public'; +import { FriendManage } from './manage'; + + +export class Friend { + constructor(public data: CollectionFriend) { + if (!data.myApplyList) this.updateDb({ $set: { myApplyList: [] } }); + } + updateDb(update: UpdateFilter>) { + G.mongodb.collection('friend').updateOne({ uid: this.data.uid }, update); + FriendManage.setFriend(this.data.uid, this.data) + } + addApply(uid: string) { + if (!this.data) return; + this.data.applyList.push(uid); + this.sendMsg({ applyList: this.data.applyList }); + this.updateDb({ $push: { applyList: uid } }); + } + addBlack(uid: string) { + if (!this.data) return; + this.data.blacklist.push(uid); + this.sendMsg({ blacklist: this.data.blacklist }); + this.updateDb({ $push: { blacklist: uid } }); + } + addFriend(uid: string) { + if (!this.data) return; + this.data.friendList.push(uid); + this.sendMsg({ friendList: this.data.friendList }); + this.updateDb({ $push: { friendList: uid } }); + } + addMyApply(uid: string) { + this.data.myApplyList.push(uid); + this.sendMsg({ myApplyList: this.data.myApplyList }); + this.updateDb({ $push: { myApplyList: uid } }); + } + delApply(uid: string) { + this.data.applyList.removeOne(_uid => _uid == uid); + this.sendMsg({ applyList: this.data.applyList }); + this.updateDb({ $pull: { blacklist: uid } }); + } + delBlack(uid: string) { + if (!this.data) return; + this.data.blacklist.removeOne(_uid => _uid == uid); + this.sendMsg({ blacklist: this.data.blacklist }); + this.updateDb({ $pull: { blacklist: uid } }); + } + delFriend(uid: string) { + if (!this.data) return; + this.data.friendList.removeOne(_uid => _uid == uid); + this.sendMsg({ friendList: this.data.friendList }); + this.updateDb({ $pull: { friendList: uid } }); + } + delMyApply(uid: string) { + this.data.myApplyList.removeOne(u => u == uid); + this.sendMsg({ myApplyList: this.data.myApplyList }); + this.updateDb({ $pull: { myApplyList: uid } }); + } + protected addGift(uid: string) { + this.data.getGift[uid] = G.time; + this.sendMsg({ getGift: this.data.getGift }); + this.updateDb({ $set: G.mongodb.createTreeObj({ key: 'getGift', k: uid, val: G.time }) }); + } + recGift(uid: string | string[]) { + this.data.recGift = this.data.recGift.concat(uid); + this.updateDb({ $push: { recGift: { $each: [].concat(uid) } } }); + } + sendGift(uid: string | string[]) { + let uids: string[] = [].concat(uid); + this.data.sendGift = this.data.sendGift.concat(uids); + this.updateDb({ $push: { sendGift: { $each: [].concat(uids) } } }); + + uids.forEach(async _uid => { + let friendData = await FriendManage.getFriend(_uid) + friendData?.addGift(this.data.uid); + }); + } + refreshTime() { + let data: Partial = { + refreshTime: G.time, + sendGift: [], + recGift: [], + getGift: Object.fromEntries(Object.keys(this.data.getGift).filter(uid => this.data.getGift[uid] >= PublicShared.getToDayZeroTime()).map(uid => [uid, this.data[uid]])) + }; + Object.assign(this.data, data); + this.updateDb({ $set: { ...data } }); + } + sendMsg(msg: Partial) { + G.server.sendMsgByUid(this.data.uid, 'msg_s2c/Friend', msg); + } +} \ No newline at end of file diff --git a/src/public/friend/manage.ts b/src/public/friend/manage.ts new file mode 100644 index 0000000..97c7ef2 --- /dev/null +++ b/src/public/friend/manage.ts @@ -0,0 +1,52 @@ +import { Friend } from './friend'; +import { CollectionFriend } from '../../module/collection_friend'; +import { clusterRunOnce } from '../../clusterUtils'; + +export class FriendManage { + static list: k_v = {}; + static async init() { + //改用redis后,只需要第一个进程来干 + clusterRunOnce(async () => { + const arr = await G.mongodb.collection('friend').find({}).toArray(); + arr.forEach(a => { + if(a.uid) { + this.setFriend(a.uid, a) + if(!a.myApplyList) new Friend(a) + } + }); + }) + } + + static setFriend(uid: string, data: CollectionFriend) { + G.redis.hSet('friend:list', uid, data) + return + } + + static async getFriend(uid: string): Promise { + let data:CollectionFriend = await G.redis.hGet('friend:list', uid) + if(!data) { + data = await G.mongodb.collection('friend').findOne({uid}) + if(data) this.setFriend(uid, data) + } + if(data) return new Friend(data) + return undefined + } + + static async addNew(uid: string) { + let data = await this.getFriend(uid) + if (!data) { + let newData = new Friend({ + uid: uid, + refreshTime: G.time, + recGift: [], + getGift: {}, + sendGift: [], + applyList: [], + blacklist: [], + friendList: [], + myApplyList: [] + }); + G.mongodb.collection('friend').insertOne(newData.data); + } + } +} \ No newline at end of file diff --git a/src/public/gonghui/gh.ts b/src/public/gonghui/gh.ts new file mode 100644 index 0000000..43bf988 --- /dev/null +++ b/src/public/gonghui/gh.ts @@ -0,0 +1,236 @@ +import { OptionalId, UpdateFilter, UpdateOptions } from 'mongodb'; +import { CollectionGongHui } from '../../module/collection_gonghui'; +import { MongodbCollections } from '../../module/mongodb'; +import { ReqChange } from '../../shared/protocols/gonghui/PtlChange'; +import { gonghuiLevel } from '../../shared/protocols/gonghui/type'; +import { player } from '../../shared/protocols/user/type'; +import { EmailFun } from '../email'; +import { PlayerFun } from '../player'; +import { GongHuiFun } from './gonghui'; +import { GHManage } from './manage'; + +export class GH { + /**当前是否有人在挑战boss */ + isFightBoss: boolean; + + get maxPlayerNum() { + return G.gc.shili_lv[this.data.lv].maxNum; + } + constructor(public data: CollectionGongHui) { + if (!data.fuben) { + data.fuben = { + id: '1', + dps: {}, + bossInfo: {} + }; + this.updateDb({ $set: { fuben: data.fuben } }); + } + } + + /**更改isFightBoss状态 */ + changeIsFightBoss(bool = false) { + G.redis.hSet('gonghui:isFightBoss', this.data._id, bool) + return + } + + /**获取isFightBoss状态 */ + async getIsFightBoss():Promise { + return await G.redis.hGet('gonghui:isFightBoss', this.data._id) || false + } + + /** + * 更新redis数据 + */ + updateRedis() { + GHManage.setGH(this.data._id, this.data); + } + /** + * 更新数据库 + */ + async updateDb(update: UpdateFilter>, options: UpdateOptions = {}) { + let keys = Object.values(update).map(obj => Object.keys(obj).map(key => key.split('.')[0])).reduce((a, b) => a.concat(b)); + let change = Object.fromEntries(keys.map(key => [key, this.data[key]])); + this.data.players.forEach(p => G.server.sendMsgByUid(p.uid, 'msg_s2c/GhChange', change)); + this.updateRedis(); + return await G.mongodb.collection('gonghui').updateOne({ _id: G.mongodb.conversionId(this.data._id) }, update, options); + } + + /** + * 更新会长名字 + */ + async updateCreateName(name: string) { + this.data.createPlayer.name = name; + this.updateRedis(); + GongHuiFun.db.updateOne({ _id: G.mongodb.conversionId(this.data._id) }, { $set: { 'createPlayer.name': name } }); + } + /** + * 更新公会设置 + */ + async updateSetting(change: ReqChange) { + if (change.name) { + this.data.name = change.name; + this.updateDb({ $set: { name: this.data.name } }); + + this.data.players.forEach(player => { + G.server.sendMsgByUid(player.uid, 'msg_s2c/PlayerChange', { ghName: change.name }); + G.mongodb.collection('user').updateOne({ uid: player.uid }, { $set: { ghName: change.name } }); + }); + } + if (change.setting) { + Object.assign(this.data.setting, change.setting); + this.updateDb({ $set: { setting: this.data.setting } }); + } + } + /** + * 新成员加入 + */ + async addPlayer(gud: player) { + const p: { + uid: string; + level: gonghuiLevel; + joinTime: number; + } = { + uid: gud.uid, + level: 4, + joinTime: G.time + }; + this.data.players.push(p); + this.updateDb({ $push: { players: p } }); + PlayerFun.changeAttr(gud.uid, { ghId: this.data._id, ghLevel: 4, ghName: this.data.name }); + G.server.sendMsgByUid(gud.uid, 'msg_s2c/PlayerChange', { ghId: this.data._id, ghLevel: 4, ghName: this.data.name }); + } + /** + * 踢出成员 + */ + async delPlayer(uid: string) { + if (this.data.lsgx) { + this.data.lsgx[uid] = null; + delete this.data.lsgx[uid]; + } + this.data.players.splice(this.data.players.findIndex(p => p.uid == uid), 1); + this.updateDb({ $pull: { players: { uid: uid } } }); + if (this.data.players.length == 1 && this.data.tanhe) { + this.data.tanhe = null; + delete this.data.tanhe; + this.updateDb({ $unset: { tanhe: 1 } }); + } + GHManage.removeRole(uid); + } + /** + * 管理人员 + */ + async managePlayer(uid: string, level: gonghuiLevel) { + PlayerFun.changeAttr(uid, { ghLevel: level }); + G.server.sendMsgByUid(uid, 'msg_s2c/PlayerChange', { ghLevel: level }); + this.data.players.find(p => p.uid == uid).level = level; + this.updateDb({ $set: { 'players.$[elem].level': level } }, { arrayFilters: [{ 'elem.uid': uid }] }); + + if (level == 1) { + let p = await G.mongodb.collection('user').findOne({ uid: uid }); + this.data.createPlayer = { + uid: uid, + name: p.name + }; + this.updateDb({ $set: { createPlayer: this.data.createPlayer } }); + } + } + /** + * 公会申请列表 + */ + async addApply(gud: player) { + if (this.data.applyList?.find(v => v.uid == gud.uid)) return; + if (!this.data.applyList) this.data.applyList = []; + this.data.applyList.push({ uid: gud.uid, time: G.time }); + this.updateDb({ $set: { applyList: this.data.applyList } }); + } + /** + * 公会申请审批 + */ + async apply(...p: string[]) { + let players = await G.redis.gets('user', ...p.map(u => [u] as [string])); + + for (let player of players) { + if (this.data.players.length >= this.maxPlayerNum) break; + if (player.ghId) continue; + this.addPlayer(player); + } + + this.data.applyList = this.data.applyList.filter(a => p.includes(a.uid) == false); + this.updateDb({ $set: { applyList: this.data.applyList } }); + } + /** + * 获取公会成员列表 + */ + async getAllPlayers() { + let players = await G.redis.gets('user', ...this.data.players.map(p => [p.uid] as [string])); + + return players.map((p, i) => { + return { + player: p, + lsgx: this.data.lsgx?.[p.uid] || 0 + }; + }); + } + /** + * 公会捐献 + */ + async juanxian(index: number, uid: string) { + let conf = G.gc.shili_com.juanxian[index]; + + if (!this.data.lsgx) this.data.lsgx = {}; + if (!this.data.lsgx[uid]) this.data.lsgx[uid] = 0; + this.data.lsgx[uid] += conf.addExp; + + this.addExp(conf.addExp); + + this.updateDb({ $set: { lv: this.data.lv }, $inc: { exp: conf.addExp, ...G.mongodb.createTreeObj({ key: 'lsgx', k: uid, val: conf.addExp }) } }); + } + async addExp(exp: number) { + this.data.exp += exp; + if (G.gc.shili_lv[this.data.lv + 1] && this.data.exp >= G.gc.shili_lv[this.data.lv + 1].exp) this.data.lv++; + this.updateDb({ $set: { lv: this.data.lv }, $inc: { exp: exp } }); + } + /** + * 公会弹劾 + */ + async tanhe(uid: string) { + this.data.tanhe = { + uid: uid, + time: G.time + G.gc.shili_com.tanheTime + }; + this.updateDb({ + $set: { + tanhe: { + uid: uid, + time: G.time + G.gc.shili_com.tanheTime + } + } + }); + } + /** + * 发送副本奖励邮件 + */ + async sendeMail(fbId: string, players: Array<[string, number]>) { + let prizeArr = G.gc.shili_fbyj[fbId]; + + prizeArr.sort((a, b) => a.rank[0] - b.rank[0]); + + players.sort((a, b) => b[1] - a[1]); + + prizeArr.forEach((conf) => { + + let ps = players.slice(conf.rank[0] - 1, conf.rank[1]); + ps.forEach((uid, index) => { + + EmailFun.addEmail({ + uid: uid[0], + type: 'system', + title: G.gc.shili_com.email.titel, + content: G.gc.shili_com.email.content, + prize: conf.prize, + contentInsertArr: [conf.rank[0] + index] + }); + }); + }); + } +} \ No newline at end of file diff --git a/src/public/gonghui/gonghui.ts b/src/public/gonghui/gonghui.ts new file mode 100644 index 0000000..e4d4b44 --- /dev/null +++ b/src/public/gonghui/gonghui.ts @@ -0,0 +1,186 @@ +import { ApiCall, TsrpcError } from 'tsrpc'; +import { gonghuiBase, gonghuiSetting } from '../../shared/protocols/gonghui/type'; +import { hongdianVal } from '../../shared/protocols/hongdian/PtlGet'; +import { ActionLog } from '../actionLog/actionLog'; +import { PlayerFun } from '../player'; + + +export class GongHuiFun { + static init() { + + } + static get db() { + return G.mongodb.collection('gonghui'); + } + /** + * 检查创建公会或设置公会时的数据合法性 + */ + static async checkSetArgs(args: Partial & { setting: Partial; }>) { + if (args.name != undefined) { + if (args.name.trim().length == 0) throw new TsrpcError('名字不可为空'); + if ((await this.db.findOne({ name: args.name })) != null) throw new TsrpcError(globalThis.lng.gonghui_29); + } + if (args.setting != undefined) { + if (args.setting.badge != undefined) { + if (args.setting.badge.trim().length == 0 || !G.gc.shilihuizhang[args.setting.badge]) throw new TsrpcError('setting.badge 参数错误'); + } + if (args.setting.notice != undefined) { + if (args.setting.notice == '') args.setting.notice = G.gc.shili_com.defaultNotice; + } + } + } + + // 工会物资红点 + static async getWuZiHD(call: ApiCall, res: hongdianVal) { + let _ghwz = Object.keys(call.conn.gud.ghwz); + // 工会物资 + for (let index = 0; index < _ghwz.length; index++) { + const element = _ghwz[index]; + const conf = G.gc.shili_wz[element]; + const nextLv = call.conn.gud.ghwz[element] + 1; + if (!conf[nextLv]) continue; // 已满级 + let meet = await PlayerFun.checkNeedIsMeet(call, conf[nextLv].need, false); + if (meet.isOk) { + res.show = true; + res.val.ghwz = 1; + break; + } + } + return res; + } + + // 工会boss红点 + static async getBossHD(call: ApiCall, res: hongdianVal) { + let gh = await call.conn.gonghui; + if (!gh || gh.data.lv < 2) return res; + let conf = G.gc.shili_fb[gh.data.fuben.id]; + if (conf) { + // 有boss + let dbData = await G.mongodb.collection('gonghuiUser').findOne({ uid: call.uid }); + if ((dbData?.fuben?.fightNum == undefined ? 2 : dbData?.fuben?.fightNum) >= 1) { + res.show = true; + res.val.fuben = 1; + } + } + return res; + } + + // 工会捐献财务部红点 只计算普通捐献 + static async getCaiWuHD(call: ApiCall, res: hongdianVal) { + const data = await G.mongodb.collection('gonghuiUser').findOne({ uid: call.uid }); + const jx = data?.jx || { refreshTime: G.time, record: {} }; + // let _chk = Object.keys(jx.record) + let _chk = [0]; + for (let index = 0; index < _chk.length; index++) { + const element = _chk[index]; + const conf = G.gc.shili_com.juanxian[element]; + if (conf && (jx.record[element] || 0) < conf.maxNum) { + res.show = true; + res.val.jx = 1; + break; + } + } + return res; + } + + // 会议桌子函数 任务是否完成 + static async getFinish(call: ApiCall, _taskCon: any[], _val: number, _type: string) { + let ishd: 0 | 1 = 0; + const data = await G.mongodb.collection('gonghuiUser').findOne({ uid: call.uid }); + for (let indexTask = 0; indexTask < _taskCon.length; indexTask++) { + const elementTask = _taskCon[indexTask]; + if (_type == "my") { + _val = await ActionLog.getDayLog(call.uid, elementTask.taskId); + } + if (elementTask.total > _val) continue; + if ((data?.task?.myRec || []).includes(indexTask)) continue; + ishd = 1; + break; + } + return ishd; + } + + // 工会红点 会议桌 工会任务 + static async getHuiyiHD(call: ApiCall, res: hongdianVal) { + const _type = ["my", "gh"]; + for (let index = 0; index < _type.length; index++) { + const element = _type[index]; + let _taskCon: any[]; + let _val: number; + if (element == "gh") { + _taskCon = G.gc.shili_com.ghTask; + _val = (await call.conn.gonghui).data?.task?.finised || 0; + } else { + _taskCon = G.gc.shili_com.task; + _val = 0; // 后面会复写 + } + let ishd = await this.getFinish(call, _taskCon, _val, element); + if (ishd == 1) { + res.show = true; + res.val.task = 1; + break; + } + } + return res; + } + + // 工会红点 出海 + static async getChuHaiHD(call: ApiCall, res: hongdianVal) { + let dbData = await G.mongodb.collection('ganhai').findOne({ uid: call.uid }); + if (dbData?.ship?.sTime && dbData.ship.sTime + G.gc.ganhai.ships[dbData.ship.index].time < G.time) { + res.show = true; + res.val.ganhai = 1; + } + // 次数 + if ((dbData?.useEscortNum || 0) + 1 <= G.gc.ganhai.escortNum) { + res.show = true; + res.val.ganhai = 1; + } + return res; + } + + // 工会红点 事务所(可以审批加红点) + static async getBanGongShiHD(call: ApiCall, res: hongdianVal) { + if ((await call.conn.gonghui).data.applyList?.length > 0) { + res.show = true; + res.val.bangongshi = 1; + } + return res; + } + + // 工会红点 工会宝藏 + static async getGHBZHD(call: ApiCall, res: hongdianVal) { + // let need: atn[]; + // need = JSON.parse(JSON.stringify(G.gc.com.GuildDraw_Cos.value)); + // need[0].n *= 10 + // @ts-ignore + let need = (G.gc.com.GuildDraw_Cos.value).map(_n => { return { ..._n, n: _n.n * 10 }; }); + let meet = await PlayerFun.checkNeedIsMeet(call, need, false); + if (meet.isOk == true) { + res.show = true; + res.val.gonghuibaozang = 1; + } + return res; + } + + /**红点 */ + static async getHongDian(call: ApiCall) { + let _res: hongdianVal = { + show: false, + val: {} + }; + let gh = await call.conn.gonghui; + if (!gh) return _res; + _res = await this.getCaiWuHD(call, _res); + _res = await this.getChuHaiHD(call, _res); + if (gh.data.lv >= 2) { // 工会宝藏 势力2级开启 策划没配置。。。 + _res = await this.getGHBZHD(call, _res); + } + if (gh.data.lv >= 3) _res = await this.getHuiyiHD(call, _res); + if (gh.data.lv >= 3) _res = await this.getWuZiHD(call, _res); + if (gh.data.lv >= 2) _res = await this.getBossHD(call, _res); + _res = await this.getBanGongShiHD(call, _res); + return _res; + } +} + diff --git a/src/public/gonghui/manage.ts b/src/public/gonghui/manage.ts new file mode 100644 index 0000000..c43ae10 --- /dev/null +++ b/src/public/gonghui/manage.ts @@ -0,0 +1,139 @@ +import { ObjectId } from 'mongodb'; +import { CollectionGongHui } from '../../module/collection_gonghui'; +import { player } from '../../shared/protocols/user/type'; +import { PlayerFun } from '../player'; +import { GH } from './gh'; +import { clusterRunOnce } from '../../clusterUtils'; + +export class GHManage { + /** + * 所有公会 + */ + // static list: k_v = {}; + static redisKey = "gonghui:list" + /** + * 从数据库拉取公会 + */ + static async init() { + // redis存在数据,不初始化。 + + //因为是存redis了,所以只需要第一个进程来干 + clusterRunOnce(async () => { + if(await this.getGHListLen() > 0) return + const ghs = await G.mongodb.collection('gonghui').find({}).toArray(); + ghs.forEach(gh => { + let _gh = G.mongodb.conversionIdObj(gh); + this.setGH(_gh._id, _gh) + // this.list[_gh._id] = new GH(_gh); + }); + }) + } + static async setGH(ghId: string, data: CollectionGongHui) { + G.redis.hSet(this.redisKey, ghId, data) + return + } + + /** + * 获取指定公会对象 + * @param ghId + * @returns + */ + static async getGH(ghId: string): Promise { + let data:CollectionGongHui = await G.redis.hGet(this.redisKey, ghId) + if(!data) { + let res = await G.mongodb.collection('gonghui').findOne(G.mongodb.conversionIdObj({_id: ghId})) + data = G.mongodb.conversionIdObj(res) + if(data) this.setGH(ghId, data) + } + if(data) return new GH(data) + return undefined + } + + /** + * 获取全部公会列表 + */ + static async getGHList(): Promise> { + let res = await G.redis.hGetAll(this.redisKey); + for(let i in res) { + res[i] = new GH(res[i]) + } + return res + } + + /** + * 获取公会总数 + */ + static async getGHListLen(): Promise { + return await G.redis.hLen(this.redisKey) + } + + /** + * 新增一个公会 + */ + static async addNew(data: CollectionGongHui) { + new GH(data); + // this.list[data._id] = new GH(data); + } + /** + * 删除一个公会 + */ + static async remove(ghid: string) { + let GHdata = await this.getGH(ghid) + GHdata.data.players.forEach(v => { + this.removeRole(v.uid); + }); + // this.list[ghid] = null; + // delete this.list[ghid]; + G.mongodb.collection('gonghui').deleteOne({ _id: G.mongodb.conversionId(ghid) }); + G.redis.hDel(this.redisKey, ghid) + } + /** + * 公会删除一个人 + */ + static async removeRole(uid: string) { + PlayerFun.changeAttr(uid, { ghId: '', ghLevel: 0, ghExitTime: G.time }); + G.server.sendMsgByUid(uid, 'msg_s2c/PlayerChange', { ghId: '', ghLevel: 0, ghName: '', ghExitTime: G.time }); + G.mongodb.collection('gonghuiUser').findOneAndUpdate({ uid: uid }, { $unset: { jx: 1 } }); + } + /** + * 公会会长上线 + */ + static async hzsx(gud: player) { + let GHdata = await this.getGH(gud.ghId) + if (GHdata.data.tanhe) { + GHdata.data.tanhe = null; + delete GHdata.data.tanhe; + GHdata.updateDb({ $unset: { tanhe: 1 } }); + } + } + + + + + static countInterval = 0; + static checkInterval = 60; + static async check() { + if (this.countInterval < this.checkInterval) { + return this.countInterval++; + } + this.countInterval = 0; + let list:k_v = await G.redis.hGetAll(this.redisKey) + // let list = await G.redis.hGetAll('key') + Object.entries(list).forEach(v => { + let [_id, gh] = v; + + if (gh.data?.tanhe && G.time >= gh.data.tanhe.time) { + let player = gh.data.players.find(p => p.uid == gh.data.tanhe.uid); + + if (player) { + gh.managePlayer(gh.data.createPlayer.uid, player.level); + gh.managePlayer(player.uid, 1); + } + + gh.data.tanhe = null; + delete gh.data.tanhe; + gh.updateDb({ $unset: { tanhe: 1 } }); + } + }); + } +} \ No newline at end of file diff --git a/src/public/gonghuibaozang.ts b/src/public/gonghuibaozang.ts new file mode 100644 index 0000000..a9b8f85 --- /dev/null +++ b/src/public/gonghuibaozang.ts @@ -0,0 +1,33 @@ +import { ApiCall } from 'tsrpc'; +import { GongHuiBaoZangMsg } from '../shared/protocols/gonghuibaozang/PtlLottery'; +import { PublicShared } from '../shared/public/public'; + +let msgListLen = 50 + +export class GongHuiBaoZang { + /**插入工会宝藏抽奖数据 和 推送change */ + static async newMsg(sendData: GongHuiBaoZangMsg | GongHuiBaoZangMsg[]) { + let conns = G.server.connections; + if (sendData instanceof Array) { + G.mongodb.collection('ghbzcjlog').updateOne( + { type: "gonghuibaozang_msg" }, + { $push: { list: { $each: sendData, $slice: -msgListLen } } }, + { upsert: true } + ); + G.server.broadcastClusterMsg('msg_s2c/GongHuiBaoZang', sendData); + + } else { + G.mongodb.collection('ghbzcjlog').updateOne( + { type: "gonghuibaozang_msg" }, + { $push: { list: { $each: [sendData], $slice: -msgListLen } } }, + { upsert: true } + ); + + G.server.broadcastClusterMsg('msg_s2c/GongHuiBaoZang', [sendData]); + } + + } + + + +} \ No newline at end of file diff --git a/src/public/hero.ts b/src/public/hero.ts new file mode 100644 index 0000000..22ebd60 --- /dev/null +++ b/src/public/hero.ts @@ -0,0 +1,173 @@ +import { ObjectId } from 'mongodb'; +import { maxPosNum } from '../api_s2c/hero/ApiChangePos'; +import { CollectionHero } from '../module/collection_hero'; +import { Wjjl } from '../module/collection_wjjl'; +import { prizeType } from '../shared/protocols/type'; +import { EquipShared } from '../shared/public/equip'; +import { HeroShared } from '../shared/public/hero'; +import { PeijianShared } from '../shared/public/peijian'; +import { EquipFun } from './equip'; +import { PeijianFun } from './peijian'; +import { call, PlayerFun } from './player'; +import { ShiwuFun } from './shiwu'; + +type heroChange = Partial>; + +export class HeroFun { + /**修改英雄属性 */ + static async changeHeroAttr(call: call, hero: CollectionHero, change: heroChange) { + if (Object.keys(change).length < 1) return; + + Object.assign(hero, change); + hero.zhanli = HeroShared.getHeroZhanLi(hero, call.otherBuff, Object.values(call.conn.gud.heroPos).indexOf(hero._id)); + change.zhanli = hero.zhanli; + + for (let k in change) { + await G.redis.set('hero', call.uid, hero._id, k as any, change[k]); + } + + await G.mongodb.collection('hero').updateOne({ uid: call.uid, _id: new ObjectId(hero._id) }, { + $set: { + ...change + } + }); + + call.addEventMsg('msg_s2c/HeroChange', hero._id, change); + + if (Object.values(call.conn.heroPos).includes(hero._id)) call.conn.refreshPower(); + } + /**获取英雄 */ + static async getHero(call: call, _id: string) { + return await G.redis.get('hero', call.uid, _id); + } + /**获取多个英雄 */ + static async getHeros(call: { uid: string; }, _ids: string[]) { + let s = await G.mongodb.collection('hero').find({ + uid: call.uid, _id: { + $in: _ids.map(_id => G.mongodb.conversionId(_id)) + } + }).toArray(); + return s.map(h => G.mongodb.conversionIdObj(h)); + } + /**删除英雄 */ + static async delHero(call: call, _hero: CollectionHero): Promise; + static async delHero(call: call, _id: string): Promise; + static async delHero(call: call, v: string | CollectionHero) { + let hero = typeof v == 'string' ? await this.getHero(call, v) : v; + let prize: prizeType[] = []; + + if (hero?.lv > 1) { + for (let lv = 1; lv < hero.lv; lv++) { + prize.push(...HeroShared.getHeroLvUpNeed(hero.heroId, lv)); + } + + hero.lv = 1; + } + + if (hero?.jieji) { + for (let jieji = 0; jieji < hero.jieji; jieji++) { + let need = HeroShared.getHeroJinJieNeed(hero.heroId, jieji); + need = need.map(n => { + if (n.a == 'hero') { + return { + a: 'item', + t: n.t, + n: JSON.parse(JSON.stringify(G.gc.item[n.t].num)) * n.n + }; + } + else return n; + }); + prize.push(...need); + } + + hero.jieji = 0; + } + + if (hero?.weapon) { + for (let jieji = 1; jieji <= hero.weapon.jieji; jieji++) { + let confs = G.gc.zhuanshu[G.gc.hero[hero.heroId].zhuanshu][jieji]; + prize.push(...Object.values(confs).filter(c => { + if (jieji < hero.weapon.jieji) return true; + else return c.star <= hero.weapon.star; + }).map(c => c.need).reduce((a, b) => a.concat(b))); + } + + hero.weapon = { jieji: 0, star: 0, starProbability: 0 }; + } + + if (hero?.qiannneg) { + for (let [type, lv] of Object.entries(hero.qiannneg)) { + let needs = Object.values(G.gc.hero_qianneng[type]).filter(c => lv >= c.lv).map(c => c.need); + needs.length > 0 && prize.push(...needs.reduce((a, b) => a.concat(b))); + } + + hero.qiannneg = Object.fromEntries(Object.keys(G.gc.hero_qianneng).map(k => [k, 0])); + } + + if (hero?.awake) { + let p = Object.values(G.gc.hero_jx).filter(c => c.lv <= hero.awake).map(c => [].concat(c.item_cos, { a: 'item', t: hero.heroId, n: c.HeroDebris_Cos })).reduce((a, b) => a.concat(b)); + prize.push(...p); + + hero.awake = 0; + hero.talent = Object.fromEntries(Object.keys(G.gc.hero_tf).map(t => [t, 0])); + } + + if (hero?.equip) { + for (let pos in hero.equip) { + hero.equip[pos] && await EquipFun.changeEquipAttr(call, EquipShared.fmtEquip(hero.equip[pos]), { wearaId: '' }, false); + } + + hero.equip = {}; + } + + if (hero?.shiwu) { + for (let pos in hero.shiwu) { + hero.shiwu[pos] && await ShiwuFun.changeShiwuAttr(call, hero.shiwu[pos], { wearId: '' }, false); + } + + hero.shiwu = {}; + } + + if (hero?.peijian) { + for (let pos in hero.peijian) { + hero.peijian[pos] && await PeijianFun.changeAttr(call, PeijianShared.fmt(hero.peijian[pos]), { wearId: '' }, false); + } + + hero.peijian = Object.fromEntries(Object.keys(hero.peijian).map(pos => [pos, ''])); + } + + return prize; + } + + /**自动上阵 */ + static async setHeroPos(call: call) { + let _hero = await G.mongodb.collection('hero').findOne({ uid: call.conn.gud.uid }) + let heroPos = Object.assign({}, call.conn.heroPos); + let fightHeros = call.conn.gud.fightHeros.map(id => id); + let posArr = Object.keys(heroPos).filter(pos => call.conn.gud.lv >= G.gc.herocom.szHeroLimit[pos]); + + let matrixPos = JSON.parse(JSON.stringify(call.conn.gud.matrixPos)); + let setPos = posArr.filter(pos => heroPos[pos] == '')[0]; + let _heroId = _hero._id.toString() + heroPos[setPos] = _heroId; + + for (let type in matrixPos) { + if (!matrixPos[type][setPos]) matrixPos[type][setPos] = _heroId; + else { + for (let pos = 1; pos <= maxPosNum; pos++) { + if (!matrixPos[type][pos]) matrixPos[type][pos] = _heroId; + } + } + } + fightHeros.push(_hero.heroId.toString()); + + Wjjl.setVal(call.conn.gud.uid, 'fight_hero_colour_4', fightHeros.map(id => G.gc.hero[id].colour).filter(c => c >= 4).length); + + await PlayerFun.addAttr(call, { heroPos: heroPos, fightHeros: fightHeros, matrixPos: matrixPos }); + call.conn.refreshPower(); + + return + } +} \ No newline at end of file diff --git a/src/public/huodongfun.ts b/src/public/huodongfun.ts new file mode 100644 index 0000000..3c925ee --- /dev/null +++ b/src/public/huodongfun.ts @@ -0,0 +1,146 @@ +import {ApiCall} from 'tsrpc'; +import {ReqAddHuoDong} from '../monopoly/protocols/PtlAddHuoDong'; +import {PublicShared} from '../shared/public/public'; +import {UserFun} from './user'; + +const HUODONG_SHUJUKU = "hdinfo"; + +export class HuoDongFun { + /**插入活动数据 */ + static async addHuoDong(info: ReqAddHuoDong) { + let result = (await G.mongodb.collection(HUODONG_SHUJUKU).insertOne(info)).insertedId.toHexString(); + return result; + } + + /**删除活动数据 */ + static async delHD(hdid: number) { + let result = await G.mongodb.collection(HUODONG_SHUJUKU).deleteOne({hdid: hdid}) + return result + } + + /**查看所有活动数据 包括不符合时间的活动 */ + static async catAllHD(where: { [id: string]: any }) { + let result = await G.mongodb.collection(HUODONG_SHUJUKU).find(where).toArray() + return result + } + + /** + * 获取所有符合时间的活动(默认根据实际结束时间查询) + * 1.可根据 htype 查询 + * 2.永久活动的 rtime etime stime 全为0 + * 3.ttype 为 4 屏蔽活动 + */ + static async gethdList(call: ApiCall, htype: number = 0) { + let _zeroTime = PublicShared.getToDayZeroTime(call.conn.gud.cTime) + let _pDay = Number((G.time - _zeroTime) / 86400) + + let openTime = PublicShared.getToDayZeroTime(G.openTime) + let _sDay = Number((G.time - openTime) / 86400) + + let _where = { + $or: [ + { + ttype: 0, + $or: [{stime: {$lte: _sDay}, etime: {$gte: _sDay}}, {stime: {$lte: G.time}, etime: {$gte: G.time}}] + }, + { + ttype: 1, + stime: {$lte: _pDay}, + etime: {$gte: _pDay} + }] + } + + if (htype != 0) _where["htype"] = htype + + let _res = await this.catAllHD(_where) + + let result = [] + for (let index = 0; index < _res.length; index++) { + const element = _res[index]; + // 算出符合注册时间的活动时间 + let initTime = element.ttype ? call.conn.gud.cTime : openTime + if (element.stime < 99999999) { + element.stime = PublicShared.getToDayZeroTime(initTime + 24 * 3600 * element.stime) + element.rtime = PublicShared.getToDayZeroTime(initTime + 24 * 3600 * element.rtime) - 1 + element.etime = PublicShared.getToDayZeroTime(initTime + 24 * 3600 * element.etime) - 1 + } + let _st = PublicShared.fmtTime(element["stime"]) + let _rt = PublicShared.fmtTime(element["rtime"]) + element["showtime"] = _st + " - " + _rt + result.push(element) + } + + return await this.chkOpenHd(call, result) + } + + // 活动开启条件 + static async chkOpenHd(call: ApiCall, hds) { + let _res = [] + for (let index = 0; index < hds.length; index++) { + const element = hds[index]; + if (element.opencond) { + let [isOpen, tips] = PublicShared.getOpenCond(call, element.opencond) + if (isOpen) _res.push(element) + } else { + _res.push(element) + } + } + return _res + } + + /**根据hdid 获取对应的活动 */ + static async getHdidInfo(call: ApiCall, hdid: number) { + let _where: {} = { + hdid: hdid + } + let result = await G.mongodb.collection(HUODONG_SHUJUKU).findOne(_where) + if (result && Object.keys(result).length > 0) { + let openTime = PublicShared.getToDayZeroTime(G.openTime) + let initTime = result.ttype ? call.conn.gud.cTime : openTime + if (result.stime < 99999999) { + result.stime = PublicShared.getToDayZeroTime(initTime + 24 * 3600 * result.stime) + result.rtime = PublicShared.getToDayZeroTime(initTime + 24 * 3600 * result.rtime) - 1 + result.etime = PublicShared.getToDayZeroTime(initTime + 24 * 3600 * result.etime) - 1 + } + let _st = PublicShared.fmtTime(result["stime"]) + let _rt = PublicShared.fmtTime(result["rtime"]) + result["showtime"] = _st + " - " + _rt + } + if (result && result._id) delete result._id + return result + } + + /**增加游戏内活动 */ + static async fmtHD() { + let _r = await G.mongodb.collection(HUODONG_SHUJUKU).findOne({}); + if (_r && Object.keys(_r).length > 0) return; + let _con = G.gc.huodong + let [_addHd, _openTime] = [[], PublicShared.getToDayZeroTime(G.openTime)] + for (let index = 0; index < _con.length; index++) { + const element = _con[index]; + + if (element["ttype"] == 0) { + if (element["stime"] == -1) { // 永久活动 + element["stime"] = 0 + element["rtime"] = 0 + element["etime"] = 0 + element["showtime"] = "永久" + } else { // 不是永久活动,直接使用传输时间;检测显示时间 + // element.stime = PublicShared.getToDayZeroTime(_openTime + 24 * 3600 * element.stime) + // element.rtime = Number(PublicShared.getToDayZeroTime(_openTime + 24 * 3600 * element.rtime)) + 24 * 3600 - 1 + // element.etime = Number(PublicShared.getToDayZeroTime(_openTime + 24 * 3600 * element.etime)) + 24 * 3600 - 1 + + // let _st = PublicShared.fmtTime(element["stime"]) + // let _rt = PublicShared.fmtTime(element["rtime"]) + // element["showtime"] = _st + " - " + _rt + } + } else if (element["ttype"] == 1) { + element["showtime"] = "根据玩家注册时间,游戏返回时复写" + } + _addHd.push(element) + } + if (_addHd.length > 0) await G.mongodb.collection(HUODONG_SHUJUKU).insertMany(_addHd); + return + } + +} diff --git a/src/public/jjc.ts b/src/public/jjc.ts new file mode 100644 index 0000000..4be4e98 --- /dev/null +++ b/src/public/jjc.ts @@ -0,0 +1,282 @@ +import { ApiCall } from 'tsrpc'; +import { Wjjl } from '../module/collection_wjjl'; +import { formatNpcData } from '../shared/fightControl/fightFun'; +import { fightResult } from '../shared/fightControl/fightType'; +import { hongdianVal } from '../shared/protocols/hongdian/PtlGet'; +import { jjcChange } from '../shared/protocols/jjc/PtlOpen'; +import { rankInfo } from '../shared/protocols/type'; +import { PublicShared } from '../shared/public/public'; +import { Queue } from '../shared/public/queue'; +import { FightFun } from './fight'; +import { UserFun } from './user'; +import { sortEd } from '../module/redis' + +const jjcQueue = new Queue(); + +/**++++++++++++++++++特别注意:redis内的排名数据"rank:jjc:sort"数组值均为唯一,不要手动修改为重复值,否则排名计算逻辑会不准确+++++++++++++++++++++++++ */ +/**++++++++++++++++++mongodb rank表的update与insert对性能有影响时可删除,保留只为尽量保持原有逻辑的数据逻辑不改变*/ +export class JJCFun { + /**当玩家挑战或者被挑战时不可被其他玩家挑战 */ + static lockPlayer: k_v = {}; + /**排名缓存 */ + // static rankList: rankInfo[]; + static uTimeOffset: 60; + /** + * 获取指定条数的rankList + * @param min + * @param max + * @param isUpdate 是否更新数据 + */ + static async getRankList(min:number = 0, max:number = 50, isUpdate:boolean = true) { + // 获取指定排名用户uid + let sortInfo = await this.getRankListUid(min, max) + // 获取用户详细数据 + let rankList = [] + let updateArr = [] + for(let i = 0; i < sortInfo.length; i++) { + let uid = sortInfo[i] + let rankInfo = await G.redis.hGet('rank:jjc:data', uid) + rankList.push(rankInfo) + // 比对utime,判断是否更新数据 + if(!rankInfo.player.isNpc && rankInfo.utime && rankInfo.utime < (G.time - this.uTimeOffset)) updateArr.push(uid) + } + // 更新数据 + if(isUpdate && updateArr.length > 0) { + let playerArrInfo = await G.mongodb.collection("user").find({uid: {$in: updateArr}}).toArray() + for(let i = 0; i < playerArrInfo.length; i++) { + let playerInfo = playerArrInfo[i] + let index = rankList.findIndex(x => x.player.uid == playerInfo.uid) + rankList[index].player = playerInfo + rankList[index].utime = G.time + } + } + return rankList + } + + /** + * 获取指定范围排名的用户,仅返回uid[] + * @param min + * @param max + * @return uid[] + */ + static async getRankListUid(min:number = 0, max:number = 50) { + let sortInfo = await G.redis.zRange('rank:jjc:sort', min, max - 1) + return sortInfo + } + + /** + * 获取玩家排名 + * @param uid + * @return number + */ + static async getPlayerRank(uid: string): Promise { + // 清除空的玩家数据 + let res = await G.redis.zRank('rank:jjc:sort', uid) // 原逻辑索引未+1,此处返回索引。 + return res || -1 + } + + /** + * 获取指定玩家数据 + * @param uid + * @return + */ + static async getPlayerData(uid: string): Promise { + let rankInfo = await G.redis.hGet('rank:jjc:data', uid) // 原逻辑索引未+1,此处返回索引。 + if(!rankInfo || (!rankInfo.player.isNpc && rankInfo.utime && rankInfo.utime < (G.time - this.uTimeOffset))) { + // 新玩家数据,更新 + if(!rankInfo) { + this.addNewPlayerSort(uid) + rankInfo = {} + } + rankInfo.player = await G.mongodb.collection("user").findOne({uid: uid}) + rankInfo.utime = G.time + this.updatePlayerData(uid, rankInfo) + } + return rankInfo + } + + /** + * 获取指定排名玩家数据 + * @param rank + * @return + */ + static async getRankPlayerData(rank:number): Promise { + // 函数内max存在-1操作,查自己需保持min=max + let rankList = await this.getRankList(rank, rank + 1) + let rankInfo = rankList[0] + return rankInfo + } + + // 写入新玩家排名 + static async addNewPlayerSort(uid: string) { + let rankLen = await G.redis.zCard('rank:jjc:sort'); // 获取排名的总条数,确认新玩家的排名值(ps:总条数既新玩家排名,不需+1) + this.updatePlayerRank({value: uid, score: rankLen}) + } + + /**更新玩家排名数据 */ + static updatePlayerRank(sortEd: sortEd|sortEd[]) { + G.redis.zAdd('rank:jjc:sort', sortEd) + return + } + + /**更新玩家数据 */ + static updatePlayerData(uid: string, rankInfo:rankInfo) { + G.redis.hSet('rank:jjc:data', uid, rankInfo) + return + } + + /**新玩家第一次进入或者排名变更 */ + static async addRankInfo(rankInfo: rankInfo, changeInfo?: rankInfo) { + // jjcQueue.enqueue(async () => { + if (!changeInfo) { + // 空数据预防 + if(!rankInfo) return + // redis写入新玩家数据 + this.updatePlayerData(rankInfo.player.uid, rankInfo) + // redis写入新玩家排名 + this.addNewPlayerSort(rankInfo.player.uid) + let rankLen = await G.redis.zCard('rank:jjc:sort'); // 获取排名的总条数,确认新玩家的排名值(ps:总条数既新玩家排名,不需+1) + // this.updatePlayerRank({value: rankInfo.player.uid, score: rankLen}) + Wjjl.setVal(rankInfo.player.uid, 'jjc_rank', rankLen); + // + G.mongodb.collection('rank').updateOne({ type: 'jjc' }, { $push: { rankList: rankInfo } }); + } else { + // 获取自己与对手的排名索引 + const myIndex = await G.redis.zRank('rank:jjc:sort', rankInfo.player.uid) + const heIndex = await G.redis.zRank('rank:jjc:sort', changeInfo.player.uid) + + if (myIndex <= heIndex) return; + + Wjjl.setVal(rankInfo.player.uid, 'jjc_rank', heIndex + 1); + UserFun.activeHeadFrame(rankInfo.player.uid, 'jjc_rank', heIndex + 1); + // 交换更新排名索引值,无需更新数据 + this.updatePlayerRank([ + {value: rankInfo.player.uid, score: heIndex}, + {value: changeInfo.player.uid, score: myIndex} + ]) + let change = G.mongodb.createTreeObj({ key: `rankList.${heIndex}`, val: rankInfo }, { key: `rankList.${myIndex}`, val: changeInfo }); + G.mongodb.collection('rank').updateOne({ type: 'jjc' }, { $set: change }); + } + // }); + + return rankInfo; + } + + + /**刷新对手 */ + static async randomEnemy(uid: string) { + const enemy: number[] = []; + const curIndex = await this.getPlayerRank(uid); + if (curIndex == 0) enemy.push(1, 2, [3, 4].random()); + else if (curIndex == 1) enemy.push(0, [2, 3].random(), 4); + else if (curIndex == 2) enemy.push(0, 1, [3, 4].random()); + else if (curIndex == 3) enemy.push(0, [1, 2].random(), 4); + else if (curIndex == 4) enemy.push([0, 1].random(), 2, 3); + else if (curIndex == 5) enemy.push(1, [2, 3].random(), 4); + else if (curIndex == 6) enemy.push(2, [3, 4].random(), 5); + else if (curIndex == 7) enemy.push(3, [4, 5].random(), 6); + else if (curIndex == 8) enemy.push(4, [5, 6].random(), 7); + else if (curIndex == 9) enemy.push(5, [6, 7].random(), 8); + else { + enemy.push(...[ + [Math.floor(curIndex * .7), Math.floor(curIndex * .8) - 1], + [Math.floor(curIndex * .8), Math.floor(curIndex * .9) - 1], + [Math.floor(curIndex * .9), curIndex - 1], + ].map(arr => PublicShared.randomNum(arr[0], arr[1]))); + } + let enemyRes = [] + for(let e of enemy) { + if(e >= 0) { + let rankInfo = await this.getRankPlayerData(e) + let rank = await this.getPlayerRank(rankInfo.player.uid) + enemyRes.push({...rankInfo, rank: rank}) + } + } + return { + rank: curIndex, + enemy: enemyRes + }; + } + /**存录像 */ + static async saveFightLog(uid: string, fightLog: fightResult) { + if (uid.indexOf('npc_') != -1) return; + FightFun.saveLog(uid, 'jjc', fightLog); + } + /**服务器启动后初始化缓存数据 */ + static async init() { + console.log('加载竞技场缓存...'); + // redis数据存在,不初始化, mongodb在此的数据可以剔除。 + // 或建立与redis"rank:jjc:sort"相对应的表,但走新表逻辑要考虑初始化的影响,暂缓。 + // 重新初始化一定要删除redis内数据 + if((await this.getRankList()).length > 0) return + let rankInfo = await G.mongodb.collection('rank').findOne({ type: 'jjc' }); + if (!rankInfo) { + rankInfo = { + _id: null, + type: 'jjc', + rankList: Object.values(G.gc.jjc_npc).map(npc => { + let { id, npcId, ...attr } = npc; + return { + ...formatNpcData(npcId, { ...attr, uid: id }) + }; + }) + }; + G.mongodb.collection('rank').insertOne({ type: 'jjc', rankList: rankInfo.rankList }); + } + // 剔除空数据 + rankInfo.rankList = rankInfo.rankList.filter(x => x && x.player) + // 获取全部用户uid + let uidArr = rankInfo.rankList.map(x => x.player.uid) + // 数组去重 + uidArr = [...new Set(uidArr)] + // 整理写入redis的排名数据 + let rank:sortEd[] = uidArr.map((uid, index) => ({value: uid, score: index})) + this.updatePlayerRank(rank) + // 记录ranklist详细数据到redis + rankInfo.rankList && rankInfo.rankList.forEach( item => { + this.updatePlayerData(item.player.uid, item) + }) + console.log('加载竞技场缓存 succ'); + } + /**获取玩家jjc数据 */ + static async getData(call: ApiCall) { + let jjsPlayer = await G.redis.get('jjc', call.uid) + if(jjsPlayer) { + let rank = await this.getPlayerRank(call.uid); + let data = JSON.parse(JSON.stringify(jjsPlayer)) + data.rank = rank; + } + // 排名数据即时取 + return jjsPlayer; + } + /**修改玩家jjc数据 */ + static async changeData(call: ApiCall, change: jjcChange) { + Object.entries(change).forEach(val => G.redis.set('jjc', call.uid, val[0] as any, val[1])); + await G.mongodb.collection('jjc').updateOne({ uid: call.uid }, { $set: change }); + } + + /**红点 */ + static async getHongDian(call: ApiCall) { + let _res: hongdianVal = { + show: false + }; + // 挑战次数不足 + let _mydata = await this.getData(call) || { _id: null, uid: call.uid, ...{ resetTime: G.time, receivedArr: [], buyFightNum: 0, useFightNum: 0 } }; + if (_mydata.useFightNum < _mydata.buyFightNum + G.gc.jjc_com.fightNum) { + _res.show = true; + } + + if (!_res.show) { + let _con = JSON.parse(JSON.stringify(G.gc.jjc_tz)); + for (let index = 0; index < Object.keys(_con).length; index++) { + const element = Object.keys(_con)[index]; + let _tmp = _con[element]; + if (_mydata.receivedArr.find(r => r == _tmp.id)) continue; + if (_mydata.useFightNum < _tmp.num) continue; + _res.show = true; + break; + } + } + return _res; + } +} \ No newline at end of file diff --git a/src/public/kuangdong.ts b/src/public/kuangdong.ts new file mode 100644 index 0000000..87ca94d --- /dev/null +++ b/src/public/kuangdong.ts @@ -0,0 +1,217 @@ +import { OptionalId, UpdateFilter } from 'mongodb'; +import { userInfo } from 'os'; +import { ApiCall } from 'tsrpc'; +import { CollectionPlayerInfo } from '../module/collection_palyerInfo'; +import { KuangDongCiShuInfo, KuangDongKaiCaiList, KuangDongKaiCaiListTmp, KuangDongKaiCailog, KuangDongKuang } from '../shared/protocols/kuangdong/PtlOpen'; +import { prizeType } from '../shared/protocols/type'; +import { PublicShared } from '../shared/public/public'; +import { PayFun } from './pay'; +import { PlayerFun } from './player'; + + +export class KuangDongfun { + /**矿洞配置 */ + static async getCon(hdid: string | number) { + let _con = G.gc.land[hdid.toString()] + return _con + } + + /**次数相关初始数据 */ + static async initData() { + let _res: KuangDongCiShuInfo = { + eara: {}, + buynum: {}, + time: G.time + } + return _res + } + + /**获取基础数据次数 */ + static async getNumInfo(call: ApiCall) { + let result = await G.mongodb.collection('playerInfo', 'kuangdong').findOne({ uid: call.uid, type: 'kuangdong' }); + let _res: KuangDongCiShuInfo + if (result && PublicShared.chkSameDate(result.time, G.time)) { + _res = { + eara: result?.eara || {}, + buynum: result?.buynum || {}, + time: result.time + } + } else { + _res = await this.initData() + } + return _res + } + + /**占领矿 */ + static async miningZhanLing(call: ApiCall, hdid: number) { + let _con = await this.getCon(hdid) + let _tmp: KuangDongKuang + let _et = G.time + 8 * 3600 + _tmp = { + ctime: G.time, + etime: _et, + uid: call.uid, + yanshi: 0, + hdid: hdid, + kdtype: _con["type"], + ttl: new Date() + } + await this.setminingZhanLing(call.uid, hdid, { $set: _tmp }) + return _tmp + } + + /**修改矿洞数据 */ + static async setminingZhanLing(uid: string, hdid: number, update) { + G.mongodb.collection('kuangdong').updateOne( + { + uid: uid, + hdid: hdid + }, + { + ...update + }, + { + upsert: true + } + ); + + } + + /**获取所有矿洞信息 */ + static async getKaiCaiList() { + let _r = {} + let _res: { + [hdid: string]: KuangDongKaiCaiList; + } = {} + let _kdList = await G.mongodb.collection('kuangdong').find({}).toArray() + let _prize = {} + for (let index = 0; index < _kdList.length; index++) { + const element = _kdList[index]; + let _hdid = element.hdid + // 时间到直接结算奖励 + if (element.etime + element.yanshi <= G.time) { + let _p = await this.getKuangDongPrize(_hdid, element) + if (!_prize[element.uid]) _prize[element.uid] = [] + _prize[element.uid] = _prize[element.uid].concat(_p) + continue + } + element._id = element._id.toString() + let _tmp = await this.getUserInfo(element.uid) + element.userinfo = _tmp + _res[_hdid.toString()] = element + } + _r["kdinfo"] = _res + _r["prize"] = _prize + return _r + } + + /**获取个人信息 */ + static async getUserInfo(uid: string) { + let _tmp: KuangDongKaiCaiListTmp + // let _gud = await G.mongodb.collection('user').findOne({ uid: uid }) + let _gud = await G.mongodb.findOne('user',{ uid: uid },['name','lv','power','ghId','ghName','head','headFrame']) + _tmp = { + name: _gud.name, + lv: _gud.lv, + power: _gud.power, + ghId: _gud.ghId, + ghName: _gud.ghName, + head: _gud.head, + headFrame: _gud.headFrame + } + return _tmp + } + + /**获取矿洞的详细信息 */ + static async getKaiCaiInfo(hdid: number) { + let _where = { hdid: hdid } + let _kdInfo = await G.mongodb.collection('kuangdong').findOne(_where) + return _kdInfo + } + + /**获取矿洞奖励 */ + static async getKuangDongPrize(hdid: number, kdInfo?: KuangDongKuang, data?: {}) { + if (!kdInfo) { + kdInfo = await this.getKaiCaiInfo(hdid) + } + if (!kdInfo) return [] + let _con = await this.getCon(hdid) + let _kcTime = G.time + kdInfo.yanshi - kdInfo.ctime + let _gud = await G.mongodb.collection('user').findOne({ uid: kdInfo.uid }) + let gamer_lv = _gud.lv + // @ts-ignore + let prize: prizeType[] = _con.reward + // let prize: prizeType[] = [{ a: 'attr', t: 'rmbmoney', n: 50 }] // todo 待接入配置 + if (_kcTime > 8 * 3600) _kcTime = 8 * 3600 + kdInfo.yanshi // 设置最大时长 + prize[0]["n"] = Math.floor(eval(_con.formula) * _kcTime) + + await G.mongodb.collection('kuangdong').deleteOne({ hdid: hdid }) + if (prize[0]["n"] > 0) { + // 发奖删数据加日志 + PlayerFun.sendPrize(PayFun.getCall(_gud), prize) + } else { + prize = [] + } + + // 矿洞日志 + let _log: KuangDongKaiCailog = { + uid: kdInfo.uid, + hdid: hdid, + name: _gud.name, + ctime: G.time, + msgtype: 1, + prize: prize, + longtime: _kcTime + } + Object.assign(_log, data) + await this.newKuangDongLog(_log) + return prize + } + + /**添加矿洞日志 */ + static async newKuangDongLog(sendData: KuangDongKaiCailog) { + sendData.longtime = (sendData.longtime < 8 * 3600) ? sendData.longtime : 8 * 3600 + const msgListLen = 20 + // let conns = G.server.connections; + G.mongodb.collection('ghbzcjlog').updateOne( + { type: "kuangdong_msg" }, + { $push: { list: { $each: [sendData], $slice: -msgListLen } } }, + { upsert: true } + ); + // G.server.broadcastMsg('msg_s2c/GongHuiBaoZang', [sendData], conns); + } + + /**红点 */ + static async getHongDian(call: ApiCall) { + let _res = { + show: false + } + // 次数信息 + let _mydata = await this.getNumInfo(call) + // 配置可挑战次数 + let _fightNumCon = G.gc.com.TerritoryFight_ChallengesNum.value + + // 2023.8.29 策划新加 所有矿所有区域,总次数限制(目前各区域一次,总3次) + let _allAreaDayNum = G.gc.com.dpzd_quyu_num.value + let _mykdList = await G.mongodb.collection('kuangdong').find({ uid: call.uid }).toArray() + let _tqNum = Object.keys(call.conn.gud.shoucangping).indexOf("4") != -1 ? 1 : 0 + if (_mykdList.length >= _allAreaDayNum + _tqNum) { + return _res; + } + + const _area = [1, 2, 3] + for (let index = 0; index < _area.length; index++) { + const element = _area[index]; + // 购买次数 + let _buyNum = _mydata.buynum?.[element] || 0 + // 已挑战次数 + let _fightNum = _mydata.eara?.[element] || 0 + // 挑战次数不足 + if (_fightNumCon + _buyNum > _fightNum) { + _res.show = true + break + } + } + return _res + } +} \ No newline at end of file diff --git a/src/public/lingzhulaixi.ts b/src/public/lingzhulaixi.ts new file mode 100644 index 0000000..eb4e6a7 --- /dev/null +++ b/src/public/lingzhulaixi.ts @@ -0,0 +1,173 @@ +import { OptionalId, UpdateFilter } from 'mongodb'; +import { userInfo } from 'os'; +import { ApiCall } from 'tsrpc'; +import { formatNpcData } from '../shared/fightControl/fightFun'; +import { lingzhulaixi_BossList, lingzhulaixi_BOSSmmMoRenZhi, lingzhulaixi_CiSHU, ResOpen } from '../shared/protocols/lingzhulaixi/PtlOpen'; +import { prizeType } from '../shared/protocols/type'; +import { PublicShared } from '../shared/public/public'; +import { PayFun } from './pay'; +import { PlayerFun } from './player'; + + +export class LingZhuLaiXifun { + /**领主来袭配置 */ + static async getCon(bid: string) { + let _con = G.gc.PiratesFight[bid] + return _con + } + + /**获取boss最大血量 */ + static async getBossMapHp(bid: string) { + let _con = await this.getCon(bid) + let _bossid = _con.army + let _res = await formatNpcData(_bossid) + let _keys = Object.keys(_res.roles) + let maxHp: number = 0 + for (let index = 0; index < Object.keys(_res.roles).length; index++) { + const element = _keys[index]; + maxHp += _res.roles[element].attr.hp + } + return maxHp + } + + /**获取boss初始信息 */ + static async getBossDataDef(bid: string) { + let _res: lingzhulaixi_BOSSmmMoRenZhi = { + bid: bid, + ctime: G.time, + passtime: 0, + maxhp: await this.getBossMapHp(bid), + pkuser: {}, + delhp: 0, + randusernum: 0 + } + return _res + } + + /**设置boss相关信息 */ + static async setBossData(bid: string, data: {}) { + await G.mongodb.collection('lingzhulaixi').updateOne({ bid: bid }, data, { upsert: true }); + } + /**设置玩家相关信息 */ + static async setMyData(call: ApiCall, data: {}) { + await G.mongodb.collection('playerInfo', 'lingzhulaixi').updateOne({ uid: call.uid, type: 'lingzhulaixi' }, data, { upsert: true }); + } + + /**获取boss信息 */ + static async getBossData(bid: string) { + let _bossInfo = await G.mongodb.collection('lingzhulaixi').findOne({ bid: bid }); + let _res: lingzhulaixi_BOSSmmMoRenZhi + if (!_bossInfo || (_bossInfo.passtime != 0 && G.time > _bossInfo.passtime)) { + _res = await this.getBossDataDef(bid) + await this.setBossData(bid, { $set: _res }) + } else { + delete _bossInfo._id + _res = _bossInfo + } + return _res + } + + /**获取玩家已经使用的挑战次数 以及挑战的最大伤害 */ + static async getUsePKNum(call: ApiCall) { + let _myData = await G.mongodb.collection('playerInfo', 'lingzhulaixi').findOne({ uid: call.conn.uid, type: 'lingzhulaixi' }) + let _res: lingzhulaixi_CiSHU + // 隔天清零 + if (_myData && PublicShared.chkSameDate(_myData.time, G.time)) { + _res = { + num: _myData.num, + time: _myData.time, + maxdps: _myData.maxdps + } + } else { + _res = { + num: 0, + time: G.time, + maxdps: _myData?.maxdps || {} + } + } + return _res + } + + /**格式化boss列表信息 */ + static async fmtBossList(call: ApiCall) { + let _bossData = await G.mongodb.collection('lingzhulaixi').find({}).toArray() + let _res: lingzhulaixi_BossList = {} + for (let index = 0; index < _bossData.length; index++) { + const element = _bossData[index]; + if (element.passtime != 0 && element.passtime < G.time) { + continue + } + let _tmp = { + bid: element.bid, + passtime: element.passtime, + maxhp: element.maxhp, + delhp: element.delhp, + pkusernum: Object.keys(element.pkuser).length + element.randusernum, + } + _res[element.bid] = _tmp + + } + return _res + } + + /**格式化boss列表信息 */ + static async getBossFightInof(bossFightid: number | string, hpjc: number) { + let _res = await formatNpcData(bossFightid) + let _keys = Object.keys(_res.roles) + if (hpjc >= 1) return _res + for (let index = 0; index < Object.keys(_res.roles).length; index++) { + const element = _keys[index]; + // @ts-ignore + let _tmpHp = parseInt(hpjc * _res.roles[element].attr.hp) + // @ts-ignore + // let _tmpMaxHp = parseInt(hpjc * _res.roles[element].attr.maxHp) + _res.roles[element].attr.hp = _tmpHp + // _res.roles[element].attr.maxHp = _tmpMaxHp + } + return _res + } + + /**获取掉落组的奖励 */ + static async getPrize(dlz: number[]) { + let prize = []; // 发送的奖励 + for (let index = 0; index < dlz.length; index++) { + const element = dlz[index]; + prize = prize.concat(PublicShared.randomDropGroup(element, 1)); + } + return prize + } + + /**排序 */ + static async getRankList(pkuser: { [uid: string]: number }) { + let list = Object.keys(pkuser) + let fmtpkuser = [] + for (let index = 0; index < list.length; index++) { + const element = pkuser[list[index]] + let d = { + uid: list[index], + maxdps: element + } + fmtpkuser.push(d) + } + // fmtpkuser.sort((a, b) => a.maxdps - b.maxdps) + fmtpkuser.sort((a, b) => b.maxdps - a.maxdps) + return fmtpkuser + } + + /**红点 */ + static async getHongDian(call: ApiCall) { + let _res = { + show: false + } + let _con = await this.getCon("1") + if (call.conn.gud.lv < _con.lv) return _res + let _myData = await this.getUsePKNum(call) + let _maxNum = G.gc.com.PiratesFight_ChallengesNum.value + if (_myData.num < _maxNum) { + _res.show = true + } + return _res + } + + +} \ No newline at end of file diff --git a/src/public/notification.ts b/src/public/notification.ts new file mode 100644 index 0000000..098b6db --- /dev/null +++ b/src/public/notification.ts @@ -0,0 +1,28 @@ +import { boolean } from 'mathjs'; +import { ApiCall } from 'tsrpc'; +import { rankType } from '../shared/protocols/rank/PtlOpen'; +import { rankInfo } from '../shared/protocols/type'; +import { PublicShared } from '../shared/public/public'; + + +// 游服 外部接口相关方法 +export class NotifiCationFun { + /**格式化奖励 */ + static async getFmtPrize(assets: { itemId: string, num: number }[]) { + let _prize = [] + for (let index = 0; index < assets.length; index++) { + const element = assets[index]; + let _tmp = { a: "item", t: element.itemId, n: element.num } + _prize.push(_tmp) + } + return _prize; + } + + /**格式化排名值 */ + static async getFmtRankVal(rantype: rankType, rankInfo: rankInfo): Promise { + if (rantype == "jjc") return 0 + return 1; + } + + +} \ No newline at end of file diff --git a/src/public/pata.ts b/src/public/pata.ts new file mode 100644 index 0000000..96a988d --- /dev/null +++ b/src/public/pata.ts @@ -0,0 +1,70 @@ +import { UpdateFilter } from 'mongodb'; +import { paTaType } from '../shared/protocols/pata/type'; +import { PublicShared } from '../shared/public/public'; + + +export class PataFun { + /**获取爬塔信息 */ + static async getInfo(uid: string, sid: number = 0) { + let info: paTaType = await G.mongodb.collection('pata').findOne({ uid: uid, sid: sid }); + let nt = G.time; + if (!info) { + info = { + lv: 1, + useNum: 0, + lastRefreshTime: nt, + gotarr: [], + sid: sid, + saodangNum: 0 + }; + this.changeInfo(uid, info.sid, { $set: info }); + } + + /** 第二天 */ + if (PublicShared.chkSameDate(nt, info.lastRefreshTime) == false) { + let setData = { + lastRefreshTime: nt, + useNum: 0, + saodangNum: 0 + }; + this.changeInfo(uid, info.sid, { $set: setData }); + } + + if (info['_id']) { + delete info['_id']; + } + + return info; + } + + /**修改爬塔信息 */ + static async changeInfo(uid: string, sid: number, change: Pick, '$set'>) { + + G.mongodb.collection('pata').updateOne( + { uid: uid, sid: sid }, + change, + { upsert: true } + ); + } + + /**获取爬塔红点 */ + static async getHongDian(uid: string) { + let mydata = await this.getInfo(uid); + let con = Object.keys(G.gc.patacom); + con.sort((a, b) => { return parseInt(a) - parseInt(b); }); + for (let idx in con) { + idx = con[idx]; + if (mydata.lv <= parseInt(idx)) { + break; + } + // 已经领取 + if (!mydata.gotarr.indexOf(parseInt(idx))) { + continue; + } + return 1; + } + + return 0; + + } +} \ No newline at end of file diff --git a/src/public/pay.ts b/src/public/pay.ts new file mode 100644 index 0000000..3de4e37 --- /dev/null +++ b/src/public/pay.ts @@ -0,0 +1,361 @@ +import {ApiCall} from 'tsrpc'; +import {YangChengMuBiaofun} from '../api_s2c/event/yangchengmubiao/fun'; +import {MsgPayChange} from '../shared/protocols/msg_s2c/MsgPayChange'; +import {payLog} from '../shared/protocols/pay/PtlGetList'; +import {player} from '../shared/protocols/user/type'; +import {PublicShared} from '../shared/public/public'; +import {EmailFun} from './email'; +import {HuoDongFun} from './huodongfun'; +import {call, PlayerFun} from './player'; +import {number} from "mathjs"; + +async function checkPayIsActive(payId: string, logs: payLog[], payArgs) { + let conf: any = await this.getConf(payId, payArgs); + if (!conf) return false; + + let lastLog = logs.last(); + if (!lastLog) return false; + + if (conf.time == -1) return true; + return G.time < lastLog.eTime; +} + +export class PayFun { + static async addPayLog(uid: string, payId: string, type: "system" | "user" | "legu", payArgs) { + let conf: any = await this.getConf(payId, payArgs); + let time = PublicShared.getToDayZeroTime(G.time); + + // await G.redis.hGet('player:payLog', uid) + let allPlayerPayLog = await G.mongodb.collection("payLog").findOne({uid: uid},{ + projection: { + _id: 0, + uid: 0 + } + }); + //@ts-ignore + if (!allPlayerPayLog) allPlayerPayLog = {}; + if (!allPlayerPayLog[payId]) allPlayerPayLog[payId] = []; + + let obj: payLog = {time: time, type: type}; + if (conf.time != -1) obj.eTime = time + conf.time; + + if (payId == 'G123SendGift') { + obj.popup_id = payArgs.popup_id + obj.buyNumber = conf.buyNumber + } + // ### globalDebug allPlayerPayLog + allPlayerPayLog[uid][payId].push(obj); + G.mongodb.collection('payLog').updateOne( + {uid: uid}, + {$push: G.mongodb.createTreeObj({key: payId, val: obj})}, + {upsert: true} + ); + + let msg: MsgPayChange = {}; + msg[payId] = allPlayerPayLog[uid][payId]; + + G.server.sendMsgByUid(uid, 'msg_s2c/PayChange', msg); + } + + static addPayLogNew(uid: string, payId: string, type: "system" | "user" | "legu") { + + G.mongodb.collection('payLogNew').updateOne( + {uid: uid, key: payId}, + {$push: {values: {time: G.time, type: type}}}, + {upsert: true} + ); + } + + static changeG123GiftLog(uid: string, popupId: string) { + G.mongodb.collection('giftLog').updateOne({popup_id: popupId}, {$inc: {buyNumber: 1}}, {upsert: true}); + } + + static async setPayLog(uid: string, ...args: { payId: string, val: payLog[]; }[]) { + //let allPlayerPayLog = await G.redis.hGet('player:payLog', uid) + let allPlayerPayLog = await G.mongodb.collection("payLog").findOne({uid: uid},{ + projection: { + _id: 0, + uid: 0 + } + }); + //@ts-ignore + if (!allPlayerPayLog) allPlayerPayLog = {}; + + + args.forEach(a => { + allPlayerPayLog[a.payId] = a.val; + }); + + G.mongodb.collection('payLog').updateOne( + {uid: uid}, + { + $set: G.mongodb.createTreeObj(...args.map(a => { + return {key: a.payId, val: a.val}; + })) + }, + {upsert: true} + ); + + + G.server.sendMsgByUid(uid, 'msg_s2c/PayChange', Object.fromEntries(args.map(a => [a.payId, a.val]))); + } + + static async getPayLog(uid: string): Promise>; + static async getPayLog(uid: string, payId: string): Promise; + static async getPayLog(uid: string, payId?: string) { + //let allPlayerPayLog = await G.redis.hGet('player:payLog', uid) + let allPlayerPayLog = await G.mongodb.collection("payLog").findOne({uid: uid},{ + projection: { + _id: 0, + uid: 0 + } + }); + + if (arguments.length == 1) { + return allPlayerPayLog || {}; + } else { + return allPlayerPayLog?.[payId] || []; + } + } + + static async getPayLogs(uid: string, payIds: string[]) { + let logs = await this.getPayLog(uid); + return Object.fromEntries(payIds.map(id => [id, logs[id] || []])); + } + + static async getConf(payId, payArgs) { + let conf: any = G.gc.pay[payId] + if (payId == 'G123SendGift') { + let giftInfo = await G.mongodb.collection('giftLog').findOne({popup_id: payArgs.popup_id}); + + let gPrize = giftInfo.items + let bPrize = [] + for (let index in gPrize) { + let args = index.split('^') + bPrize.push({a: args[0], t: args[1], n: gPrize[index]}) + } + + conf = { + id: 'G123SendGift', + money: giftInfo.price, + payExp: [{"a": "attr", "t": "payExp", "n": giftInfo.vipPoints}], + prize: bPrize, + firstPayPrize: [], + name: 'G123SendGift', + time: -1, + buys: giftInfo.purchaseLimitAmount, + needVip: 0, + front: {}, + buyNumber: giftInfo.buyNumber + } + } else if (payId == 'LeguSendGift') { + conf = { + id: 'LeguSendGift', + money: payArgs.money, + payExp: payArgs.payExp, + prize: payArgs.prize, + firstPayPrize: [], + name: 'LeguSendGift', + time: -1, + buys: 0, + needVip: 0, + front: {} + } + } + return conf + } + + static async pay(uid: string, payId: string, payArgs?: any, type?: "system" | "user" | "legu") { + let conf: any = await this.getConf(payId, payArgs); + + let prize = [...conf.prize]; + let player = await G.redis.get('user', uid); + + if (conf.firstPayPrize.length > 0) { + let logs = await this.getPayLog(uid); + + if (!logs || !logs[payId] || logs[payId].length < 1) { + prize = PublicShared.mergePrize([].concat(conf.prize, conf.firstPayPrize)); + } + } + + let call = this.getCall(player); + if (payId.indexOf('zixuanlibao') != -1) { + // 后端唯一标识 htype 4 自选/定制 礼包 + // @ts-ignore + let _hdList = await HuoDongFun.gethdList(call, 4) + _hdList.forEach(ele => { + let selectPrize = ele.data.gift.find(v => v.payId == payId)?.prize; + if (prize) { + let index = payArgs instanceof Array ? payArgs : []; + let select = selectPrize.map((v, i) => v[index[i]] ? v[index[i]] : v[0]); + prize.push(...select); + } + }) + } + if (payId.indexOf('ycmb') != -1) { + // @ts-ignore // 养成活动充值礼包 + let _hdids = await YangChengMuBiaofun.getCon(call); + Object.values(_hdids).forEach(ele => { + let selectPrize = ele.data.gift.find(v => v.payId == payId)?.prize; + if (selectPrize) { + prize.push(...selectPrize); + } + }); + } + await PlayerFun.sendPrize(call, prize); + await PlayerFun.addAttr(call, conf.payExp); + if (payId == 'G123SendGift') { + this.changeG123GiftLog(uid, payArgs.popup_id) + } + + this.addPayLog(player.uid, payId, type, payArgs); + this.addPayLogNew(player.uid, payId, type); + + G.server.sendMsgByUid(uid, 'msg_s2c/Collection', { + fromApi: `pay_${payId}`, + msg: call.eventMsg + }); + + + G.server.sendMsgByUid(uid, 'msg_s2c/PayResult', { + code: 1, + data: { + id: payId, + prize: prize + } + }); + + G.emit('PLAYER_PAY', player, payId, payArgs); + G.emit("Class_task_116", 'Class_task_116', call, 1, 0); + } + + static async check(player: player, payId: string, payArgs?: any) { + let conf: any = await this.getConf(payId, payArgs); + + if (!conf) return G.server.sendMsgByUid(player.uid, 'msg_s2c/PayResult', {code: 0}); + if (player.vip < conf.needVip) return G.server.sendMsgByUid(player.uid, 'msg_s2c/PayResult', {code: -3}); + if (conf.front.cond) { + let pays = await this.getPayLogs(player.uid, conf.front.pays); + let actives = Object.entries(pays).map(v => checkPayIsActive(v[0], v[1], payArgs)).filter(v => v); + if (conf.front.cond == '|' && actives.length < 1) return G.server.sendMsgByUid(player.uid, 'msg_s2c/PayResult', {code: -4}); + if (conf.front.cond == '&' && actives.length < conf.front.pays.length) return G.server.sendMsgByUid(player.uid, 'msg_s2c/PayResult', {code: -4}); + } + + if (payId == 'G123SendGift') { + let giftInfo = await G.mongodb.collection('giftLog').findOne({popup_id: payArgs.popup_id}); + + if (giftInfo.purchaseLimitAmount && giftInfo.buyNumber >= giftInfo.purchaseLimitAmount) { + return G.server.sendMsgByUid(player.uid, 'msg_s2c/PayResult', {code: -1}); + } + + if (number(giftInfo.price) <= 0) { + this.pay(player.uid, payId, payArgs, 'user'); + return + } + } else { + let buyLog = (await this.getPayLog(player.uid))[payId] || []; + + if (conf.buys > 0 && conf.time > 0) { + buyLog = buyLog.filter(v => v.time >= PublicShared.getToDayZeroTime(G.time)); + } + + if (conf.buys > 0 && buyLog.length >= conf.buys) return G.server.sendMsgByUid(player.uid, 'msg_s2c/PayResult', {code: -1}); + if (conf.time != -1 && buyLog.slice(-1)[0]?.eTime > G.time && conf.buys == 0) return G.server.sendMsgByUid(player.uid, 'msg_s2c/PayResult', {code: -2}); + if (payId.indexOf('136Gift') != -1 && payId != '136Gift1') { + buyLog = await this.getPayLog(player.uid, '136Gift1'); + if (buyLog.slice(-1)[0]?.eTime > G.time) return G.server.sendMsgByUid(player.uid, 'msg_s2c/PayResult', {code: -3}); + } + + } + + if (G.config.debug) { + this.pay(player.uid, payId, payArgs, 'user'); + } else { + G.server.sendMsgByUid(player.uid, 'msg_s2c/PayResult', {code: 200}); + } + } + + static getCall(player: player): call { + + return { + get otherBuff() { + return this.conn.otherBuff; + }, + uid: player.uid, + conn: G.server.uid_connections[player.uid] ? G.server.uid_connections[player.uid] : { + id: null, + uid: player.uid, + gud: player, + item: null, + otherBuff: null, + heroPos: null, + refreshPower: null, + sendMsg: null + }, + eventMsg: null, + addEventMsg() { + return ApiCall.prototype.addEventMsg.call(this, ...arguments); + } + }; + } + + /** + * 当玩家购买过有时间期效性的礼包 并且在生效期内每天有邮件奖励时 每天首次登陆时根据时间补发邮件 玩家每天首次登陆会进入检查 + * @param lastTime 上一次登陆时间 + * @param curTime 每日首次登陆时间 + */ + static async checkGiftDayEmail(player: player, lastTime: number, curTime: number) { + const buyLogs = await this.getPayLog(player.uid); + const keys = Object.keys(buyLogs).filter(payId => G.gc.payEmail[payId]?.length > 0); + const curZeroTime = PublicShared.getToDayZeroTime(curTime); + const lastZeroTime = PublicShared.getToDayZeroTime(lastTime); + + keys.forEach(payId => { + let payEmailConf = G.gc.payEmail[payId] as _gcType['payEmail']['caifutequan']; + let latelyLog = buyLogs[payId].slice(-1)[0]; + if (!latelyLog || (latelyLog.eTime && lastZeroTime >= latelyLog.eTime)) return; + + let countDay = 1; + let payZeroTime = PublicShared.getToDayZeroTime(latelyLog.time); + let days = (curZeroTime - payZeroTime) / (24 * 3600); + + for (let n = 1; n <= days; n++) { + countDay++; + if (payZeroTime + n * 24 * 3600 <= lastZeroTime) continue; + payEmailConf.forEach(conf => { + if (conf.day == 1 || countDay % conf.day == 0) { + EmailFun.addEmail({ + uid: player.uid, + type: 'system', + title: conf.title, + content: conf.content, + prize: conf.prize, + createTime: payZeroTime + n * 24 * 3600 + }); + } + }); + } + }); + } + + /** + * 获取某个时间段内 玩家充值x元以上的天数 + */ + static async getPayDaysBuyPayNum(uid: string, sTime: number, eTime: number, ckeckNeed: number) { + let logs = await G.mongodb.collection('dayPay').find({uid: uid}).toArray() || []; + return logs.filter(log => log.time >= sTime && log.time <= eTime && log.payNum >= ckeckNeed).length; + } + + /** + * 获取某个时间段内 玩家的充值总金额 + */ + static async getPayDaysAllPayNum(uid: string, sTime: number, eTime: number) { + let logs = await G.mongodb.collection('dayPay').find({uid: uid}).toArray() || []; + + logs = logs.filter(log => log.time >= sTime && log.time < eTime); + + if (logs.length <= 0) return 0; + return logs.map(log => log.payNum).reduce((a, b) => a + b); + } +} \ No newline at end of file diff --git a/src/public/peijian.ts b/src/public/peijian.ts new file mode 100644 index 0000000..cc39128 --- /dev/null +++ b/src/public/peijian.ts @@ -0,0 +1,53 @@ +import { ObjectId } from 'mongodb'; +import { PeiJian } from '../shared/protocols/peijian/PtlGetList'; +import { PeijianShared } from '../shared/public/peijian'; +import { HeroFun } from './hero'; +import { call } from './player'; + + +export class PeijianFun { + static async changeAttr(call: call, peijian: Omit & { wearId?: string; }, change: Partial>, changeHero = true) { + if (Object.keys(change).length < 1) return; + + if (peijian.wearId && changeHero) { + let hero = await HeroFun.getHero(call, peijian.wearId); + let peijianData = hero.peijian; + let wearData = Object.entries(peijianData).find(v => v[1].split('_')[0] == peijian._id); + + if (change.wearId == '') { + peijianData[wearData[0]] = ''; + } else { + Object.assign(peijian, change); + peijianData[wearData[0]] = PeijianShared.fmt(peijian); + } + + await HeroFun.changeHeroAttr(call, hero, { peijian: peijianData }); + } + + G.redis.get('peijian', call.uid, peijian._id).then(v => { + Object.assign(v, change); + G.redis.set('peijian', call.uid, peijian._id, v); + }); + + G.mongodb.collection('peijian').updateOne({ uid: call.uid, _id: new ObjectId(peijian._id) }, { $set: { ...change } }); + + call.addEventMsg('msg_s2c/PeijianChange', peijian._id, change); + } + static async getPeijian(call: call, _id: string): Promise; + static async getPeijian(call: call, _id: string[]): Promise; + static async getPeijian(call: call, _id: string | string[]) { + if (typeof _id == 'string') { + return await G.redis.get('peijian', call.uid, _id); + } else { + let ss = await G.mongodb.collection('peijian').find({ _id: { $in: _id.map(v => G.mongodb.conversionId(v)) } }).toArray(); + return ss.map(v => G.mongodb.conversionIdObj(v) as PeiJian); + } + } + + static async getAvbPeijian(call: call, limit: number): Promise; + static async getAvbPeijian(call: call, limit: number) { + let ss = await G.mongodb.collection('peijian').find({ uid: call.conn.uid, wearId: '' }).limit(limit).sort({peijianId:-1,jinglian:-1,lv:-1,_id:1}).toArray(); + return ss.map(v => G.mongodb.conversionIdObj(v) as PeiJian); + } + +} \ No newline at end of file diff --git a/src/public/player.ts b/src/public/player.ts new file mode 100644 index 0000000..9a2a032 --- /dev/null +++ b/src/public/player.ts @@ -0,0 +1,595 @@ +import {ObjectId, OptionalId} from 'mongodb'; +import {ApiCall, BaseConnection, TsrpcError} from 'tsrpc'; +import {checkPlayerGift} from '../api_s2c/event/xianshilibao/fun'; +import {md_redPoint_check} from '../api_s2c/gongyu/mingdao/ApiOpen'; +import {CollectionPeiJian} from '../module/collection_peijian'; +import {Wjjl} from '../module/collection_wjjl'; +import {MongodbCollections} from '../module/mongodb'; +import {G123} from '../sdk/G123'; +import {ResGetList} from '../shared/protocols/item/PtlGetList'; +import {ResLogin} from '../shared/protocols/user/PtlLogin'; +import {player} from '../shared/protocols/user/type'; +import {HeroShared, otherBuff} from '../shared/public/hero'; +import {PublicShared} from '../shared/public/public'; +import {HeroFun} from './hero'; +import {ShiwuFun} from './shiwu'; +import {UserFun} from './user'; + +export type call = { + get otherBuff(): otherBuff; + uid: string; + eventMsg: k_v>; + conn: { + readonly id: string; + get otherBuff(): otherBuff; + get heroPos(): k_v; + uid: string; + gud: player; + item?: ResGetList['list']; + refreshPower(): Promise; + sendMsg: BaseConnection['sendMsg']; + }; + addEventMsg: ApiCall['addEventMsg']; +}; + +export class PlayerFun { + /** + * 获取玩家atn数量 + */ + static async getAtnNum(call: call, atn: atn): Promise { + + if (atn.a == 'attr') { + return call.conn.gud[atn.t] || 0; + } else if (atn.a == 'item') { + return call.conn.item?.[atn.t]?.num || await G.redis.get('item', call.conn.uid, atn.t, 'num') || 0; + } else return 0; + } + + /** + * 判断消耗是否满足 + * @param err 默认会中断调用栈 向客户端返回道具不足错误信息 + */ + static async checkNeedIsMeet(call: call, need: atn[], err = true) { + for (let atn of need) { + let has = await this.getAtnNum(call, atn); + + if (has < atn.n) { + if (err) { + throw new TsrpcError('', {code: -104, atn: atn}); + } else { + return {isOk: false, atn: atn}; + } + } + } + return {isOk: true, atn: null}; + } + + /** + * 轮询多个消耗条件是否满足 + */ + static async checkNeedByArgs(call: call, ...args: atn[]): Promise<{ + isOk: boolean; + atn: atn; + }> { + let need = args.shift(); + let meet = await this.checkNeedIsMeet(call, [need], false); + + if (meet.isOk) return { + isOk: true, + atn: need + }; + if (args.length < 1) { + throw new TsrpcError('', {code: -104, atn: meet.atn}); + } + return await this.checkNeedByArgs(call, ...args); + } + + /** + * 扣除消耗 仅限 item attr + */ + static async cutNeed(call: call, val: atn[]) { + let needArr = PublicShared.mergePrize(val); + needArr.forEach(v => v.n *= -1); + + let attr = needArr.filter(atn => atn.a == 'attr' && atn.n != 0); + if (attr.length > 0) { + await this.addAttr(call, attr); + } + + let item = needArr.filter(atn => atn.a == 'item' && atn.n != 0); + if (item.length > 0) { + await this.addItem(call, item); + } + + G.emit('USE_ITEM', call.conn.gud, needArr.map(need => { + return {...need, n: Math.abs(need.n)}; + })); + } + + /** + * 发送奖励 + */ + static async sendPrize(call: call, prizeList: atn[]) { + prizeList = PublicShared.mergePrize(prizeList); + + let attr = prizeList.filter(atn => atn.a == 'attr' && atn.n != 0); + let item = prizeList.filter(atn => atn.a == 'item' && atn.n != 0); + let hero = prizeList.filter(atn => atn.a == 'hero' && atn.n != 0); + let equip = prizeList.filter(atn => atn.a == 'equip' && atn.n != 0); + let shiwu = prizeList.filter(atn => atn.a == 'shiwu' && atn.n != 0); + let peijian = prizeList.filter(atn => atn.a == 'peijian' && atn.n != 0); + + await Promise.all([ + attr.length > 0 && this.addAttr(call, attr), + item.length > 0 && this.addItem(call, item), + hero.length > 0 && this.addHero(call, hero), + equip.length > 0 && this.addEquip(call, equip), + shiwu.length > 0 && this.addShiwu(call, shiwu), + peijian.length > 0 && this.addPeijian(call, peijian) + ]); + + return prizeList; + }; + + /** + * 修改玩家属性或货币 + */ + static async addAttr(call: call, val: Partial<{ + [k in keyof ResLogin['gud']]: ResLogin['gud'][k] + }> | atn[]) { + let change = {}; + if (val instanceof Array) { + for (let atn of val) { + change[atn.t] = await this.getAtnNum(call, atn) + atn.n; + await this.changeAttr(call.conn.uid, change); + await this.upAttr(call, {...atn, n: change[atn.t]}); + } + } else { + change = val; + await this.changeAttr(call.conn.uid, change); + for (let [k, v] of Object.entries(val)) { + if (['lv', 'vip', 'renown', 'wxcLv', 'tujianLv'].includes(k)) { + UserFun.activeHeadFrame(call.uid, k, v); + UserFun.activeChatFrame(call.uid, k, v); + } + } + } + // 修改属性应在相关奖励领取之前,否则奖励内获取的用户数据是旧数据 + // await this.changeAttr(call.conn.uid, change); + call.addEventMsg('msg_s2c/PlayerChange', change); + } + + static async changeAttr(uid: string, change: Partial) { + for (let k in change) { + G.redis.set('user', uid, k as any, change[k]); + } + G.mongodb.collection('user').updateOne({uid: uid}, {$set: change}); + + if (G.server.uid_connections[uid]) { + checkPlayerGift(G.server.uid_connections[uid].gud, change); + Object.assign(G.server.uid_connections[uid].gud, change); + } + } + + /** + * 检查玩家是否满足等级提升 vip提升等 + */ + static async upAttr(call: call, atn: atn) { + + switch (atn.t) { + case 'nexp': + let addLv = 0; + const conf = G.gc.playerLv; + const curLv = call.conn.gud.lv; + while (conf[curLv + addLv + 1] && atn.n >= conf[curLv + addLv + 1].need) { + addLv++; + G123.sendUserLevelUp({...call.conn.gud, lv: curLv + addLv, nexp: atn.n}); + } + addLv && await this.addAttr(call, {lv: curLv + addLv}); + break; + case 'payExp': + let addVip = 0; + const vipConf = G.gc.vip; + const curVip = call.conn.gud.vip; + while (vipConf[curVip + addVip + 1] && atn.n >= vipConf[curVip + addVip + 1].exp) { + addVip++; + } + addVip && await this.addAttr(call, {vip: curVip + addVip}); + break; + } + } + + /** + * 添加道具 + */ + static async addItem(call: call, val: atn[]) { + for (let atn of val) { + let upObj = { + filter: {uid: call.uid, itemId: atn.t}, + update: { + $setOnInsert: { + firstTime: G.time, + }, + $set: { + lastTime: G.time, + }, + $inc: { + num: atn.n + }, + }, + options: { + upsert: true + } + }; + let item = call.conn.item?.[atn.t] || await G.redis.get('item', call.uid, atn.t); + + if (!item) { + let data = { + _id: '', + num: atn.n, + uid: call.uid, + itemId: atn.t, + firstTime: upObj.update.$setOnInsert.firstTime, + lastTime: upObj.update.$setOnInsert.firstTime + }; + G.redis.set('item', call.uid, atn.t, data); + G.mongodb.collection('item').updateOne(upObj.filter, upObj.update, upObj.options); + call.addEventMsg('msg_s2c/ItemChange', atn.t, data); + } else { + if (item.num + atn.n <= 0) { + await G.redis.del('item', call.uid, atn.t); + await G.mongodb.collection('item').deleteOne({uid: call.uid, itemId: atn.t}); + call.addEventMsg('msg_s2c/ItemChange', atn.t, {num: 0}); + } else { + await G.redis.set('item', call.uid, atn.t, 'lastTime', upObj.update.$set.lastTime); + await G.redis.numIncrBy('item', call.uid, atn.t, 'num', atn.n); + await G.mongodb.collection('item').updateOne(upObj.filter, upObj.update, upObj.options); + call.addEventMsg('msg_s2c/ItemChange', atn.t, { + num: item.num + atn.n, + lastTime: upObj.update.$set.lastTime + }); + } + } + } + } + + /** + * 添加装备 + */ + static async addEquip(call: call, val: atn[]) { + let lshd: k_v = {}; + let insertData: OptionalId>[] = val.map(v => { + return new Array(v.n).fill(1).map(v1 => { + return { + lv: 0, + uid: call.uid, + star: 0, + wearaId: '', + equipId: v.t, + getTime: G.time, + adjustment: 0 + }; + }); + }).reduce((a, b) => a.concat(b)); + + let result = await G.mongodb.collection('equip').insertMany(insertData); + + insertData.forEach((v, key) => { + let id = result.insertedIds[key].toHexString(); + let {_id, ...ops} = v; + + G.redis.set('equip', call.uid, id, { + _id: id, + ...ops + }); + + Wjjl.setVal(call.uid, `has_equip_color_${G.gc.equip[ops.equipId].colour}`, 1, false); + + call.addEventMsg('msg_s2c/EquipChange', id, { + _id: id, + ...ops + }); + + if (!lshd[v.equipId]) lshd[v.equipId] = 0; + lshd[v.equipId]++; + }); + + G.mongodb.collection('playerInfo', 'lshd_equip').updateOne( + { + uid: call.uid, + type: 'lshd_equip' + }, + { + $inc: lshd + }, + { + upsert: true + } + ); + + call.addEventMsg('msg_s2c/LshdChange', 'equip', lshd); + } + + /** + * 删除装备 + */ + static async cutEquip(call: call, _idArr: string[]) { + for (let _id of _idArr) { + G.redis.del('equip', call.uid, _id); + G.mongodb.collection('equip').deleteOne({uid: call.uid, _id: new ObjectId(_id)}); + call.addEventMsg('msg_s2c/EquipChange', _id, {num: 0}); + } + } + + /** + * 添加英雄 + */ + static async addHero(call: call, val: atn[]) { + let lshd: k_v = {}; + let insertData: any[] = val.map(v => { + return new Array(v.n).fill(1).map(v1 => { + return { + lv: 1, + uid: call.uid, + jieji: 0, + heroId: v.t, + getTime: G.time, + }; + }); + }).reduce((a, b) => a.concat(b)); + + if (!insertData.length) return + + insertData.forEach(v => { + v.zhanli = HeroShared.getHeroZhanLi(v, call.otherBuff); + }); + + let result = await G.mongodb.collection('hero').insertMany(insertData); + + for (let key = 0; key < insertData.length; key++) { + let v = insertData[key] + + let id = result.insertedIds[key].toHexString(); + let {_id, ...ops} = v; + + //https://www.codenong.com/53116318/ + //新号创建时,hero下默认没有uid开头的key,这里会触发(error) ERR missing key at non-terminal path level错误 + //hero/apiGetList里会G.redis.set('hero', call.uid, kvList); + //在这之后再执行下面的代码则不会报错 + + if (await G.redis.type('hero', call.uid) != null) { + G.redis.set('hero', call.uid, id, { + _id: id, + ...ops + }); + } + + + call.addEventMsg('msg_s2c/HeroChange', id, { + _id: id, + ...ops + }); + + if (!lshd[v.heroId]) lshd[v.heroId] = 0; + lshd[v.heroId]++; + } + + G.mongodb.collection('playerInfo', 'lshd_hero').updateOne( + { + uid: call.uid, + type: 'lshd_hero' + }, + { + $inc: lshd + }, + { + upsert: true + } + ); + + call.addEventMsg('msg_s2c/LshdChange', 'hero', lshd); + } + + /** + * 删除英雄 + */ + static async cutHero(call: call, _idArr: string[]) { + for (let _id of _idArr) { + await HeroFun.delHero(call, _id); + G.redis.del('hero', call.uid, _id); + G.mongodb.collection('hero').deleteOne({uid: call.uid, _id: new ObjectId(_id)}); + call.addEventMsg('msg_s2c/HeroChange', _id, {num: 0}); + } + } + + /** + * 添加饰物 + */ + static async addShiwu(call: call, val: atn[]) { + let insertData: OptionalId[] = val.map(v => { + return new Array(v.n).fill(1).map(v1 => { + let shiwu: MongodbCollections['shiwu'] = { + uid: call.uid, + colour: v.colour, + wearId: '', + shiwuId: v.t, + jichu: ShiwuFun.randomJichu({colour: v.colour, shiwuId: v.t}), + fujia: [] + }; + if (v.shiwuBuff) { + shiwu.jichu = v.shiwuBuff.jichu; + shiwu.fujia = v.shiwuBuff.fujia; + if (v.shiwuBuff.zhuanshu) shiwu.zhuanshu = v.shiwuBuff.zhuanshu; + } else { + ShiwuFun.randomFujiaAll(shiwu); + ShiwuFun.randomZhuanshu(shiwu); + } + return shiwu; + }); + }).reduce((a, b) => a.concat(b)); + + let result = await G.mongodb.collection('shiwu').insertMany(insertData); + + insertData.forEach((v, key) => { + let id = result.insertedIds[key].toHexString(); + let {_id, ...ops} = v; + + G.redis.set('shiwu', call.uid, id, { + _id: id, + ...ops + }); + + call.addEventMsg('msg_s2c/ShiwuChange', id, { + _id: id, + ...ops + }); + }); + + if (insertData.filter(v => v.colour == 5)) { + md_redPoint_check(G.server.uid_connections[call.uid], 'peijian_colour_5'); + } + + return Object.values(result.insertedIds).map(v => G.mongodb.conversionId(v)); + } + + /** + * 删除饰物 + */ + static async cutShiwu(call: call, _idArr: string[]) { + for (let _id of _idArr) { + G.redis.del('shiwu', call.uid, _id); + G.mongodb.collection('shiwu').deleteOne({uid: call.uid, _id: new ObjectId(_id)}); + call.addEventMsg('msg_s2c/ShiwuChange', _id, {num: 0}); + } + } + + /** + * 添加配件 + */ + static async addPeijian(call: call, val: atn[]) { + let lshd: k_v = {}; + let insertData: OptionalId[] = val.map(v => { + return new Array(v.n).fill(1).map(v1 => { + return { + lv: 1, + uid: call.uid, + wearId: '', + jinglian: 0, + peijianId: v.t.toString() + }; + }); + }).reduce((a, b) => a.concat(b)); + + let result = await G.mongodb.collection('peijian').insertMany(insertData); + + insertData.forEach((v, key) => { + let {_id, uid, ...ops} = v; + let id = _id.toHexString(); + + if (G.gc.peijian[v.peijianId].colour != 5) { + if (!lshd[v.peijianId]) lshd[v.peijianId] = 0; + lshd[v.peijianId]++; + } + + G.redis.set('peijian', call.uid, id, {_id: id, ...ops}); + call.addEventMsg('msg_s2c/PeijianChange', id, {_id: id, ...ops}); + }); + + G.mongodb.collection('playerInfo', 'lshd_peijian').updateOne( + { + uid: call.uid, + type: 'lshd_peijian' + }, + { + $inc: lshd + }, + { + upsert: true + } + ); + + call.addEventMsg('msg_s2c/LshdChange', 'peijian', lshd); + + return Object.values(result.insertedIds).map(v => G.mongodb.conversionId(v)); + } + + /** + * 删除配件 + */ + static async cutPeijian(call: call, _idArr: string[]) { + for (let _id of _idArr) { + G.redis.del('peijian', call.uid, _id); + G.mongodb.collection('peijian').deleteOne({uid: call.uid, _id: new ObjectId(_id)}); + call.addEventMsg('msg_s2c/PeijianChange', _id, {num: 0}); + } + } + + /** + * 获取playattr属性 + */ + static async getAttr(uid: string, where: { ctype: string; }) { + let _w = where; + Object.assign(_w, {uid: uid}); + const _res = await G.mongodb.collection('playattr').find(_w).toArray(); + _res.forEach(v => { + if (v._id) { + delete v['_id']; + } + }); + return _res; + } + + /** + * 获取单条attr数据 + */ + static async getAttrOne(uid: string, where: { ctype: string; }) { + let _w = where; + Object.assign(_w, {uid: uid}); + const _res = await G.mongodb.collection('playattr').findOne(_w); + if (_res) { + delete _res['_id']; + } + return _res; + } + + /** + * 取出 当天 符合条件的数据 + */ + static async getAttrByDate(uid: string, where: { ctype: string; }, time = 0) { + if (time == 0) { + time = G.time; + } + let _zeroTime = PublicShared.getToDayZeroTime(time); + let _tmp = {lasttime: {$gte: _zeroTime, $lte: _zeroTime + 24 * 60 * 60 - 1}}; + + let _w = where; + Object.assign(_w, {uid: uid, ..._tmp}); + const _res = await G.mongodb.collection('playattr').find(_w).toArray(); + _res.forEach(v => { + if (v._id) { + delete v['_id']; + } + }); + return _res; + } + + /** + * 设置playAttr属性 + */ + static async setAttr(uid: string, where: { ctype: string; }, data: {}, islasttime = 1) { + let _w = where; + Object.assign(_w, {uid: uid}); + + if (islasttime == 1) { + data["lasttime"] = G.time; + } + + let _exists = await this.getAttrOne(uid, _w); + if (!_exists) { + // 加入创建数据时间 + data["ctime"] = G.time; + } + let _res = await G.mongodb.collection('playattr').updateMany(_w, {$set: data}, {upsert: true}); + return _res; + } +} \ No newline at end of file diff --git a/src/public/qjzzd.ts b/src/public/qjzzd.ts new file mode 100644 index 0000000..0429cd6 --- /dev/null +++ b/src/public/qjzzd.ts @@ -0,0 +1,59 @@ +import { number } from 'mathjs'; +import { ApiCall } from 'tsrpc'; +import { ReqAddHuoDong } from '../monopoly/protocols/PtlAddHuoDong'; +import { PublicShared } from '../shared/public/public'; +import { UserFun } from './user'; + +export class QjzzdFun { + /**获取boss id 偏差值*/ + static async getBoosId(val: number = 1): Promise { + let _con = Object.values(G.gc.qjzzd.bossTime) + let _day = PublicShared.getWeek(G.time) + val + _day = _day = 0 ? 7 : _day + for (let index = 0; index < _con.length; index++) { + const element = _con[index]; + if (element[0] <= _day && _day <= element[1]) { + return G.gc.qjzzd.boss[index] + } + } + return G.gc.qjzzd.boss[0]; + } + + /**是否换boss */ + static async chkSetBoosId(): Promise { + let _con = Object.values(G.gc.qjzzd.bossTime) + let _day = PublicShared.getWeek(G.time) + _day = _day = 0 ? 7 : _day + for (let index = 0; index < _con.length; index++) { + const element = _con[index]; + if (_day == element[1]) { + return true + } + } + return false + } + + /**获取排行奖励 */ + static async getphPrize() { + let _con = Object.values(G.gc.qjzzd.bossTime) + let _day = PublicShared.getWeek(G.time) + _day = _day = 0 ? 7 : _day + for (let index = 0; index < _con.length; index++) { + const element = _con[index]; + if (_day == element[1]) { + return G.gc.qjzzd.rankphPrize[index] + } + } + return G.gc.qjzzd.rankphPrize[0] + } + + /**获取挑战次数奖励 */ + static async getFightPrize(fightNum: number) { + let _prize = [] + let _con = G.gc.qjzzd.fightPirze[fightNum] + if (!_con) return _prize + + _prize = _con.prize.concat(_con.dlz ? _con.dlz.map(dlz => PublicShared.randomDropGroup(dlz)).reduce((a, b) => a.concat(b)) : []) + return _prize + } +} diff --git a/src/public/rank/rank.ts b/src/public/rank/rank.ts new file mode 100644 index 0000000..b1ea8be --- /dev/null +++ b/src/public/rank/rank.ts @@ -0,0 +1,189 @@ +import { rankType, ResOpen } from '../../shared/protocols/rank/PtlOpen'; +import { rankInfo } from '../../shared/protocols/type'; +import { player } from '../../shared/protocols/user/type'; +import { Queue } from '../../shared/public/queue'; +import { RankClslCross } from './rank_clsl'; +import { RankHbzbJfsCross, RankHbzbJfsLocal, RankHbzbZbsCross } from './rank_hbzb_jfs'; +import { RankPower } from './rank_power'; +import { RankQjzzd } from './rank_qjzzd'; +import { RankSlzd1, RankSlzd2, RankSlzd3, RankSlzd4, RankSlzd5, RankSlzd6 } from './rank_slzd'; +import { RankTanXian } from './rank_tanxian'; +import { RankTujian } from './rank_tujian'; +import { RankWzryCross } from './rank_wzry'; +import { RankXszm } from './rank_xszm'; +import { RankZccg } from './rank_zccg'; +import { sortEd } from '../../module/redis' +import * as util from 'util' + + +export abstract class Rank { + static list: Partial<{ + qjzzd: RankQjzzd; + zhanli: RankPower; + tanxian: RankTanXian; + hbzbLocal: RankHbzbJfsLocal; + hbzbCross: RankHbzbJfsCross; + hbzbZbsCross: RankHbzbZbsCross; + slzd1: RankSlzd1; + slzd2: RankSlzd2; + slzd3: RankSlzd3; + slzd4: RankSlzd4; + slzd5: RankSlzd5; + slzd6: RankSlzd6; + xszm: RankXszm; + clslCross: RankClslCross; + zccg: RankZccg; + tujian: RankTujian; + wzryCross: RankWzryCross; + }> = {}; + + // list: rankInfo[]; + queue = new Queue(); + findKey = 'uid'; + countMaxNum = 50; + utimeTTL = 60; + + abstract getType(): rankType; + abstract compare(other: rankInfo, cur: rankInfo): boolean; + abstract compareSort(a: rankInfo, b: rankInfo): number; + abstract getRankList(uid: string, gud?: player): Promise; + abstract getValArr(info: rankInfo): number|string; // 运算后的积分值,排名依据 + + get db() { + return G.mongodb.collection('rankList'); + } + get type() { + return this.getType(); + } + + constructor() { + Rank.list[this.getType()] = this; + this.cotr(); + } + + get getRedisKey() { + return util.format('rank:%s:data', this.getType()) + } + + get getRedisKeySort() { + return util.format('rank:%s:sort', this.getType()) + } + + // 初始化 + async cotr() { + // redis已存在则不初始化 + if(await this.getRankLen() > 0) return + this.db.find({ type: this.type }).toArray().then(listArr => { + // 写入初始化数据 + listArr = listArr || []; + listArr.forEach(item => { + if(item.idKey && item.data) this.setRankData(item.idKey, item.data) + }) + }); + } + + // 更新数据与排名 + async setRankData(idKey: string, data: rankInfo) { + let key = this.getRedisKey + let keySort = this.getRedisKeySort + data.utime = G.time + // data + G.redis.hSet(key, idKey, data) + // sort + let valArr = await this.getValArr(data) + G.redis.zAdd(keySort, {value: idKey, score: valArr}) + return + } + + // 获取单个用户的数据 + async getRankData(idKey: string) { + let key = this.getRedisKey + let data = await G.redis.hGet(key, idKey) + if(!data) { + let type = this.getType() + let res = await this.db.findOne({isKey: idKey, type}) + data = G.mongodb.conversionIdObj(res) + if(data) this.setRankData(idKey, data) + } + if(data) data + return undefined + } + + // 获取单个用户的排名 *倒叙 + async getRankSortByOne(idKey: string):Promise { + let rank = await G.redis.zRevRank(this.getRedisKeySort, idKey) + return rank || -1; + } + + // 获取排名长度 + async getRankLen() { + return await G.redis.hLen(this.getRedisKey) + } + + // 获取指定类型的全部rank列表,返回为积分排序后的数组 + async getRankListAll(): Promise { + let res = await G.redis.hGetAll(this.getRedisKey) + if(res) { + // 如果是用户数据,则比对utime,更新数据 + let updateUid = [] + Object.keys(res).forEach(key => { + if(res[key].player?.uid && (res[key].utime || 0) < (G.time - this.utimeTTL)) { + // 更新数据 + updateUid.push(res[key].player.uid) + } + }) + if(updateUid.length > 0) { + let newUserArr = await G.mongodb.collection('user').find({uid: {$in: updateUid}}).toArray() + newUserArr.forEach(item => { + res[item.uid].player = item + res[item.uid].utime = G.time + this.setRankData(item.uid, res[item.uid]) + }) + } + return Object.values(res).sort(this.compareSort) + } + return [] + } + + async delRankData(idKey:string) { + G.redis.hDel(this.getRedisKey, idKey) + G.redis.zRem(this.getRedisKeySort, idKey) + } + + // 前50(countMaxNum)名才更新数据(上榜),多余的数据会删除。 + async addNew(info: rankInfo) { + this.queue.enqueue(async () => { + let rankList = await this.getRankListAll() + // 进入前50名才更新数据 + if (rankList.length < this.countMaxNum || this.compare(rankList.slice(-1)[0], info)) { + // 原逻辑是更新数组内索引(排名)信息,redis更新用户数据即可 + await this.setRankData(info.player[this.findKey], info) + this.db.updateOne({ type: this.type, idKey: info.player[this.findKey] }, { $set: { data: info } }, { upsert: true }); + + // 超过50名时,删除最后一名(第51名)。 + let myIndex = rankList.findIndex(li => li.player[this.findKey] == info.player[this.findKey]); + if (myIndex != -1) { + rankList[myIndex] = info; + } else { + rankList.push(info); + } + // 重新排序 + rankList.sort(this.compareSort) + if (rankList.length > this.countMaxNum) { + let del = rankList.pop(); + this.db.deleteOne({ type: this.type, idKey: del.player[this.findKey] }); + this.delRankData(del.player[this.findKey]) + } + } + }); + } + + // 清空相关rank数据 + async clear() { + this.queue.enqueue(async () => { + await this.db.deleteMany({ type: this.type }); + G.redis.del(this.getRedisKey) + G.redis.del(this.getRedisKeySort) + }); + } +} \ No newline at end of file diff --git a/src/public/rank/rank_clsl.ts b/src/public/rank/rank_clsl.ts new file mode 100644 index 0000000..9bccaf0 --- /dev/null +++ b/src/public/rank/rank_clsl.ts @@ -0,0 +1,61 @@ +import { rankType } from '../../shared/protocols/rank/PtlOpen'; +import { rankInfo } from '../../shared/protocols/type'; +import { player } from '../../shared/protocols/user/type'; +import { Rank } from './rank'; + + +export class RankClslCross extends Rank { + + countMaxNum = 99999; + minStar = Object.values(G.gc.clsl_dan)[Object.keys(G.gc.clsl_dan).length - 1].allStar; + getType(): rankType { + return 'clslCross'; + } + compare(other: rankInfo, cur: rankInfo): boolean { + return cur.valArr[0] > other.valArr[0]; + } + compareSort(a: rankInfo, b: rankInfo): number { + return b.valArr[0] - a.valArr[0]; + } + + // 积分, 排名依据 + getValArr(info: rankInfo):number|string { + return info?.valArr[0] || 0 + } + + async getRankList(uid: string, gud: player) { + let rankList = await this.getRankListAll(); + let rank = await this.getRankSortByOne(uid); + + return { + rankList: rankList, + myRank: { + rank: rank, + player: gud, + valArr: [rank == -1 ? (await G.mongodb.collection('clslCrossUser').findOne({ uid: uid }))?.allStar || 0 : rankList.find(li => li.player.uid == uid).valArr[0]] + } + }; + } + + async addNew(info: rankInfo) { + this.queue.enqueue(async () => { + let rankList = await this.getRankListAll() + if (info.valArr[0] >= this.minStar) { + let myIndex = rankList.findIndex(li => li.player[this.findKey] == info.player[this.findKey]); + + if (myIndex != -1) { + rankList[myIndex] = info; + } else { + rankList.push(info); + } + this.setRankData(info.player[this.findKey], info) + this.db.updateOne({ type: this.type, idKey: info.player[this.findKey] }, { $set: { data: info } }, { upsert: true }); + rankList.sort(this.compareSort); + } else if (info.valArr[0] < this.minStar && rankList.find(li => li.player[this.findKey] == info.player[this.findKey])) { + // this.list.removeOne(li => li.player[this.findKey] == info.player[this.findKey]); + this.delRankData(info.player[this.findKey]) + this.db.deleteOne({ type: this.type, idKey: info.player[this.findKey] }); + } + }); + } +} \ No newline at end of file diff --git a/src/public/rank/rank_gbzl.ts b/src/public/rank/rank_gbzl.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/public/rank/rank_hbzb_jfs.ts b/src/public/rank/rank_hbzb_jfs.ts new file mode 100644 index 0000000..b693d94 --- /dev/null +++ b/src/public/rank/rank_hbzb_jfs.ts @@ -0,0 +1,165 @@ +import { CollectionHbzbUserCross } from '../../module/collection_hbzb_user_cross'; +import { fightResult } from '../../shared/fightControl/fightType'; +import { rankType } from '../../shared/protocols/rank/PtlOpen'; +import { rankInfo } from '../../shared/protocols/type'; +import { FightFun } from '../fight'; +import { Rank } from './rank'; + + +export class RankHbzbJfsLocal extends Rank { + countMaxNum = 300; + getType(): rankType { + return 'hbzbLocal'; + } + compare(other: rankInfo, cur: rankInfo): boolean { + return cur.valArr[0] > other.valArr[0]; + } + compareSort(a: rankInfo, b: rankInfo): number { + return b.valArr[0] - a.valArr[0]; + } + // 积分, 排名依据 + getValArr(info: rankInfo):number|string { + return info?.valArr[0] || 0 + } + async getRankList(uid: string) { + let conn = G.server.uid_connections[uid]; + let rankList = await this.getRankListAll(); + + return { + rankList: rankList, + myRank: { + rank: await this.getRankSortByOne(uid), + player: conn.gud, + valArr: [(await G.mongodb.cPlayerInfo('hbzb').findOne({ uid: uid, type: 'hbzb' }))?.data?.jifen || 1000] + } + }; + } + async getCrossRankList(uid: string) { + let conn = G.server.uid_connections[uid]; + let callRes = await G.clientCross.callApi('hbzb/jfs/GetRankList', { uid: uid }); + let list = callRes.res.rankList; + let myRankIndex = list.findIndex(li => li.player.uid == uid); + + return { + rankList: list, + myRank: { + rank: myRankIndex, + player: conn.gud, + valArr: [callRes.res.jifen] + } + }; + } + async getZbsRankList(uid: string) { + let conn = G.server.uid_connections[uid]; + let callRes = await G.clientCross.callApi('hbzb/zbs/GetRankList', { uid: uid }); + let list = callRes.res.rankList; + let myRankIndex = list.findIndex(li => li.player.uid == uid); + + return { + rankList: list, + myRank: { + rank: myRankIndex, + player: conn.gud, + valArr: [] + } + }; + } + async addNew(info: rankInfo, isNew = false) { + super.addNew(info); + await G.clientCross.sendMsg('msg_cross/HbzbSendUser', { user: info, isNew: isNew }); + } +} + +export class RankHbzbJfsCross extends RankHbzbJfsLocal { + countMaxNum = 100; + getType(): rankType { + return 'hbzbCross'; + } + async addNew(info: rankInfo) { + this.allPlayer[info.player.uid] = { + uid: info.player.uid, + jifen: info.valArr[0], + data: { + player: info.player, + roles: info.roles + } + }; + G.mongodb.collection('hbzb_user_cross').updateOne({ uid: info.player.uid }, { $set: { jifen: info.valArr[0], data: this.allPlayer[info.player.uid].data } }, { upsert: true }); + Rank.prototype.addNew.call(this, info); + } + allPlayer: k_v = {}; + + async loadAllPlayer() { + let players = await G.mongodb.collection('hbzb_user_cross').find().toArray(); + players.forEach(p => { + let { _id, ...ops } = p; + this.allPlayer[ops.uid] = ops; + }); + } + async addJfsLog(uid: string, fightLog: fightResult) { + if (uid.indexOf('npc') != -1) return; + FightFun.saveLog(uid, 'hbzbJfs', fightLog); + } +} + +export class RankHbzbZbsCross extends Rank { + countMaxNum = 150; + getType(): rankType { + return 'hbzbZbsCross'; + } + compare(other: rankInfo, cur: rankInfo): boolean { + return false; + } + compareSort(a: rankInfo, b: rankInfo): number { + if (a.valArr[0] != b.valArr[0]) return a.valArr[0] - b.valArr[0] + else return b.player.power - a.player.power + } + + // 积分, 排名依据, 相同积分情况需计算power,排名内值仅计算排名用,power值除10的9次方,让其作为小数位进入计算 + getValArr(info: rankInfo):number|string { + let valArr = info?.valArr[0] || 0 + let power = info?.player?.power || 0 + let res = valArr + power / (10 ** 9) + return res + } + async changeRank(uid: string, toUid: string) { + let rankList = await this.getRankListAll(); + let role1 = rankList.find(li => li.player.uid == uid); + let role2 = rankList.find(li => li.player.uid == toUid); + + if (role1 && role2 && role1.valArr[0] > role2.valArr[0]) { + let temp = role1.valArr[0]; + role1.valArr[0] = role2.valArr[0]; + role2.valArr[0] = temp; + + this.addNew(role1); + this.addNew(role2); + } + } + async getRankList(uid: string) { + let rankList = await this.getRankListAll(); + let conn = rankList.find(li => li.player.uid == uid); + + return { + rankList: rankList, + myRank: { + rank: await this.getRankSortByOne(uid), + player: conn?.player || {} + } + }; + } + async addNew(info: rankInfo) { + + this.queue.enqueue(async () => { + let rankList = await this.getRankListAll(); + let myIndex = rankList.findIndex(li => li.player[this.findKey] == info.player[this.findKey]); + + if (myIndex != -1) { + rankList[myIndex] = info; + } + this.setRankData(info.player[this.findKey], info) + this.db.updateOne({ type: this.type, idKey: info.player[this.findKey] }, { $set: { data: info } }, { upsert: true }); + // rankList.sort(this.compareSort); + }); + } +} \ No newline at end of file diff --git a/src/public/rank/rank_kbzz.ts b/src/public/rank/rank_kbzz.ts new file mode 100644 index 0000000..e2314b9 --- /dev/null +++ b/src/public/rank/rank_kbzz.ts @@ -0,0 +1,54 @@ +import { rankInfo } from '../../shared/protocols/type'; +import { Rank } from './rank'; + + +export class RankKbzz extends Rank { + static groupList: RankKbzz[]; + static async init(reset = false) { + if (reset) { + G.mongodb.collection('rank').deleteMany({ type: { $regex: /^kbzz/ } }); + } + + this.groupList = []; + let ds = await G.mongodb.collection('kbzzGroupTroop').find({}).toArray(); + let len = [...new Set(ds.map(d => d.group))].length; + for (let g = 0; g < len; g++) { + this.groupList.push(new this(g)); + } + } + constructor(public group: number) { + super(); + } + getType() { + return ('kbzz' + this.group) as any; + } + compare(other: rankInfo, cur: rankInfo): boolean { + return cur.valArr[0] > other.valArr[0]; + } + compareSort(a: rankInfo, b: rankInfo): number { + return (b.valArr[0] * 10000 + (b.player.power || 0) * 100 + (b.player.vip || 0)) - (a.valArr[0] * 10000 + (a.player.power || 0) * 100 + (a.player.vip || 0)); + } + + // 积分, 排名依据 + getValArr(info: rankInfo):number|string { + if(!info?.valArr[0]) return 0 + let valArr = info.valArr[0] || 0 + let power = info.player.power || 0 + let vip = info.player.vip || 0 + let res = valArr * 10000 + power * 100 + vip + return res + } + + async getRankList(uid: string) { + let rankList = await this.getRankListAll(); + return { + rankList: rankList, + myRank: { + rank: await this.getRankSortByOne(uid), + player: {}, + valArr: [(await G.mongodb.collection('kbzzGroupUser').findOne({ uid: uid }))?.score || 1000] + } + }; + } + +} \ No newline at end of file diff --git a/src/public/rank/rank_power.ts b/src/public/rank/rank_power.ts new file mode 100644 index 0000000..0a21886 --- /dev/null +++ b/src/public/rank/rank_power.ts @@ -0,0 +1,34 @@ +import { rankType } from '../../shared/protocols/rank/PtlOpen'; +import { rankInfo } from '../../shared/protocols/type'; +import { Rank } from './rank'; + + +export class RankPower extends Rank { + getType(): rankType { + return 'zhanli'; + } + compare(other: rankInfo, cur: rankInfo): boolean { + return cur.valArr[0] > other.valArr[0]; + } + compareSort(a: rankInfo, b: rankInfo): number { + return b.valArr[0] - a.valArr[0]; + } + // 积分, 排名依据 + getValArr(info: rankInfo):number|string { + return info?.valArr[0] || 0 + } + async getRankList(uid: string): Promise<{ rankList: rankInfo[]; myRank: rankInfo; }> { + let conn = G.server.uid_connections[uid]; + let rankList = await this.getRankListAll() + + return { + rankList: rankList, + myRank: { + rank: await this.getRankSortByOne(uid), + player: conn.gud, + roles: (await conn.getDefaultFightData()).roles, + valArr: [await G.redis.get('user', uid, 'power')] + } + }; + } +} \ No newline at end of file diff --git a/src/public/rank/rank_qjzzd.ts b/src/public/rank/rank_qjzzd.ts new file mode 100644 index 0000000..10e2e58 --- /dev/null +++ b/src/public/rank/rank_qjzzd.ts @@ -0,0 +1,34 @@ +import { rankType } from '../../shared/protocols/rank/PtlOpen'; +import { rankInfo } from '../../shared/protocols/type'; +import { Rank } from './rank'; + + +export class RankQjzzd extends Rank { + getType(): rankType { + return 'qjzzd'; + } + + compare(other: rankInfo, cur: rankInfo): boolean { + return cur.valArr[0] > other.valArr[0]; + } + compareSort(a: rankInfo, b: rankInfo): number { + return b.valArr[0] - a.valArr[0]; + } + // 积分, 排名依据 + getValArr(info: rankInfo):number|string { + return info?.valArr[0] || 0 + } + + async getRankList(uid: string): Promise<{ rankList: rankInfo[]; myRank: rankInfo; }> { + let conn = G.server.uid_connections[uid]; + let rankList = await this.getRankListAll() + return { + rankList: rankList, + myRank: { + rank: await this.getRankSortByOne(uid), + player: conn.gud, + valArr: [(await G.mongodb.cPlayerInfo('qjzzd').findOne({ uid: uid, type: 'qjzzd' }))?.maxDps || 0] + } + }; + } +} \ No newline at end of file diff --git a/src/public/rank/rank_slzd.ts b/src/public/rank/rank_slzd.ts new file mode 100644 index 0000000..649e7e6 --- /dev/null +++ b/src/public/rank/rank_slzd.ts @@ -0,0 +1,66 @@ +import { rankType } from '../../shared/protocols/rank/PtlOpen'; +import { rankInfo } from '../../shared/protocols/type'; +import { Rank } from './rank'; + + +export class RankSlzd1 extends Rank { + getType(): rankType { + return 'slzd1'; + } + findKey = 'ghId'; + + compare(other: rankInfo, cur: rankInfo): boolean { + return cur.valArr[0] > other.valArr[0]; + } + compareSort(a: rankInfo, b: rankInfo): number { + return b.valArr[0] - a.valArr[0]; + } + + // 积分, 排名依据 + getValArr(info: rankInfo):number|string { + return info?.valArr[0] || 0 + } + + async getRankList(ghid: string): Promise<{ rankList: rankInfo[]; myRank: rankInfo; }> { + let rankList = await this.getRankListAll() + let li = rankList.find(l => l.player.ghId == ghid); + return { + rankList: rankList, + myRank: { + rank: await this.getRankSortByOne(ghid), + player: li?.player || {}, + valArr: [li?.valArr[0] || 0] + } + }; + } +} + +export class RankSlzd2 extends RankSlzd1 { + getType(): rankType { + return 'slzd2'; + } +} + +export class RankSlzd3 extends RankSlzd1 { + getType(): rankType { + return 'slzd3'; + } +} + +export class RankSlzd4 extends RankSlzd1 { + getType(): rankType { + return 'slzd4'; + } +} + +export class RankSlzd5 extends RankSlzd1 { + getType(): rankType { + return 'slzd5'; + } +} + +export class RankSlzd6 extends RankSlzd1 { + getType(): rankType { + return 'slzd6'; + } +} \ No newline at end of file diff --git a/src/public/rank/rank_tanxian.ts b/src/public/rank/rank_tanxian.ts new file mode 100644 index 0000000..ae53ba4 --- /dev/null +++ b/src/public/rank/rank_tanxian.ts @@ -0,0 +1,32 @@ +import { rankType } from '../../shared/protocols/rank/PtlOpen'; +import { rankInfo } from '../../shared/protocols/type'; +import { Rank } from './rank'; + + +export class RankTanXian extends Rank { + getType(): rankType { + return 'tanxian'; + } + compare(other: rankInfo, cur: rankInfo): boolean { + return cur.valArr[0] > other.valArr[0]; + } + compareSort(a: rankInfo, b: rankInfo): number { + return b.valArr[0] - a.valArr[0]; + } + // 积分, 排名依据 + getValArr(info: rankInfo):number|string { + return info?.valArr[0] || 0 + } + async getRankList(uid: string): Promise<{ rankList: rankInfo[]; myRank: rankInfo; }> { + let conn = G.server.uid_connections[uid]; + let rankList = await this.getRankListAll() + return { + rankList: rankList, + myRank: { + rank: await this.getRankSortByOne(uid), + player: conn.gud, + valArr: [await G.redis.get('user', uid, 'mapId')] + } + }; + } +} \ No newline at end of file diff --git a/src/public/rank/rank_tujian.ts b/src/public/rank/rank_tujian.ts new file mode 100644 index 0000000..89be82b --- /dev/null +++ b/src/public/rank/rank_tujian.ts @@ -0,0 +1,36 @@ + + +import { rankType } from '../../shared/protocols/rank/PtlOpen'; +import { rankInfo } from '../../shared/protocols/type'; +import { Rank } from './rank'; + + +export class RankTujian extends Rank { + getType(): rankType { + return 'tujian'; + } + compare(other: rankInfo, cur: rankInfo): boolean { + return cur.valArr[0] > other.valArr[0]; + } + compareSort(a: rankInfo, b: rankInfo): number { + return b.valArr[0] - a.valArr[0]; + } + + // 积分, 排名依据 + getValArr(info: rankInfo):number|string { + return info?.valArr[0] || 0 + } + + async getRankList(uid: string): Promise<{ rankList: rankInfo[]; myRank: rankInfo; }> { + let conn = G.server.uid_connections[uid]; + let rankList = await this.getRankListAll(); + return { + rankList: rankList, + myRank: { + rank: await this.getRankSortByOne(uid), + player: conn.gud, + valArr: [conn.gud.tujianLv] + } + }; + } +} \ No newline at end of file diff --git a/src/public/rank/rank_wzry.ts b/src/public/rank/rank_wzry.ts new file mode 100644 index 0000000..84f69bd --- /dev/null +++ b/src/public/rank/rank_wzry.ts @@ -0,0 +1,45 @@ +import { rankType } from '../../shared/protocols/rank/PtlOpen'; +import { rankInfo } from '../../shared/protocols/type'; +import { player } from '../../shared/protocols/user/type'; +import { Rank } from './rank'; + + +export class RankWzryCross extends Rank { + + countMaxNum = 9999; // 不足256, 大乱斗之后补充npc + getType(): rankType { + return 'wzryCross'; + } + compare(other: rankInfo, cur: rankInfo): boolean { + return cur.valArr[0] > other.valArr[0]; + } + compareSort(a: rankInfo, b: rankInfo): number { + return b.valArr[0] - a.valArr[0]; + } + + // 积分, 排名依据 + getValArr(info: rankInfo):number|string { + return info?.valArr[0] || 0 + } + + async getPlayerRank(uid: string): Promise { + let _r = await this.getRankListAll(); + if (!Object.keys(_r).length) { + return -1 + } + return _r.findIndex(li => li.player.uid == uid) + 1 || -1; + } + + async getRankList(uid: string, gud: player) { + let rankList = await this.getRankListAll(); + + return { + rankList: rankList, + myRank: { + rank: await this.getRankSortByOne(uid), + player: gud, + valArr: [(await G.mongodb.collection('wzry_fight').findOne({ uid: uid }))?.jifen || 0] + } + }; + } +} \ No newline at end of file diff --git a/src/public/rank/rank_xszm.ts b/src/public/rank/rank_xszm.ts new file mode 100644 index 0000000..e5c92c6 --- /dev/null +++ b/src/public/rank/rank_xszm.ts @@ -0,0 +1,41 @@ +import { xszmdb } from '../../api_s2c/event/xianshizhaomu/ApiOpen'; +import { rankType } from '../../shared/protocols/rank/PtlOpen'; +import { rankInfo } from '../../shared/protocols/type'; +import { Rank } from './rank'; + + +export class RankXszm extends Rank { + getType(): rankType { + return 'xszm'; + } + compare(other: rankInfo, cur: rankInfo): boolean { + return cur.valArr[0] > other.valArr[0]; + } + compareSort(a: rankInfo, b: rankInfo): number { + return (b.valArr[0] * 10000 + (b.player.power || 0) + (b.player.vip || 0) * 100) - (a.valArr[0] * 10000 + (a.player.power || 0) + (a.player.vip || 0) * 100); + } + + // 积分, 排名依据 + getValArr(info: rankInfo):number|string { + if(!info.valArr) return 0 + let valArr = info.valArr[0] + let power = info.player.power || 0 + let vip = info.player.vip || 0 + let res = valArr * 10000 + power + vip * 100 + return res + } + + async getRankList(uid: string): Promise<{ rankList: rankInfo[]; myRank: rankInfo; }> { + let conn = G.server.uid_connections[uid]; + let rankList = await this.getRankListAll(); + return { + rankList: rankList, + myRank: { + rank: await this.getRankSortByOne(uid), + player: conn.gud, + roles: {}, + valArr: [(await xszmdb().findOne({ uid: uid, type: 'xianshizhaomu' }))?.recordNum || 0] + } + }; + } +} \ No newline at end of file diff --git a/src/public/rank/rank_zccg.ts b/src/public/rank/rank_zccg.ts new file mode 100644 index 0000000..95abf1a --- /dev/null +++ b/src/public/rank/rank_zccg.ts @@ -0,0 +1,36 @@ + + +import { rankType } from '../../shared/protocols/rank/PtlOpen'; +import { rankInfo } from '../../shared/protocols/type'; +import { Rank } from './rank'; + + +export class RankZccg extends Rank { + getType(): rankType { + return 'zccg'; + } + compare(other: rankInfo, cur: rankInfo): boolean { + return cur.valArr[0] > other.valArr[0]; + } + compareSort(a: rankInfo, b: rankInfo): number { + return b.valArr[0] - a.valArr[0]; + } + + // 积分, 排名依据 + getValArr(info: rankInfo):number|string { + return info?.valArr[0] || 0 + } + + async getRankList(uid: string): Promise<{ rankList: rankInfo[]; myRank: rankInfo; }> { + let conn = G.server.uid_connections[uid]; + let rankList = await this.getRankListAll(); + return { + rankList: rankList, + myRank: { + rank: await this.getRankSortByOne(uid), + player: conn.gud, + valArr: [(await G.mongodb.collection('pata').findOne({ uid: uid }))?.lv || 0] + } + }; + } +} \ No newline at end of file diff --git a/src/public/scheduler/scheduler.ts b/src/public/scheduler/scheduler.ts new file mode 100644 index 0000000..8bcaf15 --- /dev/null +++ b/src/public/scheduler/scheduler.ts @@ -0,0 +1,97 @@ +import { GanHaiRed } from '../../api_s2c/ganhai/ApiOpen'; +import { checkCrossWsIsDisconnect } from '../../setWsClient'; +import { PublicShared } from '../../shared/public/public'; +import { GHManage } from '../gonghui/manage'; + +export type schedulerType = 'jjc' | 'qjzzd' | 'zhanling' + | 'hbzb_jfs_prize' | 'hbzb_zbs_prize' | 'hbzb_local_reset' | 'hbzb_cross_reset' | 'hbzb_zbs_ready' + | 'kbzz' | 'clsl_cross_ctor' | 'clsl_local_ctor' | 'clsl_prize' + | 'wzry_autobaoming' | 'wzry_dldstart' | 'wzry_dldjinji' | 'wzry_zuanshione' | 'wzry_zuanshitwo' | 'wzry_zuanshithree' | 'wzry_zuanshifour' | 'wzry_zuanshisendprize' + | 'wzry_wangzheone' | 'wzry_wangzhetwo' | 'wzry_wangzhethree' | 'wzry_wangzhefour' | 'wzry_wangzhesendprize' | 'wzry_wangzheWZZD' | 'wzry_jingcaiprize' | 'wzry_end' + | 'crosseamil_wzry' | 'newDay_local_ctor'; + +export class SchedulerManage { + static logTime = false; + static start() { + setInterval(() => { + G.updateTime(); + this.logTime && console.log(G.date.format("YYYY-MM-DD hh:mm:ss")); + G.argv.serverType == 'msg' && GHManage.check(); + checkCrossWsIsDisconnect(); + GanHaiRed.check(); + }, 1000); + } + + static onlyPm2() { + setInterval(() => { + Scheduler.schedulers.forEach(s => s.cheak()); // ### debug 方法奖励等定时器检测 + }, 1000); + } +} + +export abstract class Scheduler { + + static schedulers: Scheduler[] = []; + + abstract id: string; + abstract name: string; + + abstract read(): Promise; + abstract start(): Promise; + + time: number; + type: string; + /**是否在准备状态 */ + isReady = true; + /**是否在运行中 */ + isStart = false; + /**运行时间戳 */ + startTime: number; + + get db() { + return G.mongodb.collection('scheduler'); + } + get zeroTime() { + return this.type == 'day' ? PublicShared.getToDayZeroTime() : PublicShared.getToWeekMondayZeroTime(); + } + get nextTime() { + return this.zeroTime + this.time + (this.type == 'day' ? 1 : 7) * 24 * 3600; + } + constructor() { + Scheduler.schedulers.push(this); + this.read().then(_ => { + this.log(`state: 准备完毕 预计下次执行时间:${new Date(this.startTime * 1000).format("YYYY-MM-DD hh:mm:ss")}`); + }); + } + log(...args: any[]) { + console.log(`定时器 === ${this.name} -> ${Array.from(arguments).join(' ')}`); + } + cheak() { + if (this.isReady) return; + if (this.isStart) return; + if (G.time >= this.startTime) { + this.isStart = true; + this.log(`state: 执行中`); + this.start().then(_ => { + this.log(`state: 执行结束 预计下次执行时间:${new Date(this.startTime * 1000).format("YYYY-MM-DD hh:mm:ss")}`); + }); + } + } + async record() { + await this.db.updateOne({ type: this.id }, { $set: { lastRunTime: G.time } }, { upsert: true }); + this.startTime = this.nextTime; + this.isStart = false; + } + async ctorStartTime() { + let db = await this.db.findOne({ type: this.id }); + let sTime = this.zeroTime + this.time; + + if (!db || this.zeroTime > db.lastRunTime) { + this.startTime = G.time > sTime ? this.nextTime : sTime; + } else { + this.startTime = G.time > db.lastRunTime ? this.nextTime : sTime; + } + } +} + +globalThis['scheduler'] = Scheduler; \ No newline at end of file diff --git a/src/public/scheduler/scheduler_clsl.ts b/src/public/scheduler/scheduler_clsl.ts new file mode 100644 index 0000000..dfc83b4 --- /dev/null +++ b/src/public/scheduler/scheduler_clsl.ts @@ -0,0 +1,86 @@ +import { EmailFun } from '../email'; +import { Rank } from '../rank/rank'; +import { Scheduler, schedulerType } from './scheduler'; + + +export class SchedulerClslCrossCtor extends Scheduler { + id: schedulerType = 'clsl_cross_ctor'; + time = G.gc.clsl_com.divideTime; + name = '丛林猎手赛季初始化'; + type: 'day' | 'week' = 'week'; + + async read() { + await this.ctorStartTime(); + this.isReady = false; + } + + async start() { + + G.mongodb.collection('clslCrossUser').updateMany({}, { $set: { allStar: 0 } }); + Rank.list.clslCross.clear(); + + await this.record(); + } +} + +export class SchedulerClslLocalCtor extends SchedulerClslCrossCtor { + id: schedulerType = 'clsl_local_ctor'; + + async start() { + + G.mongodb.cPlayerInfo('clsl').updateMany({ type: 'clsl' }, { $set: { allStar: 0 } }); + + await this.record(); + } +} + +export class SchedulerClslPrize extends Scheduler { + id: schedulerType = 'clsl_prize'; + time = G.gc.clsl_com.prizeTime; + name = '丛林猎手赛季发奖'; + type: 'day' | 'week' = 'week'; + + async read() { + await this.ctorStartTime(); + this.isReady = false; + } + + async start() { + + // 段位奖励 + let locals = await G.mongodb.cPlayerInfo('clsl').find({ type: 'clsl' }).toArray(); + G.gc.clsl_com.danPrize.forEach((conf) => { + let sends = locals.filter(l => l.allStar >= conf.star[0]).map(s => s.uid); + // locals.remove(l => sends.includes(l.uid)); + + sends.forEach(uid => { + EmailFun.addEmail({ + uid: uid, + type: 'system', + title: G.gc.clsl_com.email_dan.title, + content: G.gc.clsl_com.email_dan.content, + prize: conf.prize, + contentInsertArr: [conf.star] + }); + }); + }) + + // 排名奖励 + let crossUids = (await G.clientCross.callApi('clsl/RankUids', {})).res.uids; + G.gc.clsl_com.rankPrize.forEach((conf) => { + let players = crossUids.slice(conf.rank[0] - 1, conf.rank[1]); + players.forEach((uid, index) => { + EmailFun.addEmail({ + uid: uid, + type: 'system', + title: G.gc.clsl_com.email_rank.title, + content: G.gc.clsl_com.email_rank.content, + prize: conf.prize, + contentInsertArr: [conf.rank[0] + index] + }); + }); + }); + + await this.record(); + } +} \ No newline at end of file diff --git a/src/public/scheduler/scheduler_hbzb.ts b/src/public/scheduler/scheduler_hbzb.ts new file mode 100644 index 0000000..628966c --- /dev/null +++ b/src/public/scheduler/scheduler_hbzb.ts @@ -0,0 +1,190 @@ +import { ChatFun } from '../chat'; +import { EmailFun } from '../email'; +import { Rank } from '../rank/rank'; +import { Scheduler, schedulerType } from './scheduler'; + + +export class Scheduler_hbzb_jfs_local_prize extends Scheduler { + id: schedulerType = 'hbzb_jfs_prize'; + time = G.gc.hbzb.jfsOpenTime[1]; + name = '黑帮争霸积分赛结算'; + type: 'day' | 'week' = 'week'; + + async read() { + await this.ctorStartTime(); + this.isReady = false; + } + async start() { + let rankList = await Rank.list.hbzbLocal.getRankListAll() + this.sendEmail(rankList.map(rank => { return { uid: rank.player.uid, valArr: [...rank.valArr] }; }), 'local'); + Rank.list.hbzbLocal.clear(); + G.mongodb.cPlayerInfo('hbzb').updateMany({ type: 'hbzb' }, { $set: { "data.jifen": 1000 } }); + + let crossRank = (await G.clientCross.callApi('hbzb/jfs/GetRankList', { uid: '' })).res.rankList; + this.sendEmail(crossRank.map(rank => { return { uid: rank.player.uid, valArr: [...rank.valArr] }; }), 'cross'); + + await this.record(); + } + + sendEmail(rankList: { uid: string; valArr: any[]; }[], type: 'local' | 'cross') { + let rankConf = type == 'local' ? G.gc.hbzb.jfsLocalRankPrize : G.gc.hbzb.jfsCrossRankPrize; + let email = type == 'local' ? G.gc.hbzb.jfsLocalEmail : G.gc.hbzb.jfsCrossEmail; + rankConf.forEach(conf => { + let players = rankList.slice(conf.ph[0] - 1, conf.ph[1]); + players.forEach((p, index) => { + EmailFun.addEmail({ + uid: p.uid, + type: 'system', + title: email.titel, + content: email.content, + prize: conf.prize, + contentInsertArr: [conf.ph[0] + index, ...p.valArr] + }); + }); + }); + } +} + +export class Scheduler_hbzb_zbs_local_prize extends Scheduler { + id: schedulerType = 'hbzb_zbs_prize'; + time = G.gc.hbzb.zbsOpenTime[1]; + name = '黑帮争霸争霸赛结算'; + type: 'day' | 'week' = 'week'; + + async read() { + await this.ctorStartTime(); + this.isReady = false; + } + + async start() { + + let crossRank = (await G.clientCross.callApi('hbzb/zbs/GetRankList', { uid: '' })).res.rankList; + this.sendEmail(crossRank.map(rank => { return { uid: rank.player.uid, valArr: [...rank.valArr] }; })); + + // crossRank.length > 0 && ChatFun.newMsg({ + // type: 'cross', + // msg: G.gc.pmd.hbzb_pmd, + // time: G.time, + // sender: 'system', + // otherData: { + // pmd: true, + // args: crossRank.slice(0, 3).map(v => `${v.player.name}【${v.player.serverName}】`) + // } + // }); + + for (let i = 0; i < 3; i++) { + let r = crossRank[i]; + if (r) { + ChatFun.newMsg({ + type: 'cross', + msg: G.gc.pmd['hbzb_pmd' + (i + 1)], + time: G.time, + sender: 'system', + otherData: { + pmd: true, + args: [`${r.player.name}【${r.player.serverName}】`] + } + }); + + } + } + + await this.record(); + } + + sendEmail(rankList: { uid: string; valArr: any[]; }[]) { + let rankConf = G.gc.hbzb.zbsRankPrize; + let email = G.gc.hbzb.zbsEmail; + rankConf.forEach(conf => { + let players = rankList.slice(conf.ph[0] - 1, conf.ph[1]); + players.forEach((p, index) => { + EmailFun.addEmail({ + uid: p.uid, + type: 'system', + title: email.titel, + content: email.content, + prize: conf.prize, + contentInsertArr: [conf.ph[0] + index, ...p.valArr] + }); + }); + }); + } +} + +export class Scheduler_hbzb_zbs_cross_ready extends Scheduler { + id: schedulerType = 'hbzb_zbs_ready'; + time = G.gc.hbzb.jfsOpenTime[1]; + name = '黑帮争霸争霸赛准备'; + type: 'day' | 'week' = 'week'; + + async read() { + await this.ctorStartTime(); + this.isReady = false; + } + + async start() { + let rankList = await Rank.list.hbzbCross.getRankListAll() + let zbsRankList = await Rank.list.hbzbZbsCross.getRankListAll() + let top100 = rankList.slice(0, 100); + let top100uids = top100.map(t => t.player.uid); + + console.log(Rank.list.hbzbZbsCross); + + top100.push(...zbsRankList.filter(l => !top100uids.includes(l.player.uid)).sort((a, b) => b.player.power - a.player.power)); + + zbsRankList = top100.map((v, i) => { + return { + player: v.player, + roles: v.roles, + valArr: [i] + }; + }); + + zbsRankList.map(li => { + Rank.list.hbzbZbsCross.setRankData(li.player.uid, li) + }); + Rank.list.hbzbZbsCross.db.insertMany(zbsRankList.map(li => { + return { + idKey: li.player.uid, + type: 'hbzbZbsCross', + data: li + }; + })); + + await this.record(); + } +} + +export class Scheduler_hbzb_local_reset extends Scheduler { + id: schedulerType = 'hbzb_local_reset'; + time = G.gc.hbzb.zbsOpenTime[1] + 300; + name = '黑帮争霸本服重置'; + type: 'day' | 'week' = 'week'; + async read() { + await this.ctorStartTime(); + this.isReady = false; + } + async start() { + Rank.list.hbzbLocal.clear(); + G.mongodb.cPlayerInfo('hbzb').updateMany({ type: 'hbzb' }, { $set: { "data.jifen": 1000 } }); + await this.record(); + } +} + +export class Scheduler_hbzb_corss_reset extends Scheduler { + id: schedulerType = 'hbzb_cross_reset'; + time = G.gc.hbzb.zbsOpenTime[1] + 300; + name = '黑帮争霸跨服重置'; + type: 'day' | 'week' = 'week'; + async read() { + await this.ctorStartTime(); + this.isReady = false; + } + async start() { + await G.mongodb.collection('hbzb_user_cross').updateMany({}, { $set: { jifen: 1000 } }); + Rank.list.hbzbCross.loadAllPlayer(); + Rank.list.hbzbCross.clear(); + Rank.list.hbzbZbsCross.clear(); + await this.record(); + } +} \ No newline at end of file diff --git a/src/public/scheduler/scheduler_jjc.ts b/src/public/scheduler/scheduler_jjc.ts new file mode 100644 index 0000000..5a0aa8b --- /dev/null +++ b/src/public/scheduler/scheduler_jjc.ts @@ -0,0 +1,61 @@ +import { PublicShared } from '../../shared/public/public'; +import { EmailFun } from '../email'; +import { JJCFun } from '../jjc'; +import { Scheduler, schedulerType } from './scheduler'; + + +export class SchedulerJJC extends Scheduler { + id: schedulerType = 'jjc'; + name = '竞技场发奖'; + time = G.gc.jjc_com.sendPrizeTime[1]; + type: 'day' | 'week' = 'day'; + + async read() { + await this.ctorStartTime(); + this.isReady = false; + } + async start() { + Object.values(G.gc.jjc_ph).forEach(async (conf) => { + // let players = rankList.slice(conf.ph[0] - 1, conf.ph[1]); + let players = await JJCFun.getRankListUid(conf.ph[0] - 1, conf.ph[1]); + + players.forEach((uid, index) => { + this.sendEmail(uid, conf.ph[0] + index, getRankPrize(conf.ph[0] + index, conf)); + }); + }); + + let weekZeroTime = PublicShared.getToWeekMondayZeroTime(); + if (G.time > weekZeroTime + 4 * 24 * 3600 && G.time < weekZeroTime + 5 * 24 * 3600) {//竞技场前三名获得争霸赛参赛资格 + // ### globalDebug JJCFun 获取前20名用户,且不是npc + let tops = await JJCFun.getRankList(0, 20) + tops = tops.filter(l => !l.player.isNpc) + G.clientCross?.callApi('hbzb/zbs/SendJjcTop', { tops }); + } + + await this.record(); + } + sendEmail(uid: string, rank: number, prize: atn[]) { + + if (uid.indexOf('npc_') != -1) return; + + EmailFun.addEmail({ + uid: uid, + type: 'system', + title: G.gc.jjc_com.email.titel, + content: G.gc.jjc_com.email.content, + prize: prize, + contentInsertArr: [rank] + }); + } +} + +function getRankPrize(rank: number, conf?: typeof G.gc.jjc_ph['']) { + if (!conf) { + conf = Object.values(G.gc.jjc_ph).filter(v => rank >= v.ph[0] && rank <= v.ph[1])[0]; + } + if (conf) { + return [...conf.prize, { a: 'item', t: '11', n: typeof conf.rongyuprize == 'number' ? conf.rongyuprize : PublicShared.eval(conf.rongyuprize, { a: rank }) }]; + } else { + return []; + } +} \ No newline at end of file diff --git a/src/public/scheduler/scheduler_kbzz.ts b/src/public/scheduler/scheduler_kbzz.ts new file mode 100644 index 0000000..88e3c20 --- /dev/null +++ b/src/public/scheduler/scheduler_kbzz.ts @@ -0,0 +1,99 @@ +import { apply } from '../../api_s2c/kbzz/ApiOpen'; +import { CollectionKbzzGroupTroop, CollectionKbzzGroupUser } from '../../module/collection_kbzz'; +import { PublicShared } from '../../shared/public/public'; +import { RankKbzz } from '../rank/rank_kbzz'; +import { Scheduler } from './scheduler'; + + +class SchedulerKbzz extends Scheduler { + id = ''; + type = 'week'; + name: string; + async read() { + await this.ctorStartTime(); + this.isReady = false; + } + async start() { + + } +} + +export class SchedulerKbzzAutoApply extends SchedulerKbzz { + id = 'kbzzAutoApply'; + name = '恐怖战争自动报名'; + time = G.gc.kbzz.time.apply[0]; + + async start() { + let db = G.mongodb.cPlayerInfo('kbzzApply'); + let zeroTime = PublicShared.getToWeekMondayZeroTime(); + let roles = await db.find({ type: 'kbzzApply' }).toArray(); + + let lastApplyRoles = roles.filter(r => r.applyTime && r.applyTime < zeroTime); + lastApplyRoles.length > 0 && await db.updateMany({ uid: { $in: lastApplyRoles.map(r => r.uid) }, type: 'kbzzApply' }, { $set: { apply: false } }); + + let autoApplyRoles = roles.filter(r => r.autoApply == true); + autoApplyRoles.length > 0 && autoApplyRoles.forEach(r => apply(r.uid)); + + await this.record(); + } +} + +export class SchedulerKbzzGroup extends SchedulerKbzz { + id = 'kbzzGroup'; + name = '恐怖战争分组'; + time = G.gc.kbzz.time.applyEnd[0]; + + async start() { + let groupNum = G.gc.kbzz.groupNum; + let roles = await G.mongodb.collection('kbzzApplyUser').find({}).toArray(); + + if (roles.length >= groupNum) { + await G.mongodb.collection('kbzzGroupUser').deleteMany({}); + await G.mongodb.collection('kbzzGroupTroop').deleteMany({}); + await G.mongodb.collection('kbzzGroupLog').deleteMany({}); + + let groupArr: Array[] = []; + let insertRoles: CollectionKbzzGroupUser[] = []; + let insertGroupTroop: CollectionKbzzGroupTroop[] = []; + roles.sort((a, b) => a.info.player.cTime - b.info.player.cTime); + + while (roles.length > 0) { + let arr = roles.slice(0, groupNum); + roles.splice(0, groupNum); + if (roles.length < groupNum) { + arr.push(...roles); + roles = []; + } + groupArr.push(arr); + } + + + groupArr.forEach((roles, groupIndex) => { + roles.sort((a, b) => b.info.player.power - a.info.player.power); + roles.forEach((role, index) => { + insertRoles.push({ + uid: role.uid, + info: role.info, + group: groupIndex, + troop: index % G.gc.kbzz.troop.length, + score: G.gc.kbzz.playerScore + }); + }); + insertGroupTroop.push(...G.gc.kbzz.troop.map((v, i) => { + return { + group: groupIndex, + troop: i, + score: G.gc.kbzz.troopScore + }; + })); + }); + + await G.mongodb.collection('kbzzGroupUser').insertMany(insertRoles); + await G.mongodb.collection('kbzzGroupTroop').insertMany(insertGroupTroop); + await G.mongodb.collection('kbzzApplyUser').deleteMany({}); + RankKbzz.init(); + } + + await this.record(); + } +} \ No newline at end of file diff --git a/src/public/scheduler/scheduler_newDay.ts b/src/public/scheduler/scheduler_newDay.ts new file mode 100644 index 0000000..ad39cb0 --- /dev/null +++ b/src/public/scheduler/scheduler_newDay.ts @@ -0,0 +1,58 @@ +import { Scheduler, schedulerType } from './scheduler'; +import {PublicShared} from "../../shared/public/public"; +import {Wjjl} from "../../module/collection_wjjl"; +import {ZhanLingTasks} from "../zhanling"; + + +export class SchedulerNewDayLocalCtor extends Scheduler { + id: schedulerType = 'newDay_local_ctor'; + time = 0; + name = '定时推送跨天通知'; + type: 'day' | 'week' = 'day'; + + // todo 测试 + // get nextTime() { + // return G.time + 60; + // } + + async read() { + await this.ctorStartTime(); + this.isReady = false; + } + + async start() { + let users = Object.values(G.server.uid_connections) + if(users.length) { + for (let item of users){ + let gud = item.gud + let add: k_v = {}; + //每天首次登陆 + if (!gud.loginTime || PublicShared.getToDayZeroTime(gud.loginTime) != PublicShared.getToDayZeroTime(G.time)) { + G.emit('FIRST_LOGIN_EVERY_DAY', gud, gud.loginTime || G.time - 24 * 3600, G.time); + gud.loginDays = gud.loginDays ? gud.loginDays + 1 : 1; + add.loginDays = gud.loginDays; + Wjjl.setVal(gud.uid, `toDayLogin_${PublicShared.getOpenServerDay(gud.cTime, G.time)}`, 1); + + if (gud.logoutTime && PublicShared.getToWeekMondayZeroTime(gud.logoutTime) < PublicShared.getToWeekMondayZeroTime(G.time)) { + ZhanLingTasks.clearLog(gud.uid, 'week'); + } + } + gud.loginTime = G.time; + add.loginTime = G.time; + + if (Object.keys(add).length > 0) { + G.mongodb.collection('user').updateOne({ bindUid: gud.bindUid,sid:gud.sid }, { + $set: { + ...add + } + }); + for (let k in add) { + G.redis.set('user', gud.uid, k as any, add[k] as any); + } + } + + } + G.server.broadcastClusterMsg('msg_s2c/NewDay', {time: this.zeroTime}); + } + } +} diff --git a/src/public/scheduler/scheduler_qjzzd.ts b/src/public/scheduler/scheduler_qjzzd.ts new file mode 100644 index 0000000..31e2d99 --- /dev/null +++ b/src/public/scheduler/scheduler_qjzzd.ts @@ -0,0 +1,80 @@ +import { PublicShared } from '../../shared/public/public'; +import { EmailFun } from '../email'; +import { QjzzdFun } from '../qjzzd'; +import { Rank } from '../rank/rank'; +import { Scheduler, schedulerType } from './scheduler'; + + +export class SchedulerQjzzd extends Scheduler { + id: schedulerType = 'qjzzd'; + name = '清剿真主党'; + time = G.gc.qjzzd.time[1] + 60; + // time = G.time - this.zeroTime + 1 * 60 - 3 * 24 * 60 * 60; // todo 测试 + // get nextTime() { + // return G.time + 1 * 60; + // } + + type: 'day' | 'week' = 'day'; + async read() { + let data = await this.db.findOne({ type: this.id }); + + if (!data) { + this.db.updateOne({ type: this.id }, { $set: { lastRunTime: G.time, boss: await QjzzdFun.getBoosId(0) } }, { upsert: true }); + } + + if (PublicShared.getOpenServerDay() < G.gc.eventOpen.qjzzd.day) { + this.startTime = PublicShared.getToDayZeroTime(G.openTime) + G.gc.eventOpen.qjzzd.day * 24 * 3600; + } else { + await this.ctorStartTime(); + } + this.isReady = false; + } + async start() { + if (!await QjzzdFun.chkSetBoosId()) { + console.log("真主党跑光了 今天无法清缴") + this.startTime = this.nextTime; + this.isStart = false; + return + } + let rankList:any = await Rank.list['qjzzd'].getRankListAll() + rankList = rankList.map(rank => { return { uid: rank.player.uid, valArr: [...rank.valArr] }; }); + + // G.gc.qjzzd.rankPrize + let _rankPrize = await QjzzdFun.getphPrize() + _rankPrize.forEach(conf => { + let players = rankList.slice(conf.ph[0] - 1, conf.ph[1]); + players.forEach((p, index) => { + EmailFun.addEmail({ + uid: p.uid, + type: 'system', + title: G.gc.qjzzd.email.titel, + content: G.gc.qjzzd.email.content, + prize: conf.prize, + contentInsertArr: [conf.ph[0] + index, ...p.valArr] + }); + }); + }); + + Rank.list.qjzzd.clear(); + + let nextBoss: string; + nextBoss = await QjzzdFun.getBoosId(); + + // let data = await G.mongodb.collection('scheduler').findOne({ type: this.id }); + + // if (!data) { + // nextBoss = G.gc.qjzzd.boss[0]; + // } else { + + // let index = G.gc.qjzzd.boss.findIndex(id => id == data.boss); + // if (index == -1 || index == G.gc.qjzzd.boss.length - 1) { + // nextBoss = G.gc.qjzzd.boss[0]; + // } else { + // nextBoss = G.gc.qjzzd.boss[index + 1]; + // } + // } + await this.db.updateOne({ type: this.id }, { $set: { lastRunTime: G.time, boss: nextBoss } }, { upsert: true }); + this.startTime = this.nextTime; + this.isStart = false; + } +} \ No newline at end of file diff --git a/src/public/scheduler/scheduler_slzd.ts b/src/public/scheduler/scheduler_slzd.ts new file mode 100644 index 0000000..6ab08a5 --- /dev/null +++ b/src/public/scheduler/scheduler_slzd.ts @@ -0,0 +1,111 @@ +import { EmailFun } from '../email'; +import { GHManage } from '../gonghui/manage'; +import { Rank } from '../rank/rank'; +import { RankSlzd1 } from '../rank/rank_slzd'; +import { Scheduler } from './scheduler'; +import { SlzdShared } from '../../shared/public/slzd'; + +export class SchedulerSlzdClean extends Scheduler { + id = 'slzdClean'; + type = 'week'; + time = G.gc.slzd.schedulerGroup; + name = '势力争夺清空数据'; + + async read() { + await this.ctorStartTime(); + this.isReady = false; + } + async start() { + await G.mongodb.collection('slzdGh').deleteMany({}); + await G.mongodb.collection('slzdUser').deleteMany({}); + + for (let i = 1; i <= 6; i++) { + let rank = Rank.list['slzd' + i] as Rank; + rank.clear(); + } + + await this.record(); + } +} + +export class SchedulerSlzdPrize extends Scheduler { + id = 'slzdPrize'; + type = 'week'; + time = G.gc.slzd.schedulerPrize; + name = '势力争夺结算'; + + async read() { + await this.ctorStartTime(); + this.isReady = false; + } + async start() { + // 获取数据库的特产库 + let stashObj:k_v = await SlzdShared.getStash() + for (let [fort, conf] of Object.entries(G.gc.slzd.forts)) { + await this.sendPrizeByFort(fort, conf, stashObj[fort]); + } + // 结算完成,更新特产库,可异步 + await SlzdShared.updateStash() + await this.record(); + } + async sendPrizeByFort(fort: string, conf: typeof G.gc.slzd.forts[''], stashIndex: number) { + // 特产库 + let stash = G.gc.slzd.stash[stashIndex] + let rankList = await (Rank.list['slzd' + fort] as RankSlzd1).getRankListAll(); + // 据点奖励组合特产库奖励 + Object.keys(conf.prize).forEach( (key) => { + conf.prize[key].prize.push(...stash.prize[key].prize) + }) + + // 对应排名分配奖励 + conf.prize.forEach(_conf => { + // 计算获取奖励的排名 + let ghs = rankList.slice(_conf.ph[0] - 1, _conf.ph[1]); + ghs.forEach((g, index) => { + this.sendPrizeByGhId(g.player.ghId, _conf.prize, G.gc.slzd.email_prize.title, G.gc.slzd.email_prize.content, [G.gc.slzd.forts[fort].name, _conf.ph[0] + index]); + }); + }); + + let others = rankList.slice(conf.prize.last().ph[1]); + if (others.length > 0) { + let luck = others.filter(r => r.valArr[0] >= stash.luckPrize.need).random(); + if (luck) { + this.sendPrizeByGhId(luck.player.ghId, stash.luckPrize.prize, G.gc.slzd.email_luck.title, G.gc.slzd.email_luck.content, [G.gc.slzd.forts[fort].name]); + others.removeOne(o => o.player.ghId == luck.player.ghId); + } + + let join = others.filter(o => o.valArr[0] >= conf.joinPrize.need); + join.forEach(v => { + this.sendPrizeByGhId(v.player.ghId, conf.joinPrize.prize, G.gc.slzd.email_join.title, G.gc.slzd.email_join.content, [G.gc.slzd.forts[fort].name]); + }); + } + } + async sendPrizeByGhId(ghid: string, prize: atn[], title: string, content: string, args: any[]) { + let gh = await GHManage.getGH(ghid); + if (!gh) return; + + for (let role of gh.data.players) { + + let multiple: number; + if (role.level == 1) multiple = 1.5; + else if (role.level == 2) multiple = 1.4; + else if (role.level == 3) multiple = 1.2; + else multiple = 1; + + let p = prize.map(_p => { + return { + ..._p, + n: Math.floor(_p.n * multiple) + }; + }); + EmailFun.addEmail({ + uid: role.uid, + type: 'system', + title: title, + content: content, + prize: p, + contentInsertArr: args + }); + } + } +} \ No newline at end of file diff --git a/src/public/scheduler/scheduler_wzry.ts b/src/public/scheduler/scheduler_wzry.ts new file mode 100644 index 0000000..ea809cf --- /dev/null +++ b/src/public/scheduler/scheduler_wzry.ts @@ -0,0 +1,574 @@ +import { random } from 'mathjs'; +import { wangzherongyao_fight_group } from '../../shared/protocols/wzry/PtlOpen'; +import { PublicShared } from '../../shared/public/public'; +import { ChatFun } from '../chat'; +import { EmailFun } from '../email'; +import { FightFun } from '../fight'; +import { Rank } from '../rank/rank'; +import { WangZheRongYaofun } from '../wzry'; +import { Scheduler, schedulerType } from './scheduler'; + + + +export class SchedulerWzryAutoBaoMing extends Scheduler { + id: schedulerType = 'wzry_autobaoming'; + time = G.gc.wangzherongyao.wangzhe.eventtime.autobaomingtime; + name = '王者荣耀自动报名'; // 本服定时器 + type = 'week'; + + async read() { + await this.ctorStartTime(); + this.isReady = false; + } + + async start() { + let _user = await G.mongodb.collection('playerInfo', 'wzry').find({ type: 'wzry', isauto: 1, isbm: 0 }).toArray(); + let zkey = PublicShared.getToWeek() + let prize = G.gc.wangzherongyao.wangzhe.bmprize + for (let index = 0; index < _user.length; index++) { + const element = _user[index]; + let toFight = await FightFun.getPlayerFightData(element.uid) + let resCallWzry = await G.clientCross.callApi('wzry/BaoMing', { data: toFight, zkey: zkey }); + if (!resCallWzry.isSucc) { + // 重复报名 + continue + } + prize.length > 0 && EmailFun.addEmail({ + uid: element.uid, + type: 'system', + title: G.gc.wangzherongyao.wangzhe.email.dldbaoming.title, + content: G.gc.wangzherongyao.wangzhe.email.dldbaoming.content, + prize: PublicShared.mergePrize(prize), + contentInsertArr: [] + }); + } + await G.mongodb.collection('playerInfo', 'wzry').updateMany({ type: 'wzry', isauto: 1 }, { $set: { isbm: 1 } }) + await this.record(); + } +} + +export class SchedulerWzryDlDstart extends SchedulerWzryAutoBaoMing { + id: schedulerType = 'wzry_dldstart'; + time = G.gc.wangzherongyao.wangzhe.eventtime.dldstart; + name = '王者荣耀进入大乱斗'; // 跨服定时器 + type = 'week'; + + async start() { + let _u = await G.mongodb.collection('wzry_fight').findOne({ zkey: await PublicShared.getToWeek() }) + if (_u) { + console.log("内网调时间导致重复执行,此次不执行") + await this.record() + return + } + let _fightUser = await G.mongodb.collection('wzry_user_cross').find({ zkey: await PublicShared.getToWeek() }).toArray() + if (!_fightUser || _fightUser.length <= 0) { + console.log("无玩家报名,此次不执行") + await this.record() + return + } + await G.mongodb.collection('wzry_fight').insertMany(_fightUser) + for (let index = 0; index < _fightUser.length; index++) { + const element = _fightUser[index]; + let data = { + valArr: [element.jifen], + ...element.data + } + Rank.list.wzryCross.addNew(data); + } + if (_fightUser.length < 256 && _fightUser.length > 0) { + let npcFight = await WangZheRongYaofun.addNpc(256 - _fightUser.length) + await G.mongodb.collection('wzry_fight').insertMany(npcFight) + npcFight.forEach(npc => Rank.list.wzryCross.addNew({ valArr: [0], ...npc.data })) + } + await this.record(); + } +} + +export class SchedulerWzryDlDjinji extends SchedulerWzryAutoBaoMing { + id: schedulerType = 'wzry_dldjinji'; + time = G.gc.wangzherongyao.wangzhe.eventtime.start256; + name = '王者荣耀大乱斗晋级 256'; + type = 'week'; + + async start() { + let _u = await G.mongodb.collection('wzry_fight').findOne({ zkey: await PublicShared.getToWeek(), deep: { $exists: true } }) + if (_u) { + console.log("内网调时间导致重复执行,此次不执行") + await this.record() + return + } + + let _zuanshiUser = await Rank.list.wzryCross.getRankListAll() + if (_zuanshiUser.length < 256) { + console.log("本期无玩家,此次不执行") + await this.record() + return + } + let _userList = [] + let prize = G.gc.wangzherongyao.wangzhe.jiangli.dld[0].p + for (let index = 0; index < _zuanshiUser.length; index++) { + const element = _zuanshiUser[index]; + _userList.push(element.player.uid) + if (element.player.uid.indexOf('npc_') != -1) { + if (_userList.length >= 256) break + continue + } + // 发送晋级钻石赛奖励 + prize.length > 0 && EmailFun.addEmail({ + uid: element.player.uid, + type: 'system', + title: G.gc.wangzherongyao.wangzhe.email.dldjinji.title, + content: G.gc.wangzherongyao.wangzhe.email.dldjinji.content, + prize: PublicShared.mergePrize(prize), + contentInsertArr: [] + }, true) + if (_userList.length >= 256) break + } + await G.mongodb.collection('wzry_fight').updateMany({ uid: { $in: _userList } }, { $set: { deep: 1 } }) + await wzrygroup(_userList) + await this.record(); + } +} + +export class SchedulerWzryZuanshiOne extends SchedulerWzryAutoBaoMing { + id: schedulerType = 'wzry_zuanshione'; + time = G.gc.wangzherongyao.wangzhe.eventtime.start256 + 60 * 1; + name = '王者荣耀 128 无需调时间'; + type = 'week'; + deep = 1 + max = 256 + + order(userlist) { + userlist.sort((a, b) => a.groupinfo.groupid - b.groupinfo.groupid || a.groupinfo.orderid - b.groupinfo.orderid) + return userlist + } + + async start() { + let deep = this.deep + let _u = await G.mongodb.collection('wzry_fight').find({ deep: deep }).toArray() + if (!_u || _u.length != this.max) { + console.log("内网调时间导致重复执行,此次不执行") + await this.record() + return + } + _u = this.order(_u) + let _pkNum = deep > 3 ? 5 : 3 + let [_tmpGroup, _order] = [[], deep * 16] + for (let index = 0; index < _u.length; index++) { + const element = _u[index]; + _tmpGroup.push(element) + if (_tmpGroup.length <= 1) continue + // 先记录所有的战斗结果后记录数据库 + let [_signlog, winArr] = [[], [0, 0]] + // 战斗双方uid + let [_uid1, _uid2, _winUid] = [_tmpGroup[0]['uid'], _tmpGroup[1]['uid'], _tmpGroup[0]['uid']] + for (let idx = 0; idx < _pkNum; idx++) { + let _tmpGroupCopy = JSON.parse(JSON.stringify(_tmpGroup)) + const result = FightFun.fight([_tmpGroupCopy[0]['data'], _tmpGroupCopy[1]['data']]) + let _fid = await G.mongodb.collection('wzry_fight_log').insertOne(result) + winArr[result.winSide] += 1 + // 每场胜利数据 + let _tmp = { + showtime: G.time + 300, + winuid: result.winSide == 0 ? _uid1 : _uid2, + winArr: winArr, + pkuser: [_uid1, _uid2], + fid: _fid.insertedId.toString() + } + _signlog.push(_tmp) + } + + // 胜场数确定输赢 + if (winArr[1] > winArr[0]) _winUid = _uid2 + + for (let index = 0; index < [_uid1, _uid2].length; index++) { + const element = [_uid1, _uid2][index]; + let _matchlog = _tmpGroup[index]?.matchlog || {} + // 胜场日志 + let _tmpData = {} + _tmpData[deep.toString()] = _signlog + Object.assign(_matchlog, _tmpData) + // let _setData = { matchlog: _matchlog, 'groupinfo.order': _order } + let _setData = { matchlog: _matchlog } + if (element == _winUid) _setData['deep'] = _tmpGroup[index].deep + 1 + + await G.mongodb.collection('wzry_fight').updateOne({ uid: element }, { $set: _setData }) + // _order += 1 + } + _tmpGroup = [] + } + await this.record(); + } +} + +export class SchedulerWzryZuanshiTwo extends SchedulerWzryZuanshiOne { + id: schedulerType = 'wzry_zuanshitwo'; + time = G.gc.wangzherongyao.wangzhe.eventtime.start256 + 2 * 60; + name = '王者荣耀 64 无需调时间'; + type = 'week'; + deep = 2 + max = 128 + + order(userlist) { + userlist.sort((a, b) => a.groupinfo.order - b.groupinfo.order) + return userlist + } +} + +export class SchedulerWzryZuanshiThree extends SchedulerWzryZuanshiOne { + id: schedulerType = 'wzry_zuanshithree'; + time = G.gc.wangzherongyao.wangzhe.eventtime.start64; + name = '王者荣耀 32'; + type = 'week'; + deep = 3 + max = 64 + + order(userlist) { + userlist.sort((a, b) => a.groupinfo.order - b.groupinfo.order) + return userlist + } +} + +export class SchedulerWzryZuanshifour extends SchedulerWzryZuanshiOne { + id: schedulerType = 'wzry_zuanshifour'; + time = G.gc.wangzherongyao.wangzhe.eventtime.start64 + 1 * 60; + name = '王者荣耀 16 无需调时间'; + type = 'week'; + deep = 4 + max = 32 + + order(userlist) { + userlist.sort((a, b) => a.groupinfo.order - b.groupinfo.order) + return userlist + } +} + +export class SchedulerWzryZuanshiSendPrize extends SchedulerWzryAutoBaoMing { + id: schedulerType = 'wzry_zuanshisendprize'; + time = G.gc.wangzherongyao.wangzhe.eventtime.zuanshisaisendprize; + name = '王者荣耀钻石赛结束发奖'; + type = 'week'; + deep = 2 // 可以获奖的deep + maxdeep = 5 // 此时最大的deep 避免重复执行 + max = 128 // 此时发奖人数 128 + typeprzie = 'zuanshi' + // deep对应奖励下标 + idx = { + 5: 0, + 4: 1, + 3: 2, + 2: 3, + + 6: 3, + 7: 2, + 8: 1, + 9: 0, + } + + async start() { + let deep = this.deep + let _user = await G.mongodb.collection('wzry_fight').find({ deep: { $gte: deep, $lte: this.maxdeep } }).toArray() + if (_user.length != this.max) { + console.log("内网调时间导致重复执行,此次不执行") + await this.record() + return + } + let _prizeCon = G.gc.wangzherongyao.wangzhe.jiangli.zuanshi + let _u = [] + for (let index = 0; index < _user.length; index++) { + const element = _user[index]; + _u.push(element.uid) + if (element.data.player.uid.indexOf('npc_') != -1) continue + if (element?.isprize?.[this.typeprzie]) continue + let prize = _prizeCon[this.idx[element.deep]].p + prize.length > 0 && EmailFun.addEmail({ + uid: element.uid, + type: 'system', + title: G.gc.wangzherongyao.wangzhe.email[this.typeprzie].title, + content: G.gc.wangzherongyao.wangzhe.email[this.typeprzie].content, + prize: PublicShared.mergePrize(prize), + // 八强 ["冠军","亚军","四强","八强"] + contentInsertArr: [this.idx[element.deep]] + }, true) + } + await G.mongodb.collection('wzry_fight').updateMany( + { uid: { $in: _u } }, + { $set: G.mongodb.createTreeObj({ key: `isprize.${this.typeprzie}`, val: 1 }) } + ) + await this.record(); + } +} + +export class SchedulerWzryWangZheone extends SchedulerWzryZuanshiOne { + id: schedulerType = 'wzry_wangzheone'; + time = G.gc.wangzherongyao.wangzhe.eventtime.start64 + 2 * 60; + name = '王者荣耀 8 无需调时间'; + type = 'week'; + deep = 5 + max = 16 + + order(userlist) { + userlist.sort((a, b) => a.groupinfo.order - b.groupinfo.order) + return userlist + } + + async start() { + super.start() + // 全区邮件 竞猜王者开启 // todo 全区邮件 + EmailFun.addQuanFuEmail({ + uid: "system", + type: 'system', + title: G.gc.wangzherongyao.wangzhe.email.jingcaikaiqi.title, + content: G.gc.wangzherongyao.wangzhe.email.jingcaikaiqi.content, + prize: [], + contentInsertArr: [] + }) + } +} + +export class SchedulerWzryWangZhetwo extends SchedulerWzryZuanshiOne { + id: schedulerType = 'wzry_wangzhetwo'; + time = G.gc.wangzherongyao.wangzhe.eventtime.start8; + name = '王者荣耀 4'; + type = 'week'; + deep = 6 + max = 8 + + order(userlist) { + userlist.sort((a, b) => a.groupinfo.order - b.groupinfo.order) + return userlist + } +} + +export class SchedulerWzryWangZhethree extends SchedulerWzryZuanshiOne { + id: schedulerType = 'wzry_wangzhethree'; + time = G.gc.wangzherongyao.wangzhe.eventtime.start8 + 1 * 60; + name = '王者荣耀 2 无需调时间'; + type = 'week'; + deep = 7 + max = 4 + + order(userlist) { + userlist.sort((a, b) => a.groupinfo.order - b.groupinfo.order) + return userlist + } +} + +export class SchedulerWzryWangZhefour extends SchedulerWzryZuanshiOne { + id: schedulerType = 'wzry_wangzhefour'; + time = G.gc.wangzherongyao.wangzhe.eventtime.start8 + 2 * 60; + name = '王者荣耀 1 无需调时间'; + type = 'week'; + deep = 8 + max = 2 + + order(userlist) { + userlist.sort((a, b) => a.groupinfo.order - b.groupinfo.order) + return userlist + } +} + +export class SchedulerWzryWangzheSendPrize extends SchedulerWzryZuanshiSendPrize { + id: schedulerType = 'wzry_wangzhesendprize'; + time = G.gc.wangzherongyao.wangzhe.eventtime.wanzhesaisendprize; + name = '王者荣耀王者赛结束发奖'; + type = 'week'; + deep = 6 // 可以获奖的deep + maxdeep = 9 // 此时最大的deep 避免重复执行 + max = 8 // 此时发奖人数 8 + typeprzie = 'wangzhe' +} + +export class SchedulerWzryWangzheWZZD extends SchedulerWzryAutoBaoMing { + id: schedulerType = 'wzry_wangzheWZZD'; + time = G.gc.wangzherongyao.wangzhe.eventtime.start8 + 4 * 60; + name = '王者荣耀王者之巅保存四强数据 无需调时间'; + type = 'week'; + + async start() { + let zkey = PublicShared.getToWeek() + let _r = await G.mongodb.collection('wzrywiner').findOne({ zkey: zkey }) + if (_r) { + console.log("本期数据已经保存,此次不执行") + await this.record() + return + } + + let _user = await G.mongodb.collection('wzry_fight').find({ deep: { $gte: 7 }, zkey: zkey }).toArray(); + if (_user.length != 4) { + console.log("王者赛4强还未决出,此次不执行") + await this.record() + return + } + let _rankList = [] + _user.sort((b, a) => a.deep - b.deep) + for (let index = 0; index < _user.length; index++) { + const element = _user[index]; + if (element.matchlog) delete element.matchlog + delete element._id + _rankList.push(element) + } + + let _setData = { + ranklist: _rankList, + ctime: G.time, + round: (await G.mongodb.collection('wzrywiner').countDocuments({}) || 0) + 1, + zkey: zkey + } + await G.mongodb.collection('wzrywiner').insertOne(_setData) + await this.record(); + } + +} + +export class SchedulerWzryjingcaiSendPrize extends SchedulerWzryAutoBaoMing { + id: schedulerType = 'wzry_jingcaiprize'; + time = G.gc.wangzherongyao.wangzhe.eventtime.wanzhesaisendprize; + name = '王者荣耀发送竞猜奖励'; // 本服定时器 + type = 'week'; + + async start() { + let wzzdres = await WangZheRongYaofun.getWzzd('') + if (!wzzdres.isSucc) { + console.log("王者赛4强还未决出,此次不执行") + await this.record() + return + } + let wzzd = wzzdres.res.wzzd + if (!wzzd || !wzzd.ranklist) return // 增加无数据容错 + let _rank = [] + for (let index = 0; index < wzzd.ranklist.length; index++) { + const element = wzzd.ranklist[index]; + _rank.push(element.uid) + // 全区跑马灯 本服定时器执行pmd // todo + // 对npc名字做一个处理 + // if (element.data.player.isNpc) element.data.player.name = element.data.player.nmae + let playName = index + 1 + ChatFun.newMsg({ + type: 'local', + msg: G.gc.pmd.tlsd_pmd, + time: G.time, + sender: 'system', + otherData: { + pmd: true, + args: [element.data.player.name, playName] + } + }) + } + let _jcAllNum = await (await G.clientCross.callApi('wzry/getJingCai', {})).res.num + let _users = await G.mongodb.collection('playerInfo', 'wzry').find({ type: 'wzry', 'isjingcai.totalmoney': { $gt: 0 } }).toArray() + let _chknum = await G.mongodb.collection('playerInfo', 'wzry').countDocuments({ type: 'wzry', 'isjingcai.guessuid': { $in: _rank } }) + for (let index = 0; index < _users.length; index++) { + const element = _users[index]; + if (!element.isjingcai || !element.isjingcai.guessuid) continue // 增加容错 + let idx = _rank.indexOf(element.isjingcai.guessuid) + if (idx != -1 && _chknum != 0) { + let xs = idx != 0 ? 0.3 : 0.4 + // @ts-ignore + let _n = parseInt(_jcAllNum * xs / _chknum) > _jcAllNum * 10 ? _jcAllNum * 10 : parseInt(_jcAllNum * xs / _chknum) + let prize = [{ "a": "attr", "t": "rmbmoney", "n": _n }] + prize.length > 0 && EmailFun.addEmail({ + uid: element.uid, + type: 'system', + title: G.gc.wangzherongyao.wangzhe.email.jingcai.title, + content: G.gc.wangzherongyao.wangzhe.email.jingcai.content, + prize: PublicShared.mergePrize(prize), + contentInsertArr: [wzzd.ranklist[idx].data.player.name, idx] + }); + } else { + let prize = G.gc.wangzherongyao.wangzhe.email.jingcaifail.prize + prize.length > 0 && EmailFun.addEmail({ + uid: element.uid, + type: 'system', + title: G.gc.wangzherongyao.wangzhe.email.jingcaifail.title, + content: G.gc.wangzherongyao.wangzhe.email.jingcaifail.content, + prize: PublicShared.mergePrize(prize), + contentInsertArr: [] + }) + } + } + await this.record(); + } +} + +export class SchedulerWzryendDel extends SchedulerWzryAutoBaoMing { + id: schedulerType = 'wzry_end'; + time = 604500; // 周天23.55 本服执行 + name = '王者荣耀结束清除数据'; + type = 'week'; + + async start() { + await WangZheRongYaofun.delGroup() + await this.record(); + } +} + + +export class SchedulerWzrycrossEmail extends SchedulerWzryAutoBaoMing { + id: schedulerType = 'crosseamil_wzry'; + time = 79200; // 每五分钟检测 本服执行 将跨服邮件拉到本服 每天十点运行 + name = '拉跨服邮件到本服定时器'; + type = 'day'; + + async start() { + let _res = await G.clientCross.callApi('wzry/WzFightData', { uid: '', isemail: true }); + if (_res.isSucc && Object.keys(_res.res.crossEmail).length) { + let crossEmail = _res.res.crossEmail + let delEmail = [] + for (let index = 0; index < crossEmail.length; index++) { + const element = crossEmail[index]; + let _prize = element?.prizeData?.prize || [] + if (element?.prizeData) delete element.prizeData + element["prize"] = _prize + if (element.uid == "system") { + delEmail.push(element._id) + delete element._id + EmailFun.addQuanFuEmail(element) + + } else if ( await G.redis.hGet('player:uids', element.uid)) { + delEmail.push(element._id) + delete element._id + EmailFun.addEmail(element) + } + } + await G.clientCross.callApi('wzry/UpdateFight', { uid: '', isdelemail: { isdel: true, email: delEmail } }) + } + await this.record(); + } +} + +// 分组 +export async function wzrygroup(userList) { + let _u = shuffle(userList) + let [_group, _orderid, order] = [1, 1, 1] + for (let index = 0; index < _u.length; index++) { + const element = _u[index]; + let _tmp: wangzherongyao_fight_group['groupinfo'] = { + groupid: _group, + orderid: _orderid, + order: order + } + _orderid += 1 + order += 1 + if (_orderid > 8) { + _orderid = 1 + _group += 1 + } + await G.mongodb.collection('wzry_fight').updateOne({ uid: element }, { $set: { groupinfo: _tmp } }) + } + return _u; +} + +export function shuffle(array: []) { + let copy = [], + n = array.length, + i; + // 如果还剩有元素。。 + while (n) { + // 随机选取一个元素 + i = Math.floor(Math.random() * n--); + // 移动到新数组中 + copy.push(array.splice(i, 1)[0]); + } + return copy; +} \ No newline at end of file diff --git a/src/public/scheduler/scheduler_zhanling.ts b/src/public/scheduler/scheduler_zhanling.ts new file mode 100644 index 0000000..38f6db5 --- /dev/null +++ b/src/public/scheduler/scheduler_zhanling.ts @@ -0,0 +1,38 @@ +import { PublicShared } from '../../shared/public/public'; +import { Scheduler, schedulerType } from './scheduler'; + + +export class SchedulerZhanLing extends Scheduler { + id: schedulerType = 'zhanling'; + name = '战令'; + async read() { + // ev + if (PublicShared.getOpenServerDay() < G.gc.zhanling.eventOpen.day) { + this.startTime = PublicShared.getToDayZeroTime(G.openTime) + G.gc.zhanling.eventOpen.day * 24 * 3600; + } else { + let data = await this.db.findOne({ type: this.id }); + if (!data) { + // 开服时间整除战令周期 + let round = Math.floor(PublicShared.getOpenServerDay() / G.gc.zhanling.eventOpen.day) + this.db.updateOne({ type: this.id }, { $set: { lastRunTime: G.time, round: round } }, { upsert: true }); + } + + if (!data || G.time > PublicShared.getToDayZeroTime(data.lastRunTime) + 24 * 3600 * G.gc.zhanling.eventOpen.day) { + this.startTime = PublicShared.getToDayZeroTime() + 24 * 3600 * G.gc.zhanling.eventOpen.day; + + } else { + this.startTime = PublicShared.getToDayZeroTime(data.lastRunTime) + 24 * 3600 * G.gc.zhanling.eventOpen.day; + } + } + this.isReady = false; + } + async start() { + // 开服时间整除战令周期 + let round = Math.floor(PublicShared.getOpenServerDay() / G.gc.zhanling.eventOpen.day) + await this.db.updateOne({ type: this.id }, { $set: { lastRunTime: G.time, round: round } }, { upsert: true }); + this.startTime = PublicShared.getToDayZeroTime() + 24 * 3600 * G.gc.zhanling.eventOpen.day; + this.isStart = false; + + G.mongodb.collection('zhanling').updateMany({ type: 'round' }, { $set: { data: {} } }); + } +} \ No newline at end of file diff --git a/src/public/servertooltcp.ts b/src/public/servertooltcp.ts new file mode 100644 index 0000000..a249799 --- /dev/null +++ b/src/public/servertooltcp.ts @@ -0,0 +1,31 @@ +import {boolean} from 'mathjs'; +import request, {HttpVerb} from 'sync-request'; + + +export class ServerToolFun { + /** + * 向server_tool服务器发起post请求 + * + * @param {string} path + * @param {any} body + * @param method + * @returns { Promise<{isSucc: boolean, res?: any, err?: any}> } + */ + static async postServer(path, body, method: HttpVerb = "POST") { + console.log('gametool post: ', arguments); + let url = `http://server-tool:7456/${path}` + // let url = `http://localhost:7432/${path}` // 测试url + + try { + let _option = { + headers: { + 'content-type': 'application/json' + }, + body: JSON.stringify(body) + } + return await request(method, url, _option); + } catch (err) { + return { isSucc: false, err: '请求错误' } + } + } +} \ No newline at end of file diff --git a/src/public/shiwu.ts b/src/public/shiwu.ts new file mode 100644 index 0000000..f2a879f --- /dev/null +++ b/src/public/shiwu.ts @@ -0,0 +1,172 @@ +import { ObjectId } from 'mongodb'; +import { ApiCall } from 'tsrpc'; +import { CollectionShiwu } from '../module/collection_shiwu'; +import { PublicShared } from '../shared/public/public'; +import { HeroFun } from './hero'; +import { call } from './player'; + +type shiwuType = CollectionShiwu; +type shiwuChange = Partial>; + +export class ShiwuFun { + static get _conf() { + return G.gc.shiwucom.base; + } + /**获取饰物 */ + static async getShiwu(call: ApiCall, _id: string): Promise; + static async getShiwu(call: ApiCall, _id: string[]): Promise; + static async getShiwu(call: ApiCall, _id: string | string[]) { + if (typeof _id == 'string') { + return await G.redis.get('shiwu', call.uid, _id); + } else { + let ss = await G.mongodb.collection('shiwu').find({ uid: call.uid, _id: { $in: _id.map(v => G.mongodb.conversionId(v)) } }).toArray(); + return ss.map(v => G.mongodb.conversionIdObj(v)); + } + + } + /**修改饰物属性 */ + static async changeShiwuAttr(call: call, shiwu: Pick & Partial>, change: shiwuChange, changeHero = true) { + + //穿戴饰物时该装备穿戴在另一个英雄身上 + if (change.wearId != undefined && shiwu.wearId && shiwu.wearId != change.wearId && changeHero) { + let takeHero = await G.redis.get('hero', call.uid, shiwu.wearId); + if (takeHero) { + let _shiwu = Object.assign({}, takeHero.shiwu); + let _pos = Object.keys(_shiwu).filter(pos => _shiwu[pos]._id == shiwu._id)[0]; + + if (_pos) { + _shiwu[_pos] = null; + delete _shiwu[_pos]; + await HeroFun.changeHeroAttr(call, takeHero, { shiwu: _shiwu }); + } + } + } + + Object.assign(shiwu, change); + + //属性发生变化并且穿戴在英雄身上时 + if (change.wearId == undefined && shiwu.wearId) { + let takeHero = await G.redis.get('hero', call.uid, shiwu.wearId); + if (takeHero) { + let _shiwu = Object.assign({}, takeHero.shiwu); + let _pos = Object.keys(_shiwu).filter(pos => _shiwu[pos]._id == shiwu._id)[0]; + + if (_pos) { + _shiwu[_pos] = this.fmtHeroShiwu(shiwu as shiwuType); + await HeroFun.changeHeroAttr(call, takeHero, { shiwu: _shiwu }); + } + } + } + + for (let k in change) { + G.redis.set('shiwu', call.uid, shiwu._id, k as keyof shiwuType, change[k]); + } + G.mongodb.collection('shiwu').updateOne({ uid: call.uid, _id: new ObjectId(shiwu._id) }, { $set: { ...change } }); + call.addEventMsg('msg_s2c/ShiwuChange', shiwu._id, change); + } + /**随机饰物基础属性 */ + static randomJichu(shiwu: Pick): shiwuType['jichu'] { + let conf = G.gc.shiwu[shiwu.shiwuId]; + let jichu: shiwuType['jichu'] = []; + let buffKeys = Object.keys(conf.buff); + + for (let key of buffKeys) { + jichu.push(key); + jichu.push(Math.floor(PublicShared.randomNum(conf.buff[key][0], conf.buff[key][1]) * this._conf.jichu_colour[shiwu.colour])); + } + + return jichu; + } + /**随机饰物附加属性 */ + static randomFujiaAll(shiwu: Pick & { shiwuId?: string; }, lockArr: number[] = []) { + let lv = G.gc.shiwu[shiwu?.shiwuId].lv || 1; + let index = G.gc.shiwucom.base.fujia_colour.buffRandom.findIndex(v => lv >= v.range[0] && lv <= v.range[1]); + // 附加属性颜色超过 5 大于等 饰物颜色减1 (随机最大属性池,取其最大buff) + // let allOrange = shiwu.fujia.filter(f => f?.colour >= 5).length >= shiwu.colour - 1; + let allOrange = shiwu.fujia.filter(f => f?.colour >= 5).length >= shiwu.fujia.length; + + for (let num = 0; num < shiwu.colour - 1; num++) { + let fjsx = shiwu.fujia[num]; + + // if (!fjsx) { + // // 按等级筛选 随机属性池 + // shiwu.fujia[num] = { + // ...this.randomFujia(index) + // }; + // } else { + // // 无特殊条件 附加颜色超过或等于5 || 有特殊条件 但被锁定 // 此两种情况不随机 + // if (!allOrange && fjsx.colour >= 5) continue; + // if (allOrange && lockArr.includes(num)) continue; + + // shiwu.fujia[num] = { + // ...this.randomFujia(allOrange ? G.gc.shiwucom.base.fujia_colour.buffRandom.length - 1 : index, allOrange) + // }; + // } + + // 普通洗练 + if (!allOrange || !fjsx) { + if (fjsx && fjsx.colour >= 5) continue + // 按等级筛选 随机属性池 + shiwu.fujia[num] = { + ...this.randomFujia(index) + }; + } else { + // 无特殊条件 附加颜色超过或等于5 || 有特殊条件 但被锁定 // 此两种情况不随机 + if (!allOrange && fjsx.colour >= 5) continue; + if (allOrange && lockArr.includes(num)) continue; + + shiwu.fujia[num] = { + ...this.randomFujia(index, allOrange) + }; + } + } + } + /**随机饰物专属属性 */ + static randomZhuanshu(shiwu: Pick) { + if (shiwu.colour < 5) return; + if (!shiwu.zhuanshu && (PublicShared.randomNum(1, 1000) < G.gc.shiwu[shiwu.shiwuId].zhuanshu)) return; + + let isSkill = PublicShared.randomNum(1, 10) <= this._conf.chongzhurate.skill_zhuanshu; + if (!isSkill) { + var { p, ...buff } = this._conf.buff_zhuanshu.random(); + var buffKey = Object.keys(buff)[0]; + var buffVal = buff[buffKey]; + } + + shiwu.zhuanshu = { + hero: this._conf.hero_zhuanshu.random().toString(), + buff: isSkill ? null : [buffKey, buffVal], + skill: isSkill ? this._conf.skill_zhuanshu.random().id : '', + }; + } + /**格式化为英雄穿戴的饰物数据 */ + static fmtHeroShiwu(shiwu: shiwuType) { + let { uid, wearId, ...ops } = shiwu; + return ops; + } + static randomFujia(index: number, max = false) { + let buff = (this._conf.fujia_colour.buffRandom[index].buff as k_v<[number, number]>[]).random(); + let buffKey = Object.keys(buff)[0]; + let buffVal = buff[buffKey]; + let multiplyNum = buffVal[0].toString().split('.').length > 1 ? 10000 : 1; + // 是否取随机buff最大值 + let val = max ? buffVal[1] : PublicShared.randomNum(buffVal[0] * multiplyNum, buffVal[1] * multiplyNum) / multiplyNum; + val = val > buffVal[1] ? buffVal[1] : val + let colour: number; + let mul = (val - buffVal[0]) / (buffVal[1] - buffVal[0]); + + for (let c of this._conf.fujia_colour.color) { + if (mul < c.range[0]) break; + colour = c.color; + if (mul < c.range[1]) break; + } + + return { + colour: colour || this._conf.fujia_colour.color[0].color, + buffKey: buffKey, + buffVal: val + }; + } +} \ No newline at end of file diff --git a/src/public/shop.ts b/src/public/shop.ts new file mode 100644 index 0000000..0a6966b --- /dev/null +++ b/src/public/shop.ts @@ -0,0 +1,67 @@ +import { ApiCall } from 'tsrpc'; +import { CollectionShop } from '../module/collection_shop'; +import { ResOpen, shopItem } from '../shared/protocols/shop/PtlOpen'; +import { PublicShared } from '../shared/public/public'; +import { ShiwuFun } from './shiwu'; + +type shopData = ResOpen; +type changeData = { + [k in keyof shopData]: shopData[k] +}; + +export class ShopFun { + static changeType: Partial; + static getShopItem(shops: shopItem[]): shopItem { + let item = PublicShared.randomDropAny(shops); + + if (item?.a == 'shiwu') { + + let shiwu: any = { + shiwuId: item.t.toString(), + colour: item.colour, + fujia: [] + }; + shiwu.jichu = ShiwuFun.randomJichu(shiwu); + ShiwuFun.randomFujiaAll(shiwu); + ShiwuFun.randomZhuanshu(shiwu); + + return { + ...item, + shiwuBuff: shiwu + }; + } + + return item; + } + /**从商品掉落组中获取商品 */ + static getShopItems(shopId: string | number, lv: number) { + let shopItems: shopItem[] = []; + + for (let id of G.gc.shop[shopId].shopItems) { + let shops = G.gc.shopItem[id].filter(si => lv >= si.lv[0] && lv <= si.lv[1]); + let item = this.getShopItem(shops); + item && shopItems.push(item); + } + let sDay = PublicShared.getOpenServerDay(); + return shopItems.filter(s => s.openDay <= sDay); + } + /**修改商店数据 */ + static async changeShopData(rId: string, shopId: string, shopData: Partial, change: Partial) { + + Object.assign(shopData, change); + + for (let k in change) { + G.redis.set('shop', rId, shopId, k as keyof CollectionShop, change[k]); + } + } + + /**修改工会商店数据 */ + static async changeGHShopData(call: ApiCall, shopId: string, shopData: Partial, change: Partial) { + + Object.assign(shopData, change); + + for (let k in change) { + G.redis.set('shop', call.conn.gud.ghId, shopId, k as keyof CollectionShop, change[k]); + } + } +} \ No newline at end of file diff --git a/src/public/sign.ts b/src/public/sign.ts new file mode 100644 index 0000000..f73eb68 --- /dev/null +++ b/src/public/sign.ts @@ -0,0 +1,114 @@ +import { ApiCall } from 'tsrpc'; +import { hongdianVal } from '../shared/protocols/hongdian/PtlGet'; +import { ctype } from '../shared/protocols/sign/type'; +import { PublicShared } from '../shared/public/public'; +import { PlayerFun } from './player'; + + +export class SignFun { + /**获取配置信息 */ + static async getCon() { + let _con = G.gc.qiandao + return _con + } + /**获取宝箱配置 */ + static async getBoxCon() { + let _con = G.gc.qiandaocom + return _con + } + + /**初始数据 */ + static async initData() { + let _nt = G.time + let _r = { + refreshtime: _nt, + gotarr: [], + login: 1, + logintime: _nt, + boxgotarr: [] + } + return _r + } + + /**获取签到信息 */ + static async getInfo(uid: string, where: { ctype: string }) { + let info: {} = await PlayerFun.getAttrOne(uid, where) + const _con = await this.getCon() + let _isSet = 0 + let _nt = G.time + if (!info) { + info = await this.initData() + info["key"] = "1" + _isSet = 1 + } + + // 是否到下月 + let _diff = PublicShared.getDiff(info["refreshtime"]) + if (_diff > Object.keys(_con[info["key"]]).length) { + Object.assign(info, await this.initData()) + info["key"] = await this.getNewMonth(info) + _isSet = 1 + } + + // 设置数据 + if (_isSet == 1) { + this.setInfo(uid, info) + } + return info + } + + /**更换月份key */ + static async getNewMonth(info) { + const _con = await this.getCon() + let _keys = Object.keys(_con) + let _idx = _keys.indexOf(info.key) + let _res: string + if (_idx + 1 >= _keys.length) { + _res = _keys[0] + } else { + _res = _keys[_idx + 1] + } + return _res + } + + /**更新登录信息 按照实际登录来算*/ + static async updateLogin(uid: string) { + let _info = await this.getInfo(uid, { ctype: ctype }) + if (!PublicShared.chkSameDate(_info["logintime"], G.time)) { + _info["login"] += 1 + _info["logintime"] = G.time + this.setInfo(uid, _info) + } + } + + /**设置数据 */ + static async setInfo(uid: string, data: {}) { + PlayerFun.setAttr(uid, { ctype: ctype }, data) + } + + /**红点 */ + static async getHongDian(call: ApiCall) { + let _res: hongdianVal = { + show: false + } + + let [isOpen, tips] = PublicShared.getOpenCond(call, "zc_img6") + if (!isOpen) return _res; + + let info = await this.getInfo(call.uid, { ctype: ctype }) + // 登录奖励 + if (info["login"] > info["gotarr"].length) { + _res.show = true + return _res + } + // 宝箱奖励 + const _boxCon = await this.getBoxCon() + for (let i in _boxCon) { + if (parseInt(i) <= info["login"] && info["boxgotarr"].indexOf(i) == -1) { + _res.show = true + return _res + } + } + return _res + } +} \ No newline at end of file diff --git a/src/public/tanxian.ts b/src/public/tanxian.ts new file mode 100644 index 0000000..6781739 --- /dev/null +++ b/src/public/tanxian.ts @@ -0,0 +1,40 @@ +import { ApiCall } from 'tsrpc'; +import { ResOpen } from '../shared/protocols/tanxian/PtlOpen'; +import { TeQuanFun } from './tequan'; + +type dataChange = Partial; + +export class TanXianFun { + /**修改探险数据 */ + static async changeData(call: ApiCall, change: dataChange) { + + G.mongodb.collection('tanxian').updateOne({ uid: call.uid }, { $set: { ...change } }); + + for (let k in change) { + G.redis.set('tanxian', call.uid, k as any, change[k]); + } + } + /**获取探险数据 */ + static async getData(call: ApiCall, cache = true) { + if (cache && await G.redis.type('tanxian', call.uid) != null) return await G.redis.get('tanxian', call.uid); + let { _id, uid, ...data } = await G.mongodb.collection('tanxian').findOne({ uid: call.uid }); + if (!data.eventTime) { + data.eventTime = G.time; + G.mongodb.collection('tanxian').updateOne({ uid: call.uid }, { $set: { eventTime: G.time } }); + } + + await G.redis.set('tanxian', call.uid, data); + return data; + } + /**获取快速探险次数 */ + static async getFastGuaJiNum(call: ApiCall) { + let num = G.gc.tanxian_com.fastGuaJiNum + await TeQuanFun.getTxFreeNum(call); + + if (call.conn.gud.vip) { + num += G.gc.tanxian_com.fastGuaJiNumAddBuyVip[call.conn.gud.vip] || G.gc.tanxian_com.fastGuaJiNumAddBuyVip.last(); + } else { + num += G.gc.tanxian_com.fastGuaJiNumAddBuyVip[call.conn.gud.vip]; + } + return num; + } +} \ No newline at end of file diff --git a/src/public/task.ts b/src/public/task.ts new file mode 100644 index 0000000..902a7ef --- /dev/null +++ b/src/public/task.ts @@ -0,0 +1,812 @@ +import {ApiCall, ApiReturn} from "tsrpc"; +import {HongDianChange} from "../api_s2c/hongdian/fun"; +import {taskType} from "../shared/protocols/task/type"; +import {PublicShared} from "../shared/public/public"; +import {PeijianFun} from "./peijian"; +import {manager} from "./taskclass"; + +let taskDict = {}; +const SHUJUKU = "task"; + +export class TaskFun { + /**获取所有任务stype 注册监听使用 */ + static async getStypes() { + let _con = G.gc.task; + let _r = []; + for (let index = 0; index < Object.keys(_con).length; index++) { + const element = _con[Object.keys(_con)[index]]; + let _values = Object.values(element); + _values.forEach(ele => { + if (_r.indexOf(ele["stype"]) == -1) { + _r.push(ele["stype"]); + } + }); + } + return _r; + } + + static async addeventHanshu(index) { + let _name = "Class_task_" + index; + if (taskDict[_name]) return 1; + let _tmp; + try { + _tmp = new (manager)[_name](); + } catch { + return 0; + } + taskDict[index] = _tmp; + return 2; + } + + /**注册监听 */ + static async addevent() { + let _stypes = [1, 999, 100, 101, 102, 103, 104, 105]; + for (let index = 0; index < _stypes.length; index++) { + const element = _stypes[index]; + let _tmp = await this.addeventHanshu(element); + } + + for (let index = 106; index < 900; index++) { + let _tmp = await this.addeventHanshu(index); + if (_tmp != 2) break; + } + } + + /** + * + * @param type 任务类型 + * @returns 相关类型任务的所有配置 + */ + static async getTaskConsByType(type: number) { + let _taskCon: {}; + try { + _taskCon = G.gc.task[type]; + } catch { + _taskCon = {}; + console.log(`====== task type getcon error task >>> >>> ${type}`); + } + return _taskCon; + } + + /** + * + * @param type + * @param taskid + * @returns 获取任务配置 + */ + static async getTaskConByType(type: number, taskid: number) { + let _taskCon: {}; + try { + _taskCon = G.gc.task[type][taskid]; + } catch { + _taskCon = {}; + console.log(`====== task getcon error taskid >>> >>> ${taskid}`); + } + return _taskCon; + } + + /** + * + * @param uid + * @param stype 任务stype + * @param val 任务完成值 + * @param chkCall 检测回调 + * @param chkval 任务条件检测值 + * @param isinc 是否累加 + * 设置某种任务类型的nval + */ + static async setTaskVal(call: ApiCall, stype: number, val: number, chkCall: Function, chkval: number = 0, isinc: number = 0, alchangeVal: Function, arg) { + let uid = call.uid; + // let _unFinish = await this.getFinishByStype(call, stype, { finish: 0, "$where": "return this.pval > this.nval" }); + let _unFinish = await this.getFinishByStype(call, stype, {finish: 0}); + _unFinish = _unFinish.filter(x => x.pval > x.nval) + if (_unFinish.length == 0) return; + for (let index = 0; index < _unFinish.length; index++) { + const _task = _unFinish[index]; + let _taskCon = await this.getTaskConByType(_task["type"], _task["taskid"]); + if (!_taskCon || Object.keys(_taskCon).length == 0) { + // 策划改了任务 找不到 自动删除任务 + await G.mongodb.collection(SHUJUKU).deleteMany({uid: call.uid, taskid: _task["taskid"]}); + continue + } + ; + + let _pval = _taskCon["pval"]; + let _nval = _task["nval"]; + if (_nval >= _pval) continue; + // 不符合任务要求 + if (!await chkCall(_taskCon["cond"], chkval, arg)) continue; + + // 根据需求改写 + val = await alchangeVal(call, _taskCon, val, arg); + + let _resVal: number; + // 累加型 + if (isinc == 1) { + _resVal = _nval + val; + } else { // 覆盖型 + if (val <= _nval) { + continue; + } else { + _resVal = val; + } + } + + // 任务值上限检测 + _resVal = _resVal > _pval ? _pval : _resVal; + // 设置任务 + let _setData = {nval: _resVal}; + let _where = {taskid: _task["taskid"]}; + await this.setTask(uid, _where, _setData); + } + } + + /** + * 检测任务刷新 + */ + static async refreshTask(call: ApiCall) { + let _refre = Object.keys(await this.getDayReSetType()); + for (let index = 0; index < _refre.length; index++) { + const _ttype = _refre[index]; + await this.reSetTaskByType(call, parseInt(_ttype)); + } + } + + /** + * 重置任务类型 + */ + static async getDayReSetType() { + let _r = { + 1: "day", // 每日任务 + // 2: "week" // 主线任务 + // 3: "week" // 成就任务 + 4: "baoxiang" // 每日任务的宝箱 + }; + return _r; + } + + /** + * 重置任务 + */ + static async reSetTaskByType(call: ApiCall, ttype: number) { + let _dayType = await this.getDayReSetType(); + if (!_dayType[ttype]) { + return; + } + // 重置每日任务 + if (ttype == 1 || ttype == 4) { + let _zero = PublicShared.getToDayZeroTime(G.time); + let _where = {retime: {$gte: _zero, $lte: _zero + 24 * 60 * 60 - 1}, type: ttype}; + let _tmp = await this.getUserTaksList(call.uid, _where); + if (_tmp.length == 0) await this.resetDailyTask(call, ttype); + } + } + + /** + * 重置每日任务 + */ + static async resetDailyTask(call: ApiCall, type: number = 1) { + await this.delTasks(call.uid, {type: type}); + // 该限制改到红点检测判断,避免此处注释后,红点检测与账号创建初始化任务并发。 + // if (PublicShared.chkSameDate(call.conn.gud.cTime, G.time)) return; + let _taskCons = await this.getTaskConsByType(type); + let _taskInfo = []; + for (let _taskid in _taskCons) { + let task = _taskCons[_taskid]; + // 起步任务 + if (task.pretask == 0) { + let _temp = await this.fmtTask(call, task); + _taskInfo.push(_temp); + } + } + await this.insertTasks(call, _taskInfo); + } + + /** + * + * @param call + * @param taskcon + * @returns 任务初始完成值 + */ + static async getTaskNval(call: ApiCall, taskcon) { + let _resVal: number; + try { + _resVal = await taskDict[taskcon.stype].getInitVal(call, taskcon); + } catch { + _resVal = 0; + } + return _resVal; + } + + /** + * 获取所有相关 stype 的任务 + * @param stype 任务stype + */ + static async getFinishByStype(call: ApiCall, stype: number, where: {}) { + // 任务刷新 + await this.refreshTask(call); + Object.assign(where, {stype: stype}); + let _r = await this.getUserTaksList(call.uid, where); + return _r; + } + + /** + * 获取所有相关 ttype 的任务 + * @param ttype 任务type + */ + static async getFinishByTtype(call: ApiCall, ttype: number[], where: {}, ischk = 0) { + // 任务刷新 + if (ischk == 1) await this.refreshTask(call); + let _r = {}; + let _w = {}; + // 未完成任务的 type 也返回 + const _finishType = [1, 4]; + // Object.assign(where, { type: { $in: ttype } }) + for (let index = 0; index < ttype.length; index++) { + const _type = ttype[index]; + Object.assign(_w, {type: _type, ...where}); + if (_finishType.indexOf(_type) != -1) { + delete _w["finish"]; + } + let _tmp = await this.getUserTaksList(call.uid, _w); + _r[_type] = _tmp; + } + return _r; + } + + /** + * 格式化任务数据 + * @param task 任务配置 + */ + static async fmtTask(call: ApiCall, task: { stype: number, type: number, id: number, pval: number; }) { + let _nt = G.time; + let _r: taskType = { + stype: task.stype, + type: task.type, + taskid: task.id, + pval: task.pval, + nval: await this.getTaskNval(call, task), + finish: 0, + lasttime: _nt, + retime: _nt, + uid: call.uid + }; + return _r; + } + + /** + * 检测生成后续任务 + * @param uid + * @param _follow 后续任务id + * @param _task 任务数据 + * @returns 新的任务 + */ + static async setTaskInfo(call: ApiCall, _follow: number, _task: { type: number; }) { + let newTask: taskType; + // 新任务配置 + let _ftaskCon = await TaskFun.getTaskConByType(_task["type"], _follow); + if (Object.keys(_ftaskCon).length > 0) { + // @ts-ignore + newTask = await TaskFun.fmtTask(call, _ftaskCon); + // 插入任务 + await TaskFun.insertTasks(call, [newTask]); + } + if (newTask["_id"]) delete newTask["_id"]; + return newTask; + } + + /** + * 生成所有任务 + */ + static async generateAllTask(call: ApiCall) { + let _r = await G.mongodb.collection(SHUJUKU).findOne({uid: call.uid}); + if (_r) return; + let _taskInfo = []; + let _con = G.gc.task; + for (let _type in _con) { + for (let _taskid in _con[_type]) { + let task = _con[_type][_taskid]; + // 起步任务 + if (task.pretask == 0) { + let _temp = await this.fmtTask(call, task); + _taskInfo.push(_temp); + } + } + } + + await this.insertTasks(call, _taskInfo); + } + + /**生成指定类型任务-初始化 */ + static async reInitTask(call: ApiCall, type: string) { + // 查询类型任务是否存在 + let _r = await G.mongodb.collection(SHUJUKU).findOne({uid: call.uid, type: ~~type}); + let _taskInfo = []; + if (!_r) { + let _con = G.gc.task; + // 数据不存在,未初始化,执行初始化 + for (let _taskid in _con[type]) { + let task = _con[type][_taskid]; + if (task.pretask == 0) { + let _temp = await this.fmtTask(call, task) + _taskInfo.push(_temp); + } + } + } + await this.insertTasks(call, _taskInfo); + return _taskInfo; + } + + /** + * 获取任务列表 + */ + static async getUserTaksList(uid: string, where: {}) { + // type : 1 主线 2 成就 3 每日 + Object.assign(where, {uid: uid}); + let _taskInfo = await G.mongodb.collection(SHUJUKU).find(where).toArray(); + _taskInfo.forEach(e => { + if (e._id) delete e._id; + }); + return _taskInfo; + } + + /** + * 删除相关任务 + */ + static async delTasks(uid: string, where: { type: number; }) { + Object.assign(where, {uid: uid}); + await G.mongodb.collection(SHUJUKU).deleteMany(where); + } + + /** + * 批量插入任务 + * @param call + * @param _tasks + */ + static async insertTasks(call: ApiCall, _tasks: taskType[]) { + if (_tasks.length == 0) { + return; + } + await G.mongodb.collection(SHUJUKU).insertMany(_tasks); + + _tasks.map(i => { + if (i.type == 2) { + call.conn.sendMsg('msg_s2c/TaskChange', i) + } + }) + + // await G.mongodb.collection(SHUJUKU).updateMany( + // { uid: uid }, + // _tasks + // ); + } + + /** + * 设置单个任务值 + */ + static async setTask(uid: string, where: {}, setData: {}) { + if (Object.keys(setData).length == 0) { + return; + } + Object.assign(where, {uid}); + setData = {$set: setData}; + await G.mongodb.collection(SHUJUKU).updateOne(where, setData); + } + + /**红点 */ + static async getHongDian(call: ApiCall) { + let _res = { + show: false, + val: { + tasktypes: [] + } + }; + // 如果是创建当天,不跑红点刷新 + if (!PublicShared.chkSameDate(call.conn.gud.cTime, G.time)) await this.refreshTask(call) + const _ttype = { + 1: [1, 4], // 每日 + 2: [2], // 主线任务 + 3: [3] // 成就 删掉 type 5 的成就宝箱任务 + }; + for (let index = 0; index < Object.keys(_ttype).length; index++) { + const element = Object.keys(_ttype)[index]; + if ((element == "1" || element == "3") && call.conn.gud.lv < 7) continue; + let _values: number[] = _ttype[element]; + let _where: {} = {uid: call.uid, type: {$in: _values}, finish: 0}; + + let taskArr = await G.mongodb.collection(SHUJUKU).find(_where).toArray(); + let _tmp = taskArr.filter(x => x.pval <= x.nval) + if (_tmp.length) { + _res.show = true; + _res.val.tasktypes.push(element); + } + } + return _res; + } +} + +export class TaskAllEmitFun { + // 所有任务监听执行 + static async allEmit(node: { + call: ApiCall; + return: ApiReturn; + }) { + if (node.call.service.name == 'sign/GetPrize' && node.return.isSucc) { + // 签到一次 + G.emit("Class_task_100", 'Class_task_100', node.call, 1, 0); + } + if (node.call.service.name == 'hero/LvUp' && node.return.isSucc) { + // 升级一次干部 + G.emit("Class_task_101", 'Class_task_101', node.call, 1, 0); + } + if (node.call.service.name == 'shop/Buy' && node.return.isSucc) { + let _val = node.call.req.buyNum ? node.call.req.buyNum : 1; + if (node.call.req.shopId == "1") { + // 杂货铺购买 n 次 + G.emit("Class_task_102", 'Class_task_102', node.call, _val, 0); + } + // 商店购买 n 次道具 + G.emit("Class_task_119", 'Class_task_119', node.call, _val, 0); + if (node.call.req.shopId == "9") { + // 获得 x 个 配置颜色 配件 后面复写数值 + G.emit("Class_task_137", 'Class_task_137', node.call, 1, 0, node.call.return.res.prize); + } + } + if (node.call.service.name == 'task/Finsh' && node.return.isSucc) { + if (node.call.return.res.task.type == 1) { + // 日常任务完成 n 次 + G.emit("Class_task_999", 'Class_task_999', node.call, 1, 0); + } + if (node.call.return.res.task.type == 3) { + // 成就任务完成 n 次 + G.emit("Class_task_105", 'Class_task_105', node.call, 1, 0); + } + } + if (node.call.service.name == 'task/AllFinsh' && node.return.isSucc) { + let _val = node.call.return.res.finishtask.length; + if (node.call.req.type == 1 && _val != 0) { + // 日常任务完成 n 次 + G.emit("Class_task_999", 'Class_task_999', node.call, _val, 0); + } + if (node.call.req.type == 3 && _val != 0) { + // 成就任务完成 n 次 + G.emit("Class_task_105", 'Class_task_105', node.call, _val, 0); + } + } + if (node.call.eventMsg && node.call.eventMsg["msg_s2c/PlayerChange"] && node.call.eventMsg["msg_s2c/PlayerChange"].lv) { + // 玩家升级 + let _lv = node.call.eventMsg["msg_s2c/PlayerChange"].lv; + G.emit("Class_task_104", 'Class_task_104', node.call, _lv, 0); + HongDianChange.sendChangeKey(node.call.uid, ['jijinhd']) + } + if (node.call.service.name == 'tanxian/Fight' && node.return.isSucc) { + let _val = node.call.conn.gud.mapId; + // 玩家通关主线关卡 n 次 + G.emit("Class_task_1", 'Class_task_1', node.call, _val, 0); + // 探险进行 n 次战斗 不管输赢 + G.emit("Class_task_120", 'Class_task_120', node.call, 1, 0); + } + if (node.call.service.name == 'hero/LvUp' && node.return.isSucc) { + let _val = node.call.return.res.lv; + let usertasklog = await G.mongodb.collection('playerInfo', 'usertasklog').findOne({ + uid: node.call.conn.uid, + type: 'usertasklog' + }); + if (_val > (usertasklog?.maxherolv | 0)) { + await G.mongodb.collection('playerInfo', 'usertasklog').updateOne({ + uid: node.call.conn.uid, + type: 'usertasklog' + }, + {$set: {maxherolv: _val}}); + } + // 干部等级达到 n 级 + G.emit("Class_task_106", 'Class_task_106', node.call, _val, 0); + } + if (node.call.service.name == 'hero/ChangePos' && node.return.isSucc) { + // if (node.call.req.state == 'set') { + // let _val = Object.values(node.call.return.res).filter(v => { return v; }).length; + // G.emit("Class_task_107", 'Class_task_107', node.call, _val, 0); + // } + let _val = Object.values(node.call.return.res).filter(v => { + return v; + }).length; + G.emit("Class_task_107", 'Class_task_107', node.call, _val, 0); + } + if (node.call.service.name == 'hero/JinJie' && node.return.isSucc) { + let _val = 0; // 后面有复写 + G.emit("Class_task_108", 'Class_task_108', node.call, _val, 0); + } + + if (node.call.service.name == 'chat/Send' && node.return.isSucc) { + if (node.call.req.type == 'local') { + // 综合聊天1次 + G.emit("Class_task_109", 'Class_task_109', node.call, 1, 0); + } + } + + if (node.call.service.name == 'gongyu/xunlianjihua/UpSkill' && node.return.isSucc) { + // 升级 n 次训练技能 + G.emit("Class_task_110", 'Class_task_110', node.call, 1, 0); + } + + if (node.call.service.name == 'equip/LvUp' && node.return.isSucc) { + // 装备强化 n 次 + G.emit("Class_task_111", 'Class_task_111', node.call, node.call.return.res.addlv, 0); + // 装备强化到 n 级 + let _val = node.call.return.res.lv; + let usertasklog = await G.mongodb.collection('playerInfo', 'usertasklog').findOne({ + uid: node.call.conn.uid, + type: 'usertasklog' + }); + if (_val > (usertasklog?.maxequiplv | 0)) { + await G.mongodb.collection('playerInfo', 'usertasklog').updateOne({ + uid: node.call.conn.uid, + type: 'usertasklog' + }, + {$set: {maxequiplv: _val}}); + } + G.emit("Class_task_112", 'Class_task_112', node.call, _val, 0); + // 有 n 件强化 配置 等级装备 后面复写正确值 + G.emit("Class_task_113", 'Class_task_113', node.call, 0, 0); + } + + if (node.call.service.name == 'equip/OneKeyLvUp' && node.return.isSucc) { + // 装备强化 n 次 + let _qhNum = Object.values(node.call.return.res.posLvUp).sum(); + G.emit("Class_task_111", 'Class_task_111', node.call, _qhNum, 0); + // 装备强化到 n 级 + let _val = Object.values(node.call.return.res.log).max(); + G.emit("Class_task_112", 'Class_task_112', node.call, _val, 0); + // 更新强化等级 + let usertasklog = await G.mongodb.collection('playerInfo', 'usertasklog').findOne({ + uid: node.call.conn.uid, + type: 'usertasklog' + }); + if (_val > (usertasklog?.maxequiplv | 0)) { + await G.mongodb.collection('playerInfo', 'usertasklog').updateOne({ + uid: node.call.conn.uid, + type: 'usertasklog' + }, + {$set: {maxequiplv: _val}}); + } + // 有 n 件强化 配置 等级装备 后面复写正确值 + G.emit("Class_task_113", 'Class_task_113', node.call, 0, 0); + } + + if (node.call.eventMsg && node.call.eventMsg["msg_s2c/HeroChange"]) { + // 获得 n 个 配置颜色 干部 + let array = Object.values(node.call.eventMsg["msg_s2c/HeroChange"]); + for (let index = 0; index < array.length; index++) { + const element = array[index]; + if (element.heroId && element.lv == 1) { + let _color = G.gc.hero[element.heroId].colour; + G.emit("Class_task_114", 'Class_task_114', node.call, 1, _color); + await G.mongodb.collection('playerInfo', 'usertasklog').updateOne({ + uid: node.call.conn.uid, + type: 'usertasklog' + }, + {$inc: G.mongodb.createTreeObj({key: `herocolor.${_color}`, val: 1})}); + } + } + } + if (node.call.eventMsg && node.call.eventMsg["msg_s2c/EquipChange"]) { + // 获得 n 个 配置颜色 装备 + let array = Object.values(node.call.eventMsg["msg_s2c/EquipChange"]); + // 获取task配置装备数量 + let usertasklog = await G.mongodb.collection('playerInfo', 'usertasklog').findOne({ + uid: node.call.uid, + type: 'usertasklog' + }) + for (let index = 0; index < array.length; index++) { + const element = array[index]; + if (element.equipId && element.lv == 0 && !element.wearaId) { + let _color = G.gc.equip[element.equipId].colour; + // 增加相关等级装备数量 + if (!usertasklog.equipcolor[_color]) usertasklog.equipcolor[_color] = 0 + usertasklog.equipcolor[_color]++ + G.emit("Class_task_115", 'Class_task_115', node.call, 1, _color); + } + } + // 更新表内装备数量,重置任务时会依据该内容计算已获得数量。 + await G.mongodb.collection('playerInfo', 'usertasklog').updateOne({ + uid: node.call.uid, + type: 'usertasklog' + }, {$set: {equipcolor: usertasklog.equipcolor}}) + } + // if (node.call.service.name == 'chongzhi/Open' && node.return.isSucc) { + // // 累计充值 n 钻石 数量后面复写 + // G.emit("Class_task_116", 'Class_task_116', node.call, 1, 0); + // } + if (node.call.service.name == 'dixiaqianzhuang/Qf' && node.return.isSucc) { + // 使用 n 次点金 + let _val = Object.values(node.call.return.res.bj).sum(); + G.emit("Class_task_117", 'Class_task_117', node.call, _val, 0); + } + if (node.call.service.name == 'jiuba/Lottery' && node.return.isSucc) { + // 酒吧招募 n 次 + let _val = node.call.req.type; + G.emit("Class_task_118", 'Class_task_118', node.call, _val, 0); + } + if (node.call.service.name == 'gonghui/Jx' && node.return.isSucc) { + // 势力捐献进行 n 次捐献 + G.emit("Class_task_121", 'Class_task_121', node.call, 1, 0); + // 势力 配置xx 捐献进行 n 次捐献 + G.emit("Class_task_142", 'Class_task_142', node.call, 1, node.call.req.index); + } + if ((node.call.service.name == 'equip/Wear' || node.call.service.name == 'equip/OneKeyWear') && node.return.isSucc) { + // 穿戴X件以上装备 + G.emit("Class_task_143", 'Class_task_143', node.call, 1, 0); + } + if ((node.call.service.name == 'friend/Apply' || node.call.service.name == 'friend/Gift') && node.return.isSucc) { + // 进行x次好友申请或送礼 + let usertasklog = await G.mongodb.collection('playerInfo', 'usertasklog').findOne({ + uid: node.call.conn.uid, + type: 'usertasklog' + }); + + let _val = 1 + if (node.call.service.name == 'friend/Gift') { + _val = (node.call.return.res.change.sendGift.length || 0) + } + _val = _val + usertasklog.friendAsk + usertasklog.sendGift + await G.mongodb.collection('playerInfo', 'usertasklog').updateOne({ + uid: node.call.conn.uid, + type: 'usertasklog' + }, + {$set: {friendAsk: _val}}); + G.emit("Class_task_144", 'Class_task_144', node.call, 1, 0); + } + if (node.call.service.name == 'tanxian/FastGuaJi' && node.return.isSucc) { + // 进行 n 次快速探险 + G.emit("Class_task_122", 'Class_task_122', node.call, 1, 0); + } + if (node.call.service.name == 'tanxian/GuaJi' && node.return.isSucc) { + // 领取 n 次挂机收益 + G.emit("Class_task_145", 'Class_task_145', node.call, 1, 0); + } + if (node.call.service.name == 'jjc/Fight' && node.return.isSucc) { + // 竞技场中挑战 n 次对手 + G.emit("Class_task_123", 'Class_task_123', node.call, 1, 0); + } + if ((node.call.service.name == 'pata/Fight' || node.call.service.name == 'pata/SaoDang') && node.return.isSucc) { + let _val = node.call.service.name == 'pata/Fight' ? 1 : node.call.req.num; + // 斩草除根进行 n 次通关或扫荡 + G.emit("Class_task_124", 'Class_task_124', node.call, _val, 0); + } + if (node.call.service.name == 'meirishilian/Fight' && node.return.isSucc) { + // 挑战 n 次物资筹集 + G.emit("Class_task_125", 'Class_task_125', node.call, 1, 0); + } + if (node.call.service.name == 'kuangdong/ZhanLing' && node.return.isSucc) { + // 地盘争夺抢夺或战领 n 次 + G.emit("Class_task_126", 'Class_task_126', node.call, 1, 0); + } + + if (node.call.service.name == 'qjzzd/Fight' && node.return.isSucc) { + // 挑战 n 次清缴真主党 + G.emit("Class_task_127", 'Class_task_127', node.call, 1, 0); + } + + if (node.call.service.name == 'jjc/Fight' && node.return.isSucc) { + // 竞技场首次达到x名 后面复写 + G.emit("Class_task_129", 'Class_task_129', node.call, 1, 0); + } + + if (node.call.service.name == 'jjc/Open' && node.return.isSucc) { + // 竞技场首次达到x名 后面复写 + G.emit("Class_task_129", 'Class_task_129', node.call, 1, 0); + } + + if (node.call.service.name == 'peijiancangku/Deal' && node.return.isSucc) { + if (node.call.req.num == 10) { + // 在仓库使用 x 次交易10次(交易一次不算) + G.emit("Class_task_130", 'Class_task_130', node.call, 1, 0); + } + // 在仓库交易x次 + G.emit("Class_task_141", 'Class_task_141', node.call, node.call.req.num, 0) + // 获得 x 个 配置颜色 配件 后面复写数值 + G.emit("Class_task_137", 'Class_task_137', node.call, 1, 0, node.call.return.res.prize); + } + + if (node.call.service.name == 'peijiancangku/Jump' && node.return.isSucc) { + // 在仓库使用 x 次指定高级仓库 + G.emit("Class_task_131", 'Class_task_131', node.call, 1, 0); + } + + if (node.call.service.name == 'gonglukuangbiao/Fight' && node.return.isSucc) { + // 进行 x 次公路狂飙 + G.emit("Class_task_132", 'Class_task_132', node.call, 1, 0); + } + + if (node.call.service.name == 'jiaotang/Lottery' && node.return.isSucc) { + // 进行 x 教会招募 + let _val = node.call.req.type; + G.emit("Class_task_133", 'Class_task_133', node.call, _val, 0); + } + if (node.call.service.name == 'item/Use' && node.return.isSucc) { + let itemConf = G.gc.item[node.call.req.itemId]; + if ([3, 4].includes(itemConf.type)) { + // 进行 x 次英雄合成 + let prizeList = node.return.res.prize + console.log(prizeList) + + let heroList = prizeList.filter(i => i.a == 'hero') + let equipList = prizeList.filter(i => i.a == 'equip') + if (heroList.length) { + let _val = heroList.reduce((c, r) => c + r.n, 0) + G.emit("Class_task_146", 'Class_task_146', node.call, _val, 0); + } + if (equipList.length) { + let _val = equipList.reduce((c, r) => c + r.n, 0) + G.emit("Class_task_147", 'Class_task_147', node.call, _val, 0); + } + } + } + + if (node.call.service.name == 'gongyu/mingdao/Repair' && node.return.isSucc) { + // 修复 x 次名刀 + let _val = node.call.req.num; + G.emit("Class_task_136", 'Class_task_136', node.call, _val, 0); + } + + if (node.call.service.name == 'peijian/LvUp' && node.return.isSucc) { + // 配件升级 xx 次 + let _val = node.call.req.num; + G.emit("Class_task_138", 'Class_task_138', node.call, _val, 0); + } + + if (node.call.service.name == 'peijian/OneKeyLvUp' && node.return.isSucc) { + // 配件升级 xx 次 + let _val = node.call.return.res.sjnum; + G.emit("Class_task_138", 'Class_task_138', node.call, _val, 0); + } + + if (node.call.eventMsg && node.call.eventMsg["msg_s2c/PeijianChange"] && node.call.eventMsg["msg_s2c/PeijianChange"]) { + let _change = node.call.eventMsg["msg_s2c/PeijianChange"]; + + // 配件记录信息 + let usertasklog = await G.mongodb.collection('playerInfo', 'usertasklog').findOne({ + uid: node.call.conn.uid, + type: 'usertasklog' + }); + let _setData = {$set: {}}; // 更新配件记录 + + let peijianCon = G.gc.peijian; + let _lv = 0; + for (let index = 0; index < Object.keys(_change).length; index++) { + const _tmp = Object.keys(_change)[index]; + let element = _change[_tmp]; + if (!element.lv) continue; + + if (element.lv > (usertasklog?.maxpeijianlv || 0)) { + _lv = element.lv; + _setData["$set"]["maxpeijianlv"] = _lv; + } + + // 配件颜色信息 + let _peijian = await PeijianFun.getPeijian(node.call, _tmp); + let _color = peijianCon[_peijian.peijianId].colour; + if (element.lv > (usertasklog?.peijiancolor ? [_color] : 0)) { + // if (!_setData["$set"]["peijiancolor"]) _setData["$set"]["peijiancolor"] = {} + _setData["$set"][`peijiancolor.${_color}`] = element.lv; + // 配置 配件升级到 xx 级(颜色限制) + G.emit("Class_task_140", 'Class_task_140', node.call, element.lv, _color); + } + } + + if (Object.keys(_setData["$set"]).length > 0) { + // 配件升级到 xx 级 + if (_setData["$set"]["maxpeijianlv"]) G.emit("Class_task_139", 'Class_task_139', node.call, _lv, 0); + await G.mongodb.collection('playerInfo', 'usertasklog').updateOne({ + uid: node.call.conn.uid, + type: 'usertasklog' + }, + _setData); + } + } + + } +} + +// TaskFun.addevent() + diff --git a/src/public/taskclass.ts b/src/public/taskclass.ts new file mode 100644 index 0000000..67993c7 --- /dev/null +++ b/src/public/taskclass.ts @@ -0,0 +1,642 @@ +import {ApiCall} from "tsrpc" +import {YangChengMuBiaofun} from "../api_s2c/event/yangchengmubiao/fun" +// import { YangChengMuBiaofun } from "../api_s2c/event/yangchengmubiao/fun" +import {Wjjl} from "../module/collection_wjjl" +import {PublicShared} from "../shared/public/public" +import {PayFun} from "./pay" +import {TaskFun} from "./task" + +let _classNameFunc = {} +/** + * stype , isinc 分别是任务类型 是否累加 + * initVal: 获取初值方法, 返回整形, 默认初值为0 + * getVal: 获取设置的值, 默认返回(1, 0) + * 事件类型: 类名 + */ + +export module manager { + // 任务基类 + abstract class BaseClass { + abstract stype + abstract isinc + + constructor() { + if (_classNameFunc[this.name]) { + return + } + // 注册监听事件 + if (this.name) { + this.addEventOn() + } + _classNameFunc[this.name] = this + } + + // 获取初始任务值 + async getInitVal(call: ApiCall, con) { + let _val = await this.initVal(call, con) + return await this.fmtinitval(_val, con) + } + + // 任务初值,根据任务情况是否重写 + async initVal(call: ApiCall, con) { + return 0 + } + + // 初值处理 + async fmtinitval(val: number, con) { + val = val < con["pval"] ? val : con["pval"] + return val + } + + // 数据检测,默认没有条件限制 + async chkCall(cond, chkval, arg) { + if (cond.length == 0 || chkval == cond[0] || !chkval) { + return 1 + } + return 0 + } + + // 改变数值 + async alchangeVal(call: ApiCall, con, val: number, arg) { + return val + } + + // 设置数据 + async setVal(call: ApiCall, val: number, chkval, arg) { + TaskFun.setTaskVal(call, this.stype, val, this.chkCall, chkval, this.isinc, this.alchangeVal, arg) + // 养成目标任务计数 + YangChengMuBiaofun.setTaskVal(call, this.stype, val, this.chkCall, chkval, this.isinc, this.alchangeVal, arg) + } + + // 任务数值, 和检测值,看情况需要上层复写 + async getVal(call: ApiCall, ...arg) { + return arg[0] + } + + // 事件处理 + async eventdo(eventname, call: ApiCall, ...arg) { + if (eventname != this.name) { + return 0 + } + let [val, chkval] = await this.getVal(call, arg) + this.setVal(call, val, chkval, arg) + + // 活动任务监听 todo + } + + // 监听事件 + async addEventOn(this) { + G.on(this.name.toString(), await this.eventdo.bind(this)) + } + + get name() { + return this.constructor.name + } + + } + + // 第一个任务 签到 n 次 + export class Class_task_100 extends BaseClass { + stype = 100 + isinc = 1 + } + + // 第二个任务 升级 n 次干部 + export class Class_task_101 extends BaseClass { + stype = 101 + isinc = 1 + } + + // 第3个任务 杂货铺购买 n 次 + export class Class_task_102 extends BaseClass { + stype = 102 + isinc = 1 + } + + // 第4个任务 日常任务完成 n 次 + export class Class_task_999 extends BaseClass { + stype = 999 + isinc = 1 + } + + // 第5个任务 成就任务完成 n 次 + export class Class_task_105 extends BaseClass { + stype = 105 + isinc = 1 + } + + // 第6个任务 玩家等级升级 n 次 + export class Class_task_104 extends BaseClass { + stype = 104 + isinc = 0 + async initVal(call: ApiCall, con) { + let gud = call.conn.gud + return gud["lv"] + } + } + // 第7个任务 玩家通关主线关卡 n 次 + export class Class_task_1 extends BaseClass { + stype = 1 + isinc = 0 + async initVal(call: ApiCall, con) { + let gud = await call.conn.gud + return gud["mapId"] + } + } + + // 第8个任务 干部等级达到 n 级 + export class Class_task_106 extends BaseClass { + stype = 106 + isinc = 0 + async initVal(call: ApiCall, con) { + let _chk = parseInt(con.cond[0]) + return await G.mongodb.collection('hero').countDocuments({uid: call.uid, lv: {$gte: _chk}}) || 0 + } + + async alchangeVal(call: ApiCall, con, val: number) { + let _chk = parseInt(con.cond[0]) + return await G.mongodb.collection('hero').countDocuments({uid: call.uid, lv: {$gte: _chk}}) || 0 + } + } + + // 第9个任务 同时出站 n 个干部 + export class Class_task_107 extends BaseClass { + stype = 107 + isinc = 0 + async initVal(call: ApiCall, con) { + let userchuzhan = await call.conn.getDefaultFightData() + return Object.keys(userchuzhan.roles).length + } + } + + // 第10个任务 n 个干部进阶 配置k阶 + export class Class_task_108 extends BaseClass { + stype = 108 + isinc = 0 + async initVal(call: ApiCall, con) { + let _chk = parseInt(con.cond[0]) + let _num = await G.mongodb.collection('hero').countDocuments({ uid: call.uid, jieji: { $gte: _chk } }) || 0 + return _num + } + + async alchangeVal(call: ApiCall, con, val: number) { + let _chk = parseInt(con.cond[0]) + let _num = await G.mongodb.collection('hero').countDocuments({ uid: call.uid, jieji: { $gte: _chk } }) || 0 + return _num + } + } + + // 第11个任务 综合频道聊天 n 次 + export class Class_task_109 extends BaseClass { + stype = 109 + isinc = 1 + } + + // 第12个任务 升级 n 次训练技能 + export class Class_task_110 extends BaseClass { + stype = 110 + isinc = 0 + async initVal(call: ApiCall, con) { + let skills = Object.assign({}, call.conn.gud.skills) + let _num = Object.values(skills).sum() + return _num + } + + async alchangeVal(call: ApiCall, con, val: number) { + let skills = Object.assign({}, call.conn.gud.skills) + let _num = Object.values(skills).sum() + return _num + } + } + + // 第13个任务 装备强化 n 次 + export class Class_task_111 extends BaseClass { + stype = 111 + isinc = 1 + } + + // 第14个任务 装备强化到 n 级 + export class Class_task_112 extends BaseClass { + stype = 112 + isinc = 0 + async initVal(call: ApiCall, con) { + let usertasklog = await G.mongodb.collection('playerInfo', 'usertasklog').findOne({ uid: call.uid, type: 'usertasklog' }) + return usertasklog?.maxequiplv | 0 + } + } + + // 第15个任务 有 n 件强化 配置 等级装备 + export class Class_task_113 extends BaseClass { + stype = 113 + isinc = 0 + async initVal(call: ApiCall, con) { + let _chk = parseInt(con.cond[0]) + let _num = await G.mongodb.collection('equip').countDocuments({ uid: call.uid, lv: { $gte: _chk } }) || 0 + return _num + } + + async alchangeVal(call: ApiCall, con, val: number) { + let _chk = parseInt(con.cond[0]) + let _num = await G.mongodb.collection('equip').countDocuments({ uid: call.uid, lv: { $gte: _chk } }) || 0 + return _num + } + } + + // 第16个任务 获得 n 个 配置颜色 干部 + export class Class_task_114 extends BaseClass { + stype = 114 + isinc = 1 + async initVal(call: ApiCall, con) { + let color = con.cond[0].toString() + let usertasklog = await G.mongodb.collection('playerInfo', 'usertasklog').findOne({ uid: call.uid, type: 'usertasklog' }) + // 符合颜色的key取出来 + let array = (Object.keys(usertasklog?.herocolor || {})).filter(v => { return v >= color }) + let _val = 0 + for (let index = 0; index < array.length; index++) { + // 累加符合的数量 + const element = array[index]; + _val += usertasklog.herocolor[element] || 0 + } + return _val + } + + async chkCall(cond, chkval, arg) { + if (cond.length == 1 && chkval >= cond[0]) { + return 1 + } + return 0 + } + } + + // 第17个任务 获得 n 个 配置颜色 装备 + export class Class_task_115 extends BaseClass { + stype = 115 + isinc = 1 + async initVal(call: ApiCall, con) { + let color = con.cond[0].toString() + let usertasklog = await G.mongodb.collection('playerInfo', 'usertasklog').findOne({ uid: call.uid, type: 'usertasklog' }) + // 符合颜色的key取出来 + let array = (Object.keys(usertasklog?.equipcolor || {})).filter(v => { return v >= color }) + let _val = 0 + for (let index = 0; index < array.length; index++) { + // 累加符合的数量 + const element = array[index]; + _val += usertasklog.equipcolor[element] || 0 + } + return _val + } + + async chkCall(cond, chkval, arg) { + if (cond.length == 1 && chkval >= cond[0].toString()) { + return 1 + } + return 0 + } + } + + // 第18个任务 累计充值 n 钻石 + export class Class_task_116 extends BaseClass { + stype = 116 + isinc = 0 + async initVal(call: ApiCall, con) { + let _val = 0 + // 成就任务走计数 + if (con.type == 3) { + _val = await PayFun.getPayDaysAllPayNum(call.uid, await PublicShared.getToDayZeroTime(G.openTime), G.time) * 10 + } + return _val + } + + async alchangeVal(call: ApiCall, con, val: number, arg) { + val = 0 + let _where = { taskid: con.id, stype: con.stype } + let _task = await TaskFun.getUserTaksList(call.uid, _where) + if (_task[0]) { + val = await PayFun.getPayDaysAllPayNum(call.uid, await PublicShared.getToDayZeroTime(_task[0].retime), G.time) * 10 + } + return val + } + } + + // 第19个任务 使用 n 次点金 + export class Class_task_117 extends BaseClass { + stype = 117 + isinc = 1 + } + + // 第20个任务 酒吧招募 n 次 + export class Class_task_118 extends BaseClass { + stype = 118 + isinc = 1 + } + + // 第21个任务 商店购买 n 次道具 + export class Class_task_119 extends BaseClass { + stype = 119 + isinc = 1 + } + + // 第22个任务 探险进行 n 次战斗 不管输赢 + export class Class_task_120 extends BaseClass { + stype = 120 + isinc = 1 + } + + // 第23个任务 势力捐献进行 n 次捐献 + export class Class_task_121 extends BaseClass { + stype = 121 + isinc = 1 + } + + // 第24个任务 进行 n 次快速探险 + export class Class_task_122 extends BaseClass { + stype = 122 + isinc = 1 + } + + // 第25个任务 竞技场中挑战 n 次对手 + export class Class_task_123 extends BaseClass { + stype = 123 + isinc = 1 + } + + // 第26个任务 斩草除根进行 n 次通关或扫荡 + export class Class_task_124 extends BaseClass { + stype = 124 + isinc = 1 + } + + // 第27个任务 挑战 n 次物资筹集 + export class Class_task_125 extends BaseClass { + stype = 125 + isinc = 1 + } + + // 第28个任务 地盘争夺抢夺或战领 n 次 + export class Class_task_126 extends BaseClass { + stype = 126 + isinc = 1 + } + + // 第29个任务 挑战 n 次清缴真主党 + export class Class_task_127 extends BaseClass { + stype = 127 + isinc = 1 + } + + // 第30个任务 今日登录 + export class Class_task_128 extends BaseClass { + stype = 128 + isinc = 1 + async initVal(call: ApiCall, con) { + // 任务直接完成 + return con.pval + } + } + + // 第31个任务 竞技场首次达到x名 + export class Class_task_129 extends BaseClass { + stype = 129 + isinc = 0 + async initVal(call: ApiCall, con) { + let _val = await Wjjl.getVal(call.uid, "jjc_rank") + if (_val && _val <= con.pval) { + return con.pval + } + return 0 + } + + async alchangeVal(call: ApiCall, con, val: number, arg) { + let _val = await Wjjl.getVal(call.uid, "jjc_rank") + if (_val && _val <= con.pval) { + return con.pval + } + return 0 + } + } + + // 第32个任务 在仓库使用 x 次交易10次(交易一次不算) + export class Class_task_130 extends BaseClass { + stype = 130 + isinc = 1 + } + + // 第33个任务 在仓库使用 x 次指定高级仓库 + export class Class_task_131 extends BaseClass { + stype = 131 + isinc = 1 + } + + // 第34个任务 进行 x 次公路狂飙 + export class Class_task_132 extends BaseClass { + stype = 132 + isinc = 1 + } + + // 第35个任务 进行 x 教会招募 + export class Class_task_133 extends BaseClass { + stype = 133 + isinc = 1 + } + + // 第36个任务 消耗 x 个 配置道具 + export class Class_task_134 extends BaseClass { + stype = 134 + isinc = 1 + + async alchangeVal(call: ApiCall, con, val: number, arg) { + let _need = arg[2].filter(l => l.a == 'item') + let _res = {} + for (let index = 0; index < _need.length; index++) { + const element = _need[index]; + if (!Object.keys(_res).includes(element.a)) _res[element.t] = 0 + _res[element.t] += element.n + } + + let _val = Object.keys(_res).includes(con.cond[0].toString()) ? _res[con.cond[0]] : 0 + return _val + } + + async chkCall(cond, chkval, arg) { + let _val = 1 + if (_val == 0) { + return 0 // 不知道怎么回事,这里强制返回1就报错 + } + return 1 + } + } + + // 第37个任务 累计登录天数 + export class Class_task_135 extends BaseClass { + stype = 135 + isinc = 1 + + // 第一天不会正常计数,直接设置1 + async initVal(call: ApiCall, con) { + return 1 + } + } + + // 第38个任务 修复 x 次名刀 + export class Class_task_136 extends BaseClass { + stype = 136 + isinc = 1 + } + + // 第39个任务 获得 x 个 配置颜色 配件 + export class Class_task_137 extends BaseClass { + stype = 137 + isinc = 1 + + async alchangeVal(call: ApiCall, con, val: number, arg) { + let _need = arg[2].filter(l => l.a == 'peijian') + let _val = 0 + let _con = G.gc.peijian + for (let index = 0; index < _need.length; index++) { + const element = _need[index]; + let _peijian = _con[element.t] + if (_peijian.colour >= con.cond[0]) { + _val += element.n + } + } + return _val + } + + async chkCall(cond, chkval, arg) { + if (chkval == undefined) { + return 0 + } + return 1 + } + } + + // 第40个任务 配件升级 xx 次 + export class Class_task_138 extends BaseClass { + stype = 138 + isinc = 1 + } + + // 第41个任务 配件升级到 xx 级(无条件要求) + export class Class_task_139 extends BaseClass { + stype = 139 + isinc = 0 + + async initVal(call: ApiCall, con) { + let _chk = parseInt(con.cond[0]) + return await G.mongodb.collection('peijian').countDocuments({uid: call.uid, lv: {$gte: _chk}}) || 0 + } + + async alchangeVal(call: ApiCall, con, val: number) { + let _chk = parseInt(con.cond[0]) + return await G.mongodb.collection('peijian').countDocuments({uid: call.uid, lv: {$gte: _chk}}) || 0 + } + } + + // 第42个任务 配置 配件升级到 xx 级(颜色限制) + export class Class_task_140 extends BaseClass { + stype = 140 + isinc = 0 + + async initVal(call: ApiCall, con) { + let color = con.cond[0].toString() + let usertasklog = await G.mongodb.collection('playerInfo', 'usertasklog').findOne({ uid: call.uid, type: 'usertasklog' }) + // 符合颜色的key取出来 + let array = (Object.keys(usertasklog?.peijiancolor || {})).filter(v => { return v >= color }) + let _val = 0 + for (let index = 0; index < array.length; index++) { + // 取出符合条件的最高等级 + const element = array[index]; + let _tmp = usertasklog.peijiancolor[element] || 0 + if (_tmp > _val) _val = _tmp + } + return _val + } + + async chkCall(cond, chkval, arg) { + if (cond.length == 1 && chkval >= parseInt(cond[0])) { + return 1 + } + return 0 + } + } + + // 第43个任务 在仓库交易x次 + export class Class_task_141 extends BaseClass { + stype = 141 + isinc = 1 + } + + // 第44个任务 势力 配置xx 捐献进行 n 次捐献 + export class Class_task_142 extends BaseClass { + stype = 142 + isinc = 1 + + async chkCall(cond, chkval, arg) { + if (cond.length == 1 && chkval == parseInt(cond[0])) { + return 1 + } + return 0 + } + } + + // 第45个任务 穿戴X件以上装备 + export class Class_task_143 extends BaseClass { + stype = 143 + isinc = 0 + + async initVal(call: ApiCall, con) { + return await G.mongodb.collection('equip').countDocuments({uid: call.uid, wearaId: {$ne: "" }}) || 0 + } + + async alchangeVal(call: ApiCall, con, val: number) { + return await G.mongodb.collection('equip').countDocuments({uid: call.uid, wearaId: {$ne: "" }}) || 0 + } + + } + + // 第46个任务 进行x次好友申请或送礼 + export class Class_task_144 extends BaseClass { + stype = 144 + isinc = 1 + + async initVal(call: ApiCall, con) { + let usertasklog = await G.mongodb.collection('playerInfo', 'usertasklog').findOne({ uid: call.uid, type: 'usertasklog' }); + return (usertasklog.friendAsk || 0) + (usertasklog.sendGift || 0) + } + + async alchangeVal(call: ApiCall, con) { + if(call.service.name=='friend/Gift'){ + return call.return.res.change.sendGift.length || 0 + } + return 1 + } + } + + // 第47个任务 领取x次挂机收益 + export class Class_task_145 extends BaseClass { + stype = 145 + isinc = 1 + } + + // 第48个任务 合成X次英雄 + export class Class_task_146 extends BaseClass { + stype = 146 + isinc = 0 + } + + // 第49个任务 合成X次装备 + export class Class_task_147 extends BaseClass { + stype = 147 + isinc = 0 + } + +} + + + + + + + + + diff --git a/src/public/tequan.ts b/src/public/tequan.ts new file mode 100644 index 0000000..078097f --- /dev/null +++ b/src/public/tequan.ts @@ -0,0 +1,20 @@ +import { ApiCall } from 'tsrpc'; +import { PayFun } from './pay'; + + +export class TeQuanFun { + static async getIsAcTive(call: ApiCall, payId: string) { + let log = await PayFun.getPayLog(call.uid, payId); + if (log.length < 1) return false; + let last = log.slice(-1)[0]; + + if (G.gc.pay[payId].time == -1) return last != undefined; + else return G.time < last.time + G.gc.pay[payId].time; + }; + static async getXsTaskNum(call: ApiCall) { + return await this.getIsAcTive(call, 'qingbaotequan') ? 1 : 0; + } + static async getTxFreeNum(call: ApiCall) { + return await this.getIsAcTive(call, 'zuozhantequan') ? 2 : 0; + } +} \ No newline at end of file diff --git a/src/public/user.ts b/src/public/user.ts new file mode 100644 index 0000000..26f6566 --- /dev/null +++ b/src/public/user.ts @@ -0,0 +1,364 @@ +import CryptoJS from 'crypto-js'; +import { ObjectId, OptionalId, WithId } from 'mongodb'; +import { BaseConnection } from 'tsrpc'; +import { Wjjl } from '../module/collection_wjjl'; +import { ServiceType } from '../shared/protocols/serviceProto'; +import { ReqLogin, ResLogin, playerAppend, playerAttr, playerInfo } from '../shared/protocols/user/PtlLogin'; +import { player } from '../shared/protocols/user/type'; +import { PublicShared } from '../shared/public/public'; +import { PlayerFun } from './player'; +import { ZhanLingTasks } from './zhanling'; + +export const defaultUserInfo: playerInfo = { + lv: 1, + vip: 0, + uid: '', + bindUid: '', + power: 0 +}; + +export const defaultUserAttr: playerAttr = { + nexp: 0, + jinbi: 100, + rmbmoney: 100, + rongyu: 0, + payExp: 0, + guijinshu: 0 +}; + +export const defaultUserAppend: playerAppend = { + name: '', + tujianLv: 0, + head: { id: "1", time: -1 }, + headFrame: { id: "1", time: -1 }, + chatFrame: { id: "1", time: -1 }, + model: { + 1: { id: "1", time: -1 }, + 2: { id: "1", time: -1 }, + 3: { id: "1", time: -1 }, + 4: { id: "1", time: -1 }, + }, + renown: 0, + wxcLv: { + lv: 0, + ids: [] + }, + mapId: 0, + shoucangping: {}, + useTujianLvPoint: 0, + skills: {}, + fightSkills: {}, + heroPos: { + 1: '', + 2: '', + 3: '', + 4: '', + 5: '', + 6: '' + }, + ghId: '', + ghName: '', + ghLevel: 0, + ghwz: { 1: 0, 2: 0, 3: 0, 4: 0 } +}; + +export class UserFun { + static create(bUid: string) { + let { bindUid, ...userInfo } = defaultUserInfo; + + return { + bindUid: bUid, + ...userInfo, + ...defaultUserAttr + }; + } + static async check(gud: ResLogin['gud'], req: ReqLogin) { + let obj: k_v = {}; + let add: k_v = {}; + for (let k in defaultUserAppend) { + if (gud[k] == undefined) { + let val = defaultUserAppend[k]; + switch (k as keyof playerAppend) { + // case 'name': + // let b64 = CryptoJS.enc.Base64.stringify(CryptoJS.enc.Utf8.parse(gud.bindUid + gud.sid)); + // val = `temp_${b64}`.toLocaleLowerCase(); + // break; + } + gud[k] = val; + add[k] = val; + } + } + + for (let k in G.gc.attr) { + if (gud[k] == undefined) { + gud[k] = defaultUserAttr[k]; + add[k] = defaultUserAttr[k] || 0; + } + } + + if (!gud.cTime) { + gud.cTime = G.time; + add.cTime = G.time; + } + + if (!gud.sid) { + gud.sid = req.sid; + add.sid = req.sid; + } + + if (!gud.serverName) { + gud.serverName = req.serverName; + add.serverName = req.serverName; + } + + if (!gud.matrix) { + gud.matrix = Object.fromEntries(Object.keys(G.gc.fightPlan).map(t => [t, 0])); + gud.selectMatrix = ''; + + add.matrix = gud.matrix; + add.selectMatrix = gud.selectMatrix; + } + + if (!gud.fightHeros) { + let h_ids = Object.values(gud.heroPos).filter(_id => _id != ''); + + if (h_ids.length < 1) { + gud.fightHeros = []; + } else { + let dHeros = await G.mongodb.collection('hero').find({ _id: { $in: h_ids.map(id => G.mongodb.conversionId(id)) } }).toArray(); + gud.fightHeros = dHeros.map(h => h.heroId.toString()); + } + add.fightHeros = gud.fightHeros; + } + + if (!gud.matrixPos) { + gud.matrixPos = Object.fromEntries(Object.keys(G.gc.fightPlan).map(pos => [pos, { ...gud.heroPos }])); + add.matrixPos = gud.matrixPos; + } + + if (!gud.helpHeros) { + gud.helpHeros = []; + add.helpHeros = []; + } + + if (!gud.headFrames) { + gud.headFrames = {}; + for (let [id, conf] of Object.entries(G.gc.playerHeadFrame)) { + if (typeof gud[conf.cond[0]] == 'number' && gud[conf.cond[0]] >= conf.cond[1]) { + gud.headFrames[id] = -1; + } else { + switch (conf.cond[0]) { + case 'wxcLv': + if (gud.wxcLv.lv >= conf.cond[1]) gud.headFrames[id] = -1; + break; + } + } + + } + add.headFrames = gud.headFrames; + } + + if (!gud.chatFrames) { + gud.chatFrames = {}; + for (let [id, conf] of Object.entries(G.gc.playerChatFrame)) { + if (typeof gud[conf.cond[0]] == 'number' && gud[conf.cond[0]] >= conf.cond[1]) { + gud.chatFrames[id] = -1; + } else { + switch (conf.cond[0]) { + case 'wxcLv': + if (gud.wxcLv.lv >= conf.cond[1]) gud.chatFrames[id] = -1; + break; + } + } + } + add.chatFrames = gud.chatFrames; + } + + if (gud.onlineTime == undefined) { + gud.onlineTime = 0; + add.onlineTime = 0; + } + + //每天首次登陆 + if (!gud.loginTime || PublicShared.getToDayZeroTime(gud.loginTime) != PublicShared.getToDayZeroTime(G.time)) { + gud.loginDays = gud.loginDays ? gud.loginDays + 1 : 1; + add.loginDays = gud.loginDays; + Wjjl.setVal(gud.uid, `toDayLogin_${PublicShared.getOpenServerDay(gud.cTime, G.time)}`, 1); + + if (gud.logoutTime && PublicShared.getToWeekMondayZeroTime(gud.logoutTime) < PublicShared.getToWeekMondayZeroTime(G.time)) { + ZhanLingTasks.clearLog(gud.uid, 'week'); + } + + obj.todayFirstLogin = true; + } + + gud.loginTime = G.time; + add.loginTime = G.time; + + if (Object.keys(add).length > 0) { + G.mongodb.collection('user').updateOne({ bindUid: gud.bindUid,sid:gud.sid }, { + $set: { + ...add + } + }); + + for (let k in add) { + G.redis.set('user', gud.uid, k as any, add[k] as any); + } + } + + return obj; + } + + // 检查空数据并修复 + static async checkUidOrName() { + let users = await G.mongodb.collection('user').findOne({$or: [{uid: {$in:['', null]}},{name: {$in: ['', null]}}]}) + if(users) { + let {bindUid, sid, _id} = users + let uid = users.uid || (sid + '_' + _id) + // 随机创建name + let b64 = CryptoJS.enc.Base64.stringify(CryptoJS.enc.Utf8.parse(bindUid + sid)); + let name = users.name || `temp_${b64}`.toLocaleLowerCase(); + await G.mongodb.collection('user').updateOne({ bindUid, sid }, { + $set: { + uid, name + } + }); + } + return + } + /**创建账号数据 */ + static async createUser(client: BaseConnection, bindUid: string, sid: number): Promise>> { + // 开启事务 + // let session = G.mongodbClient.startSession() + // session.startTransaction() // 开启事务 + let gud: ResLogin['gud'] = this.create(bindUid); + gud.sid = sid + gud._id = new ObjectId() + gud.uid = sid + '_' + gud._id.toHexString(); + // 随机创建name + let b64 = CryptoJS.enc.Base64.stringify(CryptoJS.enc.Utf8.parse(gud.bindUid + gud.sid)); + gud.name = `temp_${b64}`.toLocaleLowerCase(); + gud.logoutTime = 0 // 设置默认值 + + await G.mongodb.collection('user').insertOne(gud); + // await G.mongodb.collection('user').updateOne({ bindUid,sid }, { + // $set: { + // uid: gud.uid, + // name: gud.name + // } + // }); + // 暂不做错误预处理,提交事务 + // session.abortTransaction() // 回滚 + // session.commitTransaction() // 提交 + // session.endSession() // 结束事务 + return gud as WithId>; + } + /**获取玩家附带的buff加成 */ + static getOtherBuff(gud: ResLogin['gud']) { + return gud; + } + static async getGud(uid: string) { + return await G.redis.get('user', uid); + } + /**激活头像框 */ + static async activeHeadFrame(uid: string, k: string, v: number) { + let gud: player; + if (G.server.uid_connections[uid]) { + gud = G.server.uid_connections[uid].gud; + } else { + gud = await G.redis.get('user', uid); + } + + let change = false; + let headFrame = G.gc.playerHeadFrame; + let checks = Object.values(headFrame).filter(v => v.cond[0] == k); + if (checks.length > 0) { + checks.forEach(conf => { + let val = v; + if (k == 'wxcLv') val = gud.wxcLv.lv; + else if (gud[k] != undefined) val = gud[k]; + + if (k == 'jjc_rank' && !gud.headFrames[conf.id] && val <= conf.cond[1]) { + gud.headFrames[conf.id] = -1; + change = true; + } else if (!gud.headFrames[conf.id] && val >= conf.cond[1]) { + gud.headFrames[conf.id] = -1; + change = true; + } + }); + } else { + let conf = headFrame[k]; + if (conf?.cond?.[0] == 'time') { + let val = conf.cond[1]; + + if (val == -1 && !gud.headFrames[conf.id]) { + change = true; + gud.headFrames[conf.id] = -1; + } else if (!gud.headFrames[conf.id] || gud.headFrames[conf.id] < G.time) { + change = true; + gud.headFrames[conf.id] = G.time + val * v; + } else { + change = true; + gud.headFrames[conf.id] += val * v; + } + } + } + + if (change) { + PlayerFun.changeAttr(uid, { headFrames: gud.headFrames }); + G.server.sendMsgByUid(uid, 'msg_s2c/PlayerChange', { headFrames: gud.headFrames }); + G.server.uid_connections[uid]?.refreshPower(); + } + } + /**激活聊天框 */ + static async activeChatFrame(uid: string, k: string, v: number) { + let gud: player; + if (G.server.uid_connections[uid]) { + gud = G.server.uid_connections[uid].gud; + } else { + gud = await G.redis.get('user', uid); + } + + let change = false; + let chatFrame = G.gc.playerChatFrame; + let checks = Object.values(chatFrame).filter(v => v.cond[0] == k); + if (checks.length > 0) { + checks.forEach(conf => { + let val = v; + if (k == 'wxcLv') val = gud.wxcLv.lv; + else if (gud[k] != undefined) val = gud[k]; + + if (k == 'jjc_rank' && !gud.chatFrames[conf.id] && val <= conf.cond[1]) { + gud.chatFrames[conf.id] = -1; + change = true; + } else if (!gud.chatFrames[conf.id] && val >= conf.cond[1]) { + gud.chatFrames[conf.id] = -1; + change = true; + } + }); + } else { + let conf = chatFrame[k]; + if (conf?.cond?.[0] == 'time') { + let val = conf.cond[1]; + + if (val == -1 && !gud.chatFrames[conf.id]) { + change = true; + gud.chatFrames[conf.id] = -1; + } else if (!gud.chatFrames[conf.id] || gud.chatFrames[conf.id] < G.time) { + change = true; + gud.chatFrames[conf.id] = G.time + val * v; + } else { + change = true; + gud.chatFrames[conf.id] += val * v; + } + } + } + + if (change) { + PlayerFun.changeAttr(uid, { chatFrames: gud.chatFrames }); + G.server.sendMsgByUid(uid, 'msg_s2c/PlayerChange', { chatFrames: gud.chatFrames }); + G.server.uid_connections[uid]?.refreshPower(); + } + } +} \ No newline at end of file diff --git a/src/public/wzry.ts b/src/public/wzry.ts new file mode 100644 index 0000000..2faf393 --- /dev/null +++ b/src/public/wzry.ts @@ -0,0 +1,226 @@ +import { ApiCall } from 'tsrpc'; +import { formatNpcData } from '../shared/fightControl/fightFun'; +import { hongdianVal } from '../shared/protocols/hongdian/PtlGet'; +import { wangzherongyao_baoming, wangzherongyao_staus, wzry_info } from '../shared/protocols/wzry/PtlOpen'; +import { PublicShared } from '../shared/public/public'; + + +export class WangZheRongYaofun { + /**王者荣耀配置 */ + static async getCon() { + let _con = G.gc.wangzherongyao; + return _con; + } + + /**获取赛程状态 */ + static async getWangZheStatus() { + let _tmp = await this.getCon(); + let _con = _tmp.wangzhe.timestatus; + let _weekOneTime = PublicShared.getToWeekMondayZeroTime(); + let _res: wangzherongyao_staus = { // 默认比赛结束状态 + status: 8, + stime: _weekOneTime + 7 * 24 * 3600, + etime: _weekOneTime + 7 * 24 * 3600 + }; + for (let index = 0; index < _con.length; index++) { + const element = _con[index]; + let _stime = _weekOneTime + element.stime; + let _etime = _weekOneTime + element.etime; + _res.stime = _stime; + _res.etime = _etime; + if (_stime <= G.time && G.time < _etime) { + _res.status = element.status; + _res.num = await this.getBaoMingNum(); + break; + } + } + return _res; + } + + /**获取报名人数 */ + static async getBaoMingNum() { + let zkey: string = PublicShared.getToWeek(); + let _num = G.mongodb.collection('playerInfo', 'wzry').countDocuments({ isbm: 1 }); + return _num; + } + + /**获取本服各种数据 */ + static async getMyData(call) { + let zkey = PublicShared.getToWeek(); + let _res: wzry_info = { + isdldrefre: 0, + isauto: 0, + zkey: zkey, + isbm: 0, + dldinfo: { + dldpknum: 0, + dldrefrenum: 0 + }, + isjjzs: 0, + uid: call.uid, + }; + let _mydata = await G.mongodb.collection('playerInfo', 'wzry').findOne({ uid: call.conn.uid, type: 'wzry' }); + if (!_mydata) { + await G.mongodb.collection('playerInfo', 'wzry').updateOne({ uid: call.uid, type: 'wzry' }, { $set: _res }, { upsert: true }); + return _res; + } else { + delete _mydata._id; + } + return _mydata; + } + + /**设置报名数据 */ + static async setWzryBaoMing(call: ApiCall, setData: { [id: string]: any; }) { + await G.mongodb.cPlayerInfo("wzry").updateOne({ uid: call.uid, type: 'wzry' }, { $set: setData }, { upsert: true }); + let data = await call.conn.getDefaultFightData(); + let _res = await G.clientCross.callApi('wzry/BaoMing', { zkey: setData.zkey, data: data }); + return _res; + } + + /**获取我的wzry战斗数据 */ + static async getMyFight(call: ApiCall) { + let _res = await G.clientCross.callApi('wzry/WzFightData', { uid: call.uid, iswzfight: true }); + if (_res.isSucc && _res.res.info) { + return _res.res.info; + } + return false; + } + + /**获取王者之巅数据 */ + static async getWzzd(uid: string) { + let _res = await G.clientCross.callApi('wzry/WzFightData', { uid: uid, iswzzd: true }); + return _res; + } + + /**获取王者之巅数据 n 条数据 */ + static async getWzzdList() { + let _res = await G.clientCross.callApi('wzry/Wzzd', {}); + if (_res.isSucc && _res.res.wzzdlist) { + return _res.res.wzzdlist; + } + return false; + } + + /**获取wzry某一组数据 */ + static async getFightGroup(call: ApiCall, where: {}) { + let _res = await G.clientCross.callApi('wzry/WzFightGroup', { where: where }); + if (_res.isSucc && _res.res.info) { + return _res.res.info; + } + return false; + } + + /**wzry 结束 删除相关数据 */ + static async delGroup() { + let _res = await G.clientCross.callApi('wzry/WzFightData', { uid: '', isdel: true }); + await G.mongodb.collection('playerInfo', 'wzry').updateMany({ type: 'wzry' }, { + $set: { + isdldrefre: 0, + isbm: 0, + dldinfo: { + dldpknum: 0, + dldrefrenum: 0, + dldfight: [] + }, + isjingcai: { + totalmoney: 0, + guessuid: '' + } + } + }); + return true; + } + + /**设置大乱斗战斗数据 */ + static async setWzryDldFight(call: ApiCall, Fight: wangzherongyao_baoming) { + let data = Fight.data; + let _res = await G.clientCross.callApi('wzry/SetWzFight', { zkey: Fight.zkey, data: data, jifen: Fight.jifen }); + return _res.res; + } + + /**增加npc数据 */ + static async addNpc(num: number) { + let _wzryCon = await this.getCon(); + let _zhanli = _wzryCon.wangzhe.addnpcid; + let _npcFights = []; + let _npcList = Object.keys(G.gc.npc); + let _zkey = await PublicShared.getToWeek(); + for (let index = 0; index < _npcList.length; index++) { + const npcid = _npcList[index]; + if (_npcFights.length >= num) break; + let _fight = formatNpcData(npcid); + // npc战力限制 + if (_fight.player.power > _zhanli[1] || _fight.player.power < _zhanli[0]) continue; + let _tmp = { + data: _fight, + zkey: _zkey, + jifen: 0, + uid: _fight.player.uid + }; + _npcFights.push(_tmp); + } + return _npcFights; + } + + /**获取增加的积分 */ + static async getMyScore(dldfight: number[]) { + let [_num, _score] = [0, 2]; + if (dldfight[-1] == 0) { + _score = 10; + } + for (let index = dldfight.length; index < dldfight.length; index--) { + const element = dldfight[index - 1]; + if (element == 1) break; + _num += 1; + } + if (_num >= 2) _score += _num; + return _score; + } + + /**红点 */ + static async getHongDian(call: ApiCall) { + let _res: hongdianVal = { + show: false + }; + let [isOpen, tips] = PublicShared.getOpenCond(call, "wzrybm") + if (!isOpen) return _res; + + // 周一0点-22点 开启功能未报名加红点 1 + // 周二0点-22点 开启功能有大乱斗次数加红点 3 + // 周四钻石赛最后一场 未竞猜加红点 + let status = await WangZheRongYaofun.getWangZheStatus(); + let _mydata = await this.getMyData(call); + if (status.status == 1 && _mydata.isbm == 0) { + _res.show = true; + } + + if (!_res.show && status.status == 3 && _mydata.dldinfo.dldpknum < G.gc.wangzherongyao.wangzhe.dlpknum) { + _res.show = true; + } + + if (!_res.show && status.status == 15 && !_mydata?.isjingcai?.totalmoney) { + let _jcList = await WangZheRongYaofun.getFightGroup(call, { deep: { $gte: 5 } }); + if (_jcList) { + _res.show = true; + } + } + + return _res; + } + + /**转str */ + static async fmtContent(content: string, ...arg) { + if (arguments.length < 2) return content; + if (arguments.length == 2 && Object.prototype.toString.call(arguments[1]) == "[object Array]") { + let args = arguments[1]; + for (let i = 0; i < args.length; i++) { + content = content.replace(new RegExp("\\{" + (i + 1) + "\\}", "g"), args[i]); + } + } else { + for (let i = 1; i < arguments.length; i++) { + content = content.replace(new RegExp("\\{" + i + "\\}", "g"), arguments[i]); + } + } + return content; + } +} diff --git a/src/public/xstask.ts b/src/public/xstask.ts new file mode 100644 index 0000000..b25c1c5 --- /dev/null +++ b/src/public/xstask.ts @@ -0,0 +1,139 @@ +import { OptionalId, UpdateFilter } from 'mongodb'; +import { ApiCall } from 'tsrpc'; +import { playerInfoType } from '../module/collection_palyerInfo'; +import { CollectionXstask } from '../module/collection_xstask'; +import { PublicShared } from '../shared/public/public'; + + + +export class XstaskFun { + /**所有玩家的悬赏任务缓存 */ + static uidTask: k_v = {}; + /**获取单个悬赏任务 */ + static async getTask(uid: string, _id: string) { + return this.uidTask[uid]?.find(task => task._id == _id) || await G.mongodb.collection('xstask').findOne({ uid: uid, _id: G.mongodb.conversionId(_id) }); + } + /**获取所有悬赏任务 */ + static async getAllTask(uid: string) { + let taskList = this.uidTask[uid]; + + if (!taskList) { + taskList = this.uidTask[uid] = (await G.mongodb.collection('xstask').find({ uid: uid }).toArray()).map(task => G.mongodb.conversionIdObj(task)); + }; + + return taskList; + } + + /**完成任务标记 */ + static async finishTask(uid: string, _id: string) { + // 修改数据库 + G.mongodb.collection('xstask').updateOne({ uid: uid, _id: G.mongodb.conversionId(_id) }, { $set: { 'receiveData.rec': true } }); + // 修改缓存 + let index = this.uidTask[uid]?.findIndex(task => task._id == _id); + this.uidTask[uid][index].receiveData.rec = true + return + } + + /**更新任务单个 */ + static async updateTask(uid: string, _id: string, taskId: string) { + G.mongodb.collection('xstask').updateOne({ uid: uid, _id: G.mongodb.conversionId(_id) }, { $unset: { receiveData: 1 }, $set: {taskId: taskId} }); + let index = this.uidTask[uid]?.findIndex(task => task._id == _id); + delete this.uidTask[uid][index].receiveData; + this.uidTask[uid][index].taskId = taskId; + } + + /**删除单个悬赏任务 */ + static async delTask(uid: string, _id: string) { + + let task = this.uidTask[uid]?.find(task => task._id == _id); + task && this.uidTask[uid].removeOne(task); + + G.mongodb.collection('xstask').deleteOne({ uid: uid, _id: G.mongodb.conversionId(_id) }); + } + /**删除多个悬赏任务 */ + static async delTasks(uid: string, _id: string[]) { + + for (let id of _id) await this.delTask(uid, id); + } + /**添加多个悬赏任务 */ + static async addTasks(uid: string, taskArr: { taskId: string; }[]) { + + let taskList = taskArr.map(task => { + return { + taskId: task.taskId, + uid: uid, + }; + }); + let result = await G.mongodb.collection('xstask').insertMany(taskList); + + this.uidTask[uid] = this.uidTask[uid] || []; + taskList.forEach((task, index) => { + this.uidTask[uid].push(G.mongodb.conversionIdObj({ + _id: result.insertedIds[index], + ...task + })); + }); + + return this.uidTask[uid]; + } + /**派遣任务任务 */ + static async receiveTask(uid: string, _id: string, d: CollectionXstask['receiveData']) { + let cache = this.uidTask[uid]?.find(task => task._id == _id); + if (cache) cache.receiveData = d; + G.mongodb.collection('xstask').updateOne({ uid: uid, _id: G.mongodb.conversionId(_id) }, { $set: { receiveData: d } }); + } + /**获取所有已被派遣的英雄 */ + static async getAllReceiveHero(uid: string) { + let heroIds: string[] = []; + let allTask = await this.getAllTask(uid); + + allTask.forEach(task => heroIds = heroIds.concat(task.receiveData?.heros || [])); + + return heroIds; + } + /**获取悬赏任务记录信息 */ + static async getInfo(uid: string) { + return await G.mongodb.collection('playerInfo', 'xstask').findOne({ uid: uid, type: 'xstask' }); + } + /**修改悬赏任务记录信息 */ + static async changeInfo(uid: string, change: Pick>, '$inc' | '$set'>) { + + G.mongodb.collection('playerInfo', 'xstask').updateOne( + { uid: uid, type: 'xstask' }, + change, + { upsert: true } + ); + } + /**随机任务 */ + static randomTasks(lv: number, num: number) { + let tasks = Object.values(G.gc.xstask).filter(task => G.gc.xstaskcom.lv[lv].taskColor.includes(task.colour)).sort(function () { + return Math.random() - 0.5; + }); + + return (PublicShared.randomDropGroup(0, num, [tasks] as any) as any as typeof tasks).map(v => { + return { + taskId: v.id.toString() + }; + }); + } + + /**红点 */ + static async getHongDian(call: ApiCall) { + let _res = { + show: false + }; + let _xstasks = await this.getAllTask(call.uid); + _res.show = _xstasks.every(v => !v.receiveData); + for (let index = 0; index < _xstasks.length; index++) { + const element = _xstasks[index]; + // 未派遣 + if (!element.receiveData) continue; + let taskConf = G.gc.xstask[element?.taskId]; + // 派遣时间不足 + if (element.receiveData.time + taskConf.time > G.time) continue; + _res.show = true; + break; + } + return _res; + } +} \ No newline at end of file diff --git a/src/public/zhanling.ts b/src/public/zhanling.ts new file mode 100644 index 0000000..4e600c2 --- /dev/null +++ b/src/public/zhanling.ts @@ -0,0 +1,91 @@ +import { ApiCall, ApiReturn } from 'tsrpc'; +import { ServiceType } from '../shared/protocols/serviceProto'; +import { ResAllFinsh } from '../shared/protocols/task/PtlAllFinsh'; + +type taskType = 'day' | 'week' | 'round'; + +export class ZhanLingTasks { + static addListener(node: { + call: ApiCall; + return: ApiReturn; + }) { + let res = node.return.res; + let call = node.call; + let args: { type: taskType; key: string; val?: number; }[] = []; + + + switch (call.service.name as keyof ServiceType['api']) { + // case 'user/Login': + // args.push({ type: 'day', key: call.service.name }); + // break; + case 'gonghui/Jx': + args.push({ type: 'day', key: call.service.name }); + if (call.req.index == G.gc.shili_com.juanxian.length - 1) args.push({ type: 'week', key: `${call.service.name}/${call.req.index}` }); + break; + case 'pata/Fight': + case 'pata/SaoDang': + args.push({ type: 'day', key: 'pata' }); + break; + case 'jjc/Fight': + args.push({ type: 'day', key: call.service.name }); + break; + case 'task/Finsh': + if (Object.keys(G.gc.task['1']).includes(call.req.taskid.toString())) args.push({ type: 'week', key: 'task_finish_type_1' }); + break; + case 'task/AllFinsh': + if (call.req.type == 1 && (res as ResAllFinsh).finishtask.length > 0) { + args.push({ type: 'week', key: 'task_finish_type_1', val: (res as ResAllFinsh).finishtask.length }); + } + break; + case 'tanxian/FastGuaJi': + args.push({ type: 'week', key: call.service.name }); + args.push({ type: 'round', key: call.service.name }); + break; + case 'dixiaqianzhuang/Qf': + args.push({ type: 'week', key: call.service.name, val: call.req.type }); + break; + case 'jiuba/Lottery': + args.push({ type: 'round', key: call.service.name, val: call.req.type }); + break; + case 'gonglukuangbiao/Fight': + args.push({ type: 'round', key: call.service.name, val: call.req.type }); + break; + } + + args.forEach(arg => { + this.addLog(call.uid, arg.type, arg.key, arg.val || 1); + }); + } + static addLog(uid: string, type: taskType, key: string, val = 1) { + G.mongodb.collection('zhanling').updateOne( + { uid: uid, type: type }, + { $inc: G.mongodb.createTreeObj({ key: `data.${key}`, val: val }) }, + { upsert: true } + ); + + G.server.sendMsgByUid(uid, 'msg_s2c/HongDianChange', ['zhuishalinghd']); + } + static async getLog(uid: string, arg: { type: taskType; key: string; }): Promise; + static async getLog(uid: string, arg: { type: taskType; key: string; }[]): Promise>; + static async getLog(uid: string, args: any) { + let obj: k_v = {}; + let arr = [].concat(args) as { type: taskType; key: string; }[]; + let dbs = await G.mongodb.collection('zhanling').find({ uid: uid }).toArray(); + let fmt = Object.fromEntries(dbs.map(db => [db.type, db])); + + for (let arg of arr) { + obj[`${arg.type}@${arg.key}`] = fmt[arg.type]?.data?.[arg.key] || 0; + } + + if (args instanceof Array) return obj; + else if (args.type) return obj[`${args.type}@${args.key}`]; + else return obj[args.key]; + } + static clearLog(uid: string, type: taskType) { + G.mongodb.collection('zhanling').updateOne( + { uid: uid, type: type }, + { $set: type == 'day' ? { data: { 'user/Login': 1, 'tqexp': 1 } } : { data: {} } }, + { upsert: true } + ); + } +} \ No newline at end of file diff --git a/src/sdk/G123.ts b/src/sdk/G123.ts new file mode 100644 index 0000000..0f1094a --- /dev/null +++ b/src/sdk/G123.ts @@ -0,0 +1,39 @@ +import axios from 'axios'; +import { env } from 'process'; +import { player } from '../shared/protocols/user/type'; + + +export class G123 { + static sendUserLevelUp(gud: player) { + if (!env.SERVER_ID) return; + this.sendEvent('level_up', { + game_server_id: env.SERVER_ID.toString(), + ctwid: gud.bindUid, + timestamp: G.date.getTime(), + level: gud.lv, + data: { + game_server_id: env.SERVER_ID.toString(), + game_user_id: gud.uid, + role: { + id: gud.uid, + name: gud.name, + exp: gud.nexp.toString(), + vip_level: gud.vip.toString(), + vip_exp: gud.payExp.toString(), + virtual_balance: Object.fromEntries(Object.keys(G.gc.attr).difference(['nexp', 'payExp', 'shilifrd']).map(k => [k, `${(gud[k] || 0)}`])), + custom: {} + }, + custom: { + device_id: '', + physical_server: `http://game${env.SERVER_ID}` + } + } + }); + } + static sendEvent(type: string, data: any) { + axios.post(`http://server-tool:7456/server/postEvent`, { + type: type, + data: data + }); + } +} \ No newline at end of file diff --git a/src/setHttp.ts b/src/setHttp.ts new file mode 100644 index 0000000..6c10173 --- /dev/null +++ b/src/setHttp.ts @@ -0,0 +1,59 @@ +import { createHmac } from 'crypto'; +import { resolve } from 'path'; +import { HttpServer, LogLevel } from 'tsrpc'; +import { ServiceType, serviceProto } from './monopoly/protocols/serviceProto'; + +export async function createHttp() { + + if (G.config.httpPort) { + G.http = new HttpServer(serviceProto, { + json: true, + cors: '*', + port: G.config.httpPort, + logLevel: G.argv.logModel as LogLevel + }); + setHttp(G.http); + await G.http.autoImplementApi(resolve(__dirname, 'api_o2s'), true); + await G.http.start(); + } +} + +const secretKey = 'lymaple_heijiao_2023'; + +export function setHttp(http: HttpServer) { + if (!http) return; + + // http.flows.preRecvDataFlow.push(v => { + // try { + // let json = JSON.parse(v.data as any); + // let { sign, ...d } = json; + // if (!sign) { + // v.conn.sendData('data error'); + // return undefined; + // } + // if (!verifySignature(d, sign)) { + // v.conn.sendData('sign error'); + // return undefined; + // } + // v.data = JSON.stringify(d); + // return v; + // } catch (error) { + // return undefined; + // } + // }); +} + +/** + * 生成签名 + */ +function generateSignature(data: any, secretKey: string) { + return createHmac('sha256', secretKey).update(JSON.stringify(data)).digest('hex'); +} + +/** + * 验证签名 + */ +function verifySignature(data: any, sign: string) { + return generateSignature(data, secretKey) == sign; +} + diff --git a/src/setMongodb.ts b/src/setMongodb.ts new file mode 100644 index 0000000..32ae332 --- /dev/null +++ b/src/setMongodb.ts @@ -0,0 +1,401 @@ +import {Collection, Db, IndexDescription, MongoClient, ObjectId, OptionalId} from 'mongodb'; +import {CollectionActionLog, actionLogType} from './module/collection_actionLog'; +import {CollectionEvent, eventType} from './module/collection_event'; +import {CollectionPlayerInfo, playerInfoType} from './module/collection_palyerInfo'; +import {CollectionRecord, recordType} from './module/collection_record'; +import {MongodbCollections} from './module/mongodb'; +import {HuoDongFun} from './public/huodongfun'; + +const indexs: Partial<{ [k in keyof MongodbCollections]: IndexDescription[] }> = { + item: [ + { + key: {uid: 1, itemId: 1}, unique: true + } + ], + user: [ + { + key: {bindUid: 1, sid: 1}, unique: true, + }, + { + key: {name: 1}, unique: true, + }, + { + key: {uid: 1}, unique: true, + }, + { + key: {mapId: 1}, + } + ], + hero: [ + { + key: {uid: 1, _id: 1}, unique: true + } + ], + equip: [ + { + key: {uid: 1, _id: 1}, unique: true + } + ], + shiwu: [ + { + key: {uid: 1, _id: 1}, unique: true + } + ], + email: [ + { + key: {uid: 1, _id: 1}, unique: true + }, + { + key: {ttl: 1}, expireAfterSeconds: 15 * 24 * 3600 + } + ], + xstask: [ + { + key: {uid: 1, _id: 1}, unique: true + } + ], + playerInfo: [ + { + key: {uid: 1, type: 1}, unique: true + } + ], + pata: [ + { + key: {uid: 1, sid: 1}, unique: true + } + ], + gbtx: [ + { + key: {uid: 1}, unique: true + } + ], + tanxian: [ + { + key: {uid: 1}, unique: true + } + ], + cardlog: [ + { + key: {uid: 1, cardnum: 1}, unique: true + } + ], + dxlt: [ + { + key: {uid: 1}, unique: true + } + ], + jjc: [ + { + key: {uid: 1}, unique: true + } + ], + playattr: [ + { + key: {uid: 1, ctype: 1}, unique: true + } + ], + gonghui: [ + { + key: {name: 1}, unique: true + } + ], + gonghuiUser: [ + { + key: {uid: 1}, unique: true + } + ], + gonghuiFb: [ + { + key: {ghId: 1, fbId: 1}, unique: true + } + ], + task: [ + { + key: {uid: 1, taskid: 1}, unique: true + }, + { + key: {uid: 1} + } + ], + actionLog: [ + { + key: {uid: 1, type: 1}, unique: true + } + ], + syncBtns: [ + { + key: {uid: 1}, unique: true + } + ], + payLog: [ + { + key: {uid: 1}, unique: true + } + ], + event: [ + { + key: {uid: 1, type: 1}, unique: true + } + ], + friend: [ + { + key: {uid: 1}, unique: true + } + ], + chat: [ + { + key: {type: 1}, unique: true + } + ], + slzdGh: [ + { + key: {ghid: 1}, unique: true + } + ], + slzdUser: [ + { + key: {uid: 1}, unique: true + } + ], + ganhai: [ + { + key: {uid: 1}, unique: true + } + ], + dayPay: [ + { + key: {uid: 1, time: 1}, unique: true + } + ], + rankList: [ + { + key: {type: 1, idKey: 1}, unique: true + } + ], + wanted: [ + { + key: {uid: 1}, unique: true + } + ], + peijian: [ + { + key: {uid: 1, _id: 1}, unique: true + } + ], + mingdao: [ + { + key: {uid: 1}, unique: true + } + ], + wjjl: [ + { + key: {uid: 1}, unique: true + } + ], + zhanling: [ + { + key: {uid: 1, type: 1}, unique: true + } + ], + hdinfo: [ + { + key: {hdid: 1}, unique: true + }, + { + key: {ttype: 1} + }, + { + key: {stime: 1} + }, + { + key: {etime: 1} + } + ], + giftLog: [ + { + key: {popup_id: 1}, unique: true + }, + { + key: {game_user_id: 1} + } + ], + loginLog: [ + { + key: {uid: 1, _id: 1}, unique: true + } + ], + payLogNew: [ + { + key: {uid: 1, key: 1}, unique: true + } + ], + kuangdong: [ + { + key: {uid: 1} + } + ], + apiCount: [ + { + key: {api: 1}, unique: true + } + ] +}; + +const crossIndexs: Partial<{ [k in keyof MongodbCollections]: IndexDescription[] }> = { + hbzb_user_cross: [ + { + key: {uid: 1}, unique: true + } + ], + hbzb_user_zbs: [ + { + key: {uid: 1}, unique: true + } + ], + kbzzApplyUser: [ + { + key: {uid: 1}, unique: true + } + ], + kbzzGroupUser: [ + { + key: {uid: 1}, unique: true + } + ], + clslCrossUser: [ + { + key: {uid: 1}, unique: true + } + ], + rankList: [ + { + key: {type: 1, idKey: 1}, unique: true + } + ] +}; + +export async function initMongoDB() { + console.log('connect mongodb ......'); + let client = await MongoClient.connect(G.argv.serverType == 'cross' ? G.config.crossMongodbUrl : G.config.mongodbUrl); + G.mongodb = new _mongodb(client.db(G.config.dbName || '')); + // G.mongodbClient = client + // setDbIndexes(); // todo 区服初始化,和项目分离; 运行一遍 localindex.ts 即可。 + console.log('connect mongodb succ'); + // 增加本地活动 + // if (G.argv.serverType != 'cross') HuoDongFun.fmtHD() +} + +export function setDbIndexes() { + let is = G.argv.serverType == 'cross' ? crossIndexs : indexs; + for (let key in is) { + G.mongodb.collection(key as keyof MongodbCollections).createIndexes(is[key]); + } +} + +export class _mongodb { + constructor(private db: Db) { + + } + + /** + * mongodb仿sql查询 + * @param field 需要获取的字段,空数组表示所有字段,如:["uid","lv"] + * @param from 从哪个表查询 + * @param where 查询条件,如:{"uid":"ciniao"} + * @param order 排序条件,如:{"field":1} + * @param limit 指定行数:10 + * @returns + */ + fmtOption(field?: string[], order?: any, limit?: number) { + let option = {}; + + if (field.length > 0) { + option['projection'] = {}; + for (let i = 0; i < field.length; i++) { + option['projection'][field[i]] = 1; + } + } + + if (order != null) { + option['sort'] = order; + } + + if (limit != null) { + option['limit'] = limit; + } + return option; + } + + async find(from: string, where: any, field?: string[], order?: any, limit?: number) { + let option = this.fmtOption(field, order, limit); + return this.db.collection(from).find(where, option).toArray(); + } + + async findOne(from: string, where: any, field?: string[], order?: any, limit?: number) { + let option = this.fmtOption(field, order, limit); + return this.db.collection(from).findOne(where, option); + } + + collection(collection: T): Collection>; + collection(collection: 'playerInfo', type: T): Collection>>; + collection(collection: string) { + return this.db.collection(collection); + } + + cActionLog(type: T): Collection>> { + return this.db.collection('actionLog'); + } + + cEvent(type: T): Collection>> { + return this.db.collection('event'); + } + + cPlayerInfo(type: T): Collection>> { + return this.db.collection('playerInfo'); + } + + cRecord(type: T): Collection>> { + return this.db.collection('record'); + } + + /**_id转化 */ + conversionId(_id: string): ObjectId; + conversionId(_id: ObjectId): string; + conversionId(_id: string | ObjectId) { + if (!_id) return null; + if (_id instanceof ObjectId) return _id.toHexString(); + else return new ObjectId(_id); + } + + /**_id数据转化 */ + conversionIdObj(obj: T): Omit & { _id: ObjectId; }; + conversionIdObj(obj: T): Omit & { _id: string; }; + conversionIdObj(obj: { _id: string; } | { _id: ObjectId; }) { + if (!obj) return null; + let {_id, ...ops} = obj; + if (!_id) return ops; + return { + _id: this.conversionId(_id as any), + ...ops + } as any; + } + + createTreeObj(...args: { key: string, val: any; }[]); + createTreeObj(...args: { key: string, k: string, val: any; }[]); + createTreeObj(...args: { key: string, k: string, val: any; }[]) { + let obj = {}; + args.forEach(v => { + if (Object.keys(v).length == 2) { + obj[v.key] = v.val; + } else { + obj[`${v.key}.${v.k}`] = v.val; + } + }); + return obj; + } + + // 增加查询索引(以达到检查数据库是否可用的目的) + indexInformation(name) { + return this.db.indexInformation(name) + } +} \ No newline at end of file diff --git a/src/setRedis.ts b/src/setRedis.ts new file mode 100644 index 0000000..dfd7d90 --- /dev/null +++ b/src/setRedis.ts @@ -0,0 +1,657 @@ +import { createClient, RedisClientType } from 'redis'; +import { + RedisCollections1, + RedisCollections2, + RedisCollectionsArr1, + RedisCollectionsArr2, + RedisCollectionsHkey1String, + RedisCollectionsHkeyObj1, + RedisCollectionsSortedObj1, + sortEd +} from './module/redis'; + +const localKeys = [ + 'user', 'item', 'hero', 'equip', 'shiwu', 'shop', 'email', 'gbtx', 'dxlt', 'fightLog', 'jjc', 'tanxian', 'chatPrivate', 'peijian' + +]; + +const localVals: k_v = { + fightLog: { + jjc: {}, + slzd: {}, + kbzz: {}, + ganhai: {}, + } +}; + +const crossKeys = ['fightLog']; +const crossVals: k_v = { + fightLog: { + hbzbJfs: {}, + hbzbZbs: {}, + clsl: {} + } +}; + +export let redisClient : RedisClientType; + +export async function initRedis() { + const proto = await import('@redis/json/dist/commands/index'); + + //@ts-ignore + // proto.transformRedisJsonArgument = function (json: any) { + // return JSON.stringify(json); + // }; + // proto.transformRedisJsonNullReply = function (json: string) { + // if (json === null) return null; + + // const a = decode(encode(json, 'iso-8859-1'), 'utf-8'); + // const x = JSON.parse(a); + // return JSON.parse(decodeURIComponent(escape(json))); + // }; + + console.log('connect redis ......'); + redisClient = createClient({ url: G.argv.serverType == 'cross' ? G.config.crossRedisUrl : G.config.redisUrl }); + await redisClient.connect(); + if (G.config.dbIndex) await redisClient.select(G.config.dbIndex); + G.redis = new _redis(redisClient as any); + if (G.config.cleanRedis) await redisClient.flushDb(); + await setRedis(); + console.log('connect redis succ'); +} + +export async function setRedis() { + let keys = G.argv.serverType == 'cross' ? crossKeys : localKeys; + let vals = G.argv.serverType == 'cross' ? crossVals : localVals; + for (let key of keys) { + if (await G.redis.type(key as any) == null) { + await G.redis.set(key as any, {}); + } + if (vals[key]) { + for (let val of Object.entries(vals[key])) { + if (await G.redis.type(key as any, val[0]) == null) { + await G.redis.set(key as any, val[0], val[1]); + } + } + } + } +} + + +export class _redis implements redisJsonFun { + logMsg = ''; + constructor(private redis: RedisClientType) { + + } + log(str: string, pos: 'end' | 'start') { + // if (pos == 'end') { + // console.log('redis cmd:', this. , str); + // this.logMsg = ''; + // } else if (pos == 'start') { + // this.logMsg = str; + // } + } + fromatKey(key: string, state: 'zAdd' | 'zRange' | 'zRem' | 'zRevRank' | 'zRank' | 'zCard' | 'hGet' | 'hGetAll' | 'hLen' | 'hSet' | 'hDel' | 'del' | 'numIncrBy' | 'type' | 'get' | 'set' | 'arrAppend' | 'arrPop' | 'arrLen' | 'arrInsert' | null) { + let sid = G.config.serverId || 0; + let fmtKey = `${G.config.projectName}_${G.argv.serverType == 'cross' ? `corss${sid}` : sid}_${key}`; + state && this.log(state + ' ' + fmtKey, 'start'); + return fmtKey; + } + /** + * redis路径只能以字母、美元符号或下划线开头 + */ + formatPath(args: string[], log = true) { + args = args.map(str => G.formatRedisKey(str)); + let path = '.' + args.join('.'); + log && this.log(path, 'end'); + return path; + } + + async hGet() { + let _args = Array.from(arguments); + let result = await this.redis.hGet(this.fromatKey(_args[0], 'hGet'), _args[1]); + try{ + result = JSON.parse(result) + } catch (err) {} + return result + } + + async hGetAll() { + let _args = Array.from(arguments); + let result = await this.redis.hGetAll(this.fromatKey(_args[0], 'hGetAll')); + if(result) { + for(let i in result) { + try{ + result[i] = JSON.parse(result[i]) + } catch (err) {} + } + } + return result + } + + async hLen() { + let _args = Array.from(arguments); + let result = await this.redis.hLen(this.fromatKey(_args[0], 'hLen')); + return result + } + + async hSet() { + let _args = Array.from(arguments); + if(_args[2] instanceof Array || _args instanceof Object) _args[2] = JSON.stringify(_args[2]) + return this.redis.hSet(this.fromatKey(_args[0], 'hSet'), _args[1], _args[2]); + } + + async hDel() { + let _args = Array.from(arguments); + return this.redis.hDel(this.fromatKey(_args[0], 'hDel'), _args); + } + + async zAdd() { + let _args = Array.from(arguments); + return this.redis.zAdd(this.fromatKey(_args[0], 'zAdd'), _args[1]); + } + + async zCard () { + let _args = Array.from(arguments); + return this.redis.zCard(this.fromatKey(_args[0], 'zAdd')); + } + + + /** + * 获取指定索引范围排名 + * redis参数 + * ${type} + * ${min} + * ${max} + */ + async zRange() { + let _args = Array.from(arguments); + return await this.redis.zRange(this.fromatKey(_args[0], 'zRange'), _args[1], _args[2]) + } + + /** + * 获取指定key排名 + * redis参数 + * ${type} + * ${key} + */ + async zRank() { + let _args = Array.from(arguments); + return await this.redis.zRank(this.fromatKey(_args[0], 'zRank'), _args[1]) + } + + /**获取指定key排名,倒叙 */ + async zRevRank() { + let _args = Array.from(arguments); + return await this.redis.zRevRank(this.fromatKey(_args[0], 'zRevRank'), _args[1]); + } + + /**删除指定key的排名数据 */ + async zRem() { + let _args = Array.from(arguments); + return await this.redis.zRem(this.fromatKey(_args[0], 'zRem'), _args[1]); + } + + async get() { + if (await this.type(...arguments) == null) return null; + + let _args = Array.from(arguments); + return await this.redis.json.get(this.fromatKey(_args[0], 'get'), { path: this.formatPath(_args.slice(1)) }) as any; + } + + async gets() { + let key = arguments[0]; + let _args = Array.from(arguments); + let dataObj = {}; + + if (_args.length <= 1) return []; + + if (key == 'user' && _args[1].length == 1) { + return (await G.mongodb.collection('user').find({ uid: { $in: _args.slice(1).map(s => s[0]) } }).toArray()) as any; + } + + for (let arg of _args.slice(1)) { + let arr = arg; + let path = this.formatPath(arr, false); + dataObj[path] = await this.type(key, ...arr) == null ? null : true; + } + + let paths = Object.keys(dataObj).filter(k => dataObj[k] == true); + if (paths.length > 0) { + let res = await this.redis.json.get(this.fromatKey(key, null), { path: paths }); + if (paths.length == 1) { + dataObj[paths[0]] = res; + } else { + Object.assign(dataObj, res); + } + } + + return Object.values(dataObj); + } + + async set() { + + let _args = Array.from(arguments); + return await this.redis.json.set(this.fromatKey(_args[0], 'set'), this.formatPath(_args.slice(1, _args.length - 1)), _args[_args.length - 1]); + } + + async del() { + + let _args = Array.from(arguments); + return await this.redis.json.del(this.fromatKey(_args[0], 'del'), this.formatPath(_args.slice(1, _args.length))); + } + + async type(...args: any[]) { + + let _args = Array.from(arguments); + return await this.redis.json.type(this.fromatKey(_args[0], 'type'), this.formatPath(_args.slice(1))) as any; + } + + async numIncrBy() { + + let _args = Array.from(arguments); + return await this.redis.json.numIncrBy(this.fromatKey(_args[0], 'numIncrBy'), this.formatPath(_args.slice(1, _args.length - 1)), _args[_args.length - 1]) as number; + } + + async arrLen() { + let _args = Array.from(arguments); + return await this.redis.json.arrLen(this.fromatKey(_args[0], 'arrLen'), this.formatPath(_args.slice(1))) as any; + } + + async arrPop() { + let _args = Array.from(arguments); + return await this.redis.json.arrPop(this.fromatKey(_args[0], 'arrPop'), this.formatPath(_args.slice(1, _args.length - 1)), _args[_args.length - 1]) as any; + } + + async arrAppend() { + let _args = Array.from(arguments); + return await this.redis.json.arrAppend(this.fromatKey(_args[0], 'arrAppend'), this.formatPath(_args.slice(1, _args.length - 1)), ...[].concat(_args[_args.length - 1])) as any; + } + + async arrInsert() { + let _args = Array.from(arguments); + let _numIndex = _args.length - 2; + return await this.redis.json.arrInsert(this.fromatKey(_args[0], 'arrInsert'), this.formatPath(_args.slice(1, _numIndex)), _args[_numIndex], ...[].concat(_args[_args.length - 1])) as any; + } + + // 检查 redis 是否连接 + async chkRedis() { + return this.redis.isOpen + } + +} + +interface Document { + [key: string]: any; +} + +type Join = T extends [] ? '' : T extends [string | number] ? `${T[0]}` : T extends [string | number, ...infer R] ? `${T[0]}${D}${Join}` : string; + +type NestedPaths = Depth['length'] extends 8 ? [] : Type extends string | number | boolean | Date | RegExp | Buffer | Uint8Array | ((...args: any[]) => any) | { + _bsontype: string; +} ? [] : Type extends ReadonlyArray ? [] | [number, ...NestedPaths] : Type extends Map ? [string] : Type extends object ? { + [Key in Extract]: Type[Key] extends Type ? [Key] : Type extends Type[Key] ? [Key] : Type[Key] extends ReadonlyArray ? Type extends ArrayType ? [Key] : ArrayType extends Type ? [Key] : [ + Key, + ...NestedPaths + ] : // child is not structured the same as the parent + [ + Key, + ...NestedPaths + ] | [Key]; +}[Extract] : []; + +type KeysOfAType = { + [key in keyof TSchema]: NonNullable extends Type ? key : never; +}[keyof TSchema]; + +type ArrayElement = Type extends ReadonlyArray ? Item : never; + +type PropertyType = string extends Property ? unknown : Property extends keyof Type ? Type[Property] : Property extends `${number}` ? Type extends ReadonlyArray ? ArrayType : unknown : Property extends `${infer Key}.${infer Rest}` ? Key extends `${number}` ? Type extends ReadonlyArray ? PropertyType : unknown : Key extends keyof Type ? Type[Key] extends Map ? MapType : PropertyType : unknown : unknown; + +type NestedPathsOfType = KeysOfAType<{ + [Property in Join, '.'>]: PropertyType; +}, Type>; + +type MatchKeysAndValues = Readonly<{ + [Property in Join, '.'>]?: PropertyType; +} /**& { + [Property in `${NestedPathsOfType}.$${`[${string}]` | ''}`]?: ArrayElement>; + } & { + [Property in `${NestedPathsOfType[]>}.$${`[${string}]` | ''}.${string}`]?: any; + } & Document*/>; + +type obj1 = RedisCollections1; +type obj2 = RedisCollections2; +type arr1 = RedisCollectionsArr1; +type arr2 = RedisCollectionsArr2; +type hStr1 = RedisCollectionsHkey1String; +type hObj1 = RedisCollectionsHkeyObj1; +type sObj1 = RedisCollectionsSortedObj1; +type keys = keyof T; +type hkeys = keyof T; +type skeys = keyof T; +type redisPathValueType = 'integer' | 'string' | 'object' | 'boolean' | 'array' | null; +type NumericKeys = { + [K in keyof T]: T[K] extends number ? K : never; +}[keyof T]; + +export interface redisJsonFun { + /** + * 向路径处的数组值追加一个或多个值。RedisJSON.arrAppend + */ + arrAppend>(key: key, path: string, val: arr1[key][] | arr1[key]): Promise; + + arrAppend>(key: key, path: string, path1: string, val: arr2[key][] | arr2[key]): Promise; + + /** + * 向路径处的数组值插入一个或多个值。 RedisJSON.arrInsert + */ + arrInsert>(key: key, path: string, index: number, val: arr1[key][] | arr1[key]): Promise; + + arrInsert>(key: key, path: string, path1: string, index: number, val: arr2[key][] | arr2[key]): Promise; + + /** + * 获取路径处数组值的长度 RedisJSON.arrLen + */ + arrLen>(key: key, path: string): Promise; + + arrLen>(key: key, path: string, path1: string): Promise; + + /** + * 从数组中移除并返回索引处的元素。弹出空数组会返回 Null。 RedisJSON.arrPop + * @param index 数组下标 如果为-1,这表示最后一个元素。 + */ + arrPop>(key: key, path: string, index: number): Promise; + + arrPop>(key: key, path: string, path1: string, index: number): Promise; + + /** + * 删除路径上的值 RedisJSON.del + */ + del>(key: key): Promise; + + del>(key: key, path: string): Promise; + + del, path extends keys>(key: key, path: string, path1: path): Promise; + + del>(key: key): Promise; + + del>(key: key, path: string): Promise; + + del>(key: key, path: string, path1: string): Promise; + + del, path extends keys>(key: key, path: string, path1: string, path2: path): Promise; + + del>(key: key): Promise; + + del>(key: key, path: string): Promise; + + del, path extends keys>(key: key, path: `${string}[${number}]`, path1: path): Promise; + + del>(key: key): Promise; + + del>(key: key, path: string): Promise; + + del>(key: key, path: string, path1: string): Promise; + + del, path extends keys>(key: key, path: string, path1: `${string}[${number}]`, path3: path): Promise; + + del(key): Promise; + /** + * 获取路径上的值 RedisJSON.get + * @returns 没有找到返回null + * @example + * ```ts + * //一层嵌套对象 + * + * await G.redis.get('user', 'uid') //获取某个玩家的信息 + * await G.redis.get('user') //获取所有玩家 + * + * //二层嵌套对象 + * + * await G.redis.get('hero', 'uid', '_id') //获取玩家的某个英雄 + * await G.redis.get('hero', 'uid') //获取玩家的所有英雄 + * await G.redis.get('hero') //获取所有玩家的所有英雄 + * + * ``` + */ + get>(key: key): Promise>; + + get>(key: key): Promise>>; + + get>(key: key): Promise>; + + get>(key: key): Promise>>; + + get>(key: key, uid: string): Promise; + + get>(key: key, uid: string): Promise>; + + get>(key: key, k: `${string}[${number}]`): Promise; + + get>(key: key, k: string): Promise; + + get>(key: key, k: string): Promise>; + + get, path extends keys>(key: key, k: `${string}[${number}]`, path: path): Promise; + + get>(key: key, k: string, k1: `${string}[${number}]`): Promise; + + get>(key: key, k: string, k1: string): Promise; + + get, path extends keys>(key: key, uid: string, path: path): Promise; + + get>(key: key, uid: string, _id: string): Promise; + + get, path extends keys>(key: key, k: string, k1: `${string}[${number}]`, k2: path): Promise; + + get, path extends keys>(key: key, uid: string, _id: string, path: path): Promise; + + /** + * 获取多个路径上的值 基于RedisJSON.get的封装 + * @returns [val | null, val | null, ...] 需要注意的是会跟据传入参数的长度返回对应长度的数组 其中找不到的值为null + * @example + * ```ts + * //一层嵌套对象 + * + * await G.redis.gets('user', ['bindUid1'], ['bindUid2']) //获取 [bindUid1的玩家数据, bindUid2的玩家数据]; + * await G.redis.gets('user', ['bindUid1', 'lv'], ['bindUid2', 'vip']) //获取 [bindUid1玩家的lv, bindUid2玩家的vip] + * + * //二层嵌套对象 + * + * await G.redis.get('hero', ['uid1'], ['uid2']) //获取 [uid玩家的所有英雄, uid2玩家的所有英雄] + * await G.redis.get('hero', ['uid1', '_id1'], ['uid2', '_id1']) //获取 [uid玩家_id为'_id1'的英雄, uid2玩家_id为'_id1'的英雄] + * await G.redis.get('hero', ['uid1', '_id1', 'lv'], ['uid2', '_id1', 'heroId']) //获取 [uid玩家_id为'_id1'的英雄的lv, uid2玩家_id为'_id1'的英雄的heroId] + * + * ``` + */ + gets, path extends keys>(key: key, ...paths: [string, `${string}[${number}]`, path][]): Promise; + + gets, path extends keys>(key: key, ...paths: [string, string, path][]): Promise; + + gets, path extends keys>(key: key, ...paths: [`${string}[${number}]`, path][]): Promise; + + gets>(key: key, ...paths: [string, `${string}[${number}]`][]): Promise; + + gets, path extends keys>(key: key, ...paths: [string, path][]): Promise; + + gets>(key: key, ...paths: [string, string][]): Promise; + + gets>(key: key, ...paths: [string, string][]): Promise; + + gets>(key: key, ...paths: [string][]): Promise; + + gets>(key: key, ...paths: [string][]): Promise[]>; + + gets>(key: key, ...paths: [`${string}[${number}]`][]): Promise; + + gets>(key: key, ...paths: [string][]): Promise; + + /** + * 将路径上的数字值增加给定数字 RedisJSON.numIncrBy + */ + numIncrBy, path extends NumericKeys>(key: key, path: string, path1: `${string}[${number}]`, path2: path, by: number): Promise; + + numIncrBy, path extends NumericKeys>(key: key, path: string, path1: string, path2: path, by: number): Promise; + + numIncrBy, path extends NumericKeys>(key: key, path: `${string}[${number}]`, path1: path, by: number): Promise; + + numIncrBy, path extends NumericKeys>(key: key, path: string, path1: path, by: number): Promise; + + /** + * 设置路径上的值 RedisJSON.set + */ + set>(key: key, json: k_v | {}): Promise<'OK'>; + + set>(key: key, json: k_v> | {}): Promise<'OK'>; + + set>(key: key, json: k_v | {}): Promise<'OK'>; + + set>(key: key, json: k_v> | {}): Promise<'OK'>; + + set, path extends keys>(key: key, path1: string, path2: `${string}[${number}]`, path3: path, json: arr2[key][path]): Promise<'OK'>; + + set>(key: key, path1: `${string}[${number}]`, json: arr1[key]): Promise<'OK'>; + + set>(key: key, path1: string, json: arr1[key][] | []): Promise<'OK'>; + + set>(key: key, path1: string, json: k_v | {}): Promise<'OK'>; + + set>(key: key, path1: string, json: obj1[key]): Promise<'OK'>; + + set>(key: key, path1: string, json: k_v | {}): Promise<'OK'>; + + set, path extends keys>(key: key, path1: `${string}[${number}]`, path2: path, json: arr1[key][path]): Promise<'OK'>; + + set, path extends keys>(key: key, path1: string, path2: path, json: obj1[key][path]): Promise<'OK'>; + + set>(key: key, path1: string, path2: string, json: obj2[key]): Promise<'OK'>; + + set>(key: key, path1: string, path2: string, json: arr2[key][] | []): Promise<'OK'>; + + set, path extends keys>(key: key, path1: string, path2: string, path3: path, json: obj2[key][path]): Promise<'OK'>; + + set, path extends keys, path1 extends keys>(key: key, path1: string, path2: string, path3: path, path4: path1, json: obj2[key][path][path1]): Promise<'OK'>; + + + /** + * 设置hash格式的数据 + * @param key + * @param hash + * @param value + */ + hSet>(key: key, hash:string, value: number | string):Promise; + + hSet>(key: key, hash:string, value: hObj1[key]):Promise; + + // 变量传key无法通过检测时,不做强制key类型验证。 + hSet(key: key, hash:string, value: any):Promise; + + /** + * 获取hash格式的数据 + * @param key + * @param hash + */ + hGet>(key: key, hash:string): Promise; + + hGet>(key: key, hash:string): Promise; + + // 变量传key无法通过检测时,不做强制key类型验证。 + hGet(key: key, hash:string): Promise; + + /**获取全部的hash数据 */ + hGetAll>(key: key):Promise; + + hGetAll(key: key):Promise; + + /**获取hash的长度 */ + hLen>(key: key):Promise; + + hLen(key: key):Promise; + + /**删除指定hash的某个field */ + hDel>(key: key, field: string):Promise; + + hDel(key: key, field: string):Promise; + /** + * 写入排名数据 + * @param key + */ + zAdd>(key: key, member: sObj1[key]): Promise; + + zAdd(key: key, member: sortEd|sortEd[]): Promise; + + /** + * 取出范围索引的排名数据 + * @param key + */ + zRange>(key: key, min: number, max: number): Promise; + + zRange(key: key, min: number, max: number): Promise; + + /** + * 取出指定member排名数据 + */ + zRank>(key: key, member: string): Promise; + + zRank(key: key, member: string): Promise; + + /** + * 取出指定member排名数据-倒叙 + */ + zRevRank>(key: key, member: string): Promise; + + zRevRank(key: key, member: string): Promise; + + /** + * 删除指定member排名数据 + */ + zRem>(key: key, member: string): Promise; + + zRem(key: key, member: string): Promise; + + /** */ + /** + * 排行榜总数 + * @param key + */ + zCard>(key: key): Promise; + + zCard(key: key): Promise; + + /***- + * 获取路径上值的类型 RedisJSON.type + */ + type>(key: key): Promise; + + type>(key: key, path: string): Promise; + + type, path extends keys>(key: key, path: string, path1: path): Promise; + + type>(key: key): Promise; + + type>(key: key, path: string): Promise; + + type>(key: key, path: string, path1: string): Promise; + + type, path extends keys>(key: key, path: string, path1: string, path2: path): Promise; + + type>(key: key): Promise; + + type>(key: key, path: string): Promise; + + type, path extends keys>(key: key, path: `${string}[${number}]`, path1: path): Promise; + + type>(key: key): Promise; + + type>(key: key, path: string): Promise; + + type>(key: key, path: string, path1: string): Promise; + + type, path extends keys>(key: key, path: string, path1: `${string}[${number}]`, path3: path): Promise; + + chkRedis: any + + fromatKey(key: string, state?: 'del' | 'numIncrBy' | 'type' | 'get' | 'set' | 'arrAppend' | 'arrPop' | 'arrLen' | 'arrInsert' | null); + +} \ No newline at end of file diff --git a/src/setStartAfther.ts b/src/setStartAfther.ts new file mode 100644 index 0000000..a64e940 --- /dev/null +++ b/src/setStartAfther.ts @@ -0,0 +1,113 @@ +import { GanHaiRed } from './api_s2c/ganhai/ApiOpen'; +import { FriendManage } from './public/friend/manage'; +import { GHManage } from './public/gonghui/manage'; +import { JJCFun } from './public/jjc'; +import { RankClslCross } from './public/rank/rank_clsl'; +import { RankHbzbJfsCross, RankHbzbJfsLocal, RankHbzbZbsCross } from './public/rank/rank_hbzb_jfs'; +import { RankKbzz } from './public/rank/rank_kbzz'; +import { RankPower } from './public/rank/rank_power'; +import { RankQjzzd } from './public/rank/rank_qjzzd'; +import { RankSlzd1, RankSlzd2, RankSlzd3, RankSlzd4, RankSlzd5, RankSlzd6 } from './public/rank/rank_slzd'; +import { RankTanXian } from './public/rank/rank_tanxian'; +import { RankTujian } from './public/rank/rank_tujian'; +import { RankWzryCross } from './public/rank/rank_wzry'; +import { RankXszm } from './public/rank/rank_xszm'; +import { RankZccg } from './public/rank/rank_zccg'; +import { SchedulerClslCrossCtor, SchedulerClslLocalCtor, SchedulerClslPrize } from './public/scheduler/scheduler_clsl'; +import { Scheduler_hbzb_corss_reset, Scheduler_hbzb_jfs_local_prize, Scheduler_hbzb_local_reset, Scheduler_hbzb_zbs_cross_ready, Scheduler_hbzb_zbs_local_prize } from './public/scheduler/scheduler_hbzb'; +import { SchedulerJJC } from './public/scheduler/scheduler_jjc'; +import { SchedulerKbzzAutoApply, SchedulerKbzzGroup } from './public/scheduler/scheduler_kbzz'; +import { SchedulerQjzzd } from './public/scheduler/scheduler_qjzzd'; +import { SchedulerSlzdClean, SchedulerSlzdPrize } from './public/scheduler/scheduler_slzd'; +import { SchedulerWzryAutoBaoMing, SchedulerWzryDlDjinji, SchedulerWzryDlDstart, SchedulerWzryWangZhefour, SchedulerWzryWangZheone, SchedulerWzryWangZhethree, SchedulerWzryWangZhetwo, SchedulerWzryWangzheSendPrize, SchedulerWzryWangzheWZZD, SchedulerWzryZuanshiOne, SchedulerWzryZuanshiSendPrize, SchedulerWzryZuanshiThree, SchedulerWzryZuanshiTwo, SchedulerWzryZuanshifour, SchedulerWzrycrossEmail, SchedulerWzryendDel, SchedulerWzryjingcaiSendPrize } from './public/scheduler/scheduler_wzry'; +// import { SchedulerWzryAutoBaoMing } from './public/scheduler/scheduler_wzry'; +import { SchedulerZhanLing } from './public/scheduler/scheduler_zhanling'; +import {SchedulerNewDayLocalCtor} from "./public/scheduler/scheduler_newDay"; +import { clusterRunOnce } from './clusterUtils'; +export async function startAfter() { + + if (G.argv.serverType == 'msg') { + JJCFun.init(); + GHManage.init(); + FriendManage.init(); + + new RankXszm(); + new RankPower(); + new RankQjzzd(); + new RankHbzbJfsLocal(); + new RankTanXian(); + + new RankSlzd1(); + new RankSlzd2(); + new RankSlzd3(); + new RankSlzd4(); + new RankSlzd5(); + new RankSlzd6(); + + new RankZccg(); + new RankTujian(); + + clusterRunOnce(()=>{ + //只执行一次 + new SchedulerJJC(); + new SchedulerQjzzd(); + new SchedulerZhanLing(); + new Scheduler_hbzb_local_reset(); + new Scheduler_hbzb_jfs_local_prize(); + new Scheduler_hbzb_zbs_local_prize(); + new SchedulerKbzzAutoApply(); + + new SchedulerSlzdClean(); + new SchedulerSlzdPrize(); + + new SchedulerClslPrize(); + new SchedulerClslLocalCtor(); + new SchedulerWzryAutoBaoMing(); + new SchedulerWzryjingcaiSendPrize(); + new SchedulerWzryendDel(); + new SchedulerWzrycrossEmail(); + + new SchedulerNewDayLocalCtor(); + }); + + GanHaiRed.init(); + + G.mongodb.find('user',{},['uid']).then(arr => { + // 在线用户,循环写入redis + arr.forEach(async u => G.redis.hSet('player:uids', u.uid, 1)) + }); + + // G.mongodb.collection('payLog').find({}).toArray().then(arr => { + // arr.forEach(a => { + // let { _id, uid, ...logs } = a; + // G.redis.hSet('player:payLog', uid, logs) + // }); + // }); + + } else if (G.argv.serverType == 'cross') { + + RankKbzz.init(); + new RankClslCross(); + new RankHbzbJfsCross().loadAllPlayer(); + new RankHbzbZbsCross(); + new RankWzryCross(); + + new SchedulerKbzzGroup(); + new Scheduler_hbzb_corss_reset(); + new Scheduler_hbzb_zbs_cross_ready(); + new SchedulerClslCrossCtor(); + new SchedulerWzryDlDstart(); + new SchedulerWzryDlDjinji(); + new SchedulerWzryZuanshiOne(); + new SchedulerWzryZuanshiTwo(); + new SchedulerWzryZuanshiThree(); + new SchedulerWzryZuanshifour(); + new SchedulerWzryZuanshiSendPrize(); + new SchedulerWzryWangZheone(); + new SchedulerWzryWangZhetwo(); + new SchedulerWzryWangZhethree(); + new SchedulerWzryWangZhefour(); + new SchedulerWzryWangzheSendPrize(); + new SchedulerWzryWangzheWZZD(); + } +} \ No newline at end of file diff --git a/src/setWs.ts b/src/setWs.ts new file mode 100644 index 0000000..5bbc9fc --- /dev/null +++ b/src/setWs.ts @@ -0,0 +1,209 @@ +import { existsSync, readFileSync } from 'fs'; +import { join, resolve } from 'path'; +import { LogLevel, WsServer } from 'tsrpc'; +import { ServiceType as ServiceTypeCross, serviceProto as serviceProtoCross } from './cross/protocols/serviceProto'; +import { Encrypt } from './encrypt'; +import { FightFun } from './public/fight'; +import { PayFun } from './public/pay'; +import { Rank } from './public/rank/rank'; +import { createWsClient } from './setWsClient'; +import { MsgPay } from './shared/protocols/msg_c2s/MsgPay'; +import { ServiceType, serviceProto } from './shared/protocols/serviceProto'; +import { player } from './shared/protocols/user/type'; +import { unQueueByConn } from './api_s2c/user/ApiLogin'; + +export async function createWs() { + + if (G.argv.serverType == 'cross') { + G.serverCross = new WsServer(serviceProtoCross, { + port: G.config.crossPort, + json: true, + //API超时时间5分钟,为登陆排队做准备 + apiTimeout:300000, + logLevel: G.argv.logModel as LogLevel + }); + setCrossWs(G.serverCross); + await G.serverCross.autoImplementApi(resolve(__dirname, 'api_cross'), true); + await G.serverCross.start(); + } else { + G.server = new WsServer(serviceProto, { + port: G.config.msgPort, + logLevel: G.argv.logModel as LogLevel, + wss: getWssFile(), + //API超时时间5分钟,为登陆排队做准备,只针对游服 + apiTimeout:300000, + }); + setWs(G.server); + await G.server.autoImplementApi(resolve(__dirname, 'api_s2c'), true); + await G.server.start(); + + G.argv.serverType == 'msg' && G.config.corssWsUrl && await createWsClient(); + } +} + +function getWssFile() { + + if (G.config.wss.key && G.config.wss.cert && existsSync(join(__dirname, '../' + G.config.wss.key)) && existsSync(join(__dirname, '../' + G.config.wss.cert))) { + + return { + key: readFileSync(join(__dirname, '../' + G.config.wss.key)), + cert: readFileSync(join(__dirname, '../' + G.config.wss.cert)) + }; + } else { + return null; + } +} + +function setWs(server: WsServer) { + + encryptWs(server); + + server.uid_connections = {}; + + //客户端连接后 + server.flows.postConnectFlow.push(conn => { + conn.requstApiTime = {}; + return conn; + }); + + //客户端断开连接后 + server.flows.postDisconnectFlow.push(node => { + unQueueByConn(node.conn); + //玩家断开后以玩家uid对socket连接进行解绑 + if (node.conn.uid && server.uid_connections[node.conn.uid] && server.uid_connections[node.conn.uid] == node.conn) { + server.uid_connections[node.conn.uid] = null; + delete server.uid_connections[node.conn.uid]; + } + node.conn.uid && G.emit('PLAYER_DISCONNECT', node.conn.uid); + return node; + }); + + //执行 API 接口实现之前 + server.flows.preApiCallFlow.push(async call => { + + //是否短时间内重复请求某个api + let timeIntervalLimit = call.service.conf?.timeIntervalLimit == undefined ? 500 : call.service.conf?.timeIntervalLimit; + if (new Date().getTime() - call.conn.requstApiTime[call.service.name] < timeIntervalLimit) { + call.error('', { code: -1, message: '', time: timeIntervalLimit }); + return null; + } else { + call.conn.requstApiTime[call.service.name] = new Date().getTime(); + } + + if (call.service.conf?.needGudKey?.length > 0) { + let gud: player; + gud = call.conn.gud; + + for (let key of call.service.conf.needGudKey) { + if (!gud[key]) { + call.error(`you need has ${key}`); + return null; + } + } + } + + //判断是否登录 + if (!['user/Ping', 'user/Login'].includes(call.service.name) && !call.conn.uid) { + call.error(globalThis.lng.qingxiandenglu); + return null; + } + + return call; + }); + + server.flows.preApiReturnFlow.push(node => { + // if (!node.return.isSucc && node.return.err && node.return.err.type == "ApiError") { + // if (node.return.err?.message){ + // node.return.err.message = "" + // node.call.return.err.message = "" + // } + // } + return node; + }); + + //API 接口返回结果(call.succ、call.error)之后 + server.flows.postApiReturnFlow.push(node => { + + //接口响应速度统计 + let startTime = node.call.conn.requstApiTime[node.call.service.name] + if(startTime && node.return.isSucc && G.mongodb){ + let needTime = new Date().getTime() - startTime; + G.mongodb.collection("apiCount").updateOne( + {api: node.call.service.name}, + {$inc: {callnums: 1, needtimes: needTime}}, + {upsert: true} + ) + } + //玩家登陆后以玩家uid对socket连接进行绑定 + if (node.call.service.name == 'user/Login' && node.return.isSucc) { + //玩家uid已经登陆在线 通知账号在其他地方登录 + const uid = node.return.res.gud.uid; + const loginConn = server.uid_connections[uid]; + if (loginConn) { + loginConn.sendMsg('msg_s2c/OtherLogin', loginConn.ip).then(v => { + loginConn.close('otherLogin'); + }); + } + server.uid_connections[uid] = node.call.conn; + } + + G.emit('API_CALL', node); + + return node; + }); + + server.listenMsg(/^msg_c2s\//, async msgHandler => { + + switch (msgHandler.service.name as (keyof ServiceType['msg'] & `msg_c2s/${string}`)) { + case 'msg_c2s/Pay': + let msgPay = msgHandler.msg as MsgPay; + PayFun.check(msgHandler.conn.gud, msgPay.id, msgPay.args); + break; + } + }); +} + +function setCrossWs(server: WsServer) { + + // encryptWs(server); + + server.listenMsg('msg_cross/CrossChat', msg => { + server.connections.forEach(conn => conn.sendMsg('msg_cross/CrossChat', msg.msg)); + }); + + server.listenMsg('msg_cross/HbzbSendUser', sendData => { + Rank.list.hbzbCross.addNew(sendData.msg.user); + }); + + server.listenMsg('msg_cross/HbzbJfsLog', handle => { + Rank.list.hbzbCross.addJfsLog(handle.msg.uid, handle.msg.log); + Rank.list.hbzbCross.addJfsLog(handle.msg.toUid, handle.msg.log); + }); + + server.listenMsg('msg_cross/HbzbZbsLog', handle => { + FightFun.saveLog(handle.msg.uid, 'hbzbZbs', handle.msg.log); + FightFun.saveLog(handle.msg.toUid, 'hbzbZbs', handle.msg.log); + }); + + server.listenMsg('msg_cross/HbzbChangeRank', handle => { + Rank.list.hbzbZbsCross.changeRank(handle.msg.uid, handle.msg.toUid); + }); +} + +/**数据传输加解密 */ +function encryptWs(server: WsServer) { + //处理收到的数据前 + server.flows.preRecvDataFlow.push(node => { + // 接收前解密 + node.data = Encrypt.decrypt(node.data); + return node; + }); + + //发送数据前 + server.flows.preSendDataFlow.push(node => { + // 发送前加密 + node.data = Encrypt.encrypt(node.data); + return node; + }); +} + diff --git a/src/setWsClient.ts b/src/setWsClient.ts new file mode 100644 index 0000000..5dc5b14 --- /dev/null +++ b/src/setWsClient.ts @@ -0,0 +1,35 @@ +import { LogLevel, WsClient, WsClientStatus } from 'tsrpc'; +import { serviceProto } from './cross/protocols/serviceProto'; +import { ChatFun } from './public/chat'; + +/**创建跨服连接对象 */ +export async function createWsClient() { + + G.clientCross = new WsClient(serviceProto, { + server: G.config.corssWsUrl, + logLevel: G.argv.logModel as LogLevel, + json: true + }); + let result = await G.clientCross.connect(); + if (!result.isSucc) return console.log('connect cross server fail: ', result.errMsg); + else console.log(`connect cross server succ at ${G.config.corssWsUrl}`); + + G.clientCross.listenMsg('msg_cross/CrossChat', sendData => { + ChatFun.newMsg(sendData); + }); +} + +let count = 0; +export function checkCrossWsIsDisconnect() { + count++; + if (count == 5) { + if (G.config.corssWsUrl && G.clientCross?.status == WsClientStatus.Closed) { + try { + G.clientCross.connect(); + } catch (error) { + + } + } + count = 0; + } +} \ No newline at end of file diff --git a/src/shared/apiRoute.ts b/src/shared/apiRoute.ts new file mode 100644 index 0000000..8e1dbd8 --- /dev/null +++ b/src/shared/apiRoute.ts @@ -0,0 +1,27 @@ +import { ServiceType } from './protocols/serviceProto'; + + +export const msgApi: Array = [ + 'chat/Send', 'chat/Private', 'chat/Help', + 'jjc/Open', 'jjc/Refresh', 'jjc/Fight', + 'rank/Open', + 'user/ChangeName', + 'pay/GetList', + 'event/xianshizhaomu/Lottery', + 'conglinshoulie/Find', 'conglinshoulie/Open', + 'hongdian/Get' +]; + +export const msgApiDir: Array = [ + 'gonghui', + 'friend', + 'hbzb', + 'slzd', + 'kbzz', + 'wzry' +]; + +export const msgMsg: Array<`msg_c2s${string}` & keyof ServiceType['msg']> = [ + 'msg_c2s/BindUid', + 'msg_c2s/Pay' +]; \ No newline at end of file diff --git a/src/shared/fightControl/Player.ts b/src/shared/fightControl/Player.ts new file mode 100644 index 0000000..ed5e2db --- /dev/null +++ b/src/shared/fightControl/Player.ts @@ -0,0 +1,172 @@ +import { Role } from "./Role"; +import { RunAfterSkill } from "./afterSkill"; +import { BuffBase } from "./fightBuff/buffBase"; +import * as BuffClass from './fightBuff/buffExtends'; +import { FightControl } from "./fightCntrol"; +import { getSkillConf, randNumber, randomSkill } from "./fightFun"; +import { buffDataType, dpsinfoType, joinFightData, modifyHpType, roleDataType } from "./fightType"; +import { runPassiveSkillBase } from "./passiveSkill/runPassiveSkill"; +import { SkillBase } from "./skill/skillBase"; + +export class Player { + rid: string; + curAtkSkill: SkillBase; + /**记录技能的选中目标 */ + skillTargets: k_v = {}; + lastSkillTargets: Role[] = []; + lastSkillId: string; + lastHitMe: Role = null; + buffs: k_v = {}; + passiveSkills: k_v = {}; + /**主动复活英雄数量*/ + activeResurrect = 0; + get isDead() { return false; } + get lockHp() { return false; } + get rolePlayer() { return this } + + skillIdx = 0; + skillLv = 1; + hudunzhi = 0; + addpkNum = 0; + fightSkills: string[] = []; + get skillId() { + let skillid = this.fightSkills[this.skillIdx]; + const xljhConf = G.gc.xunlianjihua; + if (skillid != "") this.skillLv = this.roleData.skills[skillid]; + let skillConf: any = xljhConf[skillid]; + let mofa = this.getData('mofa'); + let nuqi = skillConf?.nuqi || 0; + if (mofa < nuqi) return ""; + this.setData('mofa', mofa - nuqi); + this.fightControl.record({ + act: 'playerNuqi', + fromRole: this.rid, + maxnuqi: this.getData('maxmofa'), + nuqi: this.getData('mofa') + }); + this.skillIdx++; + this.skillIdx = this.skillIdx > this.fightSkills.length - 1 ? 0 : this.skillIdx; + + return skillConf?.skill || ""; + } + + isHasFightSkills: boolean; + get _isHasFightSkills() { + if (!this.roleData.fightSkills) return false; + let _fightSkills = Object.values(this.roleData.fightSkills); + let fightSkills = _fightSkills.filter(v => v != ''); + return fightSkills.length > 0; + } + get isCanAtk() { return false; } + getLastTargetsBySkillID(skillid: string) { + /**获取最后一次触发skillid技能时,该技能的选敌目标*/ + return this.skillTargets[skillid] || []; + } + constructor(public fightControl: FightControl, public roleData: joinFightData['player']) { + this.rid = 'player_' + roleData.side + '_' + roleData.pos; + this.isHasFightSkills = this._isHasFightSkills; + if (this.isHasFightSkills) { + let fightSkills = Object.values(this.roleData.fightSkills); + fightSkills = fightSkills.filter(v => v != ''); + fightSkills = fightSkills.concat(["", ""]); + this.fightSkills = fightSkills; + } + + if (this.roleData?.buff?.backmp) { + this.fightControl.event.on('fightEvent_roundNums', this.backmp.bind(this), this); + } + } + backmp(data: { turn: number; }) { + let mofa = this.getData('mofa'); + mofa += this.roleData?.buff?.backmp; + mofa = mofa >= this.getData('maxmofa') ? this.getData('maxmofa') : mofa; + this.setData('mofa', mofa); + this.fightControl.record({ + act: 'playerNuqi', + fromRole: this.rid, + maxnuqi: this.getData('maxmofa'), + nuqi: this.getData('mofa') + }); + } + + runSkillClass() { + let _skillId = this.skillId; + if (_skillId == "") return; + let skillconf = getSkillConf(_skillId); + if (!skillconf) console.error('没有技能-->' + _skillId); + return new SkillBase(this, skillconf); + } + + atk() { + + this.curAtkSkill = this.runSkillClass(); + } + bloodReturn() { } + attr = { + speed: 99999, + atk: this.roleData.buff?.zj_atk || 0, + def: this.roleData.buff?.zj_def || 0, + zhishi: this.roleData.buff?.zj_zhishi || 0, + liliang: this.roleData.buff?.zj_liliang || 0, + mofa: this.roleData.buff?.zj_mofa || 0, + maxmofa: this.roleData.buff?.zj_mofa || 0, + } + + setData(key: string, val: number) { + this.attr[key] = val; + } + getData(key: string, defaultValue: number = 0) { + return this.attr[key] || this.roleData[key] || defaultValue; + } + getDataPro(key: string) { + return this.attr[key] || this.roleData[key] || 0; + } + + modifyHp(dpsinfo: dpsinfoType, extData: modifyHpType) { } + _modifyHp(dpsinfo: dpsinfoType, extData: modifyHpType) { } + + isWillDead(dpsinfo: dpsinfoType, extData: modifyHpType) { return false; } + + Dead() { } + + /** + * + * @param skillinfo :「施放者 作用目标 施放的主技能 当前技能 作用目标数」 + */ + runAfterSkill(skillinfo: { fromRole: Role, toRole: Role, fromSkill: SkillBase, skillConf: k_v, targetCount: number; }, where?: string) { + let skillconf = skillinfo.skillConf; + let runSkillInfo = null; + switch (skillconf.type) { + case 1: + // 主动技能 + console.error('主动技能不可通过runskill来调用'); + break; + case 2: + // 被动技能 + var passiveid = skillinfo.skillConf.skillid; + skillinfo.toRole.clearAllPassiveSkill('clear', function (skill) { + return skill.skillConf.skillid == passiveid; + }); + runPassiveSkillBase(skillinfo); + break; + case 3: + // 攻击后技能 + runSkillInfo = RunAfterSkill.run(skillinfo, where); + break; + } + return runSkillInfo; + } + + addBuff(buffdata: buffDataType) { } + getBuffByType(sxleixing: string | string[]) { return []; } + getBuffByGroup(buffgroup: string) { return null; } + hasbuff(buffid: string): boolean { return false; } + clearAllBuff(why: string, filter?: (skill: k_v) => boolean) { } + clearAllPassiveSkill(why: string, filter?: (skill: k_v) => boolean) { } + clearBuff(sxleixing: string) { } + debug(callback: () => void) { + //callback(); + } +} + + diff --git a/src/shared/fightControl/Role.ts b/src/shared/fightControl/Role.ts new file mode 100644 index 0000000..f3e4644 --- /dev/null +++ b/src/shared/fightControl/Role.ts @@ -0,0 +1,430 @@ +import {random} from "mathjs"; +import {player} from "../protocols/user/type"; +import {Player} from "./Player"; +import {RunAfterSkill} from "./afterSkill"; +import {BuffBase} from "./fightBuff/buffBase"; +import * as BuffClass from './fightBuff/buffExtends'; +import {FightControl} from "./fightCntrol"; +import {getSkillConf, randNumber, randomSkill} from "./fightFun"; +import { + EmitDataType, + FightObj, + afterSkillType, + atkRoleInfo_Type, + buffDataType, + dpsinfoType, + joinFightData, + modifyHpType, + roleDataType +} from "./fightType"; +import {runPassiveSkillBase} from "./passiveSkill/runPassiveSkill"; +import {SkillBase} from "./skill/skillBase"; +import { PublicShared } from "../public/public"; + +export class Role { + rid: string; + curAtkSkill: SkillBase; + /**记录技能的选中目标 */ + skillTargets: k_v = {}; + lastSkillTargets: Role[] = []; + lastSkillId: string; + _lastHitMe: FightObj = null; + buffs: k_v = {}; + passiveSkills: k_v = {}; + /**主动复活英雄数量*/ + activeResurrect = 0; + skillLv = 1; + hudunzhi = 0; + addpkNum = 0; + + get skillId() { + let heroId = this.roleData.heroId; + let jieji = this.roleData.jieji || 0; + let heroskill = G.gc.heroskill[heroId][jieji].skill; + return randomSkill(heroskill); + } + + get isDead() { + return this.roleData.dead || false; + } + + get lockHp() { + return this.roleData.lockHp || false; + } + + get isCanAtk() { + return this.hasbuff('xuanyun') || this.hasbuff('kongju') || this.hasbuff('shuimian'); + } + + get rolePlayer() { + const side = this.roleData.side; + return this.fightControl['player_' + side]; + } + + get lastHitMe() { + return this._lastHitMe; + } + + set lastHitMe(role: FightObj) { + if (role.rid.indexOf('player') != -1) return; + this._lastHitMe = role; + } + + get isHasFightSkills() { + return true; + } + + getLastTargetsBySkillID(skillid: string) { + /**获取最后一次触发skillid技能时,该技能的选敌目标*/ + return this.skillTargets[skillid] || []; + } + + constructor(public fightControl: FightControl, public roleData: roleDataType) { + this.rid = 'role_' + roleData.side + '_' + roleData.pos; + } + + runSkillClass() { + let _skillId = this.skillId; + let skillconf = getSkillConf(_skillId); + if (!skillconf) console.error('没有技能-->' + _skillId); + this.debug(() => { + console.log(`#runSkillClass~~~rid-->${this.rid} skillid-->${_skillId}`); + }); + + return new SkillBase(this, skillconf); + } + + atk() { + if (this.isCanAtk) return; + this.fightControl.event.emit('fightEvent_startatk', { + toRole: this + }); + this.curAtkSkill = this.runSkillClass(); + this.bloodReturn(); + this.debug(() => { + console.log(`this.rid is atking`); + }); + } + + /** + * 攻击完,回血量的计算 + * @param dpsinfo + */ + bloodReturn(dpsinfo?: { targets: string[], rolesInfo: k_v; }) { + if (this.hasbuff("noaddhp")) return; + + let changehp = 0; + let curHp = this.getData('hp'); + let curMaxHp = this.getData('maxHp'); + + if (dpsinfo != undefined) { + let xixuepro = this.getDataPro('xixue') - this.getData('addhpdrop'); + let dps = 0; + for (let key in dpsinfo.rolesInfo) { + dps += (dpsinfo.rolesInfo[key].ov - dpsinfo.rolesInfo[key].nv); + } + changehp = Math.abs(dps) * xixuepro; + } else { + let addhp = this.getData('addhp') - this.getData('addhpdrop'); + let addmaxhp = this.getData('addmaxhp') - this.getData('addhpdrop'); + changehp = curHp * addhp + curMaxHp * addmaxhp; + } + if (changehp == 0) return; + let nv = curHp + changehp; + nv = nv > curMaxHp ? curMaxHp : nv; + this.setData('hp', nv); + this.fightControl.record({ + act: 'addHp', + fromRole: this.rid, + why: 'buff', + buffId: "", + ov: curHp, + nv: nv + }); + } + + setData(key: string, val: number) { + this.roleData.attr[key] = val; + } + + getData(key: string, defaultValue: number = 0) { + if (key == 'lv' && (this.roleData.attr['trueLv'] || this.roleData['trueLv'])) key = 'trueLv' + let keydata = this.roleData.attr[key]; + if (!keydata) return this.roleData[key] || defaultValue; + return keydata; + } + + getDataPro(key: string) { + return this.getData(key + 'pro') - this.getData(key + 'drop'); + } + + modifyHp(dpsinfo: dpsinfoType, extData: modifyHpType) { + let will = this.isWillDead(dpsinfo, extData); + if (will) { + this.fightControl.event.emit('fight_willDead', {toRole: this}); + } + this._modifyHp(dpsinfo, extData); + } + + _modifyHp(dpsinfo: dpsinfoType, extData: modifyHpType) { + if (this.isDead) return; + + if (/* dpsinfo.num == 0 || */this.lockHp) return; + + if (dpsinfo.num < 0) { + //记录总伤害 + const _side = this.roleData.side == "0" ? "1" : "0"; + this.fightControl.totalDamage[_side] += Math.abs(dpsinfo.num); + + //统计每个英雄的战斗数据 + this.fightControl.recordStatistics(dpsinfo.fromRole, 'hit', Math.abs(dpsinfo.num)); + this.fightControl.recordStatistics(dpsinfo.toRole, "def", Math.abs(dpsinfo.num)); + } else if (dpsinfo.num > 0) { + } + + let dpsNum = dpsinfo.num; + + if (this.hudunzhi > 0 && dpsNum < 0) { + dpsNum += this.hudunzhi; + if (dpsNum > 0) dpsNum = 0; + this.hudunzhi += dpsinfo.num; + if (this.hudunzhi < 0) this.hudunzhi = 0; + } + + let hp = this.getData('hp') + dpsNum; + if (hp < 0) hp = 0; + if (hp > this.getData('maxHp')) hp = this.getData('maxHp'); + this.setData('hp', hp); + if (hp == 0) this.Dead(dpsinfo, extData); + + //afterSkill_atkdamage和afterSkill_bisha的skillType是afterAtk + //只有这2种原因引起的掉血,才会广播byatk和doatk + if (dpsinfo.num <= 0 && dpsinfo.fromRole.rid != dpsinfo.toRole.rid && extData.skillType == 'afterAtk') { + this.fightControl.event.emit('fightEvent_byatk', { + fromRole: dpsinfo.fromRole, //攻击者 + toRole: this, //被击者 + skillId: extData.skillId, + skillType: extData.skillType, + dps: dpsinfo.num + }); + + this.fightControl.event.emit('fightEvent_doatk', { + fromRole: this, //受击 + toRole: dpsinfo.fromRole, //攻击 + skillId: extData.skillId, + skillType: extData.skillType, + dps: dpsinfo.num + }); + } + } + + isWillDead(dpsinfo: dpsinfoType, extData: modifyHpType) { + if (this.lockHp || dpsinfo.dps > 0) return false; + + /** 后续这里还要添加护盾的血量值计算 */ + + let hp = this.getData('hp') + dpsinfo.dps; + return hp <= 0; + } + + Dead(dpsinfo: dpsinfoType, extData: modifyHpType) { + this.roleData.dead = true; + this.clearAllBuff('roleDead'); + this.clearAllPassiveSkill('roleDead'); + this.fightControl.record({act: 'roleDead', isFuhou: false, fromRole: this.rid}); + this.fightControl.event.emit('fightEvent_dead', { + toRole: this, + fromRole: dpsinfo.fromRole + }); + // this.fightControl.checkFightEnd() + } + + /** + * + * @param skillinfo :「施放者 作用目标 施放的主技能 当前技能 作用目标数」 + */ + runAfterSkill(skillinfo: afterSkillType, where?: string) { + let skillconf = skillinfo.skillConf; + let runSkillInfo = null; + switch (skillconf.type) { + case 1: + // 主动技能 + console.error('主动技能不可通过runskill来调用'); + break; + case 2: + // 被动技能 + var passiveid = skillinfo.skillConf.skillid; + skillinfo.toRole.clearAllPassiveSkill('clear', function (skill) { + return skill.skillConf.skillid == passiveid; + }); + runPassiveSkillBase(skillinfo); + break; + case 3: + // 攻击后技能 + runSkillInfo = RunAfterSkill.run(skillinfo, where); + break; + } + + return runSkillInfo; + } + + addBuff(buffdata: buffDataType) { + // if (!checkBuffEmit(this, buffdata.toRole, buffdata.skillConf.checkData)) return; + let randnum = buffdata.skillConf.randnum; + if (typeof randnum == 'string') { + randnum = PublicShared.eval(randnum, {slv: this.skillLv}); + } + if (randNumber() > randnum) return; + let group = buffdata.skillConf.group; + /**同一buff组, 只能存在一个buff + buff组是否有相同的,如果有,则判断已存在的buff的buffid,如果不一样,则先清掉原来的,再叠加新的*/ + let sameGroupBuff = this.getBuffByGroup(group); + if (sameGroupBuff && sameGroupBuff.data.buffid != buffdata.buffid) { + sameGroupBuff.clear('sameGroup'); + } + + let oldBuff = this.buffs[buffdata.buffid]; + // 叠加层数=0,表示不能叠加,则先清掉原来的,再叠加新的 + + let buffType = buffdata.skillConf.sxleixing; + if (buffType == 'attr') { + buffType = Object.keys(buffdata.skillConf.xiaoguocanshu); + } else { + buffType = [buffType]; + } + + // if (!oldBuff || buffdata.skillConf.diejiacengshu == "0") { + if (!oldBuff || oldBuff.remainingRounds < 0) { + // oldbuff在剩余0回合的时候,重新施加,不需要清除,会造成重复清除 + // oldBuff && oldBuff.clear('oldbuff'); + //直接新加buff + this.debug(function () { + console.log(`### buff 触发buff buffid:${buffdata.buffid} 生效类型:${buffdata.skillConf.skillConf.sxleixing}`); + }); + let sxleixing = buffdata.skillConf.sxleixing; + + if (BuffClass['Buff_' + sxleixing]) { + this.buffs[buffdata.buffid] = new BuffClass['Buff_' + sxleixing](buffdata); + } else { + // 比如修改数值类的buff, 基类统一处理 + this.buffs[buffdata.buffid] = new BuffBase(buffdata); + } + + buffType.forEach(_type => { + this.fightControl.record({ + act: 'addBuff', + fromRole: buffdata.fromRole.rid, + toRole: buffdata.toRole.rid, + skillId: buffdata.buffid, + buffType: _type, + buffId: this.buffs[buffdata.buffid]._BuffId + }); + }) + + this.buffs[buffdata.buffid] && this.buffs[buffdata.buffid].start(); + return; + } + + + // 叠加效果:retime = 重置回合 overlaponly = 不重置回合,仅叠加效果 + if (oldBuff) { + this.debug(function () { + console.log('### buff 叠加效果:', oldBuff.data.diejiaxiaoguo); + }); + + /** 这里重置buff是不需要发送添加buff的,只需要重置剩余回合 */ + // buffType.forEach(_type => { + // this.fightControl.record({ + // act: 'addBuff', + // fromRole: buffdata.fromRole.rid, + // toRole: buffdata.toRole.rid, + // skillId: buffdata.buffid, + // buffType: _type, + // buffId: oldBuff._BuffId + // }); + // }) + + // todo 目前没有需要叠加的buff,如需要添加,这部分逻辑可能要修改 + if (oldBuff.data.skillConf.jiejiaxiaoguo == 'retime') { + // 重置持续回合 + oldBuff.retime(); // buffdata,{'newBuff':true} + } else if (oldBuff.data.skillConf.jiejiaxiaoguo == 'overlaponly') { + // 叠加效果, 且持续回合不变 + oldBuff.overlaponly(buffdata, {'newBuff': true}); + } else if (oldBuff.data.skillConf.jiejiaxiaoguo == 'overlap') { + // 叠加效果, 且重置回合 + if (oldBuff.overlaponly(buffdata, {'newBuff': true})) { + oldBuff.retime(); // buffdata + } + } else { + console.error('未知jiejiaxiaoguo=', oldBuff.data.skillConf.jiejiaxiaoguo); + } + } + } + + getBuffByType(sxleixing: string | string[]) { + let rebuffs = []; + sxleixing = [].concat(sxleixing); + for (let key in this.buffs) { + if (sxleixing.indexOf(this.buffs[key].data.skillConf.sxleixing) > -1) { + rebuffs.push(this.buffs[key]); + } + } + return rebuffs; + } + + /**同一buff组,只能存在一个buff */ + getBuffByGroup(buffgroup: string) { + for (var buffid in this.buffs) { + if (this.buffs[buffid].data.skillConf.group == buffgroup) { + return this.buffs[buffid]; + } + } + return null; + } + + hasbuff(buffid: string): boolean { + return this.getBuffByType(buffid).length > 0; + } + + clearAllBuff(why: string, filter?: (skill: k_v) => boolean) { + for (let buffid in this.buffs) { + if (!filter || filter(this.buffs[buffid])) { + this.buffs[buffid].clear('clearAll_' + why); + } + } + } + + clearBuff(sxleixing: string) { + let buff = this.getBuffByType(sxleixing); + buff.forEach(_b => { + _b.clear(); + }) + } + + clearAllPassiveSkill(why: string, filter?: (skill: k_v) => boolean) { + for (let skillid in this.passiveSkills) { + if (!filter || filter(this.passiveSkills[skillid])) { + this.passiveSkills[skillid].clear('clearAll_' + why); + } + } + } + + debug(callback: () => void) { + //callback(); + } +} + +/** + * + * @param fromRole buff 的释放者 + * @param toRole buff 的拥有者 + * @param checkData 检测条件 + * @returns + */ +export function checkBuffEmit(fromRole: Role, toRole: Role, checkData: k_v) { + let keys = Object.keys(checkData); + if (keys.length == 0) return true; + /** 判断buff是否可以触发 */ + return true; +} diff --git a/src/shared/fightControl/afterSkill.ts b/src/shared/fightControl/afterSkill.ts new file mode 100644 index 0000000..a63b9c4 --- /dev/null +++ b/src/shared/fightControl/afterSkill.ts @@ -0,0 +1,339 @@ +import { PublicShared } from "../public/public"; +import { getFightDPS, getPlayerMFDPS } from "./fightDPS"; +import { isDropBuff, randNumber } from "./fightFun"; +import { afterSkillType, buffDataType } from "./fightType"; + +export class RunAfterSkill { + static run(skillinfo: afterSkillType, where?: string) { + let toRole = skillinfo.toRole; + // if (toRole.isDead) return; + let skillconf = skillinfo.skillConf; + let act = skillconf.act; + + if (!this['afterSkill_' + act]) console.log("未知的攻击后技能", act); + return this['afterSkill_' + act](skillinfo, where); + } + + static afterSkill_atkdamage(skillinfo: afterSkillType, where?: string) { + let toRole = skillinfo.toRole; + let fromRole = skillinfo.fromRole; + let skillConf = skillinfo.skillConf; + + let pro = skillConf.data.pro; + if (skillConf.data.gs) { + pro = PublicShared.eval(skillConf.data.val, { slv: fromRole.skillLv }); + } + + let extData = { 'pro': pro }; + Object.assign(extData, skillConf.ext); + + + if (skillConf.data.gs) { + var dpsinfo = getPlayerMFDPS(fromRole, toRole, extData); + } else { + var dpsinfo = getFightDPS(fromRole, toRole, extData); + } + + toRole.lastHitMe = skillinfo.fromRole; + toRole.modifyHp(dpsinfo, { + skillType: 'afterAtk', + skillId: skillinfo.skillConf.skillid + }); + + return dpsinfo; + } + + /** + * 附加额外伤害 + * @param skillinfo + * @param where + */ + static afterSkill_atkmag(skillinfo: afterSkillType, where?: string) { + let toRole = skillinfo.toRole; + let fromRole = skillinfo.fromRole; + let skillConf = skillinfo.skillConf; + + // 检测条件是存在异常buff + if(skillConf.chkdata.debuffdpspro){ + if (!Object.keys(toRole.buffs).length) return + for (let val of Object.values(toRole.buffs)) { + let buff_type = val.data.skillConf.buff_type; + if (!isDropBuff(buff_type)) return + } + } + + let pro = skillConf.data.pro; + + if (skillConf.data.gs) { + pro = PublicShared.eval(skillConf.data.val, { slv: fromRole.skillLv }); + } + + let extData = { 'pro': pro }; + Object.assign(extData, skillConf.ext); + + + if (skillConf.data.gs) { + var dpsinfo = getPlayerMFDPS(fromRole, toRole, extData); + } else { + var dpsinfo = getFightDPS(fromRole, toRole, extData); + } + + toRole.lastHitMe = skillinfo.fromRole; + toRole.modifyHp(dpsinfo, { + skillType: 'atkMag', + skillId: skillinfo.skillConf.skillid + }); + + return dpsinfo; + } + + static afterSkill_fanji(skillinfo: afterSkillType, where?: string) { + let toRole = skillinfo.toRole; + let fromRole = skillinfo.fromRole; + if (fromRole.isCanAtk) return; + if (toRole.hasbuff('wudi') || fromRole.isDead || toRole.isDead) return; + let skillConf = skillinfo.skillConf; + let extData = { 'pro': skillConf.data.pro }; + Object.assign(extData, skillConf.ext); + let dpsinfo = getFightDPS(fromRole, toRole, extData); + + fromRole.fightControl.record({ + act: "fanji", + fromRole: fromRole.rid, + targets: [toRole.rid], + skillId: skillinfo.skillConf.skillid, + rolesInfo: {} + }); + let recordIdx = fromRole.fightControl.getRecordIdx(); + let _rolesInfo = {}; + _rolesInfo[toRole.rid] = {}; + _rolesInfo[toRole.rid]['ov'] = toRole.getData("hp"); + + toRole.lastHitMe = skillinfo.fromRole; + toRole.modifyHp(dpsinfo, { + skillType: 'fanji', + skillId: skillinfo.skillConf.skillid + }); + + _rolesInfo[toRole.rid]['nv'] = toRole.getData("hp"); + _rolesInfo[toRole.rid]['miss'] = dpsinfo.miss; + _rolesInfo[toRole.rid]['baoji'] = dpsinfo.baoji; + fromRole.fightControl.fixRecordByIdx(recordIdx, { targets: [toRole.rid], rolesInfo: _rolesInfo }); + } + + static afterSkill_fanshang(skillinfo: afterSkillType, where?: string) { + let dps = skillinfo?.emitData?.dps; + if (!dps || dps > 0) return console.error("afterSkill_fanshang ==> no dps"); + let toRole = skillinfo.toRole; + let fromRole = skillinfo.fromRole; + + let ov = toRole.getData('hp'); + toRole.fightControl.record({ + act: 'downHp', + fromRole: toRole.rid, + why: 'fanshang', + buffId: "", + ov: ov, + nv: 0 + }); + let recordIdx = toRole.fightControl.getRecordIdx(); + dps *= (1 + toRole.getData('fanshang')); + + // 反伤倍率 + let randnum = skillinfo.skillConf.data.pro + dps = dps * randnum + + let dpsinfo = { num: dps, dps: dps, miss: false, baoji: false, fromRole: fromRole, toRole: toRole }; + toRole.modifyHp(dpsinfo, { + skillType: 'fangshang', + skillId: skillinfo.skillConf.skillid + }); + let nv = toRole.getData('hp'); + toRole.fightControl.fixRecordByIdx(recordIdx, { nv: nv }); + } + + static afterSkill_addhp(skillinfo: afterSkillType, where?: string) { + let dps = skillinfo?.emitData?.dps; + if (!dps || dps > 0) return console.error("afterSkill_fanshang ==> no dps"); + let toRole = skillinfo.toRole; + let fromRole = skillinfo.fromRole; + let pro = skillinfo.skillConf.data?.pro || 1; + + if (toRole.hasbuff('noaddhp')) return; + + let ov = toRole.getData('hp'); + toRole.fightControl.record({ + act: 'addHp', + fromRole: toRole.rid, + why: 'passive', + buffId: "", + ov: ov, + nv: 0 + }); + let recordIdx = toRole.fightControl.getRecordIdx(); + dps *= pro; + let dpsinfo = { num: dps, dps: dps, miss: false, baoji: false, fromRole: fromRole, toRole: toRole }; + toRole.modifyHp(dpsinfo, { + skillType: '', + skillId: skillinfo.skillConf.skillid + }); + let nv = toRole.getData('hp'); + toRole.fightControl.fixRecordByIdx(recordIdx, { nv: nv }); + + } + + static afterSkill_zhiliao(skillinfo: afterSkillType, where?: string) { + let toRole = skillinfo.toRole; + let fromRole = skillinfo.fromRole; + let skillConf = skillinfo.skillConf; + let pro = skillConf.data?.pro || 0; + + if (toRole.hasbuff("noaddhp")) return; + + let ov = toRole.getData('hp'); + let maxhp = skillConf.data?.skillid ? (toRole.fightControl.recordSkillDps[skillConf.data?.skillid] || 0) : toRole.getData('maxHp'); + toRole.fightControl.record({ + act: 'addHp', + fromRole: toRole.rid, + why: 'zhiliao', + buffId: "", + ov: ov, + nv: 0 + }); + let recordIdx = toRole.fightControl.getRecordIdx(); + let dps = maxhp * pro; + let dpsinfo = { num: dps, dps: dps, miss: false, baoji: false, fromRole: fromRole, toRole: toRole }; + toRole.modifyHp(dpsinfo, { + skillType: '', + skillId: skillConf.skillid + }); + let nv = toRole.getData('hp'); + toRole.fightControl.fixRecordByIdx(recordIdx, { nv: nv }); + } + + /** + * 追加DPS + * @param skillinfo + * @param where + */ + static afterSkill_zjdps(skillinfo: afterSkillType, where?: string) { + let toRole = skillinfo.toRole; + let fromRole = skillinfo.fromRole; + let skillConf = skillinfo.skillConf; + let extData = { 'pro': skillConf.data.pro }; + Object.assign(extData, skillConf.ext); + let dpsinfo = getFightDPS(fromRole, toRole, extData); + toRole.lastHitMe = skillinfo.fromRole; + + + let ov = toRole.getData('hp'); + toRole.fightControl.record({ + act: 'downHp', + fromRole: toRole.rid, + why: 'zjdps', + buffId: "", + ov: ov, + nv: 0 + }); + let recordIdx = toRole.fightControl.getRecordIdx(); + toRole.modifyHp(dpsinfo, { + skillType: 'zjdps', + skillId: skillinfo.skillConf.skillid + }); + toRole.fightControl.fixRecordByIdx(recordIdx, { nv: toRole.getData('hp') }); + } + + static afterSkill_buff(skillinfo: afterSkillType, where?: string) { + let toRole = skillinfo.toRole; + let buffdata: buffDataType = skillinfo; + buffdata.buffid = skillinfo.skillConf.skillid; + let buff_type = skillinfo.skillConf.buff_type; + //检查是否有buff 免疫减益buff + // if (toRole.hasbuff('badbuffdrop') && isDropBuff(sxleixing)) { + if (toRole.hasbuff('badbuffdrop') && isDropBuff(buff_type)) { + let pro = toRole.getBuffByType('badbuffdrop')[0].data.skillConf.xiaoguocanshu?.pro || 0; + if (randNumber() > pro) return; + } + toRole.addBuff(buffdata); + } + + static afterSkill_fuhuo(skillinfo: afterSkillType, where?: string) { + let toRole = skillinfo.toRole, fromRole = skillinfo.fromRole; + let skillConf = skillinfo.skillConf; + let pro = skillConf.data.pro; + let maxnums = skillConf.checkData?.maxnum || 1; + if (fromRole.activeResurrect >= maxnums) return; + fromRole.activeResurrect++; + + toRole.roleData.dead = false; + let maxhp = toRole.getData('maxHp'); + let hp = Math.floor(maxhp * pro); + toRole.setData('hp', hp); + + toRole.fightControl.record({ + act: 'fuhuo', + fromRole: fromRole.rid, + target: toRole.rid, + nv: hp + }); + } + + static afterSkill_chongsheng(skillinfo: afterSkillType, where?: string) { + let toRole = skillinfo.toRole, fromRole = skillinfo.fromRole; + let skillConf = skillinfo.skillConf; + let pro = skillConf.data.pro; + let maxnums = skillConf.checkData?.maxnum || 1; + if (fromRole.activeResurrect >= maxnums) return; + fromRole.activeResurrect++; + + toRole.roleData.dead = false; + let maxhp = toRole.getData('maxHp'); + let hp = Math.floor(maxhp * pro); + + toRole.fightControl.record({ + act: 'chongsheng', + fromRole: fromRole.rid, + target: toRole.rid, + nv: hp + }); + skillinfo.toRole.fightControl.event.once("fightEvent_atkOver", () => { + toRole.setData('hp', hp); + }); + } + + static afterSkill_bisha(skillinfo: afterSkillType, where?: string) { + let toRole = skillinfo.toRole, fromRole = skillinfo.fromRole; + let skillConf = skillinfo.skillConf; + let extData = { 'pro': skillConf.data.pro }; + Object.assign(extData, skillConf.ext); + + let chkData = skillConf.chkdata; + let randnum = chkData.randnum; + if (toRole.fightControl.fightType == chkData.fightType && toRole.hasbuff('xuanyuan') && randNumber() <= randnum) { + + let dpsinfo = getFightDPS(fromRole, toRole, extData); + toRole.lastHitMe = skillinfo.fromRole; + //直接斩杀 + let toHp = toRole.getData('hp'); + dpsinfo.dps = -toHp; + dpsinfo.num = -toHp; + + toRole.modifyHp(dpsinfo, { + skillType: 'afterAtk', + skillId: skillinfo.skillConf.skillid + }); + return dpsinfo; + } + } + + static afterSkill_qusan(skillinfo: afterSkillType, where?: string) { + let toRole = skillinfo.toRole, fromRole = skillinfo.fromRole; + for (let key in toRole.buffs) { + let buff_type = toRole.buffs[key].data.skillConf.buff_type; + if (isDropBuff(buff_type)) { + toRole.buffs[key].clear('clear_qusan'); + } + }; + } + +} \ No newline at end of file diff --git a/src/shared/fightControl/atkTarget.ts b/src/shared/fightControl/atkTarget.ts new file mode 100644 index 0000000..2144e23 --- /dev/null +++ b/src/shared/fightControl/atkTarget.ts @@ -0,0 +1,194 @@ +import { PublicShared } from "../public/public"; +import { FightControl } from "./fightCntrol"; +import { FightObj } from "./fightType"; +import { Player } from "./Player"; +import { Role } from "./Role"; + +function _parseSpecialAtkTarget(side: number) { + let targetType = ""; + + switch (side) { + case -1: // 自己 + targetType = 'self'; + break; + case 0: // 友方 + break; + case 1: // 敌方 + break; + case 2: // 最后攻击自己的英雄 + targetType = 'lastHitMe'; + break; + case 3: // 选择对位, 和我位置相同的敌方 + targetType = 'pos'; + break; + case 4: // 主技能选敌 + targetType = 'lastSkillTargets'; + break; + case 5: //友方死亡队友 + targetType = '0Dead'; + break; + case 6: // 主动技能通过doatk,可能触发N个随机的目标其中一个 + targetType = 'SkillTargetsByOne'; + break; + default: + if (side >= 100) { + targetType = 'skillTargets'; + } + break; + } + return targetType; +} + + +function _checknear(roles: Role[], fromRole: FightObj) { + if (roles.length == 0) return roles; + let firstrole = roles[0]; + let roleArr = []; + fromRole.fightControl.eachLiveRoles((role) => { + let pos = role.roleData.pos as number; + if ((firstrole.roleData.pos == pos * 1 + 1 || firstrole.roleData.pos == pos * 1 - 1) && role.roleData.side == firstrole.roleData.side) { + roleArr.push(role); + } + }); + roleArr.push(firstrole) + return roleArr; +} + +function _checkOrder(roles: Role[], order: string, fromRole: FightObj) { + if (roles.length <= 1 || order == "") return roles; + if (order == 'rand') return roles.shuffle(); + if (order == "near") return roles.shuffle(); + let _orderAdd = order.split(','); + roles.sort(function (a, b) { + let valA: number, valB: number; + if (a.roleData.attr[_orderAdd[0]] != null) { + valA = a.roleData.attr[_orderAdd[0]]; + valB = b.roleData.attr[_orderAdd[0]]; + } else { + switch (_orderAdd[0]) { + case 'hp': + valA = a.roleData.attr.hp / a.roleData.attr.maxhp; + valB = b.roleData.attr.hp / b.roleData.attr.maxhp; + break; + default: + valA = 0; + valB = 0; + console.error('选敌参数错误', order); + break; + } + } + + if (_orderAdd[1] == 'asc') { + return valA - valB > 0 ? 1 : -1; + } else if (_orderAdd[1] == 'desc') { + return valB - valA > 0 ? 1 : -1; + } + }); + return roles; +}; + +function _limit(roles: Role[], v: number) { + if (v > 0 && v < roles.length) { + return roles.splice(0, v); + } + return roles; +}; + +function checkisVaild(roles: Role[]) { + roles.forEach(v => { + if (!v) roles.remove(v); + }); + return roles +} + +export function getAtkTarget(fightCntrol: FightControl, fromRole: FightObj, skillconf: k_v) { + let roles = _getAtkTarget(fightCntrol, fromRole, skillconf); + fromRole.skillTargets[skillconf.skillid] = roles; + return roles; +} + +function _getAtkTarget(fightCntrol: FightControl, fromRole: FightObj, skillconf: k_v) { + let skillside = skillconf.side; + let skillid = skillconf.skillid; + let order = skillconf.order; + let limit = skillconf.limit; + if (typeof limit == 'string') { + limit = PublicShared.eval(limit, { slv: fromRole.skillLv }); + } + // let meihuo = fromRole.hasbuff('meihuo'); + let targetType = _parseSpecialAtkTarget(skillside); + + let _r = []; + //特俗判断 + if (targetType != '') { + switch (targetType) { + // 自己 + case 'self': + _r = _r.concat(fromRole); + break; + // 主动技能选敌 + case 'lastSkillTargets': + _r = _r.concat(fromRole.lastSkillTargets); + break; + // 攻击自己的敌方 + case 'lastHitMe': + _r = _r.concat(fromRole.lastHitMe); + break; + // 根据技能ID + case 'skillTargets': + _r = _r.concat(fromRole.getLastTargetsBySkillID(skillid)); + break; + // 对位 + case 'pos': + fightCntrol.eachLiveRoles((role) => { + if (role.roleData.pos == fromRole.roleData.pos && role.roleData.side != fromRole.roleData.side) { + _r.push(role) + return; + } + }); + break; + // 已死的友方 + case '0Dead': + fightCntrol.eachDeadRoles((role) => { + if (role.roleData.side == fromRole.roleData.side) { + _r.push(role) + return; + } + }); + break; + // 主动技能通过doatk,可能触发N个随机的目标其中一个 + case 'SkillTargetsByOne': + // _r = _r.concat(toRole); + break; + default: + break; + } + _r = checkisVaild(_r) + //如果没有选中,则随机选择一个英雄 + if (_r.length == 0 && targetType != '0Dead') { + fromRole.fightControl.eachLiveRoles((role) => { + if (role.roleData.side != fromRole.roleData.side) { + _r.push(role); + return + } + }); + } + return _limit(_r, limit); + } + + //过滤side + let _roles = []; + let sideObj = { 0: 1, 1: 0 }; + let _checkSide = skillside == 0 ? fromRole.roleData.side : sideObj[fromRole.roleData.side]; + // let checkSide = sideObj[skillside]; + + fromRole.fightControl.eachLiveRoles((role) => { + if (_checkSide != role.roleData.side) return; + _roles.push(role); + }); + if (_roles.length == 0) return _roles; + _roles = _checkOrder(_roles, order, fromRole); + + if (order == "near") _roles = _checknear(_roles, fromRole); + return _limit(_roles, limit); +} \ No newline at end of file diff --git a/src/shared/fightControl/fightBuff/buffBase.ts b/src/shared/fightControl/fightBuff/buffBase.ts new file mode 100644 index 0000000..c65fd39 --- /dev/null +++ b/src/shared/fightControl/fightBuff/buffBase.ts @@ -0,0 +1,136 @@ +import { PublicShared } from "../../public/public"; +import { buffDataType, FightObj } from "../fightType"; +import { Role } from "../Role"; + +let idx = 0; +export class BuffBase { + altAttr: k_v = {}; + role: FightObj; + overlapTimes = 1; + /** buff生效的剩余回合数 */ + remainingRounds = 0; + _BuffId: string; + startRound: number; + constructor(public data: buffDataType) { + this.role = this.data.toRole; + idx++; + this._BuffId = 'BuffId_' + idx; + this.startRound = this.role.fightControl.roundNums; + } + start() { + let skillConf = this.data.skillConf; + this.remainingRounds = skillConf.round; + + this.role.fightControl.event.on('fightEvent_roundNums', this.fightEvent_roundNums.bind(this), this); + this.fightEvent_roundNums({ turn: this.role.fightControl.roundNums }); + this.dobuff(); + } + + /** + * 回合开始前buff剩余回合减一 + * 到-1的时候清除buff, + * remainingRounds依然会继续减 + * @param data + */ + fightEvent_roundNums(data: { turn: number; }) { + this.remainingRounds--; + if (this.remainingRounds == -1) { + this.clear('duration'); + }/* else { + this.dobuff(); + } */ + } + + dobuff() { + if (this.role.isDead) { + this.clear('dead'); + return; + } + + this.overlaponly(this.data); + } + + //叠加效果 + overlaponly(newBuffData: buffDataType, newBuff = false) { + if (newBuff) { + //超出了叠加层数 + let diejiacengshu = newBuffData.skillConf.diejiacengshu; + if (this.overlapTimes >= diejiacengshu) return false; + this.overlapTimes++; + }; + this._overlaponly(newBuffData); + return true; + } + + /** + * 叠加buff效果的具体实现 + * @param newBuffData + */ + _overlaponly(newBuffData: buffDataType) { + let skillConf = newBuffData.skillConf; + if (skillConf.sxleixing != 'attr') return; + this.role.debug(function () { + console.log('### buff overlaponly', newBuffData.buffid, skillConf.xiaoguocanshu); + }); + + let skillLv = newBuffData.toRole.skillLv; + if (newBuffData.toRole.rid != newBuffData.fromRole.rid) { + skillLv = newBuffData.fromRole.skillLv; + } + + let xiaoguocanshu = skillConf.xiaoguocanshu; + for (var k in xiaoguocanshu) { + if (k == 'gs') continue; + this.altAttr[k] = this.altAttr[k] || 0; + let attr = xiaoguocanshu[k]; + if (typeof attr == 'string') { + attr = PublicShared.eval(attr, { slv: skillLv }); + } + this.altAttr[k] += attr; + this.role.roleData.attr[k] = this.role.roleData.attr[k] || 0; + let toAttr = this.role.roleData.attr[k] + attr; + this.role.setData(k, toAttr); + } + } + + // 重置回合 + retime() { + this.remainingRounds = this.data.skillConf.round; + } + + _delAttr() { + for (var key in this.altAttr) { + if (key == "hp") continue; + var toAttr = this.role.getData(key) - this.altAttr[key]; + this.role.setData(key, toAttr); + }; + this.altAttr = {}; + this.overlapTimes == 1; + } + + willClear() { } + onClear() { } + clear(when: string) { + this._delAttr(); + let buffType = this.data.skillConf.sxleixing; + if (buffType == 'attr') { + buffType = Object.keys(this.data.skillConf.xiaoguocanshu)[0]; + } + this.role.fightControl.record({ + act: 'delBuff', + fromRole: this.role.rid, + skillId: this.data.buffid, + buffType: buffType, + buffId: this._BuffId, + why: when + }); + this.willClear(); + // this.role.fightControl.event.emit('fight_buffClear', this.data); + let buffid = this.data.buffid; + this.role.buffs[buffid] = null; + delete this.role.buffs[buffid]; + this.role.fightControl.event.off('fightEvent_roundNums', this.fightEvent_roundNums, this); + this.onClear(); + } + +} \ No newline at end of file diff --git a/src/shared/fightControl/fightBuff/buffExtends.ts b/src/shared/fightControl/fightBuff/buffExtends.ts new file mode 100644 index 0000000..6d3a771 --- /dev/null +++ b/src/shared/fightControl/fightBuff/buffExtends.ts @@ -0,0 +1,93 @@ +import { PublicShared } from "../../public/public"; +import { getBuffDPS, getFightAddHP } from "../fightDPS"; +import { isDropBuff } from "../fightFun"; +import { BuffBase } from "./buffBase"; + +export class Buff_liuxue extends BuffBase { + start() { + let skillConf = this.data.skillConf; + this.remainingRounds = skillConf.round; + this.role.fightControl.event.on('fightEvent_roundNums', this.fightEvent_roundNums.bind(this), this); + this.fightEvent_roundNums({ turn: this.role.fightControl.roundNums }); + } + dobuff() { + super.dobuff(); + + let dpsinfo = getBuffDPS(this.role, this.data.fromRole, { + overlapTimes: this.overlapTimes, + xiaoguocanshu: this.data.skillConf.xiaoguocanshu + }); + + let ov = this.role.getData('hp'); + this.role.fightControl.record({ + act: 'downHp', + fromRole: this.role.rid, + why: 'buff', + buffId: this._BuffId, + ov: ov, + nv: 0 + }); + let recordIdx = this.role.fightControl.getRecordIdx(); + this.role.modifyHp(dpsinfo, { + skillType: 'buff', + skillId: this.data.buffid + }); + this.role.fightControl.fixRecordByIdx(recordIdx, { nv: this.role.getData('hp') }); + } + fightEvent_roundNums(data: { turn: number; }) { + this.remainingRounds--; + if (this.remainingRounds == -1) { + this.clear('duration'); + } else { + this.dobuff(); + } + } +} + +export class Buff_zhongdu extends Buff_liuxue { } +export class Buff_ranshao extends Buff_liuxue { } +export class Buff_maxdu extends Buff_liuxue { } + +// export class Buff_addhp extends BuffBase { +// dobuff() { +// super.dobuff(); +// if (this.role.hasbuff("noaddhp")) return; + +// let dpsinfo = getFightAddHP(this.role, this.data.fromRole, { +// pro: this.data.skillConf.xiaoguocanshu.pro, +// type: this.data.skillConf.xiaoguocanshu.type +// }); + +// let ov = this.role.getData('hp'); +// this.role.fightControl.record({ +// act: 'addHp', +// fromRole: this.role.rid, +// why: 'buff', +// buffId: this._BuffId, +// ov: ov, +// nv: 0 +// }); +// let recordIdx = this.role.fightControl.getRecordIdx(); +// this.role.modifyHp(dpsinfo, { +// skillType: 'buff', +// skillId: this.data.buffid +// }); +// this.role.fightControl.fixRecordByIdx(recordIdx, { nv: this.role.getData('hp') }); +// } +// } + +export class Buff_hudun extends BuffBase { + dobuff() { + super.dobuff(); + let pro = this.data.skillConf.xiaoguocanshu.pro; + if (this.data.skillConf.xiaoguocanshu.gs) { + pro = PublicShared.eval(this.data.skillConf.xiaoguocanshu.val, { slv: this.data.fromRole.skillLv }); + } + this.role.hudunzhi += parseInt(pro); + } +} + +// export class Buff_zhongshang extends BuffBase { +// +// } + diff --git a/src/shared/fightControl/fightCntrol.ts b/src/shared/fightControl/fightCntrol.ts new file mode 100644 index 0000000..ee10fe9 --- /dev/null +++ b/src/shared/fightControl/fightCntrol.ts @@ -0,0 +1,272 @@ + +import { getAtkTarget } from "./atkTarget"; +import { getSkillConf, randNumber } from "./fightFun"; +import { FightObj, fightResult, joinFightData, recordDataType, roleDataType } from "./fightType"; +import { Player } from "./Player"; +import { Role } from "./Role"; + +export class FightControl { + //所有战斗成员 + fightRoles: k_v = {}; + + fightRolesArr: FightObj[] = []; + fightOver = false; + roundNums = 0; + recordData: recordDataType[] = []; + event = new G.getEvent(999); + // event = new myEventEmitter(); + initial: joinFightData[]; + winSide: number; + totalDamage = { "0": 0, "1": 0 }; + fightStatistics: { [k: string]: { [k: string]: number; }; } = {}; + player_0: FightObj = null; + player_1: FightObj = null; + recordSkillDps: { [key: string]: number } = {}; + constructor(public DATA: joinFightData[], public maxRoundNums: number = 30, public fightType: 'pvp' | 'pve' = 'pve') { + this.initial = JSON.parse(JSON.stringify(DATA)); + this.initControl(); + this.addFightObj(); + this.startTurnRound(); + } + + initControl() { + // this.event.setMaxListeners(1000); + } + + addFightObj() { + for (let side = 0; side < this.DATA.length; side++) { + this.DATA[side].player.side = side.toString(); + this.DATA[side].player.pos = 7; + + let _data = this.DATA[side]; + let _joindataRole = _data.roles; + for (let key in _joindataRole) { + let d = _joindataRole[key]; + d.pos = key; + d.side = side.toString(); + this.addRole(_joindataRole[key]); + } + this.addPlyer(_data.player); + }; + } + + addRole(data: roleDataType) { + if (data.attr.hp <= 0) return; + let role = new Role(this, data); + this.fightRoles[role.rid] = role; + this.fightRolesArr.push(role); + } + + addPlyer(data: joinFightData['player']) { + let player = new Player(this, data); + this.fightRolesArr.push(player); + this['player_' + data.side] = player; + } + + + /** + * 战斗循环 + */ + startTurnRound() { + while (!this.fightOver) { + this._tunrRound(); + } + } + + /** + * 每轮次战斗具体实现 + */ + _tunrRound() { + if (this.roundNums == 0) this.beforeSkill(); + + this.roundNums += 1; + this.record({ act: 'trun', roundNums: this.roundNums }); + this.event.emit('fightEvent_roundNums', { "turn": this.roundNums }); + + + this.fightRolesArr.sort((a, b) => { + let aSeep = a.getData('speed') * (1 + a.getDataPro('speed')); + let bSeep = b.getData('speed') * (1 + b.getDataPro('speed')); + if (aSeep != bSeep) { + return bSeep - aSeep; + } else { + return parseInt(a.roleData.side) - parseInt(b.roleData.side) + } + }); + + this.fightRolesArr.map(role => role.addpkNum = 0); + for (var i = 0; i < this.fightRolesArr.length; i++) { + this.checkEnd(); + if (this.fightOver) break; + let role = this.fightRolesArr[i]; + if (role.isDead || !role.isHasFightSkills) continue; + this.record({ act: 'startAct', fromRole: role.rid }); + role.atk(); + this.record({ act: 'stopAct', fromRole: role.rid }); + //判断是否能两次行动 + if (this.atkAgain(role)) { + i--; + } + if (role.hasbuff("addpk") && role.addpkNum == 0) { + i--; + role.clearBuff("addpk"); + role.addpkNum += 1 + } + } + + this.checkEnd(); + } + + atkAgain(role: FightObj) { + let rid = role.rid; + if (rid.indexOf('player') != -1) return false; + let shiqi = role.getData('shiqi') * (1 + role.getDataPro('shiqi')); + let randnum = 1 + shiqi / (shiqi + 100 + role.getData('lv') * 100); + return randNumber() > randnum; + } + + /** 战前技能检查 */ + beforeSkill() { + this.eachLiveRoles((role) => { + let heroId = role.roleData.heroId; + // let shiwu = role.roleData?.shiwu || {}; + // let talent = role.roleData?.talent || {}; + let skills = G.gc.heroskill[heroId][role.roleData.jieji || 0].bdskill || []; + skills = skills.concat(role.roleData.attr.skillArr); + + // for (let key in shiwu) { + // let zhushuan = shiwu[key]?.zhuanshu; + // if (!zhushuan) continue; + // if (zhushuan.skill) skills.push(zhushuan.skill); + // }; + // const hero_tf = G.gc.hero_tf; + // for (let key in talent) { + // let cdata = hero_tf[key][talent[key]]; + // if (cdata && cdata.skill_effect) skills.push(cdata.skill_effect); + // } + + // skills.push('tx06309'); + + // if (!skills) return; + skills.forEach(_skill => { + let askillconf = getSkillConf(_skill); + if (!askillconf) return console.log('没有技能配置-->', _skill); + let randnum = askillconf.randnum; + if (randnum == '' || randNumber() > randnum) return; + let targets = getAtkTarget(role.fightControl, role , askillconf); + targets.forEach(_target => { + _target.runAfterSkill({ + fromRole: role, + toRole: _target, + fromSkill: null, + skillConf: askillconf, + targetCount: targets.length + }, 'beforeSkill'); + }); + }); + }); + } + + checkEnd() { + if (this.fightOver) return; + if (this.roundNums > this.maxRoundNums) this.fightOver = true; + + let side0Arr = [], side1Arr = []; + this.eachLiveRoles((role) => { + if (role.roleData.side == '0') { + side0Arr.push(role); + } else { + side1Arr.push(role); + } + }); + + if (side0Arr.length == 0 || side1Arr.length == 0) { + this.fightOver = true; + } + + if (this.fightOver) this.stopFight(side0Arr, side1Arr); + } + + stopFight(side0Arr: Role[], side1Arr: Role[]) { + /* + 获胜条件判断: + 数量相同,人数多的获胜 + 人数一致,战力低的获胜 + 战力一直, 随机获胜 + */ + let winside = 0; + if (this.fightType == "pve") { + winside = side1Arr.length != 0 ? 1 : 0; + } else { + let power0 = this.DATA[0].player.power, power1 = this.DATA[1].player.power; + if (side0Arr.length > side1Arr.length) { + winside = 0; + } else if (side0Arr.length < side1Arr.length) { + winside = 1; + } else if (power0 < power1) { + winside = 0; + } else if (power0 > power1) { + winside = 1; + } else { + winside = [0, 1].random(); + } + } + + this.winSide = winside as 1 | 0; + this.record({ act: 'fightEnd', winSide: this.winSide }); + } + + eachLiveRoles(callback: (role: Role) => void) { + for (let rid in this.fightRoles) { + // if (this.fightOver) return; + if (!this.fightRoles[rid]) continue; + // 排除死亡 + if (this.fightRoles[rid].isDead) continue; + callback && callback(this.fightRoles[rid]); + } + } + + eachDeadRoles(callback: (role: Role) => void) { + for (let rid in this.fightRoles) { + if (this.fightOver) return; + if (!this.fightRoles[rid]) continue; + if (!this.fightRoles[rid].isDead) continue; + callback && callback(this.fightRoles[rid]); + } + } + + record(data: recordDataType) { + this.recordData.push(data); + } + + getRecordIdx() { + return this.recordData.length - 1; + } + + fixRecordByIdx(idx: number, data: k_v) { + this.recordData[idx] = Object.assign(this.recordData[idx], data); + // this.recordData[idx].targets = targets; + } + + recordStatistics(role: FightObj, key: 'hit' | 'def', val: number) { + if (!this.fightStatistics[role.rid]) this.fightStatistics[role.rid] = {}; + if (!this.fightStatistics[role.rid][key]) this.fightStatistics[role.rid][key] = 0; + this.fightStatistics[role.rid][key] += val; + } + + debug(callback: () => void) { + // callback(); + } + + getResult(): fightResult { + return { + winSide: this.winSide, + fightLog: this.recordData, + initData: this.initial, + fightData: this.DATA, + totalDamage: this.totalDamage, + fightStatistics: this.fightStatistics + }; + } +} + diff --git a/src/shared/fightControl/fightDPS.ts b/src/shared/fightControl/fightDPS.ts new file mode 100644 index 0000000..3509d39 --- /dev/null +++ b/src/shared/fightControl/fightDPS.ts @@ -0,0 +1,206 @@ +import { fixValue, randNumber } from "./fightFun"; +import { FightObj } from "./fightType"; + +type DPS_EXTDATA_TYPE = { + 'pro'?: number, + 'mofa'?: number, + 'islong'?: number +}; +export function getFightDPS(fromRole: FightObj, toRole: FightObj, extData: DPS_EXTDATA_TYPE) { + /* + 干部掉血公式 掉血数 最终伤害*主角攻防加成*伤害减免*伤害幅度*暴击幅度*伤害减免*等级差系数 (1,∞) + 最终伤害 "伤害=最小伤害~最大伤害随机 + 最终伤害=伤害*技能加成" + 最小最大伤害 "最小伤害=最小伤害基础值+攻击*(1+攻击提升百分比) + 最大伤害=最大伤害基础值+攻击*(1+攻击提升百分比)" + 主角攻防加成 1+己方主角攻击/(己方主角攻击+敌方主角防御+500) + 伤害减免 1-敌方干部防御/(敌方干部防御+1000+100*己方干部等级) (0.25,1) + 伤害幅度 1+(己方干部伤害加成-敌方干部伤害减少)+(己方干部PVP伤害加成*敌方干部PVP伤害减少)+(对攻击种类加成-敌方攻击种类抗性)+(对职业种族伤害-敌方种族抗性)+(对元素属性的加成-敌方元素属性的抗性) "(0.2,∞) + 如果战斗非PVP,则不需要计算PVP伤害加成减免" + 暴击几率 暴击几率=(自身暴击值/(自身暴击值+100+敌方等级*80))+暴击提升百分比 + 暴击幅度 "暴击幅度=1.5+暴击伤害加成 + 未暴击时=1" + 等级差系数 等级差修正=1+(干部自身等级-目标干部等级)*0.03 "(0.1,1.9) + 如果战斗类型为PVP,则=1" + 主角魔法掉血公式 掉血数 技能伤害*英雄力量知识加成*伤害幅度*等级差系数 (1,∞) + 主角力量知识加成 1+己方主角力量/(己方主角力量+敌方主角知识+500) + 伤害幅度 1+(己方伤害加成-敌方伤害减少)+(对攻击种类加成-敌方攻击种类抗性)+(对职业伤害-敌方职业抗性)+(对元素属性的加成-敌方元素属性的抗性) (0.2,∞) + 等级差系数 等级差修正=1+(自身主角等级-目标主角等级)*0.03 "(0.1,1.9) + 如果战斗类型为PVP,则=1" + 两次行动概率 两次行动几率 几率=干部自身士气/(干部自身士气+100+己方等级*100) + 命中概率 命中概率 "命中几率=(干部自身命中值/(干部自身命中值+100+敌方等级*50))+命中百分比 + 默认命中几率100%" + 闪避几率 闪避几率 "闪避几率=(干部自身闪避值/(干部自身闪避值+100+敌方等级*50))+闪避百分比 + 默认闪避几率0%" + 最终是否命中概率 最终是否命中概率 是否命中几率=干部自身命中几率-目标闪避几率 (0.3,∞) + 速度计算 自身速度 运算速度*(1+速度提升百分比) + 运算速度 自身速度*随机浮动值 + 随机浮动值 0.9-1.1(1位小数) (-10,10) + */ + + if (fromRole.isDead || toRole.isDead) return { num: 0, dps: 0, miss: false, baoji: false, fromRole: fromRole, toRole: toRole }; + let miss = false, baoji = false, dps = 0; + let fromRoleLv = fromRole.getData('lv'), toRoleLv = toRole.getData('lv'); + + let _fmingzhong = (fromRole.getData('mingzhong') + 1) * fromRole.getDataPro('mingzhong'); + let fmingzhong = _fmingzhong / (_fmingzhong + 100 + toRoleLv * 50) + 1; + let _tmiss = (toRole.getData('shanbi') + 1) * toRole.getDataPro('shanbi'); + let tmiss = _tmiss / (_tmiss + 100 + toRoleLv * 50) + 0; + let mingzhongLv = fmingzhong - tmiss; + mingzhongLv = fixValue(mingzhongLv, 0.3); + + if (randNumber() > mingzhongLv) { + miss = true; + } else { + let _fbaoji = (fromRole.getData('baoji') + 1) * fromRole.getDataPro('baooji'); + let baojiLv = _fbaoji / (_fbaoji + 100 + toRoleLv * 80); + baoji = randNumber(0, 1000) > baojiLv ? false : true; + let baoshangpro = fromRole.getData('baoshangpro'); + if (fromRole.hasbuff("baonu")) baoji = true; + let baoshang = baoji ? 1.5 + baoshangpro : 1; + + //干部等级差系数 + let playLvFix = fixValue(1 + (fromRoleLv - toRoleLv) * 0.03, 0.1, 1.9); + playLvFix = fromRole.fightControl.fightType == 'pvp' ? 1 : playLvFix; + + //伤害减免 damage reduction + let _tdef = toRole.getData('def') * (toRole.getDataPro('def') + 1); + //wsdefpro + let wsdefpro = fromRole.getData("wsdefpro"); + _tdef *= (1 - wsdefpro); + let dmageReduction = 1 - _tdef / (_tdef + 1000 + 100 * fromRoleLv); + dmageReduction = fixValue(dmageReduction, 0.25, 1); + //伤害幅度 + let damagepro = 1 + (fromRole.getData('dpspro') - fromRole.getData('dpsdrop') - toRole.getData('undpspro')); + if (extData.islong == 0) { + damagepro += fromRole.getData('neardpspro') - toRole.getData('neardpsdrop'); + } else if (extData.islong == 1) { + damagepro += fromRole.getData('longdpspro') - toRole.getData('longdpsdrop'); + }; + + if (extData.mofa == 0) { //物理 + damagepro += fromRole.getData('phydpspro') - toRole.getData('phydpsdrop'); + } else if (extData.mofa == 5) { // 魔法 + damagepro += fromRole.getData('magdpspro') - toRole.getData('magdpsdrop'); + } else if (extData.mofa == 1) { //地 + damagepro += fromRole.getData('earthdpspro') - toRole.getData('earthdpsdrop'); + } else if (extData.mofa == 2) { //火 + damagepro += fromRole.getData('firedpspro') - toRole.getData('firedpsdrop'); + } else if (extData.mofa == 3) {//水 + damagepro += fromRole.getData('waterdpspro') - toRole.getData('waterdpsdrop'); + } else if (extData.mofa == 4) { //风 + damagepro += fromRole.getData('winddpspro') - toRole.getData('winddpsdrop'); + } + if (fromRole.fightControl.fightType == 'pvp') { + damagepro += fromRole.getData('pvpdpspro') - toRole.getData('pvpdpsdrop'); + } + damagepro = fixValue(damagepro, 0.2); + + //主角攻防加成 + let zj_atk = fromRole.rolePlayer.getData('atk'); + let zj_def = toRole.rolePlayer.getData('def'); + let playerFactor = 1 + zj_atk / (zj_atk + zj_def + 500); + + //最大伤害 + let maxdps = fromRole.getData('maxdps') + (fromRole.getDataPro('atk') + 1) * fromRole.getData('atk'); + //最小伤害 + let mindps = fromRole.getData('mindps') + (fromRole.getDataPro('atk') + 1) * fromRole.getData('atk'); + + dps = randNumber(mindps, maxdps); + + let pro = extData.pro || 1; + dps *= pro; + + //掉血 + dps = dps * playerFactor * dmageReduction * damagepro * baoshang * playLvFix; + } + dps = Math.ceil(dps); + return { num: -dps, dps: -dps, miss: miss, baoji: baoji, fromRole: fromRole, toRole: toRole }; +} + +export function getPlayerMFDPS(fromRole: FightObj, toRole: FightObj, extData: DPS_EXTDATA_TYPE) { + if (toRole.isDead) return { num: 0, dps: 0, miss: false, baoji: false, fromRole: fromRole, toRole: toRole }; + let miss = false, baoji = false, dps = 0; + let fromPlayerLv = fromRole.rolePlayer.getData('lv'), toPlayerLv = toRole.rolePlayer.getData('lv'); + let playLvFix = fixValue(1 + (fromPlayerLv - toPlayerLv) * 0.03, 0.1, 1.9); + playLvFix = fromRole.fightControl.fightType == 'pvp' ? 1 : playLvFix; + + //伤害幅度 + let damagepro = 1 + (fromRole.getData('dpspro') - toRole.getData('dpsdroppro')); + if (extData.islong == 0) { + damagepro += fromRole.getData('neardpspro') - toRole.getData('neardpsdrop'); + } else if (extData.islong == 1) { + damagepro += fromRole.getData('longdpspro') - toRole.getData('longdpsdrop'); + }; + + if (extData.mofa == 0) { //物理 + damagepro += fromRole.getData('phydpspro') - toRole.getData('phydpsdrop'); + } else if (extData.mofa == 5) { // 魔法 + damagepro += fromRole.getData('magdpspro') - toRole.getData('magdpsdrop'); + } else if (extData.mofa == 1) { //地 + damagepro += fromRole.getData('earthdpspro') - toRole.getData('earthdpsdrop'); + } else if (extData.mofa == 2) { //火 + damagepro += fromRole.getData('firedpspro') - toRole.getData('firedpsdrop'); + } else if (extData.mofa == 3) {//水 + damagepro += fromRole.getData('waterdpspro') - toRole.getData('waterdpsdrop'); + } else if (extData.mofa == 4) { //风 + damagepro += fromRole.getData('winddpspro') - toRole.getData('winddpsdrop'); + } + if (fromRole.fightControl.fightType == 'pvp') { + damagepro += fromRole.getData('pvpdpspro') - toRole.getData('pvpdpsdrop'); + } + damagepro = fixValue(damagepro, 0.2); + + //知识力量 加成 + let fplayer = fromRole.rolePlayer, tplayer = toRole.rolePlayer; + let pl = 1 + fplayer.getData('zhishi') / (fplayer.getData('liliang') + tplayer.getData('zhishi') + 500); + //掉血 + dps = extData.pro * damagepro * pl * playLvFix; + dps = Math.ceil(dps); + return { num: -dps, dps: -dps, miss: miss, baoji: baoji, fromRole: fromRole, toRole: toRole }; +} + +export function getBuffDPS(toRole: FightObj, fromRole: FightObj, extData: { xiaoguocanshu: k_v, overlapTimes: number }) { + let miss = false, baoji = false; + let dps = 0; + + //固定伤害 + if (extData.xiaoguocanshu.value) { + dps = extData.xiaoguocanshu.value; + } else if (extData.xiaoguocanshu.type == "maxhp") { + dps = Math.ceil(toRole.getData('maxHp') * extData.xiaoguocanshu.pro); + } else if (extData.xiaoguocanshu.type == "hp") { + dps = Math.ceil(toRole.getData('hp') * extData.xiaoguocanshu.pro); + } else if (extData.xiaoguocanshu.pro) { + dps = Math.ceil(fromRole.getData('atk') * extData.xiaoguocanshu.pro); + } + + dps *= extData.overlapTimes; + + let maxDps = fromRole.getData('maxdps') * 2; + + // todo 主角技能还没有限制百分比的最大伤害,以下判断修复技能buff没有伤害 + if (fromRole.getData('pos') != 7){ + dps = dps > maxDps ? maxDps : dps; + } + + return { num: -dps, dps: -dps, miss: miss, baoji: baoji, fromRole: fromRole, toRole: toRole }; + +} + +export function getFightAddHP(toRole: FightObj, fromRole: FightObj, extData: { pro: number, type: string } & { [k: string]: any; }) { + let miss = false, baoji = false; + let dps = 0; + + //根据最大生命回血 + if (extData.type == 'maxhp') { + dps = toRole.getData('maxHp') * extData.pro; + }; + let xixuepro = toRole.getData('xixuepro'); + let addhpdrop = toRole.getData('addhpdrop'); + dps *= (1 + xixuepro - addhpdrop); + dps = Math.ceil(dps); + + return { num: dps, dps: dps, miss: miss, baoji: baoji, fromRole: fromRole, toRole: toRole }; +} + diff --git a/src/shared/fightControl/fightFun.ts b/src/shared/fightControl/fightFun.ts new file mode 100644 index 0000000..a716514 --- /dev/null +++ b/src/shared/fightControl/fightFun.ts @@ -0,0 +1,164 @@ +import { ResLogin } from "../protocols/user/PtlLogin"; +import { HeroShared } from "../public/hero"; +import { FightControl } from "./fightCntrol"; +import { joinFightData } from "./fightType"; + +export function countAttr(from: joinFightData) { + Object.values(from.roles).forEach(role => { + role.attr = HeroShared.getHeroBasicAttr(role, from.player); + }); +} + +export async function test() { + + new FightControl([formatNpcData(1), formatNpcData(1)]); + // let players = await G.mongodb.collection('user').find().toArray(); + // let heros = await G.mongodb.collection('hero').find().toArray(); + // new FightControl(Array(2).fill(1).map(() => { + + // let obj = {}; + // let roles = Array(6).fill(1).map(() => { + // let hero = G.mongodb.conversionIdObj(heros.random()); + // return Object.assign(hero, { + // attr: HeroShared.getHeroBasicAttr(hero, players.random()) + // }); + + // }); + // roles.forEach((r, p) => obj[p + 1] = r); + // return { + // player: players.random(), + // roles: obj + // }; + // })); +} + +export function fixValue(val: number, min?: number, max?: number) { + if (min && val < min) val = min; + if (max && val > max) val = max; + return val; +} + +export function getSkillConf(skillid: string | number) { + let v = null; + if (G.gc.skill_atk[skillid]) { + v = G.gc.skill_atk[skillid]; + } else if (G.gc.skill_buff[skillid]) { + v = G.gc.skill_buff[skillid]; + } else if (G.gc.skill_passive[skillid]) { + v = G.gc.skill_passive[skillid]; + } else if (G.gc.skill_afteratk[skillid]) { + v = G.gc.skill_afteratk[skillid]; + } + if (!v) { + return console.error('###没有这个技能-->', skillid); + } + return JSON.parse(JSON.stringify(v)); +} + +export function randomSkill(skillObj: k_v) { + let randomArr = []; + for (let key in skillObj) { + let num = skillObj[key] * 100; + randomArr = randomArr.concat(Array(num).fill(key)); + } + var randomValue = randomArr[Math.floor(Math.random() * randomArr.length)]; + return randomValue; + +} + +export function randNumber(under?: number, over?: number) { + switch (arguments.length) { + case 0: + case 1: + return Math.random(); + case 2: + return Math.random() * (over - under) + under; + default: + return 0; + } +} + +export function isDropBuff(buff_type: number) { + return buff_type == 2 || buff_type == 3; + +} + +/**格式化npc配置为战斗数据 */ +export function formatNpcData(npcId: string | number, fixData: Partial = {}, lv?: number): joinFightData { + return createNpc(npcId, fixData); +} + +function randomName(name: string) { + let f = Math.random() >= .5; + let b = Math.random() >= .5; + + return (f ? Object.values(G.gc.name).random().qian : '') + name + (b ? Object.values(G.gc.name).random().hou : ''); +} + +export function createNpc(npcId: string | number, fixData: Partial = {}, lv?: number) { + let npcConf = G.gc.npc[npcId]; + let npcList = npcConf.npclist; + let dataArr = npcList.split('#').map(str => { + let ops = str.split('_'); + return { + heroId: ops[0], + lv: lv || Number(ops[1]), + countId: ops[2] + }; + }); + const data: joinFightData = { + player: { + lv: dataArr[0].lv, + head: { + id: dataArr[0].heroId, + time: -1 + }, + uid: `npc_${npcId}`, + ghName: npcConf.ghname, + name: G.gc.hero[dataArr[0].heroId].name, + npcname: npcConf.npcname, + isNpc: true + }, + roles: Object.fromEntries(dataArr.map((d, i) => [i + 1, function () { + + let { id, atk, def, mindps, maxdps, hp, speed, ...ops } = G.gc.armyattr[d.countId]; + let buff = HeroShared.getHeroBasicAttr({ heroId: d.heroId, lv: d.lv }); + + buff.hp = Math.floor(((Math.pow(d.lv + 20, 2) * (d.lv / 5 + 1)) - (d.lv + 3) * 100) * hp); + buff.atk = Math.floor(atk); + buff.def = Math.floor((Math.pow(d.lv + 14, 2) - 190) * def); + buff.speed = Math.floor(d.lv * 1.4 * speed); + buff.mindps = Math.floor(Math.pow(d.lv + 1, 1.8) * 7.5 * mindps); + buff.maxdps = Math.floor(Math.pow(d.lv + 1, 1.8) * 9 * mindps); + + Object.assign(buff, ops); + + for (let k in buff) { + if (k.indexOf('pro') == -1) continue; + let buffKey = k.replace('pro', ''); + if (buff[buffKey]) { + buff[buffKey] += buff[buffKey] * buff[k]; + buff[k] = 0; + } + } + + HeroShared.amendAttr(buff); + + buff.maxHp = buff.hp; + return { + attr: buff, + ...d, + lv: (npcConf.npcLv ? npcConf.npcLv[i]: 0) || d.lv, + isBoss: !!npcConf.isboss, + trueLv: d.lv || (npcConf.npcLv ? npcConf.npcLv[i]: 0) + }; + + }()])) + }; + + data.player.power = Object.values(data.roles).map(role => HeroShared.computeHeroZhanLi(role.attr)).reduce((a, b) => a + b); + + Object.assign(data.player, fixData); + + return data; +} \ No newline at end of file diff --git a/src/shared/fightControl/fightType.ts b/src/shared/fightControl/fightType.ts new file mode 100644 index 0000000..5068239 --- /dev/null +++ b/src/shared/fightControl/fightType.ts @@ -0,0 +1,86 @@ +import { ResGetList } from "../protocols/hero/PtlGetList"; +import { ResLogin } from "../protocols/user/PtlLogin"; +import { Player } from "./Player"; +import { Role } from "./Role"; +import { SkillBase } from "./skill/skillBase"; + + +export type joinFightData = { + player: Partial & { + buff?: { [id: string]: number; }; + side?: string; + pos?: string | number; + attr?: { [id: string]: number; }; + dead?: boolean; + }, + roles: { [k: string]: roleDataType; }; +}; + +export type roleDataType = Partial & { + attr: { [k: string]: any; }; + side?: string; + pos?: string | number; + dead?: boolean; + lockHp?: boolean; + maxhp?: number; +} & { [k: string]: any; }; + +export type FightObj = Role | Player; + +export type modifyHpType = { + skillType: string, + skillId: string | number; +}; + +export type dpsinfoType = { num: number, dps: number, miss: boolean, baoji: boolean, fromRole: FightObj, toRole: FightObj; }; + +export type afterSkillType = { fromRole: FightObj, toRole: FightObj, fromSkill: SkillBase, skillConf: { [k: string]: any; }, targetCount: number; emitData?: EmitDataType; }; + +export type buffDataType = { fromRole: FightObj, toRole: FightObj, fromSkill: SkillBase, skillConf: { [k: string]: any; }, targetCount: number; } & { buffid?: string; }; + +export type EmitDataType = { skillId: string | number, fromRole: FightObj, toRole: FightObj; } & { [k: string]: any; }; + + +export type chkDataType = { when: string; } & { [k: string]: any; }; +/** + * toRole : 被动的持有者 + */ +export type passiveChkType = { + chkdata: chkDataType, + emitData: EmitDataType, + toRole: Role; +}; + +export type actType = 'addPassive' | 'delpassive'; + +export type atkRoleInfo_Type = { ov: number, nv: number, miss: boolean, baoji: boolean; }; + +export type turn_Type = { act: 'trun', roundNums: number; }; +export type atk_Type = { act: 'atk', fromRole: string, targets: string[], skillId: string | number, rolesInfo: { [k: string]: atkRoleInfo_Type; }; }; +export type addBuff_type = { act: 'addBuff', toRole: string, fromRole: string, skillId: string | number, buffType: string, buffId: string; }; +export type delBuff_type = { act: 'delBuff', fromRole: string, skillId: string | number, buffId: string, buffType: string, why?: string; }; +export type startAct_Type = { act: 'startAct', fromRole: string; }; +export type stopAct_Type = { act: 'stopAct', fromRole: string; }; +export type fightEnd_Type = { act: 'fightEnd', winSide: number; }; +export type roleDead_Type = { act: 'roleDead', isFuhou: boolean, fromRole: string; }; +export type addHp_Type = { act: 'addHp', fromRole: string, why: string, buffId: string, nv: number, ov: number; }; +export type downHp_Type = { act: 'downHp', fromRole: string, why: string, buffId: string, nv: number, ov: number; }; +export type fanji_Type = { act: 'fanji', fromRole: string, targets: string[], skillId: string | number, rolesInfo: { [k: string]: atkRoleInfo_Type; }; }; +export type fuhuo_Type = { act: 'fuhuo', fromRole: string, target: string, nv: number; }; +export type chongsheng_Type = { act: 'chongsheng', fromRole: string, target: string, nv: number; }; +export type playerNuqi_Type = { act: 'playerNuqi', fromRole: string, maxnuqi: number, nuqi: number; }; + +export type recordDataType = + turn_Type | atk_Type | addBuff_type | delBuff_type | startAct_Type | stopAct_Type | fightEnd_Type | roleDead_Type | addHp_Type | downHp_Type | fanji_Type | fuhuo_Type | chongsheng_Type | playerNuqi_Type; + +export type fightResult = { + winSide: number; + fightLog: recordDataType[]; + initData: joinFightData[]; + fightData: joinFightData[]; + totalDamage: { "0": number, "1": number; }; + fightStatistics?: { [k: string]: { [k: string]: number; }; }; + otherData?: { + [k: string]: any; + }; +}; \ No newline at end of file diff --git a/src/shared/fightControl/passiveSkill/passiveSkillBase.ts b/src/shared/fightControl/passiveSkill/passiveSkillBase.ts new file mode 100644 index 0000000..ad15ed7 --- /dev/null +++ b/src/shared/fightControl/passiveSkill/passiveSkillBase.ts @@ -0,0 +1,213 @@ +import {getSkillConf} from "../fightFun"; +import {afterSkillType, EmitDataType, passiveChkType} from "../fightType"; + +/** + * + * @param passiver 被动的持有者 + * @param toRole 触发者 + * @param chkData + */ +// function _checkSidePassiveSkill(passiver: Role, toRole: FightObj, chkData: chkDataType) { +// let filterFunc: (role: Role) => boolean +// switch (chkData.side) { +// case -1: +// filterFunc = function (role) { +// return passiver == role; +// }; +// break; +// case 1: +// filterFunc = function (role) { +// return role == toRole +// } +// break +// default: +// break; +// } + +// let roles = [].concat(toRole); +// var isSame = (callback: Function) => { +// for (var i = 0; i < roles.length; i++) { +// if (callback(roles[i])) { +// return true; +// } +// } +// return false; +// } +// return isSame(filterFunc); +// } + +// function _checkSide(this: passiveChkType) { +// let chkdata = this.chkdata; +// let emitData = this.emitData; +// if (chkdata.side == undefined) return true; + +// // const passiveSkillArr = ['byatk', 'startatk', 'masterSkills']; + +// // if (passiveSkillArr.indexOf(chkdata.when) != -1) { +// return _checkSidePassiveSkill(this.toRole, emitData.toRole, chkdata); +// // } else { + +// // } + +// return true; + +// }; + + +function checkEmit(this: passiveChkType) { + let isEmit = false; + let chkData = this.chkdata; + if (Object.keys(chkData).length == 0) return isEmit; + + let passiver = this.toRole; + let toRole = this.emitData.toRole; + + //这些条件可以后续添加 + // if (_checkSide.call(this)) return true; + + if (chkData.side == -1 && passiver == toRole) isEmit = true; + else if (chkData.side == 1 && passiver.roleData.side != toRole.roleData.side) isEmit = true; + + if (chkData.atkTar) { + if (passiver != this.emitData.fromRole) isEmit = false; + } + if (chkData.isctrl == 1) { + if (!passiver.hasbuff("xuanyun")) isEmit = false; + } + if (chkData.islong == 0) { + let triggerSkill = getSkillConf(this.emitData.skillId) + if (triggerSkill?.ext?.islong != 0) isEmit = false + + } else if (chkData.islong == 1) { + let triggerSkill = getSkillConf(this.emitData.skillId) + if (triggerSkill?.ext?.islong != 1) isEmit = false + } + + return isEmit; +} + +let idx = 0; + +export class PassiveSkillBase { + _passiveId = ''; + /**触发次数 */ + _triggerCount = 0; + skillConf: k_v; + _timers: NodeJS.Timeout[] = []; + _checkFunc: (data: EmitDataType) => void; + /** 生效的剩余回合数 */ + remainingRounds = 0; + + constructor(public skillInfo: afterSkillType) { + idx++; + this._passiveId = 'passiveSkill_' + idx; + this.skillConf = this.skillInfo.skillConf; + } + + start() { + this._initEvent(); + this._initHoldRounds(); + } + + _initEvent() { + let _when = this.skillConf.chkdata.when; + let toRole = this.skillInfo.toRole; + if (_when == 'ontime') { + //定时触发 或者 频率触发 + this._whenOntime(); + } else { + this._checkFunc = (emitData) => { + toRole.debug(() => { + console.log('### passiveskill checkEmit', 'fightEvent_' + _when, this.skillConf.skillid); + }); + this.checkEmit(emitData); + }; + toRole.fightControl.event.on('fightEvent_' + _when, this._checkFunc.bind(this), this); + } + } + + checkEmit(emitData: EmitDataType) { + //已经是反伤照成的伤害就不触发 + // let emitSkillConf = getSkillConf(emitData.skillId); + if (emitData?.skillType == "fanji" || emitData?.skillType == "fangshang" /* || this.skillInfo.toRole.isDead */ || emitData?.fromRole?.isDead) return; + //主角不触发被动 + if ((emitData.fromRole && emitData.fromRole?.rid?.indexOf?.('player') != -1) || emitData.toRole?.rid?.indexOf?.('player') != -1) return; + + if (!checkEmit.call({ + chkdata: this.skillConf.chkdata, + emitData: emitData, + /** 被动的持有者 */ + toRole: this.skillInfo.toRole + })) { + return; + } + ; + + this.doAtk?.(emitData); + if (this.skillConf.round == -1) this.clear('round-1'); + } + + _initHoldRounds() { + let toRole = this.skillInfo.toRole; + this.remainingRounds = this.skillConf.round || 1; + toRole.fightControl.event.on('fightEvent_roundNums', this.fightEvent_roundNums.bind(this), this); + this.fightEvent_roundNums({turn: toRole.fightControl.roundNums}); + } + + fightEvent_roundNums(data: { turn: number; }) { + if (this.remainingRounds == 0) { + this.clear('round'); + } + this.remainingRounds--; + } + + _whenOntime() { + let time = this.skillConf.chkdata.time; + if (!time) return; + this._timers.push(setTimeout(() => { + this.doAtk(); + }, time)); + } + + _doNextOntime() { + let pinlvtime = this.skillConf.chkdata.pinlvtime; + if (!pinlvtime) return; + this._timers.push(setTimeout(() => { + this.doAtk(); + }, pinlvtime)); + } + + /** 清除执行次数限制的被动 */ + _clearOnceSkill() { + let chkdata = this.skillConf.chkdata; + if (chkdata.once && this._triggerCount > chkdata.once) { + this.clear('once'); + } + } + + doAtk(emitData?: EmitDataType) { + this._triggerCount++; + this._clearOnceSkill(); + this._doNextOntime(); + } + + clear(why: string) { + let _when = this.skillConf.chkdata.when; + let toRole = this.skillInfo.toRole; + if (this._checkFunc) { + toRole.fightControl.event.off('fightEvent_' + _when, this._checkFunc, this); + this._checkFunc = null; + delete this._checkFunc; + } + toRole.fightControl.event.off('fightEvent_roundNums', this.fightEvent_roundNums, this); + + this._timers.forEach(v => { + clearTimeout(v); + }); + this._timers = null; + delete this._timers; + + toRole.passiveSkills[this._passiveId] = null; + delete toRole.passiveSkills[this._passiveId]; + } +} \ No newline at end of file diff --git a/src/shared/fightControl/passiveSkill/passiveSkillExtends.ts b/src/shared/fightControl/passiveSkill/passiveSkillExtends.ts new file mode 100644 index 0000000..f88736f --- /dev/null +++ b/src/shared/fightControl/passiveSkill/passiveSkillExtends.ts @@ -0,0 +1,48 @@ +import { getAtkTarget } from "../atkTarget"; +import { getSkillConf, randNumber } from "../fightFun"; +import { EmitDataType } from "../fightType"; +import { PassiveSkillBase } from "./passiveSkillBase"; + +export class PassiveSkill_runskill extends PassiveSkillBase { + start() { + /** 后续 扩展被动触发*/ + super.start(); + } + + doAtk(emitData: EmitDataType) { + super.doAtk(emitData); + let skills = this.skillConf.v.runskill; + let role = this.skillInfo.toRole; + + skills.forEach((_skillId: string, k) => { + let askillConf = getSkillConf(_skillId); + if (!askillConf) return console.error('####没有技能id-->', _skillId); + askillConf = JSON.parse(JSON.stringify(askillConf)); + askillConf.skillid = _skillId; + let gailv = askillConf.randnum; + if (!gailv || randNumber() > gailv) return; + + let targets; + if(askillConf.side == '6'){ + // 主动技能通过doatk,可能触发N个随机的目标,这里的fromRole是指每一个被主动技能选中的目标 + targets = [emitData.fromRole]; + }else{ + targets = getAtkTarget(role.fightControl, role, askillConf); + } + + targets.forEach(_target => { + _target.runAfterSkill({ + fromRole: role, + toRole: _target, + fromSkill: null, + skillConf: askillConf, + targetCount: targets.length, + emitData: emitData + }, 'PassiveSkill_runskill'); + }); + + + }); + + } +} \ No newline at end of file diff --git a/src/shared/fightControl/passiveSkill/runPassiveSkill.ts b/src/shared/fightControl/passiveSkill/runPassiveSkill.ts new file mode 100644 index 0000000..836d5ef --- /dev/null +++ b/src/shared/fightControl/passiveSkill/runPassiveSkill.ts @@ -0,0 +1,19 @@ +import { afterSkillType } from "../fightType"; +import { PassiveSkillBase } from "./passiveSkillBase"; +import * as PassiveClass from "./passiveSkillExtends"; + +export function runPassiveSkillBase(skillInfo: afterSkillType) { + let skillConf = skillInfo.skillConf; + let toRole = skillInfo.toRole; + let bdId = skillConf.bdid; + + let _class: PassiveSkillBase = null; + if (PassiveClass['PassiveSkill_' + bdId]) { + _class = new PassiveClass['PassiveSkill_' + bdId](skillInfo); + } else { + _class = new PassiveSkillBase(skillInfo); + } + toRole.passiveSkills[_class._passiveId] = _class; + _class.start(); + +} \ No newline at end of file diff --git a/src/shared/fightControl/skill/skillBase.ts b/src/shared/fightControl/skill/skillBase.ts new file mode 100644 index 0000000..8b64544 --- /dev/null +++ b/src/shared/fightControl/skill/skillBase.ts @@ -0,0 +1,113 @@ +import { getAtkTarget } from "../atkTarget"; +import { getSkillConf, randNumber } from "../fightFun"; +import { atkRoleInfo_Type, dpsinfoType, FightObj } from '../fightType'; +import { Player } from "../Player"; +import { Role } from "../Role"; + +export class SkillBase { + toRole: Role = null; + constructor(public fromRole: FightObj, public skillconf: k_v) { + this.fromRole.fightControl.event.on('fightEvent_onRoleClear', this.onRoleClear, this); + this.checkAtk(); + } + + onRoleClear(why?: string) { + + } + + clear() { + this.fromRole.fightControl.event.off('fightEvent_onRoleClear', this.onRoleClear, this); + } + + /** + * 攻击前检查、选敌 + */ + checkAtk() { + let targets = getAtkTarget(this.fromRole.fightControl, this.fromRole, this.skillconf); + if (targets.length == 0) { + this.fromRole.debug(() => { + console.log('没有选到敌人-->', this.skillconf.skillid); + }); + } + this.fromRole.lastSkillTargets = targets; + this.fromRole.lastSkillId = this.skillconf.skillid; + + targets.forEach((role: Role) => { + role.lastHitMe = this.fromRole; + }); + + this.fromRole.fightControl.record({ + act: 'atk', + fromRole: this.fromRole.rid, + targets: [], + skillId: this.skillconf.skillid, + rolesInfo: {} + }); + let recordIdx = this.fromRole.fightControl.getRecordIdx(); + let atkInfo = this.doAtk(); + this.fromRole.fightControl.fixRecordByIdx(recordIdx, atkInfo); + + this.fromRole.bloodReturn(atkInfo); + this.fromRole.fightControl.event.emit('fightEvent_atkOver'); + atkInfo.targets.forEach(_role => { + this.fromRole.fightControl.event.emit('fightEvent_masterSkills', { + fromRole: this.fromRole, + toRole: this.fromRole.fightControl.fightRoles[_role], + skillId: this.skillconf.skillid, + skillType: "masterSkills", + }); + }); + this.clear(); + } + + doAtk() { + //解析攻击后技能 + let skillType3: { targets: string[], rolesInfo: k_v; } = + { + targets: [], + rolesInfo: {} + }; + + let skills = this.skillconf.v; + this.fromRole.fightControl.recordSkillDps[this.skillconf.skillid] = 0; + skills.forEach((skillid: string, k) => { + let askillconf = getSkillConf(skillid); + if (!askillconf) return console.log('没有技能配置-->', skillid); + let randnum = askillconf.randnum; + if (randnum != '' && randNumber() > randnum) return; + + let targets = getAtkTarget(this.fromRole.fightControl, this.fromRole, askillconf); + if (targets.length == 0) { + this.fromRole.debug(() => { + console.log('没有选到敌人-->', this.skillconf.skillid); + }); + } + targets.forEach((role: Role) => { + let ov = role.getData('hp'); + let info = role.runAfterSkill({ fromRole: this.fromRole, toRole: role, fromSkill: this, skillConf: askillconf, targetCount: targets.length }, "skillBase") as dpsinfoType; + if (!info) return; + if (!skillType3.rolesInfo[role.rid]) { + skillType3.rolesInfo[role.rid] = {} as atkRoleInfo_Type; + skillType3.rolesInfo[role.rid]['ov'] = ov; + } + skillType3.rolesInfo[role.rid]['baoji'] = info.baoji; + skillType3.rolesInfo[role.rid]['miss'] = info.miss; + skillType3.rolesInfo[role.rid]['nv'] = role.getData('hp'); + /**记录技能类型为3的伤害 */ + if (skillType3.targets.indexOf(role.rid) == -1) { + skillType3.targets.push(role.rid); + } + + this.fromRole.fightControl.recordSkillDps[this.skillconf.skillid] += Math.abs(info.dps); + }); + + this.fromRole.fightControl.event.emit('fightEvent_dodamage', { + skillid: this.skillconf.skillid, + fromRole: this.fromRole, + toRole: this.toRole + }); + }); + + return skillType3; + } +} \ No newline at end of file diff --git a/src/shared/global.ts b/src/shared/global.ts new file mode 100644 index 0000000..1aed103 --- /dev/null +++ b/src/shared/global.ts @@ -0,0 +1,6 @@ +//@ts-nocheck + +import { HeroShared } from './public/hero'; + + +globalThis.heroShared = HeroShared; \ No newline at end of file diff --git a/src/shared/myEventEmitter.ts b/src/shared/myEventEmitter.ts new file mode 100644 index 0000000..015ce67 --- /dev/null +++ b/src/shared/myEventEmitter.ts @@ -0,0 +1,129 @@ +// type EventCallback = (...args: any[]) => void; + +// export class myEventEmitter { +// private events: Map>; + +// constructor() { +// this.events = new Map(); +// } + +// public on(eventName: string, callback: EventCallback) { +// if (!this.events.has(eventName)) { +// this.events.set(eventName, new Set()); +// } + +// const eventListeners = this.events.get(eventName); +// eventListeners.add(callback); +// } + +// public once(eventName: string, callback: EventCallback) { +// const onceCallback: EventCallback = (...args: any[]) => { +// this.off(eventName, onceCallback); +// callback(...args); +// }; +// this.on(eventName, onceCallback); +// } + +// public off(eventName: string, callback: EventCallback) { +// if (!this.events.has(eventName)) { +// return; +// } + +// const eventListeners = this.events.get(eventName); +// let isSucc = eventListeners.delete(callback); + +// if (eventListeners.size === 0) { +// this.events.delete(eventName); +// } +// } + +// public emit(eventName: string, ...args: any[]) { +// if (!this.events.has(eventName)) { +// return; +// } + +// const eventListeners = this.events.get(eventName); +// eventListeners.forEach((callback) => { +// callback(...args); +// }); +// } +// } + + +type Listener = (...args: T) => void; + +interface EventMap { + [event: string]: unknown[]; +} + +interface ListenerMap { + [event: string]: Listener[]; +} + +interface EventEmitter { + on(event: string, listener: Listener): this; + once(event: string, listener: Listener): this; + off(event: string, listener: Listener): this; + emit(event: string, ...args: T): this; +} + +class EventEmitterImpl implements EventEmitter { + private events: EventMap = {}; + private listeners: ListenerMap = {}; + + public on(event: string, listener: Listener): this { + this.addListener(event, listener); + return this; + } + + public once(event: string, listener: Listener): this { + const onceListener: Listener = (...args: T) => { + this.off(event, onceListener); + listener(...args); + }; + this.addListener(event, onceListener); + return this; + } + + public off(event: string, listener: Listener): this { + const listeners = this.listeners[event]; + if (!listeners) return this; + const index = listeners.indexOf(listener); + if (index >= 0) { + listeners.splice(index, 1); + if (listeners.length === 0) { + delete this.events[event]; + delete this.listeners[event]; + } + } + return this; + } + + public emit(event: string, ...args: T): this { + const listeners = this.listeners[event]; + if (!listeners) return this; + const events = this.events[event] as T; + if (events) { + events.push(...args); + } else { + this.events[event] = args; + } + listeners.slice().forEach((listener) => listener(...args)); + return this; + } + + public clear(): void { + this.events = {}; + this.listeners = {}; + } + + private addListener(event: string, listener: Listener): void { + if (!this.listeners[event]) { + this.listeners[event] = []; + } + this.listeners[event].push(listener); + } +} + +export const myEventEmitter = EventEmitterImpl; + diff --git a/src/shared/protocols/PtlBingo.ts b/src/shared/protocols/PtlBingo.ts new file mode 100644 index 0000000..7b515f3 --- /dev/null +++ b/src/shared/protocols/PtlBingo.ts @@ -0,0 +1,16 @@ + +/** + * 开发者命令 + * 'all item [道具数量]' 获得指定数量的所有道具 + * 'item [道具id] [道具数量]' 获得指定数量的道具 + * ```ts + * Net.ajax('Bingo', 'all item 1') + * ``` + */ +export type ReqBingo = string; + +export type ResBingo = string; + +export const conf = { + timeIntervalLimit: 0 +}; \ No newline at end of file diff --git a/src/shared/protocols/PtlFightTest.ts b/src/shared/protocols/PtlFightTest.ts new file mode 100644 index 0000000..9cbbc17 --- /dev/null +++ b/src/shared/protocols/PtlFightTest.ts @@ -0,0 +1,18 @@ +import { fightResult } from '../fightControl/fightType'; +import { ResGetList } from './hero/PtlGetList'; +import { player } from './user/type'; + + +export type ReqFightTest = { + player?: [Partial, Partial]; + roles: [args[], args[]]; +}; + +export type ResFightTest = { + result: fightResult; +}; + +type args = { + hero: Partial; + attr: { [k: string]: number; }; +}; \ No newline at end of file diff --git a/src/shared/protocols/PtlSyncBtn.ts b/src/shared/protocols/PtlSyncBtn.ts new file mode 100644 index 0000000..b5385dc --- /dev/null +++ b/src/shared/protocols/PtlSyncBtn.ts @@ -0,0 +1,33 @@ +import { jijinType } from './event/jijin/PtlOpen'; + +/** + * 异步按钮 + */ +export type ReqSyncBtn = syncBtnKeys[]; + +export type ResSyncBtn = { + [id: string]: defaultSyncBtn; + xianshilibao?: { + pays: { + payId: string; + eTime: number; + }[]; + }; +}; + +export type defaultSyncBtn = { + /**到期时间 */ + eTime?: number; + /**是否显示 */ + active?: boolean; + /**开始时间 */ + sTime?: number; + /**活动轮次 */ + round?: number; + [k: string]: any; +}; + +export type syncBtnKeys = 'shouchong' | 'kaifukuanghuan' | jijinType | 'zhanling' | 'qiridenglu' + | 'xianshilibao' | 'yibaichou' | 'huobanzhaomu' | 'xianshizhaomu' + | 'leijichongzhi' | 'xinshoulibao' | 'jierihuodong' | 'yuedujijin' | 'zixuanlibao' | 'diaoluoduihuan' | 'chuanshuozhilu' + | 'yangchengmubiao' | 'G123Gift' \ No newline at end of file diff --git a/src/shared/protocols/PtlTest.ts b/src/shared/protocols/PtlTest.ts new file mode 100644 index 0000000..f1f9b4e --- /dev/null +++ b/src/shared/protocols/PtlTest.ts @@ -0,0 +1,5 @@ + + +export type ReqTest = any; + +export type ResTest = any; \ No newline at end of file diff --git a/src/shared/protocols/chat/PtlDelPrivate.ts b/src/shared/protocols/chat/PtlDelPrivate.ts new file mode 100644 index 0000000..cc66f97 --- /dev/null +++ b/src/shared/protocols/chat/PtlDelPrivate.ts @@ -0,0 +1,12 @@ + + +/** + * 删除私聊窗口 + */ +export type ReqDelPrivate = { + privateId: string; +}; + +export type ResDelPrivate = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/chat/PtlGetList.ts b/src/shared/protocols/chat/PtlGetList.ts new file mode 100644 index 0000000..73f3fb9 --- /dev/null +++ b/src/shared/protocols/chat/PtlGetList.ts @@ -0,0 +1,19 @@ +import { MsgChat } from '../msg_s2c/MsgChat'; +import { MsgPrivate } from '../msg_s2c/MsgPrivate'; + + +/** + * 获取消息缓存列表 + */ +export type ReqGetList = { + +}; + +export type ResGetList = { + 'cross': MsgChat[]; + 'local': MsgChat[]; + 'guild': MsgChat[]; + 'private'?: { + [privateId: string]: MsgPrivate[]; + }; +}; \ No newline at end of file diff --git a/src/shared/protocols/chat/PtlHelp.ts b/src/shared/protocols/chat/PtlHelp.ts new file mode 100644 index 0000000..7f66dae --- /dev/null +++ b/src/shared/protocols/chat/PtlHelp.ts @@ -0,0 +1,13 @@ +import { prizeType } from '../type'; + +export type ReqHelp = { + helps: { + uid: string; + cTime: number; + }[]; +}; + +export type ResHelp = { + + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/chat/PtlPrivate.ts b/src/shared/protocols/chat/PtlPrivate.ts new file mode 100644 index 0000000..57761ba --- /dev/null +++ b/src/shared/protocols/chat/PtlPrivate.ts @@ -0,0 +1,13 @@ + + +/** + * 发送私聊 + */ +export type ReqPrivate = { + msg: string; + uid: string; +}; + +export type ResPrivate = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/chat/PtlSend.ts b/src/shared/protocols/chat/PtlSend.ts new file mode 100644 index 0000000..92fc8c3 --- /dev/null +++ b/src/shared/protocols/chat/PtlSend.ts @@ -0,0 +1,10 @@ +import { MsgChat } from '../msg_s2c/MsgChat'; + +/** + * 发送消息 + */ +export type ReqSend = Pick; + +export type ResSend = { + code?: number; +}; \ No newline at end of file diff --git a/src/shared/protocols/chongzhi/PtlBuyGift.ts b/src/shared/protocols/chongzhi/PtlBuyGift.ts new file mode 100644 index 0000000..75c0780 --- /dev/null +++ b/src/shared/protocols/chongzhi/PtlBuyGift.ts @@ -0,0 +1,13 @@ +import { prizeType } from '../type'; + + +/** + * 购买特权礼包 + */ +export type ReqBuyGift = { + vip: number; +}; + +export type ResBuyGift = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/chongzhi/PtlOpen.ts b/src/shared/protocols/chongzhi/PtlOpen.ts new file mode 100644 index 0000000..15f31d8 --- /dev/null +++ b/src/shared/protocols/chongzhi/PtlOpen.ts @@ -0,0 +1,18 @@ + +/** + * 进入充值 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + /**充值记录 */ + payNum: { + [payId: string]: number; + }; + /**特权礼包购买记录 */ + giftBuy: { + [vip: string]: number; + }; +}; \ No newline at end of file diff --git a/src/shared/protocols/conglinshoulie/PtlBuyNum.ts b/src/shared/protocols/conglinshoulie/PtlBuyNum.ts new file mode 100644 index 0000000..957e67c --- /dev/null +++ b/src/shared/protocols/conglinshoulie/PtlBuyNum.ts @@ -0,0 +1,12 @@ + + +/** + * 购买挑战次数 + */ +export type ReqBuyNum = { + +}; + +export type ResBuyNum = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/conglinshoulie/PtlFind.ts b/src/shared/protocols/conglinshoulie/PtlFind.ts new file mode 100644 index 0000000..9697139 --- /dev/null +++ b/src/shared/protocols/conglinshoulie/PtlFind.ts @@ -0,0 +1,17 @@ +import { fightResult, joinFightData } from '../../fightControl/fightType'; + + +/** + * 匹配对手 + */ +export type ReqFind = { + +}; + +export type ResFind = { + enemy: { + allStar: number; + info: joinFightData; + }; + result: fightResult; +}; \ No newline at end of file diff --git a/src/shared/protocols/conglinshoulie/PtlGetLog.ts b/src/shared/protocols/conglinshoulie/PtlGetLog.ts new file mode 100644 index 0000000..c665d25 --- /dev/null +++ b/src/shared/protocols/conglinshoulie/PtlGetLog.ts @@ -0,0 +1,8 @@ +import { fightResult } from '../../fightControl/fightType'; + + +export type ReqGetLog = { + +}; + +export type ResGetLog = fightResult[]; \ No newline at end of file diff --git a/src/shared/protocols/conglinshoulie/PtlOpen.ts b/src/shared/protocols/conglinshoulie/PtlOpen.ts new file mode 100644 index 0000000..356c588 --- /dev/null +++ b/src/shared/protocols/conglinshoulie/PtlOpen.ts @@ -0,0 +1,20 @@ + +/** + * 进入丛林狩猎 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + /**星级 */ + allStar: number; + /**已使用挑战次数 */ + useFightNum: number; + /**已购买挑战次数 */ + buyFightNum: number; + /**胜场次数 */ + fightWinNum: number; + /**已领取的胜场奖励 */ + recWinPrize: number[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/conglinshoulie/PtlRec.ts b/src/shared/protocols/conglinshoulie/PtlRec.ts new file mode 100644 index 0000000..ca8cbe0 --- /dev/null +++ b/src/shared/protocols/conglinshoulie/PtlRec.ts @@ -0,0 +1,12 @@ + + +/** + * 领取每日胜场奖励 + */ +export type ReqRec = { + index: number; +}; + +export type ResRec = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/dixiaheishi/PtlOpen.ts b/src/shared/protocols/dixiaheishi/PtlOpen.ts new file mode 100644 index 0000000..3491191 --- /dev/null +++ b/src/shared/protocols/dixiaheishi/PtlOpen.ts @@ -0,0 +1,15 @@ + + +/** + * 进入地下黑市 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + [k: string]: any; + tqyk: { + [payId: string]: number; + }; +}; \ No newline at end of file diff --git a/src/shared/protocols/dixialeitai/PtlBuy.ts b/src/shared/protocols/dixialeitai/PtlBuy.ts new file mode 100644 index 0000000..9fd27e3 --- /dev/null +++ b/src/shared/protocols/dixialeitai/PtlBuy.ts @@ -0,0 +1,15 @@ +import { prizeType } from '../type'; +import { ResOpen } from './PtlOpen'; + + +/** + * 商店购买 + */ +export type ReqBuy = { + id: string; +}; + +export type ResBuy = { + change: Partial; + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/dixialeitai/PtlFight.ts b/src/shared/protocols/dixialeitai/PtlFight.ts new file mode 100644 index 0000000..01513b3 --- /dev/null +++ b/src/shared/protocols/dixialeitai/PtlFight.ts @@ -0,0 +1,20 @@ +import { fightResult } from '../../fightControl/fightType'; +import { prizeType } from '../type'; +import { ResOpen } from './PtlOpen'; + + +/** + * 战斗 传英雄pos + */ +export type ReqFight = string; + +export type ResFight = { + /**数据修改 */ + change: Partial; + /**战斗数据 */ + result: fightResult; + /**战斗奖励 */ + fightPrize: ResOpen['saodang']; + /**挑战奖励 */ + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/dixialeitai/PtlNext.ts b/src/shared/protocols/dixialeitai/PtlNext.ts new file mode 100644 index 0000000..11a20a8 --- /dev/null +++ b/src/shared/protocols/dixialeitai/PtlNext.ts @@ -0,0 +1,11 @@ +import { ResOpen } from './PtlOpen'; + + +/** + * 下一关 + */ +export type ReqNext = {}; + +export type ResNext = { + change: Partial; +}; \ No newline at end of file diff --git a/src/shared/protocols/dixialeitai/PtlOpen.ts b/src/shared/protocols/dixialeitai/PtlOpen.ts new file mode 100644 index 0000000..a98e3f0 --- /dev/null +++ b/src/shared/protocols/dixialeitai/PtlOpen.ts @@ -0,0 +1,69 @@ +import { roleDataType } from '../../fightControl/fightType'; +import { prizeType } from '../type'; + +/** + * 地下擂台open + */ +export type ReqOpen = {}; + +export type ResOpen = { + /**商店 */ + shop: { + [id: string]: { + /** id */ + id: number; + /** 商品名称 */ + name: string; + /** 购买次数 */ + buyNum: number; + /** 购买消耗 */ + need: { a: string, t: string, n: number, [x: string]: any; }[]; + /** 购买获得 */ + prize: { a: string, t: string, n: number, [x: string]: any; }[]; + /**已购买次数 */ + useBuyNum: number; + }; + }; + /**英雄 */ + heros: { + [pos: string]: roleDataType; + }; + /**当前层数 */ + curLayer: number; + /**历史最高层数 */ + maxLayer: number; + /**本轮活动最高层数 */ + curMaxLayer: number; + /**当日已挑战层数 */ + toDayLayer: number; + /**记录成功挑战的层数 秘宝数量=recordLayer/G.gc.dxlt_com.getMiBaoByFightNum*/ + recordLayer: number; + /**道具 */ + item: { [id: string]: number; }; + /**buff */ + buff: { [id: string]: number; }; + /**扫荡 */ + saodang?: { + item?: { [id: string]: number; }; + buff?: { [id: string]: number; }; + prize?: prizeType[]; + mibaoNum?: number; + shop?: boolean; + }; + /**敌人血量 */ + enemyState: { + [pos: string]: { hp: number, maxHp: number; }; + }; + /**本层事件是否结束 */ + over: boolean; + /**重置时间 */ + resetTime: number; + /**已领取的探索奖励 */ + killPrizeRec: number[]; + /**已领取的通关奖励 */ + passPrizeRec: number[]; + /**密宝数量 */ + mibao?: number; + /**击杀守卫长 */ + killBoss?: number; +}; \ No newline at end of file diff --git a/src/shared/protocols/dixialeitai/PtlRecMiBao.ts b/src/shared/protocols/dixialeitai/PtlRecMiBao.ts new file mode 100644 index 0000000..b5a65f3 --- /dev/null +++ b/src/shared/protocols/dixialeitai/PtlRecMiBao.ts @@ -0,0 +1,15 @@ +import { prizeType } from '../type'; +import { ResOpen } from './PtlOpen'; + + +/** + * 领取秘宝 + */ +export type ReqRecMiBao = { + id: string; +}; + +export type ResRecMiBao = { + change: Partial; + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/dixialeitai/PtlRecPrize.ts b/src/shared/protocols/dixialeitai/PtlRecPrize.ts new file mode 100644 index 0000000..8a2bc87 --- /dev/null +++ b/src/shared/protocols/dixialeitai/PtlRecPrize.ts @@ -0,0 +1,15 @@ +import { prizeType } from '../type'; +import { ResOpen } from './PtlOpen'; + +/** + * 领取奖励 + */ +export type ReqRecPrize = { + index: number; + type: 'killPrizeRec' | 'passPrizeRec'; +}; + +export type ResRecPrize = { + change: Partial; + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/dixialeitai/PtlSetDef.ts b/src/shared/protocols/dixialeitai/PtlSetDef.ts new file mode 100644 index 0000000..2231f25 --- /dev/null +++ b/src/shared/protocols/dixialeitai/PtlSetDef.ts @@ -0,0 +1,8 @@ + + +/** + * 设置阵容 + */ +export type ReqSetDef = string[]; + +export type ResSetDef = {}; \ No newline at end of file diff --git a/src/shared/protocols/dixialeitai/PtlUseItem.ts b/src/shared/protocols/dixialeitai/PtlUseItem.ts new file mode 100644 index 0000000..f939f7a --- /dev/null +++ b/src/shared/protocols/dixialeitai/PtlUseItem.ts @@ -0,0 +1,17 @@ +import { prizeType } from '../type'; +import { ResOpen } from './PtlOpen'; + + +/** + * 使用道具 + */ +export type ReqUseItem = { + id: string; + pos?: string; +}; + +export type ResUseItem = { + change: Partial; + fightPrize?: ResOpen['saodang']; + prize?: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/dixiaqianzhuang/PtlOpen.ts b/src/shared/protocols/dixiaqianzhuang/PtlOpen.ts new file mode 100644 index 0000000..8ebf8c9 --- /dev/null +++ b/src/shared/protocols/dixiaqianzhuang/PtlOpen.ts @@ -0,0 +1,13 @@ +/** + * 地下钱庄(点金)open接口 + */ + +export type ReqOpen = { + +}; + +export type ResOpen = { + /**免费次数前端自己取配置*/ + /**地下钱庄兑换次数 */ + num: number; +}; \ No newline at end of file diff --git a/src/shared/protocols/dixiaqianzhuang/PtlQf.ts b/src/shared/protocols/dixiaqianzhuang/PtlQf.ts new file mode 100644 index 0000000..7745323 --- /dev/null +++ b/src/shared/protocols/dixiaqianzhuang/PtlQf.ts @@ -0,0 +1,19 @@ +import { prizeType } from '../type'; +import { ResOpen } from './PtlOpen'; + +/** + * 地下钱庄(点金)接口 + */ + +export type ReqQf = { + type: 1 | 10; +}; + +export type ResQf = { + /**抽取的奖励 */ + prize: prizeType[]; + /**更新open接口数据 */ + changeData?: Partial; + /**暴击次数 */ + bj?: {1?:number, 2?:number, 3?:number}; +}; \ No newline at end of file diff --git a/src/shared/protocols/email/PtlAllReceive.ts b/src/shared/protocols/email/PtlAllReceive.ts new file mode 100644 index 0000000..a3af73a --- /dev/null +++ b/src/shared/protocols/email/PtlAllReceive.ts @@ -0,0 +1,15 @@ +import { prizeType } from '../type'; + +/** + * 一键领取 + */ +export type ReqAllReceive = { + +}; + +export type ResAllReceive = { + prize: prizeType[]; + change: { + [_id: string]: boolean; + }; +}; \ No newline at end of file diff --git a/src/shared/protocols/email/PtlAllRemove.ts b/src/shared/protocols/email/PtlAllRemove.ts new file mode 100644 index 0000000..4cf88f5 --- /dev/null +++ b/src/shared/protocols/email/PtlAllRemove.ts @@ -0,0 +1,10 @@ + + +/** + * 一键删除邮件 + */ +export type ReqAllRemove = { + +}; + +export type ResAllRemove = string[]; \ No newline at end of file diff --git a/src/shared/protocols/email/PtlOpen.ts b/src/shared/protocols/email/PtlOpen.ts new file mode 100644 index 0000000..cad50af --- /dev/null +++ b/src/shared/protocols/email/PtlOpen.ts @@ -0,0 +1,44 @@ +import { prizeType } from '../type'; + +/** + * 获取邮件列表 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + [_id: string]: { + /**邮件唯一id */ + _id: string; + /**玩家uid */ + uid: string; + /** + * 邮件类型 + * @param gm gm后台邮件 + * @param system 系统邮件 + */ + type: 'system' | 'gm'; + /**标题 */ + title: string; + /**内容 */ + content: string; + /**邮件创建时间戳 */ + createTime: number; + /**奖励邮件 */ + prizeData?: { + /**奖励 */ + prize: prizeType[]; + /**是否已领取 */ + isGet: boolean; + }; + /**插入邮件内容的值 str(content, contentInsertArr) */ + contentInsertArr?: any[]; + /**全服邮件 是否领取,存在uid为领取 */ + prizelist?: string[], + /**全服邮件 是否删除,存在uid为删除 */ + dellist?: string[] + /** */ + emailRead?: boolean + }; +}; \ No newline at end of file diff --git a/src/shared/protocols/email/PtlRead.ts b/src/shared/protocols/email/PtlRead.ts new file mode 100644 index 0000000..f87f553 --- /dev/null +++ b/src/shared/protocols/email/PtlRead.ts @@ -0,0 +1,8 @@ +/** + * 获取邮件列表 + */ +export type ReqRead = { + _id: string +}; + +export type ResRead = string[]; \ No newline at end of file diff --git a/src/shared/protocols/email/PtlReceive.ts b/src/shared/protocols/email/PtlReceive.ts new file mode 100644 index 0000000..d4a7920 --- /dev/null +++ b/src/shared/protocols/email/PtlReceive.ts @@ -0,0 +1,17 @@ +import { prizeType } from '../type'; + + +/** + * 领取邮件 + */ +export type ReqReceive = { + /**邮件_id */ + _id: string; +}; + +export type ResReceive = { + prize: prizeType[]; + change: { + [_id: string]: boolean; + }; +}; \ No newline at end of file diff --git a/src/shared/protocols/email/PtlRemove.ts b/src/shared/protocols/email/PtlRemove.ts new file mode 100644 index 0000000..0af6005 --- /dev/null +++ b/src/shared/protocols/email/PtlRemove.ts @@ -0,0 +1,11 @@ + + +/** + * 删除邮件 + */ +export type ReqRemove = { + /**邮件_id */ + _id: string; +}; + +export type ResRemove = string[]; \ No newline at end of file diff --git a/src/shared/protocols/equip/PtlAdjustment.ts b/src/shared/protocols/equip/PtlAdjustment.ts new file mode 100644 index 0000000..be767fa --- /dev/null +++ b/src/shared/protocols/equip/PtlAdjustment.ts @@ -0,0 +1,14 @@ + +/** + * 装备调校 + */ +export type ReqAdjustment = { + /**装备唯一id */ + equipId: string; + /**调校次数 */ + num: 1 | 10; +}; + +export type ResAdjustment = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/equip/PtlGetList.ts b/src/shared/protocols/equip/PtlGetList.ts new file mode 100644 index 0000000..b4fc981 --- /dev/null +++ b/src/shared/protocols/equip/PtlGetList.ts @@ -0,0 +1,32 @@ +/** + * 获取装备列表 + */ + +export type ReqGetList = { + +}; + +export type ResGetList = { + list: { + [_id: string]: { + /**装备唯一id */ + _id: string; + /**强化等级 初始为0*/ + lv: number; + /**装备星级 初始为0*/ + star: number; + /**装备id */ + equipId: string; + /**穿戴在哪个英雄身上*/ + wearaId: string; + /**获取时间 */ + getTime: number; + /**调校等级 */ + adjustment?: number; + }; + }; + /**装备获取的历史记录数量 */ + lshd: { + [equipId: string]: number; + }; +}; \ No newline at end of file diff --git a/src/shared/protocols/equip/PtlLvUp.ts b/src/shared/protocols/equip/PtlLvUp.ts new file mode 100644 index 0000000..5aa9103 --- /dev/null +++ b/src/shared/protocols/equip/PtlLvUp.ts @@ -0,0 +1,17 @@ +/** + * 装备强化 + */ + +export type ReqLvUp = { + /**装备唯一id */ + equipId: string; + /**强化次数 */ + upLv: 1 | 10; +}; + +export type ResLvUp = { + /**返回装备等级 */ + lv: number + /**升了多少等级 */ + addlv: number +}; \ No newline at end of file diff --git a/src/shared/protocols/equip/PtlOneKeyLvUp.ts b/src/shared/protocols/equip/PtlOneKeyLvUp.ts new file mode 100644 index 0000000..fe3b692 --- /dev/null +++ b/src/shared/protocols/equip/PtlOneKeyLvUp.ts @@ -0,0 +1,18 @@ + +/** + * 一键强化 + */ + +export type ReqOneKeyLvUp = { + /**英雄唯一id */ + heroId: string; +}; + +export type ResOneKeyLvUp = { + // 强化了多少级 计数 + posLvUp: { [id: string]: number } + // 强化到多少级 方便任务计数 + log: { [id: string]: number } + // 升级总共消耗的资源 + allNeed: any[] +}; \ No newline at end of file diff --git a/src/shared/protocols/equip/PtlOneKeyTakeOff.ts b/src/shared/protocols/equip/PtlOneKeyTakeOff.ts new file mode 100644 index 0000000..231e414 --- /dev/null +++ b/src/shared/protocols/equip/PtlOneKeyTakeOff.ts @@ -0,0 +1,10 @@ + + +export type ReqOneKeyTakeOff = { + /**干部_id */ + h_id: string; +}; + +export type ResOneKeyTakeOff = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/equip/PtlOneKeyWear.ts b/src/shared/protocols/equip/PtlOneKeyWear.ts new file mode 100644 index 0000000..59c39ed --- /dev/null +++ b/src/shared/protocols/equip/PtlOneKeyWear.ts @@ -0,0 +1,13 @@ + +/** + * 一键穿戴 + */ + +export type ReqOneKeyWear = { + /**英雄唯一id */ + heroId: string; +}; + +export type ResOneKeyWear = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/equip/PtlReset.ts b/src/shared/protocols/equip/PtlReset.ts new file mode 100644 index 0000000..7671cb0 --- /dev/null +++ b/src/shared/protocols/equip/PtlReset.ts @@ -0,0 +1,14 @@ +import { prizeType } from '../type'; + + +/** + * 装备拆解重置 + */ +export type ReqReset = { + _ids: string[]; + type: 'cj' | 'cz' | 'yl'; +}; + +export type ResReset = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/equip/PtlStarUp.ts b/src/shared/protocols/equip/PtlStarUp.ts new file mode 100644 index 0000000..df6a93f --- /dev/null +++ b/src/shared/protocols/equip/PtlStarUp.ts @@ -0,0 +1,14 @@ +/** + * 装备升星 + */ + +export type ReqStarUp = { + /**装备唯一id */ + equipId: string; + /**要吞噬的装备 */ + equipArr: string[]; +}; + +export type ResStarUp = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/equip/PtlTakeOff.ts b/src/shared/protocols/equip/PtlTakeOff.ts new file mode 100644 index 0000000..623db01 --- /dev/null +++ b/src/shared/protocols/equip/PtlTakeOff.ts @@ -0,0 +1,12 @@ +/** + * 脱装备 + */ + +export type ReqTakeOff = { + /**装备唯一id */ + equipId: string; +}; + +export type ResTakeOff = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/equip/PtlWear.ts b/src/shared/protocols/equip/PtlWear.ts new file mode 100644 index 0000000..382d974 --- /dev/null +++ b/src/shared/protocols/equip/PtlWear.ts @@ -0,0 +1,15 @@ + +/** + * 穿戴装备 + */ + +export type ReqWear = { + /**英雄唯一id */ + heroId: string; + /**装备唯一id */ + equipId: string; +}; + +export type ResWear = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/event/136Gift/PtlOpen.ts b/src/shared/protocols/event/136Gift/PtlOpen.ts new file mode 100644 index 0000000..82532d8 --- /dev/null +++ b/src/shared/protocols/event/136Gift/PtlOpen.ts @@ -0,0 +1,13 @@ + + +/** + * 进入136礼包 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + /**已领取的下标 */ + recIndex: number[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/136Gift/PtlRec.ts b/src/shared/protocols/event/136Gift/PtlRec.ts new file mode 100644 index 0000000..7003ef4 --- /dev/null +++ b/src/shared/protocols/event/136Gift/PtlRec.ts @@ -0,0 +1,13 @@ +import { prizeType } from '../../type'; + +/** + * 领取136礼包 + */ +export type ReqRec = { + /**领取下标 如果是0代表购买了60元后的一键领取 */ + index: number; +}; + +export type ResRec = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/chuanshuozhilu/PtlOpen.ts b/src/shared/protocols/event/chuanshuozhilu/PtlOpen.ts new file mode 100644 index 0000000..8f481d2 --- /dev/null +++ b/src/shared/protocols/event/chuanshuozhilu/PtlOpen.ts @@ -0,0 +1,22 @@ +import { ReqAddHuoDong } from "../../../../monopoly/protocols/PtlAddHuoDong"; + +/** + * 进入传说之路 + */ +export type ReqOpen = { + hdid: number +}; + +export type ResOpen = { + info: { + [hid: string]: Partial<{ + lv: number; + jieji: number; + /**已领取的奖励 */ + rec: number[]; + /**宝箱奖励是否已领取 */ + box: boolean; + }>; + }; + hdinfo: ReqAddHuoDong +}; \ No newline at end of file diff --git a/src/shared/protocols/event/chuanshuozhilu/PtlRec.ts b/src/shared/protocols/event/chuanshuozhilu/PtlRec.ts new file mode 100644 index 0000000..189f0db --- /dev/null +++ b/src/shared/protocols/event/chuanshuozhilu/PtlRec.ts @@ -0,0 +1,16 @@ +import { prizeType } from '../../type'; + +/** + * 领取奖励 + */ +export type ReqRec = { + /**领取类型 */ + type: 'task' | 'box'; + /**如果是task需要传任务下标 */ + index?: number; + hdid: number +}; + +export type ResRec = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/diaoluoduihuan/PtlGet.ts b/src/shared/protocols/event/diaoluoduihuan/PtlGet.ts new file mode 100644 index 0000000..f19ce90 --- /dev/null +++ b/src/shared/protocols/event/diaoluoduihuan/PtlGet.ts @@ -0,0 +1,15 @@ +import { prizeType } from '../../type'; + +/** + * 掉落兑换 兑换、购买、礼包 + */ +export type ReqGet = { + type: 'duihuan' | 'shop' | 'gift'; + index: number; + nums?: number; + hdid: number; +}; + +export type ResGet = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/diaoluoduihuan/PtlOpen.ts b/src/shared/protocols/event/diaoluoduihuan/PtlOpen.ts new file mode 100644 index 0000000..e272d26 --- /dev/null +++ b/src/shared/protocols/event/diaoluoduihuan/PtlOpen.ts @@ -0,0 +1,18 @@ +import { ReqAddHuoDong } from "../../../../monopoly/protocols/PtlAddHuoDong"; + + +/** + * 掉落兑换 + */ +export type ReqOpen = { + hdid: number +}; + +export type ResOpen = { + record: { + [type: string]: { + [index: string]: number; + }; + }; + hdinfo: ReqAddHuoDong +}; \ No newline at end of file diff --git a/src/shared/protocols/event/huobanzhaomu/PtlOpen.ts b/src/shared/protocols/event/huobanzhaomu/PtlOpen.ts new file mode 100644 index 0000000..d2f659c --- /dev/null +++ b/src/shared/protocols/event/huobanzhaomu/PtlOpen.ts @@ -0,0 +1,16 @@ + +/** + * 打开伙伴招募 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + /**任务完成度 */ + finish: { + [index: string]: boolean; + }; + /**已领取的奖励 */ + rec: number[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/huobanzhaomu/PtlRec.ts b/src/shared/protocols/event/huobanzhaomu/PtlRec.ts new file mode 100644 index 0000000..3c6df81 --- /dev/null +++ b/src/shared/protocols/event/huobanzhaomu/PtlRec.ts @@ -0,0 +1,13 @@ +import { prizeType } from '../../type'; + + +/** + * 伙伴招募领取奖励 + */ +export type ReqRec = { + index: number; +}; + +export type ResRec = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/jierihuodong/PtlGet.ts b/src/shared/protocols/event/jierihuodong/PtlGet.ts new file mode 100644 index 0000000..bb5b842 --- /dev/null +++ b/src/shared/protocols/event/jierihuodong/PtlGet.ts @@ -0,0 +1,14 @@ +import { prizeType } from '../../type'; + +/** + * 限时兑换和限时礼包 + */ +export type ReqGet = { + num: number; + index: number; + type: 'duihuan' | 'libao'; +}; + +export type ResGet = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/jierihuodong/PtlOpen.ts b/src/shared/protocols/event/jierihuodong/PtlOpen.ts new file mode 100644 index 0000000..e5be87c --- /dev/null +++ b/src/shared/protocols/event/jierihuodong/PtlOpen.ts @@ -0,0 +1,27 @@ + + +/** + * 进入节日活动 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + /**已领取的登陆福利 */ + recLogin: number[]; + /**已领取的活动任务 */ + recTask: number[]; + /**限时兑换记录 */ + recordDuihuan: { + [index: string]: number; + }; + /**节日礼包记录 */ + recordLibao: { + [index: string]: number; + }; + /**任务完成度 */ + taskFinish: { + [taskId: string]: number; + }; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/jierihuodong/PtlRec.ts b/src/shared/protocols/event/jierihuodong/PtlRec.ts new file mode 100644 index 0000000..29fcfce --- /dev/null +++ b/src/shared/protocols/event/jierihuodong/PtlRec.ts @@ -0,0 +1,14 @@ +import { prizeType } from '../../type'; + + +/** + * 登陆福利和活动任务 + */ +export type ReqRec = { + type: 'login' | 'task'; + index: number; +}; + +export type ResRec = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/jijin/PtlCheckOpen.ts b/src/shared/protocols/event/jijin/PtlCheckOpen.ts new file mode 100644 index 0000000..c50ca32 --- /dev/null +++ b/src/shared/protocols/event/jijin/PtlCheckOpen.ts @@ -0,0 +1,13 @@ + +/** + * 基金是否开启 + */ +export type ReqCheckOpen = { +}; + +export type ResCheckOpen = { + /** 每个基金是否开启 */ + [Type:string]:boolean +}; + +export type jijinType = 'dengjijijin' | 'guanqiajijin' | 'dayjijin' | 'tianshujijin' ; \ No newline at end of file diff --git a/src/shared/protocols/event/jijin/PtlOpen.ts b/src/shared/protocols/event/jijin/PtlOpen.ts new file mode 100644 index 0000000..ffd402d --- /dev/null +++ b/src/shared/protocols/event/jijin/PtlOpen.ts @@ -0,0 +1,20 @@ + +/** + * 进入基金界面 + */ +export type ReqOpen = { + type: jijinType; +}; + +export type ResOpen = { + /**是否购买了进阶礼包 */ + isPay: boolean; + rec: { + [index: string]: { pt: boolean, tq: boolean; }; + }; + finished: number; + /**天数基金轮次 */ + round?: number; +}; + +export type jijinType = 'dengjijijin' | 'guanqiajijin' | 'dayjijin' | 'tianshujijin'; \ No newline at end of file diff --git a/src/shared/protocols/event/jijin/PtlReceive.ts b/src/shared/protocols/event/jijin/PtlReceive.ts new file mode 100644 index 0000000..21bab64 --- /dev/null +++ b/src/shared/protocols/event/jijin/PtlReceive.ts @@ -0,0 +1,16 @@ +import { prizeType } from '../../type'; +import { jijinType, ResOpen } from './PtlOpen'; + + +/** + * 领取基金奖励 + */ +export type ReqReceive = { + type: jijinType; + recIndexs: number[]; +}; + +export type ResReceive = { + prize: prizeType[]; + rec: ResOpen['rec']; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/kaifukuanghuan/PtlLoginPrize.ts b/src/shared/protocols/event/kaifukuanghuan/PtlLoginPrize.ts new file mode 100644 index 0000000..6154785 --- /dev/null +++ b/src/shared/protocols/event/kaifukuanghuan/PtlLoginPrize.ts @@ -0,0 +1,13 @@ +import { prizeType } from '../../type'; + + +/** + * 领取开服狂欢登陆奖励 + */ +export type ReqLoginPrize = { + +}; + +export type ResLoginPrize = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/kaifukuanghuan/PtlOpen.ts b/src/shared/protocols/event/kaifukuanghuan/PtlOpen.ts new file mode 100644 index 0000000..f0bcd88 --- /dev/null +++ b/src/shared/protocols/event/kaifukuanghuan/PtlOpen.ts @@ -0,0 +1,29 @@ + + +/** + * 进入开服狂欢 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + /**第几天 */ + day: number; + /**已领取的登陆奖励 */ + receiveLogin: number[]; + /**已购买的商品数量 */ + buyShop: { + [index: string]: number; + }; + /**已领取的任务奖励 */ + receiveTask: { + [day: string]: number[]; + }; + /**任务完成情况 */ + taskFinished: { + [taskId: string]: number; + }; + /**已领取的任务宝箱奖励 */ + receiveBox: number[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/kaifukuanghuan/PtlShopBuy.ts b/src/shared/protocols/event/kaifukuanghuan/PtlShopBuy.ts new file mode 100644 index 0000000..9482386 --- /dev/null +++ b/src/shared/protocols/event/kaifukuanghuan/PtlShopBuy.ts @@ -0,0 +1,16 @@ +import { prizeType } from '../../type'; + + +/** + * 开服狂款购买商品 + */ +export type ReqShopBuy = { + /**商品数组下标 */ + index: number; + /**购买数量 不传则是1*/ + buyNum?: number; +}; + +export type ResShopBuy = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/kaifukuanghuan/PtlTaskBox.ts b/src/shared/protocols/event/kaifukuanghuan/PtlTaskBox.ts new file mode 100644 index 0000000..9839959 --- /dev/null +++ b/src/shared/protocols/event/kaifukuanghuan/PtlTaskBox.ts @@ -0,0 +1,13 @@ +import { prizeType } from '../../type'; + + +/** + * 开服狂欢领取任务宝箱 + */ +export type ReqTaskBox = { + index: number; +}; + +export type ResTaskBox = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/kaifukuanghuan/PtlTaskPrize.ts b/src/shared/protocols/event/kaifukuanghuan/PtlTaskPrize.ts new file mode 100644 index 0000000..9c5d65d --- /dev/null +++ b/src/shared/protocols/event/kaifukuanghuan/PtlTaskPrize.ts @@ -0,0 +1,16 @@ +import { prizeType } from '../../type'; + + +/** + * 开服狂欢领取任务奖励 + */ +export type ReqTaskPrize = { + /**天数 */ + day: number; + /**任务id */ + index: number; +}; + +export type ResTaskPrize = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/leijichongzhi/PtlOpen.ts b/src/shared/protocols/event/leijichongzhi/PtlOpen.ts new file mode 100644 index 0000000..e61167b --- /dev/null +++ b/src/shared/protocols/event/leijichongzhi/PtlOpen.ts @@ -0,0 +1,19 @@ +import { ReqAddHuoDong } from "../../../../monopoly/protocols/PtlAddHuoDong"; + +/** + * 进入累计充值 + */ +export type ReqOpen = { + hdid: number +}; + +export type ResOpen = { + /**活动开始时间 */ + sTime: number; + /**已领取的奖励下标 */ + recIndex: number[]; + /**累计充值的金额 */ + payNum: number; + /**活动信息 */ + hdinfo: ReqAddHuoDong; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/leijichongzhi/PtlRec.ts b/src/shared/protocols/event/leijichongzhi/PtlRec.ts new file mode 100644 index 0000000..a349656 --- /dev/null +++ b/src/shared/protocols/event/leijichongzhi/PtlRec.ts @@ -0,0 +1,14 @@ +import { prizeType } from '../../type'; + + +/** + * 领取累计充值奖励 + */ +export type ReqRec = { + index: number; + hdid: number +}; + +export type ResRec = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/niudanji/PtlLottery.ts b/src/shared/protocols/event/niudanji/PtlLottery.ts new file mode 100644 index 0000000..4bbf4de --- /dev/null +++ b/src/shared/protocols/event/niudanji/PtlLottery.ts @@ -0,0 +1,12 @@ +import { prizeType } from '../../type'; + +/** + * 扭蛋机抽奖 + */ +export type ReqLottery = { + +}; + +export type ResLottery = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/niudanji/PtlOpen.ts b/src/shared/protocols/event/niudanji/PtlOpen.ts new file mode 100644 index 0000000..c9ecd40 --- /dev/null +++ b/src/shared/protocols/event/niudanji/PtlOpen.ts @@ -0,0 +1,18 @@ +import { prizeType } from '../../type'; + + +/** + * 进入扭蛋机 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + /**扭蛋次数 */ + hasNum: number; + /**使用扭蛋次数 */ + useNum: number; + /**所有玩家抽奖记录 */ + logs?: { name: string, item: prizeType; }[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/qirichongzhi/PtlOpen.ts b/src/shared/protocols/event/qirichongzhi/PtlOpen.ts new file mode 100644 index 0000000..d38151e --- /dev/null +++ b/src/shared/protocols/event/qirichongzhi/PtlOpen.ts @@ -0,0 +1,19 @@ + + +/** + * 七日充值 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + /**开始时间 */ + sTime: number; + /**第几轮 */ + round: number; + /**活动期间充值数量 */ + finished: number; + /**已领取的奖励 */ + recIndexs: number[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/qirichongzhi/PtlRec.ts b/src/shared/protocols/event/qirichongzhi/PtlRec.ts new file mode 100644 index 0000000..1dc7c0b --- /dev/null +++ b/src/shared/protocols/event/qirichongzhi/PtlRec.ts @@ -0,0 +1,12 @@ +import { prizeType } from '../../type'; + +/** + * 领取七日充值奖励 + */ +export type ReqRec = { + index: number; +}; + +export type ResRec = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/qiridenglu/PtlOpen.ts b/src/shared/protocols/event/qiridenglu/PtlOpen.ts new file mode 100644 index 0000000..e63c113 --- /dev/null +++ b/src/shared/protocols/event/qiridenglu/PtlOpen.ts @@ -0,0 +1,15 @@ +import { ReqAddHuoDong } from "../../../../monopoly/protocols/PtlAddHuoDong"; + + +/** + * 进入七日登陆 + */ +export type ReqOpen = { + hdid: number +}; + +export type ResOpen = { + loginDay: number; + recPrize: number[]; + hdinfo: ReqAddHuoDong; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/qiridenglu/PtlRecPrize.ts b/src/shared/protocols/event/qiridenglu/PtlRecPrize.ts new file mode 100644 index 0000000..3453509 --- /dev/null +++ b/src/shared/protocols/event/qiridenglu/PtlRecPrize.ts @@ -0,0 +1,14 @@ +import { prizeType } from '../../type'; + + +/** + * 领取七日登陆奖励 + */ +export type ReqRecPrize = { + inedx: number; + hdid: number +}; + +export type ResRecPrize = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/shiwuleichong/PtlOpen.ts b/src/shared/protocols/event/shiwuleichong/PtlOpen.ts new file mode 100644 index 0000000..5988d1b --- /dev/null +++ b/src/shared/protocols/event/shiwuleichong/PtlOpen.ts @@ -0,0 +1,18 @@ + +/** + * 进入15天累充 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + /**礼包组 取G.gc.shiwuleichong[index] */ + index: number; + /**开始时间 倒计时显示 sTime+G.gc.shiwuleichong[index].time */ + sTime: number; + /**已领取的奖励下标 */ + recIndex: number[]; + /**已充值的天数 */ + payDay: number; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/shiwuleichong/PtlRec.ts b/src/shared/protocols/event/shiwuleichong/PtlRec.ts new file mode 100644 index 0000000..0bf0af1 --- /dev/null +++ b/src/shared/protocols/event/shiwuleichong/PtlRec.ts @@ -0,0 +1,13 @@ +import { prizeType } from '../../type'; + + +/** + * 领取15天累充奖励 + */ +export type ReqRec = { + index: number; +}; + +export type ResRec = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/shouchong/PtlOpen.ts b/src/shared/protocols/event/shouchong/PtlOpen.ts new file mode 100644 index 0000000..cad5f93 --- /dev/null +++ b/src/shared/protocols/event/shouchong/PtlOpen.ts @@ -0,0 +1,15 @@ + +/** + * 进入首充 + */ +export type ReqOpen = { + + +}; + +export type ResOpen = { + payNum: number; + receive: { + [k: string]: number[]; + }; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/shouchong/PtlReceive.ts b/src/shared/protocols/event/shouchong/PtlReceive.ts new file mode 100644 index 0000000..45af650 --- /dev/null +++ b/src/shared/protocols/event/shouchong/PtlReceive.ts @@ -0,0 +1,13 @@ +import { prizeType } from '../../type'; + + +/** + * 领取 + */ +export type ReqReceive = { + k: string; +}; + +export type ResReceive = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/xianshizhaomu/PtlBuy.ts b/src/shared/protocols/event/xianshizhaomu/PtlBuy.ts new file mode 100644 index 0000000..f883d39 --- /dev/null +++ b/src/shared/protocols/event/xianshizhaomu/PtlBuy.ts @@ -0,0 +1,13 @@ +import { prizeType } from '../../type'; + + +/** + * 购买礼包 + */ +export type ReqBuy = { + index: number; +}; + +export type ResBuy = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/xianshizhaomu/PtlDuihuan.ts b/src/shared/protocols/event/xianshizhaomu/PtlDuihuan.ts new file mode 100644 index 0000000..4e22f99 --- /dev/null +++ b/src/shared/protocols/event/xianshizhaomu/PtlDuihuan.ts @@ -0,0 +1,14 @@ +import { prizeType } from '../../type'; + + +/** + * 兑换 + */ +export type ReqDuihuan = { + num: number; + index: number; +}; + +export type ResDuihuan = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/xianshizhaomu/PtlLottery.ts b/src/shared/protocols/event/xianshizhaomu/PtlLottery.ts new file mode 100644 index 0000000..4766a41 --- /dev/null +++ b/src/shared/protocols/event/xianshizhaomu/PtlLottery.ts @@ -0,0 +1,14 @@ +import { prizeType } from '../../type'; + + +/** + * 抽奖 + */ +export type ReqLottery = { + type: 'one' | 'ten'; +}; + +export type ResLottery = { + prize: prizeType[]; + lotteryPrize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/xianshizhaomu/PtlOpen.ts b/src/shared/protocols/event/xianshizhaomu/PtlOpen.ts new file mode 100644 index 0000000..75ac9ba --- /dev/null +++ b/src/shared/protocols/event/xianshizhaomu/PtlOpen.ts @@ -0,0 +1,24 @@ + +/** + * 打开限时招募 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + /**总抽奖次数 */ + recordNum: number; + /**记录单抽次数 */ + recordOneNum: number; + /**已领取的回馈奖励 */ + recordPrize: number[]; + /**兑换记录 */ + recordDuihuan: { + [index: string]: number; + }; + /**购买记录 */ + recordBuy: { + [index: string]: number; + }; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/xianshizhaomu/PtlRec.ts b/src/shared/protocols/event/xianshizhaomu/PtlRec.ts new file mode 100644 index 0000000..6c8f71c --- /dev/null +++ b/src/shared/protocols/event/xianshizhaomu/PtlRec.ts @@ -0,0 +1,13 @@ +import { prizeType } from '../../type'; + + +/** + * 领取回馈奖励 + */ +export type ReqRec = { + index: number; +}; + +export type ResRec = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/xinshoulibao/PtlOpen.ts b/src/shared/protocols/event/xinshoulibao/PtlOpen.ts new file mode 100644 index 0000000..4856e05 --- /dev/null +++ b/src/shared/protocols/event/xinshoulibao/PtlOpen.ts @@ -0,0 +1,14 @@ + +/** + * 进入新手礼包 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + /**礼包组 取G.gc.xinshoulibao[index] */ + index: number; + /**开始时间 倒计时显示 sTime+G.gc.xinshoulibao[index].time */ + sTime: number; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/yangchengmubiao/PtlBuy.ts b/src/shared/protocols/event/yangchengmubiao/PtlBuy.ts new file mode 100644 index 0000000..2417786 --- /dev/null +++ b/src/shared/protocols/event/yangchengmubiao/PtlBuy.ts @@ -0,0 +1,15 @@ +import { prizeType } from '../../type'; + +/** + * 购买礼包 参考自选礼包 + */ +export type ReqBuy = { + /**养成目标下的 唯一hdid */ + hdid: number + /**礼包index */ + index: number; +}; + +export type ResBuy = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/yangchengmubiao/PtlOpen.ts b/src/shared/protocols/event/yangchengmubiao/PtlOpen.ts new file mode 100644 index 0000000..0af6c36 --- /dev/null +++ b/src/shared/protocols/event/yangchengmubiao/PtlOpen.ts @@ -0,0 +1,36 @@ +import { ReqAddHuoDong } from "../../../../monopoly/protocols/PtlAddHuoDong"; + +/** + * 进入养成目标 + */ +export type ReqOpen = { + hdid: number +}; + +export type ResOpen = { + mydata: yangchengmubiao, + hdinfo: ReqAddHuoDong +}; + + +export type yangchengmubiao = { + type: string + uid: string + /**养成目标活动 的唯一活动hdid */ + hdid: number + /**任务id 做key, 完成值做值 */ + taskval: { [id: string]: number } + /**完成任务的 taskid */ + finishid: { + "1": number[] + "2": number[] + "3": number[] + [id: string]: number[] + } + /**刷新时间 */ + refresh: number + /**轮次 */ + lunci: number + /**礼包购买次数数据 */ + record: { [k: string]: number } +} \ No newline at end of file diff --git a/src/shared/protocols/event/yangchengmubiao/PtlRec.ts b/src/shared/protocols/event/yangchengmubiao/PtlRec.ts new file mode 100644 index 0000000..44b0d74 --- /dev/null +++ b/src/shared/protocols/event/yangchengmubiao/PtlRec.ts @@ -0,0 +1,19 @@ +import { prizeType } from '../../type'; +import { yangchengmubiao } from './PtlOpen'; + +/** + * 领取任务奖励 + */ +export type ReqRec = { + /**活动唯一 hdid */ + hdid: number + /**task需要传任务id */ + taskid: number; + /**任务type */ + type: number; +}; + +export type ResRec = { + prize: prizeType[]; + mydata: yangchengmubiao +}; \ No newline at end of file diff --git a/src/shared/protocols/event/yibaichou/PtlOpen.ts b/src/shared/protocols/event/yibaichou/PtlOpen.ts new file mode 100644 index 0000000..ff05e68 --- /dev/null +++ b/src/shared/protocols/event/yibaichou/PtlOpen.ts @@ -0,0 +1,16 @@ + +/** + * 进入一百抽活动 + * @description 玩家登陆天数-> P.gud.loginDays + * @description 玩家在线时长-> P.gud.onlineTime + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + /**已领取的登陆奖励 */ + loginRec: number[]; + /**已领取的在线奖励 */ + onlineRec: number[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/yibaichou/PtlRec.ts b/src/shared/protocols/event/yibaichou/PtlRec.ts new file mode 100644 index 0000000..800c2c6 --- /dev/null +++ b/src/shared/protocols/event/yibaichou/PtlRec.ts @@ -0,0 +1,16 @@ +import { prizeType } from '../../type'; + + +/** + * 领取一百抽奖励 + */ +export type ReqRec = { + /**奖励类型 */ + type: 'online' | 'login'; + /**奖励下标 */ + index: number; +}; + +export type ResRec = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/yibaichou/PtlRecAll.ts b/src/shared/protocols/event/yibaichou/PtlRecAll.ts new file mode 100644 index 0000000..18e5527 --- /dev/null +++ b/src/shared/protocols/event/yibaichou/PtlRecAll.ts @@ -0,0 +1,14 @@ +import { prizeType } from '../../type'; +import { ResOpen } from './PtlOpen'; + +/** + * 一百抽一键领取 + */ +export type ReqRecAll = { + +}; + +export type ResRecAll = { + prize: prizeType[]; + change: ResOpen; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/yuedujijin/PtlOpen.ts b/src/shared/protocols/event/yuedujijin/PtlOpen.ts new file mode 100644 index 0000000..eb895fb --- /dev/null +++ b/src/shared/protocols/event/yuedujijin/PtlOpen.ts @@ -0,0 +1,20 @@ + +/** + * 打开月度基金 + */ +export type ReqOpen = { + type: string; +}; + +export type ResOpen = { + /**已领取的奖励 */ + rec: number[]; + /**登陆的天数 */ + days: number; + /**当前轮次 */ + round?: number; +}; + +export const conf = { + timeIntervalLimit: 0 +}; \ No newline at end of file diff --git a/src/shared/protocols/event/yuedujijin/PtlRec.ts b/src/shared/protocols/event/yuedujijin/PtlRec.ts new file mode 100644 index 0000000..5d8bf0e --- /dev/null +++ b/src/shared/protocols/event/yuedujijin/PtlRec.ts @@ -0,0 +1,13 @@ +import { prizeType } from '../../type'; + +/** + * 领取基金奖励 + */ +export type ReqRec = { + type: string; + index: number; +}; + +export type ResRec = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/zhanling/PtlBuyLv.ts b/src/shared/protocols/event/zhanling/PtlBuyLv.ts new file mode 100644 index 0000000..7fb73a2 --- /dev/null +++ b/src/shared/protocols/event/zhanling/PtlBuyLv.ts @@ -0,0 +1,12 @@ +import { ResOpen } from './PtlOpen'; + +/** + * 购买战令等级 + */ +export type ReqBuyLv = { + lv: number; +}; + +export type ResBuyLv = { + change: Partial; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/zhanling/PtlOpen.ts b/src/shared/protocols/event/zhanling/PtlOpen.ts new file mode 100644 index 0000000..b915e2f --- /dev/null +++ b/src/shared/protocols/event/zhanling/PtlOpen.ts @@ -0,0 +1,27 @@ + + +/** + * 进入战令 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + /**等级 */ + lv: number; + /**当前经验 */ + exp: number; + /**等级奖励领取记录 */ + rec: { + [index: string]: { pt: boolean, tq: boolean; }; + }; + /**是否购买了战令 */ + isPay: boolean; + /**追杀令任务领取情况 */ + taskRec: number[]; + /**追杀令任务完成情况 */ + taskFinished: { + [taskId: string]: number; + }; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/zhanling/PtlRecPrize.ts b/src/shared/protocols/event/zhanling/PtlRecPrize.ts new file mode 100644 index 0000000..7302e31 --- /dev/null +++ b/src/shared/protocols/event/zhanling/PtlRecPrize.ts @@ -0,0 +1,15 @@ +import { prizeType } from '../../type'; +import { ResOpen } from './PtlOpen'; + + +/** + * 领取战令等级奖励 + */ +export type ReqRecPrize = { + recIndexs: number[]; +}; + +export type ResRecPrize = { + prize: prizeType[]; + change: Partial; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/zhanling/PtlRecTask.ts b/src/shared/protocols/event/zhanling/PtlRecTask.ts new file mode 100644 index 0000000..2c6e9cd --- /dev/null +++ b/src/shared/protocols/event/zhanling/PtlRecTask.ts @@ -0,0 +1,14 @@ +import { prizeType } from '../../type'; +import { ResOpen } from './PtlOpen'; + +/** + * 完成战令任务 + */ +export type ReqRecTask = { + index: number; +}; + +export type ResRecTask = { + prize: prizeType[]; + change: Partial; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/zhoulibao/PtlOpen.ts b/src/shared/protocols/event/zhoulibao/PtlOpen.ts new file mode 100644 index 0000000..f6c0a70 --- /dev/null +++ b/src/shared/protocols/event/zhoulibao/PtlOpen.ts @@ -0,0 +1,12 @@ + +/** + * 周礼包 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + /**活动开始时间 */ + sTime: number; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/zixuanlibao/PtlBuy.ts b/src/shared/protocols/event/zixuanlibao/PtlBuy.ts new file mode 100644 index 0000000..d998f3d --- /dev/null +++ b/src/shared/protocols/event/zixuanlibao/PtlBuy.ts @@ -0,0 +1,16 @@ +import { prizeType } from '../../type'; + +/** + * 购买自选礼包 + */ +export type ReqBuy = { + /**礼包index */ + index: number; + /**礼包的每个奖励index */ + prizeIndex: number[]; + hdid: number +}; + +export type ResBuy = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/event/zixuanlibao/PtlOpen.ts b/src/shared/protocols/event/zixuanlibao/PtlOpen.ts new file mode 100644 index 0000000..8b7cf23 --- /dev/null +++ b/src/shared/protocols/event/zixuanlibao/PtlOpen.ts @@ -0,0 +1,17 @@ +import { ReqAddHuoDong } from "../../../../monopoly/protocols/PtlAddHuoDong"; + +/** + * 进入自选礼包 + */ +export type ReqOpen = { + // 活动唯一id + hdid: number +}; + +export type ResOpen = { + /**购买记录 */ + record: { + [k: string]: number; + }; + hdinfo: ReqAddHuoDong +}; \ No newline at end of file diff --git a/src/shared/protocols/eventlist/PtlhdGetList.ts b/src/shared/protocols/eventlist/PtlhdGetList.ts new file mode 100644 index 0000000..82181e9 --- /dev/null +++ b/src/shared/protocols/eventlist/PtlhdGetList.ts @@ -0,0 +1,12 @@ +import { ReqAddHuoDong } from "../../../monopoly/protocols/PtlAddHuoDong"; + +/** + * 所有可支持后台 open 活动 + */ +export type ReqhdGetList = { + +}; + +export type ReshdGetList = { + hdlist: ReqAddHuoDong[] +}; \ No newline at end of file diff --git a/src/shared/protocols/friend/PtlApply.ts b/src/shared/protocols/friend/PtlApply.ts new file mode 100644 index 0000000..e9cf247 --- /dev/null +++ b/src/shared/protocols/friend/PtlApply.ts @@ -0,0 +1,11 @@ + +/** + * 申请好友 + */ +export type ReqApply = { + uid: string; +}; + +export type ResApply = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/friend/PtlDel.ts b/src/shared/protocols/friend/PtlDel.ts new file mode 100644 index 0000000..759d4a5 --- /dev/null +++ b/src/shared/protocols/friend/PtlDel.ts @@ -0,0 +1,11 @@ + +/** + * 删除好友 + */ +export type ReqDel = { + uid: string; +}; + +export type ResDel = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/friend/PtlGift.ts b/src/shared/protocols/friend/PtlGift.ts new file mode 100644 index 0000000..63ab4ff --- /dev/null +++ b/src/shared/protocols/friend/PtlGift.ts @@ -0,0 +1,17 @@ +import { prizeType } from '../type'; +import { ResOpen } from './PtlOpen'; + + +/** + * 赠礼收礼 + */ +export type ReqGift = { + type: 'send' | 'get' | 'yijian'; + /**当type == 'send' | 'get' 时需要传入的玩家uid */ + uid?: string; +}; + +export type ResGift = { + prize: prizeType[]; + change: Partial>; +}; \ No newline at end of file diff --git a/src/shared/protocols/friend/PtlList.ts b/src/shared/protocols/friend/PtlList.ts new file mode 100644 index 0000000..70994a6 --- /dev/null +++ b/src/shared/protocols/friend/PtlList.ts @@ -0,0 +1,14 @@ +import { player } from '../user/type'; + +/** + * tuijian 推荐好友列表 + * + * friend 好友列表 + * + * apply 申请列表 + * + * black 黑名单 + */ +export type ReqList = 'tuijian' | 'friend' | 'apply' | 'black'; + +export type ResList = player[]; \ No newline at end of file diff --git a/src/shared/protocols/friend/PtlOpen.ts b/src/shared/protocols/friend/PtlOpen.ts new file mode 100644 index 0000000..2cccf29 --- /dev/null +++ b/src/shared/protocols/friend/PtlOpen.ts @@ -0,0 +1,27 @@ + + +/** + * 打开好友界面 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + /**领取的礼物 */ + recGift: string[]; + /**收到的礼物 */ + getGift: { + [uid: string]: number; + }; + /**发送礼物 */ + sendGift: string[]; + /**申请列表 */ + applyList: string[]; + /**黑名单 */ + blacklist: string[]; + /**好友列表 */ + friendList: string[]; + /**我的申请列表 */ + myApplyList?: string[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/friend/PtlRespond.ts b/src/shared/protocols/friend/PtlRespond.ts new file mode 100644 index 0000000..55098da --- /dev/null +++ b/src/shared/protocols/friend/PtlRespond.ts @@ -0,0 +1,14 @@ + + +/** + * 同意或者拒绝好友申请 + */ +export type ReqRespond = { + uid: string; + /**是否同意 */ + agree: boolean; +}; + +export type ResRespond = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/friend/PtlRmBlackList.ts b/src/shared/protocols/friend/PtlRmBlackList.ts new file mode 100644 index 0000000..3da8ade --- /dev/null +++ b/src/shared/protocols/friend/PtlRmBlackList.ts @@ -0,0 +1,18 @@ + + +/** + * 移除黑名单 + */ +export type ReqRmBlackList = { + uid: string; + /** + * true 移除黑名单 + * + * false 添加黑名单 + */ + rm: boolean; +}; + +export type ResRmBlackList = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/friend/PtlSearch.ts b/src/shared/protocols/friend/PtlSearch.ts new file mode 100644 index 0000000..9add51b --- /dev/null +++ b/src/shared/protocols/friend/PtlSearch.ts @@ -0,0 +1,11 @@ +import { player } from '../user/type'; + + +/** + * 搜索好友 + */ +export type ReqSearch = { + name: string; +}; + +export type ResSearch = player; \ No newline at end of file diff --git a/src/shared/protocols/ganbutexun/PtlChallenge.ts b/src/shared/protocols/ganbutexun/PtlChallenge.ts new file mode 100644 index 0000000..607c9c1 --- /dev/null +++ b/src/shared/protocols/ganbutexun/PtlChallenge.ts @@ -0,0 +1,15 @@ +import { fightResult } from '../../fightControl/fightType'; +import { prizeType } from "../type"; + +/** + * 干部特训挑战 + */ +export type ReqChallenge = { + /**干部id */ + id: string; +}; +export type ResChallenge = { + addluck: number, + fightobj: fightResult, + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/ganbutexun/PtlOpen.ts b/src/shared/protocols/ganbutexun/PtlOpen.ts new file mode 100644 index 0000000..d3ceb4f --- /dev/null +++ b/src/shared/protocols/ganbutexun/PtlOpen.ts @@ -0,0 +1,12 @@ +/** + * open接口 + */ +export type ReqOpen = { + +} +export type ResOpen = { + /**幸运值 */ + luck: { + [hid: string]: number + } +} \ No newline at end of file diff --git a/src/shared/protocols/ganhai/PtlFast.ts b/src/shared/protocols/ganhai/PtlFast.ts new file mode 100644 index 0000000..325603d --- /dev/null +++ b/src/shared/protocols/ganhai/PtlFast.ts @@ -0,0 +1,14 @@ +import { prizeType } from '../type'; +import { ResOpen } from './PtlOpen'; + +/** + * 快速护送 + */ +export type ReqFast = { + +}; + +export type ResFast = { + prize: prizeType[]; + change: Partial; +}; \ No newline at end of file diff --git a/src/shared/protocols/ganhai/PtlFight.ts b/src/shared/protocols/ganhai/PtlFight.ts new file mode 100644 index 0000000..12981df --- /dev/null +++ b/src/shared/protocols/ganhai/PtlFight.ts @@ -0,0 +1,16 @@ +import { fightResult } from '../../fightControl/fightType'; +import { prizeType } from '../type'; +import { ResOpen } from './PtlOpen'; + +/** + * 掠夺 + */ +export type ReqFight = { + index: number; +}; + +export type ResFight = { + prize?: prizeType[]; + result: fightResult; + change: Partial; +}; \ No newline at end of file diff --git a/src/shared/protocols/ganhai/PtlLog.ts b/src/shared/protocols/ganhai/PtlLog.ts new file mode 100644 index 0000000..838549a --- /dev/null +++ b/src/shared/protocols/ganhai/PtlLog.ts @@ -0,0 +1,10 @@ +import { fightResult } from '../../fightControl/fightType'; + +/** + * 日志 + */ +export type ReqLog = { + +}; + +export type ResLog = fightResult[]; \ No newline at end of file diff --git a/src/shared/protocols/ganhai/PtlOpen.ts b/src/shared/protocols/ganhai/PtlOpen.ts new file mode 100644 index 0000000..0987f8f --- /dev/null +++ b/src/shared/protocols/ganhai/PtlOpen.ts @@ -0,0 +1,37 @@ +import { joinFightData } from '../../fightControl/fightType'; +import { prizeType } from '../type'; + +/** + * 进入赶海 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + /**每日已使用我的商船刷新次数 */ + useRefreshNum: number; + /**每日已使用护送次数 */ + useEscortNum: number; + /**每日已使用掠夺次数 */ + useFightNum: number; + /**界面出现的商船 */ + ships: shipType[]; + /**我刷新出来的商船 */ + myShips: number[]; + /**我护送的商船 */ + ship: shipType | null; + /**护送奖励 */ + prize?: prizeType[]; +}; + +type shipType = { + /**船的类型 */ + index: number; + /**开始护送的时间 */ + sTime: number; + /**被掠夺的次数 */ + beFightNum: number; + /**玩家信息 */ + player: joinFightData; +}; \ No newline at end of file diff --git a/src/shared/protocols/ganhai/PtlRefresh.ts b/src/shared/protocols/ganhai/PtlRefresh.ts new file mode 100644 index 0000000..e14f9ea --- /dev/null +++ b/src/shared/protocols/ganhai/PtlRefresh.ts @@ -0,0 +1,12 @@ +import { ResOpen } from './PtlOpen'; + +/** + * 刷新界面商船 + */ +export type ReqRefresh = { + +}; + +export type ResRefresh = { + change: Partial; +}; \ No newline at end of file diff --git a/src/shared/protocols/ganhai/PtlRefreshShip.ts b/src/shared/protocols/ganhai/PtlRefreshShip.ts new file mode 100644 index 0000000..e928ffc --- /dev/null +++ b/src/shared/protocols/ganhai/PtlRefreshShip.ts @@ -0,0 +1,13 @@ +import { ResOpen } from './PtlOpen'; + +/** + * 刷新我的商船 + */ +export type ReqRefreshShip = { + // 1 一键最高 + yjzg?: 0 | 1 +}; + +export type ResRefreshShip = { + change: Partial; +}; \ No newline at end of file diff --git a/src/shared/protocols/ganhai/PtlSelect.ts b/src/shared/protocols/ganhai/PtlSelect.ts new file mode 100644 index 0000000..237ff59 --- /dev/null +++ b/src/shared/protocols/ganhai/PtlSelect.ts @@ -0,0 +1,12 @@ +import { ResOpen } from './PtlOpen'; + +/** + * 选择商船 + */ +export type ReqSelect = { + index: number; +}; + +export type ResSelect = { + change: Partial; +}; \ No newline at end of file diff --git a/src/shared/protocols/gonghui/PtlApply.ts b/src/shared/protocols/gonghui/PtlApply.ts new file mode 100644 index 0000000..5e6332f --- /dev/null +++ b/src/shared/protocols/gonghui/PtlApply.ts @@ -0,0 +1,16 @@ + +/** + * 审批公会申请 + */ +export type ReqApply = { + uid: string; + apply: boolean; +}; + +export type ResApply = { + +}; + +export const conf = { + needGudKey: ['ghId'] +}; \ No newline at end of file diff --git a/src/shared/protocols/gonghui/PtlApplyAll.ts b/src/shared/protocols/gonghui/PtlApplyAll.ts new file mode 100644 index 0000000..56ef565 --- /dev/null +++ b/src/shared/protocols/gonghui/PtlApplyAll.ts @@ -0,0 +1,14 @@ + + +/** + * 一键审批公会申请 + */ +export type ReqApplyAll = boolean; + +export type ResApplyAll = { + +}; + +export const conf = { + needGudKey: ['ghId'] +}; \ No newline at end of file diff --git a/src/shared/protocols/gonghui/PtlApplyList.ts b/src/shared/protocols/gonghui/PtlApplyList.ts new file mode 100644 index 0000000..a4b7ec5 --- /dev/null +++ b/src/shared/protocols/gonghui/PtlApplyList.ts @@ -0,0 +1,19 @@ +import { player } from '../user/type'; + + +/** + * 打开公会申请列表 + */ +export type ReqApplyList = { + +}; + +export type ResApplyList = { + player: player; + /**申请时间 */ + time: number; +}[]; + +export const conf = { + needGudKey: ['ghId'] +}; \ No newline at end of file diff --git a/src/shared/protocols/gonghui/PtlChange.ts b/src/shared/protocols/gonghui/PtlChange.ts new file mode 100644 index 0000000..264dfa1 --- /dev/null +++ b/src/shared/protocols/gonghui/PtlChange.ts @@ -0,0 +1,20 @@ +import { gonghuiSetting } from './type'; + + +/** + * 修改公会信息 + */ +export type ReqChange = { + name?: string, + setting?: Partial; +}; + +export type ResChange = { + name?: string, + setting?: Partial; +}; + +export const conf = { + needGudKey: ['ghId'] +}; + diff --git a/src/shared/protocols/gonghui/PtlCreate.ts b/src/shared/protocols/gonghui/PtlCreate.ts new file mode 100644 index 0000000..7a82430 --- /dev/null +++ b/src/shared/protocols/gonghui/PtlCreate.ts @@ -0,0 +1,11 @@ +import { gonghuiBase, gonghuiSetting } from './type'; + + +/** + * 创建公会 + */ +export type ReqCreate = Pick & { 'setting': Pick; }; + +export type ResCreate = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/gonghui/PtlDissolve.ts b/src/shared/protocols/gonghui/PtlDissolve.ts new file mode 100644 index 0000000..8bd877d --- /dev/null +++ b/src/shared/protocols/gonghui/PtlDissolve.ts @@ -0,0 +1,12 @@ + + +/** + * 解散公会 + */ +export type ReqDissolve = {}; + +export type ResDissolve = {}; + +export const conf = { + needGudKey: ['ghId'] +}; \ No newline at end of file diff --git a/src/shared/protocols/gonghui/PtlExit.ts b/src/shared/protocols/gonghui/PtlExit.ts new file mode 100644 index 0000000..f1876cf --- /dev/null +++ b/src/shared/protocols/gonghui/PtlExit.ts @@ -0,0 +1,15 @@ + +/** + * 退出公会 + */ +export type ReqExit = { + +}; + +export type ResExit = { + +}; + +export const conf = { + needGudKey: ['ghId'] +}; \ No newline at end of file diff --git a/src/shared/protocols/gonghui/PtlFbBuyNum.ts b/src/shared/protocols/gonghui/PtlFbBuyNum.ts new file mode 100644 index 0000000..e23dd71 --- /dev/null +++ b/src/shared/protocols/gonghui/PtlFbBuyNum.ts @@ -0,0 +1,11 @@ + +/** + * 公会副本购买挑战次数 + */ +export type ReqFbBuyNum = { + +}; + +export type ResFbBuyNum = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/gonghui/PtlFbFight.ts b/src/shared/protocols/gonghui/PtlFbFight.ts new file mode 100644 index 0000000..53cf9ec --- /dev/null +++ b/src/shared/protocols/gonghui/PtlFbFight.ts @@ -0,0 +1,19 @@ +import { fightResult } from '../../fightControl/fightType'; +import { prizeType } from '../type'; + + +/** + * 副本挑战 + */ +export type ReqFbFight = { + +}; + +export type ResFbFight = { + prize: prizeType[]; + result: fightResult; +}; + +export const conf = { + needGudKey: ['ghId'] +}; \ No newline at end of file diff --git a/src/shared/protocols/gonghui/PtlFbOpen.ts b/src/shared/protocols/gonghui/PtlFbOpen.ts new file mode 100644 index 0000000..b0bacaa --- /dev/null +++ b/src/shared/protocols/gonghui/PtlFbOpen.ts @@ -0,0 +1,22 @@ +import { player } from '../user/type'; + + +/** + * 进入公会副本 + */ +export type ReqFbOpen = { + fbId: string; +}; + +export type ResFbOpen = { + rankList: { + player: player, + dps: number; + }[]; + fightNum: number; + addNum: number; +}; + +export const conf = { + needGudKey: ['ghId'] +}; \ No newline at end of file diff --git a/src/shared/protocols/gonghui/PtlGetList.ts b/src/shared/protocols/gonghui/PtlGetList.ts new file mode 100644 index 0000000..927143a --- /dev/null +++ b/src/shared/protocols/gonghui/PtlGetList.ts @@ -0,0 +1,12 @@ +import { gonghuiBase } from './type'; + +/** + * 获取公会列表 需前端自己排序 + */ +export type ReqGetList = { + +}; + +export type ResGetList = { + list: { gh: gonghuiBase; zhanli: number; }[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/gonghui/PtlJoin.ts b/src/shared/protocols/gonghui/PtlJoin.ts new file mode 100644 index 0000000..0e48bf9 --- /dev/null +++ b/src/shared/protocols/gonghui/PtlJoin.ts @@ -0,0 +1,12 @@ + +/** + * 加入公会 + */ +export type ReqJoin = { + /**公会id */ + id: string; +}; + +export type ResJoin = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/gonghui/PtlJx.ts b/src/shared/protocols/gonghui/PtlJx.ts new file mode 100644 index 0000000..5be7193 --- /dev/null +++ b/src/shared/protocols/gonghui/PtlJx.ts @@ -0,0 +1,19 @@ +import { prizeType } from '../type'; +import { gonghuiBase } from './type'; + + +/** + * 公会捐献 + */ +export type ReqJx = { + index: number; +}; + +export type ResJx = { + prize: prizeType[]; + change: Partial; +}; + +export const conf = { + needGudKey: ['ghId'] +}; \ No newline at end of file diff --git a/src/shared/protocols/gonghui/PtlJxOpen.ts b/src/shared/protocols/gonghui/PtlJxOpen.ts new file mode 100644 index 0000000..24f0096 --- /dev/null +++ b/src/shared/protocols/gonghui/PtlJxOpen.ts @@ -0,0 +1,17 @@ + +/** + * 进入公会捐献 + */ +export type ReqJxOpen = { + +}; + +export type ResJxOpen = { + record: { + [index: number]: number; + }; +}; + +export const conf = { + needGudKey: ['ghId'] +}; \ No newline at end of file diff --git a/src/shared/protocols/gonghui/PtlList.ts b/src/shared/protocols/gonghui/PtlList.ts new file mode 100644 index 0000000..a3c04a1 --- /dev/null +++ b/src/shared/protocols/gonghui/PtlList.ts @@ -0,0 +1,17 @@ +import { player } from '../user/type'; + +/** + * 获取公会成员列表 + */ +export type ReqList = { + +}; + +export type ResList = { + player: player; + lsgx: number; +}[]; + +export const conf = { + needGudKey: ['ghId'] +}; \ No newline at end of file diff --git a/src/shared/protocols/gonghui/PtlManage.ts b/src/shared/protocols/gonghui/PtlManage.ts new file mode 100644 index 0000000..124cb0b --- /dev/null +++ b/src/shared/protocols/gonghui/PtlManage.ts @@ -0,0 +1,21 @@ +import { gonghuiLevel } from './type'; + + +/** + * 成员管理 + */ +export type ReqManage = { + uid: string; + /** + * 0等于踢出公会 + */ + level: gonghuiLevel; +}; + +export type ResManage = { + +}; + +export const conf = { + needGudKey: ['ghId'] +}; \ No newline at end of file diff --git a/src/shared/protocols/gonghui/PtlOpen.ts b/src/shared/protocols/gonghui/PtlOpen.ts new file mode 100644 index 0000000..fe26871 --- /dev/null +++ b/src/shared/protocols/gonghui/PtlOpen.ts @@ -0,0 +1,14 @@ +import { gonghuiBase } from './type'; + +/** + * 进入公会 + */ +export type ReqOpen = { + +}; + +export type ResOpen = gonghuiBase; + +export const conf = { + needGudKey: ['ghId'] +}; \ No newline at end of file diff --git a/src/shared/protocols/gonghui/PtlTanHe.ts b/src/shared/protocols/gonghui/PtlTanHe.ts new file mode 100644 index 0000000..991818d --- /dev/null +++ b/src/shared/protocols/gonghui/PtlTanHe.ts @@ -0,0 +1,16 @@ + + +/** + * 会长弹劾 + */ +export type ReqTanHe = { + +}; + +export type ResTanHe = { + +}; + +export const conf = { + needGudKey: ['ghId'] +}; \ No newline at end of file diff --git a/src/shared/protocols/gonghui/PtlTaskOpen.ts b/src/shared/protocols/gonghui/PtlTaskOpen.ts new file mode 100644 index 0000000..836f034 --- /dev/null +++ b/src/shared/protocols/gonghui/PtlTaskOpen.ts @@ -0,0 +1,20 @@ + + +/** + * 进入公会任务 + */ +export type ReqTaskOpen = { + +}; + +export type ResTaskOpen = { + ghRec: number[]; + myRec: number[]; + progress: { + [taskId: string]: number; + }; +}; + +export const conf = { + needGudKey: ['ghId'] +}; \ No newline at end of file diff --git a/src/shared/protocols/gonghui/PtlTaskReceive.ts b/src/shared/protocols/gonghui/PtlTaskReceive.ts new file mode 100644 index 0000000..26f5e31 --- /dev/null +++ b/src/shared/protocols/gonghui/PtlTaskReceive.ts @@ -0,0 +1,25 @@ +import { prizeType } from '../type'; + + +/** + * 领取任务奖励 + */ +export type ReqTaskReceive = { + /** + * gh 领取公会任务进度奖励 + * my 领取公会任务奖励 + */ + type: 'gh' | 'my'; + /** + * 领取下标 + */ + index: number; +}; + +export type ResTaskReceive = { + prize: prizeType[]; +}; + +export const conf = { + needGudKey: ['ghId'] +}; \ No newline at end of file diff --git a/src/shared/protocols/gonghui/PtlUpWz.ts b/src/shared/protocols/gonghui/PtlUpWz.ts new file mode 100644 index 0000000..562d19e --- /dev/null +++ b/src/shared/protocols/gonghui/PtlUpWz.ts @@ -0,0 +1,16 @@ + + +/** + * 升级物资 + */ +export type ReqUpWz = { + type: string; +}; + +export type ResUpWz = { + +}; + +export const conf = { + needGudKey: ['ghId'] +}; \ No newline at end of file diff --git a/src/shared/protocols/gonghui/type.ts b/src/shared/protocols/gonghui/type.ts new file mode 100644 index 0000000..e17e4c2 --- /dev/null +++ b/src/shared/protocols/gonghui/type.ts @@ -0,0 +1,76 @@ +import { player } from '../user/type'; + + +export type gonghuiBase = { + /**公会等级 */ + lv: number; + /**公会当前经验 */ + exp: number; + /**公会唯一id */ + _id: string; + /**公会名字 */ + name: string; + /**公会设置 */ + setting: gonghuiSetting; + /**公会创建 */ + createTime?: number; + /**公会创始人 */ + createPlayer: Partial; + /**公会成员 */ + players: { + uid: string; + level: gonghuiLevel; + joinTime: number; + }[]; + /**申请列表 */ + applyList?: { + uid: string; + time: number; + }[]; + /**历史贡献 */ + lsgx?: { + [uid: string]: number; + }; + /**弹劾 */ + tanhe?: { + /**发起人 */ + uid: string; + /**弹劾时间 */ + time: number; + }; + /**任务 */ + task?: { + finised: number; + refreshTime: number; + }; + /**副本 */ + fuben?: { + id: string; + dps: { + [uid: string]: number; + }; + bossInfo: { + [pos: string]: { hp: number, maxHp: number; }; + }; + }; +}; + +export type gonghuiSetting = { + /**徽章 */ + badge: string; + /**加入等级 */ + joinLv: number; + /**公告 */ + notice: string; + /**是否允许自动加入 */ + autoJoin: boolean; +}; + +/** + * 0 暂无 + * 1 会长 + * 2 管理 + * 3 精英成员 + * 4 成员 + */ +export type gonghuiLevel = 0 | 1 | 2 | 3 | 4; \ No newline at end of file diff --git a/src/shared/protocols/gonghuibaozang/PtlLottery.ts b/src/shared/protocols/gonghuibaozang/PtlLottery.ts new file mode 100644 index 0000000..eca737a --- /dev/null +++ b/src/shared/protocols/gonghuibaozang/PtlLottery.ts @@ -0,0 +1,26 @@ +import { prizeType } from '../type'; +import { ResOpen } from './PtlOpen'; + +/** + * 工会宝藏抽奖接口接口 + */ + +export type ReqLottery = { + type: 1 | 10; +}; + +export type ResLottery = { + /**抽取的奖励 */ + prize: prizeType[]; + /**更新open接口数据 */ + changeData?: Partial; +}; + +export type GongHuiBaoZangMsg = { + /**抽取的奖励 */ + prize: prizeType[]; + /**更新open接口数据 */ + name: string; + uid: string; + ctime: number +}; \ No newline at end of file diff --git a/src/shared/protocols/gonghuibaozang/PtlOpen.ts b/src/shared/protocols/gonghuibaozang/PtlOpen.ts new file mode 100644 index 0000000..c0353fc --- /dev/null +++ b/src/shared/protocols/gonghuibaozang/PtlOpen.ts @@ -0,0 +1,23 @@ +/** + * 工会宝藏open接口 + */ + +import { prizeType } from "../type"; + +export type ReqOpen = { + +}; + +export type ResOpen = { + cjlog: { + /**抽中的奖励 */ + prize: prizeType[] + /**玩家名字 */ + name: string, + /**uid */ + uid: string, + /**抽奖时间 */ + ctime: number + _id?: string + }[] +}; \ No newline at end of file diff --git a/src/shared/protocols/gonglukuangbiao/PtlBuy.ts b/src/shared/protocols/gonglukuangbiao/PtlBuy.ts new file mode 100644 index 0000000..f33dc96 --- /dev/null +++ b/src/shared/protocols/gonglukuangbiao/PtlBuy.ts @@ -0,0 +1,12 @@ + + +/** + * 购买挑战次数 + */ +export type ReqBuy = { + num: number; +}; + +export type ResBuy = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/gonglukuangbiao/PtlFight.ts b/src/shared/protocols/gonglukuangbiao/PtlFight.ts new file mode 100644 index 0000000..d3bf2e0 --- /dev/null +++ b/src/shared/protocols/gonglukuangbiao/PtlFight.ts @@ -0,0 +1,15 @@ +import { fightResult } from '../../fightControl/fightType'; +import { prizeType } from '../type'; + + +/** + * 挑战对手 + */ +export type ReqFight = { + index: number; +}; + +export type ResFight = { + result: fightResult; + prize?: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/gonglukuangbiao/PtlOpen.ts b/src/shared/protocols/gonglukuangbiao/PtlOpen.ts new file mode 100644 index 0000000..a31c944 --- /dev/null +++ b/src/shared/protocols/gonglukuangbiao/PtlOpen.ts @@ -0,0 +1,26 @@ +import { joinFightData } from '../../fightControl/fightType'; + + +/** + * 进入公路狂飙 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + /**每日挑战不同等级玩家的胜利次数 */ + toDayWin: { + [index: string]: number; + }; + /**每日已购买的挑战次数 */ + toDayBuyNum: number; + /**每日已使用的挑战次数 */ + toDayUseNum: number; + /**挑战玩家列表 */ + enemys: (joinFightData & { wanted?: number })[]; + /**通缉值 */ + wanted: number; + /**被抢夺次数 */ + toDayBeiFightNum?: number; +}; \ No newline at end of file diff --git a/src/shared/protocols/gonglukuangbiao/PtlRefresh.ts b/src/shared/protocols/gonglukuangbiao/PtlRefresh.ts new file mode 100644 index 0000000..3d4fbf1 --- /dev/null +++ b/src/shared/protocols/gonglukuangbiao/PtlRefresh.ts @@ -0,0 +1,13 @@ +import { joinFightData } from '../../fightControl/fightType'; + + +/** + * 刷新对手 + */ +export type ReqRefresh = { + free: boolean; +}; + +export type ResRefresh = { + enemys: (joinFightData & { wanted?: number })[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/gongyu/mingdao/PtlActive.ts b/src/shared/protocols/gongyu/mingdao/PtlActive.ts new file mode 100644 index 0000000..3b6eea5 --- /dev/null +++ b/src/shared/protocols/gongyu/mingdao/PtlActive.ts @@ -0,0 +1,12 @@ + + +/** + * 名刀激活 + */ +export type ReqActive = { + id: string; +}; + +export type ResActive = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/gongyu/mingdao/PtlOpen.ts b/src/shared/protocols/gongyu/mingdao/PtlOpen.ts new file mode 100644 index 0000000..2aa6613 --- /dev/null +++ b/src/shared/protocols/gongyu/mingdao/PtlOpen.ts @@ -0,0 +1,22 @@ + +/** + * 进入名刀界面 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + list: { + [id: string]: { + /**进度 */ + pre: number; + /**已领取的进度奖励 */ + recPrize: string[]; + }; + }; + /**任务进度 */ + taskFinished: { + [type: string]: number; + }; +}; \ No newline at end of file diff --git a/src/shared/protocols/gongyu/mingdao/PtlRecPrize.ts b/src/shared/protocols/gongyu/mingdao/PtlRecPrize.ts new file mode 100644 index 0000000..f594392 --- /dev/null +++ b/src/shared/protocols/gongyu/mingdao/PtlRecPrize.ts @@ -0,0 +1,13 @@ +import { prizeType } from '../../type'; + +/** + * 领取修复奖励 + */ +export type ReqRecPrize = { + id: string; + recId: string; +}; + +export type ResRecPrize = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/gongyu/mingdao/PtlRepair.ts b/src/shared/protocols/gongyu/mingdao/PtlRepair.ts new file mode 100644 index 0000000..954e079 --- /dev/null +++ b/src/shared/protocols/gongyu/mingdao/PtlRepair.ts @@ -0,0 +1,16 @@ + + +/** + * 名刀修复 + */ +export type ReqRepair = { + id: string; + num: 1 | 10; +}; + +export type ResRepair = { + /**暴击倍数 */ + multiple: number[]; + /**升级后的进度 */ + pre: number; +}; \ No newline at end of file diff --git a/src/shared/protocols/gongyu/xunlianjihua/PtlReset.ts b/src/shared/protocols/gongyu/xunlianjihua/PtlReset.ts new file mode 100644 index 0000000..c38dd01 --- /dev/null +++ b/src/shared/protocols/gongyu/xunlianjihua/PtlReset.ts @@ -0,0 +1,11 @@ + +/** + * 重置 + */ +export type ReqReset = { + +}; + +export type ResReset = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/gongyu/xunlianjihua/PtlUpSkill.ts b/src/shared/protocols/gongyu/xunlianjihua/PtlUpSkill.ts new file mode 100644 index 0000000..584d5be --- /dev/null +++ b/src/shared/protocols/gongyu/xunlianjihua/PtlUpSkill.ts @@ -0,0 +1,12 @@ + +/** + * 升级技能 + */ +export type ReqUpSkill = { + /**技能id */ + skillId: string; +}; + +export type ResUpSkill = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/gongyu/zuozhanjihua/PtlSetSkill.ts b/src/shared/protocols/gongyu/zuozhanjihua/PtlSetSkill.ts new file mode 100644 index 0000000..12689a2 --- /dev/null +++ b/src/shared/protocols/gongyu/zuozhanjihua/PtlSetSkill.ts @@ -0,0 +1,15 @@ + + +/** + * 设置战斗技能 + */ +export type ReqSetSkill = { + '1': string, + '2': string, + '3': string, + '4': string; +}; + +export type ResSetSkill = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/hbzb/jfs/PtlBuyNum.ts b/src/shared/protocols/hbzb/jfs/PtlBuyNum.ts new file mode 100644 index 0000000..c19fe36 --- /dev/null +++ b/src/shared/protocols/hbzb/jfs/PtlBuyNum.ts @@ -0,0 +1,6 @@ + + + +export type ReqBuyNum = { num: number; }; + +export type ResBuyNum = {}; \ No newline at end of file diff --git a/src/shared/protocols/hbzb/jfs/PtlFight.ts b/src/shared/protocols/hbzb/jfs/PtlFight.ts new file mode 100644 index 0000000..a83f528 --- /dev/null +++ b/src/shared/protocols/hbzb/jfs/PtlFight.ts @@ -0,0 +1,17 @@ +import { fightResult } from '../../../fightControl/fightType'; +import { prizeType } from '../../type'; +import { ResOpen } from './PtlOpen'; + +/** + * 挑战对手 + */ +export type ReqFight = { + /**挑战对手的uid */ + uid: string; +}; + +export type ResFight = { + change: Partial; + result: fightResult; + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/hbzb/jfs/PtlGetLog.ts b/src/shared/protocols/hbzb/jfs/PtlGetLog.ts new file mode 100644 index 0000000..26338ae --- /dev/null +++ b/src/shared/protocols/hbzb/jfs/PtlGetLog.ts @@ -0,0 +1,6 @@ +import { fightResult } from '../../../fightControl/fightType'; + +export type ReqGetLog = { +}; + +export type ResGetLog = fightResult[]; \ No newline at end of file diff --git a/src/shared/protocols/hbzb/jfs/PtlOpen.ts b/src/shared/protocols/hbzb/jfs/PtlOpen.ts new file mode 100644 index 0000000..bc3d097 --- /dev/null +++ b/src/shared/protocols/hbzb/jfs/PtlOpen.ts @@ -0,0 +1,31 @@ +import { joinFightData } from '../../../fightControl/fightType'; + +/** + * 进入积分赛 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + /**每日胜场次数 */ + winNum: number; + /**每日已领取的胜场奖励 */ + winRecPrize: number[]; + /**每日已使用的挑战次数 */ + useFightNum: number; + /**每日已购买的挑战次数 */ + buyFightNum: number; + /**每日已使用的刷新次数 */ + useRefreshNum: number; + /**敌人 */ + enemy: { + data: joinFightData; + jifen: number; + result: null | number; + }[]; + /**排名 */ + rank: number; + /**积分 */ + jifen: number; +}; \ No newline at end of file diff --git a/src/shared/protocols/hbzb/jfs/PtlRec.ts b/src/shared/protocols/hbzb/jfs/PtlRec.ts new file mode 100644 index 0000000..b9a633d --- /dev/null +++ b/src/shared/protocols/hbzb/jfs/PtlRec.ts @@ -0,0 +1,12 @@ +import { prizeType } from '../../type'; + +/** + * 领取每日胜场奖励 + */ +export type ReqRec = { + index: number; +}; + +export type ResRec = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/hbzb/jfs/PtlRefresh.ts b/src/shared/protocols/hbzb/jfs/PtlRefresh.ts new file mode 100644 index 0000000..08d13cf --- /dev/null +++ b/src/shared/protocols/hbzb/jfs/PtlRefresh.ts @@ -0,0 +1,10 @@ +import { ResOpen } from './PtlOpen'; + + +export type ReqRefresh = { + +}; + +export type ResRefresh = { + change: Partial; +}; \ No newline at end of file diff --git a/src/shared/protocols/hbzb/zbs/PtlBuyNum.ts b/src/shared/protocols/hbzb/zbs/PtlBuyNum.ts new file mode 100644 index 0000000..c19fe36 --- /dev/null +++ b/src/shared/protocols/hbzb/zbs/PtlBuyNum.ts @@ -0,0 +1,6 @@ + + + +export type ReqBuyNum = { num: number; }; + +export type ResBuyNum = {}; \ No newline at end of file diff --git a/src/shared/protocols/hbzb/zbs/PtlFight.ts b/src/shared/protocols/hbzb/zbs/PtlFight.ts new file mode 100644 index 0000000..a83f528 --- /dev/null +++ b/src/shared/protocols/hbzb/zbs/PtlFight.ts @@ -0,0 +1,17 @@ +import { fightResult } from '../../../fightControl/fightType'; +import { prizeType } from '../../type'; +import { ResOpen } from './PtlOpen'; + +/** + * 挑战对手 + */ +export type ReqFight = { + /**挑战对手的uid */ + uid: string; +}; + +export type ResFight = { + change: Partial; + result: fightResult; + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/hbzb/zbs/PtlGetLog.ts b/src/shared/protocols/hbzb/zbs/PtlGetLog.ts new file mode 100644 index 0000000..26338ae --- /dev/null +++ b/src/shared/protocols/hbzb/zbs/PtlGetLog.ts @@ -0,0 +1,6 @@ +import { fightResult } from '../../../fightControl/fightType'; + +export type ReqGetLog = { +}; + +export type ResGetLog = fightResult[]; \ No newline at end of file diff --git a/src/shared/protocols/hbzb/zbs/PtlOpen.ts b/src/shared/protocols/hbzb/zbs/PtlOpen.ts new file mode 100644 index 0000000..c281cd8 --- /dev/null +++ b/src/shared/protocols/hbzb/zbs/PtlOpen.ts @@ -0,0 +1,28 @@ +import { joinFightData } from '../../../fightControl/fightType'; + +/** + * 进入争霸赛 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + /**每日胜场次数 */ + winNum: number; + /**每日已领取的胜场奖励 */ + winRecPrize: number[]; + /**每日已使用的挑战次数 */ + useFightNum: number; + /**每日已购买的挑战次数 */ + buyFightNum: number; + /**敌人 */ + enemy: { + data: joinFightData; + rank: number; + }[]; + /**排名 */ + rank: number; + /**战斗失败cd */ + failCd?: number; +}; \ No newline at end of file diff --git a/src/shared/protocols/hbzb/zbs/PtlRefresh.ts b/src/shared/protocols/hbzb/zbs/PtlRefresh.ts new file mode 100644 index 0000000..95005cf --- /dev/null +++ b/src/shared/protocols/hbzb/zbs/PtlRefresh.ts @@ -0,0 +1,14 @@ +import { joinFightData } from '../../../fightControl/fightType'; + + +export type ReqRefresh = { + +}; + +export type ResRefresh = { + enemy: { + data: joinFightData; + rank: number; + }[]; + rank: number; +}; \ No newline at end of file diff --git a/src/shared/protocols/hero/PtlAwake.ts b/src/shared/protocols/hero/PtlAwake.ts new file mode 100644 index 0000000..aeab266 --- /dev/null +++ b/src/shared/protocols/hero/PtlAwake.ts @@ -0,0 +1,11 @@ + +/** + * 英雄觉醒 + */ +export type ReqAwake = { + _id: string; +}; + +export type ResAwake = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/hero/PtlChangePos.ts b/src/shared/protocols/hero/PtlChangePos.ts new file mode 100644 index 0000000..5939596 --- /dev/null +++ b/src/shared/protocols/hero/PtlChangePos.ts @@ -0,0 +1,27 @@ +/** + * 英雄上阵 + */ + +export type ReqChangePos = { + /** + * set 上阵 + * change 替换 + */ + state: 'set' | 'change'; + /** + * 替换时的位置 1 2 3 4 6 6 + */ + pos?: string; + /** + * 英雄id + */ + id: string; +}; + +export type ResChangePos = { + [pos: string]: string; +}; + +export const conf = { + timeIntervalLimit: 0 +}; \ No newline at end of file diff --git a/src/shared/protocols/hero/PtlGetList.ts b/src/shared/protocols/hero/PtlGetList.ts new file mode 100644 index 0000000..3b180f0 --- /dev/null +++ b/src/shared/protocols/hero/PtlGetList.ts @@ -0,0 +1,74 @@ +import { heroShiWu } from '../type'; +/** + * 获取英雄列表 + */ + +export type ReqGetList = { + +}; + +export type ResGetList = { + /**英雄列表 */ + list: { + [_id: string]: { + /**英雄唯一id */ + _id: string; + /**英雄id */ + heroId: string | number; + /**等级 */ + lv: number; + /**阶级 */ + jieji: number; + /**获取时间 */ + getTime: number; + } & Partial; + }; + /**上阵站位 */ + pos: { + [pos: string]: string; + }; + /**英雄获取的历史记录数量 */ + lshd: { + [heroId: string]: number; + }; + /**干部传记领取 */ + gbzj: { + [heroId: string]: boolean; + }; +}; + +type heroAddKey = { + /**装备 */ + equip: { + [pos: string]: string; + }; + /**战力 */ + zhanli: number; + /**专属武器 */ + weapon: { + /**阶级 通过武器觉醒提升*/ + jieji: number; + /**星级 通过武器升星提升*/ + star: number; + /**升星失败后增加的成功几率 每失败一次增加0.1 升星成功后清0*/ + starProbability: number; + }; + /**饰物 */ + shiwu: { + [_id: string]: heroShiWu; + }; + /**潜能 */ + qiannneg: { + [type: string]: number; + }; + /**觉醒 */ + awake: number; + /**天赋 */ + talent: { + [type: string]: number; + }; + /**配件 */ + peijian: { + [pos: string]: string; + }; +}; \ No newline at end of file diff --git a/src/shared/protocols/hero/PtlJinJie.ts b/src/shared/protocols/hero/PtlJinJie.ts new file mode 100644 index 0000000..2d1e14e --- /dev/null +++ b/src/shared/protocols/hero/PtlJinJie.ts @@ -0,0 +1,15 @@ + +/** + * 英雄进阶 + */ + +export type ReqJinJie = { + /**英雄唯一id */ + id: string; + /**需要吞噬的英雄 */ + idArr?: string[]; +}; + +export type ResJinJie = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/hero/PtlLvUp.ts b/src/shared/protocols/hero/PtlLvUp.ts new file mode 100644 index 0000000..55bf245 --- /dev/null +++ b/src/shared/protocols/hero/PtlLvUp.ts @@ -0,0 +1,21 @@ + +/** + * 英雄升级 + */ + +export type ReqLvUp = { + /**英雄唯一id */ + id: string; + + /**升几级 */ + up?: number +}; + +export type ResLvUp = { + // 升级后等级 + lv: number +}; + +export const conf = { + timeIntervalLimit: 0 +}; \ No newline at end of file diff --git a/src/shared/protocols/hero/PtlPotency.ts b/src/shared/protocols/hero/PtlPotency.ts new file mode 100644 index 0000000..f975e6b --- /dev/null +++ b/src/shared/protocols/hero/PtlPotency.ts @@ -0,0 +1,12 @@ + +/** + * 升级潜能 + */ +export type ReqPotency = { + _id: string; + type: string; +}; + +export type ResPotency = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/hero/PtlRec.ts b/src/shared/protocols/hero/PtlRec.ts new file mode 100644 index 0000000..1e10625 --- /dev/null +++ b/src/shared/protocols/hero/PtlRec.ts @@ -0,0 +1,13 @@ +import { prizeType } from '../type'; + +/** + * 领取干部传记奖励 + */ +export type ReqRec = { + /**干部hid */ + heroId: string; +}; + +export type ResRec = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/hero/PtlReset.ts b/src/shared/protocols/hero/PtlReset.ts new file mode 100644 index 0000000..893372f --- /dev/null +++ b/src/shared/protocols/hero/PtlReset.ts @@ -0,0 +1,14 @@ +import { prizeType } from '../type'; + + +/** + * 英雄遣散重置 + */ +export type ReqReset = { + _ids: string[]; + type: 'qs' | 'cz' | 'yl'; +}; + +export type ResReset = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/hero/PtlTalent.ts b/src/shared/protocols/hero/PtlTalent.ts new file mode 100644 index 0000000..50b4708 --- /dev/null +++ b/src/shared/protocols/hero/PtlTalent.ts @@ -0,0 +1,13 @@ + + +/** + * 英雄天赋 + */ +export type ReqTalent = { + _id: string; + type: string; +}; + +export type ResTalent = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/hero/PtlWeaponUp.ts b/src/shared/protocols/hero/PtlWeaponUp.ts new file mode 100644 index 0000000..aff4fb9 --- /dev/null +++ b/src/shared/protocols/hero/PtlWeaponUp.ts @@ -0,0 +1,21 @@ +/** + * 英雄专属武器提升 + */ + +export type ReqWeaponUp = { + /**英雄唯一id */ + id: string; + /** + * 提升类型 + * @param jieji 觉醒 + * @param star 升星 + */ + type: 'jieji' | 'star'; +}; + +export type ResWeaponUp = { + /** + * 升星时会出现该字段 表示升星是否失败 + */ + starFail?: boolean; +}; \ No newline at end of file diff --git a/src/shared/protocols/hongdian/PtlGet.ts b/src/shared/protocols/hongdian/PtlGet.ts new file mode 100644 index 0000000..f2af17d --- /dev/null +++ b/src/shared/protocols/hongdian/PtlGet.ts @@ -0,0 +1,26 @@ + + +/** + * 获取红点 + */ +export type ReqGet = hongdianKey[]; + +export type ResGet = { + [key: string]: hongdianVal; +}; + +export const conf = { + timeIntervalLimit: 0 +}; + +export type hongdianKey = 'jiuba' | 'jiaotang' | 'shouchong' | 'dixiaqianzhuanghd' | 'taskhd' | 'xstaskhd' | 'gonghuihd' | 'jjchd' | 'hbzbhd' | + 'clslhd' | 'lingzhulaixihd' | 'dxlthd' | 'wzcjhd' | 'slzdhd' | 'qjzzdhd' | 'kuangdonghd' | 'qiandaohd' | 'kaifukuanghuanhd' | 'jijinhd' | 'zhuishalinghd' | + 'yibaichouhd' | 'huobanzhaomuhd' | 'qirileichonghd' | 'jierihd' | 'kbzzhd' | 'wzryhd' | 'yuedujijin' | 'patahd' | + 'mingdao' | 'heishihd' |'jitianhaoli'| 'huodonghd' | 'renown' | 'heishiMrjx'; + + +export type hongdianVal = { + show?: boolean; + // 看功能需要 + val?: { [key: string]: any; }; +}; \ No newline at end of file diff --git a/src/shared/protocols/item/PtlGetList.ts b/src/shared/protocols/item/PtlGetList.ts new file mode 100644 index 0000000..f2bb724 --- /dev/null +++ b/src/shared/protocols/item/PtlGetList.ts @@ -0,0 +1,22 @@ + +/** + * 获取道具列表 + */ +export type ReqGetList = {}; + +export type ResGetList = { + list: { + [_id: string]: { + /**道具唯一id */ + _id: string; + /**道具数量 */ + num: number; + /**道具id */ + itemId: string; + /**最近获取时间 */ + lastTime: number; + /**最早获取时间 */ + firstTime: number; + }; + }; +}; \ No newline at end of file diff --git a/src/shared/protocols/item/PtlUse.ts b/src/shared/protocols/item/PtlUse.ts new file mode 100644 index 0000000..f69c341 --- /dev/null +++ b/src/shared/protocols/item/PtlUse.ts @@ -0,0 +1,18 @@ +import { prizeType } from '../type'; + +/** + * 使用道具 + */ + +export type ReqUse = { + /**道具id */ + itemId: string; + /**礼包类道具传使用数量 合成类道具传合成数量 */ + useNum: number; + /**自选类道具的选择下标 */ + selectIndex?: number; +}; + +export type ResUse = { + prize?: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/jiaotang/PtlLottery.ts b/src/shared/protocols/jiaotang/PtlLottery.ts new file mode 100644 index 0000000..c1a9960 --- /dev/null +++ b/src/shared/protocols/jiaotang/PtlLottery.ts @@ -0,0 +1,17 @@ +import { prizeType } from '../type'; +import { ResOpen } from './PtlOpen'; + +/** + * 教堂抽奖接口接口 + */ + +export type ReqLottery = { + type: 1 | 10; +}; + +export type ResLottery = { + /**抽取的奖励 */ + prize: prizeType[]; + /**更新open接口数据 */ + changeData?: Partial; +}; \ No newline at end of file diff --git a/src/shared/protocols/jiaotang/PtlOpen.ts b/src/shared/protocols/jiaotang/PtlOpen.ts new file mode 100644 index 0000000..5790a1a --- /dev/null +++ b/src/shared/protocols/jiaotang/PtlOpen.ts @@ -0,0 +1,16 @@ +/** + * 教堂open接口 + */ + +export type ReqOpen = { + +}; + +export type ResOpen = { + /**单抽免费时间戳 当天0点的时间戳>这个时间戳则可以免费单抽*/ + freeTime: number; + /**历史单抽次数 */ + oneNum: number; + /**历史十连次数 */ + tenNum: number; +}; \ No newline at end of file diff --git a/src/shared/protocols/jiuba/PtlLottery.ts b/src/shared/protocols/jiuba/PtlLottery.ts new file mode 100644 index 0000000..be0994b --- /dev/null +++ b/src/shared/protocols/jiuba/PtlLottery.ts @@ -0,0 +1,18 @@ +import { prizeType } from '../type'; +import { ResOpen } from './PtlOpen'; + +/** + * 酒吧抽奖接口接口 + * 30代表首次抽奖,必出英雄,前端新手引导需要 + */ + +export type ReqLottery = { + type: 1 | 10 | 30; +}; + +export type ResLottery = { + /**抽取的奖励 */ + prize: prizeType[]; + /**更新open接口数据 */ + changeData?: Partial; +}; \ No newline at end of file diff --git a/src/shared/protocols/jiuba/PtlOpen.ts b/src/shared/protocols/jiuba/PtlOpen.ts new file mode 100644 index 0000000..537fe97 --- /dev/null +++ b/src/shared/protocols/jiuba/PtlOpen.ts @@ -0,0 +1,16 @@ +/** + * 酒吧open接口 + */ + +export type ReqOpen = { + +}; + +export type ResOpen = { + /**单抽免费时间戳 当天0点的时间戳>这个时间戳则可以免费单抽*/ + freeTime: number; + /**历史单抽次数 */ + oneNum: number; + /**历史十连次数 */ + tenNum: number; +}; \ No newline at end of file diff --git a/src/shared/protocols/jjc/PtlBuyFightNum.ts b/src/shared/protocols/jjc/PtlBuyFightNum.ts new file mode 100644 index 0000000..7a14074 --- /dev/null +++ b/src/shared/protocols/jjc/PtlBuyFightNum.ts @@ -0,0 +1,13 @@ +import { jjcChange } from './PtlOpen'; + + +/** + * 竞技场购买挑战次数 + */ +export type ReqBuyFightNum = { + num?: number; +}; + +export type ResBuyFightNum = { + change: jjcChange; +}; \ No newline at end of file diff --git a/src/shared/protocols/jjc/PtlFight.ts b/src/shared/protocols/jjc/PtlFight.ts new file mode 100644 index 0000000..704138a --- /dev/null +++ b/src/shared/protocols/jjc/PtlFight.ts @@ -0,0 +1,16 @@ +import { fightResult } from '../../fightControl/fightType'; +import { prizeType } from '../type'; +import { jjcChange } from './PtlOpen'; + +/** + * 挑战 + */ +export type ReqFight = { + uid: string; +}; + +export type ResFight = { + change: jjcChange; + result: fightResult; + prize?: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/jjc/PtlFightLog.ts b/src/shared/protocols/jjc/PtlFightLog.ts new file mode 100644 index 0000000..8649092 --- /dev/null +++ b/src/shared/protocols/jjc/PtlFightLog.ts @@ -0,0 +1,9 @@ +import { fightResult } from '../../fightControl/fightType'; + + +/** + * 战斗日志 + */ +export type ReqFightLog = {}; + +export type ResFightLog = fightResult[]; \ No newline at end of file diff --git a/src/shared/protocols/jjc/PtlOpen.ts b/src/shared/protocols/jjc/PtlOpen.ts new file mode 100644 index 0000000..ec6d677 --- /dev/null +++ b/src/shared/protocols/jjc/PtlOpen.ts @@ -0,0 +1,28 @@ +import { rankInfo } from '../type'; + + +/** + * 竞技场open + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + /**每日已购买的挑战次数 */ + buyFightNum: number; + /**每日已挑战次数 */ + useFightNum: number; + /**已领取的战斗奖励 */ + receivedArr: string[]; + /**每日重置时间 */ + resetTime: number; + /**排名 */ + rank: number; + /**对手 */ + enemy: rankInfo[]; + /**历史记录胜利次数 */ + recordWin?: number; +}; + +export type jjcChange = Partial; \ No newline at end of file diff --git a/src/shared/protocols/jjc/PtlReceive.ts b/src/shared/protocols/jjc/PtlReceive.ts new file mode 100644 index 0000000..87b0d41 --- /dev/null +++ b/src/shared/protocols/jjc/PtlReceive.ts @@ -0,0 +1,14 @@ +import { prizeType } from '../type'; +import { jjcChange } from './PtlOpen'; + +/** + * 竞技场领取挑战奖励 + */ +export type ReqReceive = { + id: string; +}; + +export type ResReceive = { + change: jjcChange; + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/jjc/PtlRefresh.ts b/src/shared/protocols/jjc/PtlRefresh.ts new file mode 100644 index 0000000..b98c20a --- /dev/null +++ b/src/shared/protocols/jjc/PtlRefresh.ts @@ -0,0 +1,13 @@ +import { rankInfo } from '../type'; + +/**竞技场刷新对手及当前排名 */ +export type ReqRefresh = { + +}; + +export type ResRefresh = { + /**对手 */ + enemy: rankInfo[]; + /**我的排名 */ + rank: number; +}; \ No newline at end of file diff --git a/src/shared/protocols/kbzz/PtlApply.ts b/src/shared/protocols/kbzz/PtlApply.ts new file mode 100644 index 0000000..827df8c --- /dev/null +++ b/src/shared/protocols/kbzz/PtlApply.ts @@ -0,0 +1,12 @@ + + +/** + * 报名 + */ +export type ReqApply = { + +}; + +export type ResApply = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/kbzz/PtlAutoApply.ts b/src/shared/protocols/kbzz/PtlAutoApply.ts new file mode 100644 index 0000000..8d6b26d --- /dev/null +++ b/src/shared/protocols/kbzz/PtlAutoApply.ts @@ -0,0 +1,12 @@ + + +/** + * 设置自动报名 + */ +export type ReqAutoApply = { + auto: boolean; +}; + +export type ResAutoApply = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/kbzz/PtlBuyNum.ts b/src/shared/protocols/kbzz/PtlBuyNum.ts new file mode 100644 index 0000000..2d7c64d --- /dev/null +++ b/src/shared/protocols/kbzz/PtlBuyNum.ts @@ -0,0 +1,8 @@ + + +/** + * 购买挑战次数 + */ +export type ReqBuyNum = { num: number; }; + +export type ResBuyNum = {}; \ No newline at end of file diff --git a/src/shared/protocols/kbzz/PtlFight.ts b/src/shared/protocols/kbzz/PtlFight.ts new file mode 100644 index 0000000..9406cb3 --- /dev/null +++ b/src/shared/protocols/kbzz/PtlFight.ts @@ -0,0 +1,17 @@ +import { fightResult } from '../../fightControl/fightType'; +import { prizeType } from '../type'; +import { eventCycle } from './PtlOpen'; + + +/** + * 挑战对手 + */ +export type ReqFight = { + uids: string[]; +}; + +export type ResFight = { + prize: prizeType[]; + result: fightResult[]; + change: Partial; +}; \ No newline at end of file diff --git a/src/shared/protocols/kbzz/PtlFightLog.ts b/src/shared/protocols/kbzz/PtlFightLog.ts new file mode 100644 index 0000000..3450dc0 --- /dev/null +++ b/src/shared/protocols/kbzz/PtlFightLog.ts @@ -0,0 +1,11 @@ +import { fightResult } from '../../fightControl/fightType'; + + +/** + * 我的战斗日志 + */ +export type ReqFightLog = { + +}; + +export type ResFightLog = fightResult[]; \ No newline at end of file diff --git a/src/shared/protocols/kbzz/PtlGroupState.ts b/src/shared/protocols/kbzz/PtlGroupState.ts new file mode 100644 index 0000000..a905f49 --- /dev/null +++ b/src/shared/protocols/kbzz/PtlGroupState.ts @@ -0,0 +1,22 @@ +import { player } from '../user/type'; + + +/** + * 获取我的分组里面的势力排名 + */ +export type ReqGroupState = { + group: number; + troop: number; +}; + +export type ResGroupState = { + rank: { + troop: number; + score: number; + }[]; + log: { + player: Partial[]; + troop: number[]; + winSide: number; + }[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/kbzz/PtlOpen.ts b/src/shared/protocols/kbzz/PtlOpen.ts new file mode 100644 index 0000000..b57d9f8 --- /dev/null +++ b/src/shared/protocols/kbzz/PtlOpen.ts @@ -0,0 +1,47 @@ +import { joinFightData } from '../../fightControl/fightType'; + +/** + * 进入恐怖战争 + */ +export type ReqOpen = { + +}; + +export type ResOpen = apply | applyEnd | eventCycle; + +type apply = { + /**是否已经报名 */ + apply: boolean; + /**是否自动报名 */ + autoApply: boolean; + /**跨服报名数据 */ + state: { + num: number; + succ: boolean; + }; +}; + +type applyEnd = apply; + +export type eventCycle = { + /**今日挑战次数 */ + fightNum: number; + /**今日已购买挑战次数 */ + buyFightNum: number; + /**我的积分 */ + score: number; + /**今日获得的总积分 */ + toDayScore: number; + /**今日已领取的积分奖励 */ + recScorePrize: number[]; + /**对手 */ + enemy: { + info: joinFightData; + troop: number; + result: number | null; + }[]; + /**我的势力 */ + troop: number; + /**我的分组 */ + group: number; +}; \ No newline at end of file diff --git a/src/shared/protocols/kbzz/PtlRecPrize.ts b/src/shared/protocols/kbzz/PtlRecPrize.ts new file mode 100644 index 0000000..cb636a2 --- /dev/null +++ b/src/shared/protocols/kbzz/PtlRecPrize.ts @@ -0,0 +1,13 @@ +import { prizeType } from '../type'; + + +/** + * 领取每日积分奖励 + */ +export type ReqRecPrize = { + index: number; +}; + +export type ResRecPrize = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/kbzz/PtlRefresh.ts b/src/shared/protocols/kbzz/PtlRefresh.ts new file mode 100644 index 0000000..e5cf2b3 --- /dev/null +++ b/src/shared/protocols/kbzz/PtlRefresh.ts @@ -0,0 +1,22 @@ +import { joinFightData } from '../../fightControl/fightType'; + + +/** + * 刷新对手 + */ +export type ReqRefresh = { + group: number; + troop: number; +}; + +export type ResRefresh = { + enemy: { + info: joinFightData; + troop: number; + result: number | null; + }[]; +}; + +export const conf = { + timeIntervalLimit: 4000 +}; \ No newline at end of file diff --git a/src/shared/protocols/kuangdong/PtlAddPkNum.ts b/src/shared/protocols/kuangdong/PtlAddPkNum.ts new file mode 100644 index 0000000..21c4d35 --- /dev/null +++ b/src/shared/protocols/kuangdong/PtlAddPkNum.ts @@ -0,0 +1,17 @@ +/** + * 矿洞增加当日pk次数接口 + */ + +import { prizeType } from "../type"; +import { KuangDongCiShuInfo, KuangDongKaiCailog } from "./PtlOpen"; + +export type ReqAddPkNum = { + /**区域 那个区 */ + area: 1 | 2 | 3 + /**增加的次数 默认为1 */ + num?: number +}; + +export type ResAddPkNum = { + mydata: KuangDongCiShuInfo +}; \ No newline at end of file diff --git a/src/shared/protocols/kuangdong/PtlGetPrize.ts b/src/shared/protocols/kuangdong/PtlGetPrize.ts new file mode 100644 index 0000000..8ff3b73 --- /dev/null +++ b/src/shared/protocols/kuangdong/PtlGetPrize.ts @@ -0,0 +1,18 @@ +/** + * 矿洞放弃接口 + */ + +import { OptionalId, UpdateFilter } from "mongodb"; +import { prizeType } from "../type"; + +export type ReqGetPrize = { + hdid: number +}; + +export type ResGetPrize = { + prize: prizeType[] +}; + + + + diff --git a/src/shared/protocols/kuangdong/PtlKdInfo.ts b/src/shared/protocols/kuangdong/PtlKdInfo.ts new file mode 100644 index 0000000..8bfe48f --- /dev/null +++ b/src/shared/protocols/kuangdong/PtlKdInfo.ts @@ -0,0 +1,16 @@ +/** + * 每个矿洞具体信息接口 + */ + +import { OptionalId, WithId } from "mongodb"; +import { prizeType } from "../type"; +import { KuangDongKaiCaiListTmp, KuangDongKuang } from "./PtlOpen"; + +export type ReqKdInfo = { + hdid: number +}; + +export type ResKdInfo = { + kdinfo: KuangDongKuang, + userinfo?: KuangDongKaiCaiListTmp +}; \ No newline at end of file diff --git a/src/shared/protocols/kuangdong/PtlLog.ts b/src/shared/protocols/kuangdong/PtlLog.ts new file mode 100644 index 0000000..9c7f3fd --- /dev/null +++ b/src/shared/protocols/kuangdong/PtlLog.ts @@ -0,0 +1,14 @@ +/** + * 矿洞日志Log接口 + */ + +import { prizeType } from "../type"; +import { KuangDongKaiCailog } from "./PtlOpen"; + +export type ReqLog = { + +}; + +export type ResLog = { + kuangdonglog: KuangDongKaiCailog[] +}; \ No newline at end of file diff --git a/src/shared/protocols/kuangdong/PtlOpen.ts b/src/shared/protocols/kuangdong/PtlOpen.ts new file mode 100644 index 0000000..85d4ce7 --- /dev/null +++ b/src/shared/protocols/kuangdong/PtlOpen.ts @@ -0,0 +1,92 @@ +/** + * 矿洞open接口 + */ + +import { OptionalId, UpdateFilter } from "mongodb"; +import { CollectionPlayerInfo, playerInfoType } from "../../../module/collection_palyerInfo"; +import { prizeType } from "../type"; + +export type ReqOpen = { + +}; + +export type ResOpen = { + mydata: KuangDongCiShuInfo + kdList?: { + [hdid: string]: KuangDongKaiCaiList; + } + prize: prizeType[] +}; + + +export type KuangDongCiShuInfo = { + /**区域key 值挑战次数num 分别计数*/ + eara: { [id: string]: number }; + /**区域key 值挑战次数num 分别计数*/ + buynum: { [id: string]: number }; + time: number; +}; + + +export type KuangDongKuang = { + /**uid */ + uid: string + /**矿洞占领开始时间 */ + ctime: number + /**矿洞结束时间 */ + etime: number + /**延时多少秒 */ + yanshi: number + /**那个矿洞 */ + hdid: number + /**矿洞类型 */ + kdtype: number + ttl: Date + _id?: string + userinfo?: KuangDongKaiCaiListTmp +}; + + +/**矿洞的详细信息 */ +export type KuangDongKaiCaiList = { + /**占领矿的用户信息 */ + userinfo?: KuangDongKaiCaiListTmp +} & KuangDongKuang + + +/**占领矿洞的个人信息 */ +export type KuangDongKaiCaiListTmp = { + headFrame: { id: string; time: number; }|undefined + head: { id: string; time: number; }|undefined + ghId: string|undefined + ghName: string|undefined + name: string + lv: number + power: number + fight?: {} +} + +/**矿洞的日志格式 */ +export type KuangDongKaiCailog = { + /**被占领的玩家uid(之前矿是我的) */ + uid: string + /**唯一街道 */ + hdid: number + /**被占领的玩家名字 */ + name: string + /**占领的玩家uid */ + touid?: string + /**占领的玩家的名字 */ + toname?: string + /**日志时间 */ + ctime: number + /**消息类型 1:时间到自动结算 2:占领建筑被人抢,被迫结算 3:占领建筑被人抢,对方没打赢 4:主动放弃*/ + msgtype: 1 | 2 | 3 | 4 + /**收益 */ + prize?: prizeType[] + /**战令时长 */ + longtime: number + + +} + diff --git a/src/shared/protocols/kuangdong/PtlYanShi.ts b/src/shared/protocols/kuangdong/PtlYanShi.ts new file mode 100644 index 0000000..a429381 --- /dev/null +++ b/src/shared/protocols/kuangdong/PtlYanShi.ts @@ -0,0 +1,14 @@ +/** + * 矿洞增加 延时 + */ + +import { prizeType } from "../type"; +import { KuangDongCiShuInfo, KuangDongKaiCailog, KuangDongKuang } from "./PtlOpen"; + +export type ReqYanShi = { + hdid: number +}; + +export type ResYanShi = { + kdinfo: KuangDongKuang, +}; \ No newline at end of file diff --git a/src/shared/protocols/kuangdong/PtlZhanLing.ts b/src/shared/protocols/kuangdong/PtlZhanLing.ts new file mode 100644 index 0000000..f2fec57 --- /dev/null +++ b/src/shared/protocols/kuangdong/PtlZhanLing.ts @@ -0,0 +1,21 @@ +/** + * 矿洞占领接口 + */ + +import { OptionalId, UpdateFilter } from "mongodb"; +import { CollectionPlayerInfo } from "../../../module/collection_palyerInfo"; +import { fightResult } from "../../fightControl/fightType"; +import { prizeType } from "../type"; +import { KuangDongCiShuInfo, KuangDongKuang } from "./PtlOpen"; + +export type ReqZhanLing = { + hdid: number +}; + +export type ResZhanLing = { + result?: fightResult + mydata: KuangDongCiShuInfo + kdInfo?: KuangDongKuang +}; + + diff --git a/src/shared/protocols/lingzhulaixi/PtlOpen.ts b/src/shared/protocols/lingzhulaixi/PtlOpen.ts new file mode 100644 index 0000000..e0704ff --- /dev/null +++ b/src/shared/protocols/lingzhulaixi/PtlOpen.ts @@ -0,0 +1,70 @@ +/** + * 领主来袭open接口 + */ +import { string } from "mathjs"; +import { OptionalId, UpdateFilter } from "mongodb"; +import { prizeType } from "../type"; + +export type ReqOpen = { + +}; + +export type ResOpen = { + /**领主来袭的次数信息 */ + mydata: lingzhulaixi_CiSHU, + /**领主来袭默认boss各种信息 */ + bosslist: lingzhulaixi_BossList +}; + + +/**领主来袭默认boss各种信息 */ +export type lingzhulaixi_BOSSmmMoRenZhi = { + /**boss id */ + bid: string + /**创建时间 */ + ctime: number + /**下次复活时间 */ + passtime: number + /**怪物总血量 */ + maxhp: number + /**挑战的玩家信息 */ + pkuser: { [id: string]: number } + /**当前扣除的血量 */ + delhp: number + /**超过三名之后挑战人数随机值 */ + randusernum: number + _id?: string + +} + + +/**领主来袭的次数信息 */ +export type lingzhulaixi_CiSHU = { + /**已经使用的次数 */ + num: number + /**重置次数时的时间戳 */ + time: number + /**上次挑战的最大伤害 bossid 为key*/ + maxdps: { + [bid: string]: number + } +} + +/**领主来袭的boss列表格式 */ +export type lingzhulaixi_BossList = { + [bid: string]: { + /**boss id */ + bid: string + /**下次复活时间 */ + passtime: number + /**怪物总血量 */ + maxhp: number + /**当前扣除的血量 */ + delhp: number + /**挑战的玩家数量 */ + pkusernum: number + } +} + + + diff --git a/src/shared/protocols/lingzhulaixi/PtlPkBoss.ts b/src/shared/protocols/lingzhulaixi/PtlPkBoss.ts new file mode 100644 index 0000000..ac03354 --- /dev/null +++ b/src/shared/protocols/lingzhulaixi/PtlPkBoss.ts @@ -0,0 +1,27 @@ +/** + * 领主来袭pkboss 打boss接口 + */ +import { OptionalId, UpdateFilter } from "mongodb"; +import { fightResult } from "../../fightControl/fightType"; +import { prizeType } from "../type"; +import { lingzhulaixi_BOSSmmMoRenZhi, lingzhulaixi_CiSHU } from "./PtlOpen"; + +export type ReqPkBoss = { + /**boss id */ + bid: string +}; + +export type ResPkBoss = { + /**战斗数据 */ + result: fightResult + /**奖励 */ + prize: prizeType[] + /**已经挑战次数等信息 */ + mydata: lingzhulaixi_CiSHU + /**boss相关信息 */ + bossdata: lingzhulaixi_BOSSmmMoRenZhi +}; + + + + diff --git a/src/shared/protocols/lingzhulaixi/PtlPkRank.ts b/src/shared/protocols/lingzhulaixi/PtlPkRank.ts new file mode 100644 index 0000000..7217a3c --- /dev/null +++ b/src/shared/protocols/lingzhulaixi/PtlPkRank.ts @@ -0,0 +1,24 @@ +/** + * 领主来袭排行rank接口 只有前三名 + */ +import { OptionalId, UpdateFilter } from "mongodb"; +import { KuangDongKaiCaiListTmp } from "../kuangdong/PtlOpen"; +import { lingzhulaixi_BOSSmmMoRenZhi } from "./PtlOpen"; + +export type ReqPkRank = { + bid: string +}; + +export type ResPkRank = { + bossdata: lingzhulaixi_BOSSmmMoRenZhi + /**玩家的历史最大伤害 */ + userdps: number + ranklist: { + /**玩家基本信息 */ + userinfo: KuangDongKaiCaiListTmp + uid: string + /**最大历史最大伤害 */ + maxdps: number + }[] +}; + diff --git a/src/shared/protocols/lingzhulaixi/PtlSaoDang.ts b/src/shared/protocols/lingzhulaixi/PtlSaoDang.ts new file mode 100644 index 0000000..055d569 --- /dev/null +++ b/src/shared/protocols/lingzhulaixi/PtlSaoDang.ts @@ -0,0 +1,23 @@ +/** + * 领主来袭扫荡 saodang 接口 + */ +import { OptionalId, UpdateFilter } from "mongodb"; +import { prizeType } from "../type"; +import { lingzhulaixi_BOSSmmMoRenZhi, lingzhulaixi_CiSHU } from "./PtlOpen"; + +export type ReqSaoDang = { + /**扫荡次数 */ + num: number + /**boss id */ + bid: string +}; + +export type ResSaoDang = { + /**奖励 */ + prize: prizeType[] + /**已经挑战次数等信息 */ + mydata: lingzhulaixi_CiSHU + /**boss相关信息 */ + bossdata: lingzhulaixi_BOSSmmMoRenZhi +}; + diff --git a/src/shared/protocols/meirishilian/PtlBuy.ts b/src/shared/protocols/meirishilian/PtlBuy.ts new file mode 100644 index 0000000..c2a0435 --- /dev/null +++ b/src/shared/protocols/meirishilian/PtlBuy.ts @@ -0,0 +1,13 @@ + + +/** + * 购买挑战次数 + */ +export type ReqBuy = { + type: string; + difficulty: string; +}; + +export type ResBuy = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/meirishilian/PtlFight.ts b/src/shared/protocols/meirishilian/PtlFight.ts new file mode 100644 index 0000000..96575ad --- /dev/null +++ b/src/shared/protocols/meirishilian/PtlFight.ts @@ -0,0 +1,16 @@ +import { fightResult } from '../../fightControl/fightType'; +import { prizeType } from '../type'; + + +/** + * 挑战 | 扫荡 + */ +export type ReqFight = { + type: string; + difficulty: string; +}; + +export type ResFight = { + result?: fightResult; + prize?: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/meirishilian/PtlOpen.ts b/src/shared/protocols/meirishilian/PtlOpen.ts new file mode 100644 index 0000000..4b1ba0b --- /dev/null +++ b/src/shared/protocols/meirishilian/PtlOpen.ts @@ -0,0 +1,32 @@ + + +/** + * 进入每日试炼 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + /**已使用的挑战次数 */ + useFightNum: number; + /**已购买的挑战次数 */ + buyFightNum: number; + /**挑战胜利记录 */ + recordWin: { + [type: string]: { + [difficulty: string]: number; + }; + }; + /**新的购买信息,旧的不要用了 */ + numInfo?: { + [type: string]: { + [difficulty: string]: { + /**已使用的挑战次数 */ + useFightNum?: number; + /**已购买的挑战次数 */ + buyFightNum?: number; + }; + } + } +}; \ No newline at end of file diff --git a/src/shared/protocols/msg_c2s/MsgBindUid.ts b/src/shared/protocols/msg_c2s/MsgBindUid.ts new file mode 100644 index 0000000..1deb14d --- /dev/null +++ b/src/shared/protocols/msg_c2s/MsgBindUid.ts @@ -0,0 +1,6 @@ +import { player } from '../user/type'; + +/** + * 玩家从逻辑服登陆后向消息服绑定uid + */ +export type MsgBindUid = player; \ No newline at end of file diff --git a/src/shared/protocols/msg_c2s/MsgPay.ts b/src/shared/protocols/msg_c2s/MsgPay.ts new file mode 100644 index 0000000..10c6a3b --- /dev/null +++ b/src/shared/protocols/msg_c2s/MsgPay.ts @@ -0,0 +1,6 @@ + + +export type MsgPay = { + id: string; + args?: any; +}; \ No newline at end of file diff --git a/src/shared/protocols/msg_c2s/MsgSync.ts b/src/shared/protocols/msg_c2s/MsgSync.ts new file mode 100644 index 0000000..2a1094f --- /dev/null +++ b/src/shared/protocols/msg_c2s/MsgSync.ts @@ -0,0 +1,7 @@ + +/** + * 消息服发奖后由客户端向逻辑服发起更新道具缓存 + */ +export type MsgSync = { + [msgType: string]: any; +}; \ No newline at end of file diff --git a/src/shared/protocols/msg_s2c/MsgChat.ts b/src/shared/protocols/msg_s2c/MsgChat.ts new file mode 100644 index 0000000..4a9ac52 --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgChat.ts @@ -0,0 +1,24 @@ +import { ResLogin } from '../user/PtlLogin'; + + +/** + * 聊天信息推送 + */ +export type MsgChat = { + /**消息内容 */ + msg: string; + /**发送时间 */ + time: number; + /**消息分类 */ + type: 'cross' | 'local' | 'guild'; + /**发送人 */ + sender: Partial | 'system'; + /**接收人 */ + recipient?: Partial | 'system'; + /**附加数据 */ + otherData?: { + [k: string]: any; + }; + + +}; \ No newline at end of file diff --git a/src/shared/protocols/msg_s2c/MsgChatHelp.ts b/src/shared/protocols/msg_s2c/MsgChatHelp.ts new file mode 100644 index 0000000..20cd260 --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgChatHelp.ts @@ -0,0 +1,9 @@ + + +export type MsgChatHelp = { + change: { + uid: string; + cTime: number; + pushUid: string; + }[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/msg_s2c/MsgCollection.ts b/src/shared/protocols/msg_s2c/MsgCollection.ts new file mode 100644 index 0000000..d47d6ee --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgCollection.ts @@ -0,0 +1,6 @@ +/** + * 批量推送事件集合 由客户端解析 + */ +export type MsgCollection = { + [msgType: string]: any; +}; \ No newline at end of file diff --git a/src/shared/protocols/msg_s2c/MsgEmail.ts b/src/shared/protocols/msg_s2c/MsgEmail.ts new file mode 100644 index 0000000..ec8630b --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgEmail.ts @@ -0,0 +1,35 @@ +import { prizeType } from '../type'; +/** + * 新邮件推送 + */ +export type MsgEmail = { + /**邮件唯一id */ + _id: string; + /**玩家uid */ + uid: string; + /** + * 邮件类型 + */ + type: 'system' | 'gm'; + /**标题 */ + title: string; + /**内容 */ + content: string; + /**邮件创建时间戳 */ + createTime: number; + /**奖励邮件 */ + prizeData?: { + /**奖励 */ + prize: prizeType[]; + /**是否已领取 */ + isGet: boolean; + }; + /**插入邮件内容的值 str(content, contentInsertArr) */ + contentInsertArr?: any[]; + /**全服邮件 是否领取,存在uid为领取 */ + prizelist?: string[]; + /**全服邮件 是否删除,存在uid为删除 */ + dellist?: string[]; + /**记录一些杂七杂八的,没什么用又必须记录 */ + g123log?: { [id: string]: any } +}; diff --git a/src/shared/protocols/msg_s2c/MsgEmailDel.ts b/src/shared/protocols/msg_s2c/MsgEmailDel.ts new file mode 100644 index 0000000..4380bdb --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgEmailDel.ts @@ -0,0 +1,6 @@ + + +/** + * 到达邮件上限后删除的邮件 返回值为邮件_id + */ +export type MsgEmailDel = string; \ No newline at end of file diff --git a/src/shared/protocols/msg_s2c/MsgEquipChange.ts b/src/shared/protocols/msg_s2c/MsgEquipChange.ts new file mode 100644 index 0000000..c67f409 --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgEquipChange.ts @@ -0,0 +1,11 @@ +import { ResGetList } from '../equip/PtlGetList'; + +/** + * 装备推送消息 + */ +export type MsgEquipChange = { + [_id: string]: Partial & { + /**如果为0 代表删除该装备 */ + num?: number; + }; +}; \ No newline at end of file diff --git a/src/shared/protocols/msg_s2c/MsgFriend.ts b/src/shared/protocols/msg_s2c/MsgFriend.ts new file mode 100644 index 0000000..cb7c8b5 --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgFriend.ts @@ -0,0 +1,4 @@ +import { ResOpen } from '../friend/PtlOpen'; + + +export type MsgFriend = Partial; \ No newline at end of file diff --git a/src/shared/protocols/msg_s2c/MsgGhChange.ts b/src/shared/protocols/msg_s2c/MsgGhChange.ts new file mode 100644 index 0000000..37a4fb1 --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgGhChange.ts @@ -0,0 +1,4 @@ +import { gonghuiBase } from '../gonghui/type'; + + +export type MsgGhChange = Partial; \ No newline at end of file diff --git a/src/shared/protocols/msg_s2c/MsgGongHuiBaoZang.ts b/src/shared/protocols/msg_s2c/MsgGongHuiBaoZang.ts new file mode 100644 index 0000000..70af331 --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgGongHuiBaoZang.ts @@ -0,0 +1,4 @@ +import { GongHuiBaoZangMsg } from "../gonghuibaozang/PtlLottery"; + + +export type MsgGongHuiBaoZang = GongHuiBaoZangMsg[]; \ No newline at end of file diff --git a/src/shared/protocols/msg_s2c/MsgHeroChange.ts b/src/shared/protocols/msg_s2c/MsgHeroChange.ts new file mode 100644 index 0000000..5979b44 --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgHeroChange.ts @@ -0,0 +1,11 @@ +import { ResGetList } from '../hero/PtlGetList'; + +/** + * 英雄推送消息 + */ +export type MsgHeroChange = { + [_id: string]: Partial & { + /**如果为0 代表删除该英雄 */ + num?: number; + }; +}; \ No newline at end of file diff --git a/src/shared/protocols/msg_s2c/MsgHongDianChange.ts b/src/shared/protocols/msg_s2c/MsgHongDianChange.ts new file mode 100644 index 0000000..9286a76 --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgHongDianChange.ts @@ -0,0 +1,5 @@ + +import { hongdianKey } from "../hongdian/PtlGet"; + + +export type MsgHongDianChange = hongdianKey[]; \ No newline at end of file diff --git a/src/shared/protocols/msg_s2c/MsgItemChange.ts b/src/shared/protocols/msg_s2c/MsgItemChange.ts new file mode 100644 index 0000000..d7f690c --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgItemChange.ts @@ -0,0 +1,11 @@ +import { ResGetList } from '../item/PtlGetList'; + +/** + * 道具推送消息 + */ +export type MsgItemChange = { + [_id: string]: Partial & { + /**如果为0 代表删除该道具 */ + num?: number; + }; +}; diff --git a/src/shared/protocols/msg_s2c/MsgLoginQueue.ts b/src/shared/protocols/msg_s2c/MsgLoginQueue.ts new file mode 100644 index 0000000..3ba7819 --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgLoginQueue.ts @@ -0,0 +1,7 @@ +/** + * 登陆排队 + */ +export type MsgLoginQueue = { + /**需要等待的时间 */ + delay: number; +}; \ No newline at end of file diff --git a/src/shared/protocols/msg_s2c/MsgLshdChange.ts b/src/shared/protocols/msg_s2c/MsgLshdChange.ts new file mode 100644 index 0000000..6da2fb1 --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgLshdChange.ts @@ -0,0 +1,7 @@ + +/**历史记录获得的英雄、装备 */ +export type MsgLshdChange = { + [type: string]: { + [k: string]: number; + }; +}; \ No newline at end of file diff --git a/src/shared/protocols/msg_s2c/MsgNewDay.ts b/src/shared/protocols/msg_s2c/MsgNewDay.ts new file mode 100644 index 0000000..d7636ba --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgNewDay.ts @@ -0,0 +1,7 @@ + +/** + * 推送新一天 + */ +export type MsgNewDay = { + [k: string]: any; +}; \ No newline at end of file diff --git a/src/shared/protocols/msg_s2c/MsgOtherLogin.ts b/src/shared/protocols/msg_s2c/MsgOtherLogin.ts new file mode 100644 index 0000000..cd62285 --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgOtherLogin.ts @@ -0,0 +1,5 @@ + +/** + * 账号在其他地方登录 + */ +export type MsgOtherLogin = string; \ No newline at end of file diff --git a/src/shared/protocols/msg_s2c/MsgPayChange.ts b/src/shared/protocols/msg_s2c/MsgPayChange.ts new file mode 100644 index 0000000..754df55 --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgPayChange.ts @@ -0,0 +1,6 @@ +import {payLog} from '../pay/PtlGetList'; + + +export type MsgPayChange = { + [payId: string]: payLog[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/msg_s2c/MsgPayResult.ts b/src/shared/protocols/msg_s2c/MsgPayResult.ts new file mode 100644 index 0000000..34ac065 --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgPayResult.ts @@ -0,0 +1,17 @@ +import { prizeType } from '../type'; + + +export type MsgPayResult = { + /** + * 1 充值成功 + * + * -1 充值失败 永久礼包充值过再继续充值 + * + * -2 充值失败 有持续时间的礼包未在结束时间后购买 + */ + code: number; + data?: { + id: string; + prize: prizeType[]; + }; +}; \ No newline at end of file diff --git a/src/shared/protocols/msg_s2c/MsgPeijianChange.ts b/src/shared/protocols/msg_s2c/MsgPeijianChange.ts new file mode 100644 index 0000000..e4f4826 --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgPeijianChange.ts @@ -0,0 +1,12 @@ +import { PeiJian } from '../peijian/PtlGetList'; + + +/** + * 配件推送消息 + */ +export type MsgPeijianChange = { + [_id: string]: Partial & { + /**如果为0 代表删除该装备 */ + num?: number; + }; +}; \ No newline at end of file diff --git a/src/shared/protocols/msg_s2c/MsgPlayerChange.ts b/src/shared/protocols/msg_s2c/MsgPlayerChange.ts new file mode 100644 index 0000000..9a14e74 --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgPlayerChange.ts @@ -0,0 +1,8 @@ + + +/** + * 玩家数据推送消息 + */ +export type MsgPlayerChange = { + [_id: string]: any; +}; \ No newline at end of file diff --git a/src/shared/protocols/msg_s2c/MsgPrivate.ts b/src/shared/protocols/msg_s2c/MsgPrivate.ts new file mode 100644 index 0000000..3178823 --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgPrivate.ts @@ -0,0 +1,12 @@ +import { ResLogin } from '../user/PtlLogin'; +import { MsgChat } from './MsgChat'; + + +export type MsgPrivate = Pick & { + /**发送人 */ + sender: Partial; + /**私聊id */ + privateId: string; + /**接收人 */ + recipient?: Partial; +}; \ No newline at end of file diff --git a/src/shared/protocols/msg_s2c/MsgSendGift.ts b/src/shared/protocols/msg_s2c/MsgSendGift.ts new file mode 100644 index 0000000..69f36a5 --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgSendGift.ts @@ -0,0 +1,6 @@ +/** + * 发送礼包通知 + */ +export type MsgSendGift = { + [k: string]: any; +}; \ No newline at end of file diff --git a/src/shared/protocols/msg_s2c/MsgShiwuChange.ts b/src/shared/protocols/msg_s2c/MsgShiwuChange.ts new file mode 100644 index 0000000..66a9e85 --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgShiwuChange.ts @@ -0,0 +1,11 @@ +import { ResGetList } from '../shiwu/PtlGetList'; + +/** + * 饰物推送消息 + */ +export type MsgShiwuChange = { + [_id: string]: Partial & { + /**如果为0 代表删除该装备 */ + num?: number; + }; +}; \ No newline at end of file diff --git a/src/shared/protocols/msg_s2c/MsgTaskChange.ts b/src/shared/protocols/msg_s2c/MsgTaskChange.ts new file mode 100644 index 0000000..676eeb7 --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgTaskChange.ts @@ -0,0 +1,3 @@ +import {taskType} from "../task/type"; + +export type MsgTaskChange = taskType diff --git a/src/shared/protocols/msg_s2c/MsgXianshilibao.ts b/src/shared/protocols/msg_s2c/MsgXianshilibao.ts new file mode 100644 index 0000000..f48ac2d --- /dev/null +++ b/src/shared/protocols/msg_s2c/MsgXianshilibao.ts @@ -0,0 +1,6 @@ + +/**有新的限时礼包 */ +export type MsgXianshilibao = { + payId: string; + eTime: number; +}[]; \ No newline at end of file diff --git a/src/shared/protocols/pata/PtlFight.ts b/src/shared/protocols/pata/PtlFight.ts new file mode 100644 index 0000000..e61ef5c --- /dev/null +++ b/src/shared/protocols/pata/PtlFight.ts @@ -0,0 +1,17 @@ +import { fightResult } from '../../fightControl/fightType'; +import { prizeType } from '../type'; +import { paTaType } from './type'; +/** + * 战斗 + */ +export type ReqFight = { + + +}; + +export type ResFight = { + mydata: paTaType, + prize: prizeType[] + /**战斗数据 */ + result: fightResult; +}; \ No newline at end of file diff --git a/src/shared/protocols/pata/PtlGetPrize.ts b/src/shared/protocols/pata/PtlGetPrize.ts new file mode 100644 index 0000000..1f32310 --- /dev/null +++ b/src/shared/protocols/pata/PtlGetPrize.ts @@ -0,0 +1,13 @@ +import { prizeType } from '../type'; +import { paTaType } from './type'; +/** + * 领取关卡奖励 + */ +export type ReqGetPrize = { + idx: number +}; + +export type ResGetPrize = { + mydata: paTaType, + prize: prizeType[] +}; \ No newline at end of file diff --git a/src/shared/protocols/pata/PtlOpen.ts b/src/shared/protocols/pata/PtlOpen.ts new file mode 100644 index 0000000..0c5564a --- /dev/null +++ b/src/shared/protocols/pata/PtlOpen.ts @@ -0,0 +1,12 @@ +import { paTaType } from './type'; +/** + * open接口 + */ +export type ReqOpen = { + + +}; + +export type ResOpen = { + mydata: paTaType +}; \ No newline at end of file diff --git a/src/shared/protocols/pata/PtlSaoDang.ts b/src/shared/protocols/pata/PtlSaoDang.ts new file mode 100644 index 0000000..1adf987 --- /dev/null +++ b/src/shared/protocols/pata/PtlSaoDang.ts @@ -0,0 +1,14 @@ +import { prizeType } from '../type'; +import { paTaType } from './type'; +/** + * 扫荡 + */ +export type ReqSaoDang = { + // 要扫荡的次数 + num: number +}; + +export type ResSaoDang = { + mydata: paTaType, + prize: prizeType[] +}; \ No newline at end of file diff --git a/src/shared/protocols/pata/type.ts b/src/shared/protocols/pata/type.ts new file mode 100644 index 0000000..91f8d80 --- /dev/null +++ b/src/shared/protocols/pata/type.ts @@ -0,0 +1,15 @@ + +export type paTaType = { + /**关卡 */ + lv: number; + /**已使用的挑战次数 */ + useNum: number; + /**上一次重置时间 */ + lastRefreshTime: number; + /**层数领取信息 */ + gotarr: number[]; + /**第一塔 */ + sid: number; + /**新增扫荡的次数 默认为0*/ + saodangNum?: number +}; \ No newline at end of file diff --git a/src/shared/protocols/pay/PtlGetList.ts b/src/shared/protocols/pay/PtlGetList.ts new file mode 100644 index 0000000..dbca3ad --- /dev/null +++ b/src/shared/protocols/pay/PtlGetList.ts @@ -0,0 +1,27 @@ +/** + * 获取充值记录列表 + */ +export type ReqGetList = {}; + +export type ResGetList = { + list: { + [payId: string]: payLog[]; + }; +}; + +export type payLog = { + /**购买时间 */ + time: number; + /**结束时间 */ + eTime?: number; + /** + * 购买发起者 + * @user 玩家购买 + * @system 系统赠送 + */ + type: 'user' | 'system' | 'legu'; + + /** G123 */ + popup_id?:string + buyNumber?:number +}; \ No newline at end of file diff --git a/src/shared/protocols/peijian/PtlGetList.ts b/src/shared/protocols/peijian/PtlGetList.ts new file mode 100644 index 0000000..b10f6f2 --- /dev/null +++ b/src/shared/protocols/peijian/PtlGetList.ts @@ -0,0 +1,30 @@ + +/** + * 获取配件列表 + */ +export type ReqGetList = { + +}; + +export type ResGetList = { + list: { + [_id: string]: PeiJian; + }; + /**配件获取的历史记录数量 */ + lshd: { + [peijianId: string]: number; + }; +}; + +export type PeiJian = { + /**等级 */ + lv: number; + /**唯一id */ + _id: string; + /**穿戴的干部_id */ + wearId: string; + /**精炼等级 */ + jinglian: number; + /**配件id */ + peijianId: string; +}; \ No newline at end of file diff --git a/src/shared/protocols/peijian/PtlJinJie.ts b/src/shared/protocols/peijian/PtlJinJie.ts new file mode 100644 index 0000000..32e5faa --- /dev/null +++ b/src/shared/protocols/peijian/PtlJinJie.ts @@ -0,0 +1,15 @@ + + + + +/** + * 配件进阶 + */ +export type ReqJinJie = { + /**配件唯一id */ + p_id: string; +}; + +export type ResJinJie = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/peijian/PtlJingLian.ts b/src/shared/protocols/peijian/PtlJingLian.ts new file mode 100644 index 0000000..368aa9c --- /dev/null +++ b/src/shared/protocols/peijian/PtlJingLian.ts @@ -0,0 +1,13 @@ + + +/** + * 配件精炼 + */ +export type ReqJingLian = { + /**配件唯一id */ + p_id: string; +}; + +export type ResJingLian = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/peijian/PtlLvUp.ts b/src/shared/protocols/peijian/PtlLvUp.ts new file mode 100644 index 0000000..faabd90 --- /dev/null +++ b/src/shared/protocols/peijian/PtlLvUp.ts @@ -0,0 +1,15 @@ + + +/** + * 配件升级 + */ +export type ReqLvUp = { + /**配件唯一id */ + p_id: string; + /**升级次数 */ + num: 1 | 5; +}; + +export type ResLvUp = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/peijian/PtlOneKeyLvUp.ts b/src/shared/protocols/peijian/PtlOneKeyLvUp.ts new file mode 100644 index 0000000..e35a294 --- /dev/null +++ b/src/shared/protocols/peijian/PtlOneKeyLvUp.ts @@ -0,0 +1,16 @@ + +/** + * 一键强化 + */ + +export type ReqOneKeyLvUp = { + /**英雄唯一id */ + heroId: string; +}; + +export type ResOneKeyLvUp = { + /**总升级多少次,任务计数用 */ + sjnum: number + posLvUp?: object + allNeed?: any +}; \ No newline at end of file diff --git a/src/shared/protocols/peijian/PtlOneKeyWear.ts b/src/shared/protocols/peijian/PtlOneKeyWear.ts new file mode 100644 index 0000000..84c364a --- /dev/null +++ b/src/shared/protocols/peijian/PtlOneKeyWear.ts @@ -0,0 +1,11 @@ +/** + * 配件一件穿戴 + */ +export interface ReqOneKeyWear { + /**干部唯一id */ + h_id: string; +} + +export interface ResOneKeyWear { + +} diff --git a/src/shared/protocols/peijian/PtlReset.ts b/src/shared/protocols/peijian/PtlReset.ts new file mode 100644 index 0000000..f5aa975 --- /dev/null +++ b/src/shared/protocols/peijian/PtlReset.ts @@ -0,0 +1,14 @@ +import { prizeType } from '../type'; + + +/** + * 初始化配件 + */ +export type ReqReset = { + /**配件唯一id */ + p_ids: string[]; +}; + +export type ResReset = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/peijian/PtlRm.ts b/src/shared/protocols/peijian/PtlRm.ts new file mode 100644 index 0000000..ecc5754 --- /dev/null +++ b/src/shared/protocols/peijian/PtlRm.ts @@ -0,0 +1,14 @@ +import { prizeType } from '../type'; + + +/** + * 拆解配件 + */ +export type ReqRm = { + /**配件唯一id */ + p_ids: string[]; +}; + +export type ResRm = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/peijian/PtlTakeOff.ts b/src/shared/protocols/peijian/PtlTakeOff.ts new file mode 100644 index 0000000..da68d4c --- /dev/null +++ b/src/shared/protocols/peijian/PtlTakeOff.ts @@ -0,0 +1,17 @@ + + +/** + * 配件卸下 + */ +export type ReqTakeOff = { + /**配件唯一id */ + p_id: string; +}; + +export type ResTakeOff = { + +}; + +export const conf = { + timeIntervalLimit: 0 +}; \ No newline at end of file diff --git a/src/shared/protocols/peijian/PtlUnLock.ts b/src/shared/protocols/peijian/PtlUnLock.ts new file mode 100644 index 0000000..415ef8f --- /dev/null +++ b/src/shared/protocols/peijian/PtlUnLock.ts @@ -0,0 +1,13 @@ + + +/** + * 解锁干部配件栏位 + */ +export type ReqUnLock = { + h_id: string; + pos: string; +}; + +export type ResUnLock = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/peijian/PtlWear.ts b/src/shared/protocols/peijian/PtlWear.ts new file mode 100644 index 0000000..122a17e --- /dev/null +++ b/src/shared/protocols/peijian/PtlWear.ts @@ -0,0 +1,17 @@ + + +/** + * 配件穿戴 + */ +export type ReqWear = { + /**干部唯一id */ + h_id: string; + /**配件唯一id */ + p_id: string; + /**穿戴位置 */ + pos: string; +}; + +export type ResWear = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/peijiancangku/PtlDeal.ts b/src/shared/protocols/peijiancangku/PtlDeal.ts new file mode 100644 index 0000000..c0a002f --- /dev/null +++ b/src/shared/protocols/peijiancangku/PtlDeal.ts @@ -0,0 +1,15 @@ +import { prizeType } from '../type'; + + +/** + * 交易 + */ +export type ReqDeal = { + num: 1 | 10; +}; + +export type ResDeal = { + prize: prizeType[]; + index: number; + indexs: number[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/peijiancangku/PtlJump.ts b/src/shared/protocols/peijiancangku/PtlJump.ts new file mode 100644 index 0000000..941227f --- /dev/null +++ b/src/shared/protocols/peijiancangku/PtlJump.ts @@ -0,0 +1,12 @@ + + +/** + * 指定高级仓库 + */ +export type ReqJump = { + +}; + +export type ResJump = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/peijiancangku/PtlOpen.ts b/src/shared/protocols/peijiancangku/PtlOpen.ts new file mode 100644 index 0000000..0c89c2e --- /dev/null +++ b/src/shared/protocols/peijiancangku/PtlOpen.ts @@ -0,0 +1,12 @@ + + +/** + * 进入配件仓库 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + index: number; +}; \ No newline at end of file diff --git a/src/shared/protocols/qjzzd/PtlFight.ts b/src/shared/protocols/qjzzd/PtlFight.ts new file mode 100644 index 0000000..3aad339 --- /dev/null +++ b/src/shared/protocols/qjzzd/PtlFight.ts @@ -0,0 +1,16 @@ +import { fightResult } from '../../fightControl/fightType'; +import { prizeType } from '../type'; +import { ResOpen } from './PtlOpen'; + +/** + * 清剿真主党挑战 + */ +export type ReqFight = { + +}; + +export type ResFight = { + result: fightResult; + change: Partial; + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/qjzzd/PtlOpen.ts b/src/shared/protocols/qjzzd/PtlOpen.ts new file mode 100644 index 0000000..d3163ec --- /dev/null +++ b/src/shared/protocols/qjzzd/PtlOpen.ts @@ -0,0 +1,15 @@ + + +/** + * 进入清剿真主党 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + boss: string; + refreshTime: number; + useFightNum: number; + maxDps: number; +}; \ No newline at end of file diff --git a/src/shared/protocols/rank/PtlOpen.ts b/src/shared/protocols/rank/PtlOpen.ts new file mode 100644 index 0000000..cdaa8e5 --- /dev/null +++ b/src/shared/protocols/rank/PtlOpen.ts @@ -0,0 +1,18 @@ +import { rankInfo } from '../type'; + +/** + * 排行榜 + */ +export type ReqOpen = Array; + +export type ResOpen = { + [type: string]: { + rankList: rankInfo[]; + myRank: rankInfo; + }; +}; + +export type rankType = 'jjc' | 'tanxian' | 'zhanli' | 'qjzzd' | 'hbzbLocal' | 'hbzbCross' | 'hbzbZbsCross' + | 'slzd1' | 'slzd2' | 'slzd3' | 'slzd4' | 'slzd5' | 'slzd6' + | 'kbzz' | 'xszm' | 'clslCross' + | 'zccg' | 'gbzl' | 'tujian' | 'wzryCross'; \ No newline at end of file diff --git a/src/shared/protocols/serviceProto.ts b/src/shared/protocols/serviceProto.ts new file mode 100644 index 0000000..648f80b --- /dev/null +++ b/src/shared/protocols/serviceProto.ts @@ -0,0 +1,23706 @@ +import { ServiceProto } from 'tsrpc-proto'; +import { ReqDelPrivate, ResDelPrivate } from './chat/PtlDelPrivate'; +import { ReqGetList, ResGetList } from './chat/PtlGetList'; +import { ReqHelp, ResHelp } from './chat/PtlHelp'; +import { ReqPrivate, ResPrivate } from './chat/PtlPrivate'; +import { ReqSend, ResSend } from './chat/PtlSend'; +import { ReqBuyGift, ResBuyGift } from './chongzhi/PtlBuyGift'; +import { ReqOpen, ResOpen } from './chongzhi/PtlOpen'; +import { ReqBuyNum, ResBuyNum } from './conglinshoulie/PtlBuyNum'; +import { ReqFind, ResFind } from './conglinshoulie/PtlFind'; +import { ReqGetLog, ResGetLog } from './conglinshoulie/PtlGetLog'; +import { ReqOpen as ReqOpen_1, ResOpen as ResOpen_1 } from './conglinshoulie/PtlOpen'; +import { ReqRec, ResRec } from './conglinshoulie/PtlRec'; +import { ReqOpen as ReqOpen_2, ResOpen as ResOpen_2 } from './dixiaheishi/PtlOpen'; +import { ReqBuy, ResBuy } from './dixialeitai/PtlBuy'; +import { ReqFight, ResFight } from './dixialeitai/PtlFight'; +import { ReqNext, ResNext } from './dixialeitai/PtlNext'; +import { ReqOpen as ReqOpen_3, ResOpen as ResOpen_3 } from './dixialeitai/PtlOpen'; +import { ReqRecMiBao, ResRecMiBao } from './dixialeitai/PtlRecMiBao'; +import { ReqRecPrize, ResRecPrize } from './dixialeitai/PtlRecPrize'; +import { ReqSetDef, ResSetDef } from './dixialeitai/PtlSetDef'; +import { ReqUseItem, ResUseItem } from './dixialeitai/PtlUseItem'; +import { ReqOpen as ReqOpen_4, ResOpen as ResOpen_4 } from './dixiaqianzhuang/PtlOpen'; +import { ReqQf, ResQf } from './dixiaqianzhuang/PtlQf'; +import { ReqAllReceive, ResAllReceive } from './email/PtlAllReceive'; +import { ReqAllRemove, ResAllRemove } from './email/PtlAllRemove'; +import { ReqOpen as ReqOpen_5, ResOpen as ResOpen_5 } from './email/PtlOpen'; +import { ReqRead, ResRead } from './email/PtlRead'; +import { ReqReceive, ResReceive } from './email/PtlReceive'; +import { ReqRemove, ResRemove } from './email/PtlRemove'; +import { ReqAdjustment, ResAdjustment } from './equip/PtlAdjustment'; +import { ReqGetList as ReqGetList_1, ResGetList as ResGetList_1 } from './equip/PtlGetList'; +import { ReqLvUp, ResLvUp } from './equip/PtlLvUp'; +import { ReqOneKeyLvUp, ResOneKeyLvUp } from './equip/PtlOneKeyLvUp'; +import { ReqOneKeyTakeOff, ResOneKeyTakeOff } from './equip/PtlOneKeyTakeOff'; +import { ReqOneKeyWear, ResOneKeyWear } from './equip/PtlOneKeyWear'; +import { ReqReset, ResReset } from './equip/PtlReset'; +import { ReqStarUp, ResStarUp } from './equip/PtlStarUp'; +import { ReqTakeOff, ResTakeOff } from './equip/PtlTakeOff'; +import { ReqWear, ResWear } from './equip/PtlWear'; +import { ReqOpen as ReqOpen_6, ResOpen as ResOpen_6 } from './event/136Gift/PtlOpen'; +import { ReqRec as ReqRec_1, ResRec as ResRec_1 } from './event/136Gift/PtlRec'; +import { ReqOpen as ReqOpen_7, ResOpen as ResOpen_7 } from './event/chuanshuozhilu/PtlOpen'; +import { ReqRec as ReqRec_2, ResRec as ResRec_2 } from './event/chuanshuozhilu/PtlRec'; +import { ReqGet, ResGet } from './event/diaoluoduihuan/PtlGet'; +import { ReqOpen as ReqOpen_8, ResOpen as ResOpen_8 } from './event/diaoluoduihuan/PtlOpen'; +import { ReqOpen as ReqOpen_9, ResOpen as ResOpen_9 } from './event/huobanzhaomu/PtlOpen'; +import { ReqRec as ReqRec_3, ResRec as ResRec_3 } from './event/huobanzhaomu/PtlRec'; +import { ReqGet as ReqGet_1, ResGet as ResGet_1 } from './event/jierihuodong/PtlGet'; +import { ReqOpen as ReqOpen_10, ResOpen as ResOpen_10 } from './event/jierihuodong/PtlOpen'; +import { ReqRec as ReqRec_4, ResRec as ResRec_4 } from './event/jierihuodong/PtlRec'; +import { ReqCheckOpen, ResCheckOpen } from './event/jijin/PtlCheckOpen'; +import { ReqOpen as ReqOpen_11, ResOpen as ResOpen_11 } from './event/jijin/PtlOpen'; +import { ReqReceive as ReqReceive_1, ResReceive as ResReceive_1 } from './event/jijin/PtlReceive'; +import { ReqLoginPrize, ResLoginPrize } from './event/kaifukuanghuan/PtlLoginPrize'; +import { ReqOpen as ReqOpen_12, ResOpen as ResOpen_12 } from './event/kaifukuanghuan/PtlOpen'; +import { ReqShopBuy, ResShopBuy } from './event/kaifukuanghuan/PtlShopBuy'; +import { ReqTaskBox, ResTaskBox } from './event/kaifukuanghuan/PtlTaskBox'; +import { ReqTaskPrize, ResTaskPrize } from './event/kaifukuanghuan/PtlTaskPrize'; +import { ReqOpen as ReqOpen_13, ResOpen as ResOpen_13 } from './event/leijichongzhi/PtlOpen'; +import { ReqRec as ReqRec_5, ResRec as ResRec_5 } from './event/leijichongzhi/PtlRec'; +import { ReqLottery, ResLottery } from './event/niudanji/PtlLottery'; +import { ReqOpen as ReqOpen_14, ResOpen as ResOpen_14 } from './event/niudanji/PtlOpen'; +import { ReqOpen as ReqOpen_15, ResOpen as ResOpen_15 } from './event/qirichongzhi/PtlOpen'; +import { ReqRec as ReqRec_6, ResRec as ResRec_6 } from './event/qirichongzhi/PtlRec'; +import { ReqOpen as ReqOpen_16, ResOpen as ResOpen_16 } from './event/qiridenglu/PtlOpen'; +import { ReqRecPrize as ReqRecPrize_1, ResRecPrize as ResRecPrize_1 } from './event/qiridenglu/PtlRecPrize'; +import { ReqOpen as ReqOpen_17, ResOpen as ResOpen_17 } from './event/shiwuleichong/PtlOpen'; +import { ReqRec as ReqRec_7, ResRec as ResRec_7 } from './event/shiwuleichong/PtlRec'; +import { ReqOpen as ReqOpen_18, ResOpen as ResOpen_18 } from './event/shouchong/PtlOpen'; +import { ReqReceive as ReqReceive_2, ResReceive as ResReceive_2 } from './event/shouchong/PtlReceive'; +import { ReqBuy as ReqBuy_1, ResBuy as ResBuy_1 } from './event/xianshizhaomu/PtlBuy'; +import { ReqDuihuan, ResDuihuan } from './event/xianshizhaomu/PtlDuihuan'; +import { ReqLottery as ReqLottery_1, ResLottery as ResLottery_1 } from './event/xianshizhaomu/PtlLottery'; +import { ReqOpen as ReqOpen_19, ResOpen as ResOpen_19 } from './event/xianshizhaomu/PtlOpen'; +import { ReqRec as ReqRec_8, ResRec as ResRec_8 } from './event/xianshizhaomu/PtlRec'; +import { ReqOpen as ReqOpen_20, ResOpen as ResOpen_20 } from './event/xinshoulibao/PtlOpen'; +import { ReqBuy as ReqBuy_2, ResBuy as ResBuy_2 } from './event/yangchengmubiao/PtlBuy'; +import { ReqOpen as ReqOpen_21, ResOpen as ResOpen_21 } from './event/yangchengmubiao/PtlOpen'; +import { ReqRec as ReqRec_9, ResRec as ResRec_9 } from './event/yangchengmubiao/PtlRec'; +import { ReqOpen as ReqOpen_22, ResOpen as ResOpen_22 } from './event/yibaichou/PtlOpen'; +import { ReqRec as ReqRec_10, ResRec as ResRec_10 } from './event/yibaichou/PtlRec'; +import { ReqRecAll, ResRecAll } from './event/yibaichou/PtlRecAll'; +import { ReqOpen as ReqOpen_23, ResOpen as ResOpen_23 } from './event/yuedujijin/PtlOpen'; +import { ReqRec as ReqRec_11, ResRec as ResRec_11 } from './event/yuedujijin/PtlRec'; +import { ReqBuyLv, ResBuyLv } from './event/zhanling/PtlBuyLv'; +import { ReqOpen as ReqOpen_24, ResOpen as ResOpen_24 } from './event/zhanling/PtlOpen'; +import { ReqRecPrize as ReqRecPrize_2, ResRecPrize as ResRecPrize_2 } from './event/zhanling/PtlRecPrize'; +import { ReqRecTask, ResRecTask } from './event/zhanling/PtlRecTask'; +import { ReqOpen as ReqOpen_25, ResOpen as ResOpen_25 } from './event/zhoulibao/PtlOpen'; +import { ReqBuy as ReqBuy_3, ResBuy as ResBuy_3 } from './event/zixuanlibao/PtlBuy'; +import { ReqOpen as ReqOpen_26, ResOpen as ResOpen_26 } from './event/zixuanlibao/PtlOpen'; +import { ReqhdGetList, ReshdGetList } from './eventlist/PtlhdGetList'; +import { ReqApply, ResApply } from './friend/PtlApply'; +import { ReqDel, ResDel } from './friend/PtlDel'; +import { ReqGift, ResGift } from './friend/PtlGift'; +import { ReqList, ResList } from './friend/PtlList'; +import { ReqOpen as ReqOpen_27, ResOpen as ResOpen_27 } from './friend/PtlOpen'; +import { ReqRespond, ResRespond } from './friend/PtlRespond'; +import { ReqRmBlackList, ResRmBlackList } from './friend/PtlRmBlackList'; +import { ReqSearch, ResSearch } from './friend/PtlSearch'; +import { ReqChallenge, ResChallenge } from './ganbutexun/PtlChallenge'; +import { ReqOpen as ReqOpen_28, ResOpen as ResOpen_28 } from './ganbutexun/PtlOpen'; +import { ReqFast, ResFast } from './ganhai/PtlFast'; +import { ReqFight as ReqFight_1, ResFight as ResFight_1 } from './ganhai/PtlFight'; +import { ReqLog, ResLog } from './ganhai/PtlLog'; +import { ReqOpen as ReqOpen_29, ResOpen as ResOpen_29 } from './ganhai/PtlOpen'; +import { ReqRefresh, ResRefresh } from './ganhai/PtlRefresh'; +import { ReqRefreshShip, ResRefreshShip } from './ganhai/PtlRefreshShip'; +import { ReqSelect, ResSelect } from './ganhai/PtlSelect'; +import { ReqApply as ReqApply_1, ResApply as ResApply_1 } from './gonghui/PtlApply'; +import { ReqApplyAll, ResApplyAll } from './gonghui/PtlApplyAll'; +import { ReqApplyList, ResApplyList } from './gonghui/PtlApplyList'; +import { ReqChange, ResChange } from './gonghui/PtlChange'; +import { ReqCreate, ResCreate } from './gonghui/PtlCreate'; +import { ReqDissolve, ResDissolve } from './gonghui/PtlDissolve'; +import { ReqExit, ResExit } from './gonghui/PtlExit'; +import { ReqFbBuyNum, ResFbBuyNum } from './gonghui/PtlFbBuyNum'; +import { ReqFbFight, ResFbFight } from './gonghui/PtlFbFight'; +import { ReqFbOpen, ResFbOpen } from './gonghui/PtlFbOpen'; +import { ReqGetList as ReqGetList_2, ResGetList as ResGetList_2 } from './gonghui/PtlGetList'; +import { ReqJoin, ResJoin } from './gonghui/PtlJoin'; +import { ReqJx, ResJx } from './gonghui/PtlJx'; +import { ReqJxOpen, ResJxOpen } from './gonghui/PtlJxOpen'; +import { ReqList as ReqList_1, ResList as ResList_1 } from './gonghui/PtlList'; +import { ReqManage, ResManage } from './gonghui/PtlManage'; +import { ReqOpen as ReqOpen_30, ResOpen as ResOpen_30 } from './gonghui/PtlOpen'; +import { ReqTanHe, ResTanHe } from './gonghui/PtlTanHe'; +import { ReqTaskOpen, ResTaskOpen } from './gonghui/PtlTaskOpen'; +import { ReqTaskReceive, ResTaskReceive } from './gonghui/PtlTaskReceive'; +import { ReqUpWz, ResUpWz } from './gonghui/PtlUpWz'; +import { ReqLottery as ReqLottery_2, ResLottery as ResLottery_2 } from './gonghuibaozang/PtlLottery'; +import { ReqOpen as ReqOpen_31, ResOpen as ResOpen_31 } from './gonghuibaozang/PtlOpen'; +import { ReqBuy as ReqBuy_4, ResBuy as ResBuy_4 } from './gonglukuangbiao/PtlBuy'; +import { ReqFight as ReqFight_2, ResFight as ResFight_2 } from './gonglukuangbiao/PtlFight'; +import { ReqOpen as ReqOpen_32, ResOpen as ResOpen_32 } from './gonglukuangbiao/PtlOpen'; +import { ReqRefresh as ReqRefresh_1, ResRefresh as ResRefresh_1 } from './gonglukuangbiao/PtlRefresh'; +import { ReqActive, ResActive } from './gongyu/mingdao/PtlActive'; +import { ReqOpen as ReqOpen_33, ResOpen as ResOpen_33 } from './gongyu/mingdao/PtlOpen'; +import { ReqRecPrize as ReqRecPrize_3, ResRecPrize as ResRecPrize_3 } from './gongyu/mingdao/PtlRecPrize'; +import { ReqRepair, ResRepair } from './gongyu/mingdao/PtlRepair'; +import { ReqReset as ReqReset_1, ResReset as ResReset_1 } from './gongyu/xunlianjihua/PtlReset'; +import { ReqUpSkill, ResUpSkill } from './gongyu/xunlianjihua/PtlUpSkill'; +import { ReqSetSkill, ResSetSkill } from './gongyu/zuozhanjihua/PtlSetSkill'; +import { ReqBuyNum as ReqBuyNum_1, ResBuyNum as ResBuyNum_1 } from './hbzb/jfs/PtlBuyNum'; +import { ReqFight as ReqFight_3, ResFight as ResFight_3 } from './hbzb/jfs/PtlFight'; +import { ReqGetLog as ReqGetLog_1, ResGetLog as ResGetLog_1 } from './hbzb/jfs/PtlGetLog'; +import { ReqOpen as ReqOpen_34, ResOpen as ResOpen_34 } from './hbzb/jfs/PtlOpen'; +import { ReqRec as ReqRec_12, ResRec as ResRec_12 } from './hbzb/jfs/PtlRec'; +import { ReqRefresh as ReqRefresh_2, ResRefresh as ResRefresh_2 } from './hbzb/jfs/PtlRefresh'; +import { ReqBuyNum as ReqBuyNum_2, ResBuyNum as ResBuyNum_2 } from './hbzb/zbs/PtlBuyNum'; +import { ReqFight as ReqFight_4, ResFight as ResFight_4 } from './hbzb/zbs/PtlFight'; +import { ReqGetLog as ReqGetLog_2, ResGetLog as ResGetLog_2 } from './hbzb/zbs/PtlGetLog'; +import { ReqOpen as ReqOpen_35, ResOpen as ResOpen_35 } from './hbzb/zbs/PtlOpen'; +import { ReqRefresh as ReqRefresh_3, ResRefresh as ResRefresh_3 } from './hbzb/zbs/PtlRefresh'; +import { ReqAwake, ResAwake } from './hero/PtlAwake'; +import { ReqChangePos, ResChangePos } from './hero/PtlChangePos'; +import { ReqGetList as ReqGetList_3, ResGetList as ResGetList_3 } from './hero/PtlGetList'; +import { ReqJinJie, ResJinJie } from './hero/PtlJinJie'; +import { ReqLvUp as ReqLvUp_1, ResLvUp as ResLvUp_1 } from './hero/PtlLvUp'; +import { ReqPotency, ResPotency } from './hero/PtlPotency'; +import { ReqRec as ReqRec_13, ResRec as ResRec_13 } from './hero/PtlRec'; +import { ReqReset as ReqReset_2, ResReset as ResReset_2 } from './hero/PtlReset'; +import { ReqTalent, ResTalent } from './hero/PtlTalent'; +import { ReqWeaponUp, ResWeaponUp } from './hero/PtlWeaponUp'; +import { ReqGet as ReqGet_2, ResGet as ResGet_2 } from './hongdian/PtlGet'; +import { ReqGetList as ReqGetList_4, ResGetList as ResGetList_4 } from './item/PtlGetList'; +import { ReqUse, ResUse } from './item/PtlUse'; +import { ReqLottery as ReqLottery_3, ResLottery as ResLottery_3 } from './jiaotang/PtlLottery'; +import { ReqOpen as ReqOpen_36, ResOpen as ResOpen_36 } from './jiaotang/PtlOpen'; +import { ReqLottery as ReqLottery_4, ResLottery as ResLottery_4 } from './jiuba/PtlLottery'; +import { ReqOpen as ReqOpen_37, ResOpen as ResOpen_37 } from './jiuba/PtlOpen'; +import { ReqBuyFightNum, ResBuyFightNum } from './jjc/PtlBuyFightNum'; +import { ReqFight as ReqFight_5, ResFight as ResFight_5 } from './jjc/PtlFight'; +import { ReqFightLog, ResFightLog } from './jjc/PtlFightLog'; +import { ReqOpen as ReqOpen_38, ResOpen as ResOpen_38 } from './jjc/PtlOpen'; +import { ReqReceive as ReqReceive_3, ResReceive as ResReceive_3 } from './jjc/PtlReceive'; +import { ReqRefresh as ReqRefresh_4, ResRefresh as ResRefresh_4 } from './jjc/PtlRefresh'; +import { ReqApply as ReqApply_2, ResApply as ResApply_2 } from './kbzz/PtlApply'; +import { ReqAutoApply, ResAutoApply } from './kbzz/PtlAutoApply'; +import { ReqBuyNum as ReqBuyNum_3, ResBuyNum as ResBuyNum_3 } from './kbzz/PtlBuyNum'; +import { ReqFight as ReqFight_6, ResFight as ResFight_6 } from './kbzz/PtlFight'; +import { ReqFightLog as ReqFightLog_1, ResFightLog as ResFightLog_1 } from './kbzz/PtlFightLog'; +import { ReqGroupState, ResGroupState } from './kbzz/PtlGroupState'; +import { ReqOpen as ReqOpen_39, ResOpen as ResOpen_39 } from './kbzz/PtlOpen'; +import { ReqRecPrize as ReqRecPrize_4, ResRecPrize as ResRecPrize_4 } from './kbzz/PtlRecPrize'; +import { ReqRefresh as ReqRefresh_5, ResRefresh as ResRefresh_5 } from './kbzz/PtlRefresh'; +import { ReqAddPkNum, ResAddPkNum } from './kuangdong/PtlAddPkNum'; +import { ReqGetPrize, ResGetPrize } from './kuangdong/PtlGetPrize'; +import { ReqKdInfo, ResKdInfo } from './kuangdong/PtlKdInfo'; +import { ReqLog as ReqLog_1, ResLog as ResLog_1 } from './kuangdong/PtlLog'; +import { ReqOpen as ReqOpen_40, ResOpen as ResOpen_40 } from './kuangdong/PtlOpen'; +import { ReqYanShi, ResYanShi } from './kuangdong/PtlYanShi'; +import { ReqZhanLing, ResZhanLing } from './kuangdong/PtlZhanLing'; +import { ReqOpen as ReqOpen_41, ResOpen as ResOpen_41 } from './lingzhulaixi/PtlOpen'; +import { ReqPkBoss, ResPkBoss } from './lingzhulaixi/PtlPkBoss'; +import { ReqPkRank, ResPkRank } from './lingzhulaixi/PtlPkRank'; +import { ReqSaoDang, ResSaoDang } from './lingzhulaixi/PtlSaoDang'; +import { ReqBuy as ReqBuy_5, ResBuy as ResBuy_5 } from './meirishilian/PtlBuy'; +import { ReqFight as ReqFight_7, ResFight as ResFight_7 } from './meirishilian/PtlFight'; +import { ReqOpen as ReqOpen_42, ResOpen as ResOpen_42 } from './meirishilian/PtlOpen'; +import { MsgBindUid } from './msg_c2s/MsgBindUid'; +import { MsgPay } from './msg_c2s/MsgPay'; +import { MsgSync } from './msg_c2s/MsgSync'; +import { MsgChat } from './msg_s2c/MsgChat'; +import { MsgChatHelp } from './msg_s2c/MsgChatHelp'; +import { MsgCollection } from './msg_s2c/MsgCollection'; +import { MsgEmail } from './msg_s2c/MsgEmail'; +import { MsgEmailDel } from './msg_s2c/MsgEmailDel'; +import { MsgEquipChange } from './msg_s2c/MsgEquipChange'; +import { MsgFriend } from './msg_s2c/MsgFriend'; +import { MsgGhChange } from './msg_s2c/MsgGhChange'; +import { MsgGongHuiBaoZang } from './msg_s2c/MsgGongHuiBaoZang'; +import { MsgHeroChange } from './msg_s2c/MsgHeroChange'; +import { MsgHongDianChange } from './msg_s2c/MsgHongDianChange'; +import { MsgItemChange } from './msg_s2c/MsgItemChange'; +import { MsgLoginQueue } from './msg_s2c/MsgLoginQueue'; +import { MsgLshdChange } from './msg_s2c/MsgLshdChange'; +import { MsgNewDay } from './msg_s2c/MsgNewDay'; +import { MsgOtherLogin } from './msg_s2c/MsgOtherLogin'; +import { MsgPayChange } from './msg_s2c/MsgPayChange'; +import { MsgPayResult } from './msg_s2c/MsgPayResult'; +import { MsgPeijianChange } from './msg_s2c/MsgPeijianChange'; +import { MsgPlayerChange } from './msg_s2c/MsgPlayerChange'; +import { MsgPrivate } from './msg_s2c/MsgPrivate'; +import { MsgSendGift } from './msg_s2c/MsgSendGift'; +import { MsgShiwuChange } from './msg_s2c/MsgShiwuChange'; +import { MsgTaskChange } from './msg_s2c/MsgTaskChange'; +import { MsgXianshilibao } from './msg_s2c/MsgXianshilibao'; +import { ReqFight as ReqFight_8, ResFight as ResFight_8 } from './pata/PtlFight'; +import { ReqGetPrize as ReqGetPrize_1, ResGetPrize as ResGetPrize_1 } from './pata/PtlGetPrize'; +import { ReqOpen as ReqOpen_43, ResOpen as ResOpen_43 } from './pata/PtlOpen'; +import { ReqSaoDang as ReqSaoDang_1, ResSaoDang as ResSaoDang_1 } from './pata/PtlSaoDang'; +import { ReqGetList as ReqGetList_5, ResGetList as ResGetList_5 } from './pay/PtlGetList'; +import { ReqGetList as ReqGetList_6, ResGetList as ResGetList_6 } from './peijian/PtlGetList'; +import { ReqJingLian, ResJingLian } from './peijian/PtlJingLian'; +import { ReqJinJie as ReqJinJie_1, ResJinJie as ResJinJie_1 } from './peijian/PtlJinJie'; +import { ReqLvUp as ReqLvUp_2, ResLvUp as ResLvUp_2 } from './peijian/PtlLvUp'; +import { ReqOneKeyLvUp as ReqOneKeyLvUp_1, ResOneKeyLvUp as ResOneKeyLvUp_1 } from './peijian/PtlOneKeyLvUp'; +import { ReqOneKeyWear as ReqOneKeyWear_1, ResOneKeyWear as ResOneKeyWear_1 } from './peijian/PtlOneKeyWear'; +import { ReqReset as ReqReset_3, ResReset as ResReset_3 } from './peijian/PtlReset'; +import { ReqRm, ResRm } from './peijian/PtlRm'; +import { ReqTakeOff as ReqTakeOff_1, ResTakeOff as ResTakeOff_1 } from './peijian/PtlTakeOff'; +import { ReqUnLock, ResUnLock } from './peijian/PtlUnLock'; +import { ReqWear as ReqWear_1, ResWear as ResWear_1 } from './peijian/PtlWear'; +import { ReqDeal, ResDeal } from './peijiancangku/PtlDeal'; +import { ReqJump, ResJump } from './peijiancangku/PtlJump'; +import { ReqOpen as ReqOpen_44, ResOpen as ResOpen_44 } from './peijiancangku/PtlOpen'; +import { ReqBingo, ResBingo } from './PtlBingo'; +import { ReqFightTest, ResFightTest } from './PtlFightTest'; +import { ReqSyncBtn, ResSyncBtn } from './PtlSyncBtn'; +import { ReqTest, ResTest } from './PtlTest'; +import { ReqFight as ReqFight_9, ResFight as ResFight_9 } from './qjzzd/PtlFight'; +import { ReqOpen as ReqOpen_45, ResOpen as ResOpen_45 } from './qjzzd/PtlOpen'; +import { ReqOpen as ReqOpen_46, ResOpen as ResOpen_46 } from './rank/PtlOpen'; +import { ReqConcise, ResConcise } from './shiwu/PtlConcise'; +import { ReqExtract, ResExtract } from './shiwu/PtlExtract'; +import { ReqGetList as ReqGetList_7, ResGetList as ResGetList_7 } from './shiwu/PtlGetList'; +import { ReqLvUp as ReqLvUp_3, ResLvUp as ResLvUp_3 } from './shiwu/PtlLvUp'; +import { ReqRecast, ResRecast } from './shiwu/PtlRecast'; +import { ReqTakeOff as ReqTakeOff_2, ResTakeOff as ResTakeOff_2 } from './shiwu/PtlTakeOff'; +import { ReqWear as ReqWear_2, ResWear as ResWear_2 } from './shiwu/PtlWear'; +import { ReqOpen as ReqOpen_47, ResOpen as ResOpen_47 } from './shootGame/PtlOpen'; +import { ReqRec as ReqRec_14, ResRec as ResRec_14 } from './shootGame/PtlRec'; +import { ReqBuy as ReqBuy_6, ResBuy as ResBuy_6 } from './shop/PtlBuy'; +import { ReqOpen as ReqOpen_48, ResOpen as ResOpen_48 } from './shop/PtlOpen'; +import { ReqRefresh as ReqRefresh_6, ResRefresh as ResRefresh_6 } from './shop/PtlRefresh'; +import { ReqGetBoxPrize, ResGetBoxPrize } from './sign/PtlGetBoxPrize'; +import { ReqGetPrize as ReqGetPrize_2, ResGetPrize as ResGetPrize_2 } from './sign/PtlGetPrize'; +import { ReqOpen as ReqOpen_49, ResOpen as ResOpen_49 } from './sign/PtlOpen'; +import { ReqAim, ResAim } from './slzd/PtlAim'; +import { ReqBuyNum as ReqBuyNum_4, ResBuyNum as ResBuyNum_4 } from './slzd/PtlBuyNum'; +import { ReqFight as ReqFight_10, ResFight as ResFight_10 } from './slzd/PtlFight'; +import { ReqFightLog as ReqFightLog_2, ResFightLog as ResFightLog_2 } from './slzd/PtlFightLog'; +import { ReqMyRank, ResMyRank } from './slzd/PtlMyRank'; +import { ReqOpen as ReqOpen_50, ResOpen as ResOpen_50 } from './slzd/PtlOpen'; +import { ReqOpenFort, ResOpenFort } from './slzd/PtlOpenFort'; +import { ReqRec as ReqRec_15, ResRec as ResRec_15 } from './slzd/PtlRec'; +import { ReqRefresh as ReqRefresh_7, ResRefresh as ResRefresh_7 } from './slzd/PtlRefresh'; +import { ReqSlot, ResSlot } from './slzd/PtlSlot'; +import { ReqEvent, ResEvent } from './tanxian/PtlEvent'; +import { ReqFastGuaJi, ResFastGuaJi } from './tanxian/PtlFastGuaJi'; +import { ReqFight as ReqFight_11, ResFight as ResFight_11 } from './tanxian/PtlFight'; +import { ReqGuaJi, ResGuaJi } from './tanxian/PtlGuaJi'; +import { ReqOpen as ReqOpen_51, ResOpen as ResOpen_51 } from './tanxian/PtlOpen'; +import { ReqReceive as ReqReceive_4, ResReceive as ResReceive_4 } from './tanxian/PtlReceive'; +import { ReqAllFinsh, ResAllFinsh } from './task/PtlAllFinsh'; +import { ReqFinsh, ResFinsh } from './task/PtlFinsh'; +import { ReqOpen as ReqOpen_52, ResOpen as ResOpen_52 } from './task/PtlOpen'; +import { ReqCDKEY, ResCDKEY } from './user/PtlCDKEY'; +import { ReqChangeInfo, ResChangeInfo } from './user/PtlChangeInfo'; +import { ReqChangeName, ResChangeName } from './user/PtlChangeName'; +import { ReqFight as ReqFight_12, ResFight as ResFight_12 } from './user/PtlFight'; +import { ReqGetInfo, ResGetInfo } from './user/PtlGetInfo'; +import { ReqInfoOpen, ResInfoOpen } from './user/PtlInfoOpen'; +import { ReqLogin, ResLogin } from './user/PtlLogin'; +import { ReqPing, ResPing } from './user/PtlPing'; +import { ReqRenown, ResRenown } from './user/PtlRenown'; +import { ReqRenownBuy, ResRenownBuy } from './user/PtlRenownBuy'; +import { ReqRenownGetPrize, ResRenownGetPrize } from './user/PtlRenownGetPrize'; +import { ReqRenownOpen, ResRenownOpen } from './user/PtlRenownOpen'; +import { ReqTujian, ResTujian } from './user/PtlTujian'; +import { ReqDazao, ResDazao } from './weixiuchang/PtlDazao'; +import { ReqZuzhuang, ResZuzhuang } from './weixiuchang/PtlZuzhuang'; +import { ReqAutoBaoMing, ResAutoBaoMing } from './wzry/PtlAutoBaoMing'; +import { ReqBaoMing, ResBaoMing } from './wzry/PtlBaoMing'; +import { ReqcatFightLog, RescatFightLog } from './wzry/PtlcatFightLog'; +import { ReqCatGroup, ResCatGroup } from './wzry/PtlCatGroup'; +import { ReqDldFight, ResDldFight } from './wzry/PtlDldFight'; +import { ReqDldRefre, ResDldRefre } from './wzry/PtlDldRefre'; +import { ReqJingCai, ResJingCai } from './wzry/PtlJingCai'; +import { ReqJingCaiOpen, ResJingCaiOpen } from './wzry/PtlJingCaiOpen'; +import { ReqOpen as ReqOpen_53, ResOpen as ResOpen_53 } from './wzry/PtlOpen'; +import { ReqUpdateFight, ResUpdateFight } from './wzry/PtlUpdateFight'; +import { ReqWzzd, ResWzzd } from './wzry/PtlWzzd'; +import { ReqZuanShiOpen, ResZuanShiOpen } from './wzry/PtlZuanShiOpen'; +import { ReqAllGet, ResAllGet } from './xstask/PtlAllGet'; +import { ReqGet as ReqGet_3, ResGet as ResGet_3 } from './xstask/PtlGet'; +import { ReqLvUp as ReqLvUp_4, ResLvUp as ResLvUp_4 } from './xstask/PtlLvUp'; +import { ReqOnekeyReceive, ResOnekeyReceive } from './xstask/PtlOnekeyReceive'; +import { ReqOpen as ReqOpen_54, ResOpen as ResOpen_54 } from './xstask/PtlOpen'; +import { ReqReceive as ReqReceive_5, ResReceive as ResReceive_5 } from './xstask/PtlReceive'; +import { ReqRefresh as ReqRefresh_8, ResRefresh as ResRefresh_8 } from './xstask/PtlRefresh'; +import { ReqHandle, ResHandle } from './yongbingzhuzhan/PtlHandle'; +import { ReqChangePos as ReqChangePos_1, ResChangePos as ResChangePos_1 } from './zhanqianbushu/PtlChangePos'; +import { ReqSelect as ReqSelect_1, ResSelect as ResSelect_1 } from './zhanqianbushu/PtlSelect'; +import { ReqUp, ResUp } from './zhanqianbushu/PtlUp'; + +export interface ServiceType { + api: { + "chat/DelPrivate": { + req: ReqDelPrivate, + res: ResDelPrivate + }, + "chat/GetList": { + req: ReqGetList, + res: ResGetList + }, + "chat/Help": { + req: ReqHelp, + res: ResHelp + }, + "chat/Private": { + req: ReqPrivate, + res: ResPrivate + }, + "chat/Send": { + req: ReqSend, + res: ResSend + }, + "chongzhi/BuyGift": { + req: ReqBuyGift, + res: ResBuyGift + }, + "chongzhi/Open": { + req: ReqOpen, + res: ResOpen + }, + "conglinshoulie/BuyNum": { + req: ReqBuyNum, + res: ResBuyNum + }, + "conglinshoulie/Find": { + req: ReqFind, + res: ResFind + }, + "conglinshoulie/GetLog": { + req: ReqGetLog, + res: ResGetLog + }, + "conglinshoulie/Open": { + req: ReqOpen_1, + res: ResOpen_1 + }, + "conglinshoulie/Rec": { + req: ReqRec, + res: ResRec + }, + "dixiaheishi/Open": { + req: ReqOpen_2, + res: ResOpen_2 + }, + "dixialeitai/Buy": { + req: ReqBuy, + res: ResBuy + }, + "dixialeitai/Fight": { + req: ReqFight, + res: ResFight + }, + "dixialeitai/Next": { + req: ReqNext, + res: ResNext + }, + "dixialeitai/Open": { + req: ReqOpen_3, + res: ResOpen_3 + }, + "dixialeitai/RecMiBao": { + req: ReqRecMiBao, + res: ResRecMiBao + }, + "dixialeitai/RecPrize": { + req: ReqRecPrize, + res: ResRecPrize + }, + "dixialeitai/SetDef": { + req: ReqSetDef, + res: ResSetDef + }, + "dixialeitai/UseItem": { + req: ReqUseItem, + res: ResUseItem + }, + "dixiaqianzhuang/Open": { + req: ReqOpen_4, + res: ResOpen_4 + }, + "dixiaqianzhuang/Qf": { + req: ReqQf, + res: ResQf + }, + "email/AllReceive": { + req: ReqAllReceive, + res: ResAllReceive + }, + "email/AllRemove": { + req: ReqAllRemove, + res: ResAllRemove + }, + "email/Open": { + req: ReqOpen_5, + res: ResOpen_5 + }, + "email/Read": { + req: ReqRead, + res: ResRead + }, + "email/Receive": { + req: ReqReceive, + res: ResReceive + }, + "email/Remove": { + req: ReqRemove, + res: ResRemove + }, + "equip/Adjustment": { + req: ReqAdjustment, + res: ResAdjustment + }, + "equip/GetList": { + req: ReqGetList_1, + res: ResGetList_1 + }, + "equip/LvUp": { + req: ReqLvUp, + res: ResLvUp + }, + "equip/OneKeyLvUp": { + req: ReqOneKeyLvUp, + res: ResOneKeyLvUp + }, + "equip/OneKeyTakeOff": { + req: ReqOneKeyTakeOff, + res: ResOneKeyTakeOff + }, + "equip/OneKeyWear": { + req: ReqOneKeyWear, + res: ResOneKeyWear + }, + "equip/Reset": { + req: ReqReset, + res: ResReset + }, + "equip/StarUp": { + req: ReqStarUp, + res: ResStarUp + }, + "equip/TakeOff": { + req: ReqTakeOff, + res: ResTakeOff + }, + "equip/Wear": { + req: ReqWear, + res: ResWear + }, + "event/136Gift/Open": { + req: ReqOpen_6, + res: ResOpen_6 + }, + "event/136Gift/Rec": { + req: ReqRec_1, + res: ResRec_1 + }, + "event/chuanshuozhilu/Open": { + req: ReqOpen_7, + res: ResOpen_7 + }, + "event/chuanshuozhilu/Rec": { + req: ReqRec_2, + res: ResRec_2 + }, + "event/diaoluoduihuan/Get": { + req: ReqGet, + res: ResGet + }, + "event/diaoluoduihuan/Open": { + req: ReqOpen_8, + res: ResOpen_8 + }, + "event/huobanzhaomu/Open": { + req: ReqOpen_9, + res: ResOpen_9 + }, + "event/huobanzhaomu/Rec": { + req: ReqRec_3, + res: ResRec_3 + }, + "event/jierihuodong/Get": { + req: ReqGet_1, + res: ResGet_1 + }, + "event/jierihuodong/Open": { + req: ReqOpen_10, + res: ResOpen_10 + }, + "event/jierihuodong/Rec": { + req: ReqRec_4, + res: ResRec_4 + }, + "event/jijin/CheckOpen": { + req: ReqCheckOpen, + res: ResCheckOpen + }, + "event/jijin/Open": { + req: ReqOpen_11, + res: ResOpen_11 + }, + "event/jijin/Receive": { + req: ReqReceive_1, + res: ResReceive_1 + }, + "event/kaifukuanghuan/LoginPrize": { + req: ReqLoginPrize, + res: ResLoginPrize + }, + "event/kaifukuanghuan/Open": { + req: ReqOpen_12, + res: ResOpen_12 + }, + "event/kaifukuanghuan/ShopBuy": { + req: ReqShopBuy, + res: ResShopBuy + }, + "event/kaifukuanghuan/TaskBox": { + req: ReqTaskBox, + res: ResTaskBox + }, + "event/kaifukuanghuan/TaskPrize": { + req: ReqTaskPrize, + res: ResTaskPrize + }, + "event/leijichongzhi/Open": { + req: ReqOpen_13, + res: ResOpen_13 + }, + "event/leijichongzhi/Rec": { + req: ReqRec_5, + res: ResRec_5 + }, + "event/niudanji/Lottery": { + req: ReqLottery, + res: ResLottery + }, + "event/niudanji/Open": { + req: ReqOpen_14, + res: ResOpen_14 + }, + "event/qirichongzhi/Open": { + req: ReqOpen_15, + res: ResOpen_15 + }, + "event/qirichongzhi/Rec": { + req: ReqRec_6, + res: ResRec_6 + }, + "event/qiridenglu/Open": { + req: ReqOpen_16, + res: ResOpen_16 + }, + "event/qiridenglu/RecPrize": { + req: ReqRecPrize_1, + res: ResRecPrize_1 + }, + "event/shiwuleichong/Open": { + req: ReqOpen_17, + res: ResOpen_17 + }, + "event/shiwuleichong/Rec": { + req: ReqRec_7, + res: ResRec_7 + }, + "event/shouchong/Open": { + req: ReqOpen_18, + res: ResOpen_18 + }, + "event/shouchong/Receive": { + req: ReqReceive_2, + res: ResReceive_2 + }, + "event/xianshizhaomu/Buy": { + req: ReqBuy_1, + res: ResBuy_1 + }, + "event/xianshizhaomu/Duihuan": { + req: ReqDuihuan, + res: ResDuihuan + }, + "event/xianshizhaomu/Lottery": { + req: ReqLottery_1, + res: ResLottery_1 + }, + "event/xianshizhaomu/Open": { + req: ReqOpen_19, + res: ResOpen_19 + }, + "event/xianshizhaomu/Rec": { + req: ReqRec_8, + res: ResRec_8 + }, + "event/xinshoulibao/Open": { + req: ReqOpen_20, + res: ResOpen_20 + }, + "event/yangchengmubiao/Buy": { + req: ReqBuy_2, + res: ResBuy_2 + }, + "event/yangchengmubiao/Open": { + req: ReqOpen_21, + res: ResOpen_21 + }, + "event/yangchengmubiao/Rec": { + req: ReqRec_9, + res: ResRec_9 + }, + "event/yibaichou/Open": { + req: ReqOpen_22, + res: ResOpen_22 + }, + "event/yibaichou/Rec": { + req: ReqRec_10, + res: ResRec_10 + }, + "event/yibaichou/RecAll": { + req: ReqRecAll, + res: ResRecAll + }, + "event/yuedujijin/Open": { + req: ReqOpen_23, + res: ResOpen_23 + }, + "event/yuedujijin/Rec": { + req: ReqRec_11, + res: ResRec_11 + }, + "event/zhanling/BuyLv": { + req: ReqBuyLv, + res: ResBuyLv + }, + "event/zhanling/Open": { + req: ReqOpen_24, + res: ResOpen_24 + }, + "event/zhanling/RecPrize": { + req: ReqRecPrize_2, + res: ResRecPrize_2 + }, + "event/zhanling/RecTask": { + req: ReqRecTask, + res: ResRecTask + }, + "event/zhoulibao/Open": { + req: ReqOpen_25, + res: ResOpen_25 + }, + "event/zixuanlibao/Buy": { + req: ReqBuy_3, + res: ResBuy_3 + }, + "event/zixuanlibao/Open": { + req: ReqOpen_26, + res: ResOpen_26 + }, + "eventlist/hdGetList": { + req: ReqhdGetList, + res: ReshdGetList + }, + "friend/Apply": { + req: ReqApply, + res: ResApply + }, + "friend/Del": { + req: ReqDel, + res: ResDel + }, + "friend/Gift": { + req: ReqGift, + res: ResGift + }, + "friend/List": { + req: ReqList, + res: ResList + }, + "friend/Open": { + req: ReqOpen_27, + res: ResOpen_27 + }, + "friend/Respond": { + req: ReqRespond, + res: ResRespond + }, + "friend/RmBlackList": { + req: ReqRmBlackList, + res: ResRmBlackList + }, + "friend/Search": { + req: ReqSearch, + res: ResSearch + }, + "ganbutexun/Challenge": { + req: ReqChallenge, + res: ResChallenge + }, + "ganbutexun/Open": { + req: ReqOpen_28, + res: ResOpen_28 + }, + "ganhai/Fast": { + req: ReqFast, + res: ResFast + }, + "ganhai/Fight": { + req: ReqFight_1, + res: ResFight_1 + }, + "ganhai/Log": { + req: ReqLog, + res: ResLog + }, + "ganhai/Open": { + req: ReqOpen_29, + res: ResOpen_29 + }, + "ganhai/Refresh": { + req: ReqRefresh, + res: ResRefresh + }, + "ganhai/RefreshShip": { + req: ReqRefreshShip, + res: ResRefreshShip + }, + "ganhai/Select": { + req: ReqSelect, + res: ResSelect + }, + "gonghui/Apply": { + req: ReqApply_1, + res: ResApply_1 + }, + "gonghui/ApplyAll": { + req: ReqApplyAll, + res: ResApplyAll + }, + "gonghui/ApplyList": { + req: ReqApplyList, + res: ResApplyList + }, + "gonghui/Change": { + req: ReqChange, + res: ResChange + }, + "gonghui/Create": { + req: ReqCreate, + res: ResCreate + }, + "gonghui/Dissolve": { + req: ReqDissolve, + res: ResDissolve + }, + "gonghui/Exit": { + req: ReqExit, + res: ResExit + }, + "gonghui/FbBuyNum": { + req: ReqFbBuyNum, + res: ResFbBuyNum + }, + "gonghui/FbFight": { + req: ReqFbFight, + res: ResFbFight + }, + "gonghui/FbOpen": { + req: ReqFbOpen, + res: ResFbOpen + }, + "gonghui/GetList": { + req: ReqGetList_2, + res: ResGetList_2 + }, + "gonghui/Join": { + req: ReqJoin, + res: ResJoin + }, + "gonghui/Jx": { + req: ReqJx, + res: ResJx + }, + "gonghui/JxOpen": { + req: ReqJxOpen, + res: ResJxOpen + }, + "gonghui/List": { + req: ReqList_1, + res: ResList_1 + }, + "gonghui/Manage": { + req: ReqManage, + res: ResManage + }, + "gonghui/Open": { + req: ReqOpen_30, + res: ResOpen_30 + }, + "gonghui/TanHe": { + req: ReqTanHe, + res: ResTanHe + }, + "gonghui/TaskOpen": { + req: ReqTaskOpen, + res: ResTaskOpen + }, + "gonghui/TaskReceive": { + req: ReqTaskReceive, + res: ResTaskReceive + }, + "gonghui/UpWz": { + req: ReqUpWz, + res: ResUpWz + }, + "gonghuibaozang/Lottery": { + req: ReqLottery_2, + res: ResLottery_2 + }, + "gonghuibaozang/Open": { + req: ReqOpen_31, + res: ResOpen_31 + }, + "gonglukuangbiao/Buy": { + req: ReqBuy_4, + res: ResBuy_4 + }, + "gonglukuangbiao/Fight": { + req: ReqFight_2, + res: ResFight_2 + }, + "gonglukuangbiao/Open": { + req: ReqOpen_32, + res: ResOpen_32 + }, + "gonglukuangbiao/Refresh": { + req: ReqRefresh_1, + res: ResRefresh_1 + }, + "gongyu/mingdao/Active": { + req: ReqActive, + res: ResActive + }, + "gongyu/mingdao/Open": { + req: ReqOpen_33, + res: ResOpen_33 + }, + "gongyu/mingdao/RecPrize": { + req: ReqRecPrize_3, + res: ResRecPrize_3 + }, + "gongyu/mingdao/Repair": { + req: ReqRepair, + res: ResRepair + }, + "gongyu/xunlianjihua/Reset": { + req: ReqReset_1, + res: ResReset_1 + }, + "gongyu/xunlianjihua/UpSkill": { + req: ReqUpSkill, + res: ResUpSkill + }, + "gongyu/zuozhanjihua/SetSkill": { + req: ReqSetSkill, + res: ResSetSkill + }, + "hbzb/jfs/BuyNum": { + req: ReqBuyNum_1, + res: ResBuyNum_1 + }, + "hbzb/jfs/Fight": { + req: ReqFight_3, + res: ResFight_3 + }, + "hbzb/jfs/GetLog": { + req: ReqGetLog_1, + res: ResGetLog_1 + }, + "hbzb/jfs/Open": { + req: ReqOpen_34, + res: ResOpen_34 + }, + "hbzb/jfs/Rec": { + req: ReqRec_12, + res: ResRec_12 + }, + "hbzb/jfs/Refresh": { + req: ReqRefresh_2, + res: ResRefresh_2 + }, + "hbzb/zbs/BuyNum": { + req: ReqBuyNum_2, + res: ResBuyNum_2 + }, + "hbzb/zbs/Fight": { + req: ReqFight_4, + res: ResFight_4 + }, + "hbzb/zbs/GetLog": { + req: ReqGetLog_2, + res: ResGetLog_2 + }, + "hbzb/zbs/Open": { + req: ReqOpen_35, + res: ResOpen_35 + }, + "hbzb/zbs/Refresh": { + req: ReqRefresh_3, + res: ResRefresh_3 + }, + "hero/Awake": { + req: ReqAwake, + res: ResAwake + }, + "hero/ChangePos": { + req: ReqChangePos, + res: ResChangePos + }, + "hero/GetList": { + req: ReqGetList_3, + res: ResGetList_3 + }, + "hero/JinJie": { + req: ReqJinJie, + res: ResJinJie + }, + "hero/LvUp": { + req: ReqLvUp_1, + res: ResLvUp_1 + }, + "hero/Potency": { + req: ReqPotency, + res: ResPotency + }, + "hero/Rec": { + req: ReqRec_13, + res: ResRec_13 + }, + "hero/Reset": { + req: ReqReset_2, + res: ResReset_2 + }, + "hero/Talent": { + req: ReqTalent, + res: ResTalent + }, + "hero/WeaponUp": { + req: ReqWeaponUp, + res: ResWeaponUp + }, + "hongdian/Get": { + req: ReqGet_2, + res: ResGet_2 + }, + "item/GetList": { + req: ReqGetList_4, + res: ResGetList_4 + }, + "item/Use": { + req: ReqUse, + res: ResUse + }, + "jiaotang/Lottery": { + req: ReqLottery_3, + res: ResLottery_3 + }, + "jiaotang/Open": { + req: ReqOpen_36, + res: ResOpen_36 + }, + "jiuba/Lottery": { + req: ReqLottery_4, + res: ResLottery_4 + }, + "jiuba/Open": { + req: ReqOpen_37, + res: ResOpen_37 + }, + "jjc/BuyFightNum": { + req: ReqBuyFightNum, + res: ResBuyFightNum + }, + "jjc/Fight": { + req: ReqFight_5, + res: ResFight_5 + }, + "jjc/FightLog": { + req: ReqFightLog, + res: ResFightLog + }, + "jjc/Open": { + req: ReqOpen_38, + res: ResOpen_38 + }, + "jjc/Receive": { + req: ReqReceive_3, + res: ResReceive_3 + }, + "jjc/Refresh": { + req: ReqRefresh_4, + res: ResRefresh_4 + }, + "kbzz/Apply": { + req: ReqApply_2, + res: ResApply_2 + }, + "kbzz/AutoApply": { + req: ReqAutoApply, + res: ResAutoApply + }, + "kbzz/BuyNum": { + req: ReqBuyNum_3, + res: ResBuyNum_3 + }, + "kbzz/Fight": { + req: ReqFight_6, + res: ResFight_6 + }, + "kbzz/FightLog": { + req: ReqFightLog_1, + res: ResFightLog_1 + }, + "kbzz/GroupState": { + req: ReqGroupState, + res: ResGroupState + }, + "kbzz/Open": { + req: ReqOpen_39, + res: ResOpen_39 + }, + "kbzz/RecPrize": { + req: ReqRecPrize_4, + res: ResRecPrize_4 + }, + "kbzz/Refresh": { + req: ReqRefresh_5, + res: ResRefresh_5 + }, + "kuangdong/AddPkNum": { + req: ReqAddPkNum, + res: ResAddPkNum + }, + "kuangdong/GetPrize": { + req: ReqGetPrize, + res: ResGetPrize + }, + "kuangdong/KdInfo": { + req: ReqKdInfo, + res: ResKdInfo + }, + "kuangdong/Log": { + req: ReqLog_1, + res: ResLog_1 + }, + "kuangdong/Open": { + req: ReqOpen_40, + res: ResOpen_40 + }, + "kuangdong/YanShi": { + req: ReqYanShi, + res: ResYanShi + }, + "kuangdong/ZhanLing": { + req: ReqZhanLing, + res: ResZhanLing + }, + "lingzhulaixi/Open": { + req: ReqOpen_41, + res: ResOpen_41 + }, + "lingzhulaixi/PkBoss": { + req: ReqPkBoss, + res: ResPkBoss + }, + "lingzhulaixi/PkRank": { + req: ReqPkRank, + res: ResPkRank + }, + "lingzhulaixi/SaoDang": { + req: ReqSaoDang, + res: ResSaoDang + }, + "meirishilian/Buy": { + req: ReqBuy_5, + res: ResBuy_5 + }, + "meirishilian/Fight": { + req: ReqFight_7, + res: ResFight_7 + }, + "meirishilian/Open": { + req: ReqOpen_42, + res: ResOpen_42 + }, + "pata/Fight": { + req: ReqFight_8, + res: ResFight_8 + }, + "pata/GetPrize": { + req: ReqGetPrize_1, + res: ResGetPrize_1 + }, + "pata/Open": { + req: ReqOpen_43, + res: ResOpen_43 + }, + "pata/SaoDang": { + req: ReqSaoDang_1, + res: ResSaoDang_1 + }, + "pay/GetList": { + req: ReqGetList_5, + res: ResGetList_5 + }, + "peijian/GetList": { + req: ReqGetList_6, + res: ResGetList_6 + }, + "peijian/JingLian": { + req: ReqJingLian, + res: ResJingLian + }, + "peijian/JinJie": { + req: ReqJinJie_1, + res: ResJinJie_1 + }, + "peijian/LvUp": { + req: ReqLvUp_2, + res: ResLvUp_2 + }, + "peijian/OneKeyLvUp": { + req: ReqOneKeyLvUp_1, + res: ResOneKeyLvUp_1 + }, + "peijian/OneKeyWear": { + req: ReqOneKeyWear_1, + res: ResOneKeyWear_1 + }, + "peijian/Reset": { + req: ReqReset_3, + res: ResReset_3 + }, + "peijian/Rm": { + req: ReqRm, + res: ResRm + }, + "peijian/TakeOff": { + req: ReqTakeOff_1, + res: ResTakeOff_1 + }, + "peijian/UnLock": { + req: ReqUnLock, + res: ResUnLock + }, + "peijian/Wear": { + req: ReqWear_1, + res: ResWear_1 + }, + "peijiancangku/Deal": { + req: ReqDeal, + res: ResDeal + }, + "peijiancangku/Jump": { + req: ReqJump, + res: ResJump + }, + "peijiancangku/Open": { + req: ReqOpen_44, + res: ResOpen_44 + }, + "Bingo": { + req: ReqBingo, + res: ResBingo + }, + "FightTest": { + req: ReqFightTest, + res: ResFightTest + }, + "SyncBtn": { + req: ReqSyncBtn, + res: ResSyncBtn + }, + "Test": { + req: ReqTest, + res: ResTest + }, + "qjzzd/Fight": { + req: ReqFight_9, + res: ResFight_9 + }, + "qjzzd/Open": { + req: ReqOpen_45, + res: ResOpen_45 + }, + "rank/Open": { + req: ReqOpen_46, + res: ResOpen_46 + }, + "shiwu/Concise": { + req: ReqConcise, + res: ResConcise + }, + "shiwu/Extract": { + req: ReqExtract, + res: ResExtract + }, + "shiwu/GetList": { + req: ReqGetList_7, + res: ResGetList_7 + }, + "shiwu/LvUp": { + req: ReqLvUp_3, + res: ResLvUp_3 + }, + "shiwu/Recast": { + req: ReqRecast, + res: ResRecast + }, + "shiwu/TakeOff": { + req: ReqTakeOff_2, + res: ResTakeOff_2 + }, + "shiwu/Wear": { + req: ReqWear_2, + res: ResWear_2 + }, + "shootGame/Open": { + req: ReqOpen_47, + res: ResOpen_47 + }, + "shootGame/Rec": { + req: ReqRec_14, + res: ResRec_14 + }, + "shop/Buy": { + req: ReqBuy_6, + res: ResBuy_6 + }, + "shop/Open": { + req: ReqOpen_48, + res: ResOpen_48 + }, + "shop/Refresh": { + req: ReqRefresh_6, + res: ResRefresh_6 + }, + "sign/GetBoxPrize": { + req: ReqGetBoxPrize, + res: ResGetBoxPrize + }, + "sign/GetPrize": { + req: ReqGetPrize_2, + res: ResGetPrize_2 + }, + "sign/Open": { + req: ReqOpen_49, + res: ResOpen_49 + }, + "slzd/Aim": { + req: ReqAim, + res: ResAim + }, + "slzd/BuyNum": { + req: ReqBuyNum_4, + res: ResBuyNum_4 + }, + "slzd/Fight": { + req: ReqFight_10, + res: ResFight_10 + }, + "slzd/FightLog": { + req: ReqFightLog_2, + res: ResFightLog_2 + }, + "slzd/MyRank": { + req: ReqMyRank, + res: ResMyRank + }, + "slzd/Open": { + req: ReqOpen_50, + res: ResOpen_50 + }, + "slzd/OpenFort": { + req: ReqOpenFort, + res: ResOpenFort + }, + "slzd/Rec": { + req: ReqRec_15, + res: ResRec_15 + }, + "slzd/Refresh": { + req: ReqRefresh_7, + res: ResRefresh_7 + }, + "slzd/Slot": { + req: ReqSlot, + res: ResSlot + }, + "tanxian/Event": { + req: ReqEvent, + res: ResEvent + }, + "tanxian/FastGuaJi": { + req: ReqFastGuaJi, + res: ResFastGuaJi + }, + "tanxian/Fight": { + req: ReqFight_11, + res: ResFight_11 + }, + "tanxian/GuaJi": { + req: ReqGuaJi, + res: ResGuaJi + }, + "tanxian/Open": { + req: ReqOpen_51, + res: ResOpen_51 + }, + "tanxian/Receive": { + req: ReqReceive_4, + res: ResReceive_4 + }, + "task/AllFinsh": { + req: ReqAllFinsh, + res: ResAllFinsh + }, + "task/Finsh": { + req: ReqFinsh, + res: ResFinsh + }, + "task/Open": { + req: ReqOpen_52, + res: ResOpen_52 + }, + "user/CDKEY": { + req: ReqCDKEY, + res: ResCDKEY + }, + "user/ChangeInfo": { + req: ReqChangeInfo, + res: ResChangeInfo + }, + "user/ChangeName": { + req: ReqChangeName, + res: ResChangeName + }, + "user/Fight": { + req: ReqFight_12, + res: ResFight_12 + }, + "user/GetInfo": { + req: ReqGetInfo, + res: ResGetInfo + }, + "user/InfoOpen": { + req: ReqInfoOpen, + res: ResInfoOpen + }, + "user/Login": { + req: ReqLogin, + res: ResLogin + }, + "user/Ping": { + req: ReqPing, + res: ResPing + }, + "user/Renown": { + req: ReqRenown, + res: ResRenown + }, + "user/RenownBuy": { + req: ReqRenownBuy, + res: ResRenownBuy + }, + "user/RenownGetPrize": { + req: ReqRenownGetPrize, + res: ResRenownGetPrize + }, + "user/RenownOpen": { + req: ReqRenownOpen, + res: ResRenownOpen + }, + "user/Tujian": { + req: ReqTujian, + res: ResTujian + }, + "weixiuchang/Dazao": { + req: ReqDazao, + res: ResDazao + }, + "weixiuchang/Zuzhuang": { + req: ReqZuzhuang, + res: ResZuzhuang + }, + "wzry/AutoBaoMing": { + req: ReqAutoBaoMing, + res: ResAutoBaoMing + }, + "wzry/BaoMing": { + req: ReqBaoMing, + res: ResBaoMing + }, + "wzry/catFightLog": { + req: ReqcatFightLog, + res: RescatFightLog + }, + "wzry/CatGroup": { + req: ReqCatGroup, + res: ResCatGroup + }, + "wzry/DldFight": { + req: ReqDldFight, + res: ResDldFight + }, + "wzry/DldRefre": { + req: ReqDldRefre, + res: ResDldRefre + }, + "wzry/JingCai": { + req: ReqJingCai, + res: ResJingCai + }, + "wzry/JingCaiOpen": { + req: ReqJingCaiOpen, + res: ResJingCaiOpen + }, + "wzry/Open": { + req: ReqOpen_53, + res: ResOpen_53 + }, + "wzry/UpdateFight": { + req: ReqUpdateFight, + res: ResUpdateFight + }, + "wzry/Wzzd": { + req: ReqWzzd, + res: ResWzzd + }, + "wzry/ZuanShiOpen": { + req: ReqZuanShiOpen, + res: ResZuanShiOpen + }, + "xstask/AllGet": { + req: ReqAllGet, + res: ResAllGet + }, + "xstask/Get": { + req: ReqGet_3, + res: ResGet_3 + }, + "xstask/LvUp": { + req: ReqLvUp_4, + res: ResLvUp_4 + }, + "xstask/OnekeyReceive": { + req: ReqOnekeyReceive, + res: ResOnekeyReceive + }, + "xstask/Open": { + req: ReqOpen_54, + res: ResOpen_54 + }, + "xstask/Receive": { + req: ReqReceive_5, + res: ResReceive_5 + }, + "xstask/Refresh": { + req: ReqRefresh_8, + res: ResRefresh_8 + }, + "yongbingzhuzhan/Handle": { + req: ReqHandle, + res: ResHandle + }, + "zhanqianbushu/ChangePos": { + req: ReqChangePos_1, + res: ResChangePos_1 + }, + "zhanqianbushu/Select": { + req: ReqSelect_1, + res: ResSelect_1 + }, + "zhanqianbushu/Up": { + req: ReqUp, + res: ResUp + } + }, + msg: { + "msg_c2s/BindUid": MsgBindUid, + "msg_c2s/Pay": MsgPay, + "msg_c2s/Sync": MsgSync, + "msg_s2c/Chat": MsgChat, + "msg_s2c/ChatHelp": MsgChatHelp, + "msg_s2c/Collection": MsgCollection, + "msg_s2c/Email": MsgEmail, + "msg_s2c/EmailDel": MsgEmailDel, + "msg_s2c/EquipChange": MsgEquipChange, + "msg_s2c/Friend": MsgFriend, + "msg_s2c/GhChange": MsgGhChange, + "msg_s2c/GongHuiBaoZang": MsgGongHuiBaoZang, + "msg_s2c/HeroChange": MsgHeroChange, + "msg_s2c/HongDianChange": MsgHongDianChange, + "msg_s2c/ItemChange": MsgItemChange, + "msg_s2c/LoginQueue": MsgLoginQueue, + "msg_s2c/LshdChange": MsgLshdChange, + "msg_s2c/NewDay": MsgNewDay, + "msg_s2c/OtherLogin": MsgOtherLogin, + "msg_s2c/PayChange": MsgPayChange, + "msg_s2c/PayResult": MsgPayResult, + "msg_s2c/PeijianChange": MsgPeijianChange, + "msg_s2c/PlayerChange": MsgPlayerChange, + "msg_s2c/Private": MsgPrivate, + "msg_s2c/SendGift": MsgSendGift, + "msg_s2c/ShiwuChange": MsgShiwuChange, + "msg_s2c/TaskChange": MsgTaskChange, + "msg_s2c/Xianshilibao": MsgXianshilibao + } +} + +export const serviceProto: ServiceProto = { + "services": [ + { + "id": 0, + "name": "chat/DelPrivate", + "type": "api" + }, + { + "id": 1, + "name": "chat/GetList", + "type": "api" + }, + { + "id": 2, + "name": "chat/Help", + "type": "api" + }, + { + "id": 3, + "name": "chat/Private", + "type": "api" + }, + { + "id": 4, + "name": "chat/Send", + "type": "api" + }, + { + "id": 5, + "name": "chongzhi/BuyGift", + "type": "api" + }, + { + "id": 6, + "name": "chongzhi/Open", + "type": "api" + }, + { + "id": 7, + "name": "conglinshoulie/BuyNum", + "type": "api" + }, + { + "id": 8, + "name": "conglinshoulie/Find", + "type": "api" + }, + { + "id": 9, + "name": "conglinshoulie/GetLog", + "type": "api" + }, + { + "id": 10, + "name": "conglinshoulie/Open", + "type": "api" + }, + { + "id": 11, + "name": "conglinshoulie/Rec", + "type": "api" + }, + { + "id": 12, + "name": "dixiaheishi/Open", + "type": "api" + }, + { + "id": 13, + "name": "dixialeitai/Buy", + "type": "api" + }, + { + "id": 14, + "name": "dixialeitai/Fight", + "type": "api" + }, + { + "id": 15, + "name": "dixialeitai/Next", + "type": "api" + }, + { + "id": 16, + "name": "dixialeitai/Open", + "type": "api" + }, + { + "id": 17, + "name": "dixialeitai/RecMiBao", + "type": "api" + }, + { + "id": 18, + "name": "dixialeitai/RecPrize", + "type": "api" + }, + { + "id": 19, + "name": "dixialeitai/SetDef", + "type": "api" + }, + { + "id": 20, + "name": "dixialeitai/UseItem", + "type": "api" + }, + { + "id": 21, + "name": "dixiaqianzhuang/Open", + "type": "api" + }, + { + "id": 22, + "name": "dixiaqianzhuang/Qf", + "type": "api" + }, + { + "id": 23, + "name": "email/AllReceive", + "type": "api" + }, + { + "id": 24, + "name": "email/AllRemove", + "type": "api" + }, + { + "id": 25, + "name": "email/Open", + "type": "api" + }, + { + "id": 26, + "name": "email/Read", + "type": "api" + }, + { + "id": 27, + "name": "email/Receive", + "type": "api" + }, + { + "id": 28, + "name": "email/Remove", + "type": "api" + }, + { + "id": 29, + "name": "equip/Adjustment", + "type": "api" + }, + { + "id": 30, + "name": "equip/GetList", + "type": "api" + }, + { + "id": 31, + "name": "equip/LvUp", + "type": "api" + }, + { + "id": 32, + "name": "equip/OneKeyLvUp", + "type": "api" + }, + { + "id": 33, + "name": "equip/OneKeyTakeOff", + "type": "api" + }, + { + "id": 34, + "name": "equip/OneKeyWear", + "type": "api" + }, + { + "id": 35, + "name": "equip/Reset", + "type": "api" + }, + { + "id": 36, + "name": "equip/StarUp", + "type": "api" + }, + { + "id": 37, + "name": "equip/TakeOff", + "type": "api" + }, + { + "id": 38, + "name": "equip/Wear", + "type": "api" + }, + { + "id": 39, + "name": "event/136Gift/Open", + "type": "api" + }, + { + "id": 40, + "name": "event/136Gift/Rec", + "type": "api" + }, + { + "id": 41, + "name": "event/chuanshuozhilu/Open", + "type": "api" + }, + { + "id": 42, + "name": "event/chuanshuozhilu/Rec", + "type": "api" + }, + { + "id": 43, + "name": "event/diaoluoduihuan/Get", + "type": "api" + }, + { + "id": 44, + "name": "event/diaoluoduihuan/Open", + "type": "api" + }, + { + "id": 45, + "name": "event/huobanzhaomu/Open", + "type": "api" + }, + { + "id": 46, + "name": "event/huobanzhaomu/Rec", + "type": "api" + }, + { + "id": 47, + "name": "event/jierihuodong/Get", + "type": "api" + }, + { + "id": 48, + "name": "event/jierihuodong/Open", + "type": "api" + }, + { + "id": 49, + "name": "event/jierihuodong/Rec", + "type": "api" + }, + { + "id": 50, + "name": "event/jijin/CheckOpen", + "type": "api" + }, + { + "id": 51, + "name": "event/jijin/Open", + "type": "api" + }, + { + "id": 52, + "name": "event/jijin/Receive", + "type": "api" + }, + { + "id": 53, + "name": "event/kaifukuanghuan/LoginPrize", + "type": "api" + }, + { + "id": 54, + "name": "event/kaifukuanghuan/Open", + "type": "api" + }, + { + "id": 55, + "name": "event/kaifukuanghuan/ShopBuy", + "type": "api" + }, + { + "id": 56, + "name": "event/kaifukuanghuan/TaskBox", + "type": "api" + }, + { + "id": 57, + "name": "event/kaifukuanghuan/TaskPrize", + "type": "api" + }, + { + "id": 58, + "name": "event/leijichongzhi/Open", + "type": "api" + }, + { + "id": 59, + "name": "event/leijichongzhi/Rec", + "type": "api" + }, + { + "id": 60, + "name": "event/niudanji/Lottery", + "type": "api" + }, + { + "id": 61, + "name": "event/niudanji/Open", + "type": "api" + }, + { + "id": 62, + "name": "event/qirichongzhi/Open", + "type": "api" + }, + { + "id": 63, + "name": "event/qirichongzhi/Rec", + "type": "api" + }, + { + "id": 64, + "name": "event/qiridenglu/Open", + "type": "api" + }, + { + "id": 65, + "name": "event/qiridenglu/RecPrize", + "type": "api" + }, + { + "id": 66, + "name": "event/shiwuleichong/Open", + "type": "api" + }, + { + "id": 67, + "name": "event/shiwuleichong/Rec", + "type": "api" + }, + { + "id": 68, + "name": "event/shouchong/Open", + "type": "api" + }, + { + "id": 69, + "name": "event/shouchong/Receive", + "type": "api" + }, + { + "id": 70, + "name": "event/xianshizhaomu/Buy", + "type": "api" + }, + { + "id": 71, + "name": "event/xianshizhaomu/Duihuan", + "type": "api" + }, + { + "id": 72, + "name": "event/xianshizhaomu/Lottery", + "type": "api" + }, + { + "id": 73, + "name": "event/xianshizhaomu/Open", + "type": "api" + }, + { + "id": 74, + "name": "event/xianshizhaomu/Rec", + "type": "api" + }, + { + "id": 75, + "name": "event/xinshoulibao/Open", + "type": "api" + }, + { + "id": 76, + "name": "event/yangchengmubiao/Buy", + "type": "api" + }, + { + "id": 77, + "name": "event/yangchengmubiao/Open", + "type": "api" + }, + { + "id": 78, + "name": "event/yangchengmubiao/Rec", + "type": "api" + }, + { + "id": 79, + "name": "event/yibaichou/Open", + "type": "api" + }, + { + "id": 80, + "name": "event/yibaichou/Rec", + "type": "api" + }, + { + "id": 81, + "name": "event/yibaichou/RecAll", + "type": "api" + }, + { + "id": 82, + "name": "event/yuedujijin/Open", + "type": "api", + "conf": { + "timeIntervalLimit": 0 + } + }, + { + "id": 83, + "name": "event/yuedujijin/Rec", + "type": "api" + }, + { + "id": 84, + "name": "event/zhanling/BuyLv", + "type": "api" + }, + { + "id": 85, + "name": "event/zhanling/Open", + "type": "api" + }, + { + "id": 86, + "name": "event/zhanling/RecPrize", + "type": "api" + }, + { + "id": 87, + "name": "event/zhanling/RecTask", + "type": "api" + }, + { + "id": 88, + "name": "event/zhoulibao/Open", + "type": "api" + }, + { + "id": 89, + "name": "event/zixuanlibao/Buy", + "type": "api" + }, + { + "id": 90, + "name": "event/zixuanlibao/Open", + "type": "api" + }, + { + "id": 91, + "name": "eventlist/hdGetList", + "type": "api" + }, + { + "id": 92, + "name": "friend/Apply", + "type": "api" + }, + { + "id": 93, + "name": "friend/Del", + "type": "api" + }, + { + "id": 94, + "name": "friend/Gift", + "type": "api" + }, + { + "id": 95, + "name": "friend/List", + "type": "api" + }, + { + "id": 96, + "name": "friend/Open", + "type": "api" + }, + { + "id": 97, + "name": "friend/Respond", + "type": "api" + }, + { + "id": 98, + "name": "friend/RmBlackList", + "type": "api" + }, + { + "id": 99, + "name": "friend/Search", + "type": "api" + }, + { + "id": 100, + "name": "ganbutexun/Challenge", + "type": "api" + }, + { + "id": 101, + "name": "ganbutexun/Open", + "type": "api" + }, + { + "id": 102, + "name": "ganhai/Fast", + "type": "api" + }, + { + "id": 103, + "name": "ganhai/Fight", + "type": "api" + }, + { + "id": 104, + "name": "ganhai/Log", + "type": "api" + }, + { + "id": 105, + "name": "ganhai/Open", + "type": "api" + }, + { + "id": 106, + "name": "ganhai/Refresh", + "type": "api" + }, + { + "id": 107, + "name": "ganhai/RefreshShip", + "type": "api" + }, + { + "id": 108, + "name": "ganhai/Select", + "type": "api" + }, + { + "id": 109, + "name": "gonghui/Apply", + "type": "api", + "conf": { + "needGudKey": [ + "ghId" + ] + } + }, + { + "id": 110, + "name": "gonghui/ApplyAll", + "type": "api", + "conf": { + "needGudKey": [ + "ghId" + ] + } + }, + { + "id": 111, + "name": "gonghui/ApplyList", + "type": "api", + "conf": { + "needGudKey": [ + "ghId" + ] + } + }, + { + "id": 112, + "name": "gonghui/Change", + "type": "api", + "conf": { + "needGudKey": [ + "ghId" + ] + } + }, + { + "id": 113, + "name": "gonghui/Create", + "type": "api" + }, + { + "id": 114, + "name": "gonghui/Dissolve", + "type": "api", + "conf": { + "needGudKey": [ + "ghId" + ] + } + }, + { + "id": 115, + "name": "gonghui/Exit", + "type": "api", + "conf": { + "needGudKey": [ + "ghId" + ] + } + }, + { + "id": 116, + "name": "gonghui/FbBuyNum", + "type": "api" + }, + { + "id": 117, + "name": "gonghui/FbFight", + "type": "api", + "conf": { + "needGudKey": [ + "ghId" + ] + } + }, + { + "id": 118, + "name": "gonghui/FbOpen", + "type": "api", + "conf": { + "needGudKey": [ + "ghId" + ] + } + }, + { + "id": 119, + "name": "gonghui/GetList", + "type": "api" + }, + { + "id": 120, + "name": "gonghui/Join", + "type": "api" + }, + { + "id": 121, + "name": "gonghui/Jx", + "type": "api", + "conf": { + "needGudKey": [ + "ghId" + ] + } + }, + { + "id": 122, + "name": "gonghui/JxOpen", + "type": "api", + "conf": { + "needGudKey": [ + "ghId" + ] + } + }, + { + "id": 123, + "name": "gonghui/List", + "type": "api", + "conf": { + "needGudKey": [ + "ghId" + ] + } + }, + { + "id": 124, + "name": "gonghui/Manage", + "type": "api", + "conf": { + "needGudKey": [ + "ghId" + ] + } + }, + { + "id": 125, + "name": "gonghui/Open", + "type": "api", + "conf": { + "needGudKey": [ + "ghId" + ] + } + }, + { + "id": 126, + "name": "gonghui/TanHe", + "type": "api", + "conf": { + "needGudKey": [ + "ghId" + ] + } + }, + { + "id": 127, + "name": "gonghui/TaskOpen", + "type": "api", + "conf": { + "needGudKey": [ + "ghId" + ] + } + }, + { + "id": 128, + "name": "gonghui/TaskReceive", + "type": "api", + "conf": { + "needGudKey": [ + "ghId" + ] + } + }, + { + "id": 129, + "name": "gonghui/UpWz", + "type": "api", + "conf": { + "needGudKey": [ + "ghId" + ] + } + }, + { + "id": 130, + "name": "gonghuibaozang/Lottery", + "type": "api" + }, + { + "id": 131, + "name": "gonghuibaozang/Open", + "type": "api" + }, + { + "id": 132, + "name": "gonglukuangbiao/Buy", + "type": "api" + }, + { + "id": 133, + "name": "gonglukuangbiao/Fight", + "type": "api" + }, + { + "id": 134, + "name": "gonglukuangbiao/Open", + "type": "api" + }, + { + "id": 135, + "name": "gonglukuangbiao/Refresh", + "type": "api" + }, + { + "id": 136, + "name": "gongyu/mingdao/Active", + "type": "api" + }, + { + "id": 137, + "name": "gongyu/mingdao/Open", + "type": "api" + }, + { + "id": 138, + "name": "gongyu/mingdao/RecPrize", + "type": "api" + }, + { + "id": 139, + "name": "gongyu/mingdao/Repair", + "type": "api" + }, + { + "id": 140, + "name": "gongyu/xunlianjihua/Reset", + "type": "api" + }, + { + "id": 141, + "name": "gongyu/xunlianjihua/UpSkill", + "type": "api" + }, + { + "id": 142, + "name": "gongyu/zuozhanjihua/SetSkill", + "type": "api" + }, + { + "id": 143, + "name": "hbzb/jfs/BuyNum", + "type": "api" + }, + { + "id": 144, + "name": "hbzb/jfs/Fight", + "type": "api" + }, + { + "id": 145, + "name": "hbzb/jfs/GetLog", + "type": "api" + }, + { + "id": 146, + "name": "hbzb/jfs/Open", + "type": "api" + }, + { + "id": 147, + "name": "hbzb/jfs/Rec", + "type": "api" + }, + { + "id": 148, + "name": "hbzb/jfs/Refresh", + "type": "api" + }, + { + "id": 149, + "name": "hbzb/zbs/BuyNum", + "type": "api" + }, + { + "id": 150, + "name": "hbzb/zbs/Fight", + "type": "api" + }, + { + "id": 151, + "name": "hbzb/zbs/GetLog", + "type": "api" + }, + { + "id": 152, + "name": "hbzb/zbs/Open", + "type": "api" + }, + { + "id": 153, + "name": "hbzb/zbs/Refresh", + "type": "api" + }, + { + "id": 154, + "name": "hero/Awake", + "type": "api" + }, + { + "id": 155, + "name": "hero/ChangePos", + "type": "api", + "conf": { + "timeIntervalLimit": 0 + } + }, + { + "id": 156, + "name": "hero/GetList", + "type": "api" + }, + { + "id": 157, + "name": "hero/JinJie", + "type": "api" + }, + { + "id": 158, + "name": "hero/LvUp", + "type": "api", + "conf": { + "timeIntervalLimit": 0 + } + }, + { + "id": 159, + "name": "hero/Potency", + "type": "api" + }, + { + "id": 160, + "name": "hero/Rec", + "type": "api" + }, + { + "id": 161, + "name": "hero/Reset", + "type": "api" + }, + { + "id": 162, + "name": "hero/Talent", + "type": "api" + }, + { + "id": 163, + "name": "hero/WeaponUp", + "type": "api" + }, + { + "id": 164, + "name": "hongdian/Get", + "type": "api", + "conf": { + "timeIntervalLimit": 0 + } + }, + { + "id": 165, + "name": "item/GetList", + "type": "api" + }, + { + "id": 166, + "name": "item/Use", + "type": "api" + }, + { + "id": 167, + "name": "jiaotang/Lottery", + "type": "api" + }, + { + "id": 168, + "name": "jiaotang/Open", + "type": "api" + }, + { + "id": 169, + "name": "jiuba/Lottery", + "type": "api" + }, + { + "id": 170, + "name": "jiuba/Open", + "type": "api" + }, + { + "id": 171, + "name": "jjc/BuyFightNum", + "type": "api" + }, + { + "id": 172, + "name": "jjc/Fight", + "type": "api" + }, + { + "id": 173, + "name": "jjc/FightLog", + "type": "api" + }, + { + "id": 174, + "name": "jjc/Open", + "type": "api" + }, + { + "id": 175, + "name": "jjc/Receive", + "type": "api" + }, + { + "id": 176, + "name": "jjc/Refresh", + "type": "api" + }, + { + "id": 177, + "name": "kbzz/Apply", + "type": "api" + }, + { + "id": 178, + "name": "kbzz/AutoApply", + "type": "api" + }, + { + "id": 179, + "name": "kbzz/BuyNum", + "type": "api" + }, + { + "id": 180, + "name": "kbzz/Fight", + "type": "api" + }, + { + "id": 181, + "name": "kbzz/FightLog", + "type": "api" + }, + { + "id": 182, + "name": "kbzz/GroupState", + "type": "api" + }, + { + "id": 183, + "name": "kbzz/Open", + "type": "api" + }, + { + "id": 184, + "name": "kbzz/RecPrize", + "type": "api" + }, + { + "id": 185, + "name": "kbzz/Refresh", + "type": "api", + "conf": { + "timeIntervalLimit": 4000 + } + }, + { + "id": 186, + "name": "kuangdong/AddPkNum", + "type": "api" + }, + { + "id": 187, + "name": "kuangdong/GetPrize", + "type": "api" + }, + { + "id": 188, + "name": "kuangdong/KdInfo", + "type": "api" + }, + { + "id": 189, + "name": "kuangdong/Log", + "type": "api" + }, + { + "id": 190, + "name": "kuangdong/Open", + "type": "api" + }, + { + "id": 191, + "name": "kuangdong/YanShi", + "type": "api" + }, + { + "id": 192, + "name": "kuangdong/ZhanLing", + "type": "api" + }, + { + "id": 193, + "name": "lingzhulaixi/Open", + "type": "api" + }, + { + "id": 194, + "name": "lingzhulaixi/PkBoss", + "type": "api" + }, + { + "id": 195, + "name": "lingzhulaixi/PkRank", + "type": "api" + }, + { + "id": 196, + "name": "lingzhulaixi/SaoDang", + "type": "api" + }, + { + "id": 197, + "name": "meirishilian/Buy", + "type": "api" + }, + { + "id": 198, + "name": "meirishilian/Fight", + "type": "api" + }, + { + "id": 199, + "name": "meirishilian/Open", + "type": "api" + }, + { + "id": 200, + "name": "msg_c2s/BindUid", + "type": "msg" + }, + { + "id": 201, + "name": "msg_c2s/Pay", + "type": "msg" + }, + { + "id": 202, + "name": "msg_c2s/Sync", + "type": "msg" + }, + { + "id": 203, + "name": "msg_s2c/Chat", + "type": "msg" + }, + { + "id": 204, + "name": "msg_s2c/ChatHelp", + "type": "msg" + }, + { + "id": 205, + "name": "msg_s2c/Collection", + "type": "msg" + }, + { + "id": 206, + "name": "msg_s2c/Email", + "type": "msg" + }, + { + "id": 207, + "name": "msg_s2c/EmailDel", + "type": "msg" + }, + { + "id": 208, + "name": "msg_s2c/EquipChange", + "type": "msg" + }, + { + "id": 209, + "name": "msg_s2c/Friend", + "type": "msg" + }, + { + "id": 210, + "name": "msg_s2c/GhChange", + "type": "msg" + }, + { + "id": 211, + "name": "msg_s2c/GongHuiBaoZang", + "type": "msg" + }, + { + "id": 212, + "name": "msg_s2c/HeroChange", + "type": "msg" + }, + { + "id": 213, + "name": "msg_s2c/HongDianChange", + "type": "msg" + }, + { + "id": 214, + "name": "msg_s2c/ItemChange", + "type": "msg" + }, + { + "id": 215, + "name": "msg_s2c/LoginQueue", + "type": "msg" + }, + { + "id": 216, + "name": "msg_s2c/LshdChange", + "type": "msg" + }, + { + "id": 217, + "name": "msg_s2c/NewDay", + "type": "msg" + }, + { + "id": 218, + "name": "msg_s2c/OtherLogin", + "type": "msg" + }, + { + "id": 219, + "name": "msg_s2c/PayChange", + "type": "msg" + }, + { + "id": 220, + "name": "msg_s2c/PayResult", + "type": "msg" + }, + { + "id": 221, + "name": "msg_s2c/PeijianChange", + "type": "msg" + }, + { + "id": 222, + "name": "msg_s2c/PlayerChange", + "type": "msg" + }, + { + "id": 223, + "name": "msg_s2c/Private", + "type": "msg" + }, + { + "id": 224, + "name": "msg_s2c/SendGift", + "type": "msg" + }, + { + "id": 225, + "name": "msg_s2c/ShiwuChange", + "type": "msg" + }, + { + "id": 226, + "name": "msg_s2c/TaskChange", + "type": "msg" + }, + { + "id": 227, + "name": "msg_s2c/Xianshilibao", + "type": "msg" + }, + { + "id": 228, + "name": "pata/Fight", + "type": "api" + }, + { + "id": 229, + "name": "pata/GetPrize", + "type": "api" + }, + { + "id": 230, + "name": "pata/Open", + "type": "api" + }, + { + "id": 231, + "name": "pata/SaoDang", + "type": "api" + }, + { + "id": 232, + "name": "pay/GetList", + "type": "api" + }, + { + "id": 233, + "name": "peijian/GetList", + "type": "api" + }, + { + "id": 234, + "name": "peijian/JingLian", + "type": "api" + }, + { + "id": 235, + "name": "peijian/JinJie", + "type": "api" + }, + { + "id": 236, + "name": "peijian/LvUp", + "type": "api" + }, + { + "id": 237, + "name": "peijian/OneKeyLvUp", + "type": "api" + }, + { + "id": 238, + "name": "peijian/OneKeyWear", + "type": "api" + }, + { + "id": 239, + "name": "peijian/Reset", + "type": "api" + }, + { + "id": 240, + "name": "peijian/Rm", + "type": "api" + }, + { + "id": 241, + "name": "peijian/TakeOff", + "type": "api", + "conf": { + "timeIntervalLimit": 0 + } + }, + { + "id": 242, + "name": "peijian/UnLock", + "type": "api" + }, + { + "id": 243, + "name": "peijian/Wear", + "type": "api" + }, + { + "id": 244, + "name": "peijiancangku/Deal", + "type": "api" + }, + { + "id": 245, + "name": "peijiancangku/Jump", + "type": "api" + }, + { + "id": 246, + "name": "peijiancangku/Open", + "type": "api" + }, + { + "id": 247, + "name": "Bingo", + "type": "api", + "conf": { + "timeIntervalLimit": 0 + } + }, + { + "id": 248, + "name": "FightTest", + "type": "api" + }, + { + "id": 249, + "name": "SyncBtn", + "type": "api" + }, + { + "id": 250, + "name": "Test", + "type": "api" + }, + { + "id": 251, + "name": "qjzzd/Fight", + "type": "api" + }, + { + "id": 252, + "name": "qjzzd/Open", + "type": "api" + }, + { + "id": 253, + "name": "rank/Open", + "type": "api" + }, + { + "id": 254, + "name": "shiwu/Concise", + "type": "api" + }, + { + "id": 255, + "name": "shiwu/Extract", + "type": "api" + }, + { + "id": 256, + "name": "shiwu/GetList", + "type": "api" + }, + { + "id": 257, + "name": "shiwu/LvUp", + "type": "api" + }, + { + "id": 258, + "name": "shiwu/Recast", + "type": "api" + }, + { + "id": 259, + "name": "shiwu/TakeOff", + "type": "api" + }, + { + "id": 260, + "name": "shiwu/Wear", + "type": "api" + }, + { + "id": 261, + "name": "shootGame/Open", + "type": "api" + }, + { + "id": 262, + "name": "shootGame/Rec", + "type": "api" + }, + { + "id": 263, + "name": "shop/Buy", + "type": "api" + }, + { + "id": 264, + "name": "shop/Open", + "type": "api" + }, + { + "id": 265, + "name": "shop/Refresh", + "type": "api" + }, + { + "id": 266, + "name": "sign/GetBoxPrize", + "type": "api" + }, + { + "id": 267, + "name": "sign/GetPrize", + "type": "api" + }, + { + "id": 268, + "name": "sign/Open", + "type": "api" + }, + { + "id": 269, + "name": "slzd/Aim", + "type": "api" + }, + { + "id": 270, + "name": "slzd/BuyNum", + "type": "api" + }, + { + "id": 271, + "name": "slzd/Fight", + "type": "api" + }, + { + "id": 272, + "name": "slzd/FightLog", + "type": "api" + }, + { + "id": 273, + "name": "slzd/MyRank", + "type": "api" + }, + { + "id": 274, + "name": "slzd/Open", + "type": "api", + "conf": { + "needGudKey": [ + "ghId" + ] + } + }, + { + "id": 275, + "name": "slzd/OpenFort", + "type": "api" + }, + { + "id": 276, + "name": "slzd/Rec", + "type": "api" + }, + { + "id": 277, + "name": "slzd/Refresh", + "type": "api" + }, + { + "id": 278, + "name": "slzd/Slot", + "type": "api" + }, + { + "id": 279, + "name": "tanxian/Event", + "type": "api" + }, + { + "id": 280, + "name": "tanxian/FastGuaJi", + "type": "api" + }, + { + "id": 281, + "name": "tanxian/Fight", + "type": "api" + }, + { + "id": 282, + "name": "tanxian/GuaJi", + "type": "api" + }, + { + "id": 283, + "name": "tanxian/Open", + "type": "api" + }, + { + "id": 284, + "name": "tanxian/Receive", + "type": "api" + }, + { + "id": 285, + "name": "task/AllFinsh", + "type": "api" + }, + { + "id": 286, + "name": "task/Finsh", + "type": "api" + }, + { + "id": 287, + "name": "task/Open", + "type": "api" + }, + { + "id": 288, + "name": "user/CDKEY", + "type": "api" + }, + { + "id": 289, + "name": "user/ChangeInfo", + "type": "api", + "conf": { + "timeIntervalLimit": 0 + } + }, + { + "id": 290, + "name": "user/ChangeName", + "type": "api" + }, + { + "id": 291, + "name": "user/Fight", + "type": "api" + }, + { + "id": 292, + "name": "user/GetInfo", + "type": "api" + }, + { + "id": 293, + "name": "user/InfoOpen", + "type": "api" + }, + { + "id": 294, + "name": "user/Login", + "type": "api" + }, + { + "id": 295, + "name": "user/Ping", + "type": "api" + }, + { + "id": 296, + "name": "user/Renown", + "type": "api" + }, + { + "id": 297, + "name": "user/RenownBuy", + "type": "api" + }, + { + "id": 298, + "name": "user/RenownGetPrize", + "type": "api" + }, + { + "id": 299, + "name": "user/RenownOpen", + "type": "api" + }, + { + "id": 300, + "name": "user/Tujian", + "type": "api" + }, + { + "id": 301, + "name": "weixiuchang/Dazao", + "type": "api" + }, + { + "id": 302, + "name": "weixiuchang/Zuzhuang", + "type": "api" + }, + { + "id": 303, + "name": "wzry/AutoBaoMing", + "type": "api" + }, + { + "id": 304, + "name": "wzry/BaoMing", + "type": "api" + }, + { + "id": 305, + "name": "wzry/catFightLog", + "type": "api" + }, + { + "id": 306, + "name": "wzry/CatGroup", + "type": "api" + }, + { + "id": 307, + "name": "wzry/DldFight", + "type": "api" + }, + { + "id": 308, + "name": "wzry/DldRefre", + "type": "api" + }, + { + "id": 309, + "name": "wzry/JingCai", + "type": "api" + }, + { + "id": 310, + "name": "wzry/JingCaiOpen", + "type": "api" + }, + { + "id": 311, + "name": "wzry/Open", + "type": "api" + }, + { + "id": 312, + "name": "wzry/UpdateFight", + "type": "api" + }, + { + "id": 313, + "name": "wzry/Wzzd", + "type": "api" + }, + { + "id": 314, + "name": "wzry/ZuanShiOpen", + "type": "api" + }, + { + "id": 315, + "name": "xstask/AllGet", + "type": "api" + }, + { + "id": 316, + "name": "xstask/Get", + "type": "api" + }, + { + "id": 317, + "name": "xstask/LvUp", + "type": "api" + }, + { + "id": 318, + "name": "xstask/OnekeyReceive", + "type": "api" + }, + { + "id": 319, + "name": "xstask/Open", + "type": "api" + }, + { + "id": 320, + "name": "xstask/Receive", + "type": "api" + }, + { + "id": 321, + "name": "xstask/Refresh", + "type": "api" + }, + { + "id": 322, + "name": "yongbingzhuzhan/Handle", + "type": "api" + }, + { + "id": 323, + "name": "zhanqianbushu/ChangePos", + "type": "api" + }, + { + "id": 324, + "name": "zhanqianbushu/Select", + "type": "api" + }, + { + "id": 325, + "name": "zhanqianbushu/Up", + "type": "api" + } + ], + "types": { + "chat/PtlDelPrivate/ReqDelPrivate": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "privateId", + "type": { + "type": "String" + } + } + ] + }, + "chat/PtlDelPrivate/ResDelPrivate": { + "type": "Interface" + }, + "chat/PtlGetList/ReqGetList": { + "type": "Interface" + }, + "chat/PtlGetList/ResGetList": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "cross", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "msg_s2c/MsgChat/MsgChat" + } + } + }, + { + "id": 1, + "name": "local", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "msg_s2c/MsgChat/MsgChat" + } + } + }, + { + "id": 2, + "name": "guild", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "msg_s2c/MsgChat/MsgChat" + } + } + }, + { + "id": 3, + "name": "private", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "msg_s2c/MsgPrivate/MsgPrivate" + } + } + } + }, + "optional": true + } + ] + }, + "msg_s2c/MsgChat/MsgChat": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "msg", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "cross" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "local" + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": "guild" + } + } + ] + } + }, + { + "id": 3, + "name": "sender", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Partial", + "target": { + "type": "IndexedAccess", + "index": "gud", + "objectType": { + "type": "Reference", + "target": "user/PtlLogin/ResLogin" + } + } + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "system" + } + } + ] + } + }, + { + "id": 4, + "name": "recipient", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Partial", + "target": { + "type": "IndexedAccess", + "index": "gud", + "objectType": { + "type": "Reference", + "target": "user/PtlLogin/ResLogin" + } + } + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "system" + } + } + ] + }, + "optional": true + }, + { + "id": 5, + "name": "otherData", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "optional": true + } + ] + }, + "user/PtlLogin/ResLogin": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "gud", + "type": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Reference", + "target": "user/PtlLogin/playerInfo" + } + }, + { + "id": 1, + "type": { + "type": "Reference", + "target": "user/PtlLogin/playerAttr" + } + }, + { + "id": 2, + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "user/PtlLogin/playerAppend" + } + } + } + ] + } + }, + { + "id": 1, + "name": "openTime", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "curTime", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "firstLogin", + "type": { + "type": "Boolean" + } + }, + { + "id": 4, + "name": "otherData", + "type": { + "type": "Any" + }, + "optional": true + } + ] + }, + "user/PtlLogin/playerInfo": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "vip", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "bindUid", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "power", + "type": { + "type": "Number" + } + } + ] + }, + "user/PtlLogin/playerAttr": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "nexp", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "jinbi", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "rmbmoney", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "rongyu", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "payExp", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 5, + "name": "guijinshu", + "type": { + "type": "Number" + }, + "optional": true + } + ] + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + } + } + ] + }, + "user/PtlLogin/playerAppend": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "tujianLv", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "head", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 2, + "name": "headFrame", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 3, + "name": "chatFrame", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 4, + "name": "name", + "type": { + "type": "String" + } + }, + { + "id": 5, + "name": "model", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + } + } + } + }, + { + "id": 6, + "name": "renown", + "type": { + "type": "Number" + } + }, + { + "id": 7, + "name": "wxcLv", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "ids", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + ] + } + }, + { + "id": 8, + "name": "mapId", + "type": { + "type": "Number" + } + }, + { + "id": 9, + "name": "shoucangping", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 10, + "name": "useTujianLvPoint", + "type": { + "type": "Number" + } + }, + { + "id": 11, + "name": "skills", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 12, + "name": "fightSkills", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + }, + { + "id": 13, + "name": "heroPos", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + }, + { + "id": 14, + "name": "ghId", + "type": { + "type": "String" + } + }, + { + "id": 15, + "name": "ghName", + "type": { + "type": "String" + } + }, + { + "id": 16, + "name": "ghLevel", + "type": { + "type": "Reference", + "target": "gonghui/type/gonghuiLevel" + } + }, + { + "id": 17, + "name": "ghwz", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + }, + { + "id": 18, + "name": "ghExitTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 19, + "name": "loginTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 20, + "name": "logoutTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 21, + "name": "cTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 22, + "name": "loginDays", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 23, + "name": "serverName", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 24, + "name": "sid", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 25, + "name": "onlineTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 26, + "name": "newonlinetime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 27, + "name": "isNpc", + "type": { + "type": "Boolean" + }, + "optional": true + }, + { + "id": 28, + "name": "matrix", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + }, + { + "id": 29, + "name": "matrixPos", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + } + }, + "optional": true + }, + { + "id": 30, + "name": "selectMatrix", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 31, + "name": "fightHeros", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + }, + "optional": true + }, + { + "id": 32, + "name": "helpHeros", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "jieji", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "heroId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + }, + "optional": true + }, + { + "id": 3, + "name": "heroPosId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + }, + { + "id": 2, + "type": { + "type": "Literal" + } + } + ] + }, + "optional": true + } + ] + } + }, + "optional": true + }, + { + "id": 33, + "name": "changeNameNum", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 34, + "name": "peijianUnlock", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + }, + "optional": true + }, + { + "id": 35, + "name": "headFrames", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + }, + { + "id": 36, + "name": "chatFrames", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + } + ] + }, + "gonghui/type/gonghuiLevel": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 0 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 1 + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": 2 + } + }, + { + "id": 3, + "type": { + "type": "Literal", + "literal": 3 + } + }, + { + "id": 4, + "type": { + "type": "Literal", + "literal": 4 + } + } + ] + }, + "msg_s2c/MsgPrivate/MsgPrivate": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "target": { + "type": "Reference", + "target": "msg_s2c/MsgChat/MsgChat" + }, + "keys": [ + "msg", + "time", + "otherData" + ], + "type": "Pick" + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "sender", + "type": { + "type": "Partial", + "target": { + "type": "IndexedAccess", + "index": "gud", + "objectType": { + "type": "Reference", + "target": "user/PtlLogin/ResLogin" + } + } + } + }, + { + "id": 1, + "name": "privateId", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "recipient", + "type": { + "type": "Partial", + "target": { + "type": "IndexedAccess", + "index": "gud", + "objectType": { + "type": "Reference", + "target": "user/PtlLogin/ResLogin" + } + } + }, + "optional": true + } + ] + } + } + ] + }, + "chat/PtlHelp/ReqHelp": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "helps", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "cTime", + "type": { + "type": "Number" + } + } + ] + } + } + } + ] + }, + "chat/PtlHelp/ResHelp": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "type/prizeType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "a", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "t", + "type": { + "type": "Any" + } + }, + { + "id": 2, + "name": "n", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "colour", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 4, + "name": "shiwuBuff", + "type": { + "type": "Any" + }, + "optional": true + } + ] + }, + "chat/PtlPrivate/ReqPrivate": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "msg", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "uid", + "type": { + "type": "String" + } + } + ] + }, + "chat/PtlPrivate/ResPrivate": { + "type": "Interface" + }, + "chat/PtlSend/ReqSend": { + "target": { + "type": "Reference", + "target": "msg_s2c/MsgChat/MsgChat" + }, + "keys": [ + "msg", + "type", + "otherData" + ], + "type": "Pick" + }, + "chat/PtlSend/ResSend": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "code", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "chongzhi/PtlBuyGift/ReqBuyGift": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "vip", + "type": { + "type": "Number" + } + } + ] + }, + "chongzhi/PtlBuyGift/ResBuyGift": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "chongzhi/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "chongzhi/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "payNum", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 1, + "name": "giftBuy", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + } + ] + }, + "conglinshoulie/PtlBuyNum/ReqBuyNum": { + "type": "Interface" + }, + "conglinshoulie/PtlBuyNum/ResBuyNum": { + "type": "Interface" + }, + "conglinshoulie/PtlFind/ReqFind": { + "type": "Interface" + }, + "conglinshoulie/PtlFind/ResFind": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "enemy", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "allStar", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "info", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/joinFightData" + } + } + ] + } + }, + { + "id": 1, + "name": "result", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + } + ] + }, + "../fightControl/fightType/joinFightData": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "player", + "type": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Partial", + "target": { + "type": "IndexedAccess", + "index": "gud", + "objectType": { + "type": "Reference", + "target": "../protocols/user/PtlLogin/ResLogin" + } + } + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "buff", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + }, + { + "id": 1, + "name": "side", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 2, + "name": "pos", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + }, + "optional": true + }, + { + "id": 3, + "name": "attr", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + }, + { + "id": 4, + "name": "dead", + "type": { + "type": "Boolean" + }, + "optional": true + } + ] + } + } + ] + } + }, + { + "id": 1, + "name": "roles", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/roleDataType" + } + } + } + } + ] + }, + "../protocols/user/PtlLogin/ResLogin": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "gud", + "type": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Reference", + "target": "../protocols/user/PtlLogin/playerInfo" + } + }, + { + "id": 1, + "type": { + "type": "Reference", + "target": "../protocols/user/PtlLogin/playerAttr" + } + }, + { + "id": 2, + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "../protocols/user/PtlLogin/playerAppend" + } + } + } + ] + } + }, + { + "id": 1, + "name": "openTime", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "curTime", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "firstLogin", + "type": { + "type": "Boolean" + } + }, + { + "id": 4, + "name": "otherData", + "type": { + "type": "Any" + }, + "optional": true + } + ] + }, + "../protocols/user/PtlLogin/playerInfo": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "vip", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "bindUid", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "power", + "type": { + "type": "Number" + } + } + ] + }, + "../protocols/user/PtlLogin/playerAttr": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "nexp", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "jinbi", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "rmbmoney", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "rongyu", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "payExp", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 5, + "name": "guijinshu", + "type": { + "type": "Number" + }, + "optional": true + } + ] + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + } + } + ] + }, + "../protocols/user/PtlLogin/playerAppend": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "tujianLv", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "head", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 2, + "name": "headFrame", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 3, + "name": "chatFrame", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 4, + "name": "name", + "type": { + "type": "String" + } + }, + { + "id": 5, + "name": "model", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + } + } + } + }, + { + "id": 6, + "name": "renown", + "type": { + "type": "Number" + } + }, + { + "id": 7, + "name": "wxcLv", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "ids", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + ] + } + }, + { + "id": 8, + "name": "mapId", + "type": { + "type": "Number" + } + }, + { + "id": 9, + "name": "shoucangping", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 10, + "name": "useTujianLvPoint", + "type": { + "type": "Number" + } + }, + { + "id": 11, + "name": "skills", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 12, + "name": "fightSkills", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + }, + { + "id": 13, + "name": "heroPos", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + }, + { + "id": 14, + "name": "ghId", + "type": { + "type": "String" + } + }, + { + "id": 15, + "name": "ghName", + "type": { + "type": "String" + } + }, + { + "id": 16, + "name": "ghLevel", + "type": { + "type": "Reference", + "target": "../protocols/gonghui/type/gonghuiLevel" + } + }, + { + "id": 17, + "name": "ghwz", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + }, + { + "id": 18, + "name": "ghExitTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 19, + "name": "loginTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 20, + "name": "logoutTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 21, + "name": "cTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 22, + "name": "loginDays", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 23, + "name": "serverName", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 24, + "name": "sid", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 25, + "name": "onlineTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 26, + "name": "newonlinetime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 27, + "name": "isNpc", + "type": { + "type": "Boolean" + }, + "optional": true + }, + { + "id": 28, + "name": "matrix", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + }, + { + "id": 29, + "name": "matrixPos", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + } + }, + "optional": true + }, + { + "id": 30, + "name": "selectMatrix", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 31, + "name": "fightHeros", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + }, + "optional": true + }, + { + "id": 32, + "name": "helpHeros", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "jieji", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "heroId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + }, + "optional": true + }, + { + "id": 3, + "name": "heroPosId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + }, + { + "id": 2, + "type": { + "type": "Literal" + } + } + ] + }, + "optional": true + } + ] + } + }, + "optional": true + }, + { + "id": 33, + "name": "changeNameNum", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 34, + "name": "peijianUnlock", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + }, + "optional": true + }, + { + "id": 35, + "name": "headFrames", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + }, + { + "id": 36, + "name": "chatFrames", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + } + ] + }, + "../protocols/gonghui/type/gonghuiLevel": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 0 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 1 + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": 2 + } + }, + { + "id": 3, + "type": { + "type": "Literal", + "literal": 3 + } + }, + { + "id": 4, + "type": { + "type": "Literal", + "literal": 4 + } + } + ] + }, + "../fightControl/fightType/roleDataType": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Partial", + "target": { + "type": "IndexedAccess", + "index": "", + "objectType": { + "type": "IndexedAccess", + "index": "list", + "objectType": { + "type": "Reference", + "target": "../protocols/hero/PtlGetList/ResGetList" + } + } + } + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "attr", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + } + }, + { + "id": 1, + "name": "side", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 2, + "name": "pos", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + }, + "optional": true + }, + { + "id": 3, + "name": "dead", + "type": { + "type": "Boolean" + }, + "optional": true + }, + { + "id": 4, + "name": "lockHp", + "type": { + "type": "Boolean" + }, + "optional": true + }, + { + "id": 5, + "name": "maxhp", + "type": { + "type": "Number" + }, + "optional": true + } + ] + } + }, + { + "id": 2, + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + } + } + ] + }, + "../protocols/hero/PtlGetList/ResGetList": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "list", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "heroId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 2, + "name": "lv", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "jieji", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "getTime", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 1, + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "../protocols/hero/PtlGetList/heroAddKey" + } + } + } + ] + } + } + } + }, + { + "id": 1, + "name": "pos", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + }, + { + "id": 2, + "name": "lshd", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 3, + "name": "gbzj", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Boolean" + } + } + } + } + ] + }, + "../protocols/hero/PtlGetList/heroAddKey": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "equip", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + }, + { + "id": 1, + "name": "zhanli", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "weapon", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "jieji", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "star", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "starProbability", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 3, + "name": "shiwu", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Reference", + "target": "../protocols/type/heroShiWu" + } + } + } + }, + { + "id": 4, + "name": "qiannneg", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 5, + "name": "awake", + "type": { + "type": "Number" + } + }, + { + "id": 6, + "name": "talent", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 7, + "name": "peijian", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + } + ] + }, + "../protocols/type/heroShiWu": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "target": { + "type": "IndexedAccess", + "index": "", + "objectType": { + "type": "IndexedAccess", + "index": "list", + "objectType": { + "type": "Reference", + "target": "../protocols/shiwu/PtlGetList/ResGetList" + } + } + }, + "keys": [ + "_id", + "jichu", + "fujia", + "zhuanshu" + ], + "type": "Pick" + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "shiwuId", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 1, + "name": "colour", + "type": { + "type": "Number" + }, + "optional": true + } + ] + } + } + ] + }, + "../protocols/shiwu/PtlGetList/ResGetList": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "list", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "colour", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "shiwuId", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "wearId", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "jichu", + "type": { + "type": "Array", + "elementType": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + } + } + }, + { + "id": 5, + "name": "fujia", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "colour", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "buffKey", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "buffVal", + "type": { + "type": "Number" + } + } + ] + } + } + }, + { + "id": 6, + "name": "zhuanshu", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hero", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "buff", + "type": { + "type": "Tuple", + "elementTypes": [ + { + "type": "String" + }, + { + "type": "Number" + } + ] + }, + "optional": true + }, + { + "id": 2, + "name": "skill", + "type": { + "type": "String" + }, + "optional": true + } + ] + }, + "optional": true + } + ] + } + } + } + } + ] + }, + "../fightControl/fightType/fightResult": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "winSide", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "fightLog", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../fightControl/fightType/recordDataType" + } + } + }, + { + "id": 2, + "name": "initData", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../fightControl/fightType/joinFightData" + } + } + }, + { + "id": 3, + "name": "fightData", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../fightControl/fightType/joinFightData" + } + } + }, + { + "id": 4, + "name": "totalDamage", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "0", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "1", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 5, + "name": "fightStatistics", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + } + }, + "optional": true + }, + { + "id": 6, + "name": "otherData", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "optional": true + } + ] + }, + "../fightControl/fightType/recordDataType": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Reference", + "target": "../fightControl/fightType/turn_Type" + } + }, + { + "id": 1, + "type": { + "type": "Reference", + "target": "../fightControl/fightType/atk_Type" + } + }, + { + "id": 2, + "type": { + "type": "Reference", + "target": "../fightControl/fightType/addBuff_type" + } + }, + { + "id": 3, + "type": { + "type": "Reference", + "target": "../fightControl/fightType/delBuff_type" + } + }, + { + "id": 4, + "type": { + "type": "Reference", + "target": "../fightControl/fightType/startAct_Type" + } + }, + { + "id": 5, + "type": { + "type": "Reference", + "target": "../fightControl/fightType/stopAct_Type" + } + }, + { + "id": 6, + "type": { + "type": "Reference", + "target": "../fightControl/fightType/fightEnd_Type" + } + }, + { + "id": 7, + "type": { + "type": "Reference", + "target": "../fightControl/fightType/roleDead_Type" + } + }, + { + "id": 8, + "type": { + "type": "Reference", + "target": "../fightControl/fightType/addHp_Type" + } + }, + { + "id": 9, + "type": { + "type": "Reference", + "target": "../fightControl/fightType/downHp_Type" + } + }, + { + "id": 10, + "type": { + "type": "Reference", + "target": "../fightControl/fightType/fanji_Type" + } + }, + { + "id": 11, + "type": { + "type": "Reference", + "target": "../fightControl/fightType/fuhuo_Type" + } + }, + { + "id": 12, + "type": { + "type": "Reference", + "target": "../fightControl/fightType/chongsheng_Type" + } + }, + { + "id": 13, + "type": { + "type": "Reference", + "target": "../fightControl/fightType/playerNuqi_Type" + } + } + ] + }, + "../fightControl/fightType/turn_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "trun" + } + }, + { + "id": 1, + "name": "roundNums", + "type": { + "type": "Number" + } + } + ] + }, + "../fightControl/fightType/atk_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "atk" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "targets", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + }, + { + "id": 3, + "name": "skillId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 4, + "name": "rolesInfo", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/atkRoleInfo_Type" + } + } + } + } + ] + }, + "../fightControl/fightType/atkRoleInfo_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "ov", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "nv", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "miss", + "type": { + "type": "Boolean" + } + }, + { + "id": 3, + "name": "baoji", + "type": { + "type": "Boolean" + } + } + ] + }, + "../fightControl/fightType/addBuff_type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "addBuff" + } + }, + { + "id": 1, + "name": "toRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "skillId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 4, + "name": "buffType", + "type": { + "type": "String" + } + }, + { + "id": 5, + "name": "buffId", + "type": { + "type": "String" + } + } + ] + }, + "../fightControl/fightType/delBuff_type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "delBuff" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "skillId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 3, + "name": "buffId", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "buffType", + "type": { + "type": "String" + } + }, + { + "id": 5, + "name": "why", + "type": { + "type": "String" + }, + "optional": true + } + ] + }, + "../fightControl/fightType/startAct_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "startAct" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + } + ] + }, + "../fightControl/fightType/stopAct_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "stopAct" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + } + ] + }, + "../fightControl/fightType/fightEnd_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "fightEnd" + } + }, + { + "id": 1, + "name": "winSide", + "type": { + "type": "Number" + } + } + ] + }, + "../fightControl/fightType/roleDead_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "roleDead" + } + }, + { + "id": 1, + "name": "isFuhou", + "type": { + "type": "Boolean" + } + }, + { + "id": 2, + "name": "fromRole", + "type": { + "type": "String" + } + } + ] + }, + "../fightControl/fightType/addHp_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "addHp" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "why", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "buffId", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "nv", + "type": { + "type": "Number" + } + }, + { + "id": 5, + "name": "ov", + "type": { + "type": "Number" + } + } + ] + }, + "../fightControl/fightType/downHp_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "downHp" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "why", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "buffId", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "nv", + "type": { + "type": "Number" + } + }, + { + "id": 5, + "name": "ov", + "type": { + "type": "Number" + } + } + ] + }, + "../fightControl/fightType/fanji_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "fanji" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "targets", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + }, + { + "id": 3, + "name": "skillId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 4, + "name": "rolesInfo", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/atkRoleInfo_Type" + } + } + } + } + ] + }, + "../fightControl/fightType/fuhuo_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "fuhuo" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "target", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "nv", + "type": { + "type": "Number" + } + } + ] + }, + "../fightControl/fightType/chongsheng_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "chongsheng" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "target", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "nv", + "type": { + "type": "Number" + } + } + ] + }, + "../fightControl/fightType/playerNuqi_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "playerNuqi" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "maxnuqi", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "nuqi", + "type": { + "type": "Number" + } + } + ] + }, + "conglinshoulie/PtlGetLog/ReqGetLog": { + "type": "Interface" + }, + "conglinshoulie/PtlGetLog/ResGetLog": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + }, + "conglinshoulie/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "conglinshoulie/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "allStar", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "useFightNum", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "buyFightNum", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "fightWinNum", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "recWinPrize", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + ] + }, + "conglinshoulie/PtlRec/ReqRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "conglinshoulie/PtlRec/ResRec": { + "type": "Interface" + }, + "dixiaheishi/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "dixiaheishi/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "tqyk", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + } + ], + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "dixialeitai/PtlBuy/ReqBuy": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + } + ] + }, + "dixialeitai/PtlBuy/ResBuy": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "change", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "dixialeitai/PtlOpen/ResOpen" + } + } + }, + { + "id": 1, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "dixialeitai/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "shop", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "name", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "buyNum", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "need", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "a", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "t", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "n", + "type": { + "type": "Number" + } + } + ], + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + } + } + }, + { + "id": 4, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "a", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "t", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "n", + "type": { + "type": "Number" + } + } + ], + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + } + } + }, + { + "id": 5, + "name": "useBuyNum", + "type": { + "type": "Number" + } + } + ] + } + } + } + }, + { + "id": 1, + "name": "heros", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/roleDataType" + } + } + } + }, + { + "id": 2, + "name": "curLayer", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "maxLayer", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "curMaxLayer", + "type": { + "type": "Number" + } + }, + { + "id": 5, + "name": "toDayLayer", + "type": { + "type": "Number" + } + }, + { + "id": 6, + "name": "recordLayer", + "type": { + "type": "Number" + } + }, + { + "id": 7, + "name": "item", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 8, + "name": "buff", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 9, + "name": "saodang", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "item", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + }, + { + "id": 1, + "name": "buff", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + }, + { + "id": 2, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + }, + "optional": true + }, + { + "id": 3, + "name": "mibaoNum", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 4, + "name": "shop", + "type": { + "type": "Boolean" + }, + "optional": true + } + ] + }, + "optional": true + }, + { + "id": 10, + "name": "enemyState", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hp", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "maxHp", + "type": { + "type": "Number" + } + } + ] + } + } + } + }, + { + "id": 11, + "name": "over", + "type": { + "type": "Boolean" + } + }, + { + "id": 12, + "name": "resetTime", + "type": { + "type": "Number" + } + }, + { + "id": 13, + "name": "killPrizeRec", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 14, + "name": "passPrizeRec", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 15, + "name": "mibao", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 16, + "name": "killBoss", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "dixialeitai/PtlFight/ReqFight": { + "type": "String" + }, + "dixialeitai/PtlFight/ResFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "change", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "dixialeitai/PtlOpen/ResOpen" + } + } + }, + { + "id": 1, + "name": "result", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + }, + { + "id": 2, + "name": "fightPrize", + "type": { + "type": "IndexedAccess", + "index": "saodang", + "objectType": { + "type": "Reference", + "target": "dixialeitai/PtlOpen/ResOpen" + } + } + }, + { + "id": 3, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "dixialeitai/PtlNext/ReqNext": { + "type": "Interface" + }, + "dixialeitai/PtlNext/ResNext": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "change", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "dixialeitai/PtlOpen/ResOpen" + } + } + } + ] + }, + "dixialeitai/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "dixialeitai/PtlRecMiBao/ReqRecMiBao": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + } + ] + }, + "dixialeitai/PtlRecMiBao/ResRecMiBao": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "change", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "dixialeitai/PtlOpen/ResOpen" + } + } + }, + { + "id": 1, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "dixialeitai/PtlRecPrize/ReqRecPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "killPrizeRec" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "passPrizeRec" + } + } + ] + } + } + ] + }, + "dixialeitai/PtlRecPrize/ResRecPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "change", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "dixialeitai/PtlOpen/ResOpen" + } + } + }, + { + "id": 1, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "dixialeitai/PtlSetDef/ReqSetDef": { + "type": "Array", + "elementType": { + "type": "String" + } + }, + "dixialeitai/PtlSetDef/ResSetDef": { + "type": "Interface" + }, + "dixialeitai/PtlUseItem/ReqUseItem": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "pos", + "type": { + "type": "String" + }, + "optional": true + } + ] + }, + "dixialeitai/PtlUseItem/ResUseItem": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "change", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "dixialeitai/PtlOpen/ResOpen" + } + } + }, + { + "id": 1, + "name": "fightPrize", + "type": { + "type": "IndexedAccess", + "index": "saodang", + "objectType": { + "type": "Reference", + "target": "dixialeitai/PtlOpen/ResOpen" + } + }, + "optional": true + }, + { + "id": 2, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + }, + "optional": true + } + ] + }, + "dixiaqianzhuang/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "dixiaqianzhuang/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + } + } + ] + }, + "dixiaqianzhuang/PtlQf/ReqQf": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 1 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 10 + } + } + ] + } + } + ] + }, + "dixiaqianzhuang/PtlQf/ResQf": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "changeData", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "dixiaqianzhuang/PtlOpen/ResOpen" + } + }, + "optional": true + }, + { + "id": 2, + "name": "bj", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "1", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 1, + "name": "2", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 2, + "name": "3", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "optional": true + } + ] + }, + "email/PtlAllReceive/ReqAllReceive": { + "type": "Interface" + }, + "email/PtlAllReceive/ResAllReceive": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "change", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Boolean" + } + } + } + } + ] + }, + "email/PtlAllRemove/ReqAllRemove": { + "type": "Interface" + }, + "email/PtlAllRemove/ResAllRemove": { + "type": "Array", + "elementType": { + "type": "String" + } + }, + "email/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "email/PtlOpen/ResOpen": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "system" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "gm" + } + } + ] + } + }, + { + "id": 3, + "name": "title", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "content", + "type": { + "type": "String" + } + }, + { + "id": 5, + "name": "createTime", + "type": { + "type": "Number" + } + }, + { + "id": 6, + "name": "prizeData", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "isGet", + "type": { + "type": "Boolean" + } + } + ] + }, + "optional": true + }, + { + "id": 7, + "name": "contentInsertArr", + "type": { + "type": "Array", + "elementType": { + "type": "Any" + } + }, + "optional": true + }, + { + "id": 8, + "name": "prizelist", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + }, + "optional": true + }, + { + "id": 9, + "name": "dellist", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + }, + "optional": true + }, + { + "id": 10, + "name": "emailRead", + "type": { + "type": "Boolean" + }, + "optional": true + } + ] + } + } + }, + "email/PtlRead/ReqRead": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + } + ] + }, + "email/PtlRead/ResRead": { + "type": "Array", + "elementType": { + "type": "String" + } + }, + "email/PtlReceive/ReqReceive": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + } + ] + }, + "email/PtlReceive/ResReceive": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "change", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Boolean" + } + } + } + } + ] + }, + "email/PtlRemove/ReqRemove": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + } + ] + }, + "email/PtlRemove/ResRemove": { + "type": "Array", + "elementType": { + "type": "String" + } + }, + "equip/PtlAdjustment/ReqAdjustment": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "equipId", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "num", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 1 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 10 + } + } + ] + } + } + ] + }, + "equip/PtlAdjustment/ResAdjustment": { + "type": "Interface" + }, + "equip/PtlGetList/ReqGetList": { + "type": "Interface" + }, + "equip/PtlGetList/ResGetList": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "list", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "lv", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "star", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "equipId", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "wearaId", + "type": { + "type": "String" + } + }, + { + "id": 5, + "name": "getTime", + "type": { + "type": "Number" + } + }, + { + "id": 6, + "name": "adjustment", + "type": { + "type": "Number" + }, + "optional": true + } + ] + } + } + } + }, + { + "id": 1, + "name": "lshd", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + } + ] + }, + "equip/PtlLvUp/ReqLvUp": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "equipId", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "upLv", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 1 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 10 + } + } + ] + } + } + ] + }, + "equip/PtlLvUp/ResLvUp": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "addlv", + "type": { + "type": "Number" + } + } + ] + }, + "equip/PtlOneKeyLvUp/ReqOneKeyLvUp": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "heroId", + "type": { + "type": "String" + } + } + ] + }, + "equip/PtlOneKeyLvUp/ResOneKeyLvUp": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "posLvUp", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 1, + "name": "log", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 2, + "name": "allNeed", + "type": { + "type": "Array", + "elementType": { + "type": "Any" + } + } + } + ] + }, + "equip/PtlOneKeyTakeOff/ReqOneKeyTakeOff": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "h_id", + "type": { + "type": "String" + } + } + ] + }, + "equip/PtlOneKeyTakeOff/ResOneKeyTakeOff": { + "type": "Interface" + }, + "equip/PtlOneKeyWear/ReqOneKeyWear": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "heroId", + "type": { + "type": "String" + } + } + ] + }, + "equip/PtlOneKeyWear/ResOneKeyWear": { + "type": "Interface" + }, + "equip/PtlReset/ReqReset": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_ids", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + }, + { + "id": 1, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "cj" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "cz" + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": "yl" + } + } + ] + } + } + ] + }, + "equip/PtlReset/ResReset": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "equip/PtlStarUp/ReqStarUp": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "equipId", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "equipArr", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + } + ] + }, + "equip/PtlStarUp/ResStarUp": { + "type": "Interface" + }, + "equip/PtlTakeOff/ReqTakeOff": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "equipId", + "type": { + "type": "String" + } + } + ] + }, + "equip/PtlTakeOff/ResTakeOff": { + "type": "Interface" + }, + "equip/PtlWear/ReqWear": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "heroId", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "equipId", + "type": { + "type": "String" + } + } + ] + }, + "equip/PtlWear/ResWear": { + "type": "Interface" + }, + "event/136Gift/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "event/136Gift/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "recIndex", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + ] + }, + "event/136Gift/PtlRec/ReqRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "event/136Gift/PtlRec/ResRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "event/chuanshuozhilu/PtlOpen/ReqOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdid", + "type": { + "type": "Number" + } + } + ] + }, + "event/chuanshuozhilu/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "info", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Partial", + "target": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "jieji", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "rec", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 3, + "name": "box", + "type": { + "type": "Boolean" + } + } + ] + } + } + } + } + }, + { + "id": 1, + "name": "hdinfo", + "type": { + "type": "Reference", + "target": "../../monopoly/protocols/PtlAddHuoDong/ReqAddHuoDong" + } + } + ] + }, + "../../monopoly/protocols/PtlAddHuoDong/ReqAddHuoDong": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdid", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "htype", + "type": { + "type": "Reference", + "target": "../../monopoly/protocols/PtlAddHuoDong/Htypes" + } + }, + { + "id": 2, + "name": "stype", + "type": { + "type": "Reference", + "target": "../../monopoly/protocols/PtlAddHuoDong/Stypes" + } + }, + { + "id": 3, + "name": "ttype", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 0 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 1 + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": 4 + } + } + ] + } + }, + { + "id": 4, + "name": "stime", + "type": { + "type": "Number" + } + }, + { + "id": 5, + "name": "rtime", + "type": { + "type": "Number" + } + }, + { + "id": 6, + "name": "etime", + "type": { + "type": "Number" + } + }, + { + "id": 7, + "name": "showtime", + "type": { + "type": "String" + } + }, + { + "id": 8, + "name": "data", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + } + }, + { + "id": 9, + "name": "name", + "type": { + "type": "String" + } + }, + { + "id": 10, + "name": "icon", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 11, + "name": "opencond", + "type": { + "type": "String" + }, + "optional": true + } + ] + }, + "../../monopoly/protocols/PtlAddHuoDong/Htypes": { + "type": "Number" + }, + "../../monopoly/protocols/PtlAddHuoDong/Stypes": { + "type": "Number" + }, + "event/chuanshuozhilu/PtlRec/ReqRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "task" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "box" + } + } + ] + } + }, + { + "id": 1, + "name": "index", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 2, + "name": "hdid", + "type": { + "type": "Number" + } + } + ] + }, + "event/chuanshuozhilu/PtlRec/ResRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "event/diaoluoduihuan/PtlGet/ReqGet": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "duihuan" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "shop" + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": "gift" + } + } + ] + } + }, + { + "id": 1, + "name": "index", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "nums", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 3, + "name": "hdid", + "type": { + "type": "Number" + } + } + ] + }, + "event/diaoluoduihuan/PtlGet/ResGet": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "event/diaoluoduihuan/PtlOpen/ReqOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdid", + "type": { + "type": "Number" + } + } + ] + }, + "event/diaoluoduihuan/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "record", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + } + } + }, + { + "id": 1, + "name": "hdinfo", + "type": { + "type": "Reference", + "target": "../../monopoly/protocols/PtlAddHuoDong/ReqAddHuoDong" + } + } + ] + }, + "event/huobanzhaomu/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "event/huobanzhaomu/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "finish", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Boolean" + } + } + } + }, + { + "id": 1, + "name": "rec", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + ] + }, + "event/huobanzhaomu/PtlRec/ReqRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "event/huobanzhaomu/PtlRec/ResRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "event/jierihuodong/PtlGet/ReqGet": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "index", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "duihuan" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "libao" + } + } + ] + } + } + ] + }, + "event/jierihuodong/PtlGet/ResGet": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "event/jierihuodong/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "event/jierihuodong/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "recLogin", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 1, + "name": "recTask", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 2, + "name": "recordDuihuan", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 3, + "name": "recordLibao", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 4, + "name": "taskFinish", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + } + ] + }, + "event/jierihuodong/PtlRec/ReqRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "login" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "task" + } + } + ] + } + }, + { + "id": 1, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "event/jierihuodong/PtlRec/ResRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "event/jijin/PtlCheckOpen/ReqCheckOpen": { + "type": "Interface" + }, + "event/jijin/PtlCheckOpen/ResCheckOpen": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Boolean" + } + } + }, + "event/jijin/PtlOpen/ReqOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "Reference", + "target": "event/jijin/PtlOpen/jijinType" + } + } + ] + }, + "event/jijin/PtlOpen/jijinType": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "dengjijijin" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "guanqiajijin" + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": "dayjijin" + } + }, + { + "id": 3, + "type": { + "type": "Literal", + "literal": "tianshujijin" + } + } + ] + }, + "event/jijin/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "isPay", + "type": { + "type": "Boolean" + } + }, + { + "id": 1, + "name": "rec", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "pt", + "type": { + "type": "Boolean" + } + }, + { + "id": 1, + "name": "tq", + "type": { + "type": "Boolean" + } + } + ] + } + } + } + }, + { + "id": 2, + "name": "finished", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "round", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "event/jijin/PtlReceive/ReqReceive": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "Reference", + "target": "event/jijin/PtlOpen/jijinType" + } + }, + { + "id": 1, + "name": "recIndexs", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + ] + }, + "event/jijin/PtlReceive/ResReceive": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "rec", + "type": { + "type": "IndexedAccess", + "index": "rec", + "objectType": { + "type": "Reference", + "target": "event/jijin/PtlOpen/ResOpen" + } + } + } + ] + }, + "event/kaifukuanghuan/PtlLoginPrize/ReqLoginPrize": { + "type": "Interface" + }, + "event/kaifukuanghuan/PtlLoginPrize/ResLoginPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "event/kaifukuanghuan/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "event/kaifukuanghuan/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "day", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "receiveLogin", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 2, + "name": "buyShop", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 3, + "name": "receiveTask", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + } + }, + { + "id": 4, + "name": "taskFinished", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 5, + "name": "receiveBox", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + ] + }, + "event/kaifukuanghuan/PtlShopBuy/ReqShopBuy": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "buyNum", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "event/kaifukuanghuan/PtlShopBuy/ResShopBuy": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "event/kaifukuanghuan/PtlTaskBox/ReqTaskBox": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "event/kaifukuanghuan/PtlTaskBox/ResTaskBox": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "event/kaifukuanghuan/PtlTaskPrize/ReqTaskPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "day", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "event/kaifukuanghuan/PtlTaskPrize/ResTaskPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "event/leijichongzhi/PtlOpen/ReqOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdid", + "type": { + "type": "Number" + } + } + ] + }, + "event/leijichongzhi/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "sTime", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "recIndex", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 2, + "name": "payNum", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "hdinfo", + "type": { + "type": "Reference", + "target": "../../monopoly/protocols/PtlAddHuoDong/ReqAddHuoDong" + } + } + ] + }, + "event/leijichongzhi/PtlRec/ReqRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "hdid", + "type": { + "type": "Number" + } + } + ] + }, + "event/leijichongzhi/PtlRec/ResRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "event/niudanji/PtlLottery/ReqLottery": { + "type": "Interface" + }, + "event/niudanji/PtlLottery/ResLottery": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "event/niudanji/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "event/niudanji/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hasNum", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "useNum", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "logs", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "name", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "item", + "type": { + "type": "Reference", + "target": "type/prizeType" + } + } + ] + } + }, + "optional": true + } + ] + }, + "event/qirichongzhi/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "event/qirichongzhi/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "sTime", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "round", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "finished", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "recIndexs", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + ] + }, + "event/qirichongzhi/PtlRec/ReqRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "event/qirichongzhi/PtlRec/ResRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "event/qiridenglu/PtlOpen/ReqOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdid", + "type": { + "type": "Number" + } + } + ] + }, + "event/qiridenglu/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "loginDay", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "recPrize", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 2, + "name": "hdinfo", + "type": { + "type": "Reference", + "target": "../../monopoly/protocols/PtlAddHuoDong/ReqAddHuoDong" + } + } + ] + }, + "event/qiridenglu/PtlRecPrize/ReqRecPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "inedx", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "hdid", + "type": { + "type": "Number" + } + } + ] + }, + "event/qiridenglu/PtlRecPrize/ResRecPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "event/shiwuleichong/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "event/shiwuleichong/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "sTime", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "recIndex", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 3, + "name": "payDay", + "type": { + "type": "Number" + } + } + ] + }, + "event/shiwuleichong/PtlRec/ReqRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "event/shiwuleichong/PtlRec/ResRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "event/shouchong/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "event/shouchong/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "payNum", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "receive", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + } + } + ] + }, + "event/shouchong/PtlReceive/ReqReceive": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "k", + "type": { + "type": "String" + } + } + ] + }, + "event/shouchong/PtlReceive/ResReceive": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "event/xianshizhaomu/PtlBuy/ReqBuy": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "event/xianshizhaomu/PtlBuy/ResBuy": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "event/xianshizhaomu/PtlDuihuan/ReqDuihuan": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "event/xianshizhaomu/PtlDuihuan/ResDuihuan": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "event/xianshizhaomu/PtlLottery/ReqLottery": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "one" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "ten" + } + } + ] + } + } + ] + }, + "event/xianshizhaomu/PtlLottery/ResLottery": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "lotteryPrize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "event/xianshizhaomu/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "event/xianshizhaomu/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "recordNum", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "recordOneNum", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "recordPrize", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 3, + "name": "recordDuihuan", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 4, + "name": "recordBuy", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + } + ] + }, + "event/xianshizhaomu/PtlRec/ReqRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "event/xianshizhaomu/PtlRec/ResRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "event/xinshoulibao/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "event/xinshoulibao/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "sTime", + "type": { + "type": "Number" + } + } + ] + }, + "event/yangchengmubiao/PtlBuy/ReqBuy": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdid", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "event/yangchengmubiao/PtlBuy/ResBuy": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "event/yangchengmubiao/PtlOpen/ReqOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdid", + "type": { + "type": "Number" + } + } + ] + }, + "event/yangchengmubiao/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "mydata", + "type": { + "type": "Reference", + "target": "event/yangchengmubiao/PtlOpen/yangchengmubiao" + } + }, + { + "id": 1, + "name": "hdinfo", + "type": { + "type": "Reference", + "target": "../../monopoly/protocols/PtlAddHuoDong/ReqAddHuoDong" + } + } + ] + }, + "event/yangchengmubiao/PtlOpen/yangchengmubiao": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "hdid", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "taskval", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 4, + "name": "finishid", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "1", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 1, + "name": "2", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 2, + "name": "3", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + ], + "indexSignature": { + "keyType": "String", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + } + }, + { + "id": 5, + "name": "refresh", + "type": { + "type": "Number" + } + }, + { + "id": 6, + "name": "lunci", + "type": { + "type": "Number" + } + }, + { + "id": 7, + "name": "record", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + } + ] + }, + "event/yangchengmubiao/PtlRec/ReqRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdid", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "taskid", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "type", + "type": { + "type": "Number" + } + } + ] + }, + "event/yangchengmubiao/PtlRec/ResRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "mydata", + "type": { + "type": "Reference", + "target": "event/yangchengmubiao/PtlOpen/yangchengmubiao" + } + } + ] + }, + "event/yibaichou/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "event/yibaichou/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "loginRec", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 1, + "name": "onlineRec", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + ] + }, + "event/yibaichou/PtlRec/ReqRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "online" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "login" + } + } + ] + } + }, + { + "id": 1, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "event/yibaichou/PtlRec/ResRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "event/yibaichou/PtlRecAll/ReqRecAll": { + "type": "Interface" + }, + "event/yibaichou/PtlRecAll/ResRecAll": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "change", + "type": { + "type": "Reference", + "target": "event/yibaichou/PtlOpen/ResOpen" + } + } + ] + }, + "event/yuedujijin/PtlOpen/ReqOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "String" + } + } + ] + }, + "event/yuedujijin/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "rec", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 1, + "name": "days", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "round", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "event/yuedujijin/PtlRec/ReqRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "event/yuedujijin/PtlRec/ResRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "event/zhanling/PtlBuyLv/ReqBuyLv": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Number" + } + } + ] + }, + "event/zhanling/PtlBuyLv/ResBuyLv": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "change", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "event/zhanling/PtlOpen/ResOpen" + } + } + } + ] + }, + "event/zhanling/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "exp", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "rec", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "pt", + "type": { + "type": "Boolean" + } + }, + { + "id": 1, + "name": "tq", + "type": { + "type": "Boolean" + } + } + ] + } + } + } + }, + { + "id": 3, + "name": "isPay", + "type": { + "type": "Boolean" + } + }, + { + "id": 4, + "name": "taskRec", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 5, + "name": "taskFinished", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + } + ] + }, + "event/zhanling/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "event/zhanling/PtlRecPrize/ReqRecPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "recIndexs", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + ] + }, + "event/zhanling/PtlRecPrize/ResRecPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "change", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "event/zhanling/PtlOpen/ResOpen" + } + } + } + ] + }, + "event/zhanling/PtlRecTask/ReqRecTask": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "event/zhanling/PtlRecTask/ResRecTask": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "change", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "event/zhanling/PtlOpen/ResOpen" + } + } + } + ] + }, + "event/zhoulibao/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "event/zhoulibao/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "sTime", + "type": { + "type": "Number" + } + } + ] + }, + "event/zixuanlibao/PtlBuy/ReqBuy": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "prizeIndex", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 2, + "name": "hdid", + "type": { + "type": "Number" + } + } + ] + }, + "event/zixuanlibao/PtlBuy/ResBuy": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "event/zixuanlibao/PtlOpen/ReqOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdid", + "type": { + "type": "Number" + } + } + ] + }, + "event/zixuanlibao/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "record", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 1, + "name": "hdinfo", + "type": { + "type": "Reference", + "target": "../../monopoly/protocols/PtlAddHuoDong/ReqAddHuoDong" + } + } + ] + }, + "eventlist/PtlhdGetList/ReqhdGetList": { + "type": "Interface" + }, + "eventlist/PtlhdGetList/ReshdGetList": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdlist", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../../monopoly/protocols/PtlAddHuoDong/ReqAddHuoDong" + } + } + } + ] + }, + "friend/PtlApply/ReqApply": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + } + ] + }, + "friend/PtlApply/ResApply": { + "type": "Interface" + }, + "friend/PtlDel/ReqDel": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + } + ] + }, + "friend/PtlDel/ResDel": { + "type": "Interface" + }, + "friend/PtlGift/ReqGift": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "send" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "get" + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": "yijian" + } + } + ] + } + }, + { + "id": 1, + "name": "uid", + "type": { + "type": "String" + }, + "optional": true + } + ] + }, + "friend/PtlGift/ResGift": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "change", + "type": { + "type": "Partial", + "target": { + "target": { + "type": "Reference", + "target": "friend/PtlOpen/ResOpen" + }, + "keys": [ + "recGift", + "sendGift" + ], + "type": "Pick" + } + } + } + ] + }, + "friend/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "recGift", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + }, + { + "id": 1, + "name": "getGift", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 2, + "name": "sendGift", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + }, + { + "id": 3, + "name": "applyList", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + }, + { + "id": 4, + "name": "blacklist", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + }, + { + "id": 5, + "name": "friendList", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + }, + { + "id": 6, + "name": "myApplyList", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + }, + "optional": true + } + ] + }, + "friend/PtlList/ReqList": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "tuijian" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "friend" + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": "apply" + } + }, + { + "id": 3, + "type": { + "type": "Literal", + "literal": "black" + } + } + ] + }, + "friend/PtlList/ResList": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "user/type/player" + } + }, + "user/type/player": { + "type": "IndexedAccess", + "index": "gud", + "objectType": { + "type": "Reference", + "target": "user/PtlLogin/ResLogin" + } + }, + "friend/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "friend/PtlRespond/ReqRespond": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "agree", + "type": { + "type": "Boolean" + } + } + ] + }, + "friend/PtlRespond/ResRespond": { + "type": "Interface" + }, + "friend/PtlRmBlackList/ReqRmBlackList": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "rm", + "type": { + "type": "Boolean" + } + } + ] + }, + "friend/PtlRmBlackList/ResRmBlackList": { + "type": "Interface" + }, + "friend/PtlSearch/ReqSearch": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "name", + "type": { + "type": "String" + } + } + ] + }, + "friend/PtlSearch/ResSearch": { + "type": "Reference", + "target": "user/type/player" + }, + "ganbutexun/PtlChallenge/ReqChallenge": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + } + ] + }, + "ganbutexun/PtlChallenge/ResChallenge": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "addluck", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "fightobj", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + }, + { + "id": 2, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "ganbutexun/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "ganbutexun/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "luck", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + } + ] + }, + "ganhai/PtlFast/ReqFast": { + "type": "Interface" + }, + "ganhai/PtlFast/ResFast": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "change", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "ganhai/PtlOpen/ResOpen" + } + } + } + ] + }, + "ganhai/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "useRefreshNum", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "useEscortNum", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "useFightNum", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "ships", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "ganhai/PtlOpen/shipType" + } + } + }, + { + "id": 4, + "name": "myShips", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 5, + "name": "ship", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Reference", + "target": "ganhai/PtlOpen/shipType" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": null + } + } + ] + } + }, + { + "id": 6, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + }, + "optional": true + } + ] + }, + "ganhai/PtlOpen/shipType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "sTime", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "beFightNum", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "player", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/joinFightData" + } + } + ] + }, + "ganhai/PtlFight/ReqFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "ganhai/PtlFight/ResFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + }, + "optional": true + }, + { + "id": 1, + "name": "result", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + }, + { + "id": 2, + "name": "change", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "ganhai/PtlOpen/ResOpen" + } + } + } + ] + }, + "ganhai/PtlLog/ReqLog": { + "type": "Interface" + }, + "ganhai/PtlLog/ResLog": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + }, + "ganhai/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "ganhai/PtlRefresh/ReqRefresh": { + "type": "Interface" + }, + "ganhai/PtlRefresh/ResRefresh": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "change", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "ganhai/PtlOpen/ResOpen" + } + } + } + ] + }, + "ganhai/PtlRefreshShip/ReqRefreshShip": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "yjzg", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 0 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 1 + } + } + ] + }, + "optional": true + } + ] + }, + "ganhai/PtlRefreshShip/ResRefreshShip": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "change", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "ganhai/PtlOpen/ResOpen" + } + } + } + ] + }, + "ganhai/PtlSelect/ReqSelect": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "ganhai/PtlSelect/ResSelect": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "change", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "ganhai/PtlOpen/ResOpen" + } + } + } + ] + }, + "gonghui/PtlApply/ReqApply": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "apply", + "type": { + "type": "Boolean" + } + } + ] + }, + "gonghui/PtlApply/ResApply": { + "type": "Interface" + }, + "gonghui/PtlApplyAll/ReqApplyAll": { + "type": "Boolean" + }, + "gonghui/PtlApplyAll/ResApplyAll": { + "type": "Interface" + }, + "gonghui/PtlApplyList/ReqApplyList": { + "type": "Interface" + }, + "gonghui/PtlApplyList/ResApplyList": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "player", + "type": { + "type": "Reference", + "target": "user/type/player" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + } + }, + "gonghui/PtlChange/ReqChange": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "name", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 1, + "name": "setting", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "gonghui/type/gonghuiSetting" + } + }, + "optional": true + } + ] + }, + "gonghui/type/gonghuiSetting": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "badge", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "joinLv", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "notice", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "autoJoin", + "type": { + "type": "Boolean" + } + } + ] + }, + "gonghui/PtlChange/ResChange": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "name", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 1, + "name": "setting", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "gonghui/type/gonghuiSetting" + } + }, + "optional": true + } + ] + }, + "gonghui/PtlCreate/ReqCreate": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "target": { + "type": "Reference", + "target": "gonghui/type/gonghuiBase" + }, + "keys": [ + "name" + ], + "type": "Pick" + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "setting", + "type": { + "target": { + "type": "Reference", + "target": "gonghui/type/gonghuiSetting" + }, + "keys": [ + "badge" + ], + "type": "Pick" + } + } + ] + } + } + ] + }, + "gonghui/type/gonghuiBase": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "exp", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "name", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "setting", + "type": { + "type": "Reference", + "target": "gonghui/type/gonghuiSetting" + } + }, + { + "id": 5, + "name": "createTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 6, + "name": "createPlayer", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "user/type/player" + } + } + }, + { + "id": 7, + "name": "players", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "level", + "type": { + "type": "Reference", + "target": "gonghui/type/gonghuiLevel" + } + }, + { + "id": 2, + "name": "joinTime", + "type": { + "type": "Number" + } + } + ] + } + } + }, + { + "id": 8, + "name": "applyList", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + } + }, + "optional": true + }, + { + "id": 9, + "name": "lsgx", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + }, + { + "id": 10, + "name": "tanhe", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + }, + "optional": true + }, + { + "id": 11, + "name": "task", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "finised", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "refreshTime", + "type": { + "type": "Number" + } + } + ] + }, + "optional": true + }, + { + "id": 12, + "name": "fuben", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "dps", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 2, + "name": "bossInfo", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hp", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "maxHp", + "type": { + "type": "Number" + } + } + ] + } + } + } + } + ] + }, + "optional": true + } + ] + }, + "gonghui/PtlCreate/ResCreate": { + "type": "Interface" + }, + "gonghui/PtlDissolve/ReqDissolve": { + "type": "Interface" + }, + "gonghui/PtlDissolve/ResDissolve": { + "type": "Interface" + }, + "gonghui/PtlExit/ReqExit": { + "type": "Interface" + }, + "gonghui/PtlExit/ResExit": { + "type": "Interface" + }, + "gonghui/PtlFbBuyNum/ReqFbBuyNum": { + "type": "Interface" + }, + "gonghui/PtlFbBuyNum/ResFbBuyNum": { + "type": "Interface" + }, + "gonghui/PtlFbFight/ReqFbFight": { + "type": "Interface" + }, + "gonghui/PtlFbFight/ResFbFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "result", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + } + ] + }, + "gonghui/PtlFbOpen/ReqFbOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "fbId", + "type": { + "type": "String" + } + } + ] + }, + "gonghui/PtlFbOpen/ResFbOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "rankList", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "player", + "type": { + "type": "Reference", + "target": "user/type/player" + } + }, + { + "id": 1, + "name": "dps", + "type": { + "type": "Number" + } + } + ] + } + } + }, + { + "id": 1, + "name": "fightNum", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "addNum", + "type": { + "type": "Number" + } + } + ] + }, + "gonghui/PtlGetList/ReqGetList": { + "type": "Interface" + }, + "gonghui/PtlGetList/ResGetList": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "list", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "gh", + "type": { + "type": "Reference", + "target": "gonghui/type/gonghuiBase" + } + }, + { + "id": 1, + "name": "zhanli", + "type": { + "type": "Number" + } + } + ] + } + } + } + ] + }, + "gonghui/PtlJoin/ReqJoin": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + } + ] + }, + "gonghui/PtlJoin/ResJoin": { + "type": "Interface" + }, + "gonghui/PtlJx/ReqJx": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "gonghui/PtlJx/ResJx": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "change", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "gonghui/type/gonghuiBase" + } + } + } + ] + }, + "gonghui/PtlJxOpen/ReqJxOpen": { + "type": "Interface" + }, + "gonghui/PtlJxOpen/ResJxOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "record", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "Number", + "type": { + "type": "Number" + } + } + } + } + ] + }, + "gonghui/PtlList/ReqList": { + "type": "Interface" + }, + "gonghui/PtlList/ResList": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "player", + "type": { + "type": "Reference", + "target": "user/type/player" + } + }, + { + "id": 1, + "name": "lsgx", + "type": { + "type": "Number" + } + } + ] + } + }, + "gonghui/PtlManage/ReqManage": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "level", + "type": { + "type": "Reference", + "target": "gonghui/type/gonghuiLevel" + } + } + ] + }, + "gonghui/PtlManage/ResManage": { + "type": "Interface" + }, + "gonghui/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "gonghui/PtlOpen/ResOpen": { + "type": "Reference", + "target": "gonghui/type/gonghuiBase" + }, + "gonghui/PtlTanHe/ReqTanHe": { + "type": "Interface" + }, + "gonghui/PtlTanHe/ResTanHe": { + "type": "Interface" + }, + "gonghui/PtlTaskOpen/ReqTaskOpen": { + "type": "Interface" + }, + "gonghui/PtlTaskOpen/ResTaskOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "ghRec", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 1, + "name": "myRec", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 2, + "name": "progress", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + } + ] + }, + "gonghui/PtlTaskReceive/ReqTaskReceive": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "gh" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "my" + } + } + ] + } + }, + { + "id": 1, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "gonghui/PtlTaskReceive/ResTaskReceive": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "gonghui/PtlUpWz/ReqUpWz": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "String" + } + } + ] + }, + "gonghui/PtlUpWz/ResUpWz": { + "type": "Interface" + }, + "gonghuibaozang/PtlLottery/ReqLottery": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 1 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 10 + } + } + ] + } + } + ] + }, + "gonghuibaozang/PtlLottery/ResLottery": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "changeData", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "gonghuibaozang/PtlOpen/ResOpen" + } + }, + "optional": true + } + ] + }, + "gonghuibaozang/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "cjlog", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "name", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "ctime", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "_id", + "type": { + "type": "String" + }, + "optional": true + } + ] + } + } + } + ] + }, + "gonghuibaozang/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "gonglukuangbiao/PtlBuy/ReqBuy": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + } + } + ] + }, + "gonglukuangbiao/PtlBuy/ResBuy": { + "type": "Interface" + }, + "gonglukuangbiao/PtlFight/ReqFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "gonglukuangbiao/PtlFight/ResFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "result", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + }, + { + "id": 1, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + }, + "optional": true + } + ] + }, + "gonglukuangbiao/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "gonglukuangbiao/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "toDayWin", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 1, + "name": "toDayBuyNum", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "toDayUseNum", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "enemys", + "type": { + "type": "Array", + "elementType": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Reference", + "target": "../fightControl/fightType/joinFightData" + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "wanted", + "type": { + "type": "Number" + }, + "optional": true + } + ] + } + } + ] + } + } + }, + { + "id": 4, + "name": "wanted", + "type": { + "type": "Number" + } + }, + { + "id": 5, + "name": "toDayBeiFightNum", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "gonglukuangbiao/PtlRefresh/ReqRefresh": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "free", + "type": { + "type": "Boolean" + } + } + ] + }, + "gonglukuangbiao/PtlRefresh/ResRefresh": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "enemys", + "type": { + "type": "Array", + "elementType": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Reference", + "target": "../fightControl/fightType/joinFightData" + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "wanted", + "type": { + "type": "Number" + }, + "optional": true + } + ] + } + } + ] + } + } + } + ] + }, + "gongyu/mingdao/PtlActive/ReqActive": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + } + ] + }, + "gongyu/mingdao/PtlActive/ResActive": { + "type": "Interface" + }, + "gongyu/mingdao/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "gongyu/mingdao/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "list", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "pre", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "recPrize", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + } + ] + } + } + } + }, + { + "id": 1, + "name": "taskFinished", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + } + ] + }, + "gongyu/mingdao/PtlRecPrize/ReqRecPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "recId", + "type": { + "type": "String" + } + } + ] + }, + "gongyu/mingdao/PtlRecPrize/ResRecPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "gongyu/mingdao/PtlRepair/ReqRepair": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "num", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 1 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 10 + } + } + ] + } + } + ] + }, + "gongyu/mingdao/PtlRepair/ResRepair": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "multiple", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 1, + "name": "pre", + "type": { + "type": "Number" + } + } + ] + }, + "gongyu/xunlianjihua/PtlReset/ReqReset": { + "type": "Interface" + }, + "gongyu/xunlianjihua/PtlReset/ResReset": { + "type": "Interface" + }, + "gongyu/xunlianjihua/PtlUpSkill/ReqUpSkill": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "skillId", + "type": { + "type": "String" + } + } + ] + }, + "gongyu/xunlianjihua/PtlUpSkill/ResUpSkill": { + "type": "Interface" + }, + "gongyu/zuozhanjihua/PtlSetSkill/ReqSetSkill": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "1", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "2", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "3", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "4", + "type": { + "type": "String" + } + } + ] + }, + "gongyu/zuozhanjihua/PtlSetSkill/ResSetSkill": { + "type": "Interface" + }, + "hbzb/jfs/PtlBuyNum/ReqBuyNum": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + } + } + ] + }, + "hbzb/jfs/PtlBuyNum/ResBuyNum": { + "type": "Interface" + }, + "hbzb/jfs/PtlFight/ReqFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + } + ] + }, + "hbzb/jfs/PtlFight/ResFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "change", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "hbzb/jfs/PtlOpen/ResOpen" + } + } + }, + { + "id": 1, + "name": "result", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + }, + { + "id": 2, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "hbzb/jfs/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "winNum", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "winRecPrize", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 2, + "name": "useFightNum", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "buyFightNum", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "useRefreshNum", + "type": { + "type": "Number" + } + }, + { + "id": 5, + "name": "enemy", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "data", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/joinFightData" + } + }, + { + "id": 1, + "name": "jifen", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "result", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": null + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + } + } + ] + } + } + }, + { + "id": 6, + "name": "rank", + "type": { + "type": "Number" + } + }, + { + "id": 7, + "name": "jifen", + "type": { + "type": "Number" + } + } + ] + }, + "hbzb/jfs/PtlGetLog/ReqGetLog": { + "type": "Interface" + }, + "hbzb/jfs/PtlGetLog/ResGetLog": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + }, + "hbzb/jfs/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "hbzb/jfs/PtlRec/ReqRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "hbzb/jfs/PtlRec/ResRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "hbzb/jfs/PtlRefresh/ReqRefresh": { + "type": "Interface" + }, + "hbzb/jfs/PtlRefresh/ResRefresh": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "change", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "hbzb/jfs/PtlOpen/ResOpen" + } + } + } + ] + }, + "hbzb/zbs/PtlBuyNum/ReqBuyNum": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + } + } + ] + }, + "hbzb/zbs/PtlBuyNum/ResBuyNum": { + "type": "Interface" + }, + "hbzb/zbs/PtlFight/ReqFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + } + ] + }, + "hbzb/zbs/PtlFight/ResFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "change", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "hbzb/zbs/PtlOpen/ResOpen" + } + } + }, + { + "id": 1, + "name": "result", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + }, + { + "id": 2, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "hbzb/zbs/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "winNum", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "winRecPrize", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 2, + "name": "useFightNum", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "buyFightNum", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "enemy", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "data", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/joinFightData" + } + }, + { + "id": 1, + "name": "rank", + "type": { + "type": "Number" + } + } + ] + } + } + }, + { + "id": 5, + "name": "rank", + "type": { + "type": "Number" + } + }, + { + "id": 6, + "name": "failCd", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "hbzb/zbs/PtlGetLog/ReqGetLog": { + "type": "Interface" + }, + "hbzb/zbs/PtlGetLog/ResGetLog": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + }, + "hbzb/zbs/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "hbzb/zbs/PtlRefresh/ReqRefresh": { + "type": "Interface" + }, + "hbzb/zbs/PtlRefresh/ResRefresh": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "enemy", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "data", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/joinFightData" + } + }, + { + "id": 1, + "name": "rank", + "type": { + "type": "Number" + } + } + ] + } + } + }, + { + "id": 1, + "name": "rank", + "type": { + "type": "Number" + } + } + ] + }, + "hero/PtlAwake/ReqAwake": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + } + ] + }, + "hero/PtlAwake/ResAwake": { + "type": "Interface" + }, + "hero/PtlChangePos/ReqChangePos": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "state", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "set" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "change" + } + } + ] + } + }, + { + "id": 1, + "name": "pos", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 2, + "name": "id", + "type": { + "type": "String" + } + } + ] + }, + "hero/PtlChangePos/ResChangePos": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + }, + "hero/PtlGetList/ReqGetList": { + "type": "Interface" + }, + "hero/PtlGetList/ResGetList": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "list", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "heroId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 2, + "name": "lv", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "jieji", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "getTime", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 1, + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "hero/PtlGetList/heroAddKey" + } + } + } + ] + } + } + } + }, + { + "id": 1, + "name": "pos", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + }, + { + "id": 2, + "name": "lshd", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 3, + "name": "gbzj", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Boolean" + } + } + } + } + ] + }, + "hero/PtlGetList/heroAddKey": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "equip", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + }, + { + "id": 1, + "name": "zhanli", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "weapon", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "jieji", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "star", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "starProbability", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 3, + "name": "shiwu", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Reference", + "target": "type/heroShiWu" + } + } + } + }, + { + "id": 4, + "name": "qiannneg", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 5, + "name": "awake", + "type": { + "type": "Number" + } + }, + { + "id": 6, + "name": "talent", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 7, + "name": "peijian", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + } + ] + }, + "type/heroShiWu": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "target": { + "type": "IndexedAccess", + "index": "", + "objectType": { + "type": "IndexedAccess", + "index": "list", + "objectType": { + "type": "Reference", + "target": "shiwu/PtlGetList/ResGetList" + } + } + }, + "keys": [ + "_id", + "jichu", + "fujia", + "zhuanshu" + ], + "type": "Pick" + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "shiwuId", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 1, + "name": "colour", + "type": { + "type": "Number" + }, + "optional": true + } + ] + } + } + ] + }, + "shiwu/PtlGetList/ResGetList": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "list", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "colour", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "shiwuId", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "wearId", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "jichu", + "type": { + "type": "Array", + "elementType": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + } + } + }, + { + "id": 5, + "name": "fujia", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "colour", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "buffKey", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "buffVal", + "type": { + "type": "Number" + } + } + ] + } + } + }, + { + "id": 6, + "name": "zhuanshu", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hero", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "buff", + "type": { + "type": "Tuple", + "elementTypes": [ + { + "type": "String" + }, + { + "type": "Number" + } + ] + }, + "optional": true + }, + { + "id": 2, + "name": "skill", + "type": { + "type": "String" + }, + "optional": true + } + ] + }, + "optional": true + } + ] + } + } + } + } + ] + }, + "hero/PtlJinJie/ReqJinJie": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "idArr", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + }, + "optional": true + } + ] + }, + "hero/PtlJinJie/ResJinJie": { + "type": "Interface" + }, + "hero/PtlLvUp/ReqLvUp": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "up", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "hero/PtlLvUp/ResLvUp": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Number" + } + } + ] + }, + "hero/PtlPotency/ReqPotency": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "type", + "type": { + "type": "String" + } + } + ] + }, + "hero/PtlPotency/ResPotency": { + "type": "Interface" + }, + "hero/PtlRec/ReqRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "heroId", + "type": { + "type": "String" + } + } + ] + }, + "hero/PtlRec/ResRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "hero/PtlReset/ReqReset": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_ids", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + }, + { + "id": 1, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "qs" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "cz" + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": "yl" + } + } + ] + } + } + ] + }, + "hero/PtlReset/ResReset": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "hero/PtlTalent/ReqTalent": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "type", + "type": { + "type": "String" + } + } + ] + }, + "hero/PtlTalent/ResTalent": { + "type": "Interface" + }, + "hero/PtlWeaponUp/ReqWeaponUp": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "jieji" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "star" + } + } + ] + } + } + ] + }, + "hero/PtlWeaponUp/ResWeaponUp": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "starFail", + "type": { + "type": "Boolean" + }, + "optional": true + } + ] + }, + "hongdian/PtlGet/ReqGet": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "hongdian/PtlGet/hongdianKey" + } + }, + "hongdian/PtlGet/hongdianKey": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "jiuba" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "jiaotang" + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": "shouchong" + } + }, + { + "id": 3, + "type": { + "type": "Literal", + "literal": "dixiaqianzhuanghd" + } + }, + { + "id": 4, + "type": { + "type": "Literal", + "literal": "taskhd" + } + }, + { + "id": 5, + "type": { + "type": "Literal", + "literal": "xstaskhd" + } + }, + { + "id": 6, + "type": { + "type": "Literal", + "literal": "gonghuihd" + } + }, + { + "id": 7, + "type": { + "type": "Literal", + "literal": "jjchd" + } + }, + { + "id": 8, + "type": { + "type": "Literal", + "literal": "hbzbhd" + } + }, + { + "id": 9, + "type": { + "type": "Literal", + "literal": "clslhd" + } + }, + { + "id": 10, + "type": { + "type": "Literal", + "literal": "lingzhulaixihd" + } + }, + { + "id": 11, + "type": { + "type": "Literal", + "literal": "dxlthd" + } + }, + { + "id": 12, + "type": { + "type": "Literal", + "literal": "wzcjhd" + } + }, + { + "id": 13, + "type": { + "type": "Literal", + "literal": "slzdhd" + } + }, + { + "id": 14, + "type": { + "type": "Literal", + "literal": "qjzzdhd" + } + }, + { + "id": 15, + "type": { + "type": "Literal", + "literal": "kuangdonghd" + } + }, + { + "id": 16, + "type": { + "type": "Literal", + "literal": "qiandaohd" + } + }, + { + "id": 17, + "type": { + "type": "Literal", + "literal": "kaifukuanghuanhd" + } + }, + { + "id": 18, + "type": { + "type": "Literal", + "literal": "jijinhd" + } + }, + { + "id": 19, + "type": { + "type": "Literal", + "literal": "zhuishalinghd" + } + }, + { + "id": 20, + "type": { + "type": "Literal", + "literal": "yibaichouhd" + } + }, + { + "id": 21, + "type": { + "type": "Literal", + "literal": "huobanzhaomuhd" + } + }, + { + "id": 22, + "type": { + "type": "Literal", + "literal": "qirileichonghd" + } + }, + { + "id": 23, + "type": { + "type": "Literal", + "literal": "jierihd" + } + }, + { + "id": 24, + "type": { + "type": "Literal", + "literal": "kbzzhd" + } + }, + { + "id": 25, + "type": { + "type": "Literal", + "literal": "wzryhd" + } + }, + { + "id": 26, + "type": { + "type": "Literal", + "literal": "yuedujijin" + } + }, + { + "id": 27, + "type": { + "type": "Literal", + "literal": "patahd" + } + }, + { + "id": 28, + "type": { + "type": "Literal", + "literal": "mingdao" + } + }, + { + "id": 29, + "type": { + "type": "Literal", + "literal": "heishihd" + } + }, + { + "id": 30, + "type": { + "type": "Literal", + "literal": "jitianhaoli" + } + }, + { + "id": 31, + "type": { + "type": "Literal", + "literal": "huodonghd" + } + }, + { + "id": 32, + "type": { + "type": "Literal", + "literal": "renown" + } + }, + { + "id": 33, + "type": { + "type": "Literal", + "literal": "heishiMrjx" + } + } + ] + }, + "hongdian/PtlGet/ResGet": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Reference", + "target": "hongdian/PtlGet/hongdianVal" + } + } + }, + "hongdian/PtlGet/hongdianVal": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "show", + "type": { + "type": "Boolean" + }, + "optional": true + }, + { + "id": 1, + "name": "val", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "optional": true + } + ] + }, + "item/PtlGetList/ReqGetList": { + "type": "Interface" + }, + "item/PtlGetList/ResGetList": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "list", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "num", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "itemId", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "lastTime", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "firstTime", + "type": { + "type": "Number" + } + } + ] + } + } + } + } + ] + }, + "item/PtlUse/ReqUse": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "itemId", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "useNum", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "selectIndex", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "item/PtlUse/ResUse": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + }, + "optional": true + } + ] + }, + "jiaotang/PtlLottery/ReqLottery": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 1 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 10 + } + } + ] + } + } + ] + }, + "jiaotang/PtlLottery/ResLottery": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "changeData", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "jiaotang/PtlOpen/ResOpen" + } + }, + "optional": true + } + ] + }, + "jiaotang/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "freeTime", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "oneNum", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "tenNum", + "type": { + "type": "Number" + } + } + ] + }, + "jiaotang/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "jiuba/PtlLottery/ReqLottery": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 1 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 10 + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": 30 + } + } + ] + } + } + ] + }, + "jiuba/PtlLottery/ResLottery": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "changeData", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "jiuba/PtlOpen/ResOpen" + } + }, + "optional": true + } + ] + }, + "jiuba/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "freeTime", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "oneNum", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "tenNum", + "type": { + "type": "Number" + } + } + ] + }, + "jiuba/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "jjc/PtlBuyFightNum/ReqBuyFightNum": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "jjc/PtlBuyFightNum/ResBuyFightNum": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "change", + "type": { + "type": "Reference", + "target": "jjc/PtlOpen/jjcChange" + } + } + ] + }, + "jjc/PtlOpen/jjcChange": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "jjc/PtlOpen/ResOpen" + } + }, + "jjc/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "buyFightNum", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "useFightNum", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "receivedArr", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + }, + { + "id": 3, + "name": "resetTime", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "rank", + "type": { + "type": "Number" + } + }, + { + "id": 5, + "name": "enemy", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/rankInfo" + } + } + }, + { + "id": 6, + "name": "recordWin", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "type/rankInfo": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "rank", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 1, + "name": "player", + "type": { + "type": "Partial", + "target": { + "type": "IndexedAccess", + "index": "gud", + "objectType": { + "type": "Reference", + "target": "user/PtlLogin/ResLogin" + } + } + } + }, + { + "id": 2, + "name": "roles", + "type": { + "type": "IndexedAccess", + "index": "roles", + "objectType": { + "type": "Reference", + "target": "../fightControl/fightType/joinFightData" + } + }, + "optional": true + }, + { + "id": 3, + "name": "valArr", + "type": { + "type": "Array", + "elementType": { + "type": "Any" + } + }, + "optional": true + }, + { + "id": 4, + "name": "otherData", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "optional": true + }, + { + "id": 5, + "name": "utime", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "jjc/PtlFight/ReqFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + } + ] + }, + "jjc/PtlFight/ResFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "change", + "type": { + "type": "Reference", + "target": "jjc/PtlOpen/jjcChange" + } + }, + { + "id": 1, + "name": "result", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + }, + { + "id": 2, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + }, + "optional": true + } + ] + }, + "jjc/PtlFightLog/ReqFightLog": { + "type": "Interface" + }, + "jjc/PtlFightLog/ResFightLog": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + }, + "jjc/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "jjc/PtlReceive/ReqReceive": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + } + ] + }, + "jjc/PtlReceive/ResReceive": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "change", + "type": { + "type": "Reference", + "target": "jjc/PtlOpen/jjcChange" + } + }, + { + "id": 1, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "jjc/PtlRefresh/ReqRefresh": { + "type": "Interface" + }, + "jjc/PtlRefresh/ResRefresh": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "enemy", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/rankInfo" + } + } + }, + { + "id": 1, + "name": "rank", + "type": { + "type": "Number" + } + } + ] + }, + "kbzz/PtlApply/ReqApply": { + "type": "Interface" + }, + "kbzz/PtlApply/ResApply": { + "type": "Interface" + }, + "kbzz/PtlAutoApply/ReqAutoApply": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "auto", + "type": { + "type": "Boolean" + } + } + ] + }, + "kbzz/PtlAutoApply/ResAutoApply": { + "type": "Interface" + }, + "kbzz/PtlBuyNum/ReqBuyNum": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + } + } + ] + }, + "kbzz/PtlBuyNum/ResBuyNum": { + "type": "Interface" + }, + "kbzz/PtlFight/ReqFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uids", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + } + ] + }, + "kbzz/PtlFight/ResFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "result", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + } + }, + { + "id": 2, + "name": "change", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "kbzz/PtlOpen/eventCycle" + } + } + } + ] + }, + "kbzz/PtlOpen/eventCycle": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "fightNum", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "buyFightNum", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "score", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "toDayScore", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "recScorePrize", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 5, + "name": "enemy", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "info", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/joinFightData" + } + }, + { + "id": 1, + "name": "troop", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "result", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Number" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": null + } + } + ] + } + } + ] + } + } + }, + { + "id": 6, + "name": "troop", + "type": { + "type": "Number" + } + }, + { + "id": 7, + "name": "group", + "type": { + "type": "Number" + } + } + ] + }, + "kbzz/PtlFightLog/ReqFightLog": { + "type": "Interface" + }, + "kbzz/PtlFightLog/ResFightLog": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + }, + "kbzz/PtlGroupState/ReqGroupState": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "group", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "troop", + "type": { + "type": "Number" + } + } + ] + }, + "kbzz/PtlGroupState/ResGroupState": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "rank", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "troop", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "score", + "type": { + "type": "Number" + } + } + ] + } + } + }, + { + "id": 1, + "name": "log", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "player", + "type": { + "type": "Array", + "elementType": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "user/type/player" + } + } + } + }, + { + "id": 1, + "name": "troop", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 2, + "name": "winSide", + "type": { + "type": "Number" + } + } + ] + } + } + } + ] + }, + "kbzz/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "kbzz/PtlOpen/ResOpen": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Reference", + "target": "kbzz/PtlOpen/apply" + } + }, + { + "id": 1, + "type": { + "type": "Reference", + "target": "kbzz/PtlOpen/applyEnd" + } + }, + { + "id": 2, + "type": { + "type": "Reference", + "target": "kbzz/PtlOpen/eventCycle" + } + } + ] + }, + "kbzz/PtlOpen/apply": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "apply", + "type": { + "type": "Boolean" + } + }, + { + "id": 1, + "name": "autoApply", + "type": { + "type": "Boolean" + } + }, + { + "id": 2, + "name": "state", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "succ", + "type": { + "type": "Boolean" + } + } + ] + } + } + ] + }, + "kbzz/PtlOpen/applyEnd": { + "type": "Reference", + "target": "kbzz/PtlOpen/apply" + }, + "kbzz/PtlRecPrize/ReqRecPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "kbzz/PtlRecPrize/ResRecPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "kbzz/PtlRefresh/ReqRefresh": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "group", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "troop", + "type": { + "type": "Number" + } + } + ] + }, + "kbzz/PtlRefresh/ResRefresh": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "enemy", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "info", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/joinFightData" + } + }, + { + "id": 1, + "name": "troop", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "result", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Number" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": null + } + } + ] + } + } + ] + } + } + } + ] + }, + "kuangdong/PtlAddPkNum/ReqAddPkNum": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "area", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 1 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 2 + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": 3 + } + } + ] + } + }, + { + "id": 1, + "name": "num", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "kuangdong/PtlAddPkNum/ResAddPkNum": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "mydata", + "type": { + "type": "Reference", + "target": "kuangdong/PtlOpen/KuangDongCiShuInfo" + } + } + ] + }, + "kuangdong/PtlOpen/KuangDongCiShuInfo": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "eara", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 1, + "name": "buynum", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 2, + "name": "time", + "type": { + "type": "Number" + } + } + ] + }, + "kuangdong/PtlGetPrize/ReqGetPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdid", + "type": { + "type": "Number" + } + } + ] + }, + "kuangdong/PtlGetPrize/ResGetPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "kuangdong/PtlKdInfo/ReqKdInfo": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdid", + "type": { + "type": "Number" + } + } + ] + }, + "kuangdong/PtlKdInfo/ResKdInfo": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "kdinfo", + "type": { + "type": "Reference", + "target": "kuangdong/PtlOpen/KuangDongKuang" + } + }, + { + "id": 1, + "name": "userinfo", + "type": { + "type": "Reference", + "target": "kuangdong/PtlOpen/KuangDongKaiCaiListTmp" + }, + "optional": true + } + ] + }, + "kuangdong/PtlOpen/KuangDongKuang": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "ctime", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "etime", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "yanshi", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "hdid", + "type": { + "type": "Number" + } + }, + { + "id": 5, + "name": "kdtype", + "type": { + "type": "Number" + } + }, + { + "id": 6, + "name": "ttl", + "type": { + "type": "Date" + } + }, + { + "id": 7, + "name": "_id", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 8, + "name": "userinfo", + "type": { + "type": "Reference", + "target": "kuangdong/PtlOpen/KuangDongKaiCaiListTmp" + }, + "optional": true + } + ] + }, + "kuangdong/PtlOpen/KuangDongKaiCaiListTmp": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "headFrame", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 1, + "type": { + "type": "Literal" + } + } + ] + } + }, + { + "id": 1, + "name": "head", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 1, + "type": { + "type": "Literal" + } + } + ] + } + }, + { + "id": 2, + "name": "ghId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Literal" + } + } + ] + } + }, + { + "id": 3, + "name": "ghName", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Literal" + } + } + ] + } + }, + { + "id": 4, + "name": "name", + "type": { + "type": "String" + } + }, + { + "id": 5, + "name": "lv", + "type": { + "type": "Number" + } + }, + { + "id": 6, + "name": "power", + "type": { + "type": "Number" + } + }, + { + "id": 7, + "name": "fight", + "type": { + "type": "Interface" + }, + "optional": true + } + ] + }, + "kuangdong/PtlLog/ReqLog": { + "type": "Interface" + }, + "kuangdong/PtlLog/ResLog": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "kuangdonglog", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "kuangdong/PtlOpen/KuangDongKaiCailog" + } + } + } + ] + }, + "kuangdong/PtlOpen/KuangDongKaiCailog": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "hdid", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "name", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "touid", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 4, + "name": "toname", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 5, + "name": "ctime", + "type": { + "type": "Number" + } + }, + { + "id": 6, + "name": "msgtype", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 1 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 2 + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": 3 + } + }, + { + "id": 3, + "type": { + "type": "Literal", + "literal": 4 + } + } + ] + } + }, + { + "id": 7, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + }, + "optional": true + }, + { + "id": 8, + "name": "longtime", + "type": { + "type": "Number" + } + } + ] + }, + "kuangdong/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "kuangdong/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "mydata", + "type": { + "type": "Reference", + "target": "kuangdong/PtlOpen/KuangDongCiShuInfo" + } + }, + { + "id": 1, + "name": "kdList", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Reference", + "target": "kuangdong/PtlOpen/KuangDongKaiCaiList" + } + } + }, + "optional": true + }, + { + "id": 2, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "kuangdong/PtlOpen/KuangDongKaiCaiList": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "userinfo", + "type": { + "type": "Reference", + "target": "kuangdong/PtlOpen/KuangDongKaiCaiListTmp" + }, + "optional": true + } + ] + } + }, + { + "id": 1, + "type": { + "type": "Reference", + "target": "kuangdong/PtlOpen/KuangDongKuang" + } + } + ] + }, + "kuangdong/PtlYanShi/ReqYanShi": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdid", + "type": { + "type": "Number" + } + } + ] + }, + "kuangdong/PtlYanShi/ResYanShi": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "kdinfo", + "type": { + "type": "Reference", + "target": "kuangdong/PtlOpen/KuangDongKuang" + } + } + ] + }, + "kuangdong/PtlZhanLing/ReqZhanLing": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdid", + "type": { + "type": "Number" + } + } + ] + }, + "kuangdong/PtlZhanLing/ResZhanLing": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "result", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + }, + "optional": true + }, + { + "id": 1, + "name": "mydata", + "type": { + "type": "Reference", + "target": "kuangdong/PtlOpen/KuangDongCiShuInfo" + } + }, + { + "id": 2, + "name": "kdInfo", + "type": { + "type": "Reference", + "target": "kuangdong/PtlOpen/KuangDongKuang" + }, + "optional": true + } + ] + }, + "lingzhulaixi/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "lingzhulaixi/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "mydata", + "type": { + "type": "Reference", + "target": "lingzhulaixi/PtlOpen/lingzhulaixi_CiSHU" + } + }, + { + "id": 1, + "name": "bosslist", + "type": { + "type": "Reference", + "target": "lingzhulaixi/PtlOpen/lingzhulaixi_BossList" + } + } + ] + }, + "lingzhulaixi/PtlOpen/lingzhulaixi_CiSHU": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "maxdps", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + } + ] + }, + "lingzhulaixi/PtlOpen/lingzhulaixi_BossList": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "bid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "passtime", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "maxhp", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "delhp", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "pkusernum", + "type": { + "type": "Number" + } + } + ] + } + } + }, + "lingzhulaixi/PtlPkBoss/ReqPkBoss": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "bid", + "type": { + "type": "String" + } + } + ] + }, + "lingzhulaixi/PtlPkBoss/ResPkBoss": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "result", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + }, + { + "id": 1, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 2, + "name": "mydata", + "type": { + "type": "Reference", + "target": "lingzhulaixi/PtlOpen/lingzhulaixi_CiSHU" + } + }, + { + "id": 3, + "name": "bossdata", + "type": { + "type": "Reference", + "target": "lingzhulaixi/PtlOpen/lingzhulaixi_BOSSmmMoRenZhi" + } + } + ] + }, + "lingzhulaixi/PtlOpen/lingzhulaixi_BOSSmmMoRenZhi": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "bid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "ctime", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "passtime", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "maxhp", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "pkuser", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 5, + "name": "delhp", + "type": { + "type": "Number" + } + }, + { + "id": 6, + "name": "randusernum", + "type": { + "type": "Number" + } + }, + { + "id": 7, + "name": "_id", + "type": { + "type": "String" + }, + "optional": true + } + ] + }, + "lingzhulaixi/PtlPkRank/ReqPkRank": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "bid", + "type": { + "type": "String" + } + } + ] + }, + "lingzhulaixi/PtlPkRank/ResPkRank": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "bossdata", + "type": { + "type": "Reference", + "target": "lingzhulaixi/PtlOpen/lingzhulaixi_BOSSmmMoRenZhi" + } + }, + { + "id": 1, + "name": "userdps", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "ranklist", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "userinfo", + "type": { + "type": "Reference", + "target": "kuangdong/PtlOpen/KuangDongKaiCaiListTmp" + } + }, + { + "id": 1, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "maxdps", + "type": { + "type": "Number" + } + } + ] + } + } + } + ] + }, + "lingzhulaixi/PtlSaoDang/ReqSaoDang": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "bid", + "type": { + "type": "String" + } + } + ] + }, + "lingzhulaixi/PtlSaoDang/ResSaoDang": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "mydata", + "type": { + "type": "Reference", + "target": "lingzhulaixi/PtlOpen/lingzhulaixi_CiSHU" + } + }, + { + "id": 2, + "name": "bossdata", + "type": { + "type": "Reference", + "target": "lingzhulaixi/PtlOpen/lingzhulaixi_BOSSmmMoRenZhi" + } + } + ] + }, + "meirishilian/PtlBuy/ReqBuy": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "difficulty", + "type": { + "type": "String" + } + } + ] + }, + "meirishilian/PtlBuy/ResBuy": { + "type": "Interface" + }, + "meirishilian/PtlFight/ReqFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "difficulty", + "type": { + "type": "String" + } + } + ] + }, + "meirishilian/PtlFight/ResFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "result", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + }, + "optional": true + }, + { + "id": 1, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + }, + "optional": true + } + ] + }, + "meirishilian/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "meirishilian/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "useFightNum", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "buyFightNum", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "recordWin", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + } + } + }, + { + "id": 3, + "name": "numInfo", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "useFightNum", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 1, + "name": "buyFightNum", + "type": { + "type": "Number" + }, + "optional": true + } + ] + } + } + } + } + }, + "optional": true + } + ] + }, + "msg_c2s/MsgBindUid/MsgBindUid": { + "type": "Reference", + "target": "user/type/player" + }, + "msg_c2s/MsgPay/MsgPay": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "args", + "type": { + "type": "Any" + }, + "optional": true + } + ] + }, + "msg_c2s/MsgSync/MsgSync": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "msg_s2c/MsgChatHelp/MsgChatHelp": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "change", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "cTime", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "pushUid", + "type": { + "type": "String" + } + } + ] + } + } + } + ] + }, + "msg_s2c/MsgCollection/MsgCollection": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "msg_s2c/MsgEmail/MsgEmail": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "system" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "gm" + } + } + ] + } + }, + { + "id": 3, + "name": "title", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "content", + "type": { + "type": "String" + } + }, + { + "id": 5, + "name": "createTime", + "type": { + "type": "Number" + } + }, + { + "id": 6, + "name": "prizeData", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "isGet", + "type": { + "type": "Boolean" + } + } + ] + }, + "optional": true + }, + { + "id": 7, + "name": "contentInsertArr", + "type": { + "type": "Array", + "elementType": { + "type": "Any" + } + }, + "optional": true + }, + { + "id": 8, + "name": "prizelist", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + }, + "optional": true + }, + { + "id": 9, + "name": "dellist", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + }, + "optional": true + }, + { + "id": 10, + "name": "g123log", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "optional": true + } + ] + }, + "msg_s2c/MsgEmailDel/MsgEmailDel": { + "type": "String" + }, + "msg_s2c/MsgEquipChange/MsgEquipChange": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Partial", + "target": { + "type": "IndexedAccess", + "index": "", + "objectType": { + "type": "IndexedAccess", + "index": "list", + "objectType": { + "type": "Reference", + "target": "equip/PtlGetList/ResGetList" + } + } + } + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + }, + "optional": true + } + ] + } + } + ] + } + } + }, + "msg_s2c/MsgFriend/MsgFriend": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "friend/PtlOpen/ResOpen" + } + }, + "msg_s2c/MsgGhChange/MsgGhChange": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "gonghui/type/gonghuiBase" + } + }, + "msg_s2c/MsgGongHuiBaoZang/MsgGongHuiBaoZang": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "gonghuibaozang/PtlLottery/GongHuiBaoZangMsg" + } + }, + "gonghuibaozang/PtlLottery/GongHuiBaoZangMsg": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "name", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "ctime", + "type": { + "type": "Number" + } + } + ] + }, + "msg_s2c/MsgHeroChange/MsgHeroChange": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Partial", + "target": { + "type": "IndexedAccess", + "index": "", + "objectType": { + "type": "IndexedAccess", + "index": "list", + "objectType": { + "type": "Reference", + "target": "hero/PtlGetList/ResGetList" + } + } + } + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + }, + "optional": true + } + ] + } + } + ] + } + } + }, + "msg_s2c/MsgHongDianChange/MsgHongDianChange": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "hongdian/PtlGet/hongdianKey" + } + }, + "msg_s2c/MsgItemChange/MsgItemChange": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Partial", + "target": { + "type": "IndexedAccess", + "index": "", + "objectType": { + "type": "IndexedAccess", + "index": "list", + "objectType": { + "type": "Reference", + "target": "item/PtlGetList/ResGetList" + } + } + } + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + }, + "optional": true + } + ] + } + } + ] + } + } + }, + "msg_s2c/MsgLoginQueue/MsgLoginQueue": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "delay", + "type": { + "type": "Number" + } + } + ] + }, + "msg_s2c/MsgLshdChange/MsgLshdChange": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + } + }, + "msg_s2c/MsgNewDay/MsgNewDay": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "msg_s2c/MsgOtherLogin/MsgOtherLogin": { + "type": "String" + }, + "msg_s2c/MsgPayChange/MsgPayChange": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "pay/PtlGetList/payLog" + } + } + } + }, + "pay/PtlGetList/payLog": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "time", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "eTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 2, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "user" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "system" + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": "legu" + } + } + ] + } + }, + { + "id": 3, + "name": "popup_id", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 4, + "name": "buyNumber", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "msg_s2c/MsgPayResult/MsgPayResult": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "code", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "data", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "optional": true + } + ] + }, + "msg_s2c/MsgPeijianChange/MsgPeijianChange": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "peijian/PtlGetList/PeiJian" + } + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + }, + "optional": true + } + ] + } + } + ] + } + } + }, + "peijian/PtlGetList/PeiJian": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "wearId", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "jinglian", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "peijianId", + "type": { + "type": "String" + } + } + ] + }, + "msg_s2c/MsgPlayerChange/MsgPlayerChange": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "msg_s2c/MsgSendGift/MsgSendGift": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "msg_s2c/MsgShiwuChange/MsgShiwuChange": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Partial", + "target": { + "type": "IndexedAccess", + "index": "", + "objectType": { + "type": "IndexedAccess", + "index": "list", + "objectType": { + "type": "Reference", + "target": "shiwu/PtlGetList/ResGetList" + } + } + } + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + }, + "optional": true + } + ] + } + } + ] + } + } + }, + "msg_s2c/MsgTaskChange/MsgTaskChange": { + "type": "Reference", + "target": "task/type/taskType" + }, + "task/type/taskType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "retime", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "stype", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "type", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "taskid", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "nval", + "type": { + "type": "Number" + } + }, + { + "id": 5, + "name": "pval", + "type": { + "type": "Number" + } + }, + { + "id": 6, + "name": "finish", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 0 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 1 + } + } + ] + } + }, + { + "id": 7, + "name": "lasttime", + "type": { + "type": "Number" + } + }, + { + "id": 8, + "name": "uid", + "type": { + "type": "String" + } + } + ] + }, + "msg_s2c/MsgXianshilibao/MsgXianshilibao": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "payId", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "eTime", + "type": { + "type": "Number" + } + } + ] + } + }, + "pata/PtlFight/ReqFight": { + "type": "Interface" + }, + "pata/PtlFight/ResFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "mydata", + "type": { + "type": "Reference", + "target": "pata/type/paTaType" + } + }, + { + "id": 1, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 2, + "name": "result", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + } + ] + }, + "pata/type/paTaType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "useNum", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "lastRefreshTime", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "gotarr", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 4, + "name": "sid", + "type": { + "type": "Number" + } + }, + { + "id": 5, + "name": "saodangNum", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "pata/PtlGetPrize/ReqGetPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "idx", + "type": { + "type": "Number" + } + } + ] + }, + "pata/PtlGetPrize/ResGetPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "mydata", + "type": { + "type": "Reference", + "target": "pata/type/paTaType" + } + }, + { + "id": 1, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "pata/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "pata/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "mydata", + "type": { + "type": "Reference", + "target": "pata/type/paTaType" + } + } + ] + }, + "pata/PtlSaoDang/ReqSaoDang": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + } + } + ] + }, + "pata/PtlSaoDang/ResSaoDang": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "mydata", + "type": { + "type": "Reference", + "target": "pata/type/paTaType" + } + }, + { + "id": 1, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "pay/PtlGetList/ReqGetList": { + "type": "Interface" + }, + "pay/PtlGetList/ResGetList": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "list", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "pay/PtlGetList/payLog" + } + } + } + } + } + ] + }, + "peijian/PtlGetList/ReqGetList": { + "type": "Interface" + }, + "peijian/PtlGetList/ResGetList": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "list", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Reference", + "target": "peijian/PtlGetList/PeiJian" + } + } + } + }, + { + "id": 1, + "name": "lshd", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + } + ] + }, + "peijian/PtlJingLian/ReqJingLian": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "p_id", + "type": { + "type": "String" + } + } + ] + }, + "peijian/PtlJingLian/ResJingLian": { + "type": "Interface" + }, + "peijian/PtlJinJie/ReqJinJie": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "p_id", + "type": { + "type": "String" + } + } + ] + }, + "peijian/PtlJinJie/ResJinJie": { + "type": "Interface" + }, + "peijian/PtlLvUp/ReqLvUp": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "p_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "num", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 1 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 5 + } + } + ] + } + } + ] + }, + "peijian/PtlLvUp/ResLvUp": { + "type": "Interface" + }, + "peijian/PtlOneKeyLvUp/ReqOneKeyLvUp": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "heroId", + "type": { + "type": "String" + } + } + ] + }, + "peijian/PtlOneKeyLvUp/ResOneKeyLvUp": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "sjnum", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "posLvUp", + "type": { + "type": "Object" + }, + "optional": true + }, + { + "id": 2, + "name": "allNeed", + "type": { + "type": "Any" + }, + "optional": true + } + ] + }, + "peijian/PtlOneKeyWear/ReqOneKeyWear": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "h_id", + "type": { + "type": "String" + } + } + ] + }, + "peijian/PtlOneKeyWear/ResOneKeyWear": { + "type": "Interface" + }, + "peijian/PtlReset/ReqReset": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "p_ids", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + } + ] + }, + "peijian/PtlReset/ResReset": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "peijian/PtlRm/ReqRm": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "p_ids", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + } + ] + }, + "peijian/PtlRm/ResRm": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "peijian/PtlTakeOff/ReqTakeOff": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "p_id", + "type": { + "type": "String" + } + } + ] + }, + "peijian/PtlTakeOff/ResTakeOff": { + "type": "Interface" + }, + "peijian/PtlUnLock/ReqUnLock": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "h_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "pos", + "type": { + "type": "String" + } + } + ] + }, + "peijian/PtlUnLock/ResUnLock": { + "type": "Interface" + }, + "peijian/PtlWear/ReqWear": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "h_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "p_id", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "pos", + "type": { + "type": "String" + } + } + ] + }, + "peijian/PtlWear/ResWear": { + "type": "Interface" + }, + "peijiancangku/PtlDeal/ReqDeal": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 1 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 10 + } + } + ] + } + } + ] + }, + "peijiancangku/PtlDeal/ResDeal": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "index", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "indexs", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + ] + }, + "peijiancangku/PtlJump/ReqJump": { + "type": "Interface" + }, + "peijiancangku/PtlJump/ResJump": { + "type": "Interface" + }, + "peijiancangku/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "peijiancangku/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "PtlBingo/ReqBingo": { + "type": "String" + }, + "PtlBingo/ResBingo": { + "type": "String" + }, + "PtlFightTest/ReqFightTest": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "player", + "type": { + "type": "Tuple", + "elementTypes": [ + { + "type": "Partial", + "target": { + "type": "Reference", + "target": "user/type/player" + } + }, + { + "type": "Partial", + "target": { + "type": "Reference", + "target": "user/type/player" + } + } + ] + }, + "optional": true + }, + { + "id": 1, + "name": "roles", + "type": { + "type": "Tuple", + "elementTypes": [ + { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "PtlFightTest/args" + } + }, + { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "PtlFightTest/args" + } + } + ] + } + } + ] + }, + "PtlFightTest/args": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hero", + "type": { + "type": "Partial", + "target": { + "type": "IndexedAccess", + "index": "", + "objectType": { + "type": "IndexedAccess", + "index": "list", + "objectType": { + "type": "Reference", + "target": "hero/PtlGetList/ResGetList" + } + } + } + } + }, + { + "id": 1, + "name": "attr", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + } + ] + }, + "PtlFightTest/ResFightTest": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "result", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + } + ] + }, + "PtlSyncBtn/ReqSyncBtn": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "PtlSyncBtn/syncBtnKeys" + } + }, + "PtlSyncBtn/syncBtnKeys": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "shouchong" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "kaifukuanghuan" + } + }, + { + "id": 2, + "type": { + "type": "Reference", + "target": "event/jijin/PtlOpen/jijinType" + } + }, + { + "id": 3, + "type": { + "type": "Literal", + "literal": "zhanling" + } + }, + { + "id": 4, + "type": { + "type": "Literal", + "literal": "qiridenglu" + } + }, + { + "id": 5, + "type": { + "type": "Literal", + "literal": "xianshilibao" + } + }, + { + "id": 6, + "type": { + "type": "Literal", + "literal": "yibaichou" + } + }, + { + "id": 7, + "type": { + "type": "Literal", + "literal": "huobanzhaomu" + } + }, + { + "id": 8, + "type": { + "type": "Literal", + "literal": "xianshizhaomu" + } + }, + { + "id": 9, + "type": { + "type": "Literal", + "literal": "leijichongzhi" + } + }, + { + "id": 10, + "type": { + "type": "Literal", + "literal": "xinshoulibao" + } + }, + { + "id": 11, + "type": { + "type": "Literal", + "literal": "jierihuodong" + } + }, + { + "id": 12, + "type": { + "type": "Literal", + "literal": "yuedujijin" + } + }, + { + "id": 13, + "type": { + "type": "Literal", + "literal": "zixuanlibao" + } + }, + { + "id": 14, + "type": { + "type": "Literal", + "literal": "diaoluoduihuan" + } + }, + { + "id": 15, + "type": { + "type": "Literal", + "literal": "chuanshuozhilu" + } + }, + { + "id": 16, + "type": { + "type": "Literal", + "literal": "yangchengmubiao" + } + }, + { + "id": 17, + "type": { + "type": "Literal", + "literal": "G123Gift" + } + } + ] + }, + "PtlSyncBtn/ResSyncBtn": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "xianshilibao", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "pays", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "payId", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "eTime", + "type": { + "type": "Number" + } + } + ] + } + } + } + ] + }, + "optional": true + } + ], + "indexSignature": { + "keyType": "String", + "type": { + "type": "Reference", + "target": "PtlSyncBtn/defaultSyncBtn" + } + } + }, + "PtlSyncBtn/defaultSyncBtn": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "eTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 1, + "name": "active", + "type": { + "type": "Boolean" + }, + "optional": true + }, + { + "id": 2, + "name": "sTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 3, + "name": "round", + "type": { + "type": "Number" + }, + "optional": true + } + ], + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "PtlTest/ReqTest": { + "type": "Any" + }, + "PtlTest/ResTest": { + "type": "Any" + }, + "qjzzd/PtlFight/ReqFight": { + "type": "Interface" + }, + "qjzzd/PtlFight/ResFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "result", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + }, + { + "id": 1, + "name": "change", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "qjzzd/PtlOpen/ResOpen" + } + } + }, + { + "id": 2, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "qjzzd/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "boss", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "refreshTime", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "useFightNum", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "maxDps", + "type": { + "type": "Number" + } + } + ] + }, + "qjzzd/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "rank/PtlOpen/ReqOpen": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "rank/PtlOpen/rankType" + } + }, + "rank/PtlOpen/rankType": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "jjc" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "tanxian" + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": "zhanli" + } + }, + { + "id": 3, + "type": { + "type": "Literal", + "literal": "qjzzd" + } + }, + { + "id": 4, + "type": { + "type": "Literal", + "literal": "hbzbLocal" + } + }, + { + "id": 5, + "type": { + "type": "Literal", + "literal": "hbzbCross" + } + }, + { + "id": 6, + "type": { + "type": "Literal", + "literal": "hbzbZbsCross" + } + }, + { + "id": 7, + "type": { + "type": "Literal", + "literal": "slzd1" + } + }, + { + "id": 8, + "type": { + "type": "Literal", + "literal": "slzd2" + } + }, + { + "id": 9, + "type": { + "type": "Literal", + "literal": "slzd3" + } + }, + { + "id": 10, + "type": { + "type": "Literal", + "literal": "slzd4" + } + }, + { + "id": 11, + "type": { + "type": "Literal", + "literal": "slzd5" + } + }, + { + "id": 12, + "type": { + "type": "Literal", + "literal": "slzd6" + } + }, + { + "id": 13, + "type": { + "type": "Literal", + "literal": "kbzz" + } + }, + { + "id": 14, + "type": { + "type": "Literal", + "literal": "xszm" + } + }, + { + "id": 15, + "type": { + "type": "Literal", + "literal": "clslCross" + } + }, + { + "id": 16, + "type": { + "type": "Literal", + "literal": "zccg" + } + }, + { + "id": 17, + "type": { + "type": "Literal", + "literal": "gbzl" + } + }, + { + "id": 18, + "type": { + "type": "Literal", + "literal": "tujian" + } + }, + { + "id": 19, + "type": { + "type": "Literal", + "literal": "wzryCross" + } + } + ] + }, + "rank/PtlOpen/ResOpen": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "rankList", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/rankInfo" + } + } + }, + { + "id": 1, + "name": "myRank", + "type": { + "type": "Reference", + "target": "type/rankInfo" + } + } + ] + } + } + }, + "shiwu/PtlConcise/ReqConcise": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "lockArr", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + ] + }, + "shiwu/PtlConcise/ResConcise": { + "type": "Interface" + }, + "shiwu/PtlExtract/ReqExtract": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_ids", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + } + ] + }, + "shiwu/PtlExtract/ResExtract": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "newIds", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + } + ] + }, + "shiwu/PtlGetList/ReqGetList": { + "type": "Interface" + }, + "shiwu/PtlLvUp/ReqLvUp": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "_ids", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + } + ] + }, + "shiwu/PtlLvUp/ResLvUp": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "isSucc", + "type": { + "type": "Boolean" + } + } + ] + }, + "shiwu/PtlRecast/ReqRecast": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "needType", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 1 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 2 + } + } + ] + } + } + ] + }, + "shiwu/PtlRecast/ResRecast": { + "type": "Interface" + }, + "shiwu/PtlTakeOff/ReqTakeOff": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + } + ] + }, + "shiwu/PtlTakeOff/ResTakeOff": { + "type": "Interface" + }, + "shiwu/PtlWear/ReqWear": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "pos", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "1" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "2" + } + } + ] + } + }, + { + "id": 1, + "name": "heroId", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "shiwuId", + "type": { + "type": "String" + } + } + ] + }, + "shiwu/PtlWear/ResWear": { + "type": "Interface" + }, + "shootGame/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "shootGame/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "passList", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 1, + "name": "receiveList", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + } + ] + }, + "shootGame/PtlRec/ReqRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "level", + "type": { + "type": "String" + } + } + ] + }, + "shootGame/PtlRec/ResRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "shop/PtlBuy/ReqBuy": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "shopId", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "buyIndex", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "buyNum", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "shop/PtlBuy/ResBuy": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "buyNum", + "type": { + "type": "IndexedAccess", + "index": "buyNum", + "objectType": { + "type": "Reference", + "target": "shop/PtlOpen/ResOpen" + } + } + } + ] + }, + "shop/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "buyNum", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 1, + "name": "shopItems", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "shop/PtlOpen/shopItem" + } + } + }, + { + "id": 2, + "name": "useFreeRefreshNum", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "useRecoilRefreshNum", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "lastAutoRefreshTime", + "type": { + "type": "Number" + } + }, + { + "id": 5, + "name": "lastFreeRefreshTime", + "type": { + "type": "Number" + } + } + ] + }, + "shop/PtlOpen/shopItem": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "a", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "t", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "n", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "p", + "type": { + "type": "Number" + } + }, + { + "id": 5, + "name": "colour", + "type": { + "type": "Number" + } + }, + { + "id": 6, + "name": "buyNum", + "type": { + "type": "Number" + } + }, + { + "id": 7, + "name": "openDay", + "type": { + "type": "Number" + } + }, + { + "id": 8, + "name": "buyNeed", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "a", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "t", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "n", + "type": { + "type": "Number" + } + } + ], + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + } + } + }, + { + "id": 9, + "name": "sale", + "type": { + "type": "Number" + } + }, + { + "id": 10, + "name": "needVip", + "type": { + "type": "Number" + } + }, + { + "id": 11, + "name": "needZCCG", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 12, + "name": "shiwuBuff", + "type": { + "type": "Any" + }, + "optional": true + }, + { + "id": 13, + "name": "vipAddbuyNum", + "type": { + "type": "Array", + "elementType": { + "type": "Any" + } + }, + "optional": true + } + ] + }, + "shop/PtlOpen/ReqOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "shopId", + "type": { + "type": "String" + } + } + ] + }, + "shop/PtlRefresh/ReqRefresh": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "shopId", + "type": { + "type": "String" + } + } + ] + }, + "shop/PtlRefresh/ResRefresh": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "target": { + "type": "Reference", + "target": "shop/PtlOpen/ResOpen" + }, + "keys": [ + "shopItems", + "buyNum" + ], + "type": "Pick" + } + }, + { + "id": 1, + "type": { + "type": "Partial", + "target": { + "target": { + "type": "Reference", + "target": "shop/PtlOpen/ResOpen" + }, + "keys": [ + "useFreeRefreshNum", + "useRecoilRefreshNum" + ], + "type": "Pick" + } + } + } + ] + }, + "sign/PtlGetBoxPrize/ReqGetBoxPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "key", + "type": { + "type": "String" + } + } + ] + }, + "sign/PtlGetBoxPrize/ResGetBoxPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "mydata", + "type": { + "type": "Any" + } + }, + { + "id": 1, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "sign/PtlGetPrize/ReqGetPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "idx", + "type": { + "type": "String" + } + } + ] + }, + "sign/PtlGetPrize/ResGetPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "mydata", + "type": { + "type": "Any" + } + }, + { + "id": 1, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "sign/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "sign/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "mydata", + "type": { + "type": "Any" + } + } + ] + }, + "slzd/PtlAim/ReqAim": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "fort", + "type": { + "type": "String" + } + } + ] + }, + "slzd/PtlAim/ResAim": { + "type": "Interface" + }, + "slzd/PtlBuyNum/ReqBuyNum": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + } + } + ] + }, + "slzd/PtlBuyNum/ResBuyNum": { + "type": "Interface" + }, + "slzd/PtlFight/ReqFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "fort", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "slzd/PtlFight/ResFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "result", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + }, + { + "id": 1, + "name": "change", + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "slzd/PtlOpen/ResOpen" + } + } + } + ] + }, + "slzd/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "aim", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "winNum", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "winRec", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 3, + "name": "fightNum", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "buyFightNum", + "type": { + "type": "Number" + } + }, + { + "id": 5, + "name": "useRefreshNum", + "type": { + "type": "Number" + } + }, + { + "id": 6, + "name": "replyCd", + "type": { + "type": "Number" + } + }, + { + "id": 7, + "name": "enemy", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "data", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/joinFightData" + } + }, + { + "id": 1, + "name": "result", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": null + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + } + } + ] + } + } + } + } + }, + { + "id": 8, + "name": "soltLog", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "name", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Any" + } + } + } + ] + } + } + }, + { + "id": 9, + "name": "stashObj", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + } + ] + }, + "slzd/PtlFightLog/ReqFightLog": { + "type": "Interface" + }, + "slzd/PtlFightLog/ResFightLog": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + }, + "slzd/PtlMyRank/ReqMyRank": { + "type": "Interface" + }, + "slzd/PtlMyRank/ResMyRank": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "rankList", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/rankInfo" + } + } + } + ] + }, + "slzd/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "slzd/PtlOpenFort/ReqOpenFort": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "fort", + "type": { + "type": "String" + } + } + ] + }, + "slzd/PtlOpenFort/ResOpenFort": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "enemy", + "type": { + "type": "IndexedAccess", + "index": "", + "objectType": { + "type": "IndexedAccess", + "index": "enemy", + "objectType": { + "type": "Reference", + "target": "slzd/PtlOpen/ResOpen" + } + } + }, + "optional": true + } + ] + }, + "slzd/PtlRec/ReqRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "slzd/PtlRec/ResRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "slzd/PtlRefresh/ReqRefresh": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "fort", + "type": { + "type": "String" + } + } + ] + }, + "slzd/PtlRefresh/ResRefresh": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "enemy", + "type": { + "type": "IndexedAccess", + "index": "", + "objectType": { + "type": "IndexedAccess", + "index": "enemy", + "objectType": { + "type": "Reference", + "target": "slzd/PtlOpen/ResOpen" + } + } + } + } + ] + }, + "slzd/PtlSlot/ReqSlot": { + "type": "Interface" + }, + "slzd/PtlSlot/ResSlot": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "tanxian/PtlEvent/ReqEvent": { + "type": "Interface" + }, + "tanxian/PtlEvent/ResEvent": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "eventTime", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "iNum", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 3, + "name": "aNum", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "tanxian/PtlFastGuaJi/ReqFastGuaJi": { + "type": "Interface" + }, + "tanxian/PtlFastGuaJi/ResFastGuaJi": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "iNum", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 2, + "name": "aNum", + "type": { + "type": "Number" + }, + "optional": true + } + ] + } + }, + { + "id": 1, + "type": { + "target": { + "type": "Reference", + "target": "tanxian/PtlOpen/ResOpen" + }, + "keys": [ + "useFastGuaJiNum" + ], + "type": "Pick" + } + } + ] + }, + "tanxian/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "eventTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 1, + "name": "lastGuaJiTime", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "fastGuaJiNum", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "useFastGuaJiNum", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "useFreeGuaJiNum", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 5, + "name": "receivePrize", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + }, + { + "id": 6, + "name": "resetTime", + "type": { + "type": "Number" + } + }, + { + "id": 7, + "name": "zztqfreeNum", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "tanxian/PtlFight/ReqFight": { + "type": "Interface" + }, + "tanxian/PtlFight/ResFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + }, + "optional": true + }, + { + "id": 1, + "name": "result", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + } + ] + }, + "tanxian/PtlGuaJi/ReqGuaJi": { + "type": "Interface" + }, + "tanxian/PtlGuaJi/ResGuaJi": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + } + }, + { + "id": 1, + "type": { + "target": { + "type": "Reference", + "target": "tanxian/PtlOpen/ResOpen" + }, + "keys": [ + "lastGuaJiTime" + ], + "type": "Pick" + } + } + ] + }, + "tanxian/PtlOpen/ReqOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "cache", + "type": { + "type": "Boolean" + } + } + ] + }, + "tanxian/PtlReceive/ReqReceive": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + } + ] + }, + "tanxian/PtlReceive/ResReceive": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + } + }, + { + "id": 1, + "type": { + "target": { + "type": "Reference", + "target": "tanxian/PtlOpen/ResOpen" + }, + "keys": [ + "receivePrize" + ], + "type": "Pick" + } + } + ] + }, + "task/PtlAllFinsh/ReqAllFinsh": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "Number" + } + } + ] + }, + "task/PtlAllFinsh/ResAllFinsh": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "finishtask", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + }, + { + "id": 1, + "name": "newtask", + "type": { + "type": "Any" + } + }, + { + "id": 2, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "task/PtlFinsh/ReqFinsh": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "taskid", + "type": { + "type": "Number" + } + } + ] + }, + "task/PtlFinsh/ResFinsh": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "task", + "type": { + "type": "Reference", + "target": "task/type/taskType" + } + }, + { + "id": 1, + "name": "newtask", + "type": { + "type": "Any" + } + }, + { + "id": 2, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "task/PtlOpen/ReqOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + ] + }, + "task/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "taskinfo", + "type": { + "type": "Any" + } + }, + { + "id": 1, + "name": "jjcrank", + "type": { + "type": "Number" + } + } + ] + }, + "user/PtlCDKEY/ReqCDKEY": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "code", + "type": { + "type": "String" + } + } + ] + }, + "user/PtlCDKEY/ResCDKEY": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + }, + "optional": true + } + ] + }, + "user/PtlChangeInfo/ReqChangeInfo": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "pos", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "1" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "2" + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": "3" + } + }, + { + "id": 3, + "type": { + "type": "Literal", + "literal": "4" + } + } + ] + }, + "optional": true + }, + { + "id": 2, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "head" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "headFrame" + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": "chatFrame" + } + }, + { + "id": 3, + "type": { + "type": "Literal", + "literal": "model" + } + } + ] + } + } + ] + }, + "user/PtlChangeInfo/ResChangeInfo": { + "type": "Interface" + }, + "user/PtlChangeName/ReqChangeName": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "name", + "type": { + "type": "String" + } + } + ] + }, + "user/PtlChangeName/ResChangeName": { + "type": "Interface" + }, + "user/PtlFight/ReqFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + } + ] + }, + "user/PtlFight/ResFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "result", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + } + ] + }, + "user/PtlGetInfo/ReqGetInfo": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + } + ] + }, + "user/PtlGetInfo/ResGetInfo": { + "type": "Reference", + "target": "../fightControl/fightType/joinFightData" + }, + "user/PtlInfoOpen/ReqInfoOpen": { + "type": "Interface" + }, + "user/PtlInfoOpen/ResInfoOpen": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "user/PtlLogin/ReqLogin": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "bindUid", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "sid", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "serverName", + "type": { + "type": "String" + } + } + ] + }, + "user/PtlPing/ReqPing": { + "type": "Interface" + }, + "user/PtlPing/ResPing": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "time", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "onlineTime", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "user/PtlRenown/ReqRenown": { + "type": "Interface" + }, + "user/PtlRenown/ResRenown": { + "type": "Interface" + }, + "user/PtlRenownBuy/ReqRenownBuy": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "index", + "type": { + "type": "Number" + } + } + ] + }, + "user/PtlRenownBuy/ResRenownBuy": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "mydata", + "type": { + "type": "Reference", + "target": "user/PtlRenownOpen/Renown_info" + } + } + ] + }, + "user/PtlRenownOpen/Renown_info": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "record", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 1, + "name": "tequan", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "istq", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "recTime", + "type": { + "type": "Number" + } + } + ] + } + } + ] + }, + "user/PtlRenownGetPrize/ReqRenownGetPrize": { + "type": "Interface" + }, + "user/PtlRenownGetPrize/ResRenownGetPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "mydata", + "type": { + "type": "Reference", + "target": "user/PtlRenownOpen/Renown_info" + } + } + ] + }, + "user/PtlRenownOpen/ReqRenownOpen": { + "type": "Interface" + }, + "user/PtlRenownOpen/ResRenownOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "mydata", + "type": { + "type": "Reference", + "target": "user/PtlRenownOpen/Renown_info" + } + } + ] + }, + "user/PtlTujian/ReqTujian": { + "type": "Interface" + }, + "user/PtlTujian/ResTujian": { + "type": "Interface" + }, + "weixiuchang/PtlDazao/ReqDazao": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "num", + "type": { + "type": "Number" + } + } + ] + }, + "weixiuchang/PtlDazao/ResDazao": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "weixiuchang/PtlZuzhuang/ReqZuzhuang": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "sx" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "jj" + } + } + ] + } + }, + { + "id": 1, + "name": "cutneed", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 0 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 1 + } + } + ] + }, + "optional": true + }, + { + "id": 2, + "name": "idx", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "weixiuchang/PtlZuzhuang/ResZuzhuang": { + "type": "Interface" + }, + "wzry/PtlAutoBaoMing/ReqAutoBaoMing": { + "type": "Interface" + }, + "wzry/PtlAutoBaoMing/ResAutoBaoMing": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "mydata", + "type": { + "type": "Reference", + "target": "wzry/PtlOpen/wzry_info" + } + } + ] + }, + "wzry/PtlOpen/wzry_info": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "isbm", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 0 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 1 + } + } + ] + } + }, + { + "id": 1, + "name": "dldinfo", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "dldpknum", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "dldrefrenum", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "dldfight", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + }, + "optional": true + } + ] + } + }, + { + "id": 2, + "name": "isjjzs", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 0 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 1 + } + } + ] + } + }, + { + "id": 3, + "name": "isauto", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 0 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 1 + } + } + ] + } + }, + { + "id": 4, + "name": "zkey", + "type": { + "type": "String" + } + }, + { + "id": 5, + "name": "info", + "type": { + "type": "Reference", + "target": "wzry/PtlOpen/wangzherongyao_biaogeshi" + }, + "optional": true + }, + { + "id": 6, + "name": "isdldrefre", + "type": { + "type": "Number" + } + }, + { + "id": 7, + "name": "rank", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 8, + "name": "jifen", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 9, + "name": "isjingcai", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "totalmoney", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "guessuid", + "type": { + "type": "String" + } + } + ] + }, + "optional": true + } + ] + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + } + ] + } + } + ] + }, + "wzry/PtlOpen/wangzherongyao_biaogeshi": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "player", + "type": { + "type": "Partial", + "target": { + "type": "IndexedAccess", + "index": "gud", + "objectType": { + "type": "Reference", + "target": "user/PtlLogin/ResLogin" + } + } + } + }, + { + "id": 1, + "name": "roles", + "type": { + "type": "IndexedAccess", + "index": "roles", + "objectType": { + "type": "Reference", + "target": "../fightControl/fightType/joinFightData" + } + } + }, + { + "id": 2, + "name": "valArr", + "type": { + "type": "Array", + "elementType": { + "type": "Any" + } + }, + "optional": true + } + ] + }, + "wzry/PtlBaoMing/ReqBaoMing": { + "type": "Interface" + }, + "wzry/PtlBaoMing/ResBaoMing": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "wzry/PtlcatFightLog/ReqcatFightLog": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "fid", + "type": { + "type": "String" + } + } + ] + }, + "wzry/PtlcatFightLog/RescatFightLog": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "result", + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/fightResult" + } + } + ] + }, + "../../shared/fightControl/fightType/fightResult": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "winSide", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "fightLog", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/recordDataType" + } + } + }, + { + "id": 2, + "name": "initData", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/joinFightData" + } + } + }, + { + "id": 3, + "name": "fightData", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/joinFightData" + } + } + }, + { + "id": 4, + "name": "totalDamage", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "0", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "1", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 5, + "name": "fightStatistics", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + } + }, + "optional": true + }, + { + "id": 6, + "name": "otherData", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "optional": true + } + ] + }, + "../../shared/fightControl/fightType/recordDataType": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/turn_Type" + } + }, + { + "id": 1, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/atk_Type" + } + }, + { + "id": 2, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/addBuff_type" + } + }, + { + "id": 3, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/delBuff_type" + } + }, + { + "id": 4, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/startAct_Type" + } + }, + { + "id": 5, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/stopAct_Type" + } + }, + { + "id": 6, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/fightEnd_Type" + } + }, + { + "id": 7, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/roleDead_Type" + } + }, + { + "id": 8, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/addHp_Type" + } + }, + { + "id": 9, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/downHp_Type" + } + }, + { + "id": 10, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/fanji_Type" + } + }, + { + "id": 11, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/fuhuo_Type" + } + }, + { + "id": 12, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/chongsheng_Type" + } + }, + { + "id": 13, + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/playerNuqi_Type" + } + } + ] + }, + "../../shared/fightControl/fightType/turn_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "trun" + } + }, + { + "id": 1, + "name": "roundNums", + "type": { + "type": "Number" + } + } + ] + }, + "../../shared/fightControl/fightType/atk_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "atk" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "targets", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + }, + { + "id": 3, + "name": "skillId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 4, + "name": "rolesInfo", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/atkRoleInfo_Type" + } + } + } + } + ] + }, + "../../shared/fightControl/fightType/atkRoleInfo_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "ov", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "nv", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "miss", + "type": { + "type": "Boolean" + } + }, + { + "id": 3, + "name": "baoji", + "type": { + "type": "Boolean" + } + } + ] + }, + "../../shared/fightControl/fightType/addBuff_type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "addBuff" + } + }, + { + "id": 1, + "name": "toRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "skillId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 4, + "name": "buffType", + "type": { + "type": "String" + } + }, + { + "id": 5, + "name": "buffId", + "type": { + "type": "String" + } + } + ] + }, + "../../shared/fightControl/fightType/delBuff_type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "delBuff" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "skillId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 3, + "name": "buffId", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "buffType", + "type": { + "type": "String" + } + }, + { + "id": 5, + "name": "why", + "type": { + "type": "String" + }, + "optional": true + } + ] + }, + "../../shared/fightControl/fightType/startAct_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "startAct" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + } + ] + }, + "../../shared/fightControl/fightType/stopAct_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "stopAct" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + } + ] + }, + "../../shared/fightControl/fightType/fightEnd_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "fightEnd" + } + }, + { + "id": 1, + "name": "winSide", + "type": { + "type": "Number" + } + } + ] + }, + "../../shared/fightControl/fightType/roleDead_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "roleDead" + } + }, + { + "id": 1, + "name": "isFuhou", + "type": { + "type": "Boolean" + } + }, + { + "id": 2, + "name": "fromRole", + "type": { + "type": "String" + } + } + ] + }, + "../../shared/fightControl/fightType/addHp_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "addHp" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "why", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "buffId", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "nv", + "type": { + "type": "Number" + } + }, + { + "id": 5, + "name": "ov", + "type": { + "type": "Number" + } + } + ] + }, + "../../shared/fightControl/fightType/downHp_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "downHp" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "why", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "buffId", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "nv", + "type": { + "type": "Number" + } + }, + { + "id": 5, + "name": "ov", + "type": { + "type": "Number" + } + } + ] + }, + "../../shared/fightControl/fightType/fanji_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "fanji" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "targets", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + }, + { + "id": 3, + "name": "skillId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 4, + "name": "rolesInfo", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/atkRoleInfo_Type" + } + } + } + } + ] + }, + "../../shared/fightControl/fightType/fuhuo_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "fuhuo" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "target", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "nv", + "type": { + "type": "Number" + } + } + ] + }, + "../../shared/fightControl/fightType/chongsheng_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "chongsheng" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "target", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "nv", + "type": { + "type": "Number" + } + } + ] + }, + "../../shared/fightControl/fightType/playerNuqi_Type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "act", + "type": { + "type": "Literal", + "literal": "playerNuqi" + } + }, + { + "id": 1, + "name": "fromRole", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "maxnuqi", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "nuqi", + "type": { + "type": "Number" + } + } + ] + }, + "../../shared/fightControl/fightType/joinFightData": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "player", + "type": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Partial", + "target": { + "type": "IndexedAccess", + "index": "gud", + "objectType": { + "type": "Reference", + "target": "../../shared/protocols/user/PtlLogin/ResLogin" + } + } + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "buff", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + }, + { + "id": 1, + "name": "side", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 2, + "name": "pos", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + }, + "optional": true + }, + { + "id": 3, + "name": "attr", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + }, + { + "id": 4, + "name": "dead", + "type": { + "type": "Boolean" + }, + "optional": true + } + ] + } + } + ] + } + }, + { + "id": 1, + "name": "roles", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/roleDataType" + } + } + } + } + ] + }, + "../../shared/protocols/user/PtlLogin/ResLogin": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "gud", + "type": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Reference", + "target": "../../shared/protocols/user/PtlLogin/playerInfo" + } + }, + { + "id": 1, + "type": { + "type": "Reference", + "target": "../../shared/protocols/user/PtlLogin/playerAttr" + } + }, + { + "id": 2, + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "../../shared/protocols/user/PtlLogin/playerAppend" + } + } + } + ] + } + }, + { + "id": 1, + "name": "openTime", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "curTime", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "firstLogin", + "type": { + "type": "Boolean" + } + }, + { + "id": 4, + "name": "otherData", + "type": { + "type": "Any" + }, + "optional": true + } + ] + }, + "../../shared/protocols/user/PtlLogin/playerInfo": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "vip", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "bindUid", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "power", + "type": { + "type": "Number" + } + } + ] + }, + "../../shared/protocols/user/PtlLogin/playerAttr": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "nexp", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "jinbi", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "rmbmoney", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "rongyu", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "payExp", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 5, + "name": "guijinshu", + "type": { + "type": "Number" + }, + "optional": true + } + ] + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + } + } + ] + }, + "../../shared/protocols/user/PtlLogin/playerAppend": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "tujianLv", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "head", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 2, + "name": "headFrame", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 3, + "name": "chatFrame", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 4, + "name": "name", + "type": { + "type": "String" + } + }, + { + "id": 5, + "name": "model", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "time", + "type": { + "type": "Number" + } + } + ] + } + } + } + }, + { + "id": 6, + "name": "renown", + "type": { + "type": "Number" + } + }, + { + "id": 7, + "name": "wxcLv", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "ids", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + ] + } + }, + { + "id": 8, + "name": "mapId", + "type": { + "type": "Number" + } + }, + { + "id": 9, + "name": "shoucangping", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 10, + "name": "useTujianLvPoint", + "type": { + "type": "Number" + } + }, + { + "id": 11, + "name": "skills", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 12, + "name": "fightSkills", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + }, + { + "id": 13, + "name": "heroPos", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + }, + { + "id": 14, + "name": "ghId", + "type": { + "type": "String" + } + }, + { + "id": 15, + "name": "ghName", + "type": { + "type": "String" + } + }, + { + "id": 16, + "name": "ghLevel", + "type": { + "type": "Reference", + "target": "../../shared/protocols/gonghui/type/gonghuiLevel" + } + }, + { + "id": 17, + "name": "ghwz", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + }, + { + "id": 18, + "name": "ghExitTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 19, + "name": "loginTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 20, + "name": "logoutTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 21, + "name": "cTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 22, + "name": "loginDays", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 23, + "name": "serverName", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 24, + "name": "sid", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 25, + "name": "onlineTime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 26, + "name": "newonlinetime", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 27, + "name": "isNpc", + "type": { + "type": "Boolean" + }, + "optional": true + }, + { + "id": 28, + "name": "matrix", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + }, + { + "id": 29, + "name": "matrixPos", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + } + }, + "optional": true + }, + { + "id": 30, + "name": "selectMatrix", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 31, + "name": "fightHeros", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + }, + "optional": true + }, + { + "id": 32, + "name": "helpHeros", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "jieji", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "heroId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + }, + "optional": true + }, + { + "id": 3, + "name": "heroPosId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + }, + { + "id": 2, + "type": { + "type": "Literal" + } + } + ] + }, + "optional": true + } + ] + } + }, + "optional": true + }, + { + "id": 33, + "name": "changeNameNum", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 34, + "name": "peijianUnlock", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + }, + "optional": true + }, + { + "id": 35, + "name": "headFrames", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + }, + { + "id": 36, + "name": "chatFrames", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + }, + "optional": true + } + ] + }, + "../../shared/protocols/gonghui/type/gonghuiLevel": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 0 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 1 + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": 2 + } + }, + { + "id": 3, + "type": { + "type": "Literal", + "literal": 3 + } + }, + { + "id": 4, + "type": { + "type": "Literal", + "literal": 4 + } + } + ] + }, + "../../shared/fightControl/fightType/roleDataType": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Partial", + "target": { + "type": "IndexedAccess", + "index": "", + "objectType": { + "type": "IndexedAccess", + "index": "list", + "objectType": { + "type": "Reference", + "target": "../../shared/protocols/hero/PtlGetList/ResGetList" + } + } + } + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "attr", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + } + }, + { + "id": 1, + "name": "side", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 2, + "name": "pos", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + }, + "optional": true + }, + { + "id": 3, + "name": "dead", + "type": { + "type": "Boolean" + }, + "optional": true + }, + { + "id": 4, + "name": "lockHp", + "type": { + "type": "Boolean" + }, + "optional": true + }, + { + "id": 5, + "name": "maxhp", + "type": { + "type": "Number" + }, + "optional": true + } + ] + } + }, + { + "id": 2, + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + } + } + ] + }, + "../../shared/protocols/hero/PtlGetList/ResGetList": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "list", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "heroId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 2, + "name": "lv", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "jieji", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "getTime", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 1, + "type": { + "type": "Partial", + "target": { + "type": "Reference", + "target": "../../shared/protocols/hero/PtlGetList/heroAddKey" + } + } + } + ] + } + } + } + }, + { + "id": 1, + "name": "pos", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + }, + { + "id": 2, + "name": "lshd", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 3, + "name": "gbzj", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Boolean" + } + } + } + } + ] + }, + "../../shared/protocols/hero/PtlGetList/heroAddKey": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "equip", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + }, + { + "id": 1, + "name": "zhanli", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "weapon", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "jieji", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "star", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "starProbability", + "type": { + "type": "Number" + } + } + ] + } + }, + { + "id": 3, + "name": "shiwu", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Reference", + "target": "../../shared/protocols/type/heroShiWu" + } + } + } + }, + { + "id": 4, + "name": "qiannneg", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 5, + "name": "awake", + "type": { + "type": "Number" + } + }, + { + "id": 6, + "name": "talent", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 7, + "name": "peijian", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "String" + } + } + } + } + ] + }, + "../../shared/protocols/type/heroShiWu": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "target": { + "type": "IndexedAccess", + "index": "", + "objectType": { + "type": "IndexedAccess", + "index": "list", + "objectType": { + "type": "Reference", + "target": "../../shared/protocols/shiwu/PtlGetList/ResGetList" + } + } + }, + "keys": [ + "_id", + "jichu", + "fujia", + "zhuanshu" + ], + "type": "Pick" + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "shiwuId", + "type": { + "type": "String" + }, + "optional": true + }, + { + "id": 1, + "name": "colour", + "type": { + "type": "Number" + }, + "optional": true + } + ] + } + } + ] + }, + "../../shared/protocols/shiwu/PtlGetList/ResGetList": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "list", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "colour", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "shiwuId", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "wearId", + "type": { + "type": "String" + } + }, + { + "id": 4, + "name": "jichu", + "type": { + "type": "Array", + "elementType": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + } + ] + } + } + }, + { + "id": 5, + "name": "fujia", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "colour", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "buffKey", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "buffVal", + "type": { + "type": "Number" + } + } + ] + } + } + }, + { + "id": 6, + "name": "zhuanshu", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hero", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "buff", + "type": { + "type": "Tuple", + "elementTypes": [ + { + "type": "String" + }, + { + "type": "Number" + } + ] + }, + "optional": true + }, + { + "id": 2, + "name": "skill", + "type": { + "type": "String" + }, + "optional": true + } + ] + }, + "optional": true + } + ] + } + } + } + } + ] + }, + "wzry/PtlCatGroup/ReqCatGroup": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "group", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "deep", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 256 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 64 + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": 8 + } + } + ] + } + } + ] + }, + "wzry/PtlCatGroup/ResCatGroup": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "grouplist", + "type": { + "type": "Array", + "elementType": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Reference", + "target": "wzry/PtlOpen/wangzherongyao_baoming" + } + }, + { + "id": 1, + "type": { + "type": "Reference", + "target": "wzry/PtlOpen/wangzherongyao_fight_group" + } + } + ] + } + } + } + ] + }, + "wzry/PtlOpen/wangzherongyao_baoming": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "jifen", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "zkey", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "data", + "type": { + "type": "Reference", + "target": "wzry/PtlOpen/wangzherongyao_biaogeshi" + } + }, + { + "id": 4, + "name": "deep", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 5, + "name": "rank", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "wzry/PtlOpen/wangzherongyao_fight_group": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "groupinfo", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "groupid", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "orderid", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "order", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "optional": true + }, + { + "id": 1, + "name": "matchlog", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "optional": true + }, + { + "id": 2, + "name": "isprize", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "optional": true + } + ] + }, + "wzry/PtlDldFight/ReqDldFight": { + "type": "Interface" + }, + "wzry/PtlDldFight/ResDldFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "mydata", + "type": { + "type": "Reference", + "target": "wzry/PtlOpen/wzry_info" + } + }, + { + "id": 1, + "name": "result", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + }, + { + "id": 2, + "name": "wzfight", + "type": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Reference", + "target": "wzry/PtlOpen/wangzherongyao_baoming" + } + }, + { + "id": 1, + "type": { + "type": "Reference", + "target": "wzry/PtlOpen/wangzherongyao_fight_group" + } + } + ] + } + } + ] + }, + "wzry/PtlDldRefre/ReqDldRefre": { + "type": "Interface" + }, + "wzry/PtlDldRefre/ResDldRefre": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "mydata", + "type": { + "type": "Reference", + "target": "wzry/PtlOpen/wzry_info" + } + } + ] + }, + "wzry/PtlJingCai/ReqJingCai": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "guess", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": 1 + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": 2 + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": 3 + } + } + ] + } + }, + { + "id": 1, + "name": "touid", + "type": { + "type": "String" + } + } + ] + }, + "wzry/PtlJingCai/ResJingCai": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + }, + { + "id": 1, + "name": "mydata", + "type": { + "type": "Reference", + "target": "wzry/PtlOpen/wzry_info" + } + } + ] + }, + "wzry/PtlJingCaiOpen/ReqJingCaiOpen": { + "type": "Interface" + }, + "wzry/PtlJingCaiOpen/ResJingCaiOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "jclist", + "type": { + "type": "Array", + "elementType": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Reference", + "target": "wzry/PtlOpen/wangzherongyao_baoming" + } + }, + { + "id": 1, + "type": { + "type": "Reference", + "target": "wzry/PtlOpen/wangzherongyao_fight_group" + } + } + ] + } + } + }, + { + "id": 1, + "name": "jcallnum", + "type": { + "type": "Number" + } + } + ] + }, + "wzry/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "wzry/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "status", + "type": { + "type": "Reference", + "target": "wzry/PtlOpen/wangzherongyao_staus" + } + }, + { + "id": 1, + "name": "mydata", + "type": { + "type": "Reference", + "target": "wzry/PtlOpen/wzry_info" + } + }, + { + "id": 2, + "name": "zkey", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "bmnum", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "time", + "type": { + "type": "Number" + } + }, + { + "id": 5, + "name": "mygroup", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + } + } + ] + }, + "wzry/PtlOpen/wangzherongyao_staus": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "status", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "num", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 2, + "name": "stime", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "etime", + "type": { + "type": "Number" + } + } + ] + }, + "wzry/PtlUpdateFight/ReqUpdateFight": { + "type": "Interface" + }, + "wzry/PtlUpdateFight/ResUpdateFight": { + "type": "Interface" + }, + "wzry/PtlWzzd/ReqWzzd": { + "type": "Interface" + }, + "wzry/PtlWzzd/ResWzzd": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "wzzdlist", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "wzry/PtlOpen/wangzherongyao_fourWiner" + } + } + } + ] + }, + "wzry/PtlOpen/wangzherongyao_fourWiner": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "round", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "zkey", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "ranklist", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "../../module/collection_wzryfight/CollectionWzryCrossFight" + } + } + }, + { + "id": 3, + "name": "ctime", + "type": { + "type": "Number" + } + } + ] + }, + "../../module/collection_wzryfight/CollectionWzryCrossFight": { + "type": "Intersection", + "members": [ + { + "id": 0, + "type": { + "type": "Reference", + "target": "../../shared/protocols/wzry/PtlOpen/wangzherongyao_baoming" + } + }, + { + "id": 1, + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "uid", + "type": { + "type": "String" + } + } + ] + } + }, + { + "id": 2, + "type": { + "type": "Reference", + "target": "../../shared/protocols/wzry/PtlOpen/wangzherongyao_fight_group" + } + } + ] + }, + "../../shared/protocols/wzry/PtlOpen/wangzherongyao_baoming": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "jifen", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "zkey", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "uid", + "type": { + "type": "String" + } + }, + { + "id": 3, + "name": "data", + "type": { + "type": "Reference", + "target": "../../shared/protocols/wzry/PtlOpen/wangzherongyao_biaogeshi" + } + }, + { + "id": 4, + "name": "deep", + "type": { + "type": "Number" + }, + "optional": true + }, + { + "id": 5, + "name": "rank", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "../../shared/protocols/wzry/PtlOpen/wangzherongyao_biaogeshi": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "player", + "type": { + "type": "Partial", + "target": { + "type": "IndexedAccess", + "index": "gud", + "objectType": { + "type": "Reference", + "target": "../../shared/protocols/user/PtlLogin/ResLogin" + } + } + } + }, + { + "id": 1, + "name": "roles", + "type": { + "type": "IndexedAccess", + "index": "roles", + "objectType": { + "type": "Reference", + "target": "../../shared/fightControl/fightType/joinFightData" + } + } + }, + { + "id": 2, + "name": "valArr", + "type": { + "type": "Array", + "elementType": { + "type": "Any" + } + }, + "optional": true + } + ] + }, + "../../shared/protocols/wzry/PtlOpen/wangzherongyao_fight_group": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "groupinfo", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "groupid", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "orderid", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "order", + "type": { + "type": "Number" + }, + "optional": true + } + ] + }, + "optional": true + }, + { + "id": 1, + "name": "matchlog", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "optional": true + }, + { + "id": 2, + "name": "isprize", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Any" + } + } + }, + "optional": true + } + ] + }, + "wzry/PtlZuanShiOpen/ReqZuanShiOpen": { + "type": "Interface" + }, + "wzry/PtlZuanShiOpen/ResZuanShiOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "mygroup", + "type": { + "type": "Number" + } + } + ] + }, + "xstask/PtlAllGet/ReqAllGet": { + "type": "Interface" + }, + "xstask/PtlAllGet/ResAllGet": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "taskList", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "xstask/type/xsTask" + } + } + }, + { + "id": 1, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "xstask/type/xsTask": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "taskId", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "receiveData", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "time", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "heros", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + }, + { + "id": 2, + "name": "rec", + "type": { + "type": "Boolean" + }, + "optional": true + } + ] + }, + "optional": true + } + ] + }, + "xstask/PtlGet/ReqGet": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + } + ] + }, + "xstask/PtlGet/ResGet": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "taskList", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "xstask/type/xsTask" + } + } + }, + { + "id": 1, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] + }, + "xstask/PtlLvUp/ReqLvUp": { + "type": "Interface" + }, + "xstask/PtlLvUp/ResLvUp": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Number" + } + } + ] + }, + "xstask/PtlOnekeyReceive/ReqOnekeyReceive": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "xstask/PtlReceive/ReqReceive" + } + }, + "xstask/PtlReceive/ReqReceive": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "heroIds", + "type": { + "type": "Array", + "elementType": { + "type": "String" + } + } + } + ] + }, + "xstask/PtlOnekeyReceive/ResOnekeyReceive": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Reference", + "target": "xstask/PtlReceive/ResReceive" + } + } + }, + "xstask/PtlReceive/ResReceive": { + "type": "IndexedAccess", + "index": "receiveData", + "objectType": { + "type": "Reference", + "target": "xstask/type/xsTask" + } + }, + "xstask/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "xstask/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "finishNum", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 2, + "name": "useFreeRefreshNum", + "type": { + "type": "Number" + } + }, + { + "id": 3, + "name": "lastRefreshTime", + "type": { + "type": "Number" + } + }, + { + "id": 4, + "name": "taskList", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "xstask/type/xsTask" + } + } + } + ] + }, + "xstask/PtlRefresh/ReqRefresh": { + "type": "Interface" + }, + "xstask/PtlRefresh/ResRefresh": { + "type": "Partial", + "target": { + "target": { + "type": "Reference", + "target": "xstask/PtlOpen/ResOpen" + }, + "keys": [ + "taskList", + "useFreeRefreshNum" + ], + "type": "Pick" + } + }, + "yongbingzhuzhan/PtlHandle/ReqHandle": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "_id", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "state", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "shangzhen" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "xiexia" + } + } + ] + } + }, + { + "id": 2, + "name": "heroPosId", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "String" + } + }, + { + "id": 1, + "type": { + "type": "Number" + } + }, + { + "id": 2, + "type": { + "type": "Literal" + } + } + ] + }, + "optional": true + } + ] + }, + "yongbingzhuzhan/PtlHandle/ResHandle": { + "type": "Interface" + }, + "zhanqianbushu/PtlChangePos/ReqChangePos": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "movePos", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "toPos", + "type": { + "type": "String" + } + } + ] + }, + "zhanqianbushu/PtlChangePos/ResChangePos": { + "type": "Interface" + }, + "zhanqianbushu/PtlSelect/ReqSelect": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "String" + } + } + ] + }, + "zhanqianbushu/PtlSelect/ResSelect": { + "type": "Interface" + }, + "zhanqianbushu/PtlUp/ReqUp": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "type", + "type": { + "type": "String" + } + } + ] + }, + "zhanqianbushu/PtlUp/ResUp": { + "type": "Interface" + } + } +}; \ No newline at end of file diff --git a/src/shared/protocols/shiwu/PtlConcise.ts b/src/shared/protocols/shiwu/PtlConcise.ts new file mode 100644 index 0000000..7219689 --- /dev/null +++ b/src/shared/protocols/shiwu/PtlConcise.ts @@ -0,0 +1,15 @@ + +/** + * 饰物洗练 + */ + +export type ReqConcise = { + /**饰物唯一id */ + _id: string; + /**需要锁定的属性下标 */ + lockArr: number[]; +}; + +export type ResConcise = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/shiwu/PtlExtract.ts b/src/shared/protocols/shiwu/PtlExtract.ts new file mode 100644 index 0000000..026d461 --- /dev/null +++ b/src/shared/protocols/shiwu/PtlExtract.ts @@ -0,0 +1,13 @@ +import { prizeType } from '../type'; + +/** + * 饰物提炼 + */ +export type ReqExtract = { + _ids: string[]; +}; + +export type ResExtract = { + prize: prizeType[]; + newIds: string[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/shiwu/PtlGetList.ts b/src/shared/protocols/shiwu/PtlGetList.ts new file mode 100644 index 0000000..c745e5f --- /dev/null +++ b/src/shared/protocols/shiwu/PtlGetList.ts @@ -0,0 +1,33 @@ + +/** + * 获取饰物列表 + */ + +export type ReqGetList = { + +}; + +export type ResGetList = { + list: { + [_id: string]: { + /**唯一id */ + _id: string; + /**品质 */ + colour: number; + /**饰物id */ + shiwuId: string; + /**穿戴id */ + wearId: string; + /**基础属性 */ + jichu: (string | number)[]; + /**附加属性 */ + fujia: { colour: number, buffKey: string, buffVal: number; }[]; + /**专属属性 */ + zhuanshu?: { + hero: string; + buff?: [string, number]; + skill?: string; + }; + }; + }; +}; \ No newline at end of file diff --git a/src/shared/protocols/shiwu/PtlLvUp.ts b/src/shared/protocols/shiwu/PtlLvUp.ts new file mode 100644 index 0000000..499b4e2 --- /dev/null +++ b/src/shared/protocols/shiwu/PtlLvUp.ts @@ -0,0 +1,13 @@ + + +export type ReqLvUp = { + /**强化饰物的唯一id */ + _id: string; + /**吞噬饰物的唯一id */ + _ids: string[]; +}; + +export type ResLvUp = { + /**是否升级成功 */ + isSucc: boolean; +}; \ No newline at end of file diff --git a/src/shared/protocols/shiwu/PtlRecast.ts b/src/shared/protocols/shiwu/PtlRecast.ts new file mode 100644 index 0000000..3976897 --- /dev/null +++ b/src/shared/protocols/shiwu/PtlRecast.ts @@ -0,0 +1,14 @@ + +/** + * 饰物重铸 + */ + +export type ReqRecast = { + /**饰物唯一id */ + _id: string; + needType: 1 | 2; +}; + +export type ResRecast = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/shiwu/PtlTakeOff.ts b/src/shared/protocols/shiwu/PtlTakeOff.ts new file mode 100644 index 0000000..805fb95 --- /dev/null +++ b/src/shared/protocols/shiwu/PtlTakeOff.ts @@ -0,0 +1,13 @@ + +/** + * 饰物卸下 + */ + +export type ReqTakeOff = { + /**饰物唯一id */ + _id: string; +}; + +export type ResTakeOff = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/shiwu/PtlWear.ts b/src/shared/protocols/shiwu/PtlWear.ts new file mode 100644 index 0000000..c9c893c --- /dev/null +++ b/src/shared/protocols/shiwu/PtlWear.ts @@ -0,0 +1,17 @@ + +/** + * 饰物穿戴 + */ + +export type ReqWear = { + /**穿戴位置 */ + pos: '1' | '2'; + /**英雄唯一id */ + heroId: string; + /**饰物唯一id */ + shiwuId: string; +}; + +export type ResWear = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/shootGame/PtlOpen.ts b/src/shared/protocols/shootGame/PtlOpen.ts new file mode 100644 index 0000000..252bca7 --- /dev/null +++ b/src/shared/protocols/shootGame/PtlOpen.ts @@ -0,0 +1,16 @@ + +/** + * 射击小游戏 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + /**已通关过的难度 */ + passList: { + [id: string]: number; + }; + /**今日已领取的难度奖励 */ + receiveList: string[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/shootGame/PtlRec.ts b/src/shared/protocols/shootGame/PtlRec.ts new file mode 100644 index 0000000..20c114c --- /dev/null +++ b/src/shared/protocols/shootGame/PtlRec.ts @@ -0,0 +1,15 @@ +import { prizeType } from '../type'; + +/** + * 射击小游戏领奖 + */ +export type ReqRec = { + /**关卡 */ + id: string; + /**领奖等级 */ + level: string; +}; + +export type ResRec = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/shop/PtlBuy.ts b/src/shared/protocols/shop/PtlBuy.ts new file mode 100644 index 0000000..7d5c32c --- /dev/null +++ b/src/shared/protocols/shop/PtlBuy.ts @@ -0,0 +1,19 @@ +import { prizeType } from '../type'; +import { ResOpen } from './PtlOpen'; + +/** + * 购买商品 + */ +export type ReqBuy = { + /**商店id */ + shopId: string; + /**购买下标 */ + buyIndex: number; + /**购买数量 默认1 */ + buyNum?: number; +}; + +export type ResBuy = { + prize: prizeType[]; + buyNum: ResOpen['buyNum']; +}; \ No newline at end of file diff --git a/src/shared/protocols/shop/PtlOpen.ts b/src/shared/protocols/shop/PtlOpen.ts new file mode 100644 index 0000000..8ba4fc5 --- /dev/null +++ b/src/shared/protocols/shop/PtlOpen.ts @@ -0,0 +1,81 @@ + + +/** + * 商店open接口 + */ +export type ReqOpen = { + /**商店id */ + shopId: string; +}; + +export type ResOpen = { + /**购买次数 商品在shopItems的数组下标对应已购买的数量*/ + buyNum: { + [index: string]: number; + }; + /**商品列表 */ + shopItems: shopItem[]; + /**已使用的免费刷新次数 */ + useFreeRefreshNum: number; + /**已使用的手动刷新次数 */ + useRecoilRefreshNum: number; + /**上一次自动刷新的刷新时间戳 */ + lastAutoRefreshTime: number; + /**上一次免费刷新次数的刷新时间戳 */ + lastFreeRefreshTime: number; +}; + + +export type shopItem = { + /** 掉落组 */ + 'id': number; + /** 掉落类型 */ + 'a': string; + /** 掉落id */ + 't': number; + /** 掉落数量 */ + 'n': number; + /** 权重 */ + 'p': number; + /**道具品质 */ + 'colour': number; + /** 购买次数 */ + 'buyNum': number; + /** 开服多少天之后开启 */ + 'openDay': number; + /** 购买消耗(计算了折扣后的消耗) */ + 'buyNeed': { "a": string, "t": string, "n": number, [x: string]: any; }[]; + /** 折扣(仅前端显示用) */ + 'sale': number; + /** vip需要达到多少才可购买 */ + 'needVip': number; + /** 斩草除根条件 */ + 'needZCCG'?: number; + /**饰物属性 */ + shiwuBuff?: any; + /**vip增加购买次数 */ + vipAddbuyNum?: any[]; +}; + +export type shop = { + /** 商店id */ + 'id': number; + /** 商店名字 */ + 'name': string; + /** 开启条件 */ + 'openCond': [string, number]; + /** 自动刷新间隔 */ + 'autoRefreshTime': number; + /** 手动刷新消耗 */ + 'recoilRefreshNeed': { "a": string, "t": string, "n": number, [x: string]: any; }[]; + /** 手动刷新次数 */ + 'recoilRefreshNum': number; + /** 免费刷新次数刷新间隔 */ + 'freeRefreshInterval': number; + /** 免费刷新次数 */ + 'freeRefreshNum': number; + /** 商品组 */ + 'shopItems': [number, number, number, number, number, number]; + /** 展示道具 */ + 'showItem': { "a": string, "t": string, "n": number, [x: string]: any; }[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/shop/PtlRefresh.ts b/src/shared/protocols/shop/PtlRefresh.ts new file mode 100644 index 0000000..aff423b --- /dev/null +++ b/src/shared/protocols/shop/PtlRefresh.ts @@ -0,0 +1,11 @@ +import { ResOpen } from './PtlOpen'; + +/** + * 商店刷新 + */ +export type ReqRefresh = { + /**商店id */ + shopId: string; +}; + +export type ResRefresh = Pick & Partial>; \ No newline at end of file diff --git a/src/shared/protocols/sign/PtlGetBoxPrize.ts b/src/shared/protocols/sign/PtlGetBoxPrize.ts new file mode 100644 index 0000000..6a59ee0 --- /dev/null +++ b/src/shared/protocols/sign/PtlGetBoxPrize.ts @@ -0,0 +1,12 @@ +import { prizeType } from '../type'; +/** + * 领取签到宝箱奖励 + */ +export type ReqGetBoxPrize = { + key: string +}; + +export type ResGetBoxPrize = { + mydata: any, + prize: prizeType[] +}; \ No newline at end of file diff --git a/src/shared/protocols/sign/PtlGetPrize.ts b/src/shared/protocols/sign/PtlGetPrize.ts new file mode 100644 index 0000000..ef86574 --- /dev/null +++ b/src/shared/protocols/sign/PtlGetPrize.ts @@ -0,0 +1,13 @@ +import { prizeType } from '../type'; + +/** + * 领取关卡奖励 + */ +export type ReqGetPrize = { + idx: string +}; + +export type ResGetPrize = { + mydata: any, + prize: prizeType[] +}; \ No newline at end of file diff --git a/src/shared/protocols/sign/PtlOpen.ts b/src/shared/protocols/sign/PtlOpen.ts new file mode 100644 index 0000000..969d234 --- /dev/null +++ b/src/shared/protocols/sign/PtlOpen.ts @@ -0,0 +1,12 @@ +import { signType } from './type'; +/** + * open接口 + */ +export type ReqOpen = { + + +}; + +export type ResOpen = { + mydata: any +}; \ No newline at end of file diff --git a/src/shared/protocols/sign/type.ts b/src/shared/protocols/sign/type.ts new file mode 100644 index 0000000..ee497da --- /dev/null +++ b/src/shared/protocols/sign/type.ts @@ -0,0 +1,17 @@ + +export type signType = { + /**上一次重置时间 */ + refreshtime: number; + /**已经领取 */ + gotarr: number[]; + /**登录天数 */ + login: number; + /**配置key 月份 */ + key: string + /**更新登录时间 */ + logintime: number + /**宝箱领取数据 */ + boxgotarr: number[] +}; + +export const ctype = "sign_qiandao" \ No newline at end of file diff --git a/src/shared/protocols/slzd/PtlAim.ts b/src/shared/protocols/slzd/PtlAim.ts new file mode 100644 index 0000000..873cbe0 --- /dev/null +++ b/src/shared/protocols/slzd/PtlAim.ts @@ -0,0 +1,12 @@ + + +/** + * 集火设置 + */ +export type ReqAim = { + fort: string; +}; + +export type ResAim = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/slzd/PtlBuyNum.ts b/src/shared/protocols/slzd/PtlBuyNum.ts new file mode 100644 index 0000000..2d7c64d --- /dev/null +++ b/src/shared/protocols/slzd/PtlBuyNum.ts @@ -0,0 +1,8 @@ + + +/** + * 购买挑战次数 + */ +export type ReqBuyNum = { num: number; }; + +export type ResBuyNum = {}; \ No newline at end of file diff --git a/src/shared/protocols/slzd/PtlFight.ts b/src/shared/protocols/slzd/PtlFight.ts new file mode 100644 index 0000000..bf092cf --- /dev/null +++ b/src/shared/protocols/slzd/PtlFight.ts @@ -0,0 +1,16 @@ +import { fightResult } from '../../fightControl/fightType'; +import { ResOpen } from './PtlOpen'; + + +/** + * 挑战 + */ +export type ReqFight = { + fort: string; + index: number; +}; + +export type ResFight = { + result: fightResult; + change: Partial; +}; \ No newline at end of file diff --git a/src/shared/protocols/slzd/PtlFightLog.ts b/src/shared/protocols/slzd/PtlFightLog.ts new file mode 100644 index 0000000..d025988 --- /dev/null +++ b/src/shared/protocols/slzd/PtlFightLog.ts @@ -0,0 +1,7 @@ +import { fightResult } from '../../fightControl/fightType'; + + +export type ReqFightLog = { +}; + +export type ResFightLog = fightResult[]; \ No newline at end of file diff --git a/src/shared/protocols/slzd/PtlMyRank.ts b/src/shared/protocols/slzd/PtlMyRank.ts new file mode 100644 index 0000000..acaa9f3 --- /dev/null +++ b/src/shared/protocols/slzd/PtlMyRank.ts @@ -0,0 +1,13 @@ +import { rankInfo } from '../type'; + + +/** + * 个人排名 + */ +export type ReqMyRank = { + +}; + +export type ResMyRank = { + rankList: rankInfo[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/slzd/PtlOpen.ts b/src/shared/protocols/slzd/PtlOpen.ts new file mode 100644 index 0000000..fbfebfc --- /dev/null +++ b/src/shared/protocols/slzd/PtlOpen.ts @@ -0,0 +1,41 @@ +import { joinFightData } from '../../fightControl/fightType'; +/** + * 进入势力争夺 + */ +export type ReqOpen = { + +}; + +export type ResOpen = { + /**集火 */ + aim: string; + /**胜利次数 */ + winNum: number; + /**已领取的胜场奖励 */ + winRec: number[]; + /**挑战次数 */ + fightNum: number; + /**已购买挑战次数 */ + buyFightNum: number; + /**已使用的刷新次数 */ + useRefreshNum: number; + /**战斗次数+1的开始时间戳 */ + replyCd: number; + /**敌人 */ + enemy: { + [fort: string]: { + data: joinFightData; + result: null | number; + }[]; + }; + /**老虎机日志 */ + soltLog: { name: string, prize: any[]; }[]; + /**特产库 */ + stashObj?: { + [k: string]: number + } +}; + +export const conf = { + needGudKey: ['ghId'] +}; \ No newline at end of file diff --git a/src/shared/protocols/slzd/PtlOpenFort.ts b/src/shared/protocols/slzd/PtlOpenFort.ts new file mode 100644 index 0000000..ea35d05 --- /dev/null +++ b/src/shared/protocols/slzd/PtlOpenFort.ts @@ -0,0 +1,13 @@ +import { ResOpen } from './PtlOpen'; + + +/** + * 进入势力争夺区域 + */ +export type ReqOpenFort = { + fort: string; +}; + +export type ResOpenFort = { + enemy?: ResOpen['enemy']['']; +}; \ No newline at end of file diff --git a/src/shared/protocols/slzd/PtlRec.ts b/src/shared/protocols/slzd/PtlRec.ts new file mode 100644 index 0000000..0763151 --- /dev/null +++ b/src/shared/protocols/slzd/PtlRec.ts @@ -0,0 +1,13 @@ +import { prizeType } from '../type'; + + +/** + * 领取每日胜场奖励 + */ +export type ReqRec = { + index: number; +}; + +export type ResRec = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/slzd/PtlRefresh.ts b/src/shared/protocols/slzd/PtlRefresh.ts new file mode 100644 index 0000000..17ad120 --- /dev/null +++ b/src/shared/protocols/slzd/PtlRefresh.ts @@ -0,0 +1,13 @@ +import { ResOpen } from './PtlOpen'; + + +/** + * 刷新 + */ +export type ReqRefresh = { + fort: string; +}; + +export type ResRefresh = { + enemy: ResOpen['enemy']['']; +}; \ No newline at end of file diff --git a/src/shared/protocols/slzd/PtlSlot.ts b/src/shared/protocols/slzd/PtlSlot.ts new file mode 100644 index 0000000..48d1258 --- /dev/null +++ b/src/shared/protocols/slzd/PtlSlot.ts @@ -0,0 +1,13 @@ +import { prizeType } from '../type'; + + +/** + * 老虎机 + */ +export type ReqSlot = { + +}; + +export type ResSlot = { + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/tanxian/PtlEvent.ts b/src/shared/protocols/tanxian/PtlEvent.ts new file mode 100644 index 0000000..42aad36 --- /dev/null +++ b/src/shared/protocols/tanxian/PtlEvent.ts @@ -0,0 +1,17 @@ +import { prizeType } from '../type'; + + + +/** + * 领取事件奖励 + */ +export type ReqEvent = { + +}; + +export type ResEvent = { + prize: prizeType[]; + eventTime: number; + iNum?: number; + aNum?: number; +}; \ No newline at end of file diff --git a/src/shared/protocols/tanxian/PtlFastGuaJi.ts b/src/shared/protocols/tanxian/PtlFastGuaJi.ts new file mode 100644 index 0000000..81ce78d --- /dev/null +++ b/src/shared/protocols/tanxian/PtlFastGuaJi.ts @@ -0,0 +1,16 @@ +import { prizeType } from '../type'; +import { ResOpen } from './PtlOpen'; + + +/** + * 快速挂机 + */ +export type ReqFastGuaJi = { + +}; + +export type ResFastGuaJi = { + prize: prizeType[]; + iNum?: number; + aNum?: number; +} & Pick; \ No newline at end of file diff --git a/src/shared/protocols/tanxian/PtlFight.ts b/src/shared/protocols/tanxian/PtlFight.ts new file mode 100644 index 0000000..466f05a --- /dev/null +++ b/src/shared/protocols/tanxian/PtlFight.ts @@ -0,0 +1,14 @@ +import { fightResult } from '../../fightControl/fightType'; +import { prizeType } from '../type'; + +/** + * 探险挑战 + */ +export type ReqFight = {}; + +export type ResFight = { + /**战斗胜利奖励 */ + prize?: prizeType[]; + /**战斗数据 */ + result: fightResult; +}; \ No newline at end of file diff --git a/src/shared/protocols/tanxian/PtlGuaJi.ts b/src/shared/protocols/tanxian/PtlGuaJi.ts new file mode 100644 index 0000000..c25012f --- /dev/null +++ b/src/shared/protocols/tanxian/PtlGuaJi.ts @@ -0,0 +1,14 @@ +import { prizeType } from '../type'; +import { ResOpen } from './PtlOpen'; + + +/** + * 领取挂机奖励 + */ +export type ReqGuaJi = { + +}; + +export type ResGuaJi = { + prize: prizeType[]; +} & Pick; \ No newline at end of file diff --git a/src/shared/protocols/tanxian/PtlOpen.ts b/src/shared/protocols/tanxian/PtlOpen.ts new file mode 100644 index 0000000..f9eb3b0 --- /dev/null +++ b/src/shared/protocols/tanxian/PtlOpen.ts @@ -0,0 +1,27 @@ + +/** + * 探险open + */ +export type ReqOpen = { + /**是否使用缓存 建议进游戏前使用false 进游戏后使用true*/ + cache: boolean; +}; + +export type ResOpen = { + /**事件开始时间 */ + eventTime?: number; + /**从哪个时间戳开始挂机 */ + lastGuaJiTime: number; + /**快速挂机次数 */ + fastGuaJiNum: number; + /**已使用的快速挂机次数 */ + useFastGuaJiNum: number; + /**已使用的免费快速挂机次数 */ + useFreeGuaJiNum?: number; + /**已领取的通关奖励 */ + receivePrize: string[]; + /**上一次重置的时间戳 */ + resetTime: number; + /**作战特权免费次数 */ + zztqfreeNum?: number +}; \ No newline at end of file diff --git a/src/shared/protocols/tanxian/PtlReceive.ts b/src/shared/protocols/tanxian/PtlReceive.ts new file mode 100644 index 0000000..926b0de --- /dev/null +++ b/src/shared/protocols/tanxian/PtlReceive.ts @@ -0,0 +1,14 @@ +import { prizeType } from '../type'; +import { ResOpen } from './PtlOpen'; + +/** + * 领取通关奖励 + */ +export type ReqReceive = { + /**需要领取的奖励id */ + id: string; +}; + +export type ResReceive = { + prize: prizeType[]; +} & Pick; \ No newline at end of file diff --git a/src/shared/protocols/task/PtlAllFinsh.ts b/src/shared/protocols/task/PtlAllFinsh.ts new file mode 100644 index 0000000..78802cd --- /dev/null +++ b/src/shared/protocols/task/PtlAllFinsh.ts @@ -0,0 +1,15 @@ +import { prizeType } from '../type'; +import { taskType } from './type'; + +/** + * 一键领取相关type任务 + */ +export type ReqAllFinsh = { + type: number +}; + +export type ResAllFinsh = { + finishtask: number[] + newtask: any, + prize: prizeType[] +}; \ No newline at end of file diff --git a/src/shared/protocols/task/PtlFinsh.ts b/src/shared/protocols/task/PtlFinsh.ts new file mode 100644 index 0000000..db221a5 --- /dev/null +++ b/src/shared/protocols/task/PtlFinsh.ts @@ -0,0 +1,15 @@ +import { prizeType } from '../type'; +import { taskType } from './type'; + +/** + * 领取任务奖励 + */ +export type ReqFinsh = { + taskid: number +}; + +export type ResFinsh = { + task: taskType + newtask: any, + prize: prizeType[] +}; \ No newline at end of file diff --git a/src/shared/protocols/task/PtlOpen.ts b/src/shared/protocols/task/PtlOpen.ts new file mode 100644 index 0000000..977c4c5 --- /dev/null +++ b/src/shared/protocols/task/PtlOpen.ts @@ -0,0 +1,13 @@ +import { taskType } from './type'; +/** + * open接口 + */ +export type ReqOpen = { + type: number[] +}; + +export type ResOpen = { + taskinfo: any + // 竞技场排名 129 任务显示处理 + jjcrank: number +}; \ No newline at end of file diff --git a/src/shared/protocols/task/type.ts b/src/shared/protocols/task/type.ts new file mode 100644 index 0000000..375f01c --- /dev/null +++ b/src/shared/protocols/task/type.ts @@ -0,0 +1,49 @@ +import { string } from "mathjs"; + +export type taskType = { + /**上一次任务刷新时间 */ + retime: number; + /**任务stype */ + stype: number; + /**任务类型type */ + type: number; + /**任务唯一id */ + taskid: number + /**完成值 */ + nval: number + /**目标值 */ + pval: number + /**是否完成 */ + finish: 0 | 1 + /**最后修改数据时间 */ + lasttime: number + uid: string +}; + + +/**玩家乱七八糟的数据 注册任务用 */ +export type usertasklog = { + uid: string + /**玩家干部最高等级 */ + maxherolv?: number + /**玩家装备最高等级 */ + maxequiplv?: number + /**玩家配件最高等级 */ + maxpeijianlv?: number + /**玩家获取的装备相关颜色数量 */ + equipcolor?: { + [id: string]: number + } + /**玩家获取的英雄相关颜色数量 */ + herocolor?: { + [id: string]: number + } + /**玩家获取的配件相关颜色等级 */ + peijiancolor?: { + [id: string]: number + } + /**好友申请次数 */ + friendAsk?: number + /**送礼次数 */ + sendGift?: number +}; \ No newline at end of file diff --git a/src/shared/protocols/type.ts b/src/shared/protocols/type.ts new file mode 100644 index 0000000..56e54b9 --- /dev/null +++ b/src/shared/protocols/type.ts @@ -0,0 +1,40 @@ +import { joinFightData } from '../fightControl/fightType'; +import { ResGetList } from './shiwu/PtlGetList'; +import { ResLogin } from './user/PtlLogin'; + + +export type prizeType = { + /**类型 */ + a: string; + /**id */ + t: any; + /**数量 */ + n: number; + /**颜色 */ + colour?: number; + /**饰物buff */ + shiwuBuff?: any; +}; + +export type heroShiWu = Pick & { + /**饰物id */ + shiwuId?: string; + /**品质 */ + colour?: number; +}; + +export type rankInfo = { + /**排名 */ + rank?: number; + /**玩家信息 */ + player: Partial; + roles?: joinFightData['roles']; + /**排名数据 */ + valArr?: Array; + /**额外数据 */ + otherData?: { + [k: string]: any; + }; + /**玩家数据更新时间 */ + utime?: number +}; \ No newline at end of file diff --git a/src/shared/protocols/user/PtlCDKEY.ts b/src/shared/protocols/user/PtlCDKEY.ts new file mode 100644 index 0000000..8b48bac --- /dev/null +++ b/src/shared/protocols/user/PtlCDKEY.ts @@ -0,0 +1,13 @@ +import { prizeType } from '../type'; +/** + * 兑换码 + */ + +export type ReqCDKEY = { + code: string; +}; + +export type ResCDKEY = { + /**如果没奖励则表示无效兑换码 */ + prize?: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/user/PtlChangeInfo.ts b/src/shared/protocols/user/PtlChangeInfo.ts new file mode 100644 index 0000000..621bfc1 --- /dev/null +++ b/src/shared/protocols/user/PtlChangeInfo.ts @@ -0,0 +1,19 @@ + +/** + * 玩家切换头像、头像框、聊天框、展示模型 + */ +export type ReqChangeInfo = { + /**替换的id */ + id: string; + /**替换模型时传入位置*/ + pos?: '1' | '2' | '3' | '4'; + type: 'head' | 'headFrame' | 'chatFrame' | 'model'; +}; + +export type ResChangeInfo = { + +}; + +export const conf = { + timeIntervalLimit: 0 +}; \ No newline at end of file diff --git a/src/shared/protocols/user/PtlChangeName.ts b/src/shared/protocols/user/PtlChangeName.ts new file mode 100644 index 0000000..28905a7 --- /dev/null +++ b/src/shared/protocols/user/PtlChangeName.ts @@ -0,0 +1,14 @@ + + +/** + * 修改名字 + */ + +export type ReqChangeName = { + /**需要修改的名字 */ + name: string; +}; + +export type ResChangeName = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/user/PtlFight.ts b/src/shared/protocols/user/PtlFight.ts new file mode 100644 index 0000000..1c1edae --- /dev/null +++ b/src/shared/protocols/user/PtlFight.ts @@ -0,0 +1,13 @@ +import { fightResult } from '../../fightControl/fightType'; + + +/** + * 玩家切磋 + */ +export type ReqFight = { + uid: string; +}; + +export type ResFight = { + result: fightResult; +}; \ No newline at end of file diff --git a/src/shared/protocols/user/PtlGetInfo.ts b/src/shared/protocols/user/PtlGetInfo.ts new file mode 100644 index 0000000..86e0f03 --- /dev/null +++ b/src/shared/protocols/user/PtlGetInfo.ts @@ -0,0 +1,8 @@ +import { joinFightData } from '../../fightControl/fightType'; + + +export type ReqGetInfo = { + uid: string; +}; + +export type ResGetInfo = joinFightData; \ No newline at end of file diff --git a/src/shared/protocols/user/PtlInfoOpen.ts b/src/shared/protocols/user/PtlInfoOpen.ts new file mode 100644 index 0000000..26a1510 --- /dev/null +++ b/src/shared/protocols/user/PtlInfoOpen.ts @@ -0,0 +1,11 @@ + +/** + * 记录玩家头像、头像框、聊天框、模型到期时间 + */ +export type ReqInfoOpen = { + +}; + +export type ResInfoOpen = { + [id: string]: number; +}; \ No newline at end of file diff --git a/src/shared/protocols/user/PtlLogin.ts b/src/shared/protocols/user/PtlLogin.ts new file mode 100644 index 0000000..081c522 --- /dev/null +++ b/src/shared/protocols/user/PtlLogin.ts @@ -0,0 +1,177 @@ +import { gonghuiLevel } from '../gonghui/type'; + +/** + * 登录 + */ +export type ReqLogin = { + bindUid: string; + sid: number; + serverName: string; +}; + +export type ResLogin = { + /**玩家属性 */ + gud: playerInfo & playerAttr & Partial; + /**开服时间 */ + openTime: string; + /**当前时间 */ + curTime: number; + /**是否第一次登录 */ + firstLogin: boolean; + /**登陆额外数据 */ + otherData?: any; +}; + +/**玩家基本属性 */ +export type playerInfo = { + /**等级 */ + lv: number; + /**vip */ + vip: number; + /**唯一id */ + uid: string; + /**登录账号 */ + bindUid: string; + /**战力 */ + power: number; +}; + + +/**玩家attr道具 */ +export type playerAttr = { + /**英雄经验 */ + nexp: number; + /**金币 */ + jinbi: number; + /**钻石 */ + rmbmoney: number; + /**荣誉勋章 */ + rongyu: number; + /**充值经验 */ + payExp?: number; + /**贵金属 */ + guijinshu?: number; +} & { + [k: string]: any; +}; + +/**新增玩家属性 */ +export type playerAppend = { + /**图鉴等级 */ + tujianLv: number; + /**头像框 */ + head: { + /**头像id */ + id: string, + /**到期时间戳 -1:永久 */ + time: number; + }; + /**头像框 */ + headFrame: { + /**头像框id */ + id: string, + /**到期时间戳 -1:永久 */ + time: number; + }; + /**聊天框 */ + chatFrame: { + /**聊天框id */ + id: string, + /**到期时间戳 -1:永久 */ + time: number; + }; + /**名字 */ + name: string; + /**造型 */ + model: { + [k: string]: { + /**id */ + id: string, + /**到期时间戳 -1:永久 */ + time: number; + }; + }; + /**名望 */ + renown: number; + /**维修厂座驾等级 */ + wxcLv: { + /**id */ + lv: number; + /**已组装的下标 */ + ids: number[]; + }; + /**当前玩家已通关的地图id */ + mapId: number; + /**收藏品 */ + shoucangping: { [k: string]: number; }; + /**训练计划使用的图鉴点数 */ + useTujianLvPoint: number; + /**训练计划激活的技能 */ + skills: { [skillId: string]: number; }; + /**作战计划设置的战斗技能 */ + fightSkills: { [pos: string]: string; }; + /**英雄出战位 */ + heroPos: { [pos: string]: string; }; + /**公会id */ + ghId: string; + /**公会名字 */ + ghName: string; + /**公会阶级 */ + ghLevel: gonghuiLevel; + /**公会物资 */ + ghwz?: { [type: string]: number; }; + /**退出公会时间 */ + ghExitTime?: number; + /**最近一次登录时间戳 */ + loginTime?: number; + /**最近一次登出时间 */ + logoutTime?: number; + /**建号时间 */ + cTime?: number; + /**登录天数 */ + loginDays?: number; + /**serverName */ + serverName?: string; + sid?: number; + /**在线总时长 */ + onlineTime?: number; + /**最新在线时间 */ + newonlinetime?: number; + /**是否npc */ + isNpc?: boolean; + /**出战阵型等级 */ + matrix?: { + [type: string]: number; + }; + /**记录信息 */ + matrixPos?: { + [type: string]: { + [pos: string]: string; + }; + }; + /**选择的出战阵型 */ + selectMatrix?: string; + /**出战的英雄id */ + fightHeros?: string[]; + /**助战英雄 */ + helpHeros?: { + _id: string; + jieji: number; + heroId?: string | number; + heroPosId?: string| number | undefined; + }[]; + /**修改名字次数 */ + changeNameNum?: number; + /**配件格子解锁 */ + peijianUnlock?: { + [pos: string]: string; + }; + /**已解锁的头像框列表 */ + headFrames?: { + [id: string]: number; + }; + /**已解锁的聊天框列表 */ + chatFrames?: { + [id: string]: number; + }; +}; \ No newline at end of file diff --git a/src/shared/protocols/user/PtlPing.ts b/src/shared/protocols/user/PtlPing.ts new file mode 100644 index 0000000..cbd255c --- /dev/null +++ b/src/shared/protocols/user/PtlPing.ts @@ -0,0 +1,7 @@ + +export type ReqPing = {}; + +export type ResPing = { + time: number; + onlineTime?: number; +}; \ No newline at end of file diff --git a/src/shared/protocols/user/PtlRenown.ts b/src/shared/protocols/user/PtlRenown.ts new file mode 100644 index 0000000..59b0cd5 --- /dev/null +++ b/src/shared/protocols/user/PtlRenown.ts @@ -0,0 +1,12 @@ + + +/** + * 名望升级 + */ +export type ReqRenown = { + +}; + +export type ResRenown = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/user/PtlRenownBuy.ts b/src/shared/protocols/user/PtlRenownBuy.ts new file mode 100644 index 0000000..2602dc9 --- /dev/null +++ b/src/shared/protocols/user/PtlRenownBuy.ts @@ -0,0 +1,18 @@ +import { playerInfoType } from "../../../module/collection_palyerInfo"; +import { prizeType } from "../type"; +import { Renown_info } from "./PtlRenownOpen"; + + +/** + * 名望 购买免费礼包 + */ +export type ReqRenownBuy = { + /**礼包index 0开始*/ + index: number; +}; + +export type ResRenownBuy = { + prize: prizeType[]; + // 爵位特权相关数据 + mydata: Renown_info +}; \ No newline at end of file diff --git a/src/shared/protocols/user/PtlRenownGetPrize.ts b/src/shared/protocols/user/PtlRenownGetPrize.ts new file mode 100644 index 0000000..bf7239d --- /dev/null +++ b/src/shared/protocols/user/PtlRenownGetPrize.ts @@ -0,0 +1,17 @@ + +import { prizeType } from "../type"; +import { Renown_info } from "./PtlRenownOpen"; + + +/** + * 名望 特权领奖 + */ +export type ReqRenownGetPrize = { + +}; + +export type ResRenownGetPrize = { + prize: prizeType[]; + // 爵位特权相关数据 + mydata: Renown_info +}; diff --git a/src/shared/protocols/user/PtlRenownOpen.ts b/src/shared/protocols/user/PtlRenownOpen.ts new file mode 100644 index 0000000..44ed6ed --- /dev/null +++ b/src/shared/protocols/user/PtlRenownOpen.ts @@ -0,0 +1,25 @@ + + +/** + * 名望 特权打开 + */ +export type ReqRenownOpen = { + +}; + +export type ResRenownOpen = { + mydata: Renown_info + +}; + + +/**爵位特权相关数据 */ +export type Renown_info = { + // 礼包相关数据 + record: { [id: string]: number }, + // 领取时间 同一天可领奖 + tequan: { + istq: number; + recTime: number + } +}; \ No newline at end of file diff --git a/src/shared/protocols/user/PtlTujian.ts b/src/shared/protocols/user/PtlTujian.ts new file mode 100644 index 0000000..01e3275 --- /dev/null +++ b/src/shared/protocols/user/PtlTujian.ts @@ -0,0 +1,12 @@ + +/** + * 激活图鉴 + */ + +export type ReqTujian = { + +}; + +export type ResTujian = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/user/type.ts b/src/shared/protocols/user/type.ts new file mode 100644 index 0000000..ce995fc --- /dev/null +++ b/src/shared/protocols/user/type.ts @@ -0,0 +1,3 @@ +import { ResLogin } from './PtlLogin'; + +export type player = ResLogin['gud']; \ No newline at end of file diff --git a/src/shared/protocols/weixiuchang/PtlDazao.ts b/src/shared/protocols/weixiuchang/PtlDazao.ts new file mode 100644 index 0000000..f283ff6 --- /dev/null +++ b/src/shared/protocols/weixiuchang/PtlDazao.ts @@ -0,0 +1,9 @@ +import { prizeType } from "../type"; + +export type ReqDazao = { + id: number, + num: number +} +export type ResDazao = { + prize: prizeType[]; +} \ No newline at end of file diff --git a/src/shared/protocols/weixiuchang/PtlZuzhuang.ts b/src/shared/protocols/weixiuchang/PtlZuzhuang.ts new file mode 100644 index 0000000..8734399 --- /dev/null +++ b/src/shared/protocols/weixiuchang/PtlZuzhuang.ts @@ -0,0 +1,11 @@ +export type ReqZuzhuang = { + /**sx:安装零部件 jj:进阶or升星 */ + type: 'sx' | 'jj'; + /**0 材料消耗 1 购买消耗 */ + cutneed?: 0 | 1; + idx?: number; +}; + +export type ResZuzhuang = { + +}; diff --git a/src/shared/protocols/wzry/PtlAutoBaoMing.ts b/src/shared/protocols/wzry/PtlAutoBaoMing.ts new file mode 100644 index 0000000..588b427 --- /dev/null +++ b/src/shared/protocols/wzry/PtlAutoBaoMing.ts @@ -0,0 +1,14 @@ +/** + * 王者荣耀 自动报名 + */ +import { joinFightData } from "../../fightControl/fightType"; +import { prizeType } from "../type"; +import { wzry_info } from "./PtlOpen"; + +export type ReqAutoBaoMing = { + +}; + +export type ResAutoBaoMing = { + mydata: wzry_info +}; diff --git a/src/shared/protocols/wzry/PtlBaoMing.ts b/src/shared/protocols/wzry/PtlBaoMing.ts new file mode 100644 index 0000000..9f7520a --- /dev/null +++ b/src/shared/protocols/wzry/PtlBaoMing.ts @@ -0,0 +1,14 @@ +/** + * 王者荣耀 报名接口 + */ +import { joinFightData } from "../../fightControl/fightType"; +import { prizeType } from "../type"; + +export type ReqBaoMing = { + +}; + +export type ResBaoMing = { + /**报名成功奖励 */ + prize: prizeType[] +}; diff --git a/src/shared/protocols/wzry/PtlCatGroup.ts b/src/shared/protocols/wzry/PtlCatGroup.ts new file mode 100644 index 0000000..4d17b00 --- /dev/null +++ b/src/shared/protocols/wzry/PtlCatGroup.ts @@ -0,0 +1,16 @@ +/** + * 王者荣耀 查看某一组所有数据 + */ +import { joinFightData } from "../../fightControl/fightType"; +import { prizeType } from "../type"; +import { wangzherongyao_baoming, wangzherongyao_fight_group } from "./PtlOpen"; + +export type ReqCatGroup = { + group: number + deep: 256 | 64 | 8 +}; + +export type ResCatGroup = { + /**分组相关数据 */ + grouplist: (wangzherongyao_baoming & wangzherongyao_fight_group)[] +}; diff --git a/src/shared/protocols/wzry/PtlDldFight.ts b/src/shared/protocols/wzry/PtlDldFight.ts new file mode 100644 index 0000000..65a506d --- /dev/null +++ b/src/shared/protocols/wzry/PtlDldFight.ts @@ -0,0 +1,17 @@ +/** + * 王者荣耀 大乱斗刷新对手 + */ +import { fightResult, joinFightData } from "../../fightControl/fightType"; +import { prizeType } from "../type"; +import { wangzherongyao_baoming, wangzherongyao_fight_group, wzry_info } from "./PtlOpen"; + +export type ReqDldFight = { + +}; + +export type ResDldFight = { + mydata: wzry_info + /**战斗数据 */ + result: fightResult + wzfight: wangzherongyao_baoming & wangzherongyao_fight_group +}; diff --git a/src/shared/protocols/wzry/PtlDldRefre.ts b/src/shared/protocols/wzry/PtlDldRefre.ts new file mode 100644 index 0000000..9681e2f --- /dev/null +++ b/src/shared/protocols/wzry/PtlDldRefre.ts @@ -0,0 +1,14 @@ +/** + * 王者荣耀 大乱斗刷新对手 + */ +import { joinFightData } from "../../fightControl/fightType"; +import { prizeType } from "../type"; +import { wzry_info } from "./PtlOpen"; + +export type ReqDldRefre = { + +}; + +export type ResDldRefre = { + mydata: wzry_info +}; diff --git a/src/shared/protocols/wzry/PtlJingCai.ts b/src/shared/protocols/wzry/PtlJingCai.ts new file mode 100644 index 0000000..10dd0d8 --- /dev/null +++ b/src/shared/protocols/wzry/PtlJingCai.ts @@ -0,0 +1,19 @@ +/** + * 王者荣耀 竞猜接口 + */ +import { joinFightData } from "../../fightControl/fightType"; +import { prizeType } from "../type"; +import { wangzherongyao_baoming, wangzherongyao_fight_group, wzry_info } from "./PtlOpen"; + +export type ReqJingCai = { + // 竞猜档位 + guess: 1 | 2 | 3, + // touid 竞猜对象uid + touid: string +}; + +export type ResJingCai = { + /**竞猜成功奖励 */ + prize: prizeType[] + mydata: wzry_info +}; diff --git a/src/shared/protocols/wzry/PtlJingCaiOpen.ts b/src/shared/protocols/wzry/PtlJingCaiOpen.ts new file mode 100644 index 0000000..56a0812 --- /dev/null +++ b/src/shared/protocols/wzry/PtlJingCaiOpen.ts @@ -0,0 +1,16 @@ +/** + * 王者荣耀 竞猜接口 + */ +import { joinFightData } from "../../fightControl/fightType"; +import { prizeType } from "../type"; +import { wangzherongyao_baoming, wangzherongyao_fight_group } from "./PtlOpen"; + +export type ReqJingCaiOpen = { + +}; + +export type ResJingCaiOpen = { + jclist: (wangzherongyao_baoming & wangzherongyao_fight_group)[] + jcallnum: number + // mydata: wangzherongyao_baoming & wangzherongyao_fight_group +}; diff --git a/src/shared/protocols/wzry/PtlOpen.ts b/src/shared/protocols/wzry/PtlOpen.ts new file mode 100644 index 0000000..4b1b09e --- /dev/null +++ b/src/shared/protocols/wzry/PtlOpen.ts @@ -0,0 +1,134 @@ +/** + * 王者荣耀 主界面接口 + */ +import { CollectionWzryCrossFight } from "../../../module/collection_wzryfight"; +import { joinFightData } from "../../fightControl/fightType"; +import { prizeType, rankInfo } from "../type"; +import { ResLogin } from "../user/PtlLogin"; + +export type ReqOpen = { + +}; + +export type ResOpen = { + /**赛程状态,开始结束时间 */ + status: wangzherongyao_staus + /**各种杂七杂八的个人信息 */ + mydata: wzry_info, + /**周key */ + zkey: string, + // /**晋级的参赛数据 */ + // wzfight: Partial & Partial, + /**报名人数 */ + bmnum: number + /**服务器时间 */ + time: number + /**我的分组 */ + mygroup: {[id: string]: any} +}; + + +// 获取赛程状态,及结束时间 +export type wangzherongyao_staus = { + // 0-8 各种赛程状态 + status: number + // 报名人数 + num?: number + // 当前时间段的开始时间 + stime: number + // 当前时间段的结束时间 + etime: number +} + + +// 报名格式 +export type wangzherongyao_baoming = { + /**大乱斗积分 */ + jifen: number + /**周key */ + zkey: string + /**uid */ + uid: string + /**个人相关数据 */ + data: wangzherongyao_biaogeshi + /**步骤 1 钻石*/ + deep?: number, + /**排名 */ + rank?: number +} + +// 数据库 data 格式 +export type wangzherongyao_biaogeshi = { + /**玩家信息 */ + player: Partial; + roles: joinFightData['roles']; + /**排名数据 */ + valArr?: Array; +} + + +/**本服各种数据 */ +export type wzry_info = { + /**是否报名 0 未, 1 报名 */ + isbm: 0 | 1 + /**大乱斗相关数据 */ + dldinfo: { + /**大乱斗挑战次数 */ + dldpknum: number + /**大乱斗已使用刷新次数 */ + dldrefrenum: number + /**大乱斗胜场相关数据 */ + dldfight?: number[] + } + /**是否晋级 0 未, 1 晋级 (256 之一) */ + isjjzs: 0 | 1 + /**是否自动报名 0 未, 1 报名*/ + isauto: 0 | 1 + /**周key */ + zkey: string + /**大乱斗对手信息 */ + info?: wangzherongyao_biaogeshi + /**是否更新大乱斗信息 后端用 */ + isdldrefre: number + rank?: number + jifen?: number + /**竞猜信息 */ + isjingcai?: { + totalmoney: number + guessuid: string + } +} & { uid: string } + + +// 数据库 data 格式 +export type wangzherongyao_fight_group = { + // 分组的各种信息 + groupinfo?: { + groupid: number + orderid: number + order?: number + } + // 战斗日志 + matchlog?: { [id: string]: any } + // 钻石赛王者赛发奖记录 + isprize?: { [id: string]: any } +} + + +// 历届4强存储 +export type wangzherongyao_fourWiner = { + // 第几届 + round: number + // 周key + zkey: string + // 个人数据 + ranklist: CollectionWzryCrossFight[], + // 存储时间 + ctime: number +} + + + + + + diff --git a/src/shared/protocols/wzry/PtlUpdateFight.ts b/src/shared/protocols/wzry/PtlUpdateFight.ts new file mode 100644 index 0000000..126c46f --- /dev/null +++ b/src/shared/protocols/wzry/PtlUpdateFight.ts @@ -0,0 +1,15 @@ +/** + * 王者荣耀 更换阵型 + */ +import { joinFightData } from "../../fightControl/fightType"; +import { prizeType } from "../type"; +import { wangzherongyao_baoming, wangzherongyao_fight_group } from "./PtlOpen"; + +export type ReqUpdateFight = { + +}; + +export type ResUpdateFight = { + /**王者参赛数据 */ + // wzfight: wangzherongyao_baoming & wangzherongyao_fight_group +}; diff --git a/src/shared/protocols/wzry/PtlWzzd.ts b/src/shared/protocols/wzry/PtlWzzd.ts new file mode 100644 index 0000000..003e0ef --- /dev/null +++ b/src/shared/protocols/wzry/PtlWzzd.ts @@ -0,0 +1,15 @@ +/** + * 王者荣耀 王者之巅 + */ +import { joinFightData } from "../../fightControl/fightType"; +import { prizeType } from "../type"; +import { wangzherongyao_fourWiner } from "./PtlOpen"; + +export type ReqWzzd = { + +}; + +export type ResWzzd = { + /**王者之巅 */ + wzzdlist: wangzherongyao_fourWiner[] +}; diff --git a/src/shared/protocols/wzry/PtlZuanShiOpen.ts b/src/shared/protocols/wzry/PtlZuanShiOpen.ts new file mode 100644 index 0000000..d4b3c0a --- /dev/null +++ b/src/shared/protocols/wzry/PtlZuanShiOpen.ts @@ -0,0 +1,14 @@ +/** + * 王者荣耀 报名接口 + */ +import { joinFightData } from "../../fightControl/fightType"; +import { prizeType } from "../type"; + +export type ReqZuanShiOpen = { + +}; + +export type ResZuanShiOpen = { + /**我的组 0 未分组*/ + mygroup: number +}; diff --git a/src/shared/protocols/wzry/PtlcatFightLog.ts b/src/shared/protocols/wzry/PtlcatFightLog.ts new file mode 100644 index 0000000..848bfd5 --- /dev/null +++ b/src/shared/protocols/wzry/PtlcatFightLog.ts @@ -0,0 +1,14 @@ +import { StringifyOptions } from "querystring"; +import { fightResult, joinFightData } from "../../../shared/fightControl/fightType"; +import { player } from "../../../shared/protocols/user/type"; +import { wangzherongyao_baoming } from "../../../shared/protocols/wzry/PtlOpen"; + + +export type ReqcatFightLog = { + /**战斗唯一id */ + fid: string +}; + +export type RescatFightLog = { + result: fightResult +} \ No newline at end of file diff --git a/src/shared/protocols/xstask/PtlAllGet.ts b/src/shared/protocols/xstask/PtlAllGet.ts new file mode 100644 index 0000000..9005716 --- /dev/null +++ b/src/shared/protocols/xstask/PtlAllGet.ts @@ -0,0 +1,15 @@ +import { prizeType } from '../type'; +import { xsTask } from './type'; + +/** + * 领取任务奖励 + */ +export type ReqAllGet = { + /**任务_id */ + // _id: string; +}; + +export type ResAllGet = { + taskList: xsTask[]; + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/xstask/PtlGet.ts b/src/shared/protocols/xstask/PtlGet.ts new file mode 100644 index 0000000..3f7e098 --- /dev/null +++ b/src/shared/protocols/xstask/PtlGet.ts @@ -0,0 +1,15 @@ +import { prizeType } from '../type'; +import { xsTask } from './type'; + +/** + * 领取任务奖励 + */ +export type ReqGet = { + /**任务_id */ + _id: string; +}; + +export type ResGet = { + taskList: xsTask[]; + prize: prizeType[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/xstask/PtlLvUp.ts b/src/shared/protocols/xstask/PtlLvUp.ts new file mode 100644 index 0000000..4ce22b6 --- /dev/null +++ b/src/shared/protocols/xstask/PtlLvUp.ts @@ -0,0 +1,12 @@ + + +/** + * 悬赏任务升级 + */ +export type ReqLvUp = { + +}; + +export type ResLvUp = { + lv: number; +}; \ No newline at end of file diff --git a/src/shared/protocols/xstask/PtlOnekeyReceive.ts b/src/shared/protocols/xstask/PtlOnekeyReceive.ts new file mode 100644 index 0000000..393f62a --- /dev/null +++ b/src/shared/protocols/xstask/PtlOnekeyReceive.ts @@ -0,0 +1,11 @@ +import { ReqReceive, ResReceive } from './PtlReceive'; + + +/** + * 一键派遣 + */ +export type ReqOnekeyReceive = ReqReceive[]; + +export type ResOnekeyReceive = { + [_id: string]: ResReceive; +}; \ No newline at end of file diff --git a/src/shared/protocols/xstask/PtlOpen.ts b/src/shared/protocols/xstask/PtlOpen.ts new file mode 100644 index 0000000..292ca03 --- /dev/null +++ b/src/shared/protocols/xstask/PtlOpen.ts @@ -0,0 +1,24 @@ +import { xsTask } from './type'; + +/** + * open接口 + */ +export type ReqOpen = { + + +}; + +export type ResOpen = { + /**等级 */ + lv: number; + /**完成的品质任务数量 */ + finishNum: { + [colour: string]: number; + }; + /**已使用的免费刷新次数 */ + useFreeRefreshNum: number; + /**上一次刷新时间 */ + lastRefreshTime: number; + /**任务列表 */ + taskList: xsTask[]; +}; \ No newline at end of file diff --git a/src/shared/protocols/xstask/PtlReceive.ts b/src/shared/protocols/xstask/PtlReceive.ts new file mode 100644 index 0000000..753a0b9 --- /dev/null +++ b/src/shared/protocols/xstask/PtlReceive.ts @@ -0,0 +1,14 @@ +import { xsTask } from './type'; + + +/** + * 接取任务 + */ +export type ReqReceive = { + /**任务_id */ + _id: string; + /**英雄_id列表 */ + heroIds: string[]; +}; + +export type ResReceive = xsTask['receiveData']; \ No newline at end of file diff --git a/src/shared/protocols/xstask/PtlRefresh.ts b/src/shared/protocols/xstask/PtlRefresh.ts new file mode 100644 index 0000000..29c919f --- /dev/null +++ b/src/shared/protocols/xstask/PtlRefresh.ts @@ -0,0 +1,11 @@ +import { ResOpen } from './PtlOpen'; + + +/** + * 刷新 + */ +export type ReqRefresh = { + +}; + +export type ResRefresh = Partial>; \ No newline at end of file diff --git a/src/shared/protocols/xstask/type.ts b/src/shared/protocols/xstask/type.ts new file mode 100644 index 0000000..d1a1714 --- /dev/null +++ b/src/shared/protocols/xstask/type.ts @@ -0,0 +1,16 @@ + + +export type xsTask = { + /**任务在数据库的唯一id */ + _id: string; + /**任务id */ + taskId: string; + /**接取任务后生成的数据 */ + receiveData?: { + /**接取时间 */ + time: number; + /**派遣的时间 */ + heros: string[]; + rec?: boolean; + }; +}; \ No newline at end of file diff --git a/src/shared/protocols/yongbingzhuzhan/PtlHandle.ts b/src/shared/protocols/yongbingzhuzhan/PtlHandle.ts new file mode 100644 index 0000000..24e212a --- /dev/null +++ b/src/shared/protocols/yongbingzhuzhan/PtlHandle.ts @@ -0,0 +1,15 @@ + + +/** + * 佣兵助战上阵卸下 + */ +export type ReqHandle = { + /**英雄唯一id */ + _id: string; + state: 'shangzhen' | 'xiexia'; + heroPosId?: string | number | undefined +}; + +export type ResHandle = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/zhanqianbushu/PtlChangePos.ts b/src/shared/protocols/zhanqianbushu/PtlChangePos.ts new file mode 100644 index 0000000..0feee11 --- /dev/null +++ b/src/shared/protocols/zhanqianbushu/PtlChangePos.ts @@ -0,0 +1,14 @@ + + +/** + * 交换位置 + */ +export type ReqChangePos = { + type: string; + movePos: string; + toPos: string; +}; + +export type ResChangePos = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/zhanqianbushu/PtlSelect.ts b/src/shared/protocols/zhanqianbushu/PtlSelect.ts new file mode 100644 index 0000000..d3e8606 --- /dev/null +++ b/src/shared/protocols/zhanqianbushu/PtlSelect.ts @@ -0,0 +1,12 @@ + + +/** + * 选择启用阵容 + */ +export type ReqSelect = { + type: string; +}; + +export type ResSelect = { + +}; \ No newline at end of file diff --git a/src/shared/protocols/zhanqianbushu/PtlUp.ts b/src/shared/protocols/zhanqianbushu/PtlUp.ts new file mode 100644 index 0000000..6727634 --- /dev/null +++ b/src/shared/protocols/zhanqianbushu/PtlUp.ts @@ -0,0 +1,12 @@ + + +/** + * 战前部署升级阵容 + */ +export type ReqUp = { + type: string; +}; + +export type ResUp = { + +}; \ No newline at end of file diff --git a/src/shared/public/equip.ts b/src/shared/public/equip.ts new file mode 100644 index 0000000..453783b --- /dev/null +++ b/src/shared/public/equip.ts @@ -0,0 +1,152 @@ +import { ResGetList } from '../protocols/equip/PtlGetList'; +import { HeroShared } from './hero'; +import { PublicShared } from './public'; +// import { PlayerFun } from './player'; + +export class EquipShared { + /** + * 格式化装备数据 + */ + static fmtEquip(equipData: string): { + lv: number; + star: number; + equipId: string; + adjustment: number; + _id: string; + }; + static fmtEquip(equipData: Pick): string; + static fmtEquip(equipData: string | Pick) { + if (typeof equipData == 'string') { + let [_id, equipId, lv, star, adjustment] = equipData.split('_'); + return { + + lv: Number(lv), + _id: _id, + star: Number(star), + equipId: equipId, + adjustment: Number(adjustment || '0') + }; + } else { + return [equipData._id, equipData.equipId, equipData.lv, equipData.star, equipData.adjustment || 0].join('_'); + } + } + + /** + * 获取装备buff + */ + static getEquipBuff(equipData: Partial> | string) { + let equip: Partial>; + if (typeof equipData == 'string') { + let [_id, equipId, lv, star, adjustment] = equipData.split('_'); + equip = { + lv: Number(lv), + star: Number(star), + equipId: equipId, + adjustment: Number(adjustment || '0') + }; + } else { + equip = equipData; + } + + let conf = G.gc.equip[equip.equipId]; + let buff: k_v = {}; + let addBuff: k_v = {}; + + Object.assign(buff, conf.buff); + + for (let k in conf.qh) { + addBuff[k] = PublicShared.eval(conf.qh[k], { qhlv: equip.lv }); + } + + PublicShared.mergeProperty(buff, addBuff); + + if (equip.star && G.gc.equipstar[equip.equipId]) { + for (let star = 1; star <= equip.star; star++) { + PublicShared.mergeProperty(buff, G.gc.equipstar[equip.equipId][star].buff); + } + } + + if (equip.adjustment) { + let p = G.gc.equipAdjusting[equip.adjustment].percent; + for (let k in buff) { + if (k.indexOf('pro') != -1) continue; + buff[k] *= 1 + p; + } + } + + HeroShared.amendAttr(buff); + + return buff; + } + + /** + * 获取装备升级消耗 + */ + static getEquipLvUpNeed(equipData: Partial> | string): atn[] { + let equip: Partial>; + if (typeof equipData == 'string') { + let [_id, equipId, lv, star] = equipData.split('_'); + equip = { + lv: Number(lv) + }; + } else { + equip = equipData; + } + + // let base = equip.lv <= 140 ? 0.6 : parseInt(PublicShared.eval(`(${equip.lv}/120)^3`)); + // let itemFmt = 'ceil(round((2+qhlv+ qhlv/2)/5)*5*base*0.5)'; + + // if (equip.lv > 30 && equip.lv <= 140) { + // itemFmt = 'round((2+qhlv+ qhlv/2)/5)*5*base*0.5'; + // } else { + // itemFmt = 'round((2+qhlv+ qhlv/2)/5)*5*base*0.5'; + // } + + return [ + // { a: 'attr', t: 'jinbi', n: Math.floor(3000 + equip.lv * 80) }, + ...G.gc.equiplvup[equip.lv].need + ]; + } + + + /** + * 格式化装备等级 + */ + static getFmtEquipLvUp(pos: string, equips: { [id: string]: string }): number { + let equit = equips[pos] + let _num = Number(equit.split("_")[2]) || 0 + + return _num + } + + /** + * 计算快速强化的装备等级与资源消耗 + * heroEquip 装备的对象 + * playerLv 玩家的等级 + */ + static getQuickLvUpNeed(heroEquip, playerLv) { + let _equip = {}; + let posLvUp = {}; + let allNeed:atn[] = []; + Object.keys(heroEquip).forEach( x => { + if(heroEquip[x]) _equip[x] = EquipShared.getFmtEquipLvUp(x, heroEquip) + }) + for (let i = 1; i <= 10 * Object.keys(_equip).length; i++) { + // 排序,取等级最低的装备升级 + let _sortPos = Object.keys(_equip).sort((a, b) => _equip[a] - _equip[b]) + const pos = _sortPos[0] + if (!heroEquip[pos]) continue; + let equipLv = _equip[pos] + // let equip = EquipShared.fmtEquip(heroEquip[pos]); + if (equipLv + 1 > playerLv * 2) continue; + let need:atn[] = EquipShared.getEquipLvUpNeed({ lv: equipLv + 1 }); + allNeed = allNeed.concat(need); + if (!posLvUp[pos]) posLvUp[pos] = 0; + posLvUp[pos]++; + _equip[pos]++; + } + + let res = { posLvUp, allNeed, log: _equip}; + return res; + } +} \ No newline at end of file diff --git a/src/shared/public/hero.ts b/src/shared/public/hero.ts new file mode 100644 index 0000000..3f97fac --- /dev/null +++ b/src/shared/public/hero.ts @@ -0,0 +1,365 @@ +import { ResGetList } from '../protocols/hero/PtlGetList'; +import { player } from '../protocols/user/type'; +import { EquipShared } from './equip'; +import { PeijianShared } from './peijian'; +import { PlayerShared } from './player'; +import { PublicShared } from './public'; +import { ShiwuShared } from './shiwu'; + +export type otherBuff = Partial; +}>; +type heroDataType = Partial>; + +export class HeroShared { + static getAllBuff(hero: heroDataType[]) { + let allBuff: k_v = {}; + + hero.forEach(h => { + let heroConf = G.gc.hero[h.heroId]; + let heroGrow = G.gc.herogrow[heroConf.jjup]?.[h.jieji]; + heroGrow && PublicShared.mergeProperty(allBuff, heroGrow.jj_allattr || {}); + }); + + return allBuff; + } + /** + * 获取英雄基本属性 + * @param hero 英雄数据 + * @param otherBuff 有些功能会对英雄有属性加成 + */ + static getHeroBasicAttr(hero: heroDataType, otherBuff: otherBuff = G.otherBuff, pos = 0) { + let jiban = 0; + let buff: k_v = { skillArr: [] }; + let heroConf = G.gc.hero[hero.heroId]; + let heroLv = G.gc.herolv[heroConf.lvup]; + let heroGrow = G.gc.herogrow[heroConf.jjup]?.[hero.jieji]; + + //计算等级属性 + for (let k in heroLv.buff) { + let val = heroLv.buff[k]; + if (typeof val == 'number') buff[k] = val; + else buff[k] = PublicShared.eval(val, { lv: hero.lv }); + // else buff[k] = Math.floor(new Function(`let lv=${hero.lv}; return ${val}`)()); + } + + //计算阶级属性 + if (heroGrow) { + PublicShared.mergeProperty(buff, heroGrow.buff); + PublicShared.mergeProperty(buff, heroGrow.jj_attr); + } + + if (pos > 0 && otherBuff.allBuff) { + PublicShared.mergeProperty(buff, otherBuff.allBuff); + } + + if (pos > 0) { + if (otherBuff.headFrames) { + for (let [id, time] of Object.entries(otherBuff.headFrames)) { + if (time == -1 || time > G.time) { + PublicShared.mergeProperty(buff, G.gc.playerHeadFrame[id].buff); + } + } + } + + if (otherBuff.chatFrames) { + for (let [id, time] of Object.entries(otherBuff.chatFrames)) { + if (time == -1 || time > G.time) { + PublicShared.mergeProperty(buff, G.gc.playerChatFrame[id].buff); + } + } + } + } + + //计算装备属性 + if (hero.equip) { + for (let pos in hero.equip) { + hero.equip[pos] && PublicShared.mergeProperty(buff, EquipShared.getEquipBuff(hero.equip[pos])); + } + + let equips = Object.values(hero.equip).filter(e => e != '').map(e => EquipShared.fmtEquip(e)); + + //计算装备大师属性 + if (equips.length >= 4) { + let minLv = Math.min(...equips.map(e => e.lv)); + let minStar = Math.min(...equips.map(e => e.star)); + let minAdjustment = Math.min(...equips.map(e => e.adjustment)); + let lvMasterConf = G.gc.equipMaster.peiyang.filter(c => c.aLv <= minLv).sort((a, b) => b.lv - a.lv)[0]; + let starMasterConf = G.gc.equipMaster.shengxing.filter(c => c.aLv <= minStar).sort((a, b) => b.lv - a.lv)[0]; + let adjustmentMasterConf = G.gc.equipMaster.tiaojiao.filter(c => c.aLv <= minAdjustment).sort((a, b) => b.lv - a.lv)[0]; + + lvMasterConf && PublicShared.mergeProperty(buff, lvMasterConf.buff); + starMasterConf && PublicShared.mergeProperty(buff, starMasterConf.buff); + adjustmentMasterConf && PublicShared.mergeProperty(buff, adjustmentMasterConf.buff); + } + + //计算装备套装属性 + let ids = equips.map(e => G.gc.equip[e.equipId].tzid).filter(i => !!i).map(i => Object.fromEntries([[i, 1]])); + let objs: k_v = {}; + ids.forEach(v => PublicShared.mergeProperty(objs, v)); + + for (let [id, num] of Object.entries(objs)) { + let conf = G.gc.equipSuit[id]; + let nums = Object.keys(conf.buff).map(n => Number(n)).sort((a, b) => a - b); + if (num < nums[0]) continue; + nums.forEach(n => num >= n && PublicShared.mergeProperty(buff, conf.buff[n])); + } + + //计算装备羁绊 + let confs = G.gc.group.equip.filter(c => c.page == hero.heroId); + let equipIds = equips.map(e => e.equipId); + confs.forEach(conf => { + if (equipIds.includes(conf.member.toString())) { + jiban++; + PublicShared.mergeProperty(buff, conf.skill); + } + }); + } + + //计算配件属性 + if (hero.peijian) { + let suitObj: k_v<{ num: number, minLv: number; }> = {}; + let pjs = Object.values(hero.peijian).filter(s => !!s).map(s => PeijianShared.fmt(s)); + + + pjs.forEach(p => { + PublicShared.mergeProperty(buff, PeijianShared.getAttr(p)); + let conf = G.gc.peijian[p.peijianId]; + if (conf.suit) { + if (!suitObj[conf.suit]) suitObj[conf.suit] = { num: 0, minLv: 0 }; + suitObj[conf.suit].num++; + if (!suitObj[conf.suit].minLv || p.lv < suitObj[conf.suit].minLv) suitObj[conf.suit].minLv = p.lv; + } + }); + + for (let [suitId, data] of Object.entries(suitObj)) { + + // //计算配件套装属性 + // let suitConf = G.gc.peijian_suit[suitId]; + // let suitBuff = Object.entries(suitConf.buff).filter(v => Number(v) <= data.num); + // suitBuff.forEach(b => PublicShared.mergeProperty(buff, b[1])); + + //计算配件大师属性 + let masterConf = Object.values(G.gc.peijian_master[suitId]).filter(c => c.lv <= data.minLv).sort((a, b) => b.lv - a.lv)[0]; + if (masterConf) { + let masterbuff = Object.entries(masterConf.buff).filter(v => Number(v[0]) <= data.num); + masterbuff.forEach(b => PublicShared.mergeProperty(buff, b[1])); + } + } + } + + //计算专属武器属性 + if (hero.weapon?.jieji) { + PublicShared.mergeProperty(buff, G.gc.zhuanshu[heroConf.zhuanshu][hero.weapon.jieji][hero.weapon.star].buff); + } + + //计算天赋属性 + if (hero.talent) { + for (let [type, lv] of Object.entries(hero.talent)) { + let conf = G.gc.hero_tf[type]?.[lv]; + conf && conf.effect && PublicShared.mergeProperty(buff, conf.effect); + } + } + + //计算饰物属性 + if (hero.shiwu) { + for (let pos in hero.shiwu) { + hero.shiwu[pos] && ShiwuShared.getShiwuBuff(hero.shiwu[pos], buff, hero.heroId); + } + } + + //计算潜能属性 + if (hero.qiannneg) { + for (let type in hero.qiannneg) { + // console.log(PublicShared.mergeProperty(buff, G.gc.hero_qianneng[type]?.[hero.qiannneg[type]].buff)) + for(let i = 1; i <= hero.qiannneg[type]; i++) { + G.gc.hero_qianneng[type]?.[i] && PublicShared.mergeProperty(buff, G.gc.hero_qianneng[type]?.[i].buff); + } + } + } + + //计算名望加成属性 + // if (otherBuff?.renown) { + // for (let lv = 1; lv < otherBuff.renown; lv++) { + // G.gc.mw_dj[lv].buff && PublicShared.mergeProperty(buff, G.gc.mw_dj[lv].buff); + // } + // } + + //计算维修厂buff + // if (otherBuff?.wxcLv) { + // let curWxcLv = otherBuff.wxcLv.lv + 1; + // for (let lv = 1; lv < curWxcLv; lv++) { + // PublicShared.mergeProperty(buff, Object.values(G.gc.weixiuchang_zz[lv].buff)); + // G.gc.weixiuchang_zz[lv].buff2 && PublicShared.mergeProperty(buff, G.gc.weixiuchang_zz[lv].buff2); + // } + // if (otherBuff.wxcLv.ids.length > 0) { + // otherBuff.wxcLv.ids.forEach(id => { + // G.gc.weixiuchang_zz[curWxcLv].buff[id + 1] && PublicShared.mergeProperty(buff, G.gc.weixiuchang_zz[curWxcLv].buff[id + 1]);; + // }); + // } + // } + + //计算收藏品buff; + if (pos > 0 && otherBuff?.shoucangping) { + PublicShared.mergeProperty(buff, PlayerShared.getMingDaoBuff(otherBuff as any, 'hero_buff') || {}); + + for (let [id, lv] of Object.entries(otherBuff.shoucangping)) { + if (lv >= 1) { + PublicShared.mergeProperty(buff, G.gc.mingdao[id].buff); + PublicShared.mergeProperty(buff, Object.fromEntries(Object.keys(G.gc.mingdao[id].upBuff).map(k => [k, G.gc.mingdao[id].upBuff[k] * (lv - 1)]))); + } + } + } + + //计算公会物资buff + if (otherBuff?.ghwz) { + for (let id in otherBuff.ghwz) { + let conf = G.gc.shili_wz[id][otherBuff.ghwz[id]]; + conf && PublicShared.mergeProperty(buff, conf.buff); + } + } + + //计算阵型加成 + if (pos > 0 && otherBuff?.selectMatrix) { + let lv = otherBuff.matrix[otherBuff.selectMatrix]; + let select = otherBuff.selectMatrix; + let posObj = otherBuff.matrixPos?.[select] || {}; + let find = Object.entries(posObj).find(v => v[1] == hero._id); + + if (find) { + let __buff = G.gc.fightPlan[select][lv].buff[Number(find[0]) - 1]; + __buff && PublicShared.mergeProperty(buff, __buff); + } + } + + //计算助战属性 + if (pos > 0 && otherBuff?.helpHeros) { + let arr = otherBuff.helpHeros.map(v => v.jieji); + let allJieJi = arr.length > 0 ? arr.reduce((a, b) => a + b) : 0; + let helpBuff = G.gc.herocom.zhuzhanBuff.filter(v => v.need <= allJieJi).sort((a, b) => b.need - a.need)[0]; + helpBuff && PublicShared.mergeProperty(buff, helpBuff.value); + } + + //计算英雄羁绊 + if (otherBuff?.fightHeros) { + if (!otherBuff.heroPos || Object.values(otherBuff.heroPos).includes(hero._id)) { + let confs = G.gc.group.hero.filter(c => c.page == hero.heroId); + confs.forEach(conf => { + let arr = conf.member.split(',').removeOne(id => id == hero.heroId).sort(); + let inArr = arr.intersection([].concat(otherBuff.fightHeros, otherBuff.helpHeros?.map(h => h.heroId || ''))).sort(); + + if (arr.join('_') == inArr.join('_')) { + jiban++; + PublicShared.mergeProperty(buff, conf.skill); + } + }); + } + } + + //计算训练计划 + if (otherBuff?.skills) { + for (let [id, lv] of Object.entries(otherBuff.skills)) { + if (lv && G.gc.xunlianjihua[id].use == 0) { + PublicShared.mergeProperty(buff, Object.fromEntries([G.gc.xunlianjihua[id].skill].map(k => [k, PublicShared.eval(G.gc.xunlianjihua[id].v[0], { slv: lv })]))); + } + } + } + + //最后进行加成属性计算 + for (let k in buff) { + if (k.indexOf('pro') == -1) continue; + let buffKey = k.replace('pro', ''); + if (buff[buffKey]) { + buff[buffKey] += buff[buffKey] * buff[k]; + // buff[k] = 0; + } + } + + buff.mindps += buff.atk; + buff.maxdps += buff.atk; + + //属性取整 + this.amendAttr(buff); + + buff.jiban = jiban; + buff.maxHp = buff.hp; + + return buff; + }; + /**修正属性 数值取整*/ + static amendAttr(buff: k_v) { + for (let k in buff) { + if (typeof buff[k] != 'number') continue; + if (k.indexOf('pro') != -1 || k.indexOf('drop') != -1) continue; + buff[k] = Math.floor(buff[k]); + } + } + /** + * 获取英雄战力 + * @param hero 英雄数据 + * @param otherBuff 有些功能会对英雄有属性加成 + */ + static getHeroZhanLi(hero: heroDataType, otherBuff: otherBuff = G.otherBuff, pos = 0) { + let buff = this.getHeroBasicAttr(hero, otherBuff, pos); + return this.computeHeroZhanLi(buff); + } + /** + * 计算英雄战力 + */ + static computeHeroZhanLi(buff: k_v = {}) { + let atk = buff.atk || 0; + let mindps = buff.mindps || 0; + let maxdps = buff.maxdps || 0; + let def = buff.def || 0; + let hp = buff.hp || 0; + let speed = buff.speed || 0; + let hppro = buff.hppro || 0; + let dpspro = buff.dpspro || 0; + let undpspro = buff.undpspro || 0; + let xixuepro = buff.xixuepro || 0; + let baoshangpro = buff.baoshangpro || 0; + let shanbipro = buff.shanbipro || 0; + let mingzhongpro = buff.mingzhongpro || 0; + let pvpdpspro = buff.pvpdpspro || 0; + let pvpdpsdrop = buff.pvpdpsdrop || 0; + + return Math.floor( + (atk * .85) + + (mindps * .85) + + (maxdps * .75) + + (def * 1.03) + + (hp * 1) + + (speed * 21.28) + + (hp * hppro * .5) + + ((mindps + maxdps) / 2 * dpspro * .75) + + (hp * undpspro * .6) + + ((mindps + maxdps) / 2 * xixuepro * 1) + + ((mindps + maxdps) / 2 * baoshangpro * .75) + + ((mindps + maxdps) / 2 * shanbipro * .5) + + ((mindps + maxdps) / 2 * mingzhongpro * .5) + + ((mindps + maxdps) / 2 * pvpdpspro * .5) + + (hp * pvpdpsdrop * .5) + ); + } + /** + * 获取英雄升级消耗 + * @param id 英雄id + * @param lv 英雄等级 + */ + static getHeroLvUpNeed(id: string | number, lv = 1): atn[] { + + return [ + { a: 'item', t: '1', n: G.gc.herolvup[lv].expneed }, + { a: 'attr', t: 'jinbi', n: G.gc.herolvup[lv].jinbineed } + ]; + } + /** + * 获取英雄进阶消耗 + * @param id 英雄id + * @param lv 英雄当前阶级 + */ + static getHeroJinJieNeed(id: string | number, jieji = 0): atn[] { + let heroJinJie = G.gc.herogrow[G.gc.hero[id].jjup]; + return heroJinJie?.[jieji + 1]?.need || []; + } +} \ No newline at end of file diff --git a/src/shared/public/peijian.ts b/src/shared/public/peijian.ts new file mode 100644 index 0000000..7b4aa0d --- /dev/null +++ b/src/shared/public/peijian.ts @@ -0,0 +1,40 @@ +import { PeiJian } from '../protocols/peijian/PtlGetList'; +import { HeroShared } from './hero'; + + +export class PeijianShared { + /** + * 格式化装备数据 + */ + static fmt(v: Partial): string; + static fmt(v: string): Omit; + static fmt(v: Partial | string) { + if (typeof v == 'string') { + let [_id, peijianId, lv, jinglian] = v.split('_'); + return { _id: _id, peijianId: peijianId, lv: Number(lv) || 1, jinglian: Number(jinglian) || 0 }; + } else { + return [v._id, v.peijianId, v.lv, v.jinglian].join('_'); + } + } + /** + * 获取配件属性 + */ + static getAttr(v: Pick) { + let conf = G.gc.peijian[v.peijianId]; + let buff = Object.fromEntries([conf.buff]); + + let lvConf = G.gc.peijian_lv[conf.colour]?.[v.lv]; + if (lvConf) buff[conf.buff[0]] += lvConf.buff[conf.buff[0]] || 0; + + let jlConf = G.gc.peijian_jl[v.jinglian]; + if (jlConf) { + for (let k in buff) { + buff[k] += buff[k] * jlConf.pro; + } + } + + HeroShared.amendAttr(buff); + + return buff; + } +} \ No newline at end of file diff --git a/src/shared/public/player.ts b/src/shared/public/player.ts new file mode 100644 index 0000000..c3ca627 --- /dev/null +++ b/src/shared/public/player.ts @@ -0,0 +1,82 @@ +import { player } from '../protocols/user/type'; +import { HeroShared } from './hero'; +import { PublicShared } from './public'; + + +export class PlayerShared { + /**获取主角buff */ + static getBuff(player: player) { + let zjBuff: k_v = { + zj_atk: PublicShared.eval(G.gc.com.zjcz_atk.value as any as string, { lv: player.lv }), + zj_def: PublicShared.eval(G.gc.com.zjcz_def.value as any as string, { lv: player.lv }), + zj_liliang: PublicShared.eval(G.gc.com.zjcz_liliang.value as any as string, { lv: player.lv }), + zj_zhishi: PublicShared.eval(G.gc.com.zjcz_zhishi.value as any as string, { lv: player.lv }), + zj_mofa: G.gc.com.zj_mofa.value + PublicShared.eval(G.gc.com.zjcz_zhishi.value as any as string, { lv: player.lv }) + }; + + if (G.gc.tujian_jc[player.tujianLv]) { + PublicShared.mergeProperty(zjBuff, G.gc.tujian_jc[player.tujianLv].buff); + } + + if (player.wxcLv) { + let wxcbuff = {}; + let curWxcLv = player.wxcLv.lv + 1; + for (let lv = 1; lv < curWxcLv; lv++) { + for (let key in G.gc.weixiuchang_zz[lv].buff) { + PublicShared.mergeProperty(wxcbuff, G.gc.weixiuchang_zz[lv].buff[key]); + } + G.gc.weixiuchang_zz[lv].buff2 && PublicShared.mergeProperty(wxcbuff, G.gc.weixiuchang_zz[lv].buff2); + } + if (player.wxcLv.ids.length > 0) { + player.wxcLv.ids.forEach(id => { + G.gc.weixiuchang_zz[curWxcLv].buff[id + 1] && PublicShared.mergeProperty(wxcbuff, G.gc.weixiuchang_zz[curWxcLv].buff[id + 1]);; + }); + } + PublicShared.mergeProperty(zjBuff, wxcbuff); + } + + if (player?.renown) { + for (let lv = 1; lv <= player.renown; lv++) { + G.gc.mw_dj[lv].buff && PublicShared.mergeProperty(zjBuff, G.gc.mw_dj[lv].buff); + } + } + + if (player?.skills) { + for (let [id, lv] of Object.entries(player.skills)) { + if (lv && G.gc.xunlianjihua[id].use == 2) { + PublicShared.mergeProperty(zjBuff, Object.fromEntries([G.gc.xunlianjihua[id].skill].map(k => [k, PublicShared.eval(G.gc.xunlianjihua[id].v[0], { slv: lv })]))); + } + } + } + + //最后进行加成属性计算 + for (let k in zjBuff) { + if (k.indexOf('pro') == -1) continue; + let buffKey = k.replace('pro', ''); + if (zjBuff[buffKey]) { + zjBuff[buffKey] += zjBuff[buffKey] * zjBuff[k]; + zjBuff[k] = 0; + } + } + + // 重新赋值魔法数值,知识有额外加成 + zjBuff.zj_mofa = G.gc.com.zj_mofa.value + zjBuff.zj_zhishi; + HeroShared.amendAttr(zjBuff); + + return zjBuff; + } + static getMingDaoBuff(player: player, key?: string) { + let obj: k_v = {}; + + for (let [id, lv] of Object.entries(player.shoucangping)) { + if (lv >= G.gc.mingdao[id].level) { + PublicShared.mergeProperty(obj, G.gc.mingdao[id].privilege); + } + } + + if (key) { + return obj[key]; + } + return obj; + } +} \ No newline at end of file diff --git a/src/shared/public/public.ts b/src/shared/public/public.ts new file mode 100644 index 0000000..02c3aa2 --- /dev/null +++ b/src/shared/public/public.ts @@ -0,0 +1,276 @@ +import { string } from 'mathjs'; +import { ApiCall } from 'tsrpc'; +import { prizeType } from '../protocols/type'; +import { player } from '../protocols/user/type'; + +export class PublicShared { + /**合并奖励 */ + static mergePrize(prize: prizeType[]): prizeType[] { + let typeObj: k_v> = {}; + let mergeArr: prizeType[] = []; + + prize.forEach(atn => { + if (!typeObj[atn.a]) typeObj[atn.a] = {}; + if (!typeObj[atn.a][atn.t]) typeObj[atn.a][atn.t] = { n: 0, colour: atn.colour || 0 }; + typeObj[atn.a][atn.t].n += atn.n; + }); + for (let type in typeObj) { + for (let id in typeObj[type]) { + mergeArr.push({ + a: type, + t: id, + n: typeObj[type][id].n, + colour: typeObj[type][id].colour + }); + } + } + return mergeArr; + } + + static exprStr2Compile = {}; + /**eval预编译 */ + static eval(expr:any, scope?:object){ + if(Array.isArray(expr)) { + let res = [] + expr.forEach( item => { + if(! this.exprStr2Compile[item] ){ + this.exprStr2Compile[item] = mathJs.compile(item); + } + res.push(this.exprStr2Compile[item].evaluate(scope)) + }) + return res + } else { + if(! this.exprStr2Compile[expr] ){ + this.exprStr2Compile[expr] = mathJs.compile(expr); + } + return this.exprStr2Compile[expr].evaluate(scope); + } + } + + /**合并属性 */ + static mergeProperty(obj1: any = {}, obj2: any = {}) { + for (let k in obj2) { + + if (obj2[k] instanceof Array) { + if (obj1[k]) obj1[k] = obj1[k].concat(obj2[k]); + else obj1[k] = obj2[k]; + } else if (obj2[k] instanceof Object) { + if (obj1[k]) PublicShared.mergeProperty(obj1[k], obj2[k]); + else { + obj1[k] = {}; + PublicShared.mergeProperty(obj1[k], obj2[k]); + } + } else { + if (obj1[k]) obj1[k] += obj2[k]; + else obj1[k] = obj2[k]; + } + } + } + /** + * 随机掉落组 + * @param id 掉落组id + * @param num 随机次数 + */ + static randomDropGroup(id: string | number, num = 1, conf = G.gc.diaoluo): prizeType[] { + let prize = []; + let weight = []; + let dlz = JSON.parse(JSON.stringify(conf[id])); + + dlz.forEach((d, index) => { + if (weight[index - 1]) { + weight.push(weight[index - 1] + d.p); + } else { + weight.push(d.p); + } + }); + + for (let n = 0; n < num; n++) { + let prizeIndex = 0; + // debug 举例:diaoluo.json 250001参数的[p:1, p:140], 随机数范围是 1-141,小于等于1的概率较小,所以大部分取后面的值,后面的值给的物品数量是0 + let randomNum = this.randomNum(1, weight[weight.length - 1]); + + for (let index = 0; index < weight.length; index++) { + if (randomNum <= weight[index]) { + prizeIndex = index; + break; + } + } + + prize.push(dlz[prizeIndex]); + } + + return prize; + } + /** + * 随机概率组 + */ + static randomDropAny(dropArr: T[]): T { + let dropGrop = { 0: dropArr }; + return this.randomDropGroup(0, 1, dropGrop as any)[0] as any; + } + /** + * 随机生成区间范围整数 + */ + static randomNum(min: number, max: number) { + return Math.floor(Math.random() * (max - min) + min); + } + /**获取道具配置 */ + static getAtnConf(atn: prizeType) { + if (atn.a == 'attr') return G.gc.attr[atn.t]; + else if (atn.a == 'item') return G.gc.item[atn.t]; + else if (atn.a == 'hero') return G.gc.hero[atn.t]; + else if (atn.a == 'equip') return G.gc.equip[atn.t]; + + return null; + } + /**获取当天0点时间戳 */ + static getToDayZeroTime(time: string): number; + static getToDayZeroTime(time?: number): number; + static getToDayZeroTime(time: string | number) { + let t = typeof time == 'string' ? new Date(time) : new Date((time || G.time) * 1000); + return Math.round(t.setHours(0, 0, 0, 0) / 1000); + } + /**获取本周周一0点时间戳 */ + static getToWeekMondayZeroTime(time = G.time) { + let toDay = new Date(time * 1000); + let day = toDay.getDay() || 7; + let z = new Date(toDay.getFullYear(), toDay.getMonth(), toDay.getDate() + 1 - day); + return Math.round(z.getTime() / 1000); + } + + /**获取当前第几周 避免跨年导致key不一样,以周一时间戳去计算*/ + static getToWeek(time = this.getToWeekMondayZeroTime()) { + let toDay = new Date(time * 1000); + let day = toDay.getDay() || 7; + let z = new Date(toDay.getFullYear(), toDay.getMonth(), toDay.getDate() + 1 - day); + + let z2 = new Date(toDay.getFullYear(), 0, 1); + + let rq = (z.getTime() - z2.getTime()) / 1000; + let s1 = Math.ceil(rq / (24 * 60 * 60)); + let s2 = Math.ceil(s1 / 7); + return `${toDay.getFullYear()}_${s2}`; + } + + /**周几 */ + static getWeek(timestamp: number) { + let toDay = new Date(timestamp * 1000); + const day = toDay.getDay(); + return day + } + + /**是否同一天 */ + static chkSameDate(time: string | number, chktime: string | number) { + if (this.getToDayZeroTime(time as string) === this.getToDayZeroTime(chktime as string)) + return true; + return false; + } + /**获取今天是开服第几天 */ + static getOpenServerDay(openTime: any = G.openTime, time = G.time) { + let oDay = this.getToDayZeroTime(openTime); + return Math.ceil((time - oDay) / 86400); + } + /**获取相差天数 */ + static getDiff(oldTime: number, time = G.time) { + let oDay = this.getToDayZeroTime(oldTime); + return Math.ceil((time - oDay) / 86400); + } + + /**数组buff转对象buff */ + static arrBuffToObjectBuff(arrBuff: (string | number)[]) { + let buff = {}; + for (let i = 0; i < arrBuff.length; i++) { + if (i % 2 != 0) continue; + buff[arrBuff[i]] = arrBuff[i + 1]; + } + return buff; + } + static str(str: string, ...args: Array) { + if (arguments.length < 2) return str; + if (arguments.length == 2 && Object.prototype.toString.call(arguments[1]) == '[object Array]') { + let args = arguments[1]; + for (let i = 0; i < args.length; i++) { + str = str.replace(new RegExp('\\{' + (i + 1) + '\\}', 'g'), args[i]); + } + } else { + for (let i = 1; i < arguments.length; i++) { + str = str.replace(new RegExp('\\{' + i + '\\}', 'g'), arguments[i]); + } + } + return str; + } + + static getEventIsOpen(cond: k_v, player: Partial) { + + let arr = Object.entries(cond); + + for (let [k, v] of arr) { + if (k == 'day' && this.getOpenServerDay() < v) return false; + if (player[k] < v) return false; + } + return true; + } + + /**转化时间戳显示日期 */ + static fmtTime(timestamp: number) { + const date = new Date(timestamp * 1000); + const year = date.getFullYear(); + const month = date.getMonth() + 1; // 获取月份,需要加1 + const day = date.getDate(); // 获取日期 + const hour = date.getHours(); // 获取小时 + const minute = date.getMinutes(); // 获取分钟 + const second = date.getSeconds(); // 获取秒数 + // const formattedDate = `${year}-${month}-${day} ${hour}:${minute}:${second}`; // 拼接成格式化后的日期字符串 + const formattedDate = `${month}月${day}日${hour}:${minute}`; // 拼接成格式化后的日期字符串 + return formattedDate; + } + + /**功能开启 */ + static getOpenCond(call: ApiCall, gongneng: string): [boolean, string] { + let _con = G.gc.openCond[gongneng] + if (!_con) return [false, "功能不存在"] + + let _res = false + let _and = Object.keys(_con.and) + for (let index = 0; index < _and.length; index++) { + _res = true + const element = _and[index]; + if (element == "lv" && call.conn.gud.lv < _con.and[element]) { + _res = false + } else if (element == "openTime" && this.getOpenServerDay() < _con.and[element]) { + _res = false + } else if (element == "vip" && call.conn.gud.vip < _con.and[element]) { + _res = false + } else if (element == "mapId" && call.conn.gud.mapId < _con.and[element]) { + _res = false + } + + if (!_res) return [false, _con.tips] + } + + let _or = Object.keys(_con.or) + for (let index = 0; index < _or.length; index++) { + _res = false + const element = _or[index]; + if (element == "lv" && call.conn.gud.lv >= _con.or[element]) { + _res = true + break + } else if (element == "openTime" && this.getOpenServerDay() >= _con.or[element]) { + _res = true + break + } else if (element == "vip" && call.conn.gud.vip >= _con.or[element]) { + _res = true + break + } else if (element == "mapId" && call.conn.gud.mapId >= _con.or[element]) { + _res = true + break + } + } + + return [_res, _con.tips]; + } + +} \ No newline at end of file diff --git a/src/shared/public/queue.ts b/src/shared/public/queue.ts new file mode 100644 index 0000000..546a25e --- /dev/null +++ b/src/shared/public/queue.ts @@ -0,0 +1,28 @@ + + +/** + * 队列执行 + */ +export class Queue { + private isProcessing = false; + private queue: Array<() => Promise> = []; + private async processQueue() { + if (this.isProcessing) return; + this.isProcessing = true; + + while (this.queue.length > 0) { + const func = this.queue.shift(); + await func!(); + } + + this.isProcessing = false; + } + + enqueue(func: () => Promise) { + + this.queue.push(func); + this.processQueue(); + } + + +} \ No newline at end of file diff --git a/src/shared/public/shiwu.ts b/src/shared/public/shiwu.ts new file mode 100644 index 0000000..fc0d396 --- /dev/null +++ b/src/shared/public/shiwu.ts @@ -0,0 +1,52 @@ +import { ResGetList } from '../protocols/shiwu/PtlGetList'; +import { heroShiWu, prizeType } from '../protocols/type'; +import { PublicShared } from './public'; + +type shiwuType = ResGetList['list']['']; + +export class ShiwuShared { + static get _conf() { + return G.gc.shiwucom.base; + } + /** + * 获取饰物buff + */ + static getShiwuBuff(shiwu: heroShiWu, buff: any = {}, heroId: string | number) { + if (!buff.skillArr) buff.skillArr = []; + + PublicShared.mergeProperty(buff, PublicShared.arrBuffToObjectBuff(shiwu.jichu)); + + shiwu.fujia.forEach(v => { + let b = {}; + b[v.buffKey] = v.buffVal; + PublicShared.mergeProperty(buff, b); + }); + + if (shiwu.zhuanshu && shiwu.zhuanshu.hero == heroId) { + shiwu.zhuanshu.skill && buff.skillArr.push(shiwu.zhuanshu.skill); + shiwu.zhuanshu.buff && PublicShared.mergeProperty(buff, PublicShared.arrBuffToObjectBuff(shiwu.zhuanshu.buff)); + } + + return buff; + } + /**获取洗练消耗 */ + static getConciseNeed(data: number): prizeType[]; + static getConciseNeed(data: Pick): prizeType[]; + static getConciseNeed(data: number | Pick) { + if (typeof data == 'number') { + return [G.gc.shiwucom.base.gaojixilian[data]]; + } else { + return [ + { + a: this._conf.putongxilian.a, + t: this._conf.putongxilian.t, + n: PublicShared.eval(this._conf.putongxilian.n, { shiwulv: G.gc.shiwu[data.shiwuId].lv }) + } + ]; + } + } + /**获取重铸消耗 */ + static getRecastNeed(type = 1) { + return [this._conf['chongzhuneed' + type]]; + } +} \ No newline at end of file diff --git a/src/shared/public/slzd.ts b/src/shared/public/slzd.ts new file mode 100644 index 0000000..a2ae8a6 --- /dev/null +++ b/src/shared/public/slzd.ts @@ -0,0 +1,23 @@ +export class SlzdShared { + // 获取特产库数据 + static async getStash(){ + // 查询特产库 + let stash = await G.mongodb.collection("slzdStash").findOne({key: 'stash'}) + var stashObj:k_v = {} + if(stash) stashObj = stash.val + else stashObj = await this.updateStash() + return stashObj; + } + + // 更新特产库 + static async updateStash() { + var stashObj:k_v = {} + for(let k in G.gc.slzd.forts) { + let fort = G.gc.slzd.forts[k] + let val = fort.stash.sort( () => 0.5 - Math.random() ).shift() + stashObj[k] = val + } + await G.mongodb.collection("slzdStash").updateOne({key: 'stash'}, {$set: {val: stashObj, utime: G.time}},{upsert: true}) + return stashObj + } +} \ No newline at end of file diff --git a/src/shared/public/tanxian.ts b/src/shared/public/tanxian.ts new file mode 100644 index 0000000..6af25f0 --- /dev/null +++ b/src/shared/public/tanxian.ts @@ -0,0 +1,34 @@ +import { PublicShared } from './public'; + + +export class TanXianShared { + /**根据时间获取挂机奖励 */ + static getGuaJiPrize(time: number, mapId: number, isClient = true, addBuff: { + /**收藏品 */ + shoucangpin?: k_v; + } = {}) { + if (time > G.gc.tanxian_com.maxGuaJiTime) time = G.gc.tanxian_com.maxGuaJiTime; + const conf = G.gc.tanxian[mapId || 1]; + const pNum = Math.floor(time / G.gc.tanxian_com.guaJiPrizeInterval); + const dNum = Math.floor(time / G.gc.tanxian_com.guaJiDlzInterval); + const gjPrize = conf.gjPrize.map(p => { return { a: p.a, t: p.t, n: Math.floor(p.n * pNum) }; }); + + let buff = {}; + // if (addBuff.shoucangpin) { + // for (let id in addBuff.shoucangpin) { + // PublicShared.mergeProperty(buff, G.gc.shoucangpin[id][addBuff.shoucangpin[id]].teshubuff); + // } + // } + + gjPrize.forEach(prize => { + if (buff[prize.t]) { + prize.n = Math.floor(prize.n + prize.n * (buff[prize.t] / 100)); + } + }); + + return { + prize: gjPrize, + dlz: isClient ? conf.dlz.map(d => G.gc.diaoluo[d]).reduce((a, b) => a.concat(b)) : (dNum && conf.dlz.length > 0 ? conf.dlz.map(d => PublicShared.randomDropGroup(d, dNum)).reduce((a, b) => a.concat(b)) : []) + }; + } +} \ No newline at end of file diff --git a/src/shared/public/user.ts b/src/shared/public/user.ts new file mode 100644 index 0000000..086fed9 --- /dev/null +++ b/src/shared/public/user.ts @@ -0,0 +1,25 @@ + + +export class UserShared { + /**获取头像之类id */ + static getInfoId(type: 'head' | 'headFrame' | 'chatFrame' | 'model', id: string, pos?: string) { + return Array.from(arguments).filter(s => s != '').join('_'); + } + /** + * 判断头像之类是否激活 + * @param id 请使用 UserShared.getInfo 转化后的id + */ + static chechIsActive(fmtId: string, collection: Partial<{ lv: number, vip: number, lsyx: k_v, active: k_v; }>) { + + const [type, id, pos] = fmtId.split('_'); + const jsonName = 'player' + type.slice(0, 1).toLocaleUpperCase() + type.slice(1); + const json = G.gc[jsonName] as any; + const conf: _gcType['playerHead'][''] = pos ? json[pos][id] : json[id]; + + if (conf.cond[0] == 'lv') return collection.lv >= conf.cond[1]; + else if (conf.cond[0] == 'vip') return collection.vip >= conf.cond[1]; + else if (conf.cond[0] == 'hero') return collection.lsyx[conf.cond[1]] > 0; + else if (conf.cond[0] == 'time') return collection.active[fmtId] == -1 || collection.active[fmtId] > G.time; + else return false; + } +} \ No newline at end of file diff --git a/src/shared/serverLng.ts b/src/shared/serverLng.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/starup.ts b/src/starup.ts new file mode 100644 index 0000000..4c379d2 --- /dev/null +++ b/src/starup.ts @@ -0,0 +1,19 @@ +import { ApiCall } from 'tsrpc'; +import { HuoDongFun } from './public/huodongfun'; +import { JJCFun } from './public/jjc'; +import { setDbIndexes } from './setMongodb'; + +export class initStarupFun { + /**插入活动数据 */ + static async initStart() { + // 创建索引 + setDbIndexes(); + if (G.argv.serverType != 'cross') { + // 增加本地活动 + HuoDongFun.fmtHD() + // 竞技场增加npc + JJCFun.init(); + } + } +} + diff --git a/src/stressTest/allApi.json b/src/stressTest/allApi.json new file mode 100644 index 0000000..4d5eff6 --- /dev/null +++ b/src/stressTest/allApi.json @@ -0,0 +1,1950 @@ +{ + "1": [ + { + "id": 2, + "num": 1, + "name": "equip/GetList", + "body": {}, + "txt": "登录游戏" + }, + { + "id": 3, + "num": 1, + "name": "tanxian/Open", + "body": "{cache:false}", + "txt": "登录游戏" + }, + { + "id": 4, + "num": 1, + "name": "item/GetList", + "body": {}, + "txt": "登录游戏" + }, + { + "id": 5, + "num": 1, + "name": "shiwu/GetList", + "body": {}, + "txt": "登录游戏" + }, + { + "id": 6, + "num": 1, + "name": "peijian/GetList", + "body": {}, + "txt": "登录游戏" + }, + { + "id": 7, + "num": 1, + "name": "hero/GetList", + "body": {}, + "txt": "登录游戏" + }, + { + "id": 8, + "num": 1, + "name": "email/Open", + "body": {}, + "txt": "登录游戏" + }, + { + "id": 9, + "num": 1, + "name": "friend/Open", + "body": {}, + "txt": "登录游戏" + }, + { + "id": 10, + "num": 1, + "name": "SyncBtn", + "body": {}, + "txt": "登录游戏" + }, + { + "id": 11, + "num": 1, + "name": "gongyu/mingdao/Open", + "body": {}, + "txt": "登录游戏" + }, + { + "id": 12, + "num": 1, + "name": "pay/GetList", + "body": {}, + "txt": "登录游戏" + }, + { + "id": 13, + "num": 1, + "name": "eventlist/hdGetList", + "body": {}, + "txt": "登录游戏" + }, + { + "id": 14, + "num": 1, + "name": "user/Ping", + "body": {}, + "txt": "登录游戏" + }, + { + "id": 15, + "num": 1, + "name": "event/shouchong/Open", + "body": {}, + "txt": "登录游戏" + }, + { + "id": 16, + "num": 1, + "name": "chat/GetList", + "body": {}, + "txt": "登录游戏" + }, + { + "id": 17, + "num": 1, + "name": "hongdian/Get", + "body": ["heishihd"], + "txt": "红点" + } + ], + "2": [ + { + "id": 20, + "num": 2, + "name": "user/ChangeName", + "body": "{name:{1}}", + "txt": "取名" + } + ], + "3": [ + { + "id": 22, + "num": 3, + "txt": "点击酒吧", + "name": "jiuba/Open", + "body": {} + } + ], + "4": [ + { + "id": 24, + "num": 4, + "txt": "抽卡一次", + "name": "jiuba/Lottery", + "body": "{type:1}" + } + ], + "7": [ + { + "id": 33, + "num": 7, + "name": "hero/ChangePos", + "txt": "编入" + } + ], + "8": [ + { + "id": 35, + "num": 8, + "txt": "点击探索", + "name": "tanxian/Open", + "body": "{cache:true}" + }, + { + "id": 36, + "num": 8, + "name": "gonglukuangbiao/Open", + "body": {}, + "txt": "点击探索" + }, + { + "id": 37, + "num": 8, + "name": "task/Open", + "body": {}, + "txt": "点击探索" + } + ], + "9": [ + { + "id": 39, + "num": 9, + "txt": "点击战斗", + "name": "tanxian/Fight" + }, + { + "id": 41, + "num": 9, + "name": "event/shouchong/Open", + "txt": "点击战斗" + }, + { + "id": 42, + "num": 9, + "name": "event/shouchong/Open", + "txt": "点击战斗" + }, + { + "id": 43, + "num": 9, + "name": "user/Ping", + "txt": "点击战斗" + } + ], + "10": [ + { + "id": 46, + "num": 10, + "txt": "点击确定", + "name": "task/Open" + }, + { + "id": 47, + "num": 10, + "name": "event/shouchong/Open", + "txt": "点击确定" + } + ], + "11": [ + { + "id": 49, + "num": 11, + "txt": "升级确定", + "name": "SyncBtn" + }, + { + "id": 50, + "num": 11, + "name": "event/shouchong/Open", + "txt": "升级确定" + } + ], + "12": [ + { + "id": 52, + "num": 12, + "txt": "主线任务", + "name": "task/Open" + } + ], + "13": [ + { + "id": 54, + "num": 13, + "txt": "点击领取", + "name": "task/Finsh" + } + ], + "16": [ + { + "id": 61, + "num": 16, + "txt": "自动装备", + "name": "equip/OneKeyWear" + } + ], + "17": [ + { + "id": 63, + "num": 17, + "txt": "点击探索", + "name": "tanxian/Open" + }, + { + "id": 64, + "num": 17, + "name": "gonglukuangbiao/Open", + "txt": "点击探索" + }, + { + "id": 65, + "num": 17, + "name": "user/Ping", + "txt": "点击探索" + }, + { + "id": 66, + "num": 17, + "name": "task/Open", + "txt": "点击探索" + } + ], + "18": [ + { + "id": 68, + "num": 18, + "txt": "点击战斗", + "name": "tanxian/Fight" + }, + { + "id": 70, + "num": 18, + "name": "event/shouchong/Open", + "txt": "点击战斗" + }, + { + "id": 71, + "num": 18, + "name": "event/shouchong/Open", + "txt": "点击战斗" + } + ], + "19": [ + { + "id": 74, + "num": 19, + "txt": "确定", + "name": "task/Open" + }, + { + "id": 75, + "num": 19, + "name": "event/shouchong/Open", + "txt": "确定" + } + ], + "20": [ + { + "id": 77, + "num": 20, + "txt": "升级确定", + "name": "SyncBtn" + }, + { + "id": 78, + "num": 20, + "name": "event/shouchong/Open", + "txt": "升级确定" + } + ], + "22": [ + { + "id": 82, + "num": 22, + "txt": "碎片合成", + "name": "item/Use" + } + ], + "25": [ + { + "id": 88, + "num": 25, + "txt": "编成", + "name": "hero/ChangePos" + } + ], + "26": [ + { + "id": 90, + "num": 26, + "txt": "点击探索", + "name": "tanxian/Open" + }, + { + "id": 91, + "num": 26, + "name": "gonglukuangbiao/Open", + "txt": "点击探索" + }, + { + "id": 92, + "num": 26, + "name": "task/Open", + "txt": "点击探索" + } + ], + "27": [ + { + "id": 94, + "num": 27, + "txt": "点击战斗", + "name": "tanxian/Fight" + }, + { + "id": 96, + "num": 27, + "name": "event/shouchong/Open", + "txt": "点击战斗" + }, + { + "id": 97, + "num": 27, + "name": "event/shouchong/Open", + "txt": "点击战斗" + } + ], + "28": [ + { + "id": 100, + "num": 28, + "txt": "确定", + "name": "task/Open" + }, + { + "id": 101, + "num": 28, + "name": "event/shouchong/Open", + "txt": "确定" + } + ], + "29": [ + { + "id": 103, + "num": 29, + "txt": "升级确定", + "name": "SyncBtn" + }, + { + "id": 104, + "num": 29, + "name": "event/shouchong/Open", + "txt": "升级确定" + } + ], + "30": [ + { + "id": 106, + "num": 30, + "txt": "挂机奖励", + "name": "tanxian/Event" + }, + { + "id": 107, + "num": 30, + "name": "tanxian/GuaJi", + "txt": "挂机奖励" + }, + { + "id": 108, + "num": 30, + "name": "task/Open", + "txt": "挂机奖励" + } + ], + "32": [ + { + "id": 112, + "num": 32, + "txt": "干部升级", + "name": "hero/LvUp" + } + ], + "33": [ + { + "id": 115, + "num": 33, + "txt": "升阶", + "name": "hero/JinJie" + } + ], + "34": [ + { + "id": 117, + "num": 34, + "txt": "探索", + "name": "tanxian/Open" + }, + { + "id": 118, + "num": 34, + "name": "gonglukuangbiao/Open", + "txt": "探索" + }, + { + "id": 119, + "num": 34, + "name": "task/Open", + "txt": "探索" + }, + { + "id": 120, + "num": 34, + "name": "user/Ping", + "txt": "探索" + } + ], + "35": [ + { + "id": 122, + "num": 35, + "txt": "战斗", + "name": "tanxian/Fight" + }, + { + "id": 124, + "num": 35, + "name": "event/shouchong/Open", + "txt": "战斗" + }, + { + "id": 125, + "num": 35, + "name": "event/shouchong/Open", + "txt": "战斗" + } + ], + "36": [ + { + "id": 128, + "num": 36, + "txt": "确定", + "name": "task/Open" + }, + { + "id": 129, + "num": 36, + "name": "event/shouchong/Open", + "txt": "确定" + } + ], + "37": [ + { + "id": 131, + "num": 37, + "txt": "主线任务", + "name": "task/Open" + } + ], + "38": [ + { + "id": 133, + "num": 38, + "txt": "领取", + "name": "task/Finsh" + }, + { + "id": 135, + "num": 38, + "name": "event/shouchong/Open", + "txt": "领取" + } + ], + "39": [ + { + "id": 138, + "num": 39, + "txt": "升级确定", + "name": "event/shouchong/Open" + }, + { + "id": 139, + "num": 39, + "name": "SyncBtn", + "txt": "升级确定" + }, + { + "id": 140, + "num": 39, + "name": "event/shouchong/Open", + "txt": "升级确定" + } + ], + "40": [ + { + "id": 142, + "num": 40, + "txt": "酒吧", + "name": "jiuba/Open" + } + ], + "41": [ + { + "id": 144, + "num": 41, + "txt": "10抽", + "name": "jiuba/Lottery" + } + ], + "43": [ + { + "id": 150, + "num": 43, + "txt": "编成", + "name": "hero/ChangePos" + } + ], + "44": [ + { + "id": 152, + "num": 44, + "txt": "探索", + "name": "tanxian/Open" + }, + { + "id": 153, + "num": 44, + "name": "gonglukuangbiao/Open", + "txt": "探索" + }, + { + "id": 154, + "num": 44, + "name": "task/Open", + "txt": "探索" + }, + { + "id": 155, + "num": 44, + "name": "user/Ping", + "txt": "探索" + } + ], + "45": [ + { + "id": 158, + "num": 45, + "txt": "战斗", + "name": "tanxian/Fight" + }, + { + "id": 160, + "num": 45, + "name": "event/shouchong/Open", + "txt": "战斗" + } + ], + "46": [ + { + "id": 162, + "num": 46, + "txt": "确定", + "name": "task/Open" + } + ], + "47": [ + { + "id": 165, + "num": 47, + "txt": "探险界面领取主线任务", + "name": "task/Finsh" + }, + { + "id": 167, + "num": 47, + "name": "task/Open", + "txt": "探险界面领取主线任务" + } + ], + "48": [ + { + "id": 169, + "num": 48, + "txt": "探险界面领取主线任务", + "name": "task/Finsh" + }, + { + "id": 171, + "num": 48, + "name": "event/shouchong/Open", + "txt": "探险界面领取主线任务" + }, + { + "id": 172, + "num": 48, + "name": "task/Open", + "txt": "探险界面领取主线任务" + } + ], + "49": [ + { + "id": 175, + "num": 49, + "txt": "升级", + "name": "event/shouchong/Open" + } + ], + "50": [ + { + "id": 177, + "num": 50, + "txt": "升级确定", + "name": "SyncBtn" + }, + { + "id": 178, + "num": 50, + "name": "event/shouchong/Open", + "txt": "升级确定" + } + ], + "51": [ + { + "id": 180, + "num": 51, + "txt": "探险界面领取主线任务", + "name": "task/Finsh" + }, + { + "id": 182, + "num": 51, + "name": "task/Open", + "txt": "探险界面领取主线任务" + } + ], + "52": [ + { + "id": 184, + "num": 52, + "txt": "10连升级", + "name": "hero/LvUp" + } + ], + "53": [ + { + "id": 187, + "num": 53, + "txt": "教堂", + "name": "jiaotang/Open" + } + ], + "54": [ + { + "id": 189, + "num": 54, + "txt": "单抽", + "name": "jiaotang/Lottery" + } + ], + "55": [ + { + "id": 192, + "num": 55, + "txt": "探索", + "name": "tanxian/Open" + }, + { + "id": 193, + "num": 55, + "name": "gonglukuangbiao/Open", + "txt": "探索" + }, + { + "id": 194, + "num": 55, + "name": "task/Open", + "txt": "探索" + } + ], + "56": [ + { + "id": 196, + "num": 56, + "txt": "探险界面领取主线任务", + "name": "task/Finsh" + }, + { + "id": 198, + "num": 56, + "name": "task/Open", + "txt": "探险界面领取主线任务" + } + ], + "57": [ + { + "id": 200, + "num": 57, + "txt": "探险界面领取主线任务", + "name": "task/Finsh" + }, + { + "id": 202, + "num": 57, + "name": "event/shouchong/Open", + "txt": "探险界面领取主线任务" + }, + { + "id": 203, + "num": 57, + "name": "task/Open", + "txt": "探险界面领取主线任务" + } + ], + "58": [ + { + "id": 206, + "num": 58, + "txt": "升级", + "name": "SyncBtn" + }, + { + "id": 207, + "num": 58, + "name": "event/shouchong/Open", + "txt": "升级" + } + ], + "59": [ + { + "id": 209, + "num": 59, + "txt": "探险界面领取主线任务", + "name": "task/Finsh" + }, + { + "id": 211, + "num": 59, + "name": "task/Open", + "txt": "探险界面领取主线任务" + } + ], + "60": [ + { + "id": 213, + "num": 60, + "txt": "战斗", + "name": "tanxian/Fight" + }, + { + "id": 215, + "num": 60, + "name": "event/shouchong/Open", + "txt": "战斗" + } + ], + "61": [ + { + "id": 217, + "num": 61, + "txt": "确定", + "name": "task/Open" + } + ], + "62": [ + { + "id": 219, + "num": 62, + "txt": "探险界面领取主线任务", + "name": "task/Finsh" + }, + { + "id": 221, + "num": 62, + "name": "task/Open", + "txt": "探险界面领取主线任务" + } + ], + "63": [ + { + "id": 223, + "num": 63, + "txt": "探险界面领取主线任务", + "name": "task/Finsh" + }, + { + "id": 225, + "num": 63, + "name": "event/shouchong/Open", + "txt": "探险界面领取主线任务" + }, + { + "id": 226, + "num": 63, + "name": "task/Open", + "txt": "探险界面领取主线任务" + } + ], + "64": [ + { + "id": 229, + "num": 64, + "txt": "升级", + "name": "event/shouchong/Open" + } + ], + "65": [ + { + "id": 231, + "num": 65, + "txt": "升级确定", + "name": "SyncBtn" + }, + { + "id": 232, + "num": 65, + "name": "event/shouchong/Open", + "txt": "升级确定" + } + ], + "66": [ + { + "id": 234, + "num": 66, + "txt": "战斗", + "name": "tanxian/Fight" + }, + { + "id": 236, + "num": 66, + "name": "event/shouchong/Open", + "txt": "战斗" + } + ], + "67": [ + { + "id": 238, + "num": 67, + "txt": "确定", + "name": "task/Open" + } + ], + "68": [ + { + "id": 240, + "num": 68, + "txt": "探险界面领取主线任务", + "name": "task/Finsh" + }, + { + "id": 242, + "num": 68, + "name": "task/Open", + "txt": "探险界面领取主线任务" + } + ], + "69": [ + { + "id": 244, + "num": 69, + "txt": "领取挂机奖励", + "name": "tanxian/Event" + }, + { + "id": 245, + "num": 69, + "name": "event/shouchong/Open", + "txt": "领取挂机奖励" + }, + { + "id": 246, + "num": 69, + "name": "tanxian/GuaJi", + "txt": "领取挂机奖励" + }, + { + "id": 248, + "num": 69, + "name": "task/Open", + "txt": "领取挂机奖励" + } + ], + "70": [ + { + "id": 250, + "num": 70, + "txt": "升级", + "name": "event/shouchong/Open" + } + ], + "71": [ + { + "id": 252, + "num": 71, + "txt": "升级确定", + "name": "SyncBtn" + }, + { + "id": 253, + "num": 71, + "name": "event/shouchong/Open", + "txt": "升级确定" + } + ], + "72": [ + { + "id": 255, + "num": 72, + "txt": "探险界面领取主线任务", + "name": "task/Finsh" + }, + { + "id": 257, + "num": 72, + "name": "task/Open", + "txt": "探险界面领取主线任务" + } + ], + "73": [ + { + "id": 259, + "num": 73, + "txt": "干部升级", + "name": "hero/LvUp" + } + ], + "74": [ + { + "id": 261, + "num": 74, + "txt": "探索", + "name": "tanxian/Open" + }, + { + "id": 262, + "num": 74, + "name": "gonglukuangbiao/Open", + "txt": "探索" + }, + { + "id": 263, + "num": 74, + "name": "task/Open", + "txt": "探索" + } + ], + "75": [ + { + "id": 265, + "num": 75, + "txt": "主线任务", + "name": "task/Open" + } + ], + "76": [ + { + "id": 267, + "num": 76, + "txt": "点击头像", + "name": "user/InfoOpen" + } + ], + "77": [ + { + "id": 269, + "num": 77, + "txt": "更换造型", + "name": "user/ChangeInfo" + } + ], + "78": [ + { + "id": 271, + "num": 78, + "txt": "成就任务", + "name": "task/Open" + } + ], + "79": [ + { + "id": 273, + "num": 79, + "txt": "领取奖励", + "name": "task/Finsh" + } + ], + "80": [ + { + "id": 277, + "num": 80, + "txt": "领取奖励", + "name": "task/Finsh" + } + ], + "81": [ + { + "id": 279, + "num": 81, + "txt": "领取奖励", + "name": "task/Finsh" + } + ], + "82": [ + { + "id": 281, + "num": 82, + "txt": "领取奖励", + "name": "ApiReq]: task/Finsh" + } + ], + "83": [ + { + "id": 283, + "num": 83, + "txt": "右上角砖石按钮", + "name": "chongzhi/Open" + } + ], + "84": [ + { + "id": 286, + "num": 84, + "name": "chongzhi/Open", + "txt": "充值" + }, + { + "id": 287, + "num": 84, + "name": "event/shouchong/Open", + "txt": "充值" + } + ], + "85": [ + { + "id": 291, + "num": 85, + "name": "chongzhi/BuyGift", + "txt": "购买特权礼包" + } + ], + "86": [ + { + "id": 295, + "num": 86, + "txt": "干部升级", + "name": "hero/LvUp" + } + ], + "87": [ + { + "id": 297, + "num": 87, + "txt": "主线任务", + "name": "task/Open" + } + ], + "88": [ + { + "id": 299, + "num": 88, + "txt": "领取", + "name": "task/Finsh" + } + ], + "89": [ + { + "id": 302, + "num": 89, + "txt": "每日任务领取", + "name": "task/Finsh" + }, + { + "id": 304, + "num": 89, + "name": "event/shouchong/Open", + "txt": "每日任务领取" + } + ], + "90": [ + { + "id": 308, + "num": 90, + "txt": "升级", + "name": "event/shouchong/Open" + } + ], + "91": [ + { + "id": 310, + "num": 91, + "txt": "升级确定", + "name": "user/Ping" + }, + { + "id": 311, + "num": 91, + "name": "SyncBtn", + "txt": "升级确定" + }, + { + "id": 312, + "num": 91, + "name": "event/shouchong/Open", + "txt": "升级确定" + } + ], + "92": [ + { + "id": 314, + "num": 92, + "txt": "每日任务领取", + "name": "task/Finsh" + }, + { + "id": 316, + "num": 92, + "name": "event/shouchong/Open", + "txt": "每日任务领取" + } + ], + "93": [ + { + "id": 320, + "num": 93, + "txt": "升级", + "name": "event/shouchong/Open" + } + ], + "94": [ + { + "id": 322, + "num": 94, + "txt": "升级确定", + "name": "SyncBtn" + }, + { + "id": 323, + "num": 94, + "name": "event/shouchong/Open", + "txt": "升级确定" + } + ], + "97": [ + { + "id": 329, + "num": 97, + "txt": "升级技能", + "name": "gongyu/xunlianjihua/UpSkill" + } + ], + "98": [ + { + "id": 331, + "num": 98, + "txt": "布置作战计划", + "name": "gongyu/zuozhanjihua/SetSkill" + } + ], + "99": [ + { + "id": 333, + "num": 99, + "txt": "主线任务", + "name": "task/Open" + } + ], + "100": [ + { + "id": 335, + "num": 100, + "txt": "每日任务", + "name": "task/Open" + } + ], + "101": [ + { + "id": 337, + "num": 101, + "txt": "每日任务领取", + "name": "task/Finsh" + }, + { + "id": 339, + "num": 101, + "name": "event/shouchong/Open", + "txt": "每日任务领取" + } + ], + "102": [ + { + "id": 343, + "num": 102, + "txt": "升级", + "name": "event/shouchong/Open" + } + ], + "103": [ + { + "id": 345, + "num": 103, + "txt": "升级确定", + "name": "SyncBtn" + }, + { + "id": 346, + "num": 103, + "name": "event/shouchong/Open", + "txt": "升级确定" + } + ], + "104": [ + { + "id": 348, + "num": 104, + "txt": "每日任务领取", + "name": "task/Finsh" + } + ], + "105": [ + { + "id": 352, + "num": 105, + "txt": "3次每日任务达成奖励", + "name": "task/Finsh" + }, + { + "id": 354, + "num": 105, + "name": "user/Ping", + "txt": "3次每日任务达成奖励" + } + ], + "106": [ + { + "id": 356, + "num": 106, + "txt": "探险", + "name": "tanxian/Open" + }, + { + "id": 357, + "num": 106, + "name": "gonglukuangbiao/Open", + "txt": "探险" + }, + { + "id": 358, + "num": 106, + "name": "task/Open", + "txt": "探险" + } + ], + "107": [ + { + "id": 360, + "num": 107, + "txt": "战斗", + "name": "tanxian/Fight" + }, + { + "id": 362, + "num": 107, + "name": "event/shouchong/Open", + "txt": "战斗" + } + ], + "108": [ + { + "id": 364, + "num": 108, + "txt": "确定", + "name": "task/Open" + } + ], + "109": [ + { + "id": 367, + "num": 109, + "txt": "战斗", + "name": "tanxian/Fight" + }, + { + "id": 369, + "num": 109, + "name": "event/shouchong/Open", + "txt": "战斗" + }, + { + "id": 370, + "num": 109, + "name": "event/shouchong/Open", + "txt": "战斗" + } + ], + "110": [ + { + "id": 373, + "num": 110, + "txt": "确定", + "name": "task/Open" + }, + { + "id": 374, + "num": 110, + "name": "event/shouchong/Open", + "txt": "确定" + } + ], + "111": [ + { + "id": 376, + "num": 111, + "txt": "码头", + "name": "kuangdong/Open" + } + ], + "112": [ + { + "id": 378, + "num": 112, + "txt": "竞技场", + "name": "jjc/Open" + } + ], + "113": [ + { + "id": 380, + "num": 113, + "txt": "挑战", + "name": "jjc/Fight" + } + ], + "114": [ + { + "id": 384, + "num": 114, + "txt": "上阵", + "name": "hero/ChangePos" + } + ], + "115": [ + { + "id": 386, + "num": 115, + "txt": "干部升级", + "name": "user/Ping" + }, + { + "id": 387, + "num": 115, + "name": "hero/LvUp", + "txt": "干部升级" + } + ], + "116": [ + { + "id": 390, + "num": 116, + "txt": "探险", + "name": "tanxian/Open" + }, + { + "id": 391, + "num": 116, + "name": "gonglukuangbiao/Open", + "txt": "探险" + }, + { + "id": 392, + "num": 116, + "name": "task/Open", + "txt": "探险" + } + ], + "117": [ + { + "id": 395, + "num": 117, + "txt": "领取挂机奖励", + "name": "tanxian/Event" + }, + { + "id": 396, + "num": 117, + "name": "tanxian/GuaJi", + "txt": "领取挂机奖励" + }, + { + "id": 397, + "num": 117, + "name": "task/Open", + "txt": "领取挂机奖励" + } + ], + "118": [ + { + "id": 399, + "num": 118, + "txt": "战斗", + "name": "tanxian/Fight" + }, + { + "id": 401, + "num": 118, + "name": "event/shouchong/Open", + "txt": "战斗" + } + ], + "119": [ + { + "id": 403, + "num": 119, + "txt": "确定", + "name": "task/Open" + } + ], + "120": [ + { + "id": 405, + "num": 120, + "txt": "战斗", + "name": "tanxian/Fight" + }, + { + "id": 407, + "num": 120, + "name": "event/shouchong/Open", + "txt": "战斗" + } + ], + "121": [ + { + "id": 409, + "num": 121, + "txt": "确定", + "name": "task/Open" + } + ], + "122": [ + { + "id": 411, + "num": 122, + "txt": "探险界面领取主线任务", + "name": "task/Finsh" + }, + { + "id": 413, + "num": 122, + "name": "task/Open", + "txt": "探险界面领取主线任务" + } + ], + "123": [ + { + "id": 415, + "num": 123, + "txt": "探险界面领取主线任务", + "name": "task/Finsh" + }, + { + "id": 417, + "num": 123, + "name": "task/Open", + "txt": "探险界面领取主线任务" + } + ], + "124": [ + { + "id": 419, + "num": 124, + "txt": "探险界面领取主线任务", + "name": "task/Finsh" + }, + { + "id": 421, + "num": 124, + "name": "task/Open", + "txt": "探险界面领取主线任务" + } + ], + "125": [ + { + "id": 423, + "num": 125, + "txt": "干部升级", + "name": "hero/LvUp" + } + ], + "126": [ + { + "id": 425, + "num": 126, + "txt": "干部升级", + "name": "hero/LvUp" + } + ], + "127": [ + { + "id": 428, + "num": 127, + "txt": "进阶", + "name": "hero/JinJie" + } + ], + "128": [ + { + "id": 430, + "num": 128, + "txt": "一键装备", + "name": "equip/OneKeyWear" + } + ], + "129": [ + { + "id": 432, + "num": 129, + "txt": "快速强化", + "name": "equip/OneKeyLvUp" + } + ], + "130": [ + { + "id": 434, + "num": 130, + "txt": "码头", + "name": "kuangdong/Open" + } + ], + "131": [ + { + "id": 436, + "num": 131, + "txt": "竞技场", + "name": "jjc/Open" + } + ], + "132": [ + { + "id": 438, + "num": 132, + "txt": "挑战", + "name": "jjc/Open" + }, + { + "id": 439, + "num": 132, + "name": "jjc/Fight", + "txt": "挑战" + } + ], + "133": [ + { + "id": 444, + "num": 133, + "txt": "领取挑战奖励", + "name": "jjc/Receive" + } + ], + "134": [ + { + "id": 446, + "num": 134, + "txt": "打开排行", + "name": "rank/Open" + } + ], + "135": [ + { + "id": 448, + "num": 135, + "txt": "打开战斗记录", + "name": "jjc/FightLog" + } + ], + "136": [ + { + "id": 450, + "num": 136, + "txt": "打开商店", + "name": "shop/Open" + } + ], + "137": [ + { + "id": 452, + "num": 137, + "txt": "点开福利", + "name": "sign/Open" + }, + { + "id": 453, + "num": 137, + "name": "user/Ping", + "txt": "点开福利" + }, + { + "id": 454, + "num": 137, + "name": "sign/GetPrize", + "txt": "点开福利" + }, + { + "id": 456, + "num": 137, + "name": "sign/GetBoxPrize", + "txt": "点开福利" + } + ], + "138": [ + { + "id": 460, + "num": 138, + "txt": "进入百抽活动", + "name": "event/yibaichou/Open" + } + ], + "139": [ + { + "id": 462, + "num": 139, + "txt": "领取时长奖励", + "name": "event/yibaichou/RecAll" + }, + { + "id": 464, + "num": 139, + "name": "SyncBtn", + "txt": "领取时长奖励" + }, + { + "id": 465, + "num": 139, + "name": "event/shouchong/Open", + "txt": "领取时长奖励" + } + ], + "140": [ + { + "id": 467, + "num": 140, + "txt": "退出福利", + "name": "eventlist/hdGetList" + }, + { + "id": 468, + "num": 140, + "name": "SyncBtn", + "txt": "退出福利" + }, + { + "id": 469, + "num": 140, + "name": "user/Ping", + "txt": "退出福利" + } + ], + "141": [ + { + "id": 471, + "num": 141, + "txt": "酒馆", + "name": "jiuba/Open" + } + ], + "142": [ + { + "id": 473, + "num": 142, + "txt": "十连抽", + "name": "jiuba/Lottery" + }, + { + "id": 474, + "num": 142, + "name": "user/Ping", + "txt": "十连抽" + } + ], + "143": [ + { + "id": 477, + "num": 143, + "txt": "激活图鉴", + "name": "user/Tujian" + } + ], + "144": [ + { + "id": 479, + "num": 144, + "txt": "激活图鉴", + "name": "user/Tujian" + } + ], + "145": [ + { + "id": 481, + "num": 145, + "txt": "激活图鉴", + "name": "user/Tujian" + } + ], + "146": [ + { + "id": 483, + "num": 146, + "txt": "点击干部传记", + "name": "hero/Rec" + } + ], + "147": [ + { + "id": 485, + "num": 147, + "txt": "干部碎片合成", + "name": "item/Use" + } + ], + "148": [ + { + "id": 487, + "num": 148, + "txt": "干部碎片合成", + "name": "item/Use" + } + ], + "149": [ + { + "id": 489, + "num": 149, + "txt": "上阵", + "name": "hero/ChangePos" + } + ], + "150": [ + { + "id": 491, + "num": 150, + "txt": "上阵", + "name": "hero/ChangePos" + } + ], + "151": [ + { + "id": 493, + "num": 151, + "txt": "升级", + "name": "hero/LvUp" + }, + { + "id": 494, + "num": 151, + "name": "user/Ping", + "txt": "升级" + } + ], + "152": [ + { + "id": 497, + "num": 152, + "txt": "一件装备", + "name": "equip/OneKeyWear" + } + ], + "153": [ + { + "id": 499, + "num": 153, + "txt": "快速强化", + "name": "equip/OneKeyLvUp" + } + ], + "154": [ + { + "id": 502, + "num": 154, + "txt": "探险", + "name": "tanxian/Open" + }, + { + "id": 503, + "num": 154, + "name": "gonglukuangbiao/Open", + "txt": "探险" + }, + { + "id": 504, + "num": 154, + "name": "task/Open", + "txt": "探险" + } + ], + "155": [ + { + "id": 506, + "num": 155, + "txt": "战斗", + "name": "tanxian/Fight" + }, + { + "id": 508, + "num": 155, + "name": "event/shouchong/Open", + "txt": "战斗" + } + ], + "156": [ + { + "id": 510, + "num": 156, + "txt": "确定", + "name": "task/Open" + } + ], + "157": [ + { + "id": 512, + "num": 157, + "txt": "探险界面领取主线任务", + "name": "task/Finsh" + }, + { + "id": 514, + "num": 157, + "name": "task/Open", + "txt": "探险界面领取主线任务" + } + ], + "158": [ + { + "id": 516, + "num": 158, + "txt": "探险界面领取主线任务", + "name": "task/Finsh" + }, + { + "id": 518, + "num": 158, + "name": "user/Ping", + "txt": "探险界面领取主线任务" + }, + { + "id": 520, + "num": 158, + "name": "task/Open", + "txt": "探险界面领取主线任务" + } + ], + "159": [ + { + "id": 522, + "num": 159, + "txt": "战斗", + "name": "tanxian/Fight" + }, + { + "id": 524, + "num": 159, + "name": "event/shouchong/Open", + "txt": "战斗" + }, + { + "id": 525, + "num": 159, + "name": "event/shouchong/Open", + "txt": "战斗" + } + ], + "160": [ + { + "id": 528, + "num": 160, + "txt": "升级", + "name": "task/Open" + }, + { + "id": 529, + "num": 160, + "name": "event/shouchong/Open", + "txt": "升级" + } + ], + "161": [ + { + "id": 531, + "num": 161, + "txt": "升级确定", + "name": "SyncBtn" + }, + { + "id": 532, + "num": 161, + "name": "event/shouchong/Open", + "txt": "升级确定" + } + ] +} \ No newline at end of file diff --git a/src/stressTest/allPath.json b/src/stressTest/allPath.json new file mode 100644 index 0000000..530e4c0 --- /dev/null +++ b/src/stressTest/allPath.json @@ -0,0 +1,57 @@ +[ + "user/Login", + "equip/GetList", + "tanxian/Open", + "item/GetList", + "shiwu/GetList", + "peijian/GetList", + "hero/GetList", + "email/Open", + "friend/Open", + "SyncBtn", + "gongyu/mingdao/Open", + "pay/GetList", + "eventlist/hdGetList", + "user/Ping", + "event/shouchong/Open", + "chat/GetList", + "hongdian/Get", + "user/ChangeName", + "jiuba/Open", + "jiuba/Lottery", + "hero/ChangePos", + "gonglukuangbiao/Open", + "task/Open", + "tanxian/Fight", + "task/Finsh", + "equip/OneKeyWear", + "item/Use", + "tanxian/Event", + "tanxian/GuaJi", + "hero/LvUp", + "hero/JinJie", + "jiaotang/Open", + "jiaotang/Lottery", + "user/InfoOpen", + "user/ChangeInfo", + "chongzhi/Open", + "chongzhi/BuyGift", + "gongyu/xunlianjihua/UpSkill", + "gongyu/zuozhanjihua/SetSkill", + "kuangdong/Open", + "jjc/Open", + "jjc/Fight", + "equip/OneKeyLvUp", + "jjc/Receive", + "rank/Open", + "jjc/FightLog", + "shop/Open", + "sign/Open", + "sign/GetPrize", + "sign/GetBoxPrize", + "event/yibaichou/Open", + "event/yibaichou/RecAll", + "user/Tujian", + "hero/Rec", + "shiwu/Concise" +] \ No newline at end of file diff --git a/src/stressTest/statistics.ts b/src/stressTest/statistics.ts new file mode 100644 index 0000000..20a1273 --- /dev/null +++ b/src/stressTest/statistics.ts @@ -0,0 +1,137 @@ +import {MongoClient} from "mongodb"; +import {readFileSync,rename} from "fs"; +import {resolve} from "path"; +let XLSX = require("xlsx"); + + +// 日志版本 +let version = '11.07.6' + +// 本地地址 +let serverSid = 3 +let mongodbName = 'heijiao' +let mongodbUrl = `mongodb://root:lyMaple525458@10.0.1.20:27017/heijiao?authSource=admin` +// 日测服地址 +// let serverSid = 1 +// let mongodbName = `blacklagoon_s${serverSid}` +// let mongodbUrl = `mongodb://blacklagoon:tw2lSJj%23w%25sN3%241q@blacklagoon-mongo-primary.stg.g123-cpp.com:3717,blacklagoon-mongo-secondary.stg.g123-cpp.com:3717/blacklagoon_s${serverSid}?replicaSet=mgset-351473381` + +let dbClient +let outputLog = [] +let outputLog1 = [] + + +async function main() { + await initDB() + /** + * 获取所有请求API + */ + let allApiConfig = await readApiJson() + let allApiNameConfig = await readApiNameJson() + + // 查询当前压测一轮用户数量 + // let userNum = await dbClient.collection('stressTestLog').countDocuments({version: version, num: 1}) + // console.log(1111,a) + + /** + * 记录每个步骤消耗的时间,计算最小值,最大值,平均值 + */ + await start(allApiConfig,allApiNameConfig) + + await toExcel() + + + console.log(outputLog) + console.log(`---------------统计完成----------------`) + +} + +async function toExcel(){ + const jsonWorkSheet = await XLSX.utils.json_to_sheet(outputLog); + const jsonWorkSheet1 = await XLSX.utils.json_to_sheet(outputLog1); + const workBook = { + SheetNames: ['outputLog','outputLog1'], + Sheets: { + ['outputLog']: jsonWorkSheet, + ['outputLog1']: jsonWorkSheet1, + } + }; + await XLSX.writeFileXLSX(workBook, `outputLog.${version}.xlsx`); + rename(`./outputLog.${version}.xlsx`, `/g123/outputLog.${version}.xlsx`, err => { }) +} + +async function start(allApi,allName) { + // for (let itemIdx in allApi) { + // + // let items = allApi[itemIdx] + // let logs = await dbClient.collection('stressTestLog').find({version: version, num: items[0].num}).toArray() + // if (!logs.length) continue + // + // let times = logs.map(i => i.time) + // let jtime = 0 + // for(let i = 0;i a.time - b.time) + // + // + // // console.log(logs) + // outputLog.push({ + // txt: logs[0].txt, + // num: logs[0].num, + // minTime: logs[0].time, + // maxTime: logs[logs.length - 1].time, + // meanTime: meanTime + // }) + // console.log(`----------正在统计${logs[0].txt}-----------`) + // } + + for (let itemIdx in allName) { + + let item = allName[itemIdx] + let logs = await dbClient.collection('apiTestLog').find({version: version, name: item}).toArray() + if (!logs.length) continue + + // console.log(1111111111111) + + let times = logs.map(i => i.ms) + let jtime = 0 + for(let i = 0;i a.ms - b.ms) + + // console.log(logs) + outputLog1.push({ + path: logs[0].name, + num: logs[0].num, + minTime: logs[0].ms, + maxTime: logs[logs.length - 1].ms, + meanTime: meanTime, + count: logs.length + }) + console.log(`----------正在统计${logs[0].txt}-----------`) + } + +} + +async function readApiJson() { + return await JSON.parse(readFileSync(resolve(__dirname, './allApi.json'), 'utf-8')) +} + +async function readApiNameJson() { + return await JSON.parse(readFileSync(resolve(__dirname, './allPath.json'), 'utf-8')) +} + +async function initDB() { + console.log('connect mongodb ......'); + let client = await MongoClient.connect(mongodbUrl); + dbClient = client.db(mongodbName || ''); + console.log('connect mongodb succ'); +} + +main() \ No newline at end of file diff --git a/src/stressTest/stressTest.ts b/src/stressTest/stressTest.ts new file mode 100644 index 0000000..701c48a --- /dev/null +++ b/src/stressTest/stressTest.ts @@ -0,0 +1,346 @@ +import {serviceProto} from '../shared/protocols/serviceProto'; +import {WsClient} from 'tsrpc'; +import {encryptUint8Array} from "../encrypt"; +import {readFileSync, writeFileSync} from "fs"; +import {resolve} from "path"; +import {randomUUID} from "crypto"; + +// 压测用户数量 +let userNum = 500 + +//用户登录等待时间, +let lminTime = 50 +let lmaxTime = 300 +// 用户操作等待时间,随机数 +let minTime = 500 +let maxTime = 1500 + +// 本地地址 +let serverSid = 2 +let serverName = `内网服务器` +let requestUrl = 'ws://10.0.1.20:10001' +requestUrl = 'ws://10.0.1.20:10001' +// 日测服地址 +// let serverSid = 1 +// let serverName = `S${serverSid}` +// let requestUrl = `wss://blacklagoon-slb.stg.g123-cpp.com/server-game${serverSid}` +// let mongodbName = `blacklagoon_s${serverSid}` +// let mongodbUrl = `mongodb://blacklagoon:tw2lSJj%23w%25sN3%241q@blacklagoon-mongo-primary.stg.g123-cpp.com:3717,blacklagoon-mongo-secondary.stg.g123-cpp.com:3717/blacklagoon_s${serverSid}?replicaSet=mgset-351473381` + +async function main(userNum = 10) { + for (let j = 0; j < userNum; j++) { + start(j) + } +} + +//数据在客户端自动采集 +let steps = [ + { + "api": "user/Login", + "parms": { + "bindUid": "{{randBindUid}}", + "sid": 2, + "serverName": "ciniao" + } + }, { + "api": "equip/GetList", + "parms": {} + }, { + "api": "tanxian/Open", + "parms": { + "cache": false + } + }, { + "api": "item/GetList", + "parms": {} + }, { + "api": "shiwu/GetList", + "parms": {} + }, { + "api": "peijian/GetList", + "parms": {} + }, { + "api": "hero/GetList", + "parms": {} + }, { + "api": "email/Open", + "parms": {} + }, { + "api": "friend/Open", + "parms": {} + }, { + "api": "SyncBtn", + "parms": [] + }, { + "api": "gongyu/mingdao/Open", + "parms": {} + }, { + "api": "pay/GetList", + "parms": {} + }, { + "api": "eventlist/hdGetList", + "parms": {} + }, { + "api": "user/Ping", + "parms": {} + }, { + "api": "Test", + "parms": {} + }, { + "api": "event/shouchong/Open", + "parms": {} + }, { + "api": "chat/GetList", + "parms": {} + }, { + "api": "hongdian/Get", + "parms": ["jiuba", "jiaotang", "shouchong", "dixiaqianzhuanghd", "taskhd", "xstaskhd", "gonghuihd", "jjchd", "hbzbhd", "clslhd", "lingzhulaixihd", "dxlthd", "wzcjhd", "slzdhd", "qjzzdhd", "kuangdonghd", "qiandaohd", "kaifukuanghuanhd", "jijinhd", "zhuishalinghd", "yibaichouhd", "huobanzhaomuhd", "qirileichonghd", "jierihd", "kbzzhd", "wzryhd", "yuedujijin", "patahd", "mingdao", "heishihd", "jitianhaoli", "huodonghd", "renown", "heishiMrjx"] + }, { + "api": "user/Ping", + "parms": {} + }, { + "api": "hongdian/Get", + "parms": ["yibaichouhd"] + }, { + "api": "user/ChangeName", + "parms": { + "name": "{{randName}}" + } + }, { + "api": "jiuba/Open", + "parms": {} + }, { + "api": "jiuba/Lottery", + "parms": { + "type": 30 + } + }, { + "api": "hongdian/Get", + "parms": ["jiuba", "taskhd", "huodonghd"] + }, { + "api": "hongdian/Get", + "parms": ["zhuishalinghd"] + }, { + "api": "hero/ChangePos", + "parms": { + "state": "set", + "id": "65534e066fe10dfa109e1249", + "pos": "2" + } + }, { + "api": "user/Ping", + "parms": {} + }, { + "api": "kuangdong/Open", + "parms": {} + }, { + "api": "tanxian/Open", + "parms": { + "cache": true + } + }, { + "api": "gonglukuangbiao/Open", + "parms": {} + }, { + "api": "task/Open", + "parms": { + "type": [2] + } + }, { + "api": "tanxian/Fight", + "parms": {} + }, { + "api": "hongdian/Get", + "parms": ["taskhd", "huodonghd", "jijinhd", "huobanzhaomuhd"] + }, { + "api": "event/shouchong/Open", + "parms": {} + }, { + "api": "event/shouchong/Open", + "parms": {} + }, { + "api": "hongdian/Get", + "parms": ["jijinhd"] + }, { + "api": "task/Open", + "parms": { + "type": [2] + } + }, { + "api": "event/shouchong/Open", + "parms": {} + }, { + "api": "SyncBtn", + "parms": ["shouchong"] + }, { + "api": "event/shouchong/Open", + "parms": {} + }, { + "api": "task/Open", + "parms": { + "type": [1, 2, 3, 4, 5] + } + }, { + "api": "hongdian/Get", + "parms": ["yibaichouhd"] + }, { + "api": "task/Finsh", + "parms": { + "taskid": 2000 + } + }, { + "api": "hongdian/Get", + "parms": ["taskhd", "huodonghd"] + }, { + "api": "equip/OneKeyWear", + "parms": { + "heroId": "65534de06fe10dfa109e1218" + } + }, { + "api": "kuangdong/Open", + "parms": {} + }, { + "api": "tanxian/Open", + "parms": { + "cache": true + } + }, { + "api": "gonglukuangbiao/Open", + "parms": {} + }, { + "api": "task/Open", + "parms": { + "type": [2] + } + }, { + "api": "tanxian/Fight", + "parms": {} + }, { + "api": "hongdian/Get", + "parms": ["taskhd", "huodonghd", "jijinhd", "huobanzhaomuhd"] + }, { + "api": "event/shouchong/Open", + "parms": {} + }, { + "api": "event/shouchong/Open", + "parms": {} + }, { + "api": "hongdian/Get", + "parms": ["jijinhd"] + }, { + "api": "user/Ping", + "parms": {} + }, { + "api": "task/Open", + "parms": { + "type": [2] + } + }, { + "api": "event/shouchong/Open", + "parms": {} + }, { + "api": "SyncBtn", + "parms": ["shouchong"] + }, { + "api": "event/shouchong/Open", + "parms": {} + }, { + "api": "kuangdong/Open", + "parms": {} + }, { + "api": "item/Use", + "parms": { + "itemId": "3007", + "useNum": 1 + } + }, { + "api": "hongdian/Get", + "parms": ["yibaichouhd"] + }, { + "api": "user/Ping", + "parms": {} + }, { + "api": "hongdian/Get", + "parms": ["yibaichouhd"] + } +] + +function fmtParms(param:any, data:any){ + let str = JSON.stringify(param); + str = str.replace("{{randBindUid}}",`yaliceshi${random(1000000000,99999999999)}`) + str = str.replace("{{randName}}",`压力测试${random(1000000000,99999999999)}`) + return JSON.parse(str); +} + + +async function start(userId) { + /** + 请求步骤 + */ + let client: any = await connect() + if (!client) return + + let res = {}; + + for(let i=0;i300&&steps[i].api!='user/Login') console.log('请求接口结束',userId,steps[i].api, response.isSucc ,'耗时', + (Date.now()-startTime) + 'ms') + + if(response.isSucc){ + res[i] = response.res; + if(steps[i]['key']){ + res[steps[i]['key']] = response.res; + } + } + + await sleep(30) + } +} + + +async function connect() { + let url = requestUrl + + let client = new WsClient(serviceProto, { + server: url, + timeout:0, + }); + + let result = await client.connect(); + if (!result.isSucc) return console.log('connect server fail: ', result.errMsg); + else console.log(`connect server succ at ${url}`); + + client.flows.preSendDataFlow.push(v => { + if (v.data instanceof Uint8Array) { + v.data = encryptUint8Array(v.data); + } + return v; + }); + + client.flows.postDisconnectFlow.push(v => { + if (!v.isManual) { + console.log('网络错误,连接已断开') + } + return v; + }) + return client +} + +function sleep(ms) { + return new Promise(resolve => setTimeout(resolve, ms)) +} + +function random(min = 500, max = 1500) { + return Math.round(Math.random() * (max - min) + min) +} + +~async function loop(){ + await main(userNum) +}(); \ No newline at end of file diff --git a/src/test.ts b/src/test.ts new file mode 100644 index 0000000..1bce8f8 --- /dev/null +++ b/src/test.ts @@ -0,0 +1,74 @@ + +import * as mathjs from 'mathjs'; +import { createClient } from 'redis'; + +// /**eval预编译并缓存 */ +// let exprStr2Compile = {}; +// function eval2(expr:any, scope?:object){ +// if(! exprStr2Compile[expr] ){ +// exprStr2Compile[expr] = mathjs.compile(expr); +// } +// return exprStr2Compile[expr].evaluate(scope); +// } + + + +// let s = new Date().getTime(); +// let res = 0; +// for(let i=0;i<100000;i++){ +// res += eval2("lv+23*23",{lv:i}) +// } +// console.log(res,'预编译模式耗时=',new Date().getTime()-s); + + +// let s2 = new Date().getTime(); +// let res2 = 0; +// for(let i=0;i<100000;i++){ +// res2 += mathjs.evaluate("lv+23*23",{lv:i}); +// } +// console.log(res2,'直接evaluate耗时=',new Date().getTime()-s2); + +async function initRedis(){ + // let client = createClient({ url: 'redis://:lyMaple525458@10.0.1.20:6379/0' }); + // await client.connect(); + + + // client.subscribe('xxxxx',function(channel,msg){ + // console.log('userLogin',channel,msg); + // }) + + // console.log(client); + + + + let client2 = createClient({ url: 'redis://:lyMaple525458@10.0.1.20:6379/0' }); + await client2.connect(); + + client2.hDel("uid2processId","aaa") + + // let aa = await client2.set("aaa","中文") + // client2.expire("aaa",10) + // console.log(aa); + + // let bb = await client2.get("aaa") + // console.log(bb); + + // //client2.del("aaa") + + // client2.incrBy("bbb",1); + + // client2.append("bbbb","12323"); + + // client2.hSet("ccc","a","1") + + // client2.hSet("uid2processId","asdasd",123) + // let xxx = await client2.hGetAll("uid2processId"); + // console.log(xxx.asdasd); + + // client2.publish("xxxxx",JSON.stringify({"中文":123})) + + // console.log(G.redis.fromatKey('aaaa')); + +} + +initRedis(); \ No newline at end of file diff --git a/test/template/Api.login.test.ts b/test/template/Api.login.test.ts new file mode 100644 index 0000000..df1e5af --- /dev/null +++ b/test/template/Api.login.test.ts @@ -0,0 +1,36 @@ +import assert from 'assert'; +import { WsClient } from 'tsrpc'; +import { encryptUint8Array } from '../../src/encrypt'; +import { serviceProto } from '../../src/shared/protocols/serviceProto'; + +const bindUid = 'zeq1'; + + +describe('ApiSend', function () { + const client = new WsClient(serviceProto, { + server: 'ws://localhost:8100', + logger: undefined, + }); + + // 发送前加密 + client.flows.preSendDataFlow.push(v => { + if (v.data instanceof Uint8Array) { + v.data = encryptUint8Array(v.data); + } + return v; + }); + + before(async function () { + const res = await client.connect(); + assert.strictEqual(res.isSucc, true, 'Failed to connect to server, have you executed `npm run dev` already?'); + }); + + it('Success', async function () { + await client.callApi('user/Login', { bindUid: bindUid, serverName: 'localhost', sid: 3 }); + await client.callApi('SyncBtn', []); + }); + + after(async function () { + + }); +}); \ No newline at end of file diff --git a/test/tsconfig.json b/test/tsconfig.json new file mode 100644 index 0000000..a0ffeed --- /dev/null +++ b/test/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "lib": [ + "es2018" + ], + "module": "commonjs", + "target": "es2018", + "outDir": "dist", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "moduleResolution": "node" + }, + "include": [ + ".", + "../src" + ] +} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..717f491 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "lib": [ + "es2018", + "es2022" + ], + "module": "commonjs", + "target": "es2018", + "outDir": "dist", + // "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "moduleResolution": "node" + }, + "include": [ + "src", + "extend.d.ts" + ] +} \ No newline at end of file diff --git a/tsrpc.config.ts b/tsrpc.config.ts new file mode 100644 index 0000000..1e9a41b --- /dev/null +++ b/tsrpc.config.ts @@ -0,0 +1,50 @@ +import type { TsrpcConfig } from 'tsrpc-cli'; + +export default { + // Generate ServiceProto + proto: [ + { + ptlDir: 'src/shared/protocols', // Protocol dir + output: 'src/shared/protocols/serviceProto.ts', // Path for generated ServiceProto + apiDir: 'src/api_s2c', // API dir + docDir: 'doc/s2c', // API documents dir + compatible: false, + }, + { + ptlDir: 'src/monopoly/protocols', // Protocol dir + output: 'src/monopoly/protocols/serviceProto.ts', // Path for generated ServiceProto + apiDir: 'src/api_o2s', // API dir + docDir: 'doc/s2o', + compatible: false, + }, + { + ptlDir: 'src/cross/protocols', + output: 'src/cross/protocols/serviceProto.ts', + apiDir: 'src/api_cross', // API dir + compatible: false, + } + ], + // Sync shared code + sync: [ + // { + // from: 'src/shared', + // to: '../frontend/src/shared', + // type: 'symlink' // Change this to 'copy' if your environment not support symlink + // } + ], + // Dev server + dev: { + autoProto: true, // Auto regenerate proto + autoSync: true, // Auto sync when file changed + autoApi: true, // Auto create API when ServiceProto updated + watch: 'src', // Restart dev server when these files changed + entry: 'src/index.ts', // Dev server command: node -r ts-node/register {entry} + }, + // Build config + build: { + autoProto: true, // Auto generate proto before build + autoSync: true, // Auto sync before build + autoApi: true, // Auto generate API before build + outDir: 'dist', // Clean this dir before build + } +}; \ No newline at end of file diff --git a/zoeninfo.sh b/zoeninfo.sh new file mode 100644 index 0000000..3decece --- /dev/null +++ b/zoeninfo.sh @@ -0,0 +1,9 @@ + +# "Asia/Shanghai" +# "Asia/Tokyo" + +cp "/usr/share/zoneinfo/$1" "/etc/localtime" + +echo "$1" > /etc/timezone + +pm2 restart all || true \ No newline at end of file