diff --git a/src/api_s2c/ApiSyncBtn.ts b/src/api_s2c/ApiSyncBtn.ts index 959eb6e..8a997f9 100644 --- a/src/api_s2c/ApiSyncBtn.ts +++ b/src/api_s2c/ApiSyncBtn.ts @@ -1,6 +1,4 @@ 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'; import {HuoDongFun} from "../public/huodongfun"; @@ -8,7 +6,6 @@ import {HuoDongFun} from "../public/huodongfun"; const defaultKeys: syncBtnKeys[] = [ 'huobanzhaomu', 'yibaichou', 'shouchong', 'dayjijin', 'dengjijijin', 'guanqiajijin', 'tianshujijin', - 'zhanling', 'xianshilibao', 'xianshizhaomu', 'G123Gift', @@ -65,39 +62,40 @@ export default async function (call: ApiCall) { 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]; + // 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 || 0)) { + // let lastRunTime = zls && zls.lastRunTime? zls.lastRunTime : G.time + // let round = zls && zls.lastRunTime? zls.round : 1 - PayFun.delPayLog(call.uid, {payId: G.gc.zhanling.payId, val: []}); + // data[key] = {active: true, sTime: lastRunTime, round: round}; + // change[key] = data[key]; - G.mongodb.cEvent('zhanling').findOne({uid: call.uid, type: 'zhanling'}).then(data => { - //新一轮战令 不管玩家多久没上线 只补发玩家上一轮没有领取的奖励 - data && EventFun.reissueZhanLingPrize(data, call.conn.gud); + // PayFun.delPayLog(call.uid, {payId: G.gc.zhanling.payId, val: []}); - G.mongodb.cEvent('zhanling').updateOne( - {uid: call.uid, type: 'zhanling'}, - { - $set: { - lv: 1, - exp: 0, - rec: {}, - isPay: false, - taskRec: [], - refreshTime: G.time - } - }, - {upsert: true} - ); - }); - } - } + // 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': // 到时间消失 diff --git a/src/api_s2c/event/yangchengmubiao/ApiOpen.ts b/src/api_s2c/event/yangchengmubiao/ApiOpen.ts index 89f91a9..d9b4366 100644 --- a/src/api_s2c/event/yangchengmubiao/ApiOpen.ts +++ b/src/api_s2c/event/yangchengmubiao/ApiOpen.ts @@ -2,6 +2,8 @@ import { ApiCall } from "tsrpc"; import { HuoDongFun } from "../../../public/huodongfun"; import { ReqOpen, ResOpen } from "../../../shared/protocols/event/yangchengmubiao/PtlOpen"; import { YangChengMuBiaofun } from "./fun"; +import { PayFun } from "../../../public/pay"; +import { payLog } from "../../../shared/protocols/pay/PtlGetList"; export default async function (call: ApiCall) { let _hdinfo = await HuoDongFun.getHdidInfo(call, call.req.hdid) @@ -9,6 +11,23 @@ export default async function (call: ApiCall) { // 无此活动 return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) } + + let delPay: { payId: string, val: payLog[] }[] = []; + let payIds = _hdinfo.data.gift.map(v => v.payId); + let payLogs = await PayFun.getPayLogs(call.uid, payIds); + + for (let payid in payLogs) { + if (payLogs[payid].length > 0) { + if (payLogs[payid].slice(-1)[0].time < _hdinfo.stime) { + delPay.push({ payId: payid, val: [] }); + } + } + } + + if (delPay.length > 0) { + await PayFun.delPayLog(call.uid, ...delPay); + } + 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/zhanling/ApiOpen.ts b/src/api_s2c/event/zhanling/ApiOpen.ts index 95b2ce7..e6dc37b 100644 --- a/src/api_s2c/event/zhanling/ApiOpen.ts +++ b/src/api_s2c/event/zhanling/ApiOpen.ts @@ -1,14 +1,15 @@ -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'; +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'; +import { PayFun } from "../../../public/pay"; export default async function (call: ApiCall) { - let zls = await G.mongodb.collection('scheduler').findOne({type: 'zhanling'}); - let data = await G.mongodb.cEvent('zhanling').findOne({uid: call.uid, type: 'zhanling'}); + let zls = await G.mongodb.collection('scheduler').findOne({ type: 'zhanling' }); + let data = await G.mongodb.cEvent('zhanling').findOne({ uid: call.uid, type: 'zhanling' }); - if (!data || data.round != (zls?.round | 0)) { + if (!data || data.round != (zls?.round || 0)) { let set = { lv: 1, exp: 0, @@ -16,18 +17,22 @@ export default async function (call: ApiCall) { isPay: false, taskRec: [], round: zls?.round || 0, - reWeekTime:G.time, + reWeekTime: G.time, refreshTime: G.time, } + await PayFun.delPayLog( + call.uid, { payId: G.gc.zhanling.payId, val: [] } + ); + data = (await G.mongodb.cEvent('zhanling').findOneAndUpdate({ uid: call.uid, type: 'zhanling' - }, {$set: set}, {upsert: true, returnDocument: 'after'})).value; + }, { $set: set }, { upsert: true, returnDocument: 'after' })).value; } if (PublicShared.getToWeekMondayZeroTime() > data.reWeekTime || PublicShared.getToDayZeroTime() > data.refreshTime) { - let set: any = {taskRec: []}; + let set: any = { taskRec: [] }; let reType = []; if (PublicShared.getToWeekMondayZeroTime() > data.reWeekTime) { @@ -49,11 +54,11 @@ export default async function (call: ApiCall) { data = (await G.mongodb.cEvent('zhanling').findOneAndUpdate({ uid: call.uid, type: 'zhanling' - }, {$set: set}, {upsert: true, returnDocument: 'after'})).value; + }, { $set: set }, { upsert: true, returnDocument: 'after' })).value; } let tasks = G.gc.zhanling.task.map(t => { - return {type: t.type as 'day' | 'week' | 'round', key: t.taskId}; + return { type: t.type as 'day' | 'week' | 'round', key: t.taskId }; }); let taskFinished = await ZhanLingTasks.getLog(call.uid, tasks); @@ -68,14 +73,14 @@ export default async function (call: ApiCall) { } export async function payZhanLing(player: player) { - let zlData = await G.mongodb.cEvent('zhanling').findOne({uid: player.uid, type: 'zhanling'}); + 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} + { 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/fix_patch/patch_20240106.ts b/src/fix_patch/patch_20240106.ts new file mode 100644 index 0000000..beb25e3 --- /dev/null +++ b/src/fix_patch/patch_20240106.ts @@ -0,0 +1,98 @@ +import { log } from "console"; +import { patchFun, patchInit } from "../patch"; +import { TanXianFun } from "../public/tanxian"; +import { PublicShared } from "../shared/public/public"; + +class Path { + + async fun1(a: any) { + let hd = [{ + "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: 80, type: 'lv', prize: [{ a: 'item', t: '1', n: 500000 }], des: 'intr_cszl_des_2' }, + { idx: 1, total: 4, type: 'jieji', prize: [{ a: 'item', t: '12', n: 500 }], des: 'intr_cszl_des_1' }, + { idx: 2, total: 120, type: 'lv', prize: [{ a: 'item', t: '1', n: 500000 }], des: 'intr_cszl_des_2' }, + { idx: 3, total: 5, type: 'jieji', prize: [{ a: 'item', t: '12', n: 1000 }], des: 'intr_cszl_des_1' }, + { idx: 4, total: 160, type: 'lv', prize: [{ a: 'item', t: '1', n: 800000 }], des: 'intr_cszl_des_2' }, + { idx: 5, total: 6, type: 'jieji', prize: [{ a: 'item', t: '12', n: 1500 }], des: 'intr_cszl_des_1' }, + { idx: 6, total: 200, type: 'lv', prize: [{ a: 'item', t: '1', n: 1200000 }], des: 'intr_cszl_des_2' }, + { idx: 7, total: 7, type: 'jieji', prize: [{ a: 'item', t: '12', n: 2000 }], des: 'intr_cszl_des_1' }, + { idx: 8, total: 240, type: 'lv', prize: [{ a: 'item', t: '1', n: 2000000 }], des: 'intr_cszl_des_2' }, + { idx: 9, total: 8, type: 'jieji', prize: [{ a: 'item', t: '5002', n: 20 }], des: 'intr_cszl_des_1' } + ], + //宝箱 + 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: 100, type: 'lv', prize: [{ a: 'item', t: '1', n: 500000 }], des: 'intr_cszl_des_2' }, + { idx: 1, total: 5, type: 'jieji', prize: [{ a: 'item', t: '12', n: 500 }], des: 'intr_cszl_des_1' }, + { idx: 2, total: 140, type: 'lv', prize: [{ a: 'item', t: '1', n: 500000 }], des: 'intr_cszl_des_2' }, + { idx: 3, total: 6, type: 'jieji', prize: [{ a: 'item', t: '12', n: 1000 }], des: 'intr_cszl_des_1' }, + { idx: 4, total: 180, type: 'lv', prize: [{ a: 'item', t: '1', n: 800000 }], des: 'intr_cszl_des_2' }, + { idx: 5, total: 7, type: 'jieji', prize: [{ a: 'item', t: '12', n: 1500 }], des: 'intr_cszl_des_1' }, + { idx: 6, total: 220, type: 'lv', prize: [{ a: 'item', t: '1', n: 1200000 }], des: 'intr_cszl_des_2' }, + { idx: 7, total: 8, type: 'jieji', prize: [{ a: 'item', t: '12', n: 2000 }], des: 'intr_cszl_des_1' }, + { idx: 8, total: 260, type: 'lv', prize: [{ a: 'item', t: '1', n: 2000000 }], des: 'intr_cszl_des_2' }, + { idx: 9, total: 9, type: 'jieji', prize: [{ a: 'item', t: '5004', n: 20 }], des: 'intr_cszl_des_1' } + ], + //宝箱 + box: { total: 10, prize: [{ a: 'item', t: '610', n: 1 }] } + } + }] + + for (let i = 0; i < hd.length; i++) { + G.mongodb.collection('hdinfo').updateOne( + { hdid: hd[i].hdid }, { $set: { ["data.task"]: hd[i].data.task } }, { upsert: true } + ) + } + + return "sucess!!!" + } + + + + async run() { + await this.fun1(1); + } +} + +async function main() { + await patchInit() + let patch = new Path(); + await patch.run(); + console.log("逻辑执行完成,等待退出"); + setTimeout(function () { + console.log('结束程序'); + process.exit(); + }, 3000); +} +main(); diff --git a/src/globalListener.ts b/src/globalListener.ts index 68bc8c8..57fee50 100644 --- a/src/globalListener.ts +++ b/src/globalListener.ts @@ -211,7 +211,8 @@ export function addListener() { // 签到增加天数 SignFun.updateLogin(gud.uid); - ActionLog.initDayLog(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); diff --git a/src/json/diaoluo.json b/src/json/diaoluo.json index 0fc1500..10b2473 100644 --- a/src/json/diaoluo.json +++ b/src/json/diaoluo.json @@ -32661,6 +32661,906 @@ "p": 1 } ], + "271081": [ + { + "id": 271081, + "a": "attr", + "t": "nexp", + "n": 249674, + "p": 1 + } + ], + "271082": [ + { + "id": 271082, + "a": "attr", + "t": "nexp", + "n": 249905, + "p": 1 + } + ], + "271083": [ + { + "id": 271083, + "a": "attr", + "t": "nexp", + "n": 250136, + "p": 1 + } + ], + "271084": [ + { + "id": 271084, + "a": "attr", + "t": "nexp", + "n": 250367, + "p": 1 + } + ], + "271085": [ + { + "id": 271085, + "a": "attr", + "t": "nexp", + "n": 250598, + "p": 1 + } + ], + "271086": [ + { + "id": 271086, + "a": "attr", + "t": "nexp", + "n": 250829, + "p": 1 + } + ], + "271087": [ + { + "id": 271087, + "a": "attr", + "t": "nexp", + "n": 251060, + "p": 1 + } + ], + "271088": [ + { + "id": 271088, + "a": "attr", + "t": "nexp", + "n": 251291, + "p": 1 + } + ], + "271089": [ + { + "id": 271089, + "a": "attr", + "t": "nexp", + "n": 251522, + "p": 1 + } + ], + "271090": [ + { + "id": 271090, + "a": "attr", + "t": "nexp", + "n": 251753, + "p": 1 + } + ], + "271091": [ + { + "id": 271091, + "a": "attr", + "t": "nexp", + "n": 251984, + "p": 1 + } + ], + "271092": [ + { + "id": 271092, + "a": "attr", + "t": "nexp", + "n": 252215, + "p": 1 + } + ], + "271093": [ + { + "id": 271093, + "a": "attr", + "t": "nexp", + "n": 252446, + "p": 1 + } + ], + "271094": [ + { + "id": 271094, + "a": "attr", + "t": "nexp", + "n": 252677, + "p": 1 + } + ], + "271095": [ + { + "id": 271095, + "a": "attr", + "t": "nexp", + "n": 252908, + "p": 1 + } + ], + "271096": [ + { + "id": 271096, + "a": "attr", + "t": "nexp", + "n": 253139, + "p": 1 + } + ], + "271097": [ + { + "id": 271097, + "a": "attr", + "t": "nexp", + "n": 253370, + "p": 1 + } + ], + "271098": [ + { + "id": 271098, + "a": "attr", + "t": "nexp", + "n": 253601, + "p": 1 + } + ], + "271099": [ + { + "id": 271099, + "a": "attr", + "t": "nexp", + "n": 253832, + "p": 1 + } + ], + "271100": [ + { + "id": 271100, + "a": "attr", + "t": "nexp", + "n": 254063, + "p": 1 + } + ], + "271101": [ + { + "id": 271101, + "a": "attr", + "t": "nexp", + "n": 254294, + "p": 1 + } + ], + "271102": [ + { + "id": 271102, + "a": "attr", + "t": "nexp", + "n": 254525, + "p": 1 + } + ], + "271103": [ + { + "id": 271103, + "a": "attr", + "t": "nexp", + "n": 254756, + "p": 1 + } + ], + "271104": [ + { + "id": 271104, + "a": "attr", + "t": "nexp", + "n": 254987, + "p": 1 + } + ], + "271105": [ + { + "id": 271105, + "a": "attr", + "t": "nexp", + "n": 255218, + "p": 1 + } + ], + "271106": [ + { + "id": 271106, + "a": "attr", + "t": "nexp", + "n": 255449, + "p": 1 + } + ], + "271107": [ + { + "id": 271107, + "a": "attr", + "t": "nexp", + "n": 255680, + "p": 1 + } + ], + "271108": [ + { + "id": 271108, + "a": "attr", + "t": "nexp", + "n": 255911, + "p": 1 + } + ], + "271109": [ + { + "id": 271109, + "a": "attr", + "t": "nexp", + "n": 256142, + "p": 1 + } + ], + "271110": [ + { + "id": 271110, + "a": "attr", + "t": "nexp", + "n": 256373, + "p": 1 + } + ], + "271111": [ + { + "id": 271111, + "a": "attr", + "t": "nexp", + "n": 256604, + "p": 1 + } + ], + "271112": [ + { + "id": 271112, + "a": "attr", + "t": "nexp", + "n": 256835, + "p": 1 + } + ], + "271113": [ + { + "id": 271113, + "a": "attr", + "t": "nexp", + "n": 257066, + "p": 1 + } + ], + "271114": [ + { + "id": 271114, + "a": "attr", + "t": "nexp", + "n": 257297, + "p": 1 + } + ], + "271115": [ + { + "id": 271115, + "a": "attr", + "t": "nexp", + "n": 257528, + "p": 1 + } + ], + "271116": [ + { + "id": 271116, + "a": "attr", + "t": "nexp", + "n": 257759, + "p": 1 + } + ], + "271117": [ + { + "id": 271117, + "a": "attr", + "t": "nexp", + "n": 257990, + "p": 1 + } + ], + "271118": [ + { + "id": 271118, + "a": "attr", + "t": "nexp", + "n": 258221, + "p": 1 + } + ], + "271119": [ + { + "id": 271119, + "a": "attr", + "t": "nexp", + "n": 258452, + "p": 1 + } + ], + "271120": [ + { + "id": 271120, + "a": "attr", + "t": "nexp", + "n": 258683, + "p": 1 + } + ], + "271121": [ + { + "id": 271121, + "a": "attr", + "t": "nexp", + "n": 258914, + "p": 1 + } + ], + "271122": [ + { + "id": 271122, + "a": "attr", + "t": "nexp", + "n": 259145, + "p": 1 + } + ], + "271123": [ + { + "id": 271123, + "a": "attr", + "t": "nexp", + "n": 259376, + "p": 1 + } + ], + "271124": [ + { + "id": 271124, + "a": "attr", + "t": "nexp", + "n": 259607, + "p": 1 + } + ], + "271125": [ + { + "id": 271125, + "a": "attr", + "t": "nexp", + "n": 259838, + "p": 1 + } + ], + "271126": [ + { + "id": 271126, + "a": "attr", + "t": "nexp", + "n": 260069, + "p": 1 + } + ], + "271127": [ + { + "id": 271127, + "a": "attr", + "t": "nexp", + "n": 260300, + "p": 1 + } + ], + "271128": [ + { + "id": 271128, + "a": "attr", + "t": "nexp", + "n": 260531, + "p": 1 + } + ], + "271129": [ + { + "id": 271129, + "a": "attr", + "t": "nexp", + "n": 260762, + "p": 1 + } + ], + "271130": [ + { + "id": 271130, + "a": "attr", + "t": "nexp", + "n": 260993, + "p": 1 + } + ], + "271131": [ + { + "id": 271131, + "a": "attr", + "t": "nexp", + "n": 261224, + "p": 1 + } + ], + "271132": [ + { + "id": 271132, + "a": "attr", + "t": "nexp", + "n": 261455, + "p": 1 + } + ], + "271133": [ + { + "id": 271133, + "a": "attr", + "t": "nexp", + "n": 261686, + "p": 1 + } + ], + "271134": [ + { + "id": 271134, + "a": "attr", + "t": "nexp", + "n": 261917, + "p": 1 + } + ], + "271135": [ + { + "id": 271135, + "a": "attr", + "t": "nexp", + "n": 262148, + "p": 1 + } + ], + "271136": [ + { + "id": 271136, + "a": "attr", + "t": "nexp", + "n": 262379, + "p": 1 + } + ], + "271137": [ + { + "id": 271137, + "a": "attr", + "t": "nexp", + "n": 262610, + "p": 1 + } + ], + "271138": [ + { + "id": 271138, + "a": "attr", + "t": "nexp", + "n": 262841, + "p": 1 + } + ], + "271139": [ + { + "id": 271139, + "a": "attr", + "t": "nexp", + "n": 263072, + "p": 1 + } + ], + "271140": [ + { + "id": 271140, + "a": "attr", + "t": "nexp", + "n": 263303, + "p": 1 + } + ], + "271141": [ + { + "id": 271141, + "a": "attr", + "t": "nexp", + "n": 263534, + "p": 1 + } + ], + "271142": [ + { + "id": 271142, + "a": "attr", + "t": "nexp", + "n": 263765, + "p": 1 + } + ], + "271143": [ + { + "id": 271143, + "a": "attr", + "t": "nexp", + "n": 263996, + "p": 1 + } + ], + "271144": [ + { + "id": 271144, + "a": "attr", + "t": "nexp", + "n": 264227, + "p": 1 + } + ], + "271145": [ + { + "id": 271145, + "a": "attr", + "t": "nexp", + "n": 264458, + "p": 1 + } + ], + "271146": [ + { + "id": 271146, + "a": "attr", + "t": "nexp", + "n": 264689, + "p": 1 + } + ], + "271147": [ + { + "id": 271147, + "a": "attr", + "t": "nexp", + "n": 264920, + "p": 1 + } + ], + "271148": [ + { + "id": 271148, + "a": "attr", + "t": "nexp", + "n": 265151, + "p": 1 + } + ], + "271149": [ + { + "id": 271149, + "a": "attr", + "t": "nexp", + "n": 265382, + "p": 1 + } + ], + "271150": [ + { + "id": 271150, + "a": "attr", + "t": "nexp", + "n": 265613, + "p": 1 + } + ], + "271151": [ + { + "id": 271151, + "a": "attr", + "t": "nexp", + "n": 265844, + "p": 1 + } + ], + "271152": [ + { + "id": 271152, + "a": "attr", + "t": "nexp", + "n": 266075, + "p": 1 + } + ], + "271153": [ + { + "id": 271153, + "a": "attr", + "t": "nexp", + "n": 266306, + "p": 1 + } + ], + "271154": [ + { + "id": 271154, + "a": "attr", + "t": "nexp", + "n": 266537, + "p": 1 + } + ], + "271155": [ + { + "id": 271155, + "a": "attr", + "t": "nexp", + "n": 266768, + "p": 1 + } + ], + "271156": [ + { + "id": 271156, + "a": "attr", + "t": "nexp", + "n": 266999, + "p": 1 + } + ], + "271157": [ + { + "id": 271157, + "a": "attr", + "t": "nexp", + "n": 267230, + "p": 1 + } + ], + "271158": [ + { + "id": 271158, + "a": "attr", + "t": "nexp", + "n": 267461, + "p": 1 + } + ], + "271159": [ + { + "id": 271159, + "a": "attr", + "t": "nexp", + "n": 267692, + "p": 1 + } + ], + "271160": [ + { + "id": 271160, + "a": "attr", + "t": "nexp", + "n": 267923, + "p": 1 + } + ], + "271161": [ + { + "id": 271161, + "a": "attr", + "t": "nexp", + "n": 268154, + "p": 1 + } + ], + "271162": [ + { + "id": 271162, + "a": "attr", + "t": "nexp", + "n": 268385, + "p": 1 + } + ], + "271163": [ + { + "id": 271163, + "a": "attr", + "t": "nexp", + "n": 268616, + "p": 1 + } + ], + "271164": [ + { + "id": 271164, + "a": "attr", + "t": "nexp", + "n": 268847, + "p": 1 + } + ], + "271165": [ + { + "id": 271165, + "a": "attr", + "t": "nexp", + "n": 269078, + "p": 1 + } + ], + "271166": [ + { + "id": 271166, + "a": "attr", + "t": "nexp", + "n": 269309, + "p": 1 + } + ], + "271167": [ + { + "id": 271167, + "a": "attr", + "t": "nexp", + "n": 269540, + "p": 1 + } + ], + "271168": [ + { + "id": 271168, + "a": "attr", + "t": "nexp", + "n": 269771, + "p": 1 + } + ], + "271169": [ + { + "id": 271169, + "a": "attr", + "t": "nexp", + "n": 270002, + "p": 1 + } + ], + "271170": [ + { + "id": 271170, + "a": "attr", + "t": "nexp", + "n": 270233, + "p": 1 + } + ], + "271171": [ + { + "id": 271171, + "a": "attr", + "t": "nexp", + "n": 270464, + "p": 1 + } + ], + "271172": [ + { + "id": 271172, + "a": "attr", + "t": "nexp", + "n": 270695, + "p": 1 + } + ], + "271173": [ + { + "id": 271173, + "a": "attr", + "t": "nexp", + "n": 270926, + "p": 1 + } + ], + "271174": [ + { + "id": 271174, + "a": "attr", + "t": "nexp", + "n": 271157, + "p": 1 + } + ], + "271175": [ + { + "id": 271175, + "a": "attr", + "t": "nexp", + "n": 271388, + "p": 1 + } + ], + "271176": [ + { + "id": 271176, + "a": "attr", + "t": "nexp", + "n": 271619, + "p": 1 + } + ], + "271177": [ + { + "id": 271177, + "a": "attr", + "t": "nexp", + "n": 271850, + "p": 1 + } + ], + "271178": [ + { + "id": 271178, + "a": "attr", + "t": "nexp", + "n": 272081, + "p": 1 + } + ], + "271179": [ + { + "id": 271179, + "a": "attr", + "t": "nexp", + "n": 272312, + "p": 1 + } + ], + "271180": [ + { + "id": 271180, + "a": "attr", + "t": "nexp", + "n": 272543, + "p": 1 + } + ], "280001": [ { "id": 280001, diff --git a/src/json/g123item.json b/src/json/g123item.json index 36224df..0c8ac3b 100644 --- a/src/json/g123item.json +++ b/src/json/g123item.json @@ -2666,6 +2666,27 @@ "rarity": 6 } }, + "item^638": { + "itemId": "item^638", + "name": "扭蛋机超级干部随机箱", + "i18nKey": "intr_item_name_638", + "detailI18nKey": "intr_item_describe_638", + "iconUrl": "https://ik.imagekit.io/g123/production-ctw-box/game-box/preview/6ffd84658d75d5247f7f01b2f00ae3e6beda7163237c025ff8f0a58c.png", + "value": 30000, + "typeId": "item", + "typeName": "道具", + "isStoreSupported": true, + "isAiSupported": true, + "attributes": { + "storeDisplayPrice": null, + "storeCategory": "", + "setQuantity": 1, + "purchaseLimit": 0, + "sellMinCp": 100, + "sellMaxCp": 500, + "rarity": 6 + } + }, "item^5001": { "itemId": "item^5001", "name": "莱薇碎片", diff --git a/src/json/heroSkin.json b/src/json/heroSkin.json index 05b09e6..b18f1b9 100644 --- a/src/json/heroSkin.json +++ b/src/json/heroSkin.json @@ -67,6 +67,57 @@ } ] }, + "50012": { + "id": 50012, + "heroId": 5001, + "name": "heroSkin_name_8", + "undefined": "樱花之舞", + "model": 40071, + "card": 40071, + "head": 40071, + "colour": 4, + "zhuanhuan": [ + { + "a": "item", + "t": "icon_pifucailiao_cheng", + "n": 10 + } + ] + }, + "50013": { + "id": 50013, + "heroId": 5001, + "name": "heroSkin_name_8", + "undefined": "樱花之舞", + "model": 40071, + "card": 40071, + "head": 40071, + "colour": 4, + "zhuanhuan": [ + { + "a": "item", + "t": "icon_pifucailiao_cheng", + "n": 10 + } + ] + }, + "50014": { + "id": 50014, + "heroId": 5001, + "name": "heroSkin_name_8", + "undefined": "樱花之舞", + "model": 40071, + "card": 40071, + "head": 40071, + "colour": 4, + "zhuanhuan": [ + { + "a": "item", + "t": "icon_pifucailiao_cheng", + "n": 10 + } + ] + }, "50021": { "id": 50021, "heroId": 5002, diff --git a/src/json/huodong.json5 b/src/json/huodong.json5 index bba34f7..a793f41 100644 --- a/src/json/huodong.json5 +++ b/src/json/huodong.json5 @@ -3244,16 +3244,16 @@ hid: '5002', //任务 task: [ - { idx: 0,total: 80, type: 'lv', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1'}, - { idx: 1,total: 4, type: 'jieji', prize: [{a: 'item', t: '12', n: 500}], des:'intr_cszl_des_2' }, - { idx: 2,total: 120, type: 'lv', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1' }, - { idx: 3,total: 5, type: 'jieji', prize: [{a: 'item', t: '12', n: 1000}], des:'intr_cszl_des_2' }, - { idx: 4,total: 160, type: 'lv', prize: [{a: 'item', t: '1', n: 800000}], des:'intr_cszl_des_1' }, - { idx: 5,total: 6, type: 'jieji', prize: [{a: 'item', t: '12', n: 1500}], des:'intr_cszl_des_2' }, - { idx: 6,total: 200, type: 'lv', prize: [{a: 'item', t: '1', n: 1200000}], des:'intr_cszl_des_1' }, - { idx: 7,total: 7, type: 'jieji', prize: [{a: 'item', t: '12', n: 2000}], des:'intr_cszl_des_2' }, - { idx: 8,total: 240, type: 'lv', prize: [{a: 'item', t: '1', n: 2000000}], des:'intr_cszl_des_1' }, - { idx: 9,total: 8, type: 'jieji', prize: [{a: 'item', t: '5002', n: 20}], des:'intr_cszl_des_2' } + { idx: 0,total: 80, type: 'lv', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_2'}, + { idx: 1,total: 4, type: 'jieji', prize: [{a: 'item', t: '12', n: 500}], des:'intr_cszl_des_1' }, + { idx: 2,total: 120, type: 'lv', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_2' }, + { idx: 3,total: 5, type: 'jieji', prize: [{a: 'item', t: '12', n: 1000}], des:'intr_cszl_des_1' }, + { idx: 4,total: 160, type: 'lv', prize: [{a: 'item', t: '1', n: 800000}], des:'intr_cszl_des_2' }, + { idx: 5,total: 6, type: 'jieji', prize: [{a: 'item', t: '12', n: 1500}], des:'intr_cszl_des_1' }, + { idx: 6,total: 200, type: 'lv', prize: [{a: 'item', t: '1', n: 1200000}], des:'intr_cszl_des_2' }, + { idx: 7,total: 7, type: 'jieji', prize: [{a: 'item', t: '12', n: 2000}], des:'intr_cszl_des_1' }, + { idx: 8,total: 240, type: 'lv', prize: [{a: 'item', t: '1', n: 2000000}], des:'intr_cszl_des_2' }, + { idx: 9,total: 8, type: 'jieji', prize: [{a: 'item', t: '5002', n: 20}], des:'intr_cszl_des_1' } ], //宝箱 box: { total: 10, prize: [{a: 'item', t: '610', n: 1}] } @@ -3275,16 +3275,16 @@ hid: '5004', //任务 task: [ - { idx: 0,total: 100, type: 'lv', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1'}, - { idx: 1,total: 5, type: 'jieji', prize: [{a: 'item', t: '12', n: 500}], des:'intr_cszl_des_2' }, - { idx: 2,total: 140, type: 'lv', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1' }, - { idx: 3,total: 6, type: 'jieji', prize: [{a: 'item', t: '12', n: 1000}], des:'intr_cszl_des_2' }, - { idx: 4,total: 180, type: 'lv', prize: [{a: 'item', t: '1', n: 800000}], des:'intr_cszl_des_1' }, - { idx: 5,total: 7, type: 'jieji', prize: [{a: 'item', t: '12', n: 1500}], des:'intr_cszl_des_2' }, - { idx: 6,total: 220, type: 'lv', prize: [{a: 'item', t: '1', n: 1200000}], des:'intr_cszl_des_1' }, - { idx: 7,total: 8, type: 'jieji', prize: [{a: 'item', t: '12', n: 2000}], des:'intr_cszl_des_2' }, - { idx: 8,total: 260, type: 'lv', prize: [{a: 'item', t: '1', n: 2000000}], des:'intr_cszl_des_1' }, - { idx: 9,total: 9, type: 'jieji', prize: [{a: 'item', t: '5004', n: 20}], des:'intr_cszl_des_2' } + { idx: 0,total: 100, type: 'lv', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_2'}, + { idx: 1,total: 5, type: 'jieji', prize: [{a: 'item', t: '12', n: 500}], des:'intr_cszl_des_1' }, + { idx: 2,total: 140, type: 'lv', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_2' }, + { idx: 3,total: 6, type: 'jieji', prize: [{a: 'item', t: '12', n: 1000}], des:'intr_cszl_des_1' }, + { idx: 4,total: 180, type: 'lv', prize: [{a: 'item', t: '1', n: 800000}], des:'intr_cszl_des_2' }, + { idx: 5,total: 7, type: 'jieji', prize: [{a: 'item', t: '12', n: 1500}], des:'intr_cszl_des_1' }, + { idx: 6,total: 220, type: 'lv', prize: [{a: 'item', t: '1', n: 1200000}], des:'intr_cszl_des_2' }, + { idx: 7,total: 8, type: 'jieji', prize: [{a: 'item', t: '12', n: 2000}], des:'intr_cszl_des_1' }, + { idx: 8,total: 260, type: 'lv', prize: [{a: 'item', t: '1', n: 2000000}], des:'intr_cszl_des_2' }, + { idx: 9,total: 9, type: 'jieji', prize: [{a: 'item', t: '5004', n: 20}], des:'intr_cszl_des_1' } ], //宝箱 box: { total: 10, prize: [{a: 'item', t: '610', n: 1}] } @@ -5356,7 +5356,8 @@ //展示干部皮肤ID "show": 1, //任务 - "task" : { + "task" : [ + { "day1" : { "1": { @@ -5620,11 +5621,12 @@ } ], "des" : "intr_cszl_des_9" + } }, - }, + { "day2" : { - "1": { + "1": { "pval" : 1, "stype" : "128", "cond": [], @@ -5650,8 +5652,9 @@ "t" : "1", "n" : 100000 } - ], + ], "des" : "intr_cszl_des_1" + } }, "2": { "pval" : 300, @@ -5884,11 +5887,12 @@ } ], "des" : "intr_cszl_des_9" + } }, - }, + { "day3" : { - "1": { + "1": { "pval" : 1, "stype" : "128", "cond": [], @@ -5914,8 +5918,9 @@ "t" : "1", "n" : 100000 } - ], + ], "des" : "intr_cszl_des_1" + } }, "2": { "pval" : 300, @@ -6148,11 +6153,12 @@ } ], "des" : "intr_cszl_des_9" + } }, - }, + { "day4" : { - "1": { + "1": { "pval" : 1, "stype" : "128", "cond": [], @@ -6178,8 +6184,9 @@ "t" : "1", "n" : 100000 } - ], + ], "des" : "intr_cszl_des_1" + } }, "2": { "pval" : 300, @@ -6412,11 +6419,12 @@ } ], "des" : "intr_cszl_des_9" + } }, - }, + { "day5" : { - "1": { + "1": { "pval" : 1, "stype" : "128", "cond": [], @@ -6442,8 +6450,9 @@ "t" : "1", "n" : 100000 } - ], + ], "des" : "intr_cszl_des_1" + } }, "2": { "pval" : 300, @@ -6676,537 +6685,9 @@ } ], "des" : "intr_cszl_des_9" - }, - }, - "day6" : - { - "1": { - "pval" : 1, - "stype" : "128", - "cond": [], - "tiaozhuan": 4, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "rmbmoney", - "n" : 200 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_1" - }, - "2": { - "pval" : 300, - "stype" : "116", - "cond": [], - "tiaozhuan": 5, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 200 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 3 - }, - { - "a" : "item", - "t" : "600", - "n" : 5 - }, - { - "a" : "item", - "t" : "1", - "n" : 500000 - } - ], - "des" : "intr_cszl_des_2" - }, - "3": { - "pval" : 1000, - "stype" : "116", - "cond": [], - "tiaozhuan": 2, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 300 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 5 - }, - { - "a" : "item", - "t" : "600", - "n" : 10 - }, - { - "a" : "item", - "t" : "1", - "n" : 1000000 - } - ], - "des" : "intr_cszl_des_3" - }, - "4": { - "pval" : 2000, - "stype" : "116", - "cond": [], - "tiaozhuan": 1, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 150 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "6", - "n" : 10 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_4" - }, - "5": { - "pval" : 3, - "stype" : "142", - "cond": [2], - "tiaozhuan": 6, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "2", - "n" : 500 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_5" - }, - "6": { - "pval" : 3, - "stype" : "122", - "cond": [], - "tiaozhuan": 7, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 200 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "12", - "n" : 400 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_6" - }, - "7": { - "pval" : 1, - "stype" : "155", - "cond": [], - "tiaozhuan": 8, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "rmbmoney", - "n" : 200 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_7" - }, - "8": { - "pval" : 1, - "stype" : "127", - "cond": [], - "tiaozhuan": 10, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "21", - "n" : 50 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_8" - }, - "9": { - "pval" : 1, - "stype" : "154", - "cond": [], - "tiaozhuan": 11, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "jinbi", - "n" : 100000 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_9" - }, - }, - "day7" : - { - "1": { - "pval" : 1, - "stype" : "128", - "cond": [], - "tiaozhuan": 4, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "rmbmoney", - "n" : 200 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_1" - }, - "2": { - "pval" : 300, - "stype" : "116", - "cond": [], - "tiaozhuan": 5, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 200 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 3 - }, - { - "a" : "item", - "t" : "600", - "n" : 5 - }, - { - "a" : "item", - "t" : "1", - "n" : 500000 - } - ], - "des" : "intr_cszl_des_2" - }, - "3": { - "pval" : 1000, - "stype" : "116", - "cond": [], - "tiaozhuan": 2, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 300 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 5 - }, - { - "a" : "item", - "t" : "600", - "n" : 10 - }, - { - "a" : "item", - "t" : "1", - "n" : 1000000 - } - ], - "des" : "intr_cszl_des_3" - }, - "4": { - "pval" : 2000, - "stype" : "116", - "cond": [], - "tiaozhuan": 1, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 150 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "6", - "n" : 10 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_4" - }, - "5": { - "pval" : 3, - "stype" : "142", - "cond": [2], - "tiaozhuan": 6, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "2", - "n" : 500 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_5" - }, - "6": { - "pval" : 3, - "stype" : "122", - "cond": [], - "tiaozhuan": 7, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 200 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "12", - "n" : 400 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_6" - }, - "7": { - "pval" : 1, - "stype" : "155", - "cond": [], - "tiaozhuan": 8, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "rmbmoney", - "n" : 200 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_7" - }, - "8": { - "pval" : 1, - "stype" : "127", - "cond": [], - "tiaozhuan": 10, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "21", - "n" : 50 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_8" - }, - "9": { - "pval" : 1, - "stype" : "154", - "cond": [], - "tiaozhuan": 11, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "jinbi", - "n" : 100000 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_9" - }, - } - }, + } + } + ], //抽卡 "chouka": [ //P是权重 @@ -7394,4 +6875,5 @@ //boss排行邮件内容 "bossRank_des": "email_content_hqjg_rank" } + } ] \ No newline at end of file diff --git a/src/json/npc.json b/src/json/npc.json index a25e96b..705ad90 100644 --- a/src/json/npc.json +++ b/src/json/npc.json @@ -21813,14 +21813,14 @@ "15700": { "npcId": 15700, "attr": {}, - "npclist": "5002_400_90072#4004_400_90070#4011_400_90071#5005_400_90072#5001_400_90074#4007_400_90073", + "npclist": "5002_9999_90072#4004_9999_90070#4011_9999_90071#5005_9999_90072#5001_9999_90074#4007_9999_90073", "npcLv": [ - 1603, - 1603, - 1603, - 1603, - 1603, - 1603 + 9999, + 9999, + 9999, + 9999, + 9999, + 9999 ], "isboss": 0, "ghname": "npc_ghname_5" @@ -39138,6 +39138,1606 @@ "ghname": "npc_ghname_6", "npcname": "jjc_npc_name_6" }, + "21081": { + "npcId": 21081, + "attr": {}, + "npclist": "5002_320_90072#3002_320_90071#3007_320_90076#3012_320_90079#4002_320_90079#4007_320_90079", + "npcLv": [ + 882, + 882, + 882, + 882, + 882, + 882 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21082": { + "npcId": 21082, + "attr": {}, + "npclist": "5003_323_90072#3003_323_90071#3008_323_90076#3013_323_90079#4003_323_90079#4008_323_90079", + "npcLv": [ + 883, + 883, + 883, + 883, + 883, + 883 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21083": { + "npcId": 21083, + "attr": {}, + "npclist": "5004_326_90072#3004_326_90071#3009_326_90076#3014_326_90079#4004_326_90079#4009_326_90079", + "npcLv": [ + 884, + 884, + 884, + 884, + 884, + 884 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21084": { + "npcId": 21084, + "attr": {}, + "npclist": "5005_329_90072#3005_329_90071#3010_329_90076#3015_329_90079#4005_329_90079#4010_329_90079", + "npcLv": [ + 885, + 885, + 885, + 885, + 885, + 885 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21085": { + "npcId": 21085, + "attr": {}, + "npclist": "3001_389_90072#3006_389_90071#3011_389_90076#4001_389_90079#4006_389_90079#4011_389_90079", + "npcLv": [ + 886, + 886, + 886, + 886, + 886, + 886 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21086": { + "npcId": 21086, + "attr": {}, + "npclist": "3002_334_90072#3007_334_90071#3012_334_90076#4002_334_90079#4007_334_90079#4012_334_90079", + "npcLv": [ + 887, + 887, + 887, + 887, + 887, + 887 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21087": { + "npcId": 21087, + "attr": {}, + "npclist": "3003_339_90072#3008_339_90071#3013_339_90076#4003_339_90079#4008_339_90079#4013_339_90079", + "npcLv": [ + 888, + 888, + 888, + 888, + 888, + 888 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21088": { + "npcId": 21088, + "attr": {}, + "npclist": "3004_344_90072#3009_344_90071#3014_344_90076#4004_344_90079#4009_344_90079#4014_344_90079", + "npcLv": [ + 889, + 889, + 889, + 889, + 889, + 889 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21089": { + "npcId": 21089, + "attr": {}, + "npclist": "3005_349_90072#3010_349_90071#3015_349_90076#4005_349_90079#4010_349_90079#4015_349_90079", + "npcLv": [ + 890, + 890, + 890, + 890, + 890, + 890 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21090": { + "npcId": 21090, + "attr": {}, + "npclist": "3006_400_90072#3011_400_90071#4001_400_90076#4006_400_90079#4011_400_90079#5001_400_90079", + "npcLv": [ + 891, + 891, + 891, + 891, + 891, + 891 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21091": { + "npcId": 21091, + "attr": {}, + "npclist": "3007_340_90072#3012_340_90071#4002_340_90076#4007_340_90079#4012_340_90079#5002_340_90079", + "npcLv": [ + 892, + 892, + 892, + 892, + 892, + 892 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21092": { + "npcId": 21092, + "attr": {}, + "npclist": "3008_345_90072#3013_345_90071#4003_345_90076#4008_345_90079#4013_345_90079#5003_345_90079", + "npcLv": [ + 893, + 893, + 893, + 893, + 893, + 893 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21093": { + "npcId": 21093, + "attr": {}, + "npclist": "3009_350_90072#3014_350_90071#4004_350_90076#4009_350_90079#4014_350_90079#5004_350_90079", + "npcLv": [ + 894, + 894, + 894, + 894, + 894, + 894 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21094": { + "npcId": 21094, + "attr": {}, + "npclist": "3010_355_90072#3015_355_90071#4005_355_90076#4010_355_90079#4015_355_90079#5005_355_90079", + "npcLv": [ + 895, + 895, + 895, + 895, + 895, + 895 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21095": { + "npcId": 21095, + "attr": {}, + "npclist": "3011_410_90072#4001_410_90071#4006_410_90076#4011_410_90079#5001_410_90079#3001_410_90079", + "npcLv": [ + 896, + 896, + 896, + 896, + 896, + 896 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21096": { + "npcId": 21096, + "attr": {}, + "npclist": "3012_360_90072#4002_360_90071#4007_360_90076#4012_360_90079#5002_360_90079#3002_360_90079", + "npcLv": [ + 897, + 897, + 897, + 897, + 897, + 897 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21097": { + "npcId": 21097, + "attr": {}, + "npclist": "3013_365_90072#4003_365_90071#4008_365_90076#4013_365_90079#5003_365_90079#3003_365_90079", + "npcLv": [ + 898, + 898, + 898, + 898, + 898, + 898 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21098": { + "npcId": 21098, + "attr": {}, + "npclist": "3014_370_90072#4004_370_90071#4009_370_90076#4014_370_90079#5004_370_90079#3004_370_90079", + "npcLv": [ + 899, + 899, + 899, + 899, + 899, + 899 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21099": { + "npcId": 21099, + "attr": {}, + "npclist": "3015_375_90072#4005_375_90071#4010_375_90076#4015_375_90079#5005_375_90079#3005_375_90079", + "npcLv": [ + 900, + 900, + 900, + 900, + 900, + 900 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21100": { + "npcId": 21100, + "attr": {}, + "npclist": "4001_420_90072#4006_420_90071#4011_420_90076#5001_420_90079#3001_420_90079#3006_420_90079", + "npcLv": [ + 901, + 901, + 901, + 901, + 901, + 901 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21101": { + "npcId": 21101, + "attr": {}, + "npclist": "4002_380_90072#4007_380_90071#4012_380_90076#5002_380_90079#3002_380_90079#3007_380_90079", + "npcLv": [ + 902, + 902, + 902, + 902, + 902, + 902 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21102": { + "npcId": 21102, + "attr": {}, + "npclist": "4003_385_90072#4008_385_90071#4013_385_90076#5003_385_90079#3003_385_90079#3008_385_90079", + "npcLv": [ + 903, + 903, + 903, + 903, + 903, + 903 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21103": { + "npcId": 21103, + "attr": {}, + "npclist": "4004_390_90072#4009_390_90071#4014_390_90076#5004_390_90079#3004_390_90079#3009_390_90079", + "npcLv": [ + 904, + 904, + 904, + 904, + 904, + 904 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21104": { + "npcId": 21104, + "attr": {}, + "npclist": "4005_400_90072#4010_400_90071#4015_400_90076#5005_400_90079#3005_400_90079#3010_400_90079", + "npcLv": [ + 905, + 905, + 905, + 905, + 905, + 905 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21105": { + "npcId": 21105, + "attr": {}, + "npclist": "4006_430_90072#4011_430_90071#5001_430_90076#3001_430_90079#3006_430_90079#3011_430_90079", + "npcLv": [ + 906, + 906, + 906, + 906, + 906, + 906 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21106": { + "npcId": 21106, + "attr": {}, + "npclist": "4007_385_90072#4012_385_90071#5002_385_90076#3002_385_90079#3007_385_90079#3012_385_90079", + "npcLv": [ + 907, + 907, + 907, + 907, + 907, + 907 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21107": { + "npcId": 21107, + "attr": {}, + "npclist": "4008_390_90072#4013_390_90071#5003_390_90076#3003_390_90079#3008_390_90079#3013_390_90079", + "npcLv": [ + 908, + 908, + 908, + 908, + 908, + 908 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21108": { + "npcId": 21108, + "attr": {}, + "npclist": "4009_395_90072#4014_395_90071#5004_395_90076#3004_395_90079#3009_395_90079#3014_395_90079", + "npcLv": [ + 909, + 909, + 909, + 909, + 909, + 909 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21109": { + "npcId": 21109, + "attr": {}, + "npclist": "4010_400_90072#4015_400_90071#5005_400_90076#3005_400_90079#3010_400_90079#3015_400_90079", + "npcLv": [ + 910, + 910, + 910, + 910, + 910, + 910 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21110": { + "npcId": 21110, + "attr": {}, + "npclist": "4011_440_90072#5001_440_90071#3001_440_90076#3006_440_90079#3011_440_90079#4001_440_90079", + "npcLv": [ + 911, + 911, + 911, + 911, + 911, + 911 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21111": { + "npcId": 21111, + "attr": {}, + "npclist": "4012_390_90072#5002_390_90071#3002_390_90076#3007_390_90079#3012_390_90079#4002_390_90079", + "npcLv": [ + 912, + 912, + 912, + 912, + 912, + 912 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21112": { + "npcId": 21112, + "attr": {}, + "npclist": "4013_395_90072#5003_395_90071#3003_395_90076#3008_395_90079#3013_395_90079#4003_395_90079", + "npcLv": [ + 913, + 913, + 913, + 913, + 913, + 913 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21113": { + "npcId": 21113, + "attr": {}, + "npclist": "4014_400_90072#5004_400_90071#3004_400_90076#3009_400_90079#3014_400_90079#4004_400_90079", + "npcLv": [ + 914, + 914, + 914, + 914, + 914, + 914 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21114": { + "npcId": 21114, + "attr": {}, + "npclist": "4015_410_90072#5005_410_90071#3005_410_90076#3010_410_90079#3015_410_90079#4005_410_90079", + "npcLv": [ + 915, + 915, + 915, + 915, + 915, + 915 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21115": { + "npcId": 21115, + "attr": {}, + "npclist": "5001_450_90072#3001_450_90071#3006_450_90076#3011_450_90079#4001_450_90079#4006_450_90079", + "npcLv": [ + 916, + 916, + 916, + 916, + 916, + 916 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21116": { + "npcId": 21116, + "attr": {}, + "npclist": "5002_400_90072#3002_400_90071#3007_400_90076#3012_400_90079#4002_400_90079#4007_400_90079", + "npcLv": [ + 917, + 917, + 917, + 917, + 917, + 917 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21117": { + "npcId": 21117, + "attr": {}, + "npclist": "5003_405_90072#3003_405_90071#3008_405_90076#3013_405_90079#4003_405_90079#4008_405_90079", + "npcLv": [ + 918, + 918, + 918, + 918, + 918, + 918 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21118": { + "npcId": 21118, + "attr": {}, + "npclist": "5004_410_90072#3004_410_90071#3009_410_90076#3014_410_90079#4004_410_90079#4009_410_90079", + "npcLv": [ + 919, + 919, + 919, + 919, + 919, + 919 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21119": { + "npcId": 21119, + "attr": {}, + "npclist": "5005_415_90072#3005_415_90071#3010_415_90076#3015_415_90079#4005_415_90079#4010_415_90079", + "npcLv": [ + 920, + 920, + 920, + 920, + 920, + 920 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21120": { + "npcId": 21120, + "attr": {}, + "npclist": "3001_460_90072#3006_460_90071#3011_460_90076#4001_460_90079#4006_460_90079#4011_460_90079", + "npcLv": [ + 921, + 921, + 921, + 921, + 921, + 921 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21121": { + "npcId": 21121, + "attr": {}, + "npclist": "3002_410_90072#3007_410_90071#3012_410_90076#4002_410_90079#4007_410_90079#4012_410_90079", + "npcLv": [ + 922, + 922, + 922, + 922, + 922, + 922 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21122": { + "npcId": 21122, + "attr": {}, + "npclist": "3003_415_90072#3008_415_90071#3013_415_90076#4003_415_90079#4008_415_90079#4013_415_90079", + "npcLv": [ + 923, + 923, + 923, + 923, + 923, + 923 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21123": { + "npcId": 21123, + "attr": {}, + "npclist": "3004_420_90072#3009_420_90071#3014_420_90076#4004_420_90079#4009_420_90079#4014_420_90079", + "npcLv": [ + 924, + 924, + 924, + 924, + 924, + 924 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21124": { + "npcId": 21124, + "attr": {}, + "npclist": "3005_425_90072#3010_425_90071#3015_425_90076#4005_425_90079#4010_425_90079#4015_425_90079", + "npcLv": [ + 925, + 925, + 925, + 925, + 925, + 925 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21125": { + "npcId": 21125, + "attr": {}, + "npclist": "3006_470_90072#3011_470_90071#4001_470_90076#4006_470_90079#4011_470_90079#5001_470_90079", + "npcLv": [ + 926, + 926, + 926, + 926, + 926, + 926 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21126": { + "npcId": 21126, + "attr": {}, + "npclist": "3007_420_90072#3012_420_90071#4002_420_90076#4007_420_90079#4012_420_90079#5002_420_90079", + "npcLv": [ + 927, + 927, + 927, + 927, + 927, + 927 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21127": { + "npcId": 21127, + "attr": {}, + "npclist": "3008_425_90072#3013_425_90071#4003_425_90076#4008_425_90079#4013_425_90079#5003_425_90079", + "npcLv": [ + 928, + 928, + 928, + 928, + 928, + 928 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21128": { + "npcId": 21128, + "attr": {}, + "npclist": "3009_430_90072#3014_430_90071#4004_430_90076#4009_430_90079#4014_430_90079#5004_430_90079", + "npcLv": [ + 929, + 929, + 929, + 929, + 929, + 929 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21129": { + "npcId": 21129, + "attr": {}, + "npclist": "3010_435_90072#3015_435_90071#4005_435_90076#4010_435_90079#4015_435_90079#5005_435_90079", + "npcLv": [ + 930, + 930, + 930, + 930, + 930, + 930 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21130": { + "npcId": 21130, + "attr": {}, + "npclist": "3011_480_90072#4001_480_90071#4006_480_90076#4011_480_90079#5001_480_90079#3001_480_90079", + "npcLv": [ + 931, + 931, + 931, + 931, + 931, + 931 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21131": { + "npcId": 21131, + "attr": {}, + "npclist": "3012_430_90072#4002_430_90071#4007_430_90076#4012_430_90079#5002_430_90079#3002_430_90079", + "npcLv": [ + 932, + 932, + 932, + 932, + 932, + 932 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21132": { + "npcId": 21132, + "attr": {}, + "npclist": "3013_435_90072#4003_435_90071#4008_435_90076#4013_435_90079#5003_435_90079#3003_435_90079", + "npcLv": [ + 933, + 933, + 933, + 933, + 933, + 933 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21133": { + "npcId": 21133, + "attr": {}, + "npclist": "3014_440_90072#4004_440_90071#4009_440_90076#4014_440_90079#5004_440_90079#3004_440_90079", + "npcLv": [ + 934, + 934, + 934, + 934, + 934, + 934 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21134": { + "npcId": 21134, + "attr": {}, + "npclist": "3015_445_90072#4005_445_90071#4010_445_90076#4015_445_90079#5005_445_90079#3005_445_90079", + "npcLv": [ + 935, + 935, + 935, + 935, + 935, + 935 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21135": { + "npcId": 21135, + "attr": {}, + "npclist": "4001_490_90072#4006_490_90071#4011_490_90076#5001_490_90079#3001_490_90079#3006_490_90079", + "npcLv": [ + 936, + 936, + 936, + 936, + 936, + 936 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21136": { + "npcId": 21136, + "attr": {}, + "npclist": "4002_440_90072#4007_440_90071#4012_440_90076#5002_440_90079#3002_440_90079#3007_440_90079", + "npcLv": [ + 937, + 937, + 937, + 937, + 937, + 937 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21137": { + "npcId": 21137, + "attr": {}, + "npclist": "4003_445_90072#4008_445_90071#4013_445_90076#5003_445_90079#3003_445_90079#3008_445_90079", + "npcLv": [ + 938, + 938, + 938, + 938, + 938, + 938 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21138": { + "npcId": 21138, + "attr": {}, + "npclist": "4004_450_90072#4009_450_90071#4014_450_90076#5004_450_90079#3004_450_90079#3009_450_90079", + "npcLv": [ + 939, + 939, + 939, + 939, + 939, + 939 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21139": { + "npcId": 21139, + "attr": {}, + "npclist": "4005_455_90072#4010_455_90071#4015_455_90076#5005_455_90079#3005_455_90079#3010_455_90079", + "npcLv": [ + 940, + 940, + 940, + 940, + 940, + 940 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21140": { + "npcId": 21140, + "attr": {}, + "npclist": "4006_500_90072#4011_500_90071#5001_500_90076#3001_500_90079#3006_500_90079#3011_500_90079", + "npcLv": [ + 941, + 941, + 941, + 941, + 941, + 941 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21141": { + "npcId": 21141, + "attr": {}, + "npclist": "4007_450_90072#4012_450_90071#5002_450_90076#3002_450_90079#3007_450_90079#3012_450_90079", + "npcLv": [ + 942, + 942, + 942, + 942, + 942, + 942 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21142": { + "npcId": 21142, + "attr": {}, + "npclist": "4008_455_90072#4013_455_90071#5003_455_90076#3003_455_90079#3008_455_90079#3013_455_90079", + "npcLv": [ + 943, + 943, + 943, + 943, + 943, + 943 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21143": { + "npcId": 21143, + "attr": {}, + "npclist": "4009_460_90072#4014_460_90071#5004_460_90076#3004_460_90079#3009_460_90079#3014_460_90079", + "npcLv": [ + 944, + 944, + 944, + 944, + 944, + 944 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21144": { + "npcId": 21144, + "attr": {}, + "npclist": "4010_465_90072#4015_465_90071#5005_465_90076#3005_465_90079#3010_465_90079#3015_465_90079", + "npcLv": [ + 945, + 945, + 945, + 945, + 945, + 945 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21145": { + "npcId": 21145, + "attr": {}, + "npclist": "4011_510_90072#5001_510_90071#3001_510_90076#3006_510_90079#3011_510_90079#4001_510_90079", + "npcLv": [ + 946, + 946, + 946, + 946, + 946, + 946 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21146": { + "npcId": 21146, + "attr": {}, + "npclist": "4012_460_90072#5002_460_90071#3002_460_90076#3007_460_90079#3012_460_90079#4002_460_90079", + "npcLv": [ + 947, + 947, + 947, + 947, + 947, + 947 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21147": { + "npcId": 21147, + "attr": {}, + "npclist": "4013_465_90072#5003_465_90071#3003_465_90076#3008_465_90079#3013_465_90079#4003_465_90079", + "npcLv": [ + 948, + 948, + 948, + 948, + 948, + 948 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21148": { + "npcId": 21148, + "attr": {}, + "npclist": "4014_470_90072#5004_470_90071#3004_470_90076#3009_470_90079#3014_470_90079#4004_470_90079", + "npcLv": [ + 949, + 949, + 949, + 949, + 949, + 949 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21149": { + "npcId": 21149, + "attr": {}, + "npclist": "4015_475_90072#5005_475_90071#3005_475_90076#3010_475_90079#3015_475_90079#4005_475_90079", + "npcLv": [ + 950, + 950, + 950, + 950, + 950, + 950 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21150": { + "npcId": 21150, + "attr": {}, + "npclist": "5001_520_90072#3001_520_90071#3006_520_90076#3011_520_90079#4001_520_90079#4006_520_90079", + "npcLv": [ + 951, + 951, + 951, + 951, + 951, + 951 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21151": { + "npcId": 21151, + "attr": {}, + "npclist": "5002_470_90072#3002_470_90071#3007_470_90076#3012_470_90079#4002_470_90079#4007_470_90079", + "npcLv": [ + 952, + 952, + 952, + 952, + 952, + 952 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21152": { + "npcId": 21152, + "attr": {}, + "npclist": "5003_475_90072#3003_475_90071#3008_475_90076#3013_475_90079#4003_475_90079#4008_475_90079", + "npcLv": [ + 953, + 953, + 953, + 953, + 953, + 953 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21153": { + "npcId": 21153, + "attr": {}, + "npclist": "5004_480_90072#3004_480_90071#3009_480_90076#3014_480_90079#4004_480_90079#4009_480_90079", + "npcLv": [ + 954, + 954, + 954, + 954, + 954, + 954 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21154": { + "npcId": 21154, + "attr": {}, + "npclist": "5005_485_90072#3005_485_90071#3010_485_90076#3015_485_90079#4005_485_90079#4010_485_90079", + "npcLv": [ + 955, + 955, + 955, + 955, + 955, + 955 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21155": { + "npcId": 21155, + "attr": {}, + "npclist": "3001_530_90072#3006_530_90071#3011_530_90076#4001_530_90079#4006_530_90079#4011_530_90079", + "npcLv": [ + 956, + 956, + 956, + 956, + 956, + 956 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21156": { + "npcId": 21156, + "attr": {}, + "npclist": "3002_480_90072#3007_480_90071#3012_480_90076#4002_480_90079#4007_480_90079#4012_480_90079", + "npcLv": [ + 957, + 957, + 957, + 957, + 957, + 957 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21157": { + "npcId": 21157, + "attr": {}, + "npclist": "3003_485_90072#3008_485_90071#3013_485_90076#4003_485_90079#4008_485_90079#4013_485_90079", + "npcLv": [ + 958, + 958, + 958, + 958, + 958, + 958 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21158": { + "npcId": 21158, + "attr": {}, + "npclist": "3004_490_90072#3009_490_90071#3014_490_90076#4004_490_90079#4009_490_90079#4014_490_90079", + "npcLv": [ + 959, + 959, + 959, + 959, + 959, + 959 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21159": { + "npcId": 21159, + "attr": {}, + "npclist": "3005_495_90072#3010_495_90071#3015_495_90076#4005_495_90079#4010_495_90079#4015_495_90079", + "npcLv": [ + 960, + 960, + 960, + 960, + 960, + 960 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21160": { + "npcId": 21160, + "attr": {}, + "npclist": "3006_540_90072#3011_540_90071#4001_540_90076#4006_540_90079#4011_540_90079#5001_540_90079", + "npcLv": [ + 961, + 961, + 961, + 961, + 961, + 961 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21161": { + "npcId": 21161, + "attr": {}, + "npclist": "3007_490_90072#3012_490_90071#4002_490_90076#4007_490_90079#4012_490_90079#5002_490_90079", + "npcLv": [ + 962, + 962, + 962, + 962, + 962, + 962 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21162": { + "npcId": 21162, + "attr": {}, + "npclist": "3008_495_90072#3013_495_90071#4003_495_90076#4008_495_90079#4013_495_90079#5003_495_90079", + "npcLv": [ + 963, + 963, + 963, + 963, + 963, + 963 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21163": { + "npcId": 21163, + "attr": {}, + "npclist": "3009_500_90072#3014_500_90071#4004_500_90076#4009_500_90079#4014_500_90079#5004_500_90079", + "npcLv": [ + 964, + 964, + 964, + 964, + 964, + 964 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21164": { + "npcId": 21164, + "attr": {}, + "npclist": "3010_505_90072#3015_505_90071#4005_505_90076#4010_505_90079#4015_505_90079#5005_505_90079", + "npcLv": [ + 965, + 965, + 965, + 965, + 965, + 965 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21165": { + "npcId": 21165, + "attr": {}, + "npclist": "3011_550_90072#4001_550_90071#4006_550_90076#4011_550_90079#5001_550_90079#3001_550_90079", + "npcLv": [ + 966, + 966, + 966, + 966, + 966, + 966 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21166": { + "npcId": 21166, + "attr": {}, + "npclist": "3012_500_90072#4002_500_90071#4007_500_90076#4012_500_90079#5002_500_90079#3002_500_90079", + "npcLv": [ + 967, + 967, + 967, + 967, + 967, + 967 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21167": { + "npcId": 21167, + "attr": {}, + "npclist": "3013_505_90072#4003_505_90071#4008_505_90076#4013_505_90079#5003_505_90079#3003_505_90079", + "npcLv": [ + 968, + 968, + 968, + 968, + 968, + 968 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21168": { + "npcId": 21168, + "attr": {}, + "npclist": "3014_510_90072#4004_510_90071#4009_510_90076#4014_510_90079#5004_510_90079#3004_510_90079", + "npcLv": [ + 969, + 969, + 969, + 969, + 969, + 969 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21169": { + "npcId": 21169, + "attr": {}, + "npclist": "3015_515_90072#4005_515_90071#4010_515_90076#4015_515_90079#5005_515_90079#3005_515_90079", + "npcLv": [ + 970, + 970, + 970, + 970, + 970, + 970 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21170": { + "npcId": 21170, + "attr": {}, + "npclist": "4001_560_90072#4006_560_90071#4011_560_90076#5001_560_90079#3001_560_90079#3006_560_90079", + "npcLv": [ + 971, + 971, + 971, + 971, + 971, + 971 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21171": { + "npcId": 21171, + "attr": {}, + "npclist": "4002_510_90072#4007_510_90071#4012_510_90076#5002_510_90079#3002_510_90079#3007_510_90079", + "npcLv": [ + 972, + 972, + 972, + 972, + 972, + 972 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21172": { + "npcId": 21172, + "attr": {}, + "npclist": "4003_515_90072#4008_515_90071#4013_515_90076#5003_515_90079#3003_515_90079#3008_515_90079", + "npcLv": [ + 973, + 973, + 973, + 973, + 973, + 973 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21173": { + "npcId": 21173, + "attr": {}, + "npclist": "4004_520_90072#4009_520_90071#4014_520_90076#5004_520_90079#3004_520_90079#3009_520_90079", + "npcLv": [ + 974, + 974, + 974, + 974, + 974, + 974 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21174": { + "npcId": 21174, + "attr": {}, + "npclist": "4005_525_90072#4010_525_90071#4015_525_90076#5005_525_90079#3005_525_90079#3010_525_90079", + "npcLv": [ + 975, + 975, + 975, + 975, + 975, + 975 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21175": { + "npcId": 21175, + "attr": {}, + "npclist": "4006_570_90072#4011_570_90071#5001_570_90076#3001_570_90079#3006_570_90079#3011_570_90079", + "npcLv": [ + 976, + 976, + 976, + 976, + 976, + 976 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21176": { + "npcId": 21176, + "attr": {}, + "npclist": "4007_520_90072#4012_520_90071#5002_520_90076#3002_520_90079#3007_520_90079#3012_520_90079", + "npcLv": [ + 977, + 977, + 977, + 977, + 977, + 977 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21177": { + "npcId": 21177, + "attr": {}, + "npclist": "4008_525_90072#4013_525_90071#5003_525_90076#3003_525_90079#3008_525_90079#3013_525_90079", + "npcLv": [ + 978, + 978, + 978, + 978, + 978, + 978 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21178": { + "npcId": 21178, + "attr": {}, + "npclist": "4009_530_90072#4014_530_90071#5004_530_90076#3004_530_90079#3009_530_90079#3014_530_90079", + "npcLv": [ + 979, + 979, + 979, + 979, + 979, + 979 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21179": { + "npcId": 21179, + "attr": {}, + "npclist": "4010_535_90072#4015_535_90071#5005_535_90076#3005_535_90079#3010_535_90079#3015_535_90079", + "npcLv": [ + 980, + 980, + 980, + 980, + 980, + 980 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, + "21180": { + "npcId": 21180, + "attr": {}, + "npclist": "4011_9999_90072#5001_9999_90071#3001_9999_90076#3006_9999_90079#3011_9999_90079#4001_9999_90079", + "npcLv": [ + 981, + 981, + 981, + 981, + 981, + 981 + ], + "isboss": 1, + "ghname": "npc_ghname_6", + "npcname": "jjc_npc_name_6" + }, "30001": { "npcId": 30001, "attr": {}, diff --git a/src/json/peijian.json b/src/json/peijian.json index 70c71dd..d1b612c 100644 --- a/src/json/peijian.json +++ b/src/json/peijian.json @@ -3470,7 +3470,7 @@ "conversion": [], "buff": [ "baoshangpro", - 3 + 0.03 ], "suit": 8, "rmPrize": [ diff --git a/src/json/slzd.json5 b/src/json/slzd.json5 index d4c1ee4..752b03c 100644 --- a/src/json/slzd.json5 +++ b/src/json/slzd.json5 @@ -4,7 +4,7 @@ //开放时间 openTime: [0, 514800], //结算定时器时间 - schedulerPrize: 511500, + schedulerPrize: 515100, //分组定时器时间 schedulerGroup: 0, //据点 diff --git a/src/json/tanxian.json b/src/json/tanxian.json index 56f2d1b..f7a9e3e 100644 --- a/src/json/tanxian.json +++ b/src/json/tanxian.json @@ -58269,5 +58269,5405 @@ 418 ], "fightmap": "bg_fight_ally" + }, + "1081": { + "id": 1081, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21081, + "name": "14-101", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 22454.28 + }, + { + "a": "attr", + "t": "nexp", + "n": 8675.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271081, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 192.819999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 127, + 72 + ], + "fightmap": "bg_fight_ally" + }, + "1082": { + "id": 1082, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21082, + "name": "14-102", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 22484.76 + }, + { + "a": "attr", + "t": "nexp", + "n": 8682.73 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271082, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 192.959999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 160, + 98 + ], + "fightmap": "bg_fight_ally" + }, + "1083": { + "id": 1083, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21083, + "name": "14-103", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 22515.24 + }, + { + "a": "attr", + "t": "nexp", + "n": 8689.68 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271083, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 193.099999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 167, + 135 + ], + "fightmap": "bg_fight_ally" + }, + "1084": { + "id": 1084, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21084, + "name": "14-104", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 22545.72 + }, + { + "a": "attr", + "t": "nexp", + "n": 8696.62 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271084, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 193.239999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 142, + 164 + ], + "fightmap": "bg_fight_ally" + }, + "1085": { + "id": 1085, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21085, + "name": "14-105", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 22576.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 8703.56 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271085, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 193.379999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 110, + 188 + ], + "fightmap": "bg_fight_ally" + }, + "1086": { + "id": 1086, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21086, + "name": "14-106", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 22606.68 + }, + { + "a": "attr", + "t": "nexp", + "n": 8710.5 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271086, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 193.519999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 58, + 195 + ], + "fightmap": "bg_fight_ally" + }, + "1087": { + "id": 1087, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21087, + "name": "14-107", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 22637.16 + }, + { + "a": "attr", + "t": "nexp", + "n": 8717.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271087, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 193.659999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 6, + 187 + ], + "fightmap": "bg_fight_ally" + }, + "1088": { + "id": 1088, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21088, + "name": "14-108", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 22667.64 + }, + { + "a": "attr", + "t": "nexp", + "n": 8724.39 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271088, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 193.799999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -40, + 175 + ], + "fightmap": "bg_fight_ally" + }, + "1089": { + "id": 1089, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21089, + "name": "14-109", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 22698.12 + }, + { + "a": "attr", + "t": "nexp", + "n": 8731.33 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271089, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 193.939999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -92, + 173 + ], + "fightmap": "bg_fight_ally" + }, + "1090": { + "id": 1090, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21090, + "name": "14-110", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 22728.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 8738.27 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271090, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 194.079999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -144, + 178 + ], + "fightmap": "bg_fight_ally" + }, + "1091": { + "id": 1091, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21091, + "name": "14-111", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 22759.08 + }, + { + "a": "attr", + "t": "nexp", + "n": 8745.21 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271091, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 194.219999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -186, + 190 + ], + "fightmap": "bg_fight_ally" + }, + "1092": { + "id": 1092, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21092, + "name": "14-112", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 22789.56 + }, + { + "a": "attr", + "t": "nexp", + "n": 8752.15 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271092, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 194.359999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -217, + 212 + ], + "fightmap": "bg_fight_ally" + }, + "1093": { + "id": 1093, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21093, + "name": "14-113", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 22820.04 + }, + { + "a": "attr", + "t": "nexp", + "n": 8759.1 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271093, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 194.499999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -222, + 245 + ], + "fightmap": "bg_fight_ally" + }, + "1094": { + "id": 1094, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21094, + "name": "14-114", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 22850.52 + }, + { + "a": "attr", + "t": "nexp", + "n": 8766.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271094, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 194.639999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -210, + 275 + ], + "fightmap": "bg_fight_ally" + }, + "1095": { + "id": 1095, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21095, + "name": "14-115", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 22881 + }, + { + "a": "attr", + "t": "nexp", + "n": 8772.98 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271095, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 194.779999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -185, + 303 + ], + "fightmap": "bg_fight_ally" + }, + "1096": { + "id": 1096, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21096, + "name": "14-116", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 22911.48 + }, + { + "a": "attr", + "t": "nexp", + "n": 8779.92 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271096, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 194.919999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -150, + 331 + ], + "fightmap": "bg_fight_ally" + }, + "1097": { + "id": 1097, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21097, + "name": "14-117", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 22941.96 + }, + { + "a": "attr", + "t": "nexp", + "n": 8786.86 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271097, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 195.059999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -116, + 355 + ], + "fightmap": "bg_fight_ally" + }, + "1098": { + "id": 1098, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21098, + "name": "14-118", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 22972.44 + }, + { + "a": "attr", + "t": "nexp", + "n": 8793.81 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271098, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 195.199999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -78, + 379 + ], + "fightmap": "bg_fight_ally" + }, + "1099": { + "id": 1099, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21099, + "name": "14-119", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23002.92 + }, + { + "a": "attr", + "t": "nexp", + "n": 8800.75 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271099, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 195.339999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -42, + 400 + ], + "fightmap": "bg_fight_ally" + }, + "1100": { + "id": 1100, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21100, + "name": "14-120", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23033.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 8807.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271100, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 195.479999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -6, + 418 + ], + "fightmap": "bg_fight_ally" + }, + "1101": { + "id": 1101, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21101, + "name": "14-121", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23063.88 + }, + { + "a": "attr", + "t": "nexp", + "n": 8814.63 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271101, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 195.619999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 127, + 72 + ], + "fightmap": "bg_fight_ally" + }, + "1102": { + "id": 1102, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21102, + "name": "14-122", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23094.36 + }, + { + "a": "attr", + "t": "nexp", + "n": 8821.57 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271102, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 195.759999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 160, + 98 + ], + "fightmap": "bg_fight_ally" + }, + "1103": { + "id": 1103, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21103, + "name": "14-123", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23124.84 + }, + { + "a": "attr", + "t": "nexp", + "n": 8828.52 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271103, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 195.899999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 167, + 135 + ], + "fightmap": "bg_fight_ally" + }, + "1104": { + "id": 1104, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21104, + "name": "14-124", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23155.32 + }, + { + "a": "attr", + "t": "nexp", + "n": 8835.46 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271104, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 196.039999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 142, + 164 + ], + "fightmap": "bg_fight_ally" + }, + "1105": { + "id": 1105, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21105, + "name": "14-125", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23185.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 8842.4 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271105, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 196.179999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 110, + 188 + ], + "fightmap": "bg_fight_ally" + }, + "1106": { + "id": 1106, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21106, + "name": "14-126", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23216.28 + }, + { + "a": "attr", + "t": "nexp", + "n": 8849.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271106, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 196.319999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 58, + 195 + ], + "fightmap": "bg_fight_ally" + }, + "1107": { + "id": 1107, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21107, + "name": "14-127", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23246.76 + }, + { + "a": "attr", + "t": "nexp", + "n": 8856.28 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271107, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 196.459999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 6, + 187 + ], + "fightmap": "bg_fight_ally" + }, + "1108": { + "id": 1108, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21108, + "name": "14-128", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23277.24 + }, + { + "a": "attr", + "t": "nexp", + "n": 8863.23 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271108, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 196.599999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -40, + 175 + ], + "fightmap": "bg_fight_ally" + }, + "1109": { + "id": 1109, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21109, + "name": "14-129", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23307.72 + }, + { + "a": "attr", + "t": "nexp", + "n": 8870.17 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271109, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 196.739999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -92, + 173 + ], + "fightmap": "bg_fight_ally" + }, + "1110": { + "id": 1110, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21110, + "name": "14-130", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23338.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 8877.11 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271110, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 196.879999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -144, + 178 + ], + "fightmap": "bg_fight_ally" + }, + "1111": { + "id": 1111, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21111, + "name": "14-131", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23368.68 + }, + { + "a": "attr", + "t": "nexp", + "n": 8884.05 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271111, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 197.019999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -186, + 190 + ], + "fightmap": "bg_fight_ally" + }, + "1112": { + "id": 1112, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21112, + "name": "14-132", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23399.16 + }, + { + "a": "attr", + "t": "nexp", + "n": 8890.99 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271112, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 197.159999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -217, + 212 + ], + "fightmap": "bg_fight_ally" + }, + "1113": { + "id": 1113, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21113, + "name": "14-133", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23429.64 + }, + { + "a": "attr", + "t": "nexp", + "n": 8897.94 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271113, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 197.299999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -222, + 245 + ], + "fightmap": "bg_fight_ally" + }, + "1114": { + "id": 1114, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21114, + "name": "14-134", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23460.12 + }, + { + "a": "attr", + "t": "nexp", + "n": 8904.88 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271114, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 197.439999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -210, + 275 + ], + "fightmap": "bg_fight_ally" + }, + "1115": { + "id": 1115, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21115, + "name": "14-135", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23490.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 8911.82 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271115, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 197.579999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -185, + 303 + ], + "fightmap": "bg_fight_ally" + }, + "1116": { + "id": 1116, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21116, + "name": "14-136", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23521.08 + }, + { + "a": "attr", + "t": "nexp", + "n": 8918.76 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271116, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 197.719999999996, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -150, + 331 + ], + "fightmap": "bg_fight_ally" + }, + "1117": { + "id": 1117, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21117, + "name": "14-137", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23551.56 + }, + { + "a": "attr", + "t": "nexp", + "n": 8925.7 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271117, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 197.859999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -116, + 355 + ], + "fightmap": "bg_fight_ally" + }, + "1118": { + "id": 1118, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21118, + "name": "14-138", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23582.04 + }, + { + "a": "attr", + "t": "nexp", + "n": 8932.65 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271118, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 197.999999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -78, + 379 + ], + "fightmap": "bg_fight_ally" + }, + "1119": { + "id": 1119, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21119, + "name": "14-139", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23612.52 + }, + { + "a": "attr", + "t": "nexp", + "n": 8939.59 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271119, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 198.139999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -42, + 400 + ], + "fightmap": "bg_fight_ally" + }, + "1120": { + "id": 1120, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21120, + "name": "14-140", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23643 + }, + { + "a": "attr", + "t": "nexp", + "n": 8946.53 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271120, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 198.279999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -6, + 418 + ], + "fightmap": "bg_fight_ally" + }, + "1121": { + "id": 1121, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21121, + "name": "14-141", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23673.48 + }, + { + "a": "attr", + "t": "nexp", + "n": 8953.47 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271121, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 198.419999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 127, + 72 + ], + "fightmap": "bg_fight_ally" + }, + "1122": { + "id": 1122, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21122, + "name": "14-142", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23703.96 + }, + { + "a": "attr", + "t": "nexp", + "n": 8960.41 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271122, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 198.559999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 160, + 98 + ], + "fightmap": "bg_fight_ally" + }, + "1123": { + "id": 1123, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21123, + "name": "14-143", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23734.44 + }, + { + "a": "attr", + "t": "nexp", + "n": 8967.36 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271123, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 198.699999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 167, + 135 + ], + "fightmap": "bg_fight_ally" + }, + "1124": { + "id": 1124, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21124, + "name": "14-144", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23764.92 + }, + { + "a": "attr", + "t": "nexp", + "n": 8974.3 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271124, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 198.839999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 142, + 164 + ], + "fightmap": "bg_fight_ally" + }, + "1125": { + "id": 1125, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21125, + "name": "14-145", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23795.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 8981.24 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271125, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 198.979999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 110, + 188 + ], + "fightmap": "bg_fight_ally" + }, + "1126": { + "id": 1126, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21126, + "name": "14-146", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23825.88 + }, + { + "a": "attr", + "t": "nexp", + "n": 8988.18 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271126, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 199.119999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 58, + 195 + ], + "fightmap": "bg_fight_ally" + }, + "1127": { + "id": 1127, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21127, + "name": "14-147", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23856.36 + }, + { + "a": "attr", + "t": "nexp", + "n": 8995.12 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271127, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 199.259999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 6, + 187 + ], + "fightmap": "bg_fight_ally" + }, + "1128": { + "id": 1128, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21128, + "name": "14-148", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23886.84 + }, + { + "a": "attr", + "t": "nexp", + "n": 9002.07 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271128, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 199.399999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -40, + 175 + ], + "fightmap": "bg_fight_ally" + }, + "1129": { + "id": 1129, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21129, + "name": "14-149", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23917.32 + }, + { + "a": "attr", + "t": "nexp", + "n": 9009.01 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271129, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 199.539999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -92, + 173 + ], + "fightmap": "bg_fight_ally" + }, + "1130": { + "id": 1130, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21130, + "name": "14-150", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23947.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 9015.95 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271130, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 199.679999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -144, + 178 + ], + "fightmap": "bg_fight_ally" + }, + "1131": { + "id": 1131, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21131, + "name": "14-151", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 23978.28 + }, + { + "a": "attr", + "t": "nexp", + "n": 9022.89 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271131, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 199.819999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -186, + 190 + ], + "fightmap": "bg_fight_ally" + }, + "1132": { + "id": 1132, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21132, + "name": "14-152", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24008.76 + }, + { + "a": "attr", + "t": "nexp", + "n": 9029.83 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271132, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 199.959999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -217, + 212 + ], + "fightmap": "bg_fight_ally" + }, + "1133": { + "id": 1133, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21133, + "name": "14-153", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24039.24 + }, + { + "a": "attr", + "t": "nexp", + "n": 9036.78 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271133, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 200.099999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -222, + 245 + ], + "fightmap": "bg_fight_ally" + }, + "1134": { + "id": 1134, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21134, + "name": "14-154", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24069.72 + }, + { + "a": "attr", + "t": "nexp", + "n": 9043.72 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271134, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 200.239999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -210, + 275 + ], + "fightmap": "bg_fight_ally" + }, + "1135": { + "id": 1135, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21135, + "name": "14-155", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24100.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 9050.66 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271135, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 200.379999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -185, + 303 + ], + "fightmap": "bg_fight_ally" + }, + "1136": { + "id": 1136, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21136, + "name": "14-156", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24130.68 + }, + { + "a": "attr", + "t": "nexp", + "n": 9057.6 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271136, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 200.519999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -150, + 331 + ], + "fightmap": "bg_fight_ally" + }, + "1137": { + "id": 1137, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21137, + "name": "14-157", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24161.16 + }, + { + "a": "attr", + "t": "nexp", + "n": 9064.54 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271137, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 200.659999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -116, + 355 + ], + "fightmap": "bg_fight_ally" + }, + "1138": { + "id": 1138, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21138, + "name": "14-158", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24191.64 + }, + { + "a": "attr", + "t": "nexp", + "n": 9071.49 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271138, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 200.799999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -78, + 379 + ], + "fightmap": "bg_fight_ally" + }, + "1139": { + "id": 1139, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21139, + "name": "14-159", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24222.12 + }, + { + "a": "attr", + "t": "nexp", + "n": 9078.43 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271139, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 200.939999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -42, + 400 + ], + "fightmap": "bg_fight_ally" + }, + "1140": { + "id": 1140, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21140, + "name": "14-160", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24252.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 9085.37 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271140, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 201.079999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -6, + 418 + ], + "fightmap": "bg_fight_ally" + }, + "1141": { + "id": 1141, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21141, + "name": "14-161", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24283.08 + }, + { + "a": "attr", + "t": "nexp", + "n": 9092.31 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271141, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 201.219999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 127, + 72 + ], + "fightmap": "bg_fight_ally" + }, + "1142": { + "id": 1142, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21142, + "name": "14-162", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24313.56 + }, + { + "a": "attr", + "t": "nexp", + "n": 9099.25 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271142, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 201.359999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 160, + 98 + ], + "fightmap": "bg_fight_ally" + }, + "1143": { + "id": 1143, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21143, + "name": "14-163", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24344.04 + }, + { + "a": "attr", + "t": "nexp", + "n": 9106.2 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271143, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 201.499999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 167, + 135 + ], + "fightmap": "bg_fight_ally" + }, + "1144": { + "id": 1144, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21144, + "name": "14-164", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24374.52 + }, + { + "a": "attr", + "t": "nexp", + "n": 9113.14 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271144, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 201.639999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 142, + 164 + ], + "fightmap": "bg_fight_ally" + }, + "1145": { + "id": 1145, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21145, + "name": "14-165", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24405 + }, + { + "a": "attr", + "t": "nexp", + "n": 9120.08 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271145, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 201.779999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 110, + 188 + ], + "fightmap": "bg_fight_ally" + }, + "1146": { + "id": 1146, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21146, + "name": "14-166", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24435.48 + }, + { + "a": "attr", + "t": "nexp", + "n": 9127.02 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271146, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 201.919999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 58, + 195 + ], + "fightmap": "bg_fight_ally" + }, + "1147": { + "id": 1147, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21147, + "name": "14-167", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24465.96 + }, + { + "a": "attr", + "t": "nexp", + "n": 9133.96 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271147, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 202.059999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 6, + 187 + ], + "fightmap": "bg_fight_ally" + }, + "1148": { + "id": 1148, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21148, + "name": "14-168", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24496.44 + }, + { + "a": "attr", + "t": "nexp", + "n": 9140.91 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271148, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 202.199999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -40, + 175 + ], + "fightmap": "bg_fight_ally" + }, + "1149": { + "id": 1149, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21149, + "name": "14-169", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24526.92 + }, + { + "a": "attr", + "t": "nexp", + "n": 9147.85 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271149, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 202.339999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -92, + 173 + ], + "fightmap": "bg_fight_ally" + }, + "1150": { + "id": 1150, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21150, + "name": "14-170", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24557.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 9154.79 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271150, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 202.479999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -144, + 178 + ], + "fightmap": "bg_fight_ally" + }, + "1151": { + "id": 1151, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21151, + "name": "14-171", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24587.88 + }, + { + "a": "attr", + "t": "nexp", + "n": 9161.73 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271151, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 202.619999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -186, + 190 + ], + "fightmap": "bg_fight_ally" + }, + "1152": { + "id": 1152, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21152, + "name": "14-172", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24618.36 + }, + { + "a": "attr", + "t": "nexp", + "n": 9168.67 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271152, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 202.759999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -217, + 212 + ], + "fightmap": "bg_fight_ally" + }, + "1153": { + "id": 1153, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21153, + "name": "14-173", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24648.84 + }, + { + "a": "attr", + "t": "nexp", + "n": 9175.62 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271153, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 202.899999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -222, + 245 + ], + "fightmap": "bg_fight_ally" + }, + "1154": { + "id": 1154, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21154, + "name": "14-174", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24679.32 + }, + { + "a": "attr", + "t": "nexp", + "n": 9182.56 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271154, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 203.039999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -210, + 275 + ], + "fightmap": "bg_fight_ally" + }, + "1155": { + "id": 1155, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21155, + "name": "14-175", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24709.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 9189.5 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271155, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 203.179999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -185, + 303 + ], + "fightmap": "bg_fight_ally" + }, + "1156": { + "id": 1156, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21156, + "name": "14-176", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24740.28 + }, + { + "a": "attr", + "t": "nexp", + "n": 9196.44 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271156, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 203.319999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -150, + 331 + ], + "fightmap": "bg_fight_ally" + }, + "1157": { + "id": 1157, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21157, + "name": "14-177", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24770.76 + }, + { + "a": "attr", + "t": "nexp", + "n": 9203.38 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271157, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 203.459999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -116, + 355 + ], + "fightmap": "bg_fight_ally" + }, + "1158": { + "id": 1158, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21158, + "name": "14-178", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24801.24 + }, + { + "a": "attr", + "t": "nexp", + "n": 9210.33 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271158, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 203.599999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -78, + 379 + ], + "fightmap": "bg_fight_ally" + }, + "1159": { + "id": 1159, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21159, + "name": "14-179", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24831.72 + }, + { + "a": "attr", + "t": "nexp", + "n": 9217.27 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271159, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 203.739999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -42, + 400 + ], + "fightmap": "bg_fight_ally" + }, + "1160": { + "id": 1160, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21160, + "name": "14-180", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24862.2 + }, + { + "a": "attr", + "t": "nexp", + "n": 9224.21 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271160, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 203.879999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -6, + 418 + ], + "fightmap": "bg_fight_ally" + }, + "1161": { + "id": 1161, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21161, + "name": "14-181", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24892.68 + }, + { + "a": "attr", + "t": "nexp", + "n": 9231.15 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271161, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 204.019999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 127, + 72 + ], + "fightmap": "bg_fight_ally" + }, + "1162": { + "id": 1162, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21162, + "name": "14-182", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24923.16 + }, + { + "a": "attr", + "t": "nexp", + "n": 9238.09 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271162, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 204.159999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 160, + 98 + ], + "fightmap": "bg_fight_ally" + }, + "1163": { + "id": 1163, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21163, + "name": "14-183", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24953.64 + }, + { + "a": "attr", + "t": "nexp", + "n": 9245.04 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271163, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 204.299999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 167, + 135 + ], + "fightmap": "bg_fight_ally" + }, + "1164": { + "id": 1164, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21164, + "name": "14-184", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 24984.12 + }, + { + "a": "attr", + "t": "nexp", + "n": 9251.98 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271164, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 204.439999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 142, + 164 + ], + "fightmap": "bg_fight_ally" + }, + "1165": { + "id": 1165, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21165, + "name": "14-185", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 25014.6 + }, + { + "a": "attr", + "t": "nexp", + "n": 9258.92 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271165, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 204.579999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 110, + 188 + ], + "fightmap": "bg_fight_ally" + }, + "1166": { + "id": 1166, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21166, + "name": "14-186", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 25045.08 + }, + { + "a": "attr", + "t": "nexp", + "n": 9265.86 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271166, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 204.719999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 58, + 195 + ], + "fightmap": "bg_fight_ally" + }, + "1167": { + "id": 1167, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21167, + "name": "14-187", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 25075.56 + }, + { + "a": "attr", + "t": "nexp", + "n": 9272.8 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271167, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 204.859999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + 6, + 187 + ], + "fightmap": "bg_fight_ally" + }, + "1168": { + "id": 1168, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21168, + "name": "14-188", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 25106.04 + }, + { + "a": "attr", + "t": "nexp", + "n": 9279.75 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271168, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 204.999999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -40, + 175 + ], + "fightmap": "bg_fight_ally" + }, + "1169": { + "id": 1169, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21169, + "name": "14-189", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 25136.52 + }, + { + "a": "attr", + "t": "nexp", + "n": 9286.69 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271169, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 205.139999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -92, + 173 + ], + "fightmap": "bg_fight_ally" + }, + "1170": { + "id": 1170, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21170, + "name": "14-190", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 25167 + }, + { + "a": "attr", + "t": "nexp", + "n": 9293.63 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271170, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 205.279999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -144, + 178 + ], + "fightmap": "bg_fight_ally" + }, + "1171": { + "id": 1171, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21171, + "name": "14-191", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 25197.48 + }, + { + "a": "attr", + "t": "nexp", + "n": 9300.57 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271171, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 205.419999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -186, + 190 + ], + "fightmap": "bg_fight_ally" + }, + "1172": { + "id": 1172, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21172, + "name": "14-192", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 25227.96 + }, + { + "a": "attr", + "t": "nexp", + "n": 9307.51 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271172, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 205.559999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -217, + 212 + ], + "fightmap": "bg_fight_ally" + }, + "1173": { + "id": 1173, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21173, + "name": "14-193", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 25258.44 + }, + { + "a": "attr", + "t": "nexp", + "n": 9314.46 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271173, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 205.699999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -222, + 245 + ], + "fightmap": "bg_fight_ally" + }, + "1174": { + "id": 1174, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21174, + "name": "14-194", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 25288.92 + }, + { + "a": "attr", + "t": "nexp", + "n": 9321.4 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271174, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 205.839999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -210, + 275 + ], + "fightmap": "bg_fight_ally" + }, + "1175": { + "id": 1175, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21175, + "name": "14-195", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 25319.4 + }, + { + "a": "attr", + "t": "nexp", + "n": 9328.34 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271175, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 205.979999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -185, + 303 + ], + "fightmap": "bg_fight_ally" + }, + "1176": { + "id": 1176, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21176, + "name": "14-196", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 25349.88 + }, + { + "a": "attr", + "t": "nexp", + "n": 9335.28 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271176, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 206.119999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -150, + 331 + ], + "fightmap": "bg_fight_ally" + }, + "1177": { + "id": 1177, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21177, + "name": "14-197", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 25380.36 + }, + { + "a": "attr", + "t": "nexp", + "n": 9342.22 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271177, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 206.259999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -116, + 355 + ], + "fightmap": "bg_fight_ally" + }, + "1178": { + "id": 1178, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21178, + "name": "14-198", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 25410.84 + }, + { + "a": "attr", + "t": "nexp", + "n": 9349.17 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271178, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 206.399999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -78, + 379 + ], + "fightmap": "bg_fight_ally" + }, + "1179": { + "id": 1179, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21179, + "name": "14-199", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 25441.32 + }, + { + "a": "attr", + "t": "nexp", + "n": 9356.11 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271179, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 206.539999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -42, + 400 + ], + "fightmap": "bg_fight_ally" + }, + "1180": { + "id": 1180, + "chapter": 14, + "mapbg": "tx_map_ally", + "needLv": 1, + "npcId": 21180, + "name": "14-200", + "gjPrize": [ + { + "a": "attr", + "t": "jinbi", + "n": 25471.8 + }, + { + "a": "attr", + "t": "nexp", + "n": 9363.05 + }, + { + "a": "attr", + "t": "weiwang", + "n": 64.8 + } + ], + "dlz": [], + "passPrize": [ + 260090, + 271180, + 280001, + 280002, + 104, + 105, + 106, + 113 + ], + "base": 206.679999999995, + "round": [ + 60, + 180, + 300 + ], + "drop": [ + 211080, + 220075, + 230001, + 240001, + 250003 + ], + "pos": [ + -6, + 418 + ], + "fightmap": "bg_fight_ally" } } \ No newline at end of file diff --git a/src/json/tanxian_tgjl.json b/src/json/tanxian_tgjl.json index 864f210..0243cd7 100644 --- a/src/json/tanxian_tgjl.json +++ b/src/json/tanxian_tgjl.json @@ -1402,5 +1402,135 @@ ], "chapter": 14, "des": "intr_guanqia_des_1" + }, + "109": { + "id": 109, + "mapId": 1090, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "chapter": 14, + "des": "intr_guanqia_des_1" + }, + "110": { + "id": 110, + "mapId": 1100, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "chapter": 14, + "des": "intr_guanqia_des_1" + }, + "111": { + "id": 111, + "mapId": 1110, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "chapter": 14, + "des": "intr_guanqia_des_1" + }, + "112": { + "id": 112, + "mapId": 1120, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "chapter": 14, + "des": "intr_guanqia_des_1" + }, + "113": { + "id": 113, + "mapId": 1130, + "prize": [ + { + "a": "item", + "t": "4", + "n": 5 + } + ], + "chapter": 14, + "des": "intr_guanqia_des_1" + }, + "114": { + "id": 114, + "mapId": 1140, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "chapter": 14, + "des": "intr_guanqia_des_1" + }, + "115": { + "id": 115, + "mapId": 1150, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "chapter": 14, + "des": "intr_guanqia_des_1" + }, + "116": { + "id": 116, + "mapId": 1160, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "chapter": 14, + "des": "intr_guanqia_des_1" + }, + "117": { + "id": 117, + "mapId": 1170, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "chapter": 14, + "des": "intr_guanqia_des_1" + }, + "118": { + "id": 118, + "mapId": 1180, + "prize": [ + { + "a": "item", + "t": "4", + "n": 5 + } + ], + "chapter": 14, + "des": "intr_guanqia_des_1" } } \ No newline at end of file diff --git a/src/json/task.json b/src/json/task.json index 7527302..7922904 100644 --- a/src/json/task.json +++ b/src/json/task.json @@ -36188,7 +36188,7 @@ "pval": 1075, "name": "intr_task_name_3065", "intr": "intr_task_intr_3034", - "pretask": 3135, + "pretask": 3140, "followtask": 3142, "cond": [], "tiaozhuan": 3, @@ -36220,7 +36220,7 @@ "pval": 1, "name": "intr_task_name_3035", "intr": "intr_task_intr_3035", - "pretask": 3136, + "pretask": 3141, "followtask": 3143, "cond": [], "tiaozhuan": 3, @@ -36247,7 +36247,7 @@ "pval": 1, "name": "intr_task_name_3036", "intr": "intr_task_intr_3036", - "pretask": 3137, + "pretask": 3142, "followtask": 3144, "cond": [ 33 @@ -36281,7 +36281,7 @@ "pval": 10, "name": "intr_task_name_3037", "intr": "intr_task_intr_3037", - "pretask": 3138, + "pretask": 3143, "followtask": 3145, "cond": [ 633 @@ -36310,7 +36310,7 @@ "pval": 10, "name": "intr_task_name_3038", "intr": "intr_task_intr_3038", - "pretask": 3139, + "pretask": 3144, "followtask": 3146, "cond": [], "tiaozhuan": 8, @@ -36342,7 +36342,7 @@ "pval": 1080, "name": "intr_task_name_3066", "intr": "intr_task_intr_3034", - "pretask": 3135, + "pretask": 3145, "followtask": 3147, "cond": [], "tiaozhuan": 3, @@ -36374,7 +36374,7 @@ "pval": 1, "name": "intr_task_name_3035", "intr": "intr_task_intr_3035", - "pretask": 3136, + "pretask": 3146, "followtask": 3148, "cond": [], "tiaozhuan": 3, @@ -36401,7 +36401,7 @@ "pval": 1, "name": "intr_task_name_3036", "intr": "intr_task_intr_3036", - "pretask": 3137, + "pretask": 3147, "followtask": 3149, "cond": [ 33 @@ -36435,7 +36435,7 @@ "pval": 10, "name": "intr_task_name_3037", "intr": "intr_task_intr_3037", - "pretask": 3138, + "pretask": 3148, "followtask": 3150, "cond": [ 633 @@ -36464,13 +36464,3093 @@ "pval": 10, "name": "intr_task_name_3038", "intr": "intr_task_intr_3038", - "pretask": 3139, - "followtask": 0, + "pretask": 3149, + "followtask": 3151, "cond": [], "tiaozhuan": 8, "order": 1151, "special": 0, "show": "" + }, + "3151": { + "id": 3151, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1085, + "name": "intr_task_name_3067", + "intr": "intr_task_intr_3034", + "pretask": 3150, + "followtask": 3152, + "cond": [], + "tiaozhuan": 3, + "order": 1152, + "special": 0, + "show": "" + }, + "3152": { + "id": 3152, + "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", + "intr": "intr_task_intr_3035", + "pretask": 3151, + "followtask": 3153, + "cond": [], + "tiaozhuan": 3, + "order": 1153, + "special": 0, + "show": "" + }, + "3153": { + "id": 3153, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3152, + "followtask": 3154, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1154, + "special": 0, + "show": "" + }, + "3154": { + "id": 3154, + "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", + "intr": "intr_task_intr_3037", + "pretask": 3153, + "followtask": 3155, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1155, + "special": 0, + "show": "" + }, + "3155": { + "id": 3155, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3154, + "followtask": 3156, + "cond": [], + "tiaozhuan": 8, + "order": 1156, + "special": 0, + "show": "" + }, + "3156": { + "id": 3156, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1090, + "name": "intr_task_name_3068", + "intr": "intr_task_intr_3034", + "pretask": 3155, + "followtask": 3157, + "cond": [], + "tiaozhuan": 3, + "order": 1157, + "special": 0, + "show": "" + }, + "3157": { + "id": 3157, + "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", + "intr": "intr_task_intr_3035", + "pretask": 3156, + "followtask": 3158, + "cond": [], + "tiaozhuan": 3, + "order": 1158, + "special": 0, + "show": "" + }, + "3158": { + "id": 3158, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3157, + "followtask": 3159, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1159, + "special": 0, + "show": "" + }, + "3159": { + "id": 3159, + "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", + "intr": "intr_task_intr_3037", + "pretask": 3158, + "followtask": 3160, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1160, + "special": 0, + "show": "" + }, + "3160": { + "id": 3160, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3159, + "followtask": 3161, + "cond": [], + "tiaozhuan": 8, + "order": 1161, + "special": 0, + "show": "" + }, + "3161": { + "id": 3161, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1095, + "name": "intr_task_name_3069", + "intr": "intr_task_intr_3034", + "pretask": 3160, + "followtask": 3162, + "cond": [], + "tiaozhuan": 3, + "order": 1162, + "special": 0, + "show": "" + }, + "3162": { + "id": 3162, + "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", + "intr": "intr_task_intr_3035", + "pretask": 3161, + "followtask": 3163, + "cond": [], + "tiaozhuan": 3, + "order": 1163, + "special": 0, + "show": "" + }, + "3163": { + "id": 3163, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3162, + "followtask": 3164, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1164, + "special": 0, + "show": "" + }, + "3164": { + "id": 3164, + "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", + "intr": "intr_task_intr_3037", + "pretask": 3163, + "followtask": 3165, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1165, + "special": 0, + "show": "" + }, + "3165": { + "id": 3165, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3164, + "followtask": 3166, + "cond": [], + "tiaozhuan": 8, + "order": 1166, + "special": 0, + "show": "" + }, + "3166": { + "id": 3166, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1100, + "name": "intr_task_name_3070", + "intr": "intr_task_intr_3034", + "pretask": 3165, + "followtask": 3167, + "cond": [], + "tiaozhuan": 3, + "order": 1167, + "special": 0, + "show": "" + }, + "3167": { + "id": 3167, + "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", + "intr": "intr_task_intr_3035", + "pretask": 3166, + "followtask": 3168, + "cond": [], + "tiaozhuan": 3, + "order": 1168, + "special": 0, + "show": "" + }, + "3168": { + "id": 3168, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3167, + "followtask": 3169, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1169, + "special": 0, + "show": "" + }, + "3169": { + "id": 3169, + "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", + "intr": "intr_task_intr_3037", + "pretask": 3168, + "followtask": 3170, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1170, + "special": 0, + "show": "" + }, + "3170": { + "id": 3170, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3169, + "followtask": 3171, + "cond": [], + "tiaozhuan": 8, + "order": 1171, + "special": 0, + "show": "" + }, + "3171": { + "id": 3171, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1105, + "name": "intr_task_name_3071", + "intr": "intr_task_intr_3034", + "pretask": 3170, + "followtask": 3172, + "cond": [], + "tiaozhuan": 3, + "order": 1172, + "special": 0, + "show": "" + }, + "3172": { + "id": 3172, + "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", + "intr": "intr_task_intr_3035", + "pretask": 3171, + "followtask": 3173, + "cond": [], + "tiaozhuan": 3, + "order": 1173, + "special": 0, + "show": "" + }, + "3173": { + "id": 3173, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3172, + "followtask": 3174, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1174, + "special": 0, + "show": "" + }, + "3174": { + "id": 3174, + "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", + "intr": "intr_task_intr_3037", + "pretask": 3173, + "followtask": 3175, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1175, + "special": 0, + "show": "" + }, + "3175": { + "id": 3175, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3174, + "followtask": 3176, + "cond": [], + "tiaozhuan": 8, + "order": 1176, + "special": 0, + "show": "" + }, + "3176": { + "id": 3176, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1110, + "name": "intr_task_name_3072", + "intr": "intr_task_intr_3034", + "pretask": 3175, + "followtask": 3177, + "cond": [], + "tiaozhuan": 3, + "order": 1177, + "special": 0, + "show": "" + }, + "3177": { + "id": 3177, + "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", + "intr": "intr_task_intr_3035", + "pretask": 3176, + "followtask": 3178, + "cond": [], + "tiaozhuan": 3, + "order": 1178, + "special": 0, + "show": "" + }, + "3178": { + "id": 3178, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3177, + "followtask": 3179, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1179, + "special": 0, + "show": "" + }, + "3179": { + "id": 3179, + "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", + "intr": "intr_task_intr_3037", + "pretask": 3178, + "followtask": 3180, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1180, + "special": 0, + "show": "" + }, + "3180": { + "id": 3180, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3179, + "followtask": 3181, + "cond": [], + "tiaozhuan": 8, + "order": 1181, + "special": 0, + "show": "" + }, + "3181": { + "id": 3181, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1115, + "name": "intr_task_name_3073", + "intr": "intr_task_intr_3034", + "pretask": 3180, + "followtask": 3182, + "cond": [], + "tiaozhuan": 3, + "order": 1182, + "special": 0, + "show": "" + }, + "3182": { + "id": 3182, + "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", + "intr": "intr_task_intr_3035", + "pretask": 3181, + "followtask": 3183, + "cond": [], + "tiaozhuan": 3, + "order": 1183, + "special": 0, + "show": "" + }, + "3183": { + "id": 3183, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3182, + "followtask": 3184, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1184, + "special": 0, + "show": "" + }, + "3184": { + "id": 3184, + "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", + "intr": "intr_task_intr_3037", + "pretask": 3183, + "followtask": 3185, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1185, + "special": 0, + "show": "" + }, + "3185": { + "id": 3185, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3184, + "followtask": 3186, + "cond": [], + "tiaozhuan": 8, + "order": 1186, + "special": 0, + "show": "" + }, + "3186": { + "id": 3186, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1120, + "name": "intr_task_name_3074", + "intr": "intr_task_intr_3034", + "pretask": 3185, + "followtask": 3187, + "cond": [], + "tiaozhuan": 3, + "order": 1187, + "special": 0, + "show": "" + }, + "3187": { + "id": 3187, + "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", + "intr": "intr_task_intr_3035", + "pretask": 3186, + "followtask": 3188, + "cond": [], + "tiaozhuan": 3, + "order": 1188, + "special": 0, + "show": "" + }, + "3188": { + "id": 3188, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3187, + "followtask": 3189, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1189, + "special": 0, + "show": "" + }, + "3189": { + "id": 3189, + "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", + "intr": "intr_task_intr_3037", + "pretask": 3188, + "followtask": 3190, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1190, + "special": 0, + "show": "" + }, + "3190": { + "id": 3190, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3189, + "followtask": 3191, + "cond": [], + "tiaozhuan": 8, + "order": 1191, + "special": 0, + "show": "" + }, + "3191": { + "id": 3191, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1125, + "name": "intr_task_name_3075", + "intr": "intr_task_intr_3034", + "pretask": 3190, + "followtask": 3192, + "cond": [], + "tiaozhuan": 3, + "order": 1192, + "special": 0, + "show": "" + }, + "3192": { + "id": 3192, + "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", + "intr": "intr_task_intr_3035", + "pretask": 3191, + "followtask": 3193, + "cond": [], + "tiaozhuan": 3, + "order": 1193, + "special": 0, + "show": "" + }, + "3193": { + "id": 3193, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3192, + "followtask": 3194, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1194, + "special": 0, + "show": "" + }, + "3194": { + "id": 3194, + "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", + "intr": "intr_task_intr_3037", + "pretask": 3193, + "followtask": 3195, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1195, + "special": 0, + "show": "" + }, + "3195": { + "id": 3195, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3194, + "followtask": 3196, + "cond": [], + "tiaozhuan": 8, + "order": 1196, + "special": 0, + "show": "" + }, + "3196": { + "id": 3196, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1130, + "name": "intr_task_name_3076", + "intr": "intr_task_intr_3034", + "pretask": 3195, + "followtask": 3197, + "cond": [], + "tiaozhuan": 3, + "order": 1197, + "special": 0, + "show": "" + }, + "3197": { + "id": 3197, + "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", + "intr": "intr_task_intr_3035", + "pretask": 3196, + "followtask": 3198, + "cond": [], + "tiaozhuan": 3, + "order": 1198, + "special": 0, + "show": "" + }, + "3198": { + "id": 3198, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3197, + "followtask": 3199, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1199, + "special": 0, + "show": "" + }, + "3199": { + "id": 3199, + "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", + "intr": "intr_task_intr_3037", + "pretask": 3198, + "followtask": 3200, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1200, + "special": 0, + "show": "" + }, + "3200": { + "id": 3200, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3199, + "followtask": 3201, + "cond": [], + "tiaozhuan": 8, + "order": 1201, + "special": 0, + "show": "" + }, + "3201": { + "id": 3201, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1135, + "name": "intr_task_name_3077", + "intr": "intr_task_intr_3034", + "pretask": 3200, + "followtask": 3202, + "cond": [], + "tiaozhuan": 3, + "order": 1202, + "special": 0, + "show": "" + }, + "3202": { + "id": 3202, + "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", + "intr": "intr_task_intr_3035", + "pretask": 3201, + "followtask": 3203, + "cond": [], + "tiaozhuan": 3, + "order": 1203, + "special": 0, + "show": "" + }, + "3203": { + "id": 3203, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3202, + "followtask": 3204, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1204, + "special": 0, + "show": "" + }, + "3204": { + "id": 3204, + "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", + "intr": "intr_task_intr_3037", + "pretask": 3203, + "followtask": 3205, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1205, + "special": 0, + "show": "" + }, + "3205": { + "id": 3205, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3204, + "followtask": 3206, + "cond": [], + "tiaozhuan": 8, + "order": 1206, + "special": 0, + "show": "" + }, + "3206": { + "id": 3206, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1140, + "name": "intr_task_name_3078", + "intr": "intr_task_intr_3034", + "pretask": 3205, + "followtask": 3207, + "cond": [], + "tiaozhuan": 3, + "order": 1207, + "special": 0, + "show": "" + }, + "3207": { + "id": 3207, + "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", + "intr": "intr_task_intr_3035", + "pretask": 3206, + "followtask": 3208, + "cond": [], + "tiaozhuan": 3, + "order": 1208, + "special": 0, + "show": "" + }, + "3208": { + "id": 3208, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3207, + "followtask": 3209, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1209, + "special": 0, + "show": "" + }, + "3209": { + "id": 3209, + "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", + "intr": "intr_task_intr_3037", + "pretask": 3208, + "followtask": 3210, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1210, + "special": 0, + "show": "" + }, + "3210": { + "id": 3210, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3209, + "followtask": 3211, + "cond": [], + "tiaozhuan": 8, + "order": 1211, + "special": 0, + "show": "" + }, + "3211": { + "id": 3211, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1145, + "name": "intr_task_name_3079", + "intr": "intr_task_intr_3034", + "pretask": 3210, + "followtask": 3212, + "cond": [], + "tiaozhuan": 3, + "order": 1212, + "special": 0, + "show": "" + }, + "3212": { + "id": 3212, + "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", + "intr": "intr_task_intr_3035", + "pretask": 3211, + "followtask": 3213, + "cond": [], + "tiaozhuan": 3, + "order": 1213, + "special": 0, + "show": "" + }, + "3213": { + "id": 3213, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3212, + "followtask": 3214, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1214, + "special": 0, + "show": "" + }, + "3214": { + "id": 3214, + "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", + "intr": "intr_task_intr_3037", + "pretask": 3213, + "followtask": 3215, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1215, + "special": 0, + "show": "" + }, + "3215": { + "id": 3215, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3214, + "followtask": 3216, + "cond": [], + "tiaozhuan": 8, + "order": 1216, + "special": 0, + "show": "" + }, + "3216": { + "id": 3216, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1150, + "name": "intr_task_name_3080", + "intr": "intr_task_intr_3034", + "pretask": 3215, + "followtask": 3217, + "cond": [], + "tiaozhuan": 3, + "order": 1217, + "special": 0, + "show": "" + }, + "3217": { + "id": 3217, + "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", + "intr": "intr_task_intr_3035", + "pretask": 3216, + "followtask": 3218, + "cond": [], + "tiaozhuan": 3, + "order": 1218, + "special": 0, + "show": "" + }, + "3218": { + "id": 3218, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3217, + "followtask": 3219, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1219, + "special": 0, + "show": "" + }, + "3219": { + "id": 3219, + "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", + "intr": "intr_task_intr_3037", + "pretask": 3218, + "followtask": 3220, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1220, + "special": 0, + "show": "" + }, + "3220": { + "id": 3220, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3219, + "followtask": 3221, + "cond": [], + "tiaozhuan": 8, + "order": 1221, + "special": 0, + "show": "" + }, + "3221": { + "id": 3221, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1155, + "name": "intr_task_name_3081", + "intr": "intr_task_intr_3034", + "pretask": 3220, + "followtask": 3222, + "cond": [], + "tiaozhuan": 3, + "order": 1222, + "special": 0, + "show": "" + }, + "3222": { + "id": 3222, + "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", + "intr": "intr_task_intr_3035", + "pretask": 3221, + "followtask": 3223, + "cond": [], + "tiaozhuan": 3, + "order": 1223, + "special": 0, + "show": "" + }, + "3223": { + "id": 3223, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3222, + "followtask": 3224, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1224, + "special": 0, + "show": "" + }, + "3224": { + "id": 3224, + "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", + "intr": "intr_task_intr_3037", + "pretask": 3223, + "followtask": 3225, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1225, + "special": 0, + "show": "" + }, + "3225": { + "id": 3225, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3224, + "followtask": 3226, + "cond": [], + "tiaozhuan": 8, + "order": 1226, + "special": 0, + "show": "" + }, + "3226": { + "id": 3226, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1160, + "name": "intr_task_name_3082", + "intr": "intr_task_intr_3034", + "pretask": 3225, + "followtask": 3227, + "cond": [], + "tiaozhuan": 3, + "order": 1227, + "special": 0, + "show": "" + }, + "3227": { + "id": 3227, + "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", + "intr": "intr_task_intr_3035", + "pretask": 3226, + "followtask": 3228, + "cond": [], + "tiaozhuan": 3, + "order": 1228, + "special": 0, + "show": "" + }, + "3228": { + "id": 3228, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3227, + "followtask": 3229, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1229, + "special": 0, + "show": "" + }, + "3229": { + "id": 3229, + "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", + "intr": "intr_task_intr_3037", + "pretask": 3228, + "followtask": 3230, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1230, + "special": 0, + "show": "" + }, + "3230": { + "id": 3230, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3229, + "followtask": 3231, + "cond": [], + "tiaozhuan": 8, + "order": 1231, + "special": 0, + "show": "" + }, + "3231": { + "id": 3231, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1165, + "name": "intr_task_name_3083", + "intr": "intr_task_intr_3034", + "pretask": 3230, + "followtask": 3232, + "cond": [], + "tiaozhuan": 3, + "order": 1232, + "special": 0, + "show": "" + }, + "3232": { + "id": 3232, + "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", + "intr": "intr_task_intr_3035", + "pretask": 3231, + "followtask": 3233, + "cond": [], + "tiaozhuan": 3, + "order": 1233, + "special": 0, + "show": "" + }, + "3233": { + "id": 3233, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3232, + "followtask": 3234, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1234, + "special": 0, + "show": "" + }, + "3234": { + "id": 3234, + "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", + "intr": "intr_task_intr_3037", + "pretask": 3233, + "followtask": 3235, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1235, + "special": 0, + "show": "" + }, + "3235": { + "id": 3235, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3234, + "followtask": 3236, + "cond": [], + "tiaozhuan": 8, + "order": 1236, + "special": 0, + "show": "" + }, + "3236": { + "id": 3236, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1170, + "name": "intr_task_name_3084", + "intr": "intr_task_intr_3034", + "pretask": 3235, + "followtask": 3237, + "cond": [], + "tiaozhuan": 3, + "order": 1237, + "special": 0, + "show": "" + }, + "3237": { + "id": 3237, + "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", + "intr": "intr_task_intr_3035", + "pretask": 3236, + "followtask": 3238, + "cond": [], + "tiaozhuan": 3, + "order": 1238, + "special": 0, + "show": "" + }, + "3238": { + "id": 3238, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3237, + "followtask": 3239, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1239, + "special": 0, + "show": "" + }, + "3239": { + "id": 3239, + "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", + "intr": "intr_task_intr_3037", + "pretask": 3238, + "followtask": 3240, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1240, + "special": 0, + "show": "" + }, + "3240": { + "id": 3240, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3239, + "followtask": 3241, + "cond": [], + "tiaozhuan": 8, + "order": 1241, + "special": 0, + "show": "" + }, + "3241": { + "id": 3241, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1175, + "name": "intr_task_name_3085", + "intr": "intr_task_intr_3034", + "pretask": 3240, + "followtask": 3242, + "cond": [], + "tiaozhuan": 3, + "order": 1242, + "special": 0, + "show": "" + }, + "3242": { + "id": 3242, + "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", + "intr": "intr_task_intr_3035", + "pretask": 3241, + "followtask": 3243, + "cond": [], + "tiaozhuan": 3, + "order": 1243, + "special": 0, + "show": "" + }, + "3243": { + "id": 3243, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3242, + "followtask": 3244, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1244, + "special": 0, + "show": "" + }, + "3244": { + "id": 3244, + "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", + "intr": "intr_task_intr_3037", + "pretask": 3243, + "followtask": 3245, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1245, + "special": 0, + "show": "" + }, + "3245": { + "id": 3245, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3244, + "followtask": 3246, + "cond": [], + "tiaozhuan": 8, + "order": 1246, + "special": 0, + "show": "" + }, + "3246": { + "id": 3246, + "type": 2, + "stype": 1, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "item", + "t": "2", + "n": 50 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1180, + "name": "intr_task_name_3086", + "intr": "intr_task_intr_3034", + "pretask": 3245, + "followtask": 3247, + "cond": [], + "tiaozhuan": 3, + "order": 1247, + "special": 0, + "show": "" + }, + "3247": { + "id": 3247, + "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", + "intr": "intr_task_intr_3035", + "pretask": 3246, + "followtask": 3248, + "cond": [], + "tiaozhuan": 3, + "order": 1248, + "special": 0, + "show": "" + }, + "3248": { + "id": 3248, + "type": 2, + "stype": 134, + "prize": [ + { + "a": "item", + "t": "633", + "n": 10 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 1, + "name": "intr_task_name_3036", + "intr": "intr_task_intr_3036", + "pretask": 3247, + "followtask": 3249, + "cond": [ + 33 + ], + "tiaozhuan": 74, + "order": 1249, + "special": 0, + "show": "" + }, + "3249": { + "id": 3249, + "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", + "intr": "intr_task_intr_3037", + "pretask": 3248, + "followtask": 3250, + "cond": [ + 633 + ], + "tiaozhuan": 74, + "order": 1250, + "special": 0, + "show": "" + }, + "3250": { + "id": 3250, + "type": 2, + "stype": 133, + "prize": [ + { + "a": "attr", + "t": "nexp", + "n": 5000 + }, + { + "a": "attr", + "t": "jinbi", + "n": 20000 + } + ], + "pval": 10, + "name": "intr_task_name_3038", + "intr": "intr_task_intr_3038", + "pretask": 3249, + "followtask": 0, + "cond": [], + "tiaozhuan": 8, + "order": 1251, + "special": 0, + "show": "" } }, "3": { diff --git a/src/oss/blackapi.json b/src/oss/blackapi.json new file mode 100644 index 0000000..1610ea1 --- /dev/null +++ b/src/oss/blackapi.json @@ -0,0 +1,3 @@ +[ + +] \ No newline at end of file diff --git a/src/public/actionLog/actionLog.ts b/src/public/actionLog/actionLog.ts index a3e64b2..2ca05a1 100644 --- a/src/public/actionLog/actionLog.ts +++ b/src/public/actionLog/actionLog.ts @@ -1,9 +1,33 @@ +import { PublicShared } from "../../shared/public/public"; export class ActionLog { - static async initDayLog(uid: string) { - G.mongodb.cActionLog('day').updateOne({ uid: uid, type: 'day' }, { $set: { log: {} } }, { upsert: true }); + /** + * 每天0点的时候,重置所有的统计数据 + */ + static async initAllDayLog() { + await G.mongodb.cActionLog('day').updateMany({type: 'day' }, { + $set: { + log: {}, + //增加刷新时间 + lastTime: PublicShared.getToDayZeroTime(G.time) + } + }); } + + /** + * 重置某个玩家的统计信息 + * @param uid + */ + // static async initDayLog(uid: string) { + // G.mongodb.cActionLog('day').updateOne({ uid: uid, type: 'day' }, { + // $set: { + // log: {}, + // //增加刷新时间 + // lastTime: PublicShared.getToDayZeroTime(G.time) + // } + // }, { 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 }); diff --git a/src/public/scheduler/scheduler_newDay.ts b/src/public/scheduler/scheduler_newDay.ts index 4ca793b..2e6598a 100644 --- a/src/public/scheduler/scheduler_newDay.ts +++ b/src/public/scheduler/scheduler_newDay.ts @@ -4,11 +4,14 @@ import { Wjjl } from "../../module/collection_wjjl"; import { ZhanLingTasks } from "../zhanling"; import { setGud } from '../gud'; import { EmailFun } from '../email'; +import { ActionLog } from '../actionLog/actionLog'; +import { clusterFun } from '../../clusterFunction'; +import { clusterRunOnce } from '../../clusterUtils'; export class SchedulerNewDayLocalCtor extends Scheduler { id: schedulerType = 'newDay_local_ctor'; - time = 0; + time = 1; name = '定时推送跨天通知'; type: 'day' | 'week' = 'day'; @@ -23,6 +26,41 @@ export class SchedulerNewDayLocalCtor extends Scheduler { } async start() { + + clusterRunOnce(async ()=>{ + //这个定时器会被每个进程都启动,这是这部分逻辑,应该只执行1次 + + //重置所有的ActionLog + await ActionLog.initAllDayLog(); + + // 每周一,发放终身卡 + (async () => { + if (PublicShared.getWeek(G.time) == 1) { + let logs = await G.mongodb.collection("payLogNew").find( + { key: "zhongshenka", del_time: { $exists: false } }, { projection: { _id: 0, } } + ).toArray(); + + if (logs.length == 0) { + console.log("没有终身卡数据,不发放终身卡"); + } + let con = G.gc.payEmail.zhongshenka.filter(e => e.day == 7)[0]; + for (let i = 0; i < logs.length; i++) { + console.log("发放终身卡", logs[i].uid); + // 发送邮件 + EmailFun.addEmail({ + uid: logs[i].uid, + type: "system", + title: con.title, + content: con.content, + contentInsertArr: [], + createTime: G.time, + prize:con.prize, + }) + } + } + })() + }) + let users = Object.values(G.server.uid_connections) if (users.length) { for (let item of users) { @@ -56,34 +94,6 @@ export class SchedulerNewDayLocalCtor extends Scheduler { G.server.broadcastClusterMsg('msg_s2c/NewDay', { time: this.zeroTime }); } - (async () => { - // 每周一,发放终身卡 - if (PublicShared.getWeek(G.time) != 1) { - console.log("不是周一,不发放终身卡", PublicShared.getWeek(G.time)); - return - }; - - let logs = await G.mongodb.collection("payLogNew").find( - { key: "zhongshenka", del_time: { $exists: false } }, { projection: { _id: 0, } } - ).toArray(); - - if (logs.length == 0) { - console.log("没有终身卡数据,不发放终身卡"); - } - let con = G.gc.payEmail.zhongshenka.filter(e => e.day == 7)[0]; - for (let i = 0; i < logs.length; i++) { - console.log("发放终身卡", logs[i].uid); - // 发送邮件 - EmailFun.addEmail({ - uid: logs[i].uid, - type: "system", - title: con.title, - content: con.content, - contentInsertArr: [], - createTime: G.time, - prize:con.prize, - }) - } - })() + await this.record(); } } diff --git a/src/public/scheduler/scheduler_zhanling.ts b/src/public/scheduler/scheduler_zhanling.ts index b77d0e5..b00fdf6 100644 --- a/src/public/scheduler/scheduler_zhanling.ts +++ b/src/public/scheduler/scheduler_zhanling.ts @@ -1,5 +1,5 @@ -import {PublicShared} from '../../shared/public/public'; -import {Scheduler, schedulerType} from './scheduler'; +import { PublicShared } from '../../shared/public/public'; +import { Scheduler, schedulerType } from './scheduler'; export class SchedulerZhanLing extends Scheduler { @@ -12,12 +12,12 @@ export class SchedulerZhanLing extends Scheduler { this.isReady = false; return } - let data = await this.db.findOne({type: this.id}); + let data = await this.db.findOne({ type: this.id }); if (!data) { // 开服时间整除战令周期 - let round = Math.floor(PublicShared.getOpenServerDay() / G.gc.zhanling.eventOpen.day) + let round = Math.floor((PublicShared.getOpenServerDay() - 1) / G.gc.zhanling.eventOpen.day) let prev_run_time = PublicShared.getToDayZeroTime(G.openTime) + round * G.gc.zhanling.eventOpen.day * 86400 - this.db.updateOne({type: this.id}, {$set: {lastRunTime: prev_run_time, round: round}}, {upsert: true}); + this.db.updateOne({ type: this.id }, { $set: { lastRunTime: prev_run_time, round: round } }, { upsert: true }); } if (!data || G.time > PublicShared.getToDayZeroTime(data.lastRunTime) + 24 * 3600 * G.gc.zhanling.eventOpen.day) { @@ -33,11 +33,11 @@ export class SchedulerZhanLing extends Scheduler { // 开服时间整除战令周期 let round = Math.floor(PublicShared.getOpenServerDay() / G.gc.zhanling.eventOpen.day) // lastRunTime仅储存最大值,问题记录: 本地多人启动服务时,有调用此定时器的情况下,时间会混乱。 - await this.db.updateOne({type: this.id}, {$set: {round: round}, $max: {lastRunTime: G.time}}, {upsert: true}); + await this.db.updateOne({ type: this.id }, { $set: { round: round }, $max: { lastRunTime: G.time } }, { 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: {}}}); + G.mongodb.collection('zhanling').updateMany({ type: 'round' }, { $set: { data: {} } }); } } \ No newline at end of file diff --git a/src/public/task.ts b/src/public/task.ts index ba5d130..89da6db 100644 --- a/src/public/task.ts +++ b/src/public/task.ts @@ -1,9 +1,10 @@ -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"; +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"; +import ApiRecTask from "../api_s2c/event/zhanling/ApiRecTask"; let taskDict = {}; const SHUJUKU = "task"; @@ -114,7 +115,7 @@ export class TaskFun { 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"]}); + await G.mongodb.collection(SHUJUKU).deleteMany({ uid: call.uid, taskid: _task["taskid"] }); continue } @@ -142,12 +143,12 @@ export class TaskFun { // 任务值上限检测 _resVal = _resVal > _pval ? _pval : _resVal; // 设置任务 - let _setData = {nval: _resVal}; - let _where = {taskid: _task["taskid"]}; + let _setData = { nval: _resVal }; + let _where = { taskid: _task["taskid"] }; await this.setTask(uid, _where, _setData); if (_resVal == _pval) { - G.server.sendMsgByUid(call.uid, 'msg_s2c/TaskChange', {..._task, nval: _resVal}) + G.server.sendMsgByUid(call.uid, 'msg_s2c/TaskChange', { ..._task, nval: _resVal }) } } } @@ -187,7 +188,7 @@ export class TaskFun { // 重置每日任务 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 _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); } @@ -197,7 +198,7 @@ export class TaskFun { * 重置每日任务 */ static async resetDailyTask(call: ApiCall, type: number = 1) { - await this.delTasks(call.uid, {type: type}); + await this.delTasks(call.uid, { type: type }); // 该限制改到红点检测判断,避免此处注释后,红点检测与账号创建初始化任务并发。 // if (PublicShared.chkSameDate(call.conn.gud.cTime, G.time)) return; let _taskCons = await this.getTaskConsByType(type); @@ -236,7 +237,7 @@ export class TaskFun { static async getFinishByStype(call: ApiCall, stype: number, where: {}) { // 任务刷新 await this.refreshTask(call); - Object.assign(where, {stype: stype}); + Object.assign(where, { stype: stype }); let _r = await this.getUserTaksList(call.uid, where); return _r; } @@ -255,11 +256,33 @@ export class TaskFun { // Object.assign(where, { type: { $in: ttype } }) for (let index = 0; index < ttype.length; index++) { const _type = ttype[index]; - Object.assign(_w, {type: _type, ...where}); + Object.assign(_w, { type: _type, ...where }); if (_finishType.indexOf(_type) != -1) { delete _w["finish"]; } let _tmp = await this.getUserTaksList(call.uid, _w); + // 没有未完成任务 + // 检测是否有新加任务 + if (_tmp.length == 0) { + let rectask = (await G.mongodb.collection('task').find( + { uid: call.uid, type: _type }, { projection: { taskid: 1, _id: 0 } } + ).toArray()).map(e => e.taskid); + + for (let taskid of rectask) { + let conf = G.gc.task[_type][taskid]; + // 配置不存在 + // 没有后续任务 + // 后续任务已完成 + if (!conf || !conf.followtask || rectask.includes(conf.followtask)) { + continue + } + + // 生成后续任务 + await this.setTaskInfo(call, conf.followtask, { type: _type }); + break; + } + _tmp = await this.getUserTaksList(call.uid, _w); + } _r[_type] = _tmp; } return _r; @@ -313,7 +336,7 @@ export class TaskFun { * @param call */ static async updateMainTask(call: ApiCall) { - let data = await G.mongodb.collection(SHUJUKU).findOne({uid: call.uid, type: 2, finish: 0}); + let data = await G.mongodb.collection(SHUJUKU).findOne({ uid: call.uid, type: 2, finish: 0 }); let _ftaskCon = await TaskFun.getTaskConByType(2, data.taskid); // @ts-ignore @@ -324,14 +347,14 @@ export class TaskFun { type: 2, finish: 0, taskid: data.taskid - }, {$set: {...newTask, nval: data.nval || newTask.nval, retime: data.retime,}}, {upsert: true}) + }, { $set: { ...newTask, nval: data.nval || newTask.nval, retime: data.retime, } }, { upsert: true }) } /** * 生成所有任务 */ static async generateAllTask(call: ApiCall) { - let _r = await G.mongodb.collection(SHUJUKU).count({uid: call.uid}); + let _r = await G.mongodb.collection(SHUJUKU).count({ uid: call.uid }); if (_r > 0) return; let _taskInfo = []; let _con = G.gc.task; @@ -352,7 +375,7 @@ export class TaskFun { /**生成指定类型任务-初始化 */ static async reInitTask(call: ApiCall, type: string) { // 查询类型任务是否存在 - let _r = await G.mongodb.collection(SHUJUKU).count({uid: call.uid, type: ~~type}); + let _r = await G.mongodb.collection(SHUJUKU).count({ uid: call.uid, type: ~~type }); let _taskInfo = []; if (_r == 0) { let _con = G.gc.task; @@ -374,7 +397,7 @@ export class TaskFun { */ static async getUserTaksList(uid: string, where: {}) { // type : 1 主线 2 成就 3 每日 - Object.assign(where, {uid: uid}); + Object.assign(where, { uid: uid }); let _taskInfo = await G.mongodb.collection(SHUJUKU).find(where).toArray(); _taskInfo.forEach(e => { if (e._id) delete e._id; @@ -386,7 +409,7 @@ export class TaskFun { * 删除相关任务 */ static async delTasks(uid: string, where: { type: number; }) { - Object.assign(where, {uid: uid}); + Object.assign(where, { uid: uid }); await G.mongodb.collection(SHUJUKU).deleteMany(where); } @@ -420,8 +443,8 @@ export class TaskFun { if (Object.keys(setData).length == 0) { return; } - Object.assign(where, {uid}); - setData = {$set: setData}; + Object.assign(where, { uid }); + setData = { $set: setData }; await G.mongodb.collection(SHUJUKU).updateOne(where, setData); } @@ -445,7 +468,7 @@ export class TaskFun { 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, '$expr': { + uid: call.uid, type: { $in: _values }, finish: 0, '$expr': { $lte: ["$pval", "$nval"] } }; @@ -534,10 +557,10 @@ export class TaskAllEmitFun { }); if (_val > (usertasklog?.maxherolv | 0)) { await G.mongodb.collection('playerInfo', 'usertasklog').updateOne({ - uid: node.call.conn.uid, - type: 'usertasklog' - }, - {$set: {maxherolv: _val}}); + uid: node.call.conn.uid, + type: 'usertasklog' + }, + { $set: { maxherolv: _val } }); } // 干部等级达到 n 级 G.emit("Class_task_106", 'Class_task_106', node.call, _val, 0); @@ -580,10 +603,10 @@ export class TaskAllEmitFun { }); if (_val > (usertasklog?.maxequiplv | 0)) { await G.mongodb.collection('playerInfo', 'usertasklog').updateOne({ - uid: node.call.conn.uid, - type: 'usertasklog' - }, - {$set: {maxequiplv: _val}}); + uid: node.call.conn.uid, + type: 'usertasklog' + }, + { $set: { maxequiplv: _val } }); } G.emit("Class_task_112", 'Class_task_112', node.call, _val, 0); // 有 n 件强化 配置 等级装备 后面复写正确值 @@ -604,10 +627,10 @@ export class TaskAllEmitFun { }); if (_val > (usertasklog?.maxequiplv | 0)) { await G.mongodb.collection('playerInfo', 'usertasklog').updateOne({ - uid: node.call.conn.uid, - type: 'usertasklog' - }, - {$set: {maxequiplv: _val}}); + uid: node.call.conn.uid, + type: 'usertasklog' + }, + { $set: { maxequiplv: _val } }); } // 有 n 件强化 配置 等级装备 后面复写正确值 G.emit("Class_task_113", 'Class_task_113', node.call, 0, 0); @@ -622,10 +645,10 @@ export class TaskAllEmitFun { 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})}); + uid: node.call.conn.uid, + type: 'usertasklog' + }, + { $inc: G.mongodb.createTreeObj({ key: `herocolor.${_color}`, val: 1 }) }); } } } @@ -651,7 +674,7 @@ export class TaskAllEmitFun { await G.mongodb.collection('playerInfo', 'usertasklog').updateOne({ uid: node.call.uid, type: 'usertasklog' - }, {$set: {equipcolor: usertasklog.equipcolor}}) + }, { $set: { equipcolor: usertasklog.equipcolor } }) } // if (node.call.service.name == 'chongzhi/Open' && node.return.isSucc) { // // 累计充值 n 钻石 数量后面复写 @@ -690,10 +713,10 @@ export class TaskAllEmitFun { } _val = _val + usertasklog.friendAsk + usertasklog.sendGift await G.mongodb.collection('playerInfo', 'usertasklog').updateOne({ - uid: node.call.conn.uid, - type: 'usertasklog' - }, - {$set: {friendAsk: _val}}); + 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) { @@ -852,7 +875,7 @@ export class TaskAllEmitFun { uid: node.call.conn.uid, type: 'usertasklog' }); - let _setData = {$set: {}}; // 更新配件记录 + let _setData = { $set: {} }; // 更新配件记录 let peijianCon = G.gc.peijian; let _lv = 0; @@ -881,9 +904,9 @@ export class TaskAllEmitFun { // 配件升级到 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' - }, + uid: node.call.conn.uid, + type: 'usertasklog' + }, _setData); } } diff --git a/src/setWs.ts b/src/setWs.ts index a1186a8..5b6e89f 100644 --- a/src/setWs.ts +++ b/src/setWs.ts @@ -47,6 +47,12 @@ export async function createWs() { G.argv.serverType == 'msg' && G.config.corssWsUrl && await createWsClient(); } + + /**每分钟刷新一次黑名单API接口 */ + setInterval(()=>{ + getBlackList(); + },60000); + getBlackList(); } function getWssFile() { @@ -63,6 +69,21 @@ function getWssFile() { } const writeList = ['hongdian/Get'] +/**当前锁定的API接口 */ +let blackApi = []; + +async function getBlackList(){ + let confFile = resolve(__dirname, 'oss/blackapi.json'); + if (existsSync(confFile)) { + try { + blackApi = await JSON.parse(readFileSync(confFile, 'utf-8')); + } catch (e) { + blackApi = []; + } + }else{ + blackApi = []; + } +} function setWs(server: WsServer) { @@ -101,15 +122,17 @@ function setWs(server: WsServer) { //执行 API 接口实现之前 server.flows.preApiCallFlow.push(async call => { - // 临时停服维护方案 - // let lng = { - // "zh-TW": "停服維護中,請等待!", - // "ko": "서버 점검 중, 잠시만 기다려 주세요.", - // "ja": "サーバーメンテナンス中、しばらくお待ちください。", - // "en": "Server under maintenance. Please wait.", - // } - // call.error("", {code: -1, message: lng[call.req.lng] || lng["ja"]}) - // return null; + //判断是否是被关闭的API + if (blackApi.includes(call.service.name) || blackApi.includes("all")) { + let lng = { + "zh-TW": "維護中,請等待", + "ko": "유지 보수 중, 대기 중", + "ja": "メンテナンス中ですので、お待ちください", + "en": "Maintenance in progress, please wait", + } + call.error("", {code: -1, message: lng[call.req.lng] || lng["ja"]}) + return null; + } //是否短时间内重复请求某个api // let timeIntervalLimit = call.service.conf?.timeIntervalLimit == undefined ? 500 : call.service.conf?.timeIntervalLimit;