diff --git a/game-server/app/servers/activity/handler/dailyCoinHandler.ts b/game-server/app/servers/activity/handler/dailyCoinHandler.ts index a25183a8a..dafd8c9a4 100644 --- a/game-server/app/servers/activity/handler/dailyCoinHandler.ts +++ b/game-server/app/servers/activity/handler/dailyCoinHandler.ts @@ -128,7 +128,7 @@ export class DailyCoinHandler { //免费期间 let time = moment(new Date()).valueOf(); let result = await addReward(roleId, roleName, sid, serverId, newReward) - await ActivityDailyCoinModel.addExchangeRecord(serverId, activityId, roleId, playerData.beginTime, count, addCoin, `${count}&${consumeGold}&${addCoin}&${time}`); + await ActivityDailyCoinModel.addExchangeRecord(serverId, activityId, roleId, playerData.roundIndex, count, addCoin, `${count}&${consumeGold}&${addCoin}&${time}`); let exchangeCount = playerData.exchangeCount + count; return resResult(STATUS.SUCCESS, Object.assign(result, { diff --git a/game-server/app/servers/activity/handler/dailyMealHandler.ts b/game-server/app/servers/activity/handler/dailyMealHandler.ts index e7609f5a7..aa2ce1cd4 100644 --- a/game-server/app/servers/activity/handler/dailyMealHandler.ts +++ b/game-server/app/servers/activity/handler/dailyMealHandler.ts @@ -52,7 +52,7 @@ export class DailyMealHandler { const serverId = session.get('serverId'); const sid = session.get('sid'); const roleName = session.get('roleName'); - + let playerData = await getPlayerDailyMealData(activityId, serverId, roleId) if (!playerData) return resResult(STATUS.ACTIVITY_MISSING); @@ -77,7 +77,7 @@ export class DailyMealHandler { //免费期间 let rewardParamArr: Array = stringToRewardParam(itemData.reward); let result = await addReward(roleId, roleName, sid, serverId, rewardParamArr) - await ActivityDailyMealModel.addReceiveRecord(serverId, activityId, roleId, type, curDate); + await ActivityDailyMealModel.addReceiveRecord(serverId, activityId, roleId, type, curDate, playerData.roundIndex); itemData.isReceive = true; return resResult(STATUS.SUCCESS, Object.assign(result, { param: { activityId, type }, diff --git a/game-server/app/servers/connector/filter/global.ts b/game-server/app/servers/connector/filter/global.ts index 1d6cd7c62..39bacedc4 100644 --- a/game-server/app/servers/connector/filter/global.ts +++ b/game-server/app/servers/connector/filter/global.ts @@ -3,7 +3,7 @@ import {Application, RouteRecord, FrontendOrBackendSession, HandlerCallback, pin import { refresh } from '../../../services/refreshService'; import { checkPrivateChat, checkGuildChat, checkOtherChat, checkRoleName, checkGuildName } from "../../../services/sdkService"; import { resResult, checkWhiteListWithUid, genCode } from "../../../pubUtils/util"; -import { BLOCK_TYPE, CHANNEL_PREFIX, STATUS } from "../../../consts"; +import { BLOCK_TYPE, CHANNEL_PREFIX, MSG_TYPE, STATUS } from "../../../consts"; import { UserModel } from "../../../db/User"; import { SERVER_DEBUG_MODE } from "../../../pubUtils/dicParam"; export function globalFilter(app: Application) { @@ -51,12 +51,14 @@ Filter.prototype.before = async function (routeRecord: RouteRecord, msg: any, se switch(routeRecord.route) { case 'chat.chatHandler.sendPrivateMessage': { + if(msg.type == MSG_TYPE.IMG) break; let result = await checkPrivateChat(roleId, msg.targetRoleId, msg.content); if(!result) hasBlockWords = true; break; } case 'chat.chatHandler.sendGroupMessage': { + if(msg.type == MSG_TYPE.IMG) break; if(msg.channel == CHANNEL_PREFIX.GUILD) { let result = await checkGuildChat(roleId, guildCode, msg.content); if(!result) hasBlockWords = true; diff --git a/game-server/app/servers/role/handler/roleHandler.ts b/game-server/app/servers/role/handler/roleHandler.ts index eec579080..5caa19bf0 100644 --- a/game-server/app/servers/role/handler/roleHandler.ts +++ b/game-server/app/servers/role/handler/roleHandler.ts @@ -26,7 +26,7 @@ import { getActivities } from '../../../services/activity/activityService'; import * as dicParam from '../../../pubUtils/dicParam'; import Counter from '../../../db/Counter'; import { UserModel } from '../../../db/User'; -import { checkFilterWords, reportTAEvent } from '../../../services/sdkService'; +import { checkFilterWords, reportTAEvent, treatRoleName } from '../../../services/sdkService'; export default function (app: Application) { new HandlerService(app, {}); @@ -614,4 +614,16 @@ export class RoleHandler { return resResult(STATUS.SUCCESS); } + + async debugTreatRoleName(msg: { magicWord: string }, session: BackendSession) { + let roleId: string = session.get('roleId'); + + let { magicWord } = msg; + if (magicWord !== DEBUG_MAGIC_WORD) { + return resResult(STATUS.TOKEN_ERR); + } + + await treatRoleName(roleId, true); + return resResult(STATUS.SUCCESS); + } } diff --git a/game-server/app/services/activity/dailyCoinService.ts b/game-server/app/services/activity/dailyCoinService.ts index a49285b95..f74f676f8 100644 --- a/game-server/app/services/activity/dailyCoinService.ts +++ b/game-server/app/services/activity/dailyCoinService.ts @@ -25,7 +25,7 @@ export async function dailyCoinActivity(serverId: number, roleId: string) { let { createTime } = await RoleModel.findByRoleId(roleId); let playerData = new DailyCoinData(activityData, createTime); - let playerRecord: ActivityDailyCoinModelType = await ActivityDailyCoinModel.findData(serverId, activityData.activityId, roleId, playerData.beginTime); + let playerRecord: ActivityDailyCoinModelType = await ActivityDailyCoinModel.findData(serverId, activityData.activityId, roleId, playerData.roundIndex); playerData.setPlayerRecords(playerRecord); return playerData; } @@ -44,7 +44,7 @@ export async function getPlayerDailyCoinData(activityId: number, serverId: numbe let { createTime } = await RoleModel.findByRoleId(roleId); let playerData = new DailyCoinData(activityData, createTime); - let playerRecord: ActivityDailyCoinModelType = await ActivityDailyCoinModel.findData(serverId, activityData.activityId, roleId, playerData.beginTime); + let playerRecord: ActivityDailyCoinModelType = await ActivityDailyCoinModel.findData(serverId, activityData.activityId, roleId, playerData.roundIndex); playerData.setPlayerRecords(playerRecord); return playerData; } diff --git a/game-server/app/services/activity/dailyMealService.ts b/game-server/app/services/activity/dailyMealService.ts index 505ea680b..d134f9f11 100644 --- a/game-server/app/services/activity/dailyMealService.ts +++ b/game-server/app/services/activity/dailyMealService.ts @@ -25,8 +25,8 @@ export async function dailyMealActivity(serverId: number, roleId: string) { let { createTime } = await RoleModel.findByRoleId(roleId); let playerData = new DailyMealData(activityData, createTime); - let playerLunchRecords: ActivityDailyMealModelType[] = await ActivityDailyMealModel.findData(serverId, activityData.activityId, roleId, DAILY_MEAL_TYPE.LUNCH, playerData.beginTime, playerData.endTime); - let playerDinnerRecords: ActivityDailyMealModelType[] = await ActivityDailyMealModel.findData(serverId, activityData.activityId, roleId, DAILY_MEAL_TYPE.DINNER, playerData.beginTime, playerData.endTime); + let playerLunchRecords: ActivityDailyMealModelType[] = await ActivityDailyMealModel.findData(serverId, activityData.activityId, roleId, DAILY_MEAL_TYPE.LUNCH, playerData.roundIndex); + let playerDinnerRecords: ActivityDailyMealModelType[] = await ActivityDailyMealModel.findData(serverId, activityData.activityId, roleId, DAILY_MEAL_TYPE.DINNER, playerData.roundIndex); playerData.setPlayerRecords(playerLunchRecords.concat(playerDinnerRecords)); return playerData; } @@ -45,8 +45,8 @@ export async function getPlayerDailyMealData(activityId: number, serverId: numbe let { createTime } = await RoleModel.findByRoleId(roleId); let playerData = new DailyMealData(activityData, createTime); - let playerLunchRecords: ActivityDailyMealModelType[] = await ActivityDailyMealModel.findData(serverId, activityData.activityId, roleId, DAILY_MEAL_TYPE.LUNCH, playerData.beginTime, playerData.endTime); - let playerDinnerRecords: ActivityDailyMealModelType[] = await ActivityDailyMealModel.findData(serverId, activityData.activityId, roleId, DAILY_MEAL_TYPE.DINNER, playerData.beginTime, playerData.endTime); + let playerLunchRecords: ActivityDailyMealModelType[] = await ActivityDailyMealModel.findData(serverId, activityData.activityId, roleId, DAILY_MEAL_TYPE.LUNCH, playerData.roundIndex); + let playerDinnerRecords: ActivityDailyMealModelType[] = await ActivityDailyMealModel.findData(serverId, activityData.activityId, roleId, DAILY_MEAL_TYPE.DINNER, playerData.roundIndex); playerData.setPlayerRecords(playerLunchRecords.concat(playerDinnerRecords)); return playerData; } diff --git a/game-server/app/services/sdkService.ts b/game-server/app/services/sdkService.ts index 3ca5db439..3df70fb16 100644 --- a/game-server/app/services/sdkService.ts +++ b/game-server/app/services/sdkService.ts @@ -12,7 +12,7 @@ import { GuildModel } from "../db/Guild"; import { getRoleOnlineInfo, updateUserInfo } from "./redisService"; import { Application, pinus } from "pinus"; import { getGuildChannelSid } from "./chatService"; -import { getRandSingleEelm, readWordTxt, writeWordTxt } from "../pubUtils/util"; +import { getRandSingleEelm, readWordTxt, resResult, writeWordTxt } from "../pubUtils/util"; const ThinkingAnalytics = require("thinkingdata-node"); import Trie from '../pubUtils/trie'; import _ = require("underscore"); @@ -99,9 +99,9 @@ export async function checkGuildName(guildCode: string, serverId: number, name: // 根据37sdk处理违规玩家名 -export async function treatRoleName(roleId: string) { +export async function treatRoleName(roleId: string, isDebug?: boolean) { let role = await RoleModel.findByRoleId(roleId); - if(role && role.sdkMark) { // 有设置标记的情况下 + if((role && role.sdkMark) || isDebug) { // 有设置标记的情况下 let newName = "默认玩家名"; // 新名字上传 await checkRoleName(roleId, newName, role); @@ -112,6 +112,9 @@ export async function treatRoleName(roleId: string) { const { sid } = await getRoleOnlineInfo(roleId); if(!!sid) { await pinus.app.rpc.connector.connectorRemote.setOtherUserRoleNameSession.toServer(sid,[{ roleId, roleName: newName }]); // 改session + pinus.app.get('channelService').pushMessageByUids('onPlayerDataChange', resResult(STATUS.SUCCESS, { + roleName: newName + }), [{uid: roleId, sid}]); } // 补偿 let gold = getGoldObject(NAMEPLATE.NAMEPLATE_FEECOST) diff --git a/game-server/config/serverProtos.ts b/game-server/config/serverProtos.ts index 834b1b552..5af37919d 100644 --- a/game-server/config/serverProtos.ts +++ b/game-server/config/serverProtos.ts @@ -83,7 +83,9 @@ module.exports = { 'optional uInt32 giftGold': 2, 'optional uInt32 gold': 3, 'optional uInt32 ap': 4, - 'optional uInt32 totalPay': 5 + 'optional uInt32 totalPay': 5, + 'optional uInt32 totalCost': 6, + 'optional string roleName': 7, }, 'required string msg': 1, 'required uInt32 code': 2, diff --git a/game-server/config/servers.ts b/game-server/config/servers.ts index cd4089a63..e71cd1324 100644 --- a/game-server/config/servers.ts +++ b/game-server/config/servers.ts @@ -52,9 +52,9 @@ module.exports = { }, 'production': { 'connector': [ - { 'id': 'connector-server-1', 'port': 4050, 'clientHost': 'pinus_test.trgame.cn', 'host': '127.0.0.1', 'clientPort': 3050, 'frontend': true }, - { 'id': 'connector-server-2', 'port': 4051, 'clientHost': 'pinus_test.trgame.cn', 'host': '127.0.0.1', 'clientPort': 3051, 'frontend': true }, - { 'id': 'connector-server-3', 'port': 4052, 'clientHost': 'pinus_test.trgame.cn', 'host': '127.0.0.1', 'clientPort': 3052, 'frontend': true } + { 'id': 'connector-server-1', 'port': 4050, 'clientHost': 'zyz_web.trgame.cn', 'host': '127.0.0.1', 'clientPort': 3050, 'frontend': true }, + { 'id': 'connector-server-2', 'port': 4051, 'clientHost': 'zyz_web.trgame.cn', 'host': '127.0.0.1', 'clientPort': 3051, 'frontend': true }, + { 'id': 'connector-server-3', 'port': 4052, 'clientHost': 'zyz_web.trgame.cn', 'host': '127.0.0.1', 'clientPort': 3052, 'frontend': true } ], 'chat': [ { 'id': 'chat-server-1', 'host': '127.0.0.1', 'port': 6050 }, @@ -66,11 +66,11 @@ module.exports = { { 'id': 'battle-server-1', 'host': '127.0.0.1', 'port': 6054 } ], 'gate': [ - { 'id': 'gate-server-1', 'host': '127.0.0.1', 'clientHost': 'pinus_test.trgame.cn', 'clientPort': 3014, 'frontend': true }, + { 'id': 'gate-server-1', 'host': '127.0.0.1', 'clientHost': 'zyz_web.trgame.cn', 'clientPort': 3014, 'frontend': true }, { 'id': 'gate-server-2', 'host': '127.0.0.1', - 'clientHost': 'pinus_test.trgame.cn', + 'clientHost': 'zyz_web.trgame.cn', 'clientPort': 3015, 'frontend': true } @@ -94,7 +94,7 @@ module.exports = { }, 'alpha': { 'connector': [ - { 'id': 'connector-server-1', 'port': 4050, 'clientHost': 'zyz_web.trgame.cn', 'host': '172.26.145.159', 'clientPort': 3050, 'frontend': true }, + { 'id': 'connector-server-1', 'port': 4050, 'clientHost': 'pinus_test.trgame.cn', 'host': '172.26.145.159', 'clientPort': 3050, 'frontend': true }, ], 'chat': [ { 'id': 'chat-server-1', 'host': '172.26.145.159', 'port': 6050 }, @@ -106,7 +106,7 @@ module.exports = { { 'id': 'battle-server-1', 'host': '172.26.145.159', 'port': 6054 } ], 'gate': [ - { 'id': 'gate-server-1', 'host': '172.26.145.159', 'clientHost': 'zyz_web.trgame.cn', 'clientPort': 3014, 'frontend': true } + { 'id': 'gate-server-1', 'host': '172.26.145.159', 'clientHost': 'pinus_test.trgame.cn', 'clientPort': 3014, 'frontend': true } ], 'gm': [ { 'id': 'gm-server-1', 'host': '172.26.145.159', 'port': 6055 } diff --git a/gm-server/config/config.default.ts b/gm-server/config/config.default.ts index 0c8eedbd6..e4930fbb5 100644 --- a/gm-server/config/config.default.ts +++ b/gm-server/config/config.default.ts @@ -22,7 +22,7 @@ export default (appInfo: EggAppInfo) => { }; config.mongoose = { - url: 'mongodb://dbop:zyzDev2021@dds-8vb5c74ba4263da41.mongodb.zhangbei.rds.aliyuncs.com:3717,dds-8vb5c74ba4263da42.mongodb.zhangbei.rds.aliyuncs.com:3717,dds-8vb5c74ba4263da43.mongodb.zhangbei.rds.aliyuncs.com:3717/zyz?readPreference=secondary&replicaSet=mgset-506991391', // 内网 + url: 'mongodb://dbop:zyzdbopbantu@dds-8vbdb47c6fb58a541.mongodb.zhangbei.rds.aliyuncs.com:3717,dds-8vbdb47c6fb58a542.mongodb.zhangbei.rds.aliyuncs.com:3717/zyz?replicaSet=mgset-500808098', // 内网 options: { useNewUrlParser: true, useUnifiedTopology: true }, }; config.gmmongoose = { diff --git a/shared/db/ActivityDailyCoin.ts b/shared/db/ActivityDailyCoin.ts index 4949ac3a8..c9cbe655c 100644 --- a/shared/db/ActivityDailyCoin.ts +++ b/shared/db/ActivityDailyCoin.ts @@ -13,8 +13,8 @@ export default class Activity_Daily_Coin extends BaseModel { activityId: number; // 活动Id @prop({ required: true }) roleId: string; // 用户Id - @prop({ required: true }) - beginTime: number; // 开始统计的时间 + // @prop({ required: true }) + // beginTime: number; // 开始统计的时间 @prop({ required: true }) exchangeCount: number; // 兑换次数 @prop({ required: true }) @@ -22,26 +22,28 @@ export default class Activity_Daily_Coin extends BaseModel { @prop({ required: true }) recordMsg: string[]; // 兑换记录 exchangeCount&cointCount + @prop({ required: true }) + roundIndex: number; // 周期数 //兑换记录 - public static async addExchangeRecord(serverId: number, activityId: number, roleId: string, beginTime: number, count: number, coinCount: number, msg: string) { - let result = await ActivityDailyCoinModel.findOneAndUpdate({ serverId, activityId, roleId, beginTime }, + public static async addExchangeRecord(serverId: number, activityId: number, roleId: string, roundIndex: number, count: number, coinCount: number, msg: string) { + let result = await ActivityDailyCoinModel.findOneAndUpdate({ serverId, activityId, roleId, roundIndex }, { $inc: { exchangeCount: count, coinCount: coinCount }, $push: { recordMsg: msg } }, { upsert: true, new: true }).lean(true) return result; } //根据活动时间查询活动数据 - public static async findData(serverId: number, activityId: number, roleId: string, beginTime: number) { + public static async findData(serverId: number, activityId: number, roleId: string, roundIndex: number) { let result: ActivityDailyCoinModelType = await ActivityDailyCoinModel.findOne({ - serverId, roleId, activityId, beginTime, + serverId, roleId, activityId, roundIndex, }).lean(true); return result; } //删除活动兑换记录 - public static async deleteActivity(serverId: number, activityId: number, roleId: string, beginTime: number) { - await ActivityDailyCoinModel.deleteMany({ serverId, roleId, activityId, beginTime }); + public static async deleteActivity(serverId: number, activityId: number, roleId: string, roundIndex: number) { + await ActivityDailyCoinModel.deleteMany({ serverId, roleId, activityId, roundIndex }); } } diff --git a/shared/db/ActivityDailyMeal.ts b/shared/db/ActivityDailyMeal.ts index 9198f63ae..a99e8116f 100644 --- a/shared/db/ActivityDailyMeal.ts +++ b/shared/db/ActivityDailyMeal.ts @@ -17,26 +17,31 @@ export default class Activity_Daily_Meal extends BaseModel { receiveTime: number; // 领取时间 @prop({ required: true }) type: number; // 1午餐、2晚餐类型 + @prop({ required: true }) + roundIndex: number; // 周期数 + + //领取记录 - public static async addReceiveRecord(serverId: number, activityId: number, roleId: string, type: number, receiveTime: number) { + public static async addReceiveRecord(serverId: number, activityId: number, roleId: string, type: number, receiveTime: number, roundIndex: number) { await ActivityDailyMealModel.insertMany([ { serverId, activityId, roleId, receiveTime, - type + type, + roundIndex, } ]) } //根据活动时间查询活动数据 - public static async findData(serverId: number, activityId: number, roleId: string, type: number, beginTime: number, endTime: number) { + public static async findData(serverId: number, activityId: number, roleId: string, type: number, roundIndex: number) { let result: ActivityDailyMealModelType[] = await ActivityDailyMealModel.find({ serverId, roleId, activityId, type, - receiveTime: { $gt: beginTime, $lt: endTime } + roundIndex: roundIndex, }).lean(true); return result; } diff --git a/shared/domain/activityField/signInField.ts b/shared/domain/activityField/signInField.ts index 6b728f373..0661f0895 100644 --- a/shared/domain/activityField/signInField.ts +++ b/shared/domain/activityField/signInField.ts @@ -97,7 +97,7 @@ export class SignInData extends ActivityBase { if (this.type === ACTIVITY_TYPE.NEW_PLAYER_SIGN_IN) { this.roundIndex = 1; } - this.todayIndex = Math.ceil((moment(date).valueOf() - this.beginTime) / (24 * 60 * 60 * 1000)); + this.todayIndex = Math.ceil((moment().valueOf() - this.beginTime) / (24 * 60 * 60 * 1000)); } diff --git a/shared/domain/roleField/calCe.ts b/shared/domain/roleField/calCe.ts index f29a42f80..2921b3b1e 100644 --- a/shared/domain/roleField/calCe.ts +++ b/shared/domain/roleField/calCe.ts @@ -114,10 +114,8 @@ export class CalHeroCe { const isWake = colorStar > 0; // 是否觉醒,只要激活了觉醒,彩星就会 > 1 // console.log('*isUpstar', isUpStar, originStar, star, originColorStar, colorStar) - if(starStage < stage) star--; - if(colorStarStage < stage) colorStar--; - const dicStar = isWake ? getHeroWakeByQuality(dicHero.jobClass, dicHero.quality, colorStar) : getHeroStarByQuality(dicHero.jobClass, quality, star); // 星级表 + const dicStar = isWake ? getHeroWakeByQuality(dicHero.jobClass, dicHero.quality, colorStarStage < stage? colorStar - 1: colorStar) : getHeroStarByQuality(dicHero.jobClass, quality, starStage < stage? star - 1: star); // 星级表 let heroAttr = dicHero.baseAbilityArr.get(attrId); // 武将表hp等 let heroUpAttr = dicHero.baseAbilityUpArr.get(attrId); // 武将表hp_up等 @@ -125,7 +123,7 @@ export class CalHeroCe { if (!!dicStar && !!dicStar.ceAttr) { starUp = dicStar.ceAttr.get(stage); } - let base = heroAttr + (lv - 1) * (heroUpAttr + starUp); + let base = heroAttr + lv * (heroUpAttr + starUp); this.getSingleAttrObj(attrId).updateAttr({ set: { base } }); }; } diff --git a/shared/resource/jsons/dic_zyz_dialogue.json b/shared/resource/jsons/dic_zyz_dialogue.json index 58c12b129..dab8803f0 100644 --- a/shared/resource/jsons/dic_zyz_dialogue.json +++ b/shared/resource/jsons/dic_zyz_dialogue.json @@ -1,11 +1,15 @@ [ { "dialogueId": 1, - "leftCharId": 19, + "leftCharId": 53, "midCharId": 0, - "rightCharId": 53, + "rightCharId": 1008, "bgId": 0, - "content": "&19\n这地方真是不错,山清水秀的,说不定还有什么天材地宝呢。" + "content": "&53\n又是黄巾贼!受死!", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 2, @@ -13,63 +17,95 @@ "midCharId": 0, "rightCharId": 1008, "bgId": 0, - "content": "&53\n又是黄巾贼!受死!" + "content": "&1008\n女侠,饶命啊!\n前日里在真定被你们教训过后我已经知错了。我愿将劫掠所得全部献给女侠,从此回家安心务农。\n还请女侠放我一马。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 3, - "leftCharId": 0, - "midCharId": 1008, - "rightCharId": 0, + "leftCharId": 53, + "midCharId": 0, + "rightCharId": 1008, "bgId": 0, - "content": "&1008\n女侠,饶命啊!\n前日里被你们教训过后我已经知错了,我愿将劫掠所得全部献给女侠,从此回家安心务农。\n还请女侠放我一马。" + "content": "&53\n你是……前些日子在真定遇到的黄巾贼?", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 4, - "leftCharId": 0, - "midCharId": 1050, - "rightCharId": 0, + "leftCharId": 53, + "midCharId": 0, + "rightCharId": 1008, "bgId": 0, - "content": "&1050\n后生仔,今天有缘遇上了老夫。\n老夫看你骨骼惊奇,相貌堂堂,现有一场机缘送你。\n收下吧。" + "content": "&1008\n没错,正是小人。\n小人本是幽州清白子弟,当年被黄巾掳走之后为了保全自己无奈从贼。\n自从在真定看到二位大侠杀死了一直统领我们的渠帅,我也有了机会离开黄巾,返回家乡好好过日子。\n听说幽州牧刘虞正在招揽流民开垦田地,我正打算返回幽州。\n还请二位大侠放小人一马,给小人一个改过的机会。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 5, - "leftCharId": 0, - "midCharId": 1008, - "rightCharId": 0, + "leftCharId": 19, + "midCharId": 0, + "rightCharId": 1008, "bgId": 0, - "content": "&1008\n太平军在此!\n尔等凡夫俗子快快将财宝献上,饶你们一命!\n否则,送你们去见黄天!" + "content": "&19\n你既然能够悔改,说明你本性不坏。\n如今天下大乱,不知多少百姓走投无路弃民为贼,少有你这般又弃贼为民的。\n既然你愿意舍弃黄巾的身份重返家乡,我们也不会为难你的。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 6, "leftCharId": 0, - "midCharId": 19, + "midCharId": 1012, "rightCharId": 0, "bgId": 0, - "content": "&19\n黄巾小贼,劫掠百姓,受死吧!" + "content": "&1012\n此山是我开!此路是我栽!不留买命财,砍头喂虎豺!\n刚刚是不是念错了……\n不管了!快快将财宝献上,饶你们一命!", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 7, "leftCharId": 0, - "midCharId": 1008, + "midCharId": 19, "rightCharId": 0, "bgId": 0, - "content": "&1008\n呸!\n看了几本传奇侠客就敢出来打抱不平。\n还是回家喝奶去吧!哈哈哈哈!" + "content": "&19\n拦路小贼,劫掠百姓,受死吧!", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 8, - "leftCharId": 1048, - "midCharId": 0, - "rightCharId": 1008, + "leftCharId": 0, + "midCharId": 1012, + "rightCharId": 0, "bgId": 0, - "content": "&1048\n救命啊!有人劫色啊!" + "content": "&1012\n呸!\n看了几本传奇侠客就敢出来打抱不平。\n还是回家喝奶去吧!哈哈哈哈!", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 9, - "leftCharId": 19, - "midCharId": 0, - "rightCharId": 53, + "leftCharId": 0, + "midCharId": 1012, + "rightCharId": 0, "bgId": 0, - "content": "&19\n有人呼救!我们赶紧去看看发生了什么!" + "content": "&1012\n哎哟!点子扎手!风紧扯呼~", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 10, @@ -77,198 +113,766 @@ "midCharId": 0, "rightCharId": 1008, "bgId": 0, - "content": "&1008\n嘿嘿嘿,小娘子~\n安心和大爷一起去快活吧~" + "content": "&1048\n救命啊!有人劫色啊!", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 11, - "leftCharId": 0, - "midCharId": 19, - "rightCharId": 0, + "leftCharId": 19, + "midCharId": 0, + "rightCharId": 53, "bgId": 0, - "content": "&19\n大胆色徒!" + "content": "&19\n有人呼救!我们赶紧去看看发生了什么!", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 12, - "leftCharId": 0, - "midCharId": 1048, - "rightCharId": 0, + "leftCharId": 1048, + "midCharId": 0, + "rightCharId": 1008, "bgId": 0, - "content": "&1048\n多谢公子相救,不然妾身清白……呜呜呜" + "content": "&1008\n嘿嘿嘿,小娘子~\n安心和大爷一起去快活吧~", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 13, "leftCharId": 0, - "midCharId": 1048, + "midCharId": 19, "rightCharId": 0, "bgId": 0, - "content": "&1048\n妾身无以为报,只能……以这些钱财报答少侠救命之恩,还请不要推辞。" + "content": "&19\n大胆色徒!", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 14, "leftCharId": 0, - "midCharId": 1008, + "midCharId": 1048, "rightCharId": 0, "bgId": 0, - "content": "&1008\n哪来的小鬼敢坏大爷好事!" + "content": "&1048\n多谢公子相救,不然妾身清白……呜呜呜", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 15, "leftCharId": 0, - "midCharId": 1008, + "midCharId": 1048, "rightCharId": 0, "bgId": 0, - "content": "&1008\n可恶!那小娘子居然趁乱跑了……" + "content": "&1048\n妾身无以为报,只能……以这些钱财报答少侠救命之恩,还请不要推辞。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 16, "leftCharId": 0, - "midCharId": 14, + "midCharId": 1008, "rightCharId": 0, "bgId": 0, - "content": "&14\n这些问题……\n该如何回答呢…" + "content": "&1008\n哪来的小鬼敢坏大爷好事!", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 17, - "leftCharId": 19, - "midCharId": 0, - "rightCharId": 14, + "leftCharId": 0, + "midCharId": 1008, + "rightCharId": 0, "bgId": 0, - "content": "&14\n这位兄台,不好意思在下打扰了。\n前日里在下获得一本奇书,内容十分高深玄妙,于书中有些疑惑尚未解开。碰巧遇到了兄台。\n观兄台相貌堂堂,一表人才,能否请兄台帮在下解答一二?" + "content": "&1008\n可恶!那小娘子居然趁乱跑了……", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 18, "leftCharId": 0, - "midCharId": 14, + "midCharId": 53, "rightCharId": 0, "bgId": 0, - "content": "&14\n兄台真是好文采!\n在下收获颇多,多谢兄台了。\n在下有些薄礼相赠,感谢兄台,还望兄台能够接受。" + "content": "&14\n这些问题都这么难……\n该怎么回答啊啊啊啊……", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 19, - "leftCharId": 0, - "midCharId": 14, - "rightCharId": 0, + "leftCharId": 19, + "midCharId": 0, + "rightCharId": 53, "bgId": 0, - "content": "&14\n啊这……呵呵,兄台思路清奇,回答不落窠臼,真是让在下长见识了。\n区区薄礼以作打扰兄台之赔偿,还请兄台收下。\n在下先行离开了,告辞。" + "content": "&19\n怎么了轻衣?\n你怎么看上去很苦恼的样子?\n有什么事吗?", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 20, - "leftCharId": 0, - "midCharId": 12, - "rightCharId": 0, + "leftCharId": 19, + "midCharId": 0, + "rightCharId": 53, "bgId": 0, - "content": "&12\n主公提的这些问题都好难啊,我该怎么回答……\n好伤脑筋啊……" + "content": "&53\n子龙!?\n快来快来,帮我看看。\n师父他通过千里鸟给我送来了一封信,说虽然我已经出师,但对我墨家经义不熟,仍需时时温习。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 21, - "leftCharId": 0, - "midCharId": 19, - "rightCharId": 0, + "leftCharId": 19, + "midCharId": 0, + "rightCharId": 53, "bgId": 0, - "content": "&19\n啊!是谁撞到我了?" + "content": "&19\n信?让我看看。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 22, - "leftCharId": 19, + "leftCharId": 57, "midCharId": 0, - "rightCharId": 12, + "rightCharId": 0, "bgId": 0, - "content": "&12\n啊,不好意思,少侠,刚刚我在思考问题没有在意有人,撞到了少侠,还请少侠谅解。\n对了!不知道少侠能不能帮我回答些问题,我家主公出了些题目让我们回答,可是我平日里没有什么积累,希望少侠能够帮帮我。" + "content": "&57\n轻衣吾徒,枪剑之约后,你虽已出师,但在为师心中,你虽然武艺业已足够,于吾墨家经义却尚未粗通。\n吾墨门之人,需精熟墨义,便览百家经典,以达兵家“知己知彼”之境。\n故而以千里鸟飞书告诫吾徒,经义学问不可弃。\n并此附上些许题目,答后以千里鸟寄回,以观你近日学问有无长进。\n慎学之,谨教之,勿忘勿忘……", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 23, "leftCharId": 19, "midCharId": 0, - "rightCharId": 12, + "rightCharId": 53, "bgId": 0, - "content": "&19\n我?我吗?可是我……" + "content": "&53\n师父随信寄来的问题好难啊,只是看了一眼我就头昏眼花了。\n不过正巧你来了,帮我做做题目吧。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 24, "leftCharId": 19, "midCharId": 0, - "rightCharId": 12, + "rightCharId": 53, "bgId": 0, - "content": "&12\n少侠不必多担心,我也是死马当活马医了,还希望少侠能够帮帮我才好。" + "content": "&19\n可是……", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 25, - "leftCharId": 0, - "midCharId": 12, - "rightCharId": 0, + "leftCharId": 19, + "midCharId": 0, + "rightCharId": 53, "bgId": 0, - "content": "&12\n少侠的文采见识真是非凡!比子建公子还厉害。\n有了少侠的帮助,主公的考验一定不在话下。\n乘还记得答案我先回去了。\n这里有些东西是我在路途上获得的,送给少侠,就当做给少侠的谢礼了。" + "content": "&53\n子龙,你不会眼睁睁看着我回答不出来,交一份空白的信给师父吧?\n来嘛来嘛,就这一次,以后我保证认真读书了,好不好嘛~", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 26, + "leftCharId": 19, + "midCharId": 0, + "rightCharId": 53, + "bgId": 0, + "content": "&19\n好吧好吧,让我看看吧。\n不过只此一次啊。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 27, + "leftCharId": 0, + "midCharId": 53, + "rightCharId": 0, + "bgId": 0, + "content": "&53\n啊这些题目真的是这样回答的嘛。\n算了算了,死马当活马医吧,反正我也写不出来。\n一……二……\n完成,信也交给千里鸟了。\n喏,这是师父随信寄来的一些东西,说是用来奖励我学习的,都送给你啦~", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 28, + "leftCharId": 0, + "midCharId": 53, + "rightCharId": 0, + "bgId": 0, + "content": "&53\n不愧是子龙,居然真的把这些我看都看不懂的问题答出来了。\n一……二……\n完成,信也交给千里鸟了。\n喏,这是师父随信寄来的一些东西,说是用来奖励我学习的,都送给你啦~", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 29, "leftCharId": 0, "midCharId": 12, "rightCharId": 0, "bgId": 0, - "content": "&12\n这些答案……好像和主公所说的不一样啊。\n算了,不去管这些,谢谢少侠相助了。\n在下先行一步,告辞了。" - }, - { - "dialogueId": 27, - "leftCharId": 1050, - "midCharId": 0, - "rightCharId": 1041, - "bgId": 0, - "content": "&1002\n老匹夫!给我走快点!要是因为你一个人耽误了徭役,老子给你们好看!" - }, - { - "dialogueId": 28, - "leftCharId": 1050, - "midCharId": 0, - "rightCharId": 1041, - "bgId": 0, - "content": "&1050\n军爷,老朽,老朽身体实在……" - }, - { - "dialogueId": 29, - "leftCharId": 1049, - "midCharId": 0, - "rightCharId": 1041, - "bgId": 0, - "content": "&1049\n军爷,我父亲再不休息就要撑不住了,就让我们在这里歇一会儿吧。\n只要让我们缓一缓,等休息好了,我们一定加倍赶路。" + "content": "&12\n主公提的这些问题都好难啊,该怎么回答……\n真是伤脑筋啊……", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 30, - "leftCharId": 1049, - "midCharId": 0, - "rightCharId": 1041, - "bgId": 0, - "content": "&1041\n给你们时间?那谁给我们时间?\n耽误了太师的郿坞徭役,你有几条命赔?\n这老废物要是走不动了,那老子这就砍了他,我看你们谁还敢再慢下来!" - }, - { - "dialogueId": 31, "leftCharId": 0, "midCharId": 19, "rightCharId": 0, "bgId": 0, - "content": "&19\n住手!\n你们这些人,竟然连老人家都不放过。\n看我收拾你们!" + "content": "&19\n啊!是谁撞到我了?", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 31, + "leftCharId": 19, + "midCharId": 0, + "rightCharId": 12, + "bgId": 0, + "content": "&12\n啊,不好意思,少侠,刚刚我在思考问题没有在意有人,撞到了少侠,还请少侠谅解。\n对了!不知道少侠能不能帮我回答些问题,我家主公出了些题目让我们回答,可是我平日里没有什么积累,希望少侠能够帮帮我。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 32, - "leftCharId": 1049, + "leftCharId": 19, "midCharId": 0, - "rightCharId": 19, + "rightCharId": 12, "bgId": 0, - "content": "&19\n好了,现在已经没人再逼迫你们去服役了,你赶紧带着父亲和乡亲们回去吧。" + "content": "&19\n我?我吗?可是我……", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { "dialogueId": 33, + "leftCharId": 19, + "midCharId": 0, + "rightCharId": 12, + "bgId": 0, + "content": "&12\n少侠不必多担心,我也是死马当活马医了,还希望少侠能够帮帮我才好。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 34, + "leftCharId": 0, + "midCharId": 12, + "rightCharId": 0, + "bgId": 0, + "content": "&12\n少侠的文采见识真是非凡!比子建公子还厉害。\n有了少侠的帮助,主公的考验一定不在话下。\n乘还记得答案我先回去了。\n这里有些东西是我在路途上获得的,送给少侠,就当做给少侠的谢礼了。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 35, + "leftCharId": 0, + "midCharId": 12, + "rightCharId": 0, + "bgId": 0, + "content": "&12\n这些答案……好像和主公所说的不一样啊。\n算了,不去管这些,谢谢少侠相助了。\n在下先行一步,告辞了。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 36, + "leftCharId": 1050, + "midCharId": 0, + "rightCharId": 1041, + "bgId": 0, + "content": "&1041\n老匹夫!给我走快点!要是因为你一个人耽误了徭役,老子给你们好看!", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 37, + "leftCharId": 1050, + "midCharId": 0, + "rightCharId": 1041, + "bgId": 0, + "content": "&1050\n军爷,老朽,老朽身体实在……", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 38, + "leftCharId": 1049, + "midCharId": 0, + "rightCharId": 1041, + "bgId": 0, + "content": "&1049\n军爷,我父亲再不休息就要撑不住了,就让我们在这里歇一会儿吧。\n只要让我们缓一缓,等休息好了,我们一定加倍赶路。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 39, + "leftCharId": 1049, + "midCharId": 0, + "rightCharId": 1041, + "bgId": 0, + "content": "&1041\n给你们时间?那谁给我们时间?\n耽误了太师的郿坞徭役,你有几条命赔?\n这老废物要是走不动了,那老子这就砍了你,我看你们谁还敢再慢下来!", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 40, + "leftCharId": 0, + "midCharId": 19, + "rightCharId": 0, + "bgId": 0, + "content": "&53\n住手!\n你们这些人,竟然连老人家都不放过。\n看我收拾你们!", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 41, "leftCharId": 1049, "midCharId": 0, "rightCharId": 19, "bgId": 0, - "content": "&1049\n多谢少侠,多谢少侠救了我父亲一命。\n我这就带乡亲们回去。" + "content": "&1049\n多谢少侠,多谢少侠救了我父亲一命。\n我这就带乡亲们回去。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 }, { - "dialogueId": 34, + "dialogueId": 42, "leftCharId": 19, "midCharId": 0, "rightCharId": 1041, "bgId": 0, - "content": "&1041\n啊呸,哪来的小毛孩敢挡大爷们的路,不自量力。" + "content": "&1041\n啊呸,哪来的小毛孩敢挡大爷们的路,不自量力。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 43, + "leftCharId": 22, + "midCharId": 0, + "rightCharId": 19, + "bgId": 0, + "content": "&19\n啊!军,军师……", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 44, + "leftCharId": 22, + "midCharId": 0, + "rightCharId": 19, + "bgId": 0, + "content": "&22\n子龙,前日所传兵书战策你可熟读了吗?", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 45, + "leftCharId": 22, + "midCharId": 0, + "rightCharId": 19, + "bgId": 0, + "content": "&19\n那个……那些书实在太枯燥了……\n所以……读了,但只读了一点点……", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 46, + "leftCharId": 22, + "midCharId": 0, + "rightCharId": 19, + "bgId": 0, + "content": "&22\n如今我军厉兵秣马,正要大展宏图以抗曹贼。\n日后众将都将独自领兵镇守一方,届时三军性命尽系于将军之手,万万大意不得,因此主公才嘱托在下讲习兵法。\n既然今日碰上,那我就略微考校一番,看看子龙近日研习的如何。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 47, + "leftCharId": 0, + "midCharId": 22, + "rightCharId": 0, + "bgId": 0, + "content": "&22\n看来子龙果真在用心研读,所出之题居然全部正确。\n既然如此用功,这里有主公刚赏赐给我的一些杂物,就送予子龙以作激励吧。\n以后领兵,子龙可托付三军矣。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 48, + "leftCharId": 0, + "midCharId": 19, + "rightCharId": 0, + "bgId": 0, + "content": "&19\n在下必将不负主公和军师所托,随主公兴复汉室。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 49, + "leftCharId": 0, + "midCharId": 22, + "rightCharId": 0, + "bgId": 0, + "content": "&22\n子龙真是实诚,说是一点果真是一点。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 50, + "leftCharId": 22, + "midCharId": 0, + "rightCharId": 19, + "bgId": 0, + "content": "&19\n嘿嘿,军师……", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 51, + "leftCharId": 22, + "midCharId": 0, + "rightCharId": 19, + "bgId": 0, + "content": "&22\n还望子龙暇时能如二将军一样手不释卷,熟读各类典籍。\n万万不可学三将军,嬉笑胡闹,毕竟三将军用兵天马行空不拘一格,非常人能学。\n下次我再考考子龙吧。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 52, + "leftCharId": 0, + "midCharId": 0, + "rightCharId": 25, + "bgId": 0, + "content": "&25\n将军,今日天气这么好,正适合我等切磋枪法。\n不如去往校场,给弟兄们演练一番。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 53, + "leftCharId": 19, + "midCharId": 0, + "rightCharId": 1001, + "bgId": 0, + "content": "&1001\n是呀,是呀。如今大战未启,将军给我们展示展示将军那手绝妙的枪法吧。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 54, + "leftCharId": 19, + "midCharId": 0, + "rightCharId": 0, + "bgId": 0, + "content": "&19\n那……好吧。\n叔至你在枪法上是又有了什么感悟所以想要和我比试一番吗?", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 55, + "leftCharId": 19, + "midCharId": 0, + "rightCharId": 25, + "bgId": 0, + "content": "&25\n前日和二将军外出作战之时,向二将军讨教了些武道疑问,二将军顺手指点了几招,让我感受颇深。\n想要和将军比试一番,看看实力是否有所长进。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 56, + "leftCharId": 19, + "midCharId": 0, + "rightCharId": 25, + "bgId": 0, + "content": "&19\n既然这样,那我们就切磋一番吧。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 57, + "leftCharId": 0, + "midCharId": 0, + "rightCharId": 25, + "bgId": 0, + "content": "&25\n多谢将军赐教。\n果然我的枪法离将军还要差不少啊……", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 58, + "leftCharId": 0, + "midCharId": 0, + "rightCharId": 1001, + "bgId": 0, + "content": "&1001\n赵将军的枪法真是神了,看得我们眼睛都花了。\n难怪当初在长坂坡能够杀个七进七出,百万曹军那么多人都不敢阻拦将军。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 59, + "leftCharId": 19, + "midCharId": 0, + "rightCharId": 25, + "bgId": 0, + "content": "&19\n叔至你的枪法已经比之前进步良多,想必再过不久就能和我持平了。\n这次比试我也体会颇多,果然武者只有不断切磋,才能精练武艺,闭门造车只能贻笑大方。", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 60, + "leftCharId": 0, + "midCharId": 0, + "rightCharId": 0, + "bgId": 0, + "content": "&25\n哈哈哈,我终于小胜一招了。\n二将军果然厉害,只是", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 61, + "leftCharId": 0, + "midCharId": 0, + "rightCharId": 0, + "bgId": 0, + "content": 0, + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 62, + "leftCharId": 0, + "midCharId": 0, + "rightCharId": 0, + "bgId": 0, + "content": 0, + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 63, + "leftCharId": 0, + "midCharId": 0, + "rightCharId": 0, + "bgId": 0, + "content": 0, + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 64, + "leftCharId": 0, + "midCharId": 0, + "rightCharId": 0, + "bgId": 0, + "content": 0, + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 65, + "leftCharId": 0, + "midCharId": 0, + "rightCharId": 0, + "bgId": 0, + "content": 0, + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 66, + "leftCharId": 0, + "midCharId": 0, + "rightCharId": 0, + "bgId": 0, + "content": 0, + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 67, + "leftCharId": 0, + "midCharId": 0, + "rightCharId": 0, + "bgId": 0, + "content": 0, + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 68, + "leftCharId": 0, + "midCharId": 0, + "rightCharId": 0, + "bgId": 0, + "content": 0, + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 69, + "leftCharId": 0, + "midCharId": 0, + "rightCharId": 0, + "bgId": 0, + "content": 0, + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 70, + "leftCharId": 0, + "midCharId": 0, + "rightCharId": 0, + "bgId": 0, + "content": 0, + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 71, + "leftCharId": 0, + "midCharId": 0, + "rightCharId": 0, + "bgId": 0, + "content": 0, + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 72, + "leftCharId": 0, + "midCharId": 0, + "rightCharId": 0, + "bgId": 0, + "content": 0, + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "dialogueId": 73, + "leftCharId": 0, + "midCharId": 0, + "rightCharId": 0, + "bgId": 0, + "content": 0, + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 } ] \ No newline at end of file diff --git a/shared/resource/jsons/dic_zyz_event.json b/shared/resource/jsons/dic_zyz_event.json index 134292ba1..a44d10b8a 100644 --- a/shared/resource/jsons/dic_zyz_event.json +++ b/shared/resource/jsons/dic_zyz_event.json @@ -3,8 +3,8 @@ "eventID": 1, "eventType": 1, "quality": 1, - "name": "天降宝箱", - "sSpineInUI": "gongbing", + "name": "逃兵献财", + "sSpineInUI": "huangjindao", "actorIDForQuestion": 0, "winReward": "11001&2000", "loseReward": "11001&1000", @@ -12,130 +12,130 @@ "warId": 0, "weight": 13, "movePointArray": "81&83&85&87", - "startDialogue": "1&4", + "startDialogue": "1&2&3&4&5", "winDialogue": "&", "loseDialogue": "&", "group": 0 }, { "eventID": 2, - "eventType": 1, + "eventType": 3, "quality": 1, - "name": "逃兵献财", - "sSpineInUI": "huangjindao", + "name": "半途劫匪", + "sSpineInUI": "shanzeidao", "actorIDForQuestion": 0, "winReward": "31002&150", "loseReward": "31002&75", "suitLevel": "1&60", - "warId": 0, + "warId": 2001, "weight": 13, "movePointArray": "81&83&85&87", - "startDialogue": "2&3", - "winDialogue": "&", - "loseDialogue": "&", + "startDialogue": "6&7", + "winDialogue": "9&", + "loseDialogue": "8&", "group": 0 }, { "eventID": 3, - "eventType": 1, + "eventType": 3, "quality": 1, - "name": "老人奇遇", - "sSpineInUI": "gongbing", + "name": "黄巾色将", + "sSpineInUI": "SL_huangjindao", "actorIDForQuestion": 0, "winReward": "17054&40", "loseReward": "17054&20", "suitLevel": "1&60", - "warId": 0, + "warId": 2002, "weight": 13, "movePointArray": "81&83&85&87", - "startDialogue": "1&4", - "winDialogue": "&", - "loseDialogue": "&", + "startDialogue": "10&11&12&13", + "winDialogue": "14&15", + "loseDialogue": "16&17", "group": 0 }, { "eventID": 4, "eventType": 2, "quality": 1, - "name": "给贾诩解惑", - "sSpineInUI": "jiaxu", - "actorIDForQuestion": 14, + "name": "轻衣答辩", + "sSpineInUI": "xiahouqingyi", + "actorIDForQuestion": 53, "winReward": "17055&2", "loseReward": "17055&1", "suitLevel": "1&60", "warId": 0, "weight": 13, "movePointArray": "81&83&85&87", - "startDialogue": "16&17", - "winDialogue": "18&", - "loseDialogue": "19&", + "startDialogue": "18&19&20&21&22&23&24&25&26", + "winDialogue": "28&", + "loseDialogue": "27&", "group": 1 }, { "eventID": 5, "eventType": 2, "quality": 1, - "name": "回答贾诩的考验", - "sSpineInUI": "jiaxu", - "actorIDForQuestion": 14, + "name": "给李典解惑", + "sSpineInUI": "lidian", + "actorIDForQuestion": 12, "winReward": "31001&5000", "loseReward": "31001&2500", "suitLevel": "1&60", "warId": 0, "weight": 13, "movePointArray": "81&83&85&87", - "startDialogue": "16&17", - "winDialogue": "18&", - "loseDialogue": "19&", + "startDialogue": "29&30&31&32&33&34", + "winDialogue": "35&", + "loseDialogue": "36&", "group": 2 }, { "eventID": 6, - "eventType": 2, + "eventType": 3, "quality": 1, - "name": "帮助李典文学题", - "sSpineInUI": "lidian", - "actorIDForQuestion": 12, + "name": "解救苦役", + "sSpineInUI": "SL_daobing", + "actorIDForQuestion": 0, "winReward": "17051&200", "loseReward": "17051&100", "suitLevel": "1&60", - "warId": 0, + "warId": 2003, "weight": 13, "movePointArray": "81&83&85&87", - "startDialogue": "20&21&22&23&24", - "winDialogue": "25&", - "loseDialogue": "26&", + "startDialogue": "37&38&39&40", + "winDialogue": "41&", + "loseDialogue": "42&", "group": 2 }, { "eventID": 7, - "eventType": 3, + "eventType": 2, "quality": 1, - "name": "黄巾劫匪", - "sSpineInUI": "huangjindao", - "actorIDForQuestion": 0, + "name": "回答诸葛亮的习题", + "sSpineInUI": "zhugeliang", + "actorIDForQuestion": 22, "winReward": "71001&1", "loseReward": "71001&1", "suitLevel": "1&60", - "warId": 2001, + "warId": 0, "weight": 13, "movePointArray": "81&83&85&87", - "startDialogue": "5&6", - "winDialogue": "3&", - "loseDialogue": "7&", + "startDialogue": "43&44&45&46", + "winDialogue": "47&48", + "loseDialogue": "49&50&51", "group": 2 }, { "eventID": 8, - "eventType": 3, + "eventType": 1, "quality": 1, - "name": "解救百姓", + "name": "化解干戈", "sSpineInUI": "qiangbing", "actorIDForQuestion": 0, "winReward": "17044&1", "loseReward": "17044&1", "suitLevel": "1&60", - "warId": 2002, + "warId": 0, "weight": 13, "movePointArray": "81&83&85&87", "startDialogue": "27&28&29&30&31", @@ -145,15 +145,15 @@ }, { "eventID": 9, - "eventType": 3, + "eventType": 1, "quality": 1, - "name": "黄巾色将", + "name": 0, "sSpineInUI": "SL_huangjindao", "actorIDForQuestion": 0, "winReward": "22001&1", "loseReward": "22001&1", "suitLevel": "1&60", - "warId": 2003, + "warId": 0, "weight": 13, "movePointArray": "81&83&85&87", "startDialogue": "8&9&10&11", diff --git a/shared/resource/jsons/dic_zyz_gk_branch.json b/shared/resource/jsons/dic_zyz_gk_branch.json index ef6eff109..a0e7299fa 100755 --- a/shared/resource/jsons/dic_zyz_gk_branch.json +++ b/shared/resource/jsons/dic_zyz_gk_branch.json @@ -1,10 +1,10 @@ [ { - "war_id": 2011, - "dispatchJsonId": 2011, - "bg_img": 2011, - "mapid": 2011, - "script_id": "R_2011&S_2011&RE_2011", + "war_id": 2511, + "dispatchJsonId": 2511, + "bg_img": 2511, + "mapid": 2511, + "script_id": "R_2511&S_2511&RE_2511", "fixReward": "&", "conditionReward": "31001&5000&0|31002&100&0|11002&10&0|22001&2&0", "RandomReward": "&", @@ -12,16 +12,16 @@ "gk_name": "遗迹&世外小村", "kingExp": 0, "lvLimted": 1, - "turnLimted": 30, + "turnLimted": 20, "forcedCharactor": "&", "fobiddenCharactor": "&", - "victoryInfoInUI": "消灭所有敌军", - "loseInfoInUI": "我方全部阵亡", + "victoryInfoInUI": "1.消灭所有敌军\r\n2.所有村民到达村口时,死亡的村民数量≤2", + "loseInfoInUI": "1.我方全部阵亡\r\n2.死亡的村民数量≥3", "starInfoInUI": "1.我方无人阵亡;\r\n2.在20回合内获得胜利", - "cost": 2, + "cost": 10, "iconInMap": "spine&qingnian", "iconName": "世外小村", - "heroInUI": "3&3605", + "heroInUI": "3&47", "detailUIBg": "1000_1", "recommendedPower": 10009, "previousGk": 126, @@ -29,14 +29,18 @@ "movePoint": 496, "needPrepare": 1, "spineInBigMap": "&", - "HeroNum": "6&6" + "HeroNum": "6&6", + "gkInfo": " 循着不详的气息,赵云一行人来到了一座神秘的小村庄。老人们说,他们是为了躲避连年战乱才来此地。\r\n 想不到即使是在这里,也藏着不为人知的阴谋……\r\n 这些阴兵,究竟由谁招来?山林里还有恶兽蠢蠢欲动……\r\n", + "HeroNum_1": "1&6", + "progress": "1&0|2&0", + "progressDesc": "已逃走的百姓数量&被击杀的百姓数量" }, { - "war_id": 2012, - "dispatchJsonId": 2012, - "bg_img": 2012, - "mapid": 2012, - "script_id": "R_2012&S_2012&RE_2012", + "war_id": 2512, + "dispatchJsonId": 2512, + "bg_img": 2512, + "mapid": 2512, + "script_id": "R_2512&S_2512&RE_2512", "fixReward": "&", "conditionReward": "31001&5000&0|31002&100&0|11002&10&0|22001&2&0", "RandomReward": "&", @@ -44,31 +48,35 @@ "gk_name": "遗迹&迷雾洞窟", "kingExp": 0, "lvLimted": 1, - "turnLimted": 30, + "turnLimted": 20, "forcedCharactor": "&", "fobiddenCharactor": "&", "victoryInfoInUI": "消灭所有敌军", "loseInfoInUI": "我方全部阵亡", "starInfoInUI": "1.我方无人阵亡;\r\n2.在20回合内获得胜利", - "cost": 2, + "cost": 10, "iconInMap": "spine&yinbingdao", "iconName": "迷雾洞窟", "heroInUI": "3&3601", "detailUIBg": "1000_2", "recommendedPower": 10010, - "previousGk": 2011, + "previousGk": 2511, "relatedGk": 1000224, "movePoint": 503, "needPrepare": 1, "spineInBigMap": "&", - "HeroNum": "6&6" + "HeroNum": "6&6", + "gkInfo": "2.唧唧复唧唧,木兰当户织,谁言寸草心,报得三春晖。", + "HeroNum_1": "1&6", + "progress": "&", + "progressDesc": "&" }, { - "war_id": 2013, - "dispatchJsonId": 2013, - "bg_img": 2013, - "mapid": 2013, - "script_id": "R_2013&S_2013&RE_2013", + "war_id": 2513, + "dispatchJsonId": 2513, + "bg_img": 2513, + "mapid": 2513, + "script_id": "R_2513&S_2513&RE_2513", "fixReward": "&", "conditionReward": "31001&5000&0|31002&100&0|11002&10&0|22001&2&0", "RandomReward": "&", @@ -76,30 +84,34 @@ "gk_name": "遗迹&黄天祭坛", "kingExp": 0, "lvLimted": 1, - "turnLimted": 50, + "turnLimted": 40, "forcedCharactor": "&", "fobiddenCharactor": "&", "victoryInfoInUI": "消灭所有敌军", "loseInfoInUI": "我方全部阵亡", - "starInfoInUI": "1.我方无人阵亡;\r\n2.在30回合内获得胜利", - "cost": 2, + "starInfoInUI": "1.我方无人阵亡;\r\n2.在40回合内获得胜利", + "cost": 30, "iconInMap": "spine&zhangjiao", "iconName": "黄天祭坛", "heroInUI": "3&47", "detailUIBg": "1000_3", "recommendedPower": 10011, - "previousGk": 2012, + "previousGk": 2512, "relatedGk": 1000324, "movePoint": 507, "needPrepare": 1, "spineInBigMap": "&", - "HeroNum": "6&6" + "HeroNum": "6&6", + "gkInfo": "3.小怜玉体横陈夜,已报周军入晋阳", + "HeroNum_1": "1&6", + "progress": "&", + "progressDesc": "&" }, { - "war_id": 2021, - "dispatchJsonId": 2021, - "bg_img": 9221, - "mapid": 9221, + "war_id": 2521, + "dispatchJsonId": 2521, + "bg_img": 2521, + "mapid": 2521, "script_id": "R_9201&S_9201&RE_9201", "fixReward": "&", "conditionReward": "31001&6000&0|31002&100&0|11002&10&0|22001&2&0", @@ -114,7 +126,7 @@ "victoryInfoInUI": "消灭所有敌军", "loseInfoInUI": "我方全部阵亡", "starInfoInUI": "1.我方无人阵亡;\r\n2.在5回合内获得胜利", - "cost": 2, + "cost": 10, "iconInMap": "spine&qingnian", "iconName": 0, "heroInUI": "3&3605", @@ -125,13 +137,17 @@ "movePoint": 529, "needPrepare": 1, "spineInBigMap": "&", - "HeroNum": "6&6" + "HeroNum": "6&6", + "gkInfo": "2.煮豆燃萁豆,豆在釜中泣,本是同根生,相煎何太急。", + "HeroNum_1": "1&6", + "progress": "&", + "progressDesc": "&" }, { - "war_id": 2022, - "dispatchJsonId": 2022, - "bg_img": 9222, - "mapid": 9222, + "war_id": 2522, + "dispatchJsonId": 2522, + "bg_img": 2522, + "mapid": 2522, "script_id": "R_9202&S_9202&RE_9202", "fixReward": "&", "conditionReward": "31001&6000&0|31002&100&0|11002&10&0|22001&2&0", @@ -146,7 +162,7 @@ "victoryInfoInUI": "消灭所有敌军", "loseInfoInUI": "我方全部阵亡", "starInfoInUI": "1.我方无人阵亡;\r\n2.在5回合内获得胜利", - "cost": 2, + "cost": 10, "iconInMap": "spine&yinbingdao", "iconName": 0, "heroInUI": "3&3601", @@ -157,13 +173,17 @@ "movePoint": 534, "needPrepare": 1, "spineInBigMap": "&", - "HeroNum": "6&6" + "HeroNum": "6&6", + "gkInfo": "3.唧唧复唧唧,木兰当户织,谁言寸草心,报得三春晖。", + "HeroNum_1": "1&6", + "progress": "&", + "progressDesc": "&" }, { - "war_id": 2023, - "dispatchJsonId": 2023, - "bg_img": 9223, - "mapid": 9223, + "war_id": 2523, + "dispatchJsonId": 2523, + "bg_img": 2523, + "mapid": 2523, "script_id": "R_9203&S_9203&RE_9203", "fixReward": "&", "conditionReward": "31001&6000&0|31002&100&0|11002&10&0|22001&2&0", @@ -178,7 +198,7 @@ "victoryInfoInUI": "消灭所有敌军", "loseInfoInUI": "我方全部阵亡", "starInfoInUI": "1.我方无人阵亡;\r\n2.在5回合内获得胜利", - "cost": 2, + "cost": 30, "iconInMap": "spine&zhangjiao", "iconName": 0, "heroInUI": "3&3613", @@ -189,11 +209,15 @@ "movePoint": 539, "needPrepare": 1, "spineInBigMap": "&", - "HeroNum": "6&6" + "HeroNum": "6&6", + "gkInfo": "4.小怜玉体横陈夜,已报周军入晋阳", + "HeroNum_1": "1&6", + "progress": "&", + "progressDesc": "&" }, { - "war_id": 2031, - "dispatchJsonId": 2031, + "war_id": 2531, + "dispatchJsonId": 2531, "bg_img": 9231, "mapid": 9231, "script_id": "R_9301&S_9301&RE_9301", @@ -210,7 +234,7 @@ "victoryInfoInUI": "消灭所有敌军", "loseInfoInUI": "我方全部阵亡", "starInfoInUI": "1.我方无人阵亡;\r\n2.在5回合内获得胜利", - "cost": 2, + "cost": 10, "iconInMap": "spine&qingnian", "iconName": 0, "heroInUI": "3&3605", @@ -221,11 +245,15 @@ "movePoint": 544, "needPrepare": 1, "spineInBigMap": "&", - "HeroNum": "6&6" + "HeroNum": "6&6", + "gkInfo": "3.煮豆燃萁豆,豆在釜中泣,本是同根生,相煎何太急。", + "HeroNum_1": "1&6", + "progress": "&", + "progressDesc": "&" }, { - "war_id": 2032, - "dispatchJsonId": 2032, + "war_id": 2532, + "dispatchJsonId": 2532, "bg_img": 9232, "mapid": 9232, "script_id": "R_9302&S_9302&RE_9302", @@ -242,7 +270,7 @@ "victoryInfoInUI": "消灭所有敌军", "loseInfoInUI": "我方全部阵亡", "starInfoInUI": "1.我方无人阵亡;\r\n2.在5回合内获得胜利", - "cost": 2, + "cost": 10, "iconInMap": "spine&yinbingdao", "iconName": 0, "heroInUI": "3&3601", @@ -253,11 +281,15 @@ "movePoint": 549, "needPrepare": 1, "spineInBigMap": "&", - "HeroNum": "6&6" + "HeroNum": "6&6", + "gkInfo": "4.唧唧复唧唧,木兰当户织,谁言寸草心,报得三春晖。", + "HeroNum_1": "1&6", + "progress": "&", + "progressDesc": "&" }, { - "war_id": 2033, - "dispatchJsonId": 2033, + "war_id": 2533, + "dispatchJsonId": 2533, "bg_img": 9233, "mapid": 9233, "script_id": "R_9303&S_9303&RE_9303", @@ -274,7 +306,7 @@ "victoryInfoInUI": "消灭所有敌军", "loseInfoInUI": "我方全部阵亡", "starInfoInUI": "1.我方无人阵亡;\r\n2.在5回合内获得胜利", - "cost": 2, + "cost": 30, "iconInMap": "spine&zhangjiao", "iconName": 0, "heroInUI": "3&3613", @@ -285,11 +317,15 @@ "movePoint": 554, "needPrepare": 1, "spineInBigMap": "&", - "HeroNum": "6&6" + "HeroNum": "6&6", + "gkInfo": "5.小怜玉体横陈夜,已报周军入晋阳", + "HeroNum_1": "1&6", + "progress": "&", + "progressDesc": "&" }, { - "war_id": 2041, - "dispatchJsonId": 2041, + "war_id": 2541, + "dispatchJsonId": 2541, "bg_img": 9241, "mapid": 9241, "script_id": "R_9401&S_9401&RE_9401", @@ -306,7 +342,7 @@ "victoryInfoInUI": "消灭所有敌军", "loseInfoInUI": "我方全部阵亡", "starInfoInUI": "1.我方无人阵亡;\r\n2.在5回合内获得胜利", - "cost": 2, + "cost": 10, "iconInMap": "spine&qingnian", "iconName": 0, "heroInUI": "3&3605", @@ -317,11 +353,15 @@ "movePoint": 559, "needPrepare": 1, "spineInBigMap": "&", - "HeroNum": "6&6" + "HeroNum": "6&6", + "gkInfo": "4.煮豆燃萁豆,豆在釜中泣,本是同根生,相煎何太急。", + "HeroNum_1": "1&6", + "progress": "&", + "progressDesc": "&" }, { - "war_id": 2042, - "dispatchJsonId": 2042, + "war_id": 2542, + "dispatchJsonId": 2542, "bg_img": 9242, "mapid": 9242, "script_id": "R_9402&S_9402&RE_9402", @@ -338,7 +378,7 @@ "victoryInfoInUI": "消灭所有敌军", "loseInfoInUI": "我方全部阵亡", "starInfoInUI": "1.我方无人阵亡;\r\n2.在5回合内获得胜利", - "cost": 2, + "cost": 10, "iconInMap": "spine&yinbingdao", "iconName": 0, "heroInUI": "3&3601", @@ -349,11 +389,15 @@ "movePoint": 564, "needPrepare": 1, "spineInBigMap": "&", - "HeroNum": "6&6" + "HeroNum": "6&6", + "gkInfo": "5.唧唧复唧唧,木兰当户织,谁言寸草心,报得三春晖。", + "HeroNum_1": "1&6", + "progress": "&", + "progressDesc": "&" }, { - "war_id": 2043, - "dispatchJsonId": 2043, + "war_id": 2543, + "dispatchJsonId": 2543, "bg_img": 9243, "mapid": 9243, "script_id": "R_9403&S_9403&RE_9403", @@ -370,7 +414,7 @@ "victoryInfoInUI": "消灭所有敌军", "loseInfoInUI": "我方全部阵亡", "starInfoInUI": "1.我方无人阵亡;\r\n2.在5回合内获得胜利", - "cost": 2, + "cost": 30, "iconInMap": "spine&zhangjiao", "iconName": 0, "heroInUI": "3&3613", @@ -381,11 +425,15 @@ "movePoint": 569, "needPrepare": 1, "spineInBigMap": "&", - "HeroNum": "6&6" + "HeroNum": "6&6", + "gkInfo": "6.小怜玉体横陈夜,已报周军入晋阳", + "HeroNum_1": "1&6", + "progress": "&", + "progressDesc": "&" }, { - "war_id": 2051, - "dispatchJsonId": 2051, + "war_id": 2551, + "dispatchJsonId": 2551, "bg_img": 9251, "mapid": 9251, "script_id": "R_9501&S_9501&RE_9501", @@ -402,7 +450,7 @@ "victoryInfoInUI": "消灭所有敌军", "loseInfoInUI": "我方全部阵亡", "starInfoInUI": "1.我方无人阵亡;\r\n2.在5回合内获得胜利", - "cost": 2, + "cost": 10, "iconInMap": "spine&qingnian", "iconName": 0, "heroInUI": "3&1535", @@ -413,11 +461,15 @@ "movePoint": 574, "needPrepare": 1, "spineInBigMap": "&", - "HeroNum": "6&6" + "HeroNum": "6&6", + "gkInfo": "5.煮豆燃萁豆,豆在釜中泣,本是同根生,相煎何太急。", + "HeroNum_1": "1&6", + "progress": "&", + "progressDesc": "&" }, { - "war_id": 2052, - "dispatchJsonId": 2052, + "war_id": 2552, + "dispatchJsonId": 2552, "bg_img": 9252, "mapid": 9252, "script_id": "R_9502&S_9502&RE_9502", @@ -434,7 +486,7 @@ "victoryInfoInUI": "消灭所有敌军", "loseInfoInUI": "我方全部阵亡", "starInfoInUI": "1.我方无人阵亡;\r\n2.在5回合内获得胜利", - "cost": 2, + "cost": 10, "iconInMap": "spine&yinbingdao", "iconName": 0, "heroInUI": "3&3601", @@ -445,11 +497,15 @@ "movePoint": 579, "needPrepare": 1, "spineInBigMap": "&", - "HeroNum": "6&6" + "HeroNum": "6&6", + "gkInfo": "6.唧唧复唧唧,木兰当户织,谁言寸草心,报得三春晖。", + "HeroNum_1": "1&6", + "progress": "&", + "progressDesc": "&" }, { - "war_id": 2053, - "dispatchJsonId": 2053, + "war_id": 2553, + "dispatchJsonId": 2553, "bg_img": 9253, "mapid": 9253, "script_id": "R_9503&S_9503&RE_9503", @@ -466,7 +522,7 @@ "victoryInfoInUI": "消灭所有敌军", "loseInfoInUI": "我方全部阵亡", "starInfoInUI": "1.我方无人阵亡;\r\n2.在5回合内获得胜利", - "cost": 2, + "cost": 30, "iconInMap": "spine&zhangjiao", "iconName": 0, "heroInUI": "3&1540", @@ -477,11 +533,15 @@ "movePoint": 584, "needPrepare": 1, "spineInBigMap": "&", - "HeroNum": "6&6" + "HeroNum": "6&6", + "gkInfo": "7.小怜玉体横陈夜,已报周军入晋阳", + "HeroNum_1": "1&6", + "progress": "&", + "progressDesc": "&" }, { - "war_id": 2061, - "dispatchJsonId": 9601, + "war_id": 2561, + "dispatchJsonId": 2561, "bg_img": 9261, "mapid": 9261, "script_id": "R_9601&S_9601&RE_9601", @@ -498,7 +558,7 @@ "victoryInfoInUI": "消灭所有敌军", "loseInfoInUI": "我方全部阵亡", "starInfoInUI": "1.我方无人阵亡;\r\n2.在5回合内获得胜利", - "cost": 2, + "cost": 10, "iconInMap": "spine&wangcan", "iconName": 0, "heroInUI": "3&3605", @@ -509,11 +569,15 @@ "movePoint": 589, "needPrepare": 1, "spineInBigMap": "&", - "HeroNum": "6&6" + "HeroNum": "6&6", + "gkInfo": "6.煮豆燃萁豆,豆在釜中泣,本是同根生,相煎何太急。", + "HeroNum_1": "1&6", + "progress": "&", + "progressDesc": "&" }, { - "war_id": 2062, - "dispatchJsonId": 9602, + "war_id": 2562, + "dispatchJsonId": 2562, "bg_img": 9262, "mapid": 9262, "script_id": "R_9602&S_9602&RE_9602", @@ -530,7 +594,7 @@ "victoryInfoInUI": "消灭所有敌军", "loseInfoInUI": "我方全部阵亡", "starInfoInUI": "1.我方无人阵亡;\r\n2.在5回合内获得胜利", - "cost": 2, + "cost": 10, "iconInMap": "spine&yanshi", "iconName": 0, "heroInUI": "3&3601", @@ -541,11 +605,15 @@ "movePoint": 594, "needPrepare": 1, "spineInBigMap": "&", - "HeroNum": "6&6" + "HeroNum": "6&6", + "gkInfo": "7.唧唧复唧唧,木兰当户织,谁言寸草心,报得三春晖。", + "HeroNum_1": "1&6", + "progress": "&", + "progressDesc": "&" }, { - "war_id": 2063, - "dispatchJsonId": 9603, + "war_id": 2563, + "dispatchJsonId": 2563, "bg_img": 9263, "mapid": 9263, "script_id": "R_9603&S_9603&RE_9603", @@ -562,7 +630,7 @@ "victoryInfoInUI": "消灭所有敌军", "loseInfoInUI": "我方全部阵亡", "starInfoInUI": "1.我方无人阵亡;\r\n2.在5回合内获得胜利", - "cost": 2, + "cost": 30, "iconInMap": "spine&sengren", "iconName": 0, "heroInUI": "3&3613", @@ -573,11 +641,15 @@ "movePoint": 599, "needPrepare": 1, "spineInBigMap": "chapter6_yiji", - "HeroNum": "6&6" + "HeroNum": "6&6", + "gkInfo": "8.小怜玉体横陈夜,已报周军入晋阳", + "HeroNum_1": "1&6", + "progress": "&", + "progressDesc": "&" }, { - "war_id": 2071, - "dispatchJsonId": 2071, + "war_id": 2571, + "dispatchJsonId": 2571, "bg_img": 9271, "mapid": 9271, "script_id": "R_9701&S_9701&RE_9701", @@ -594,7 +666,7 @@ "victoryInfoInUI": "消灭所有敌军", "loseInfoInUI": "我方全部阵亡", "starInfoInUI": "1.我方无人阵亡;\r\n2.在5回合内获得胜利", - "cost": 2, + "cost": 10, "iconInMap": "spine&qingnian", "iconName": 0, "heroInUI": "3&3605", @@ -605,11 +677,15 @@ "movePoint": 604, "needPrepare": 1, "spineInBigMap": "&", - "HeroNum": "6&6" + "HeroNum": "6&6", + "gkInfo": "7.煮豆燃萁豆,豆在釜中泣,本是同根生,相煎何太急。", + "HeroNum_1": "1&6", + "progress": "&", + "progressDesc": "&" }, { - "war_id": 2072, - "dispatchJsonId": 2072, + "war_id": 2572, + "dispatchJsonId": 2572, "bg_img": 9272, "mapid": 9272, "script_id": "R_9702&S_9702&RE_9702", @@ -626,7 +702,7 @@ "victoryInfoInUI": "消灭所有敌军", "loseInfoInUI": "我方全部阵亡", "starInfoInUI": "1.我方无人阵亡;\r\n2.在5回合内获得胜利", - "cost": 2, + "cost": 10, "iconInMap": "spine&yinbingdao", "iconName": 0, "heroInUI": "3&3601", @@ -637,11 +713,15 @@ "movePoint": 609, "needPrepare": 1, "spineInBigMap": "&", - "HeroNum": "6&6" + "HeroNum": "6&6", + "gkInfo": "8.唧唧复唧唧,木兰当户织,谁言寸草心,报得三春晖。", + "HeroNum_1": "1&6", + "progress": "&", + "progressDesc": "&" }, { - "war_id": 2073, - "dispatchJsonId": 2073, + "war_id": 2573, + "dispatchJsonId": 2573, "bg_img": 9273, "mapid": 9273, "script_id": "R_9703&S_9703&RE_9703", @@ -658,7 +738,7 @@ "victoryInfoInUI": "消灭所有敌军", "loseInfoInUI": "我方全部阵亡", "starInfoInUI": "1.我方无人阵亡;\r\n2.在5回合内获得胜利", - "cost": 2, + "cost": 30, "iconInMap": "spine&zhangjiao", "iconName": 0, "heroInUI": "3&3613", @@ -669,6 +749,10 @@ "movePoint": 614, "needPrepare": 1, "spineInBigMap": "&", - "HeroNum": "6&6" + "HeroNum": "6&6", + "gkInfo": "9.小怜玉体横陈夜,已报周军入晋阳", + "HeroNum_1": "1&6", + "progress": "&", + "progressDesc": "&" } ] \ No newline at end of file diff --git a/shared/resource/jsons/dic_zyz_gk_main.json b/shared/resource/jsons/dic_zyz_gk_main.json index 883062100..bdf7a1e10 100644 --- a/shared/resource/jsons/dic_zyz_gk_main.json +++ b/shared/resource/jsons/dic_zyz_gk_main.json @@ -35,8 +35,8 @@ { "war_id": 102, "dispatchJsonId": 102, - "bg_img": 601, - "mapid": 601, + "bg_img": 102, + "mapid": 102, "chapter": 0, "script_id": "R_102&S_102&RE_102", "fixReward": "&", @@ -314,7 +314,7 @@ "forcedCharactor": "&", "fobiddenCharactor": "&", "victoryInfoInUI": "消灭所有敌军", - "loseInfoInUI": "我方全部阵亡", + "loseInfoInUI": "我方全部阵亡或黄巾军阵亡", "starInfoInUI": "无", "cost": 10, "iconInMap": "spine&lang", @@ -332,8 +332,8 @@ { "war_id": 112, "dispatchJsonId": 112, - "bg_img": 111, - "mapid": 111, + "bg_img": 112, + "mapid": 112, "chapter": 1, "script_id": "R_112&S_112&RE_112", "fixReward": "11001&2|31001&300|17004&1", @@ -464,8 +464,8 @@ { "war_id": 116, "dispatchJsonId": 116, - "bg_img": 115, - "mapid": 115, + "bg_img": 116, + "mapid": 116, "chapter": 1, "script_id": "R_116&S_116&RE_116", "fixReward": "11001&2|31001&300|17003&1", @@ -596,8 +596,8 @@ { "war_id": 120, "dispatchJsonId": 120, - "bg_img": 119, - "mapid": 119, + "bg_img": 120, + "mapid": 120, "chapter": 1, "script_id": "R_120&S_120&RE_120", "fixReward": "11001&2|31001&300|17002&1", @@ -728,8 +728,8 @@ { "war_id": 124, "dispatchJsonId": 124, - "bg_img": 123, - "mapid": 123, + "bg_img": 124, + "mapid": 124, "chapter": 1, "script_id": "R_124&S_124&RE_124", "fixReward": "11001&2|31001&300|17006&1", @@ -1587,7 +1587,7 @@ "war_id": 222, "dispatchJsonId": 222, "bg_img": 605, - "mapid": 605, + "mapid": 222, "chapter": 2, "script_id": "R_222&S_222", "fixReward": "11001&2|31001&500|17012&1", @@ -2213,8 +2213,8 @@ { "war_id": 317, "dispatchJsonId": 317, - "bg_img": 601, - "mapid": 601, + "bg_img": 608, + "mapid": 317, "chapter": 3, "script_id": "R_317&S_317", "fixReward": "11001&3|31001&700|17021&1", @@ -2246,8 +2246,8 @@ { "war_id": 318, "dispatchJsonId": 318, - "bg_img": 602, - "mapid": 602, + "bg_img": 613, + "mapid": 318, "chapter": 3, "script_id": "R_318&S_318", "fixReward": "11001&3|31001&700|17017&1", @@ -2279,8 +2279,8 @@ { "war_id": 319, "dispatchJsonId": 319, - "bg_img": 604, - "mapid": 604, + "bg_img": 621, + "mapid": 319, "chapter": 3, "script_id": "R_319&S_319", "fixReward": "11001&3|31001&700|17018&1", @@ -2345,8 +2345,8 @@ { "war_id": 321, "dispatchJsonId": 321, - "bg_img": 603, - "mapid": 603, + "bg_img": 602, + "mapid": 321, "chapter": 3, "script_id": "R_321&S_321", "fixReward": "11001&3|31001&700|17020&1", @@ -2378,8 +2378,8 @@ { "war_id": 322, "dispatchJsonId": 322, - "bg_img": 604, - "mapid": 604, + "bg_img": 608, + "mapid": 322, "chapter": 3, "script_id": "R_322&S_322", "fixReward": "11001&3|31001&700|17021&1", @@ -2411,8 +2411,8 @@ { "war_id": 323, "dispatchJsonId": 323, - "bg_img": 602, - "mapid": 602, + "bg_img": 605, + "mapid": 323, "chapter": 3, "script_id": "R_323&S_323", "fixReward": "11001&3|31001&700|17017&1", diff --git a/shared/resource/jsons/dic_zyz_hero.json b/shared/resource/jsons/dic_zyz_hero.json index b879ed25c..a1d3b7d02 100644 --- a/shared/resource/jsons/dic_zyz_hero.json +++ b/shared/resource/jsons/dic_zyz_hero.json @@ -34,7 +34,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9901, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 2, @@ -71,7 +73,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9902, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 3, @@ -108,7 +112,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9903, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 4, @@ -145,7 +151,9 @@ "gender": 1, "atkSpineEffect": "gong", "probation": 9904, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 5, @@ -182,7 +190,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 9905, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 7, @@ -219,7 +229,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9906, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 8, @@ -256,7 +268,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9907, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 10, @@ -293,7 +307,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9908, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 11, @@ -330,7 +346,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9909, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 12, @@ -367,7 +385,9 @@ "gender": 1, "atkSpineEffect": "gong", "probation": 9910, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 13, @@ -404,7 +424,9 @@ "gender": 2, "atkSpineEffect": "faqi", "probation": 9911, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 14, @@ -441,7 +463,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 9912, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 16, @@ -478,7 +502,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9913, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 17, @@ -515,7 +541,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9914, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 18, @@ -552,7 +580,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9915, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 19, @@ -589,7 +619,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9916, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 20, @@ -626,7 +658,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9917, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 21, @@ -663,7 +697,9 @@ "gender": 1, "atkSpineEffect": "gong", "probation": 9918, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 22, @@ -700,7 +736,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 9919, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 24, @@ -737,7 +775,9 @@ "gender": 1, "atkSpineEffect": "dunqi", "probation": 9920, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 25, @@ -774,7 +814,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9921, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 26, @@ -811,7 +853,9 @@ "gender": 2, "atkSpineEffect": "liqi", "probation": 9922, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 27, @@ -848,7 +892,9 @@ "gender": 2, "atkSpineEffect": "liqi", "probation": 9923, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 28, @@ -885,7 +931,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 9924, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 30, @@ -922,7 +970,9 @@ "gender": 1, "atkSpineEffect": "gong", "probation": 9925, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 31, @@ -959,7 +1009,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 9926, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 32, @@ -996,7 +1048,9 @@ "gender": 1, "atkSpineEffect": "dunqi", "probation": 9927, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 33, @@ -1033,7 +1087,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9928, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 34, @@ -1070,7 +1126,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 9929, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 35, @@ -1107,7 +1165,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9930, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 36, @@ -1144,7 +1204,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9931, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 37, @@ -1181,7 +1243,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9932, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 38, @@ -1218,7 +1282,9 @@ "gender": 2, "atkSpineEffect": "gong", "probation": 9933, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 40, @@ -1255,7 +1321,9 @@ "gender": 2, "atkSpineEffect": "faqi", "probation": 9934, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 41, @@ -1292,7 +1360,9 @@ "gender": 2, "atkSpineEffect": "faqi", "probation": 9935, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 44, @@ -1329,7 +1399,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9936, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 45, @@ -1366,7 +1438,9 @@ "gender": 1, "atkSpineEffect": "gong", "probation": 9937, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 46, @@ -1403,7 +1477,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 9938, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 47, @@ -1440,7 +1516,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 9939, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 49, @@ -1477,7 +1555,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9940, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 50, @@ -1514,7 +1594,9 @@ "gender": 1, "atkSpineEffect": "gong", "probation": 9941, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 51, @@ -1551,7 +1633,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 9942, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 52, @@ -1588,7 +1672,9 @@ "gender": 2, "atkSpineEffect": "liqi", "probation": 9943, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 53, @@ -1625,7 +1711,9 @@ "gender": 2, "atkSpineEffect": "dunqi", "probation": 9944, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 54, @@ -1662,7 +1750,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9945, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 55, @@ -1699,7 +1789,9 @@ "gender": 1, "atkSpineEffect": "dunqi", "probation": 9946, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 56, @@ -1736,7 +1828,9 @@ "gender": 2, "atkSpineEffect": "faqi", "probation": 9947, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 57, @@ -1773,7 +1867,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 58, @@ -1790,7 +1886,7 @@ "cost": 0, "jobid": 500, "jobClass": 5, - "skill": 0, + "skill": 1001, "pieceId": 21058, "hp": 1000, "atk": 500, @@ -1810,7 +1906,9 @@ "gender": 1, "atkSpineEffect": "dunqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 59, @@ -1847,7 +1945,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 60, @@ -1884,7 +1984,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 61, @@ -1921,7 +2023,9 @@ "gender": 1, "atkSpineEffect": "dunqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 62, @@ -1958,7 +2062,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9948, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 63, @@ -1995,7 +2101,9 @@ "gender": 1, "atkSpineEffect": "dunqi", "probation": 9949, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 64, @@ -2032,7 +2140,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9950, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 301, @@ -2069,7 +2179,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 302, @@ -2106,7 +2218,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 303, @@ -2143,7 +2257,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 304, @@ -2180,7 +2296,9 @@ "gender": 1, "atkSpineEffect": "gong", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 305, @@ -2217,7 +2335,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 306, @@ -2254,7 +2374,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 307, @@ -2291,7 +2413,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 308, @@ -2328,7 +2452,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 309, @@ -2365,7 +2491,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 310, @@ -2402,7 +2530,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 311, @@ -2439,7 +2569,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 312, @@ -2476,7 +2608,9 @@ "gender": 1, "atkSpineEffect": "gong", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 313, @@ -2513,7 +2647,9 @@ "gender": 2, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 314, @@ -2550,7 +2686,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 315, @@ -2587,7 +2725,9 @@ "gender": 1, "atkSpineEffect": "dunqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 316, @@ -2624,7 +2764,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 317, @@ -2661,7 +2803,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 318, @@ -2698,7 +2842,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 319, @@ -2735,7 +2881,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 320, @@ -2772,7 +2920,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 321, @@ -2809,7 +2959,9 @@ "gender": 1, "atkSpineEffect": "gong", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 322, @@ -2846,7 +2998,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 323, @@ -2883,7 +3037,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 324, @@ -2920,7 +3076,9 @@ "gender": 1, "atkSpineEffect": "dunqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 325, @@ -2957,7 +3115,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 326, @@ -2994,7 +3154,9 @@ "gender": 2, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 327, @@ -3031,7 +3193,9 @@ "gender": 2, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 328, @@ -3068,7 +3232,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 329, @@ -3105,7 +3271,9 @@ "gender": 2, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 330, @@ -3142,7 +3310,9 @@ "gender": 1, "atkSpineEffect": "gong", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 331, @@ -3179,7 +3349,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 332, @@ -3216,7 +3388,9 @@ "gender": 1, "atkSpineEffect": "dunqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 333, @@ -3253,7 +3427,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 334, @@ -3290,7 +3466,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 335, @@ -3327,7 +3505,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 336, @@ -3364,7 +3544,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 337, @@ -3401,7 +3583,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 338, @@ -3438,7 +3622,9 @@ "gender": 2, "atkSpineEffect": "gong", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 339, @@ -3475,7 +3661,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 340, @@ -3512,7 +3700,9 @@ "gender": 2, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 341, @@ -3549,7 +3739,9 @@ "gender": 2, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 342, @@ -3586,7 +3778,9 @@ "gender": 2, "atkSpineEffect": "gong", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 343, @@ -3623,7 +3817,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 344, @@ -3660,7 +3856,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 345, @@ -3697,7 +3895,9 @@ "gender": 1, "atkSpineEffect": "gong", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 346, @@ -3734,7 +3934,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 347, @@ -3771,7 +3973,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 348, @@ -3808,7 +4012,9 @@ "gender": 2, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 349, @@ -3845,7 +4051,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 350, @@ -3882,7 +4090,9 @@ "gender": 1, "atkSpineEffect": "gong", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 351, @@ -3919,7 +4129,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 352, @@ -3956,7 +4168,9 @@ "gender": 2, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 353, @@ -3993,7 +4207,9 @@ "gender": 2, "atkSpineEffect": "dunqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 354, @@ -4030,7 +4246,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 355, @@ -4067,7 +4285,9 @@ "gender": 1, "atkSpineEffect": "dunqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 356, @@ -4104,7 +4324,9 @@ "gender": 2, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 357, @@ -4141,7 +4363,9 @@ "gender": 1, "atkSpineEffect": "dunqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 358, @@ -4158,7 +4382,7 @@ "cost": 0, "jobid": 500, "jobClass": 5, - "skill": 0, + "skill": 1001, "pieceId": 0, "hp": 60, "atk": 20, @@ -4178,7 +4402,9 @@ "gender": 1, "atkSpineEffect": "dunqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 359, @@ -4215,7 +4441,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 360, @@ -4252,7 +4480,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 361, @@ -4289,7 +4519,9 @@ "gender": 1, "atkSpineEffect": "dunqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 362, @@ -4326,7 +4558,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1001, @@ -4363,7 +4597,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1002, @@ -4400,7 +4636,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1003, @@ -4437,7 +4675,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1004, @@ -4474,7 +4714,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1005, @@ -4511,7 +4753,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1006, @@ -4548,7 +4792,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1007, @@ -4585,7 +4831,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1008, @@ -4622,7 +4870,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1009, @@ -4659,7 +4909,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1010, @@ -4696,7 +4948,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1011, @@ -4733,7 +4987,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1012, @@ -4770,7 +5026,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1013, @@ -4807,7 +5065,9 @@ "gender": 0, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1014, @@ -4844,7 +5104,9 @@ "gender": 0, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1015, @@ -4881,7 +5143,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1016, @@ -4918,7 +5182,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1017, @@ -4955,11 +5221,13 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1018, - "spineName": "daobing", + "spineName": "hubaoqi", "rSpineName": "&", "name": "虎豹骑", "actorId": 1018, @@ -4992,7 +5260,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1019, @@ -5029,11 +5299,13 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1020, - "spineName": "qiangbing", + "spineName": "dajishi", "rSpineName": "&", "name": "大戟士", "actorId": 1020, @@ -5066,7 +5338,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1021, @@ -5103,11 +5377,13 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1022, - "spineName": "qiangbing", + "spineName": "bingzhoulangqi", "rSpineName": "&", "name": "并州狼骑", "actorId": 1022, @@ -5140,7 +5416,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1023, @@ -5177,7 +5455,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1024, @@ -5214,7 +5494,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1025, @@ -5251,7 +5533,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1026, @@ -5288,7 +5572,9 @@ "gender": 0, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1027, @@ -5325,7 +5611,9 @@ "gender": 0, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1028, @@ -5362,7 +5650,9 @@ "gender": 0, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1029, @@ -5399,7 +5689,9 @@ "gender": 0, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1030, @@ -5436,7 +5728,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1031, @@ -5473,7 +5767,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1032, @@ -5510,7 +5806,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1033, @@ -5547,7 +5845,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1034, @@ -5584,7 +5884,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1035, @@ -5621,7 +5923,9 @@ "gender": 0, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1036, @@ -5629,7 +5933,7 @@ "rSpineName": "&", "name": "黄巾将领", "actorId": 1036, - "face_id": "huangjinjun", + "face_id": "huangjinjiangling", "quality": 3, "initialStars": 3, "pieceCount": 0, @@ -5658,7 +5962,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1037, @@ -5695,7 +6001,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1038, @@ -5732,7 +6040,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1039, @@ -5769,7 +6079,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1040, @@ -5806,7 +6118,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1041, @@ -5843,7 +6157,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1042, @@ -5880,7 +6196,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1043, @@ -5917,7 +6235,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1044, @@ -5954,7 +6274,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1045, @@ -5991,7 +6313,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1046, @@ -6028,7 +6352,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1047, @@ -6065,12 +6391,14 @@ "gender": 0, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1048, "spineName": "funv", - "rSpineName": "&", + "rSpineName": "LH_funv", "name": "妇女", "actorId": 1048, "face_id": "funv", @@ -6102,7 +6430,9 @@ "gender": 2, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1049, @@ -6139,12 +6469,14 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1050, "spineName": "laoren", - "rSpineName": "&", + "rSpineName": "LH_laoren", "name": "老人", "actorId": 1050, "face_id": "laoren", @@ -6176,7 +6508,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1051, @@ -6213,7 +6547,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1052, @@ -6250,7 +6586,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1053, @@ -6287,7 +6625,9 @@ "gender": 2, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1054, @@ -6324,7 +6664,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1055, @@ -6361,7 +6703,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1056, @@ -6398,7 +6742,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1057, @@ -6435,12 +6781,14 @@ "gender": 0, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1058, "spineName": "caocao", - "rSpineName": "&", + "rSpineName": "LH_wangyun", "name": "王允", "actorId": 1058, "face_id": "laoren", @@ -6472,7 +6820,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1059, @@ -6509,7 +6859,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1060, @@ -6546,7 +6898,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1061, @@ -6583,7 +6937,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1062, @@ -6620,12 +6976,14 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1063, "spineName": "jiaxu", - "rSpineName": "&", + "rSpineName": "LH_chendeng", "name": "陈登", "actorId": 1063, "face_id": "tongyongwenjiang", @@ -6657,7 +7015,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1064, @@ -6694,7 +7054,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1065, @@ -6731,7 +7093,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1070, @@ -6768,7 +7132,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1074, @@ -6805,7 +7171,9 @@ "gender": 0, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1075, @@ -6842,7 +7210,9 @@ "gender": 0, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1076, @@ -6879,7 +7249,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1077, @@ -6916,7 +7288,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1078, @@ -6953,7 +7327,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1080, @@ -6990,7 +7366,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1082, @@ -7027,7 +7405,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1083, @@ -7064,7 +7444,9 @@ "gender": 0, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1084, @@ -7101,7 +7483,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1085, @@ -7138,7 +7522,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1090, @@ -7175,7 +7561,9 @@ "gender": 2, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1091, @@ -7212,7 +7600,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1092, @@ -7249,7 +7639,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1093, @@ -7286,7 +7678,9 @@ "gender": 2, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1094, @@ -7323,7 +7717,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1095, @@ -7360,7 +7756,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1096, @@ -7397,7 +7795,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1097, @@ -7434,7 +7834,9 @@ "gender": 2, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1098, @@ -7471,7 +7873,9 @@ "gender": 2, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1099, @@ -7508,7 +7912,48 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 + }, + { + "heroId": 1100, + "spineName": "qingnian", + "rSpineName": "&", + "name": "姜冏", + "actorId": 1100, + "face_id": "qingnian", + "quality": 3, + "initialStars": 3, + "pieceCount": 0, + "camp": 0, + "area": 0, + "cost": 0, + "jobid": 100, + "jobClass": 1, + "skill": 1001, + "pieceId": 0, + "hp": 1000, + "atk": 20, + "def": 20, + "mdef": 20, + "hp_up": 5, + "atk_up": 1, + "def_up": 1, + "mdef_up": 1, + "sound_click": 1, + "sound_fight": 0, + "info": "村子里的一个小村民", + "actorinfo": "姜维之父。", + "skillScroll": "&", + "position": "&", + "initialSkin": 0, + "gender": 1, + "atkSpineEffect": "liqi", + "probation": 0, + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1110, @@ -7545,15 +7990,17 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1111, - "spineName": "tongyongwenjiang", - "rSpineName": "&", + "spineName": "zhaofan", + "rSpineName": "LH_zhaofan", "name": "赵范", "actorId": 1111, - "face_id": "tongyongwenjiang", + "face_id": "zhaofan", "quality": 3, "initialStars": 3, "pieceCount": 0, @@ -7582,7 +8029,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1112, @@ -7619,7 +8068,9 @@ "gender": 2, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1113, @@ -7627,7 +8078,7 @@ "rSpineName": "&", "name": "猛火车", "actorId": 1113, - "face_id": "monghuoche", + "face_id": "menghuoche", "quality": 3, "initialStars": 3, "pieceCount": 0, @@ -7656,7 +8107,9 @@ "gender": 2, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 0 }, { "heroId": 1114, @@ -7693,7 +8146,9 @@ "gender": 2, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1115, @@ -7730,7 +8185,126 @@ "gender": 2, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 + }, + { + "heroId": 1116, + "spineName": 0, + "rSpineName": "&", + "name": "阴珠", + "actorId": 1116, + "face_id": "yingzhu", + "quality": 0, + "initialStars": 0, + "pieceCount": 0, + "camp": 0, + "area": 0, + "cost": 0, + "jobid": 0, + "jobClass": 0, + "skill": 0, + "pieceId": 0, + "hp": 1000, + "atk": 20, + "def": 20, + "mdef": 20, + "hp_up": 5, + "atk_up": 1, + "def_up": 1, + "mdef_up": 1, + "sound_click": 1, + "sound_fight": 0, + "info": 0, + "actorinfo": 0, + "skillScroll": "&", + "position": "&", + "initialSkin": 0, + "gender": 2, + "atkSpineEffect": "liqi", + "probation": 0, + "center_y": 0, + "show_animation": 0, + "isdeath": 1 + }, + { + "heroId": 1117, + "spineName": "langwang", + "rSpineName": "&", + "name": "雪刃凶狼", + "actorId": 1117, + "face_id": "nulangwang", + "quality": 0, + "initialStars": 0, + "pieceCount": 0, + "camp": 0, + "area": 0, + "cost": 0, + "jobid": 1, + "jobClass": 1, + "skill": 1117, + "pieceId": 0, + "hp": 1000, + "atk": 20, + "def": 20, + "mdef": 20, + "hp_up": 5, + "atk_up": 1, + "def_up": 1, + "mdef_up": 1, + "sound_click": 1, + "sound_fight": 0, + "info": 0, + "actorinfo": 0, + "skillScroll": "&", + "position": "&", + "initialSkin": 0, + "gender": 2, + "atkSpineEffect": "liqi", + "probation": 0, + "center_y": 0, + "show_animation": 0, + "isdeath": 1 + }, + { + "heroId": 1118, + "spineName": "wuhuansaman", + "rSpineName": "&", + "name": "乌桓萨满", + "actorId": 3406, + "face_id": "wuhuanshizhe", + "quality": 0, + "initialStars": 0, + "pieceCount": 0, + "camp": 0, + "area": 0, + "cost": 0, + "jobid": 0, + "jobClass": 0, + "skill": 0, + "pieceId": 0, + "hp": 0, + "atk": 0, + "def": 0, + "mdef": 0, + "hp_up": 0, + "atk_up": 0, + "def_up": 0, + "mdef_up": 0, + "sound_click": 0, + "sound_fight": 0, + "info": 0, + "actorinfo": 0, + "skillScroll": 0, + "position": 0, + "initialSkin": 0, + "gender": 0, + "atkSpineEffect": 0, + "probation": 0, + "center_y": 0, + "show_animation": 0, + "isdeath": 0 }, { "heroId": 1501, @@ -7767,7 +8341,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1502, @@ -7804,7 +8380,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1503, @@ -7841,7 +8419,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1504, @@ -7878,7 +8458,9 @@ "gender": 0, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1505, @@ -7915,7 +8497,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1506, @@ -7952,7 +8536,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1507, @@ -7989,7 +8575,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1508, @@ -8026,7 +8614,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1509, @@ -8063,7 +8653,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1510, @@ -8100,7 +8692,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1511, @@ -8137,7 +8731,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1512, @@ -8174,7 +8770,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1513, @@ -8211,7 +8809,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1514, @@ -8248,7 +8848,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1515, @@ -8285,7 +8887,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1516, @@ -8322,7 +8926,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1517, @@ -8359,7 +8965,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1518, @@ -8396,7 +9004,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1519, @@ -8433,7 +9043,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1520, @@ -8470,7 +9082,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1521, @@ -8507,7 +9121,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1522, @@ -8544,7 +9160,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1523, @@ -8581,7 +9199,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1524, @@ -8618,7 +9238,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1525, @@ -8655,7 +9277,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1526, @@ -8692,7 +9316,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1527, @@ -8729,7 +9355,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1528, @@ -8766,7 +9394,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "&", + "isdeath": 1 }, { "heroId": 1529, @@ -8803,7 +9433,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1530, @@ -8840,7 +9472,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1531, @@ -8877,7 +9511,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1532, @@ -8914,7 +9550,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1533, @@ -8951,7 +9589,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1534, @@ -8988,7 +9628,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1535, @@ -9025,7 +9667,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1536, @@ -9062,7 +9706,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1537, @@ -9099,7 +9745,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1538, @@ -9136,7 +9784,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1539, @@ -9173,7 +9823,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1540, @@ -9210,12 +9862,14 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1541, "spineName": "yanshi", - "rSpineName": "&", + "rSpineName": "LH_yanshi", "name": "偃师", "actorId": 1541, "face_id": "yanshi", @@ -9247,7 +9901,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1542, @@ -9284,7 +9940,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1543, @@ -9321,7 +9979,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1544, @@ -9358,12 +10018,14 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1545, "spineName": "wangcan", - "rSpineName": "&", + "rSpineName": "LH_wangcan", "name": "王璨", "actorId": 1545, "face_id": "wangcan", @@ -9395,7 +10057,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1546, @@ -9432,7 +10096,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1547, @@ -9469,7 +10135,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1548, @@ -9506,7 +10174,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1549, @@ -9543,7 +10213,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1550, @@ -9580,12 +10252,14 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1551, "spineName": "sengren", - "rSpineName": "&", + "rSpineName": "LH_sengren", "name": "安玄", "actorId": 1551, "face_id": "sengren", @@ -9617,7 +10291,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1552, @@ -9654,7 +10330,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1553, @@ -9691,7 +10369,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1554, @@ -9728,7 +10408,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1555, @@ -9765,7 +10447,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1556, @@ -9802,7 +10486,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1557, @@ -9839,7 +10525,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 1558, @@ -9876,7 +10564,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3001, @@ -9913,7 +10603,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 2001, @@ -9950,7 +10642,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 2002, @@ -9987,7 +10681,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 2003, @@ -10024,7 +10720,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 2004, @@ -10061,7 +10759,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 2005, @@ -10098,7 +10798,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 2006, @@ -10135,29 +10837,31 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3101, - "spineName": 0, - "rSpineName": "&", - "name": 0, + "spineName": "zhangjiaoboss", + "rSpineName": "LH_zhangjiao", + "name": "血魔张角", "actorId": 3101, - "face_id": 0, - "quality": 0, - "initialStars": 0, + "face_id": "zhangjiao", + "quality": 3, + "initialStars": 3, "pieceCount": 0, "camp": 0, - "area": 0, + "area": "1009&1009", "cost": 0, - "jobid": 0, - "jobClass": 0, - "skill": 0, + "jobid": 4, + "jobClass": 4, + "skill": 3610, "pieceId": 0, - "hp": 1000, - "atk": 20, - "def": 20, - "mdef": 20, + "hp": 300000, + "atk": 70000, + "def": 40000, + "mdef": 42000, "hp_up": 5, "atk_up": 1, "def_up": 1, @@ -10166,19 +10870,21 @@ "sound_fight": 0, "info": 0, "actorinfo": 0, - "skillScroll": 0, + "skillScroll": "1&31010111|2&31010121|3&31010131", "position": "&", "initialSkin": 0, - "gender": 0, - "atkSpineEffect": 0, + "gender": 1, + "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3201, - "spineName": 0, + "spineName": "tangji", "rSpineName": "&", - "name": 0, + "name": "唐姬", "actorId": 3201, "face_id": 0, "quality": 0, @@ -10209,13 +10915,15 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3202, - "spineName": 0, + "spineName": "gongnv", "rSpineName": "&", - "name": 0, + "name": "宫女", "actorId": 3202, "face_id": 0, "quality": 0, @@ -10246,13 +10954,15 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3203, - "spineName": 0, + "spineName": "hejin", "rSpineName": "&", - "name": 0, + "name": "何进", "actorId": 3203, "face_id": 0, "quality": 0, @@ -10283,13 +10993,15 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3204, - "spineName": 0, + "spineName": "yulinguijun", "rSpineName": "&", - "name": 0, + "name": "羽林鬼军", "actorId": 3204, "face_id": 0, "quality": 0, @@ -10320,13 +11032,15 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3205, - "spineName": 0, + "spineName": "hetaihou", "rSpineName": "&", - "name": 0, + "name": "何太后", "actorId": 3205, "face_id": 0, "quality": 0, @@ -10357,13 +11071,15 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3301, - "spineName": 0, + "spineName": "zhugexuan", "rSpineName": "&", - "name": 0, + "name": "诸葛玄", "actorId": 3301, "face_id": 0, "quality": 0, @@ -10394,13 +11110,15 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3302, - "spineName": 0, + "spineName": "zhaoyun", "rSpineName": "&", - "name": 0, + "name": "夏侯杰", "actorId": 3302, "face_id": 0, "quality": 0, @@ -10431,13 +11149,15 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3303, - "spineName": 0, + "spineName": "guijiangguanhai", "rSpineName": "&", - "name": 0, + "name": "鬼将管亥", "actorId": 3303, "face_id": 0, "quality": 0, @@ -10468,13 +11188,15 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3304, - "spineName": 0, + "spineName": "huangjinminjung", "rSpineName": "&", - "name": 0, + "name": "黄巾冥军", "actorId": 3304, "face_id": 0, "quality": 0, @@ -10505,13 +11227,15 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3305, - "spineName": 0, - "rSpineName": "&", - "name": 0, + "spineName": "caosong", + "rSpineName": "LH_caosong", + "name": "曹嵩", "actorId": 3305, "face_id": 0, "quality": 0, @@ -10542,13 +11266,15 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3306, - "spineName": 0, + "spineName": "yincaoxingzhe", "rSpineName": "&", - "name": 0, + "name": "阴曹刑者", "actorId": 3306, "face_id": 0, "quality": 0, @@ -10579,13 +11305,93 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 + }, + { + "heroId": 3307, + "spineName": "zhangrang", + "rSpineName": "LH_zhangrang", + "name": "张让", + "actorId": 3307, + "face_id": 0, + "quality": 0, + "initialStars": 0, + "pieceCount": 0, + "camp": 0, + "area": 0, + "cost": 0, + "jobid": 0, + "jobClass": 0, + "skill": 0, + "pieceId": 0, + "hp": 0, + "atk": 0, + "def": 0, + "mdef": 0, + "hp_up": 0, + "atk_up": 0, + "def_up": 0, + "mdef_up": 0, + "sound_click": 0, + "sound_fight": 0, + "info": 0, + "actorinfo": 0, + "skillScroll": 0, + "position": 0, + "initialSkin": 0, + "gender": 0, + "atkSpineEffect": 0, + "probation": 0, + "center_y": 0, + "show_animation": 0, + "isdeath": 1 + }, + { + "heroId": 3308, + "spineName": "dongyuedixiang", + "rSpineName": "&", + "name": "东岳帝像", + "actorId": 3308, + "face_id": 0, + "quality": 0, + "initialStars": 0, + "pieceCount": 0, + "camp": 0, + "area": 0, + "cost": 0, + "jobid": 0, + "jobClass": 0, + "skill": 0, + "pieceId": 0, + "hp": 0, + "atk": 0, + "def": 0, + "mdef": 0, + "hp_up": 0, + "atk_up": 0, + "def_up": 0, + "mdef_up": 0, + "sound_click": 0, + "sound_fight": 0, + "info": 0, + "actorinfo": 0, + "skillScroll": 0, + "position": 0, + "initialSkin": 0, + "gender": 0, + "atkSpineEffect": 0, + "probation": 0, + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3401, - "spineName": 0, + "spineName": "kebineng", "rSpineName": "&", - "name": 0, + "name": "轲比能", "actorId": 3401, "face_id": 0, "quality": 0, @@ -10616,13 +11422,15 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3402, - "spineName": 0, + "spineName": "wuhuanshizhe", "rSpineName": "&", - "name": 0, + "name": "乌桓使者", "actorId": 3402, "face_id": 0, "quality": 0, @@ -10653,13 +11461,15 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3403, - "spineName": 0, + "spineName": "wuhuantuqi", "rSpineName": "&", - "name": 0, + "name": "乌桓突骑", "actorId": 3403, "face_id": 0, "quality": 0, @@ -10690,13 +11500,15 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3404, - "spineName": 0, - "rSpineName": "&", - "name": 0, + "spineName": "tuji", + "rSpineName": "LH_tujiren", + "name": "图吉", "actorId": 3404, "face_id": 0, "quality": 0, @@ -10727,13 +11539,15 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3405, - "spineName": 0, - "rSpineName": "&", - "name": 0, + "spineName": "langtuji", + "rSpineName": "LH_tujishouren", + "name": "狼图吉", "actorId": 3405, "face_id": 0, "quality": 0, @@ -10764,15 +11578,17 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3406, - "spineName": 0, + "spineName": "wuhuansaman", "rSpineName": "&", - "name": 0, + "name": "乌桓萨满", "actorId": 3406, - "face_id": 0, + "face_id": "wuhuanshizhe", "quality": 0, "initialStars": 0, "pieceCount": 0, @@ -10801,13 +11617,15 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3407, - "spineName": 0, - "rSpineName": "&", - "name": 0, + "spineName": "guban", + "rSpineName": "LH_dasaman", + "name": "古班", "actorId": 3407, "face_id": 0, "quality": 0, @@ -10838,13 +11656,15 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3408, - "spineName": 0, + "spineName": "bailangxiongling", "rSpineName": "&", - "name": 0, + "name": "白狼凶灵", "actorId": 3408, "face_id": 0, "quality": 0, @@ -10875,13 +11695,15 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3501, - "spineName": 0, - "rSpineName": "&", - "name": 0, + "spineName": "leixu", + "rSpineName": "LH_leixu", + "name": "雷绪", "actorId": 3501, "face_id": 0, "quality": 0, @@ -10912,13 +11734,15 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3502, - "spineName": 0, + "spineName": "gongzei", "rSpineName": "&", - "name": 0, + "name": "弓贼", "actorId": 3502, "face_id": 0, "quality": 0, @@ -10949,13 +11773,15 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3503, - "spineName": 0, + "spineName": "qiangzei", "rSpineName": "&", - "name": 0, + "name": "枪贼", "actorId": 3503, "face_id": 0, "quality": 0, @@ -10986,13 +11812,15 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3504, - "spineName": 0, + "spineName": "chenlan", "rSpineName": "&", - "name": 0, + "name": "陈兰", "actorId": 3504, "face_id": 0, "quality": 0, @@ -11023,13 +11851,15 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3505, - "spineName": 0, + "spineName": "yuanshu", "rSpineName": "&", - "name": 0, + "name": "袁术", "actorId": 3505, "face_id": 0, "quality": 0, @@ -11060,13 +11890,15 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3506, - "spineName": 0, - "rSpineName": "&", - "name": 0, + "spineName": "leibo", + "rSpineName": "LH_leibo", + "name": "雷薄", "actorId": 3506, "face_id": 0, "quality": 0, @@ -11097,49 +11929,14 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 - }, - { - "heroId": 3507, - "spineName": 0, - "rSpineName": "&", - "name": 0, - "actorId": 3507, - "face_id": 0, - "quality": 0, - "initialStars": 0, - "pieceCount": 0, - "camp": 0, - "area": 0, - "cost": 0, - "jobid": 0, - "jobClass": 0, - "skill": 0, - "pieceId": 0, - "hp": 1000, - "atk": 20, - "def": 20, - "mdef": 20, - "hp_up": 5, - "atk_up": 1, - "def_up": 1, - "mdef_up": 1, - "sound_click": 1, - "sound_fight": 0, - "info": 0, - "actorinfo": 0, - "skillScroll": 0, - "position": "&", - "initialSkin": 0, - "gender": 0, - "atkSpineEffect": 0, - "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3601, "spineName": "yanshi", - "rSpineName": "&", + "rSpineName": "LH_yanshi", "name": "偃师", "actorId": 3601, "face_id": "yanshi", @@ -11171,7 +11968,9 @@ "gender": 2, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3602, @@ -11208,7 +12007,9 @@ "gender": 0, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3603, @@ -11245,7 +12046,9 @@ "gender": 0, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3604, @@ -11282,12 +12085,14 @@ "gender": 0, "atkSpineEffect": "dunqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3605, "spineName": "wangcan", - "rSpineName": "&", + "rSpineName": "LH_wangcan", "name": "王璨", "actorId": 3605, "face_id": "wangcan", @@ -11319,7 +12124,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3606, @@ -11356,7 +12163,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3607, @@ -11393,7 +12202,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3608, @@ -11430,7 +12241,9 @@ "gender": 1, "atkSpineEffect": "dunqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3609, @@ -11467,7 +12280,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3610, @@ -11504,7 +12319,9 @@ "gender": 0, "atkSpineEffect": "dunqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3611, @@ -11541,11 +12358,13 @@ "gender": 0, "atkSpineEffect": "dunqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3612, - "spineName": "budongmingwang", + "spineName": "budongmingwang_shi", "rSpineName": "&", "name": "石佛", "actorId": 3612, @@ -11578,12 +12397,14 @@ "gender": 0, "atkSpineEffect": "dunqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3613, "spineName": "sengren", - "rSpineName": "&", + "rSpineName": "LH_sengren", "name": "安玄", "actorId": 3613, "face_id": "sengren", @@ -11615,7 +12436,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3614, @@ -11652,7 +12475,9 @@ "gender": 0, "atkSpineEffect": "dunqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "show", + "isdeath": 1 }, { "heroId": 3615, @@ -11689,7 +12514,9 @@ "gender": 0, "atkSpineEffect": "dunqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "show", + "isdeath": 1 }, { "heroId": 3616, @@ -11726,7 +12553,9 @@ "gender": 0, "atkSpineEffect": "dunqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "show", + "isdeath": 1 }, { "heroId": 3617, @@ -11763,7 +12592,9 @@ "gender": 0, "atkSpineEffect": "dunqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": "show", + "isdeath": 1 }, { "heroId": 3701, @@ -11800,7 +12631,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3702, @@ -11837,7 +12670,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3703, @@ -11874,7 +12709,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3704, @@ -11911,7 +12748,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3705, @@ -11948,7 +12787,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3706, @@ -11985,7 +12826,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 3707, @@ -12022,7 +12865,9 @@ "gender": 0, "atkSpineEffect": 0, "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4001, @@ -12059,7 +12904,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9901, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4002, @@ -12096,7 +12943,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9902, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4003, @@ -12133,7 +12982,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9903, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4004, @@ -12170,7 +13021,9 @@ "gender": 1, "atkSpineEffect": "gong", "probation": 9904, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4005, @@ -12207,7 +13060,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 9905, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4007, @@ -12244,7 +13099,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9906, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4008, @@ -12281,7 +13138,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9907, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4010, @@ -12318,7 +13177,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9908, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4011, @@ -12355,7 +13216,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9909, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4012, @@ -12392,7 +13255,9 @@ "gender": 1, "atkSpineEffect": "gong", "probation": 9910, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4013, @@ -12429,7 +13294,9 @@ "gender": 2, "atkSpineEffect": "faqi", "probation": 9911, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4014, @@ -12466,7 +13333,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 9912, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4016, @@ -12503,7 +13372,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9913, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4017, @@ -12540,7 +13411,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9914, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4018, @@ -12577,7 +13450,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9915, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4019, @@ -12614,7 +13489,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9916, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4020, @@ -12651,7 +13528,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9917, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4021, @@ -12688,7 +13567,9 @@ "gender": 1, "atkSpineEffect": "gong", "probation": 9918, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4022, @@ -12725,7 +13606,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 9919, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4024, @@ -12762,7 +13645,9 @@ "gender": 1, "atkSpineEffect": "dunqi", "probation": 9920, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4025, @@ -12799,7 +13684,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9921, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4026, @@ -12836,7 +13723,9 @@ "gender": 2, "atkSpineEffect": "liqi", "probation": 9922, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4027, @@ -12873,7 +13762,9 @@ "gender": 2, "atkSpineEffect": "liqi", "probation": 9923, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4028, @@ -12910,7 +13801,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 9924, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4030, @@ -12947,7 +13840,9 @@ "gender": 1, "atkSpineEffect": "gong", "probation": 9925, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4031, @@ -12984,7 +13879,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 9926, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4032, @@ -13021,7 +13918,9 @@ "gender": 1, "atkSpineEffect": "dunqi", "probation": 9927, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4033, @@ -13058,7 +13957,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9928, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4034, @@ -13095,7 +13996,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 9929, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4035, @@ -13132,7 +14035,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9930, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4036, @@ -13169,7 +14074,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9931, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4037, @@ -13206,7 +14113,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9932, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4038, @@ -13243,7 +14152,9 @@ "gender": 2, "atkSpineEffect": "gong", "probation": 9933, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4040, @@ -13280,7 +14191,9 @@ "gender": 2, "atkSpineEffect": "faqi", "probation": 9934, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4041, @@ -13317,7 +14230,9 @@ "gender": 2, "atkSpineEffect": "faqi", "probation": 9935, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4044, @@ -13354,7 +14269,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9936, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4045, @@ -13391,7 +14308,9 @@ "gender": 1, "atkSpineEffect": "gong", "probation": 9937, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4046, @@ -13428,7 +14347,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 9938, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4047, @@ -13465,7 +14386,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 9939, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4049, @@ -13502,7 +14425,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9940, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4050, @@ -13539,7 +14464,9 @@ "gender": 1, "atkSpineEffect": "gong", "probation": 9941, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4051, @@ -13576,7 +14503,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 9942, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4052, @@ -13613,7 +14542,9 @@ "gender": 2, "atkSpineEffect": "liqi", "probation": 9943, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4053, @@ -13650,7 +14581,9 @@ "gender": 2, "atkSpineEffect": "dunqi", "probation": 9944, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4054, @@ -13687,7 +14620,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9945, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4055, @@ -13724,7 +14659,9 @@ "gender": 1, "atkSpineEffect": "dunqi", "probation": 9946, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4056, @@ -13761,7 +14698,9 @@ "gender": 2, "atkSpineEffect": "faqi", "probation": 9947, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4062, @@ -13798,7 +14737,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9948, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4063, @@ -13835,7 +14776,9 @@ "gender": 1, "atkSpineEffect": "dunqi", "probation": 9949, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4064, @@ -13872,7 +14815,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9950, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4101, @@ -13909,7 +14854,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4102, @@ -13946,7 +14893,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4103, @@ -13983,7 +14932,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4104, @@ -14020,7 +14971,9 @@ "gender": 1, "atkSpineEffect": "gong", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4105, @@ -14057,7 +15010,9 @@ "gender": 1, "atkSpineEffect": "dunqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4106, @@ -14094,7 +15049,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4107, @@ -14131,7 +15088,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4108, @@ -14168,7 +15127,9 @@ "gender": 1, "atkSpineEffect": "gong", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4109, @@ -14205,7 +15166,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4110, @@ -14242,7 +15205,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4111, @@ -14279,7 +15244,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4112, @@ -14316,7 +15283,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4113, @@ -14353,7 +15322,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4114, @@ -14390,7 +15361,9 @@ "gender": 1, "atkSpineEffect": "dunqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4115, @@ -14427,7 +15400,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4116, @@ -14464,7 +15439,9 @@ "gender": 1, "atkSpineEffect": "gong", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4117, @@ -14501,7 +15478,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4118, @@ -14538,7 +15517,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4119, @@ -14575,7 +15556,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4120, @@ -14612,7 +15595,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4121, @@ -14649,7 +15634,9 @@ "gender": 1, "atkSpineEffect": "gong", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4122, @@ -14686,7 +15673,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4123, @@ -14723,7 +15712,9 @@ "gender": 1, "atkSpineEffect": "gong", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4201, @@ -14760,7 +15751,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4202, @@ -14797,7 +15790,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4203, @@ -14834,7 +15829,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4204, @@ -14871,7 +15868,9 @@ "gender": 1, "atkSpineEffect": "gong", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 4206, @@ -14908,7 +15907,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 0, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 41101, @@ -14945,7 +15946,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 9919, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 41103, @@ -14982,7 +15985,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9903, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 41107, @@ -15019,7 +16024,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9906, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 41113, @@ -15056,7 +16063,9 @@ "gender": 2, "atkSpineEffect": "faqi", "probation": 9911, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 41117, @@ -15093,7 +16102,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9914, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 41118, @@ -15130,7 +16141,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9915, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 41119, @@ -15167,7 +16180,9 @@ "gender": 2, "atkSpineEffect": "faqi", "probation": 9934, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 41122, @@ -15204,7 +16219,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 9919, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 41124, @@ -15241,7 +16258,9 @@ "gender": 1, "atkSpineEffect": "dunqi", "probation": 9920, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 41126, @@ -15278,7 +16297,9 @@ "gender": 2, "atkSpineEffect": "liqi", "probation": 9922, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 41127, @@ -15315,7 +16336,9 @@ "gender": 2, "atkSpineEffect": "liqi", "probation": 9923, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 41133, @@ -15352,7 +16375,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9928, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 41134, @@ -15389,7 +16414,9 @@ "gender": 1, "atkSpineEffect": "faqi", "probation": 9929, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 41136, @@ -15426,7 +16453,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9931, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 41138, @@ -15463,7 +16492,9 @@ "gender": 2, "atkSpineEffect": "gong", "probation": 9933, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 41140, @@ -15500,7 +16531,9 @@ "gender": 2, "atkSpineEffect": "faqi", "probation": 9934, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 41141, @@ -15537,7 +16570,9 @@ "gender": 2, "atkSpineEffect": "faqi", "probation": 9935, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 41144, @@ -15574,7 +16609,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9936, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 41153, @@ -15611,7 +16648,9 @@ "gender": 1, "atkSpineEffect": "liqi", "probation": 9901, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 }, { "heroId": 41156, @@ -15648,6 +16687,8 @@ "gender": 2, "atkSpineEffect": "faqi", "probation": 9947, - "center_y": 0 + "center_y": 0, + "show_animation": 0, + "isdeath": 1 } ] \ No newline at end of file diff --git a/shared/resource/jsons/dic_zyz_imgPos.json b/shared/resource/jsons/dic_zyz_imgPos.json index 6b58379e9..5a4592f4a 100644 --- a/shared/resource/jsons/dic_zyz_imgPos.json +++ b/shared/resource/jsons/dic_zyz_imgPos.json @@ -2664,12 +2664,12 @@ "heroId": 1063, "skinID": 0, "name": "陈登", - "imgPosofInfoUI": "605&-160", + "imgPosofInfoUI": "-340&-160", "imgPosofotherhero": 0, - "imgPosofDialog": "605&-160", + "imgPosofDialog": "500&-145", "imgPosofInfoMVP": "-471&-161", "imgPosofherorank": 0, - "imgPosoforfashion": 0, + "imgPosoforfashion": "-320&-15", "imgPosofskinmsg": 0, "imgPosofheroget": "&" }, @@ -2997,6 +2997,20 @@ }, { "id": 215, + "heroId": 1100, + "skinID": 0, + "name": "姜冏", + "imgPosofInfoUI": "605&-160", + "imgPosofotherhero": 0, + "imgPosofDialog": "605&-160", + "imgPosofInfoMVP": "-471&-161", + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": "&" + }, + { + "id": 216, "heroId": 1110, "skinID": 0, "name": "刑道荣", @@ -3010,21 +3024,21 @@ "imgPosofheroget": "&" }, { - "id": 216, + "id": 217, "heroId": 1111, "skinID": 0, "name": "赵范", - "imgPosofInfoUI": "605&-160", + "imgPosofInfoUI": "-350&-110", "imgPosofotherhero": 0, - "imgPosofDialog": "605&-160", + "imgPosofDialog": "505&-90", "imgPosofInfoMVP": "-471&-161", "imgPosofherorank": 0, - "imgPosoforfashion": 0, + "imgPosoforfashion": "-320&15", "imgPosofskinmsg": 0, "imgPosofheroget": "&" }, { - "id": 217, + "id": 218, "heroId": 1112, "skinID": 0, "name": "吴国太", @@ -3038,7 +3052,35 @@ "imgPosofheroget": "&" }, { - "id": 218, + "id": 219, + "heroId": 1117, + "skinID": 0, + "name": "狼", + "imgPosofInfoUI": "408&-167", + "imgPosofotherhero": 0, + "imgPosofDialog": "408&-167", + "imgPosofInfoMVP": "-471&-161", + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 220, + "heroId": 1118, + "skinID": 0, + "name": "乌桓萨满", + "imgPosofInfoUI": "-340&-90", + "imgPosofotherhero": 0, + "imgPosofDialog": "555&-145", + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": "-320&-5", + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 221, "heroId": 1501, "skinID": 0, "name": "魔化董卓", @@ -3052,7 +3094,7 @@ "imgPosofheroget": "&" }, { - "id": 219, + "id": 222, "heroId": 1502, "skinID": 0, "name": "魔化张角", @@ -3066,7 +3108,7 @@ "imgPosofheroget": "&" }, { - "id": 220, + "id": 223, "heroId": 1503, "skinID": 0, "name": "袁绍", @@ -3080,7 +3122,7 @@ "imgPosofheroget": "&" }, { - "id": 221, + "id": 224, "heroId": 1504, "skinID": 0, "name": "大蛇", @@ -3094,7 +3136,7 @@ "imgPosofheroget": "&" }, { - "id": 222, + "id": 225, "heroId": 1505, "skinID": 0, "name": "韩玄", @@ -3108,7 +3150,7 @@ "imgPosofheroget": "&" }, { - "id": 223, + "id": 226, "heroId": 1506, "skinID": 0, "name": "魔化邓艾", @@ -3122,21 +3164,21 @@ "imgPosofheroget": "&" }, { - "id": 224, + "id": 227, "heroId": 1507, "skinID": 0, - "name": "魔化庞德", - "imgPosofInfoUI": "300&400", + "name": "卧龙虚影", + "imgPosofInfoUI": "-345&-80", "imgPosofotherhero": 0, - "imgPosofDialog": "471&-161", + "imgPosofDialog": "505&-70", "imgPosofInfoMVP": "-471&-161", "imgPosofherorank": 0, - "imgPosoforfashion": 0, + "imgPosoforfashion": "-325&30", "imgPosofskinmsg": 0, "imgPosofheroget": "&" }, { - "id": 225, + "id": 228, "heroId": 1508, "skinID": 0, "name": "魔化王平", @@ -3150,7 +3192,7 @@ "imgPosofheroget": "&" }, { - "id": 226, + "id": 229, "heroId": 1509, "skinID": 0, "name": "魔化甘宁", @@ -3164,7 +3206,7 @@ "imgPosofheroget": "&" }, { - "id": 227, + "id": 230, "heroId": 1510, "skinID": 0, "name": "毒士仲达", @@ -3178,7 +3220,7 @@ "imgPosofheroget": "&" }, { - "id": 228, + "id": 231, "heroId": 1511, "skinID": 0, "name": "美周郎", @@ -3192,7 +3234,7 @@ "imgPosofheroget": "&" }, { - "id": 229, + "id": 232, "heroId": 1512, "skinID": 0, "name": "燕人翼德", @@ -3206,7 +3248,7 @@ "imgPosofheroget": "&" }, { - "id": 230, + "id": 233, "heroId": 1513, "skinID": 0, "name": "无双吕布", @@ -3220,7 +3262,7 @@ "imgPosofheroget": "&" }, { - "id": 231, + "id": 234, "heroId": 1514, "skinID": 0, "name": "张角", @@ -3234,7 +3276,7 @@ "imgPosofheroget": "&" }, { - "id": 232, + "id": 235, "heroId": 1530, "skinID": 0, "name": "吕布", @@ -3248,7 +3290,7 @@ "imgPosofheroget": "&" }, { - "id": 233, + "id": 236, "heroId": 1531, "skinID": 0, "name": "典韦", @@ -3262,7 +3304,7 @@ "imgPosofheroget": "&" }, { - "id": 234, + "id": 237, "heroId": 1532, "skinID": 0, "name": "马云禄", @@ -3276,7 +3318,7 @@ "imgPosofheroget": "&" }, { - "id": 235, + "id": 238, "heroId": 1533, "skinID": 0, "name": "郭嘉", @@ -3290,7 +3332,7 @@ "imgPosofheroget": "&" }, { - "id": 236, + "id": 239, "heroId": 1534, "skinID": 0, "name": "白狼凶灵", @@ -3304,7 +3346,7 @@ "imgPosofheroget": 0 }, { - "id": 237, + "id": 240, "heroId": 1535, "skinID": 0, "name": "雷绪", @@ -3318,7 +3360,7 @@ "imgPosofheroget": 0 }, { - "id": 238, + "id": 241, "heroId": 1536, "skinID": 0, "name": "弓贼", @@ -3332,7 +3374,7 @@ "imgPosofheroget": 0 }, { - "id": 239, + "id": 242, "heroId": 1537, "skinID": 0, "name": "枪贼", @@ -3346,7 +3388,7 @@ "imgPosofheroget": 0 }, { - "id": 240, + "id": 243, "heroId": 1538, "skinID": 0, "name": "陈兰", @@ -3360,7 +3402,7 @@ "imgPosofheroget": 0 }, { - "id": 241, + "id": 244, "heroId": 1539, "skinID": 0, "name": "袁术", @@ -3374,7 +3416,7 @@ "imgPosofheroget": 0 }, { - "id": 242, + "id": 245, "heroId": 1540, "skinID": 0, "name": "雷薄", @@ -3388,21 +3430,21 @@ "imgPosofheroget": 0 }, { - "id": 243, + "id": 246, "heroId": 1541, "skinID": 0, "name": "偃师", - "imgPosofInfoUI": "542&-136", + "imgPosofInfoUI": "-360&-110", "imgPosofotherhero": 0, - "imgPosofDialog": "-367&-142", + "imgPosofDialog": "505&-40", "imgPosofInfoMVP": "-517&-12", "imgPosofherorank": 0, - "imgPosoforfashion": 0, + "imgPosoforfashion": "-320&40", "imgPosofskinmsg": 0, "imgPosofheroget": 0 }, { - "id": 244, + "id": 247, "heroId": 1542, "skinID": 0, "name": "狰虎", @@ -3416,7 +3458,7 @@ "imgPosofheroget": 0 }, { - "id": 245, + "id": 248, "heroId": 1543, "skinID": 0, "name": "兕牛", @@ -3430,7 +3472,7 @@ "imgPosofheroget": 0 }, { - "id": 246, + "id": 249, "heroId": 1544, "skinID": 0, "name": "夫诸", @@ -3444,21 +3486,21 @@ "imgPosofheroget": 0 }, { - "id": 247, + "id": 250, "heroId": 1545, "skinID": 0, "name": "王璨", - "imgPosofInfoUI": "408&-93", + "imgPosofInfoUI": "-355&-175", "imgPosofotherhero": 0, - "imgPosofDialog": "471&-161", + "imgPosofDialog": "530&-75", "imgPosofInfoMVP": "-471&-161", "imgPosofherorank": 0, - "imgPosoforfashion": 0, + "imgPosoforfashion": "-335&15", "imgPosofskinmsg": 0, "imgPosofheroget": 0 }, { - "id": 248, + "id": 251, "heroId": 1546, "skinID": 0, "name": "兵家学子", @@ -3472,7 +3514,7 @@ "imgPosofheroget": 0 }, { - "id": 249, + "id": 252, "heroId": 1547, "skinID": 0, "name": "儒家学子", @@ -3486,7 +3528,7 @@ "imgPosofheroget": 0 }, { - "id": 250, + "id": 253, "heroId": 1548, "skinID": 0, "name": "道家学子", @@ -3500,7 +3542,7 @@ "imgPosofheroget": 0 }, { - "id": 251, + "id": 254, "heroId": 1549, "skinID": 0, "name": "法家学子", @@ -3514,7 +3556,7 @@ "imgPosofheroget": 0 }, { - "id": 252, + "id": 255, "heroId": 1550, "skinID": 0, "name": "不动明王", @@ -3528,21 +3570,21 @@ "imgPosofheroget": 0 }, { - "id": 253, + "id": 256, "heroId": 1551, "skinID": 0, "name": "安玄", - "imgPosofInfoUI": "408&-93", + "imgPosofInfoUI": "-340&-125", "imgPosofotherhero": 0, - "imgPosofDialog": "471&-161", + "imgPosofDialog": "505&-100", "imgPosofInfoMVP": "-471&-161", "imgPosofherorank": 0, - "imgPosoforfashion": 0, + "imgPosoforfashion": "-320&-5", "imgPosofskinmsg": 0, "imgPosofheroget": 0 }, { - "id": 254, + "id": 257, "heroId": 1552, "skinID": 0, "name": "猴王", @@ -3556,7 +3598,7 @@ "imgPosofheroget": 0 }, { - "id": 255, + "id": 258, "heroId": 1553, "skinID": 0, "name": "顽猴", @@ -3570,7 +3612,7 @@ "imgPosofheroget": 0 }, { - "id": 256, + "id": 259, "heroId": 1554, "skinID": 0, "name": "劣猴", @@ -3584,7 +3626,7 @@ "imgPosofheroget": 0 }, { - "id": 257, + "id": 260, "heroId": 1555, "skinID": 0, "name": "疫鬼", @@ -3598,7 +3640,7 @@ "imgPosofheroget": 0 }, { - "id": 258, + "id": 261, "heroId": 1556, "skinID": 0, "name": "疫魔", @@ -3612,21 +3654,21 @@ "imgPosofheroget": 0 }, { - "id": 259, + "id": 262, "heroId": 1557, "skinID": 0, "name": "张机", - "imgPosofInfoUI": "408&-93", + "imgPosofInfoUI": "-400&-195", "imgPosofotherhero": 0, - "imgPosofDialog": "471&-161", + "imgPosofDialog": "565&-165", "imgPosofInfoMVP": "-471&-161", "imgPosofherorank": 0, - "imgPosoforfashion": 0, + "imgPosoforfashion": "-380&-40", "imgPosofskinmsg": 0, "imgPosofheroget": 0 }, { - "id": 260, + "id": 263, "heroId": 1558, "skinID": 0, "name": "夏侯杰", @@ -3640,7 +3682,7 @@ "imgPosofheroget": 0 }, { - "id": 261, + "id": 264, "heroId": 2001, "skinID": 0, "name": "步兵", @@ -3654,7 +3696,7 @@ "imgPosofheroget": "&" }, { - "id": 262, + "id": 265, "heroId": 2002, "skinID": 0, "name": "枪兵", @@ -3668,7 +3710,7 @@ "imgPosofheroget": "&" }, { - "id": 263, + "id": 266, "heroId": 2003, "skinID": 0, "name": "骑兵", @@ -3682,7 +3724,7 @@ "imgPosofheroget": "&" }, { - "id": 264, + "id": 267, "heroId": 2004, "skinID": 0, "name": "弓兵", @@ -3696,7 +3738,7 @@ "imgPosofheroget": "&" }, { - "id": 265, + "id": 268, "heroId": 2005, "skinID": 0, "name": "骑兵将领", @@ -3710,7 +3752,7 @@ "imgPosofheroget": "&" }, { - "id": 266, + "id": 269, "heroId": 2006, "skinID": 0, "name": "严纲", @@ -3724,7 +3766,7 @@ "imgPosofheroget": "&" }, { - "id": 267, + "id": 270, "heroId": 3001, "skinID": 0, "name": "熊", @@ -3736,5 +3778,495 @@ "imgPosoforfashion": 0, "imgPosofskinmsg": 0, "imgPosofheroget": "&" + }, + { + "id": 271, + "heroId": 3101, + "skinID": 0, + "name": "血魔张角", + "imgPosofInfoUI": 0, + "imgPosofotherhero": 0, + "imgPosofDialog": 0, + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 272, + "heroId": 3201, + "skinID": 0, + "name": "唐姬", + "imgPosofInfoUI": 0, + "imgPosofotherhero": 0, + "imgPosofDialog": 0, + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 273, + "heroId": 3202, + "skinID": 0, + "name": "宫女", + "imgPosofInfoUI": 0, + "imgPosofotherhero": 0, + "imgPosofDialog": 0, + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 274, + "heroId": 3203, + "skinID": 0, + "name": "何进", + "imgPosofInfoUI": 0, + "imgPosofotherhero": 0, + "imgPosofDialog": 0, + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 275, + "heroId": 3204, + "skinID": 0, + "name": "羽林鬼军", + "imgPosofInfoUI": 0, + "imgPosofotherhero": 0, + "imgPosofDialog": 0, + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 276, + "heroId": 3205, + "skinID": 0, + "name": "何太后", + "imgPosofInfoUI": 0, + "imgPosofotherhero": 0, + "imgPosofDialog": 0, + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 277, + "heroId": 3301, + "skinID": 0, + "name": "诸葛玄", + "imgPosofInfoUI": 0, + "imgPosofotherhero": 0, + "imgPosofDialog": 0, + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 278, + "heroId": 3302, + "skinID": 0, + "name": "夏侯杰", + "imgPosofInfoUI": 0, + "imgPosofotherhero": 0, + "imgPosofDialog": 0, + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 279, + "heroId": 3303, + "skinID": 0, + "name": "鬼将管亥", + "imgPosofInfoUI": "-355&-175", + "imgPosofotherhero": 0, + "imgPosofDialog": "505&-150", + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": "-320&-20", + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 280, + "heroId": 3304, + "skinID": 0, + "name": "黄巾冥军", + "imgPosofInfoUI": 0, + "imgPosofotherhero": 0, + "imgPosofDialog": 0, + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 281, + "heroId": 3305, + "skinID": 0, + "name": "曹嵩", + "imgPosofInfoUI": "-340&-165", + "imgPosofotherhero": 0, + "imgPosofDialog": "500&-130", + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": "-330&0", + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 282, + "heroId": 3306, + "skinID": 0, + "name": "阴曹刑者", + "imgPosofInfoUI": 0, + "imgPosofotherhero": 0, + "imgPosofDialog": 0, + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 283, + "heroId": 3307, + "skinID": 0, + "name": "张让", + "imgPosofInfoUI": "-350&-90", + "imgPosofotherhero": 0, + "imgPosofDialog": "515&-50", + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": "-320&-30", + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 284, + "heroId": 3308, + "skinID": 0, + "name": "东岳帝像", + "imgPosofInfoUI": 0, + "imgPosofotherhero": 0, + "imgPosofDialog": 0, + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 285, + "heroId": 3401, + "skinID": 0, + "name": "轲比能", + "imgPosofInfoUI": 0, + "imgPosofotherhero": 0, + "imgPosofDialog": 0, + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 286, + "heroId": 3402, + "skinID": 0, + "name": "乌桓使者", + "imgPosofInfoUI": 0, + "imgPosofotherhero": 0, + "imgPosofDialog": 0, + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 287, + "heroId": 3403, + "skinID": 0, + "name": "乌桓突骑", + "imgPosofInfoUI": 0, + "imgPosofotherhero": 0, + "imgPosofDialog": 0, + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 288, + "heroId": 3404, + "skinID": 0, + "name": "图吉", + "imgPosofInfoUI": "-305&-145", + "imgPosofotherhero": 0, + "imgPosofDialog": "470&-130", + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": "-305&-15", + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 289, + "heroId": 3405, + "skinID": 0, + "name": "狼图吉", + "imgPosofInfoUI": "-325&-160", + "imgPosofotherhero": 0, + "imgPosofDialog": "495&-130", + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": "-320&-30", + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 290, + "heroId": 3406, + "skinID": 0, + "name": "乌桓萨满", + "imgPosofInfoUI": "-340&-90", + "imgPosofotherhero": 0, + "imgPosofDialog": "555&-145", + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": "-320&-5", + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 291, + "heroId": 3407, + "skinID": 0, + "name": "古班", + "imgPosofInfoUI": "-340&-90", + "imgPosofotherhero": 0, + "imgPosofDialog": "555&-145", + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": "-320&-5", + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 292, + "heroId": 3408, + "skinID": 0, + "name": "白狼凶灵", + "imgPosofInfoUI": 0, + "imgPosofotherhero": 0, + "imgPosofDialog": 0, + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 293, + "heroId": 3501, + "skinID": 0, + "name": "雷绪", + "imgPosofInfoUI": "-365&-110", + "imgPosofotherhero": 0, + "imgPosofDialog": "505&-75", + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": "-330&-25", + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 294, + "heroId": 3502, + "skinID": 0, + "name": "弓贼", + "imgPosofInfoUI": 0, + "imgPosofotherhero": 0, + "imgPosofDialog": 0, + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 295, + "heroId": 3503, + "skinID": 0, + "name": "枪贼", + "imgPosofInfoUI": 0, + "imgPosofotherhero": 0, + "imgPosofDialog": 0, + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 296, + "heroId": 3504, + "skinID": 0, + "name": "陈兰", + "imgPosofInfoUI": 0, + "imgPosofotherhero": 0, + "imgPosofDialog": 0, + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 297, + "heroId": 3505, + "skinID": 0, + "name": "袁术", + "imgPosofInfoUI": 0, + "imgPosofotherhero": 0, + "imgPosofDialog": 0, + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 298, + "heroId": 3506, + "skinID": 0, + "name": "雷薄", + "imgPosofInfoUI": "-345&-130", + "imgPosofotherhero": 0, + "imgPosofDialog": "495&-85", + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": "-320&0", + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 299, + "heroId": 3601, + "skinID": 0, + "name": "偃师", + "imgPosofInfoUI": "-360&-110", + "imgPosofotherhero": 0, + "imgPosofDialog": "505&-40", + "imgPosofInfoMVP": "-517&-12", + "imgPosofherorank": 0, + "imgPosoforfashion": "-320&40", + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 300, + "heroId": 3605, + "skinID": 0, + "name": "王璨", + "imgPosofInfoUI": "-355&-175", + "imgPosofotherhero": 0, + "imgPosofDialog": "530&-75", + "imgPosofInfoMVP": "-471&-161", + "imgPosofherorank": 0, + "imgPosoforfashion": "-335&15", + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 301, + "heroId": 3606, + "skinID": 0, + "name": "兵家学子", + "imgPosofInfoUI": "408&-93", + "imgPosofotherhero": 0, + "imgPosofDialog": "471&-161", + "imgPosofInfoMVP": "-471&-161", + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 302, + "heroId": 3607, + "skinID": 0, + "name": "儒家学子", + "imgPosofInfoUI": "408&-93", + "imgPosofotherhero": 0, + "imgPosofDialog": "471&-161", + "imgPosofInfoMVP": "-471&-161", + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 303, + "heroId": 3608, + "skinID": 0, + "name": "道家学子", + "imgPosofInfoUI": "408&-93", + "imgPosofotherhero": 0, + "imgPosofDialog": "471&-161", + "imgPosofInfoMVP": "-471&-161", + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 304, + "heroId": 3609, + "skinID": 0, + "name": "法家学子", + "imgPosofInfoUI": "408&-93", + "imgPosofotherhero": 0, + "imgPosofDialog": "471&-161", + "imgPosofInfoMVP": "-471&-161", + "imgPosofherorank": 0, + "imgPosoforfashion": 0, + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 + }, + { + "id": 305, + "heroId": 3613, + "skinID": 0, + "name": "安玄", + "imgPosofInfoUI": "-340&-125", + "imgPosofotherhero": 0, + "imgPosofDialog": "505&-100", + "imgPosofInfoMVP": 0, + "imgPosofherorank": 0, + "imgPosoforfashion": "-320&-5", + "imgPosofskinmsg": 0, + "imgPosofheroget": 0 } ] \ No newline at end of file diff --git a/shared/resource/jsons/dic_zyz_job_walk.json b/shared/resource/jsons/dic_zyz_job_walk.json index 718a5aa9f..022eca47e 100644 --- a/shared/resource/jsons/dic_zyz_job_walk.json +++ b/shared/resource/jsons/dic_zyz_job_walk.json @@ -22,7 +22,7 @@ "19": 1, "20": 1, "21": 1, - "22": 1, + "22": 255, "23": 1, "24": 2, "25": 1, @@ -84,7 +84,7 @@ "19": 1, "20": 1, "21": 1, - "22": 1, + "22": 255, "23": 1, "24": 2, "25": 1, @@ -146,7 +146,7 @@ "19": 1, "20": 1, "21": 2, - "22": 2, + "22": 255, "23": 2, "24": 3, "25": 2, @@ -208,7 +208,7 @@ "19": 1, "20": 1, "21": 1, - "22": 1, + "22": 255, "23": 1, "24": 2, "25": 1, @@ -270,7 +270,7 @@ "19": 1, "20": 1, "21": 1, - "22": 1, + "22": 255, "23": 1, "24": 2, "25": 1, @@ -332,7 +332,7 @@ "19": 1, "20": 1, "21": 1, - "22": 1, + "22": 255, "23": 1, "24": 2, "25": 1, @@ -394,7 +394,7 @@ "19": 1, "20": 1, "21": 1, - "22": 1, + "22": 255, "23": 1, "24": 2, "25": 1, @@ -456,7 +456,7 @@ "19": 1, "20": 1, "21": 1, - "22": 1, + "22": 255, "23": 1, "24": 2, "25": 1, @@ -518,7 +518,7 @@ "19": 1, "20": 1, "21": 1, - "22": 1, + "22": 255, "23": 1, "24": 2, "25": 1, @@ -580,7 +580,7 @@ "19": 1, "20": 1, "21": 1, - "22": 1, + "22": 255, "23": 1, "24": 2, "25": 1, diff --git a/shared/resource/jsons/dic_zyz_movePoint.json b/shared/resource/jsons/dic_zyz_movePoint.json index a032eeaf4..fb2360c36 100644 --- a/shared/resource/jsons/dic_zyz_movePoint.json +++ b/shared/resource/jsons/dic_zyz_movePoint.json @@ -5,7 +5,6 @@ "previousPoint": 0, "type": 1, "relatedPoint": 0, - "chapater": 1, "tips": "出生点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -18,7 +17,6 @@ "previousPoint": 1, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -31,7 +29,6 @@ "previousPoint": 2, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -44,7 +41,6 @@ "previousPoint": 3, "type": 1, "relatedPoint": 3, - "chapater": 1, "tips": "第一章&拦路官军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -57,7 +53,6 @@ "previousPoint": 4, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -70,7 +65,6 @@ "previousPoint": 5, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -83,7 +77,6 @@ "previousPoint": 6, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -96,7 +89,6 @@ "previousPoint": 7, "type": 1, "relatedPoint": 7, - "chapater": 1, "tips": "第一章&拦路官军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -109,7 +101,6 @@ "previousPoint": 8, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -122,7 +113,6 @@ "previousPoint": 9, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -135,7 +125,6 @@ "previousPoint": 10, "type": 1, "relatedPoint": 10, - "chapater": 1, "tips": "第一章&拦路官军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -148,7 +137,6 @@ "previousPoint": 11, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -161,7 +149,6 @@ "previousPoint": 12, "type": 1, "relatedPoint": 12, - "chapater": 1, "tips": "第一章&真定之战", "__EMPTY": 0, "__EMPTY_1": 0, @@ -174,7 +161,6 @@ "previousPoint": 13, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -187,7 +173,6 @@ "previousPoint": 14, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -200,7 +185,6 @@ "previousPoint": 15, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -213,7 +197,6 @@ "previousPoint": 16, "type": 1, "relatedPoint": 16, - "chapater": 1, "tips": "第一章&黄巾大将", "__EMPTY": 0, "__EMPTY_1": 0, @@ -226,7 +209,6 @@ "previousPoint": 17, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -239,7 +221,6 @@ "previousPoint": 18, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -252,7 +233,6 @@ "previousPoint": 19, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -265,7 +245,6 @@ "previousPoint": 20, "type": 1, "relatedPoint": 20, - "chapater": 1, "tips": "第一章&拦路黄巾", "__EMPTY": 0, "__EMPTY_1": 0, @@ -278,7 +257,6 @@ "previousPoint": 21, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -291,7 +269,6 @@ "previousPoint": 22, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -304,7 +281,6 @@ "previousPoint": 23, "type": 1, "relatedPoint": 23, - "chapater": 1, "tips": "第一章&路遇野狼", "__EMPTY": 0, "__EMPTY_1": 0, @@ -317,7 +293,6 @@ "previousPoint": 21, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -330,7 +305,6 @@ "previousPoint": 25, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -343,7 +317,6 @@ "previousPoint": 26, "type": 2, "relatedPoint": 26, - "chapater": 1, "tips": "第一章秘境 怒狼洞穴", "__EMPTY": 0, "__EMPTY_1": 0, @@ -356,7 +329,6 @@ "previousPoint": 24, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -369,7 +341,6 @@ "previousPoint": 28, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -382,7 +353,6 @@ "previousPoint": 29, "type": 1, "relatedPoint": 29, - "chapater": 1, "tips": "第一章&巨鹿之战", "__EMPTY": 0, "__EMPTY_1": 0, @@ -395,7 +365,6 @@ "previousPoint": 30, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -408,7 +377,6 @@ "previousPoint": 31, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -421,7 +389,6 @@ "previousPoint": 32, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -434,7 +401,6 @@ "previousPoint": 33, "type": 1, "relatedPoint": 33, - "chapater": 1, "tips": "第一章&拦路阴兵", "__EMPTY": 0, "__EMPTY_1": 0, @@ -447,7 +413,6 @@ "previousPoint": 34, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -460,7 +425,6 @@ "previousPoint": 35, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -473,7 +437,6 @@ "previousPoint": 36, "type": 1, "relatedPoint": 36, - "chapater": 1, "tips": "第一章&拦路袁军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -486,7 +449,6 @@ "previousPoint": 37, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -499,7 +461,6 @@ "previousPoint": 38, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -512,7 +473,6 @@ "previousPoint": 39, "type": 1, "relatedPoint": 39, - "chapater": 1, "tips": "第一章&拦路袁军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -525,7 +485,6 @@ "previousPoint": 40, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -538,7 +497,6 @@ "previousPoint": 41, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -551,7 +509,6 @@ "previousPoint": 42, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -564,7 +521,6 @@ "previousPoint": 43, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -577,7 +533,6 @@ "previousPoint": 44, "type": 1, "relatedPoint": 44, - "chapater": 1, "tips": "第一章&河间之战", "__EMPTY": 0, "__EMPTY_1": 0, @@ -590,7 +545,6 @@ "previousPoint": 45, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -603,7 +557,6 @@ "previousPoint": 46, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -616,7 +569,6 @@ "previousPoint": 47, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -629,7 +581,6 @@ "previousPoint": 48, "type": 1, "relatedPoint": 48, - "chapater": 1, "tips": "第一章&拦路官军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -642,7 +593,6 @@ "previousPoint": 49, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -655,7 +605,6 @@ "previousPoint": 50, "type": 1, "relatedPoint": 50, - "chapater": 1, "tips": "第一章&拦路官军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -668,7 +617,6 @@ "previousPoint": 51, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -681,7 +629,6 @@ "previousPoint": 52, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -694,7 +641,6 @@ "previousPoint": 53, "type": 1, "relatedPoint": 53, - "chapater": 1, "tips": "第一章&拦路官军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -707,7 +653,6 @@ "previousPoint": 54, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -720,7 +665,6 @@ "previousPoint": 55, "type": 1, "relatedPoint": 55, - "chapater": 1, "tips": "第一章&渤海之战", "__EMPTY": 0, "__EMPTY_1": 0, @@ -733,7 +677,6 @@ "previousPoint": 56, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -746,7 +689,6 @@ "previousPoint": 57, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -759,7 +701,6 @@ "previousPoint": 58, "type": 1, "relatedPoint": 58, - "chapater": 1, "tips": "第一章&拦路官军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -772,7 +713,6 @@ "previousPoint": 59, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -785,7 +725,6 @@ "previousPoint": 60, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -798,7 +737,6 @@ "previousPoint": 61, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -811,7 +749,6 @@ "previousPoint": 62, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -824,7 +761,6 @@ "previousPoint": 63, "type": 1, "relatedPoint": 63, - "chapater": 1, "tips": "第一章&拦路官军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -837,7 +773,6 @@ "previousPoint": 64, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -850,7 +785,6 @@ "previousPoint": 65, "type": 1, "relatedPoint": 65, - "chapater": 1, "tips": "第一章&拦路官军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -863,7 +797,6 @@ "previousPoint": 66, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -876,7 +809,6 @@ "previousPoint": 67, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -889,7 +821,6 @@ "previousPoint": 68, "type": 1, "relatedPoint": 68, - "chapater": 1, "tips": "第一章&界桥之战", "__EMPTY": 0, "__EMPTY_1": 0, @@ -902,7 +833,6 @@ "previousPoint": 69, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -915,7 +845,6 @@ "previousPoint": 70, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -928,7 +857,6 @@ "previousPoint": 71, "type": 1, "relatedPoint": 71, - "chapater": 1, "tips": "第一章&拦路官军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -941,7 +869,6 @@ "previousPoint": 72, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -954,7 +881,6 @@ "previousPoint": 73, "type": 1, "relatedPoint": 73, - "chapater": 1, "tips": "第一章&拦路阴傀", "__EMPTY": 0, "__EMPTY_1": 0, @@ -967,7 +893,6 @@ "previousPoint": 74, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -980,7 +905,6 @@ "previousPoint": 75, "type": 1, "relatedPoint": 75, - "chapater": 1, "tips": "第一章&拦路官军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -993,7 +917,6 @@ "previousPoint": 76, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1006,7 +929,6 @@ "previousPoint": 77, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1019,7 +941,6 @@ "previousPoint": 78, "type": 1, "relatedPoint": 78, - "chapater": 1, "tips": "第一章&邺城之战", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1032,7 +953,6 @@ "previousPoint": 11, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1045,7 +965,6 @@ "previousPoint": 80, "type": 2, "relatedPoint": 80, - "chapater": 1, "tips": "第一章&奇遇点1", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1058,7 +977,6 @@ "previousPoint": 13, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1071,7 +989,6 @@ "previousPoint": 82, "type": 2, "relatedPoint": 82, - "chapater": 1, "tips": "第一章&奇遇点2", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1084,7 +1001,6 @@ "previousPoint": 27, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1097,7 +1013,6 @@ "previousPoint": 84, "type": 2, "relatedPoint": 84, - "chapater": 1, "tips": "第一章&奇遇点3", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1110,7 +1025,6 @@ "previousPoint": 64, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1123,7 +1037,6 @@ "previousPoint": 86, "type": 2, "relatedPoint": 86, - "chapater": 1, "tips": "第一章&奇遇点4", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1136,7 +1049,6 @@ "previousPoint": 79, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "移动点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1149,7 +1061,6 @@ "previousPoint": 88, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "移动点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1162,7 +1073,6 @@ "previousPoint": 89, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "移动点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1175,7 +1085,6 @@ "previousPoint": 79, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "移动点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1188,7 +1097,6 @@ "previousPoint": 91, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1201,7 +1109,6 @@ "previousPoint": 92, "type": 1, "relatedPoint": 92, - "chapater": 1, "tips": "第二关&拦路袁军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1214,7 +1121,6 @@ "previousPoint": 93, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1227,7 +1133,6 @@ "previousPoint": 94, "type": 1, "relatedPoint": 94, - "chapater": 1, "tips": "第二关&拦路袁军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1240,7 +1145,6 @@ "previousPoint": 95, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1253,7 +1157,6 @@ "previousPoint": 96, "type": 1, "relatedPoint": 96, - "chapater": 1, "tips": "第二关&拦路袁军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1266,7 +1169,6 @@ "previousPoint": 97, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1279,7 +1181,6 @@ "previousPoint": 98, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1292,7 +1193,6 @@ "previousPoint": 99, "type": 1, "relatedPoint": 99, - "chapater": 1, "tips": "第二章&河内之战", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1305,7 +1205,6 @@ "previousPoint": 100, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1318,7 +1217,6 @@ "previousPoint": 101, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1331,7 +1229,6 @@ "previousPoint": 102, "type": 1, "relatedPoint": 102, - "chapater": 1, "tips": "第二章&董卓部将", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1344,7 +1241,6 @@ "previousPoint": 103, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1357,7 +1253,6 @@ "previousPoint": 104, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1370,7 +1265,6 @@ "previousPoint": 105, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1383,7 +1277,6 @@ "previousPoint": 106, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1396,7 +1289,6 @@ "previousPoint": 107, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1409,7 +1301,6 @@ "previousPoint": 108, "type": 1, "relatedPoint": 108, - "chapater": 1, "tips": "第二章&董卓部将", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1422,7 +1313,6 @@ "previousPoint": 109, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1435,7 +1325,6 @@ "previousPoint": 110, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1448,7 +1337,6 @@ "previousPoint": 111, "type": 1, "relatedPoint": 111, - "chapater": 1, "tips": "第二章&董卓部将", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1461,7 +1349,6 @@ "previousPoint": 112, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1474,7 +1361,6 @@ "previousPoint": 113, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1487,7 +1373,6 @@ "previousPoint": 114, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1500,7 +1385,6 @@ "previousPoint": 115, "type": 1, "relatedPoint": 115, - "chapater": 1, "tips": "第二章&洛阳之战", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1513,7 +1397,6 @@ "previousPoint": 116, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1526,7 +1409,6 @@ "previousPoint": 117, "type": 1, "relatedPoint": 117, - "chapater": 1, "tips": "第二章&西凉铁骑", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1539,7 +1421,6 @@ "previousPoint": 118, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1552,7 +1433,6 @@ "previousPoint": 119, "type": 1, "relatedPoint": 119, - "chapater": 1, "tips": "第二章&西凉铁骑", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1565,7 +1445,6 @@ "previousPoint": 120, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1578,7 +1457,6 @@ "previousPoint": 121, "type": 1, "relatedPoint": 121, - "chapater": 1, "tips": "第二章&西凉铁骑", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1591,7 +1469,6 @@ "previousPoint": 122, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1604,7 +1481,6 @@ "previousPoint": 123, "type": 1, "relatedPoint": 123, - "chapater": 1, "tips": "第二章&弘农之战", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1617,7 +1493,6 @@ "previousPoint": 124, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1630,7 +1505,6 @@ "previousPoint": 125, "type": 1, "relatedPoint": 125, - "chapater": 1, "tips": "第二章&董卓部将", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1643,7 +1517,6 @@ "previousPoint": 126, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1656,7 +1529,6 @@ "previousPoint": 127, "type": 1, "relatedPoint": 127, - "chapater": 1, "tips": "第二章&董卓部将", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1669,7 +1541,6 @@ "previousPoint": 128, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1682,7 +1553,6 @@ "previousPoint": 129, "type": 1, "relatedPoint": 130, - "chapater": 1, "tips": "第二章&董卓部将", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1695,7 +1565,6 @@ "previousPoint": 130, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1708,7 +1577,6 @@ "previousPoint": 131, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1721,7 +1589,6 @@ "previousPoint": 132, "type": 1, "relatedPoint": 132, - "chapater": 1, "tips": "第二章&郿坞之战", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1734,7 +1601,6 @@ "previousPoint": 133, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1747,7 +1613,6 @@ "previousPoint": 134, "type": 1, "relatedPoint": 134, - "chapater": 1, "tips": "第二章&杀董刺客", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1760,7 +1625,6 @@ "previousPoint": 135, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1773,7 +1637,6 @@ "previousPoint": 136, "type": 1, "relatedPoint": 137, - "chapater": 1, "tips": "第二章&杀董刺客", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1786,7 +1649,6 @@ "previousPoint": 137, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1799,7 +1661,6 @@ "previousPoint": 138, "type": 1, "relatedPoint": 138, - "chapater": 1, "tips": "第二章&杀董刺客", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1812,7 +1673,6 @@ "previousPoint": 139, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1825,7 +1685,6 @@ "previousPoint": 140, "type": 1, "relatedPoint": 140, - "chapater": 1, "tips": "第二章&长安之战", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1838,7 +1697,6 @@ "previousPoint": 141, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1851,7 +1709,6 @@ "previousPoint": 142, "type": 1, "relatedPoint": 142, - "chapater": 1, "tips": "第二章&董卓部将", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1864,7 +1721,6 @@ "previousPoint": 143, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1877,7 +1733,6 @@ "previousPoint": 144, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1890,7 +1745,6 @@ "previousPoint": 145, "type": 1, "relatedPoint": 145, - "chapater": 1, "tips": "第二章&董卓部将", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1903,7 +1757,6 @@ "previousPoint": 146, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1916,7 +1769,6 @@ "previousPoint": 147, "type": 1, "relatedPoint": 147, - "chapater": 1, "tips": "第二章&董卓部将", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1929,7 +1781,6 @@ "previousPoint": 148, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1942,7 +1793,6 @@ "previousPoint": 149, "type": 1, "relatedPoint": 149, - "chapater": 1, "tips": "第二章&受禅台之战", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1955,7 +1805,6 @@ "previousPoint": 56, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1968,7 +1817,6 @@ "previousPoint": 151, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1981,7 +1829,6 @@ "previousPoint": 152, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -1994,7 +1841,6 @@ "previousPoint": 153, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2007,7 +1853,6 @@ "previousPoint": 154, "type": 1, "relatedPoint": 154, - "chapater": 1, "tips": "第三章&拦路袁军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2020,7 +1865,6 @@ "previousPoint": 155, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2033,7 +1877,6 @@ "previousPoint": 156, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2046,7 +1889,6 @@ "previousPoint": 157, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2059,7 +1901,6 @@ "previousPoint": 158, "type": 1, "relatedPoint": 158, - "chapater": 1, "tips": "第三章&拦路袁军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2072,7 +1913,6 @@ "previousPoint": 159, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2085,7 +1925,6 @@ "previousPoint": 160, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2098,7 +1937,6 @@ "previousPoint": 161, "type": 1, "relatedPoint": 161, - "chapater": 1, "tips": "第三章&拦路袁军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2111,7 +1949,6 @@ "previousPoint": 162, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2124,7 +1961,6 @@ "previousPoint": 163, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2137,7 +1973,6 @@ "previousPoint": 164, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2150,7 +1985,6 @@ "previousPoint": 165, "type": 1, "relatedPoint": 165, - "chapater": 1, "tips": "第三章&平原之战", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2163,7 +1997,6 @@ "previousPoint": 166, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2176,7 +2009,6 @@ "previousPoint": 167, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2189,7 +2021,6 @@ "previousPoint": 168, "type": 1, "relatedPoint": 168, - "chapater": 1, "tips": "第三章&拦路黄巾军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2202,7 +2033,6 @@ "previousPoint": 169, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2215,7 +2045,6 @@ "previousPoint": 170, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2228,7 +2057,6 @@ "previousPoint": 171, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2241,7 +2069,6 @@ "previousPoint": 172, "type": 1, "relatedPoint": 172, - "chapater": 1, "tips": "第三章&拦路黄巾军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2254,7 +2081,6 @@ "previousPoint": 173, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2267,7 +2093,6 @@ "previousPoint": 174, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2280,7 +2105,6 @@ "previousPoint": 175, "type": 1, "relatedPoint": 175, - "chapater": 1, "tips": "第三章&拦路黄巾军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2293,7 +2117,6 @@ "previousPoint": 176, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2306,7 +2129,6 @@ "previousPoint": 177, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2319,7 +2141,6 @@ "previousPoint": 178, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2332,7 +2153,6 @@ "previousPoint": 179, "type": 1, "relatedPoint": 179, - "chapater": 1, "tips": "第三章&齐郡之战", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2345,7 +2165,6 @@ "previousPoint": 180, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2358,7 +2177,6 @@ "previousPoint": 181, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2371,7 +2189,6 @@ "previousPoint": 182, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2384,7 +2201,6 @@ "previousPoint": 183, "type": 1, "relatedPoint": 183, - "chapater": 1, "tips": "第三章&拦路黄巾军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2397,7 +2213,6 @@ "previousPoint": 184, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2410,7 +2225,6 @@ "previousPoint": 185, "type": 1, "relatedPoint": 185, - "chapater": 1, "tips": "第三章&拦路黄巾军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2423,7 +2237,6 @@ "previousPoint": 186, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2436,7 +2249,6 @@ "previousPoint": 187, "type": 1, "relatedPoint": 187, - "chapater": 1, "tips": "第三章&拦路黄巾军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2449,7 +2261,6 @@ "previousPoint": 188, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2462,7 +2273,6 @@ "previousPoint": 189, "type": 1, "relatedPoint": 189, - "chapater": 1, "tips": "第三章&北海之战", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2475,7 +2285,6 @@ "previousPoint": 190, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2488,7 +2297,6 @@ "previousPoint": 191, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2501,7 +2309,6 @@ "previousPoint": 192, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2514,7 +2321,6 @@ "previousPoint": 193, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2527,7 +2333,6 @@ "previousPoint": 194, "type": 1, "relatedPoint": 194, - "chapater": 1, "tips": "第三章&拦路黄巾军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2540,7 +2345,6 @@ "previousPoint": 195, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2553,7 +2357,6 @@ "previousPoint": 196, "type": 1, "relatedPoint": 196, - "chapater": 1, "tips": "第三章&拦路黄巾军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2566,7 +2369,6 @@ "previousPoint": 197, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2579,7 +2381,6 @@ "previousPoint": 198, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2592,7 +2393,6 @@ "previousPoint": 199, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2605,7 +2405,6 @@ "previousPoint": 200, "type": 1, "relatedPoint": 200, - "chapater": 1, "tips": "第三章&拦路黄巾军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2618,7 +2417,6 @@ "previousPoint": 201, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2631,7 +2429,6 @@ "previousPoint": 202, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2644,7 +2441,6 @@ "previousPoint": 203, "type": 1, "relatedPoint": 203, - "chapater": 1, "tips": "第三章&琅琊之战", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2657,7 +2453,6 @@ "previousPoint": 204, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2670,7 +2465,6 @@ "previousPoint": 205, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2683,7 +2477,6 @@ "previousPoint": 206, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2696,7 +2489,6 @@ "previousPoint": 207, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2709,7 +2501,6 @@ "previousPoint": 208, "type": 1, "relatedPoint": 208, - "chapater": 1, "tips": "第三章&拦路曹军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2722,7 +2513,6 @@ "previousPoint": 209, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2735,7 +2525,6 @@ "previousPoint": 210, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2748,7 +2537,6 @@ "previousPoint": 211, "type": 1, "relatedPoint": 211, - "chapater": 1, "tips": "第三章&拦路曹军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2761,7 +2549,6 @@ "previousPoint": 212, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2774,7 +2561,6 @@ "previousPoint": 213, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2787,7 +2573,6 @@ "previousPoint": 214, "type": 1, "relatedPoint": 214, - "chapater": 1, "tips": "第三章&拦路曹军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2800,7 +2585,6 @@ "previousPoint": 215, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2813,7 +2597,6 @@ "previousPoint": 216, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2826,7 +2609,6 @@ "previousPoint": 217, "type": 1, "relatedPoint": 217, - "chapater": 1, "tips": "第三章&郯城之战", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2839,7 +2621,6 @@ "previousPoint": 218, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2852,7 +2633,6 @@ "previousPoint": 219, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2865,7 +2645,6 @@ "previousPoint": 220, "type": 1, "relatedPoint": 220, - "chapater": 1, "tips": "第三章&拦路曹军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2878,7 +2657,6 @@ "previousPoint": 221, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2891,7 +2669,6 @@ "previousPoint": 222, "type": 1, "relatedPoint": 222, - "chapater": 1, "tips": "第三章&拦路曹军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2904,7 +2681,6 @@ "previousPoint": 223, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2917,7 +2693,6 @@ "previousPoint": 224, "type": 1, "relatedPoint": 224, - "chapater": 1, "tips": "第三章&拦路曹军", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2930,7 +2705,6 @@ "previousPoint": 225, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2943,7 +2717,6 @@ "previousPoint": 226, "type": 1, "relatedPoint": 226, - "chapater": 1, "tips": "第三章&徐州之战", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2956,7 +2729,6 @@ "previousPoint": 227, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2969,7 +2741,6 @@ "previousPoint": 228, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2982,7 +2753,6 @@ "previousPoint": 229, "type": 1, "relatedPoint": 229, - "chapater": 1, "tips": "第四章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -2995,7 +2765,6 @@ "previousPoint": 230, "type": 4, "relatedPoint": 0, - "chapater": 0, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3008,7 +2777,6 @@ "previousPoint": 231, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3021,7 +2789,6 @@ "previousPoint": 232, "type": 1, "relatedPoint": 233, - "chapater": 1, "tips": "第四章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3034,7 +2801,6 @@ "previousPoint": 233, "type": 4, "relatedPoint": 0, - "chapater": 0, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3047,7 +2813,6 @@ "previousPoint": 234, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3060,7 +2825,6 @@ "previousPoint": 235, "type": 1, "relatedPoint": 235, - "chapater": 1, "tips": "第四章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3073,7 +2837,6 @@ "previousPoint": 236, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3086,7 +2849,6 @@ "previousPoint": 237, "type": 1, "relatedPoint": 237, - "chapater": 1, "tips": "第四章&易京之战", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3099,7 +2861,6 @@ "previousPoint": 238, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3112,7 +2873,6 @@ "previousPoint": 239, "type": 1, "relatedPoint": 239, - "chapater": 1, "tips": "第四章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3125,7 +2885,6 @@ "previousPoint": 240, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3138,7 +2897,6 @@ "previousPoint": 241, "type": 1, "relatedPoint": 241, - "chapater": 1, "tips": "第四章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3151,7 +2909,6 @@ "previousPoint": 242, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3164,7 +2921,6 @@ "previousPoint": 243, "type": 1, "relatedPoint": 243, - "chapater": 1, "tips": "第四章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3177,7 +2933,6 @@ "previousPoint": 244, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3190,7 +2945,6 @@ "previousPoint": 245, "type": 1, "relatedPoint": 245, - "chapater": 1, "tips": "第四章&涿郡之战", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3203,7 +2957,6 @@ "previousPoint": 246, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3216,7 +2969,6 @@ "previousPoint": 247, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3229,7 +2981,6 @@ "previousPoint": 248, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3242,7 +2993,6 @@ "previousPoint": 249, "type": 1, "relatedPoint": 249, - "chapater": 1, "tips": "第四章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3255,7 +3005,6 @@ "previousPoint": 250, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3268,7 +3017,6 @@ "previousPoint": 251, "type": 1, "relatedPoint": 251, - "chapater": 1, "tips": "第四章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3281,7 +3029,6 @@ "previousPoint": 252, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3294,7 +3041,6 @@ "previousPoint": 253, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3307,7 +3053,6 @@ "previousPoint": 254, "type": 1, "relatedPoint": 254, - "chapater": 1, "tips": "第四章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3320,7 +3065,6 @@ "previousPoint": 255, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3333,7 +3077,6 @@ "previousPoint": 256, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3346,7 +3089,6 @@ "previousPoint": 257, "type": 1, "relatedPoint": 257, - "chapater": 1, "tips": "第四章&长城之战", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3359,7 +3101,6 @@ "previousPoint": 258, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3372,7 +3113,6 @@ "previousPoint": 259, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3385,7 +3125,6 @@ "previousPoint": 260, "type": 1, "relatedPoint": 260, - "chapater": 1, "tips": "第四章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3398,7 +3137,6 @@ "previousPoint": 261, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3411,7 +3149,6 @@ "previousPoint": 262, "type": 1, "relatedPoint": 262, - "chapater": 1, "tips": "第四章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3424,7 +3161,6 @@ "previousPoint": 263, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3437,7 +3173,6 @@ "previousPoint": 264, "type": 1, "relatedPoint": 264, - "chapater": 1, "tips": "第四章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3450,7 +3185,6 @@ "previousPoint": 265, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3463,7 +3197,6 @@ "previousPoint": 266, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3476,7 +3209,6 @@ "previousPoint": 267, "type": 1, "relatedPoint": 267, - "chapater": 1, "tips": "第四章&蓟城之战", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3489,7 +3221,6 @@ "previousPoint": 268, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3502,7 +3233,6 @@ "previousPoint": 269, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3515,7 +3245,6 @@ "previousPoint": 270, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3528,7 +3257,6 @@ "previousPoint": 271, "type": 1, "relatedPoint": 271, - "chapater": 1, "tips": "第四章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3541,7 +3269,6 @@ "previousPoint": 272, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3554,7 +3281,6 @@ "previousPoint": 273, "type": 1, "relatedPoint": 273, - "chapater": 1, "tips": "第四章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3567,7 +3293,6 @@ "previousPoint": 274, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3580,7 +3305,6 @@ "previousPoint": 275, "type": 1, "relatedPoint": 275, - "chapater": 1, "tips": "第四章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3593,7 +3317,6 @@ "previousPoint": 276, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3606,7 +3329,6 @@ "previousPoint": 277, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3619,7 +3341,6 @@ "previousPoint": 278, "type": 1, "relatedPoint": 278, - "chapater": 1, "tips": "第四章&右北平之战", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3632,7 +3353,6 @@ "previousPoint": 279, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3645,7 +3365,6 @@ "previousPoint": 280, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3658,7 +3377,6 @@ "previousPoint": 281, "type": 1, "relatedPoint": 281, - "chapater": 1, "tips": "第四章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3671,7 +3389,6 @@ "previousPoint": 282, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3684,7 +3401,6 @@ "previousPoint": 283, "type": 1, "relatedPoint": 283, - "chapater": 1, "tips": "第四章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3697,7 +3413,6 @@ "previousPoint": 284, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3710,7 +3425,6 @@ "previousPoint": 285, "type": 1, "relatedPoint": 285, - "chapater": 1, "tips": "第四章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3723,7 +3437,6 @@ "previousPoint": 286, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3736,7 +3449,6 @@ "previousPoint": 287, "type": 1, "relatedPoint": 287, - "chapater": 1, "tips": "第四章&乌桓部落", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3749,7 +3461,6 @@ "previousPoint": 288, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3762,7 +3473,6 @@ "previousPoint": 289, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3775,7 +3485,6 @@ "previousPoint": 290, "type": 1, "relatedPoint": 290, - "chapater": 1, "tips": "第五章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3788,7 +3497,6 @@ "previousPoint": 291, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3801,7 +3509,6 @@ "previousPoint": 292, "type": 1, "relatedPoint": 292, - "chapater": 1, "tips": "第五章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3814,7 +3521,6 @@ "previousPoint": 293, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3827,7 +3533,6 @@ "previousPoint": 294, "type": 1, "relatedPoint": 294, - "chapater": 1, "tips": "第五章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3840,7 +3545,6 @@ "previousPoint": 295, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3853,7 +3557,6 @@ "previousPoint": 296, "type": 1, "relatedPoint": 296, - "chapater": 1, "tips": "第五章&官渡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3866,7 +3569,6 @@ "previousPoint": 297, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3879,7 +3581,6 @@ "previousPoint": 298, "type": 1, "relatedPoint": 298, - "chapater": 1, "tips": "第五章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3892,7 +3593,6 @@ "previousPoint": 299, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3905,7 +3605,6 @@ "previousPoint": 300, "type": 1, "relatedPoint": 300, - "chapater": 1, "tips": "第五章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3918,7 +3617,6 @@ "previousPoint": 301, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3931,7 +3629,6 @@ "previousPoint": 302, "type": 1, "relatedPoint": 302, - "chapater": 1, "tips": "第五章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3944,7 +3641,6 @@ "previousPoint": 303, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3957,7 +3653,6 @@ "previousPoint": 304, "type": 1, "relatedPoint": 304, - "chapater": 1, "tips": "第五章&谯郡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3970,7 +3665,6 @@ "previousPoint": 305, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3983,7 +3677,6 @@ "previousPoint": 306, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -3996,7 +3689,6 @@ "previousPoint": 307, "type": 1, "relatedPoint": 307, - "chapater": 1, "tips": "第五章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4009,7 +3701,6 @@ "previousPoint": 308, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4022,7 +3713,6 @@ "previousPoint": 309, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4035,7 +3725,6 @@ "previousPoint": 310, "type": 1, "relatedPoint": 310, - "chapater": 1, "tips": "第五章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4048,7 +3737,6 @@ "previousPoint": 311, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4061,7 +3749,6 @@ "previousPoint": 312, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4074,7 +3761,6 @@ "previousPoint": 313, "type": 1, "relatedPoint": 313, - "chapater": 1, "tips": "第五章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4087,7 +3773,6 @@ "previousPoint": 314, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4100,7 +3785,6 @@ "previousPoint": 315, "type": 1, "relatedPoint": 315, - "chapater": 1, "tips": "第五章&淮南", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4113,7 +3797,6 @@ "previousPoint": 316, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4126,7 +3809,6 @@ "previousPoint": 317, "type": 1, "relatedPoint": 317, - "chapater": 1, "tips": "第五章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4139,7 +3821,6 @@ "previousPoint": 318, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4152,7 +3833,6 @@ "previousPoint": 319, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4165,7 +3845,6 @@ "previousPoint": 320, "type": 1, "relatedPoint": 320, - "chapater": 1, "tips": "第五章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4178,7 +3857,6 @@ "previousPoint": 321, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4191,7 +3869,6 @@ "previousPoint": 322, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4204,7 +3881,6 @@ "previousPoint": 323, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4217,7 +3893,6 @@ "previousPoint": 324, "type": 1, "relatedPoint": 324, - "chapater": 1, "tips": "第五章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4230,7 +3905,6 @@ "previousPoint": 325, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4243,7 +3917,6 @@ "previousPoint": 326, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4256,7 +3929,6 @@ "previousPoint": 327, "type": 1, "relatedPoint": 327, - "chapater": 1, "tips": "第五章&卧牛山", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4269,7 +3941,6 @@ "previousPoint": 328, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4282,7 +3953,6 @@ "previousPoint": 329, "type": 1, "relatedPoint": 329, - "chapater": 1, "tips": "第五章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4295,7 +3965,6 @@ "previousPoint": 330, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4308,7 +3977,6 @@ "previousPoint": 331, "type": 1, "relatedPoint": 331, - "chapater": 1, "tips": "第五章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4321,7 +3989,6 @@ "previousPoint": 332, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4334,7 +4001,6 @@ "previousPoint": 333, "type": 1, "relatedPoint": 333, - "chapater": 1, "tips": "第五章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4347,7 +4013,6 @@ "previousPoint": 334, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4360,7 +4025,6 @@ "previousPoint": 335, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4373,7 +4037,6 @@ "previousPoint": 336, "type": 1, "relatedPoint": 336, - "chapater": 1, "tips": "第五章&古城", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4386,7 +4049,6 @@ "previousPoint": 337, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4399,7 +4061,6 @@ "previousPoint": 338, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4412,7 +4073,6 @@ "previousPoint": 339, "type": 1, "relatedPoint": 339, - "chapater": 1, "tips": "第五章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4425,7 +4085,6 @@ "previousPoint": 340, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4438,7 +4097,6 @@ "previousPoint": 341, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4451,7 +4109,6 @@ "previousPoint": 342, "type": 1, "relatedPoint": 342, - "chapater": 1, "tips": "第五章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4464,7 +4121,6 @@ "previousPoint": 343, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4477,7 +4133,6 @@ "previousPoint": 344, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4490,7 +4145,6 @@ "previousPoint": 345, "type": 1, "relatedPoint": 345, - "chapater": 1, "tips": "第五章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4503,7 +4157,6 @@ "previousPoint": 346, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4516,7 +4169,6 @@ "previousPoint": 347, "type": 1, "relatedPoint": 347, - "chapater": 1, "tips": "第五章&许田", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4529,7 +4181,6 @@ "previousPoint": 348, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4542,7 +4193,6 @@ "previousPoint": 349, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4555,7 +4205,6 @@ "previousPoint": 350, "type": 1, "relatedPoint": 350, - "chapater": 1, "tips": "第五章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4568,7 +4217,6 @@ "previousPoint": 351, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4581,7 +4229,6 @@ "previousPoint": 352, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4594,7 +4241,6 @@ "previousPoint": 353, "type": 1, "relatedPoint": 353, - "chapater": 1, "tips": "第五章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4607,7 +4253,6 @@ "previousPoint": 354, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4620,7 +4265,6 @@ "previousPoint": 355, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4633,7 +4277,6 @@ "previousPoint": 356, "type": 1, "relatedPoint": 356, - "chapater": 1, "tips": "第五章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4646,7 +4289,6 @@ "previousPoint": 357, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4659,7 +4301,6 @@ "previousPoint": 358, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4672,7 +4313,6 @@ "previousPoint": 359, "type": 1, "relatedPoint": 359, - "chapater": 1, "tips": "第五章&汝南", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4685,7 +4325,6 @@ "previousPoint": 360, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4698,7 +4337,6 @@ "previousPoint": 361, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4711,7 +4349,6 @@ "previousPoint": 362, "type": 1, "relatedPoint": 362, - "chapater": 1, "tips": "第六章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4724,7 +4361,6 @@ "previousPoint": 363, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4737,7 +4373,6 @@ "previousPoint": 364, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4750,7 +4385,6 @@ "previousPoint": 365, "type": 1, "relatedPoint": 365, - "chapater": 1, "tips": "第六章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4763,7 +4397,6 @@ "previousPoint": 366, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4776,7 +4409,6 @@ "previousPoint": 367, "type": 1, "relatedPoint": 367, - "chapater": 1, "tips": "第六章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4789,7 +4421,6 @@ "previousPoint": 368, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4802,7 +4433,6 @@ "previousPoint": 369, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4815,7 +4445,6 @@ "previousPoint": 370, "type": 1, "relatedPoint": 370, - "chapater": 1, "tips": "第六章&襄阳", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4828,7 +4457,6 @@ "previousPoint": 371, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4841,7 +4469,6 @@ "previousPoint": 372, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4854,7 +4481,6 @@ "previousPoint": 373, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4867,7 +4493,6 @@ "previousPoint": 374, "type": 1, "relatedPoint": 374, - "chapater": 1, "tips": "第六章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4880,7 +4505,6 @@ "previousPoint": 375, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4893,7 +4517,6 @@ "previousPoint": 376, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4906,7 +4529,6 @@ "previousPoint": 377, "type": 1, "relatedPoint": 377, - "chapater": 1, "tips": "第六章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4919,7 +4541,6 @@ "previousPoint": 378, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4932,7 +4553,6 @@ "previousPoint": 379, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4945,7 +4565,6 @@ "previousPoint": 380, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4958,7 +4577,6 @@ "previousPoint": 381, "type": 1, "relatedPoint": 381, - "chapater": 1, "tips": "第六章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4971,7 +4589,6 @@ "previousPoint": 382, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4984,7 +4601,6 @@ "previousPoint": 383, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -4997,7 +4613,6 @@ "previousPoint": 384, "type": 1, "relatedPoint": 384, - "chapater": 1, "tips": "第六章&樊城", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5010,7 +4625,6 @@ "previousPoint": 385, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5023,7 +4637,6 @@ "previousPoint": 386, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5036,7 +4649,6 @@ "previousPoint": 387, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5049,7 +4661,6 @@ "previousPoint": 388, "type": 1, "relatedPoint": 388, - "chapater": 1, "tips": "第六章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5062,7 +4673,6 @@ "previousPoint": 389, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5075,7 +4685,6 @@ "previousPoint": 390, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5088,7 +4697,6 @@ "previousPoint": 391, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5101,7 +4709,6 @@ "previousPoint": 392, "type": 1, "relatedPoint": 392, - "chapater": 1, "tips": "第六章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5114,7 +4721,6 @@ "previousPoint": 393, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5127,7 +4733,6 @@ "previousPoint": 394, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5140,7 +4745,6 @@ "previousPoint": 395, "type": 1, "relatedPoint": 395, - "chapater": 1, "tips": "第六章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5149,11 +4753,10 @@ }, { "pointId": 397, - "position": "-2552&-1683", + "position": "-2559&-1683", "previousPoint": 396, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5162,11 +4765,10 @@ }, { "pointId": 398, - "position": "-2580&-1656", + "position": "-2569&-1687", "previousPoint": 397, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5175,11 +4777,10 @@ }, { "pointId": 399, - "position": "-2667&-1595", + "position": "-2717&-1514", "previousPoint": 398, "type": 1, "relatedPoint": 398, - "chapater": 1, "tips": "第六章&博望坡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5192,7 +4793,6 @@ "previousPoint": 399, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5205,7 +4805,6 @@ "previousPoint": 400, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5218,7 +4817,6 @@ "previousPoint": 401, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5231,7 +4829,6 @@ "previousPoint": 402, "type": 1, "relatedPoint": 402, - "chapater": 1, "tips": "第六章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5244,7 +4841,6 @@ "previousPoint": 403, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5257,7 +4853,6 @@ "previousPoint": 404, "type": 1, "relatedPoint": 404, - "chapater": 1, "tips": "第六章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5270,7 +4865,6 @@ "previousPoint": 405, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5283,7 +4877,6 @@ "previousPoint": 406, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5296,7 +4889,6 @@ "previousPoint": 407, "type": 1, "relatedPoint": 407, - "chapater": 1, "tips": "第六章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5309,7 +4901,6 @@ "previousPoint": 408, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5322,7 +4913,6 @@ "previousPoint": 409, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5335,7 +4925,6 @@ "previousPoint": 410, "type": 1, "relatedPoint": 410, - "chapater": 1, "tips": "第六章&新野", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5348,7 +4937,6 @@ "previousPoint": 411, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5361,7 +4949,6 @@ "previousPoint": 412, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5374,7 +4961,6 @@ "previousPoint": 413, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5387,7 +4973,6 @@ "previousPoint": 414, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5400,7 +4985,6 @@ "previousPoint": 415, "type": 1, "relatedPoint": 415, - "chapater": 1, "tips": "第六章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5413,7 +4997,6 @@ "previousPoint": 416, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5426,7 +5009,6 @@ "previousPoint": 417, "type": 1, "relatedPoint": 417, - "chapater": 1, "tips": "第六章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5439,7 +5021,6 @@ "previousPoint": 418, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5452,7 +5033,6 @@ "previousPoint": 419, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5465,7 +5045,6 @@ "previousPoint": 420, "type": 1, "relatedPoint": 420, - "chapater": 1, "tips": "第六章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5478,7 +5057,6 @@ "previousPoint": 421, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5491,7 +5069,6 @@ "previousPoint": 422, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5504,7 +5081,6 @@ "previousPoint": 423, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5517,7 +5093,6 @@ "previousPoint": 424, "type": 1, "relatedPoint": 424, - "chapater": 1, "tips": "第六章&当阳县", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5530,7 +5105,6 @@ "previousPoint": 425, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5543,7 +5117,6 @@ "previousPoint": 426, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5556,7 +5129,6 @@ "previousPoint": 427, "type": 1, "relatedPoint": 427, - "chapater": 1, "tips": "第六章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5569,7 +5141,6 @@ "previousPoint": 428, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5582,7 +5153,6 @@ "previousPoint": 429, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5595,7 +5165,6 @@ "previousPoint": 430, "type": 1, "relatedPoint": 430, - "chapater": 1, "tips": "第六章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5608,7 +5177,6 @@ "previousPoint": 431, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5621,7 +5189,6 @@ "previousPoint": 432, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5634,7 +5201,6 @@ "previousPoint": 433, "type": 1, "relatedPoint": 433, - "chapater": 1, "tips": "第六章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5647,7 +5213,6 @@ "previousPoint": 434, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5660,7 +5225,6 @@ "previousPoint": 435, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5673,7 +5237,6 @@ "previousPoint": 436, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5686,7 +5249,6 @@ "previousPoint": 437, "type": 1, "relatedPoint": 437, - "chapater": 1, "tips": "第六章&长坂坡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5699,7 +5261,6 @@ "previousPoint": 438, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5712,7 +5273,6 @@ "previousPoint": 439, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5725,7 +5285,6 @@ "previousPoint": 440, "type": 1, "relatedPoint": 440, - "chapater": 1, "tips": "第六章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5738,7 +5297,6 @@ "previousPoint": 441, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5751,7 +5309,6 @@ "previousPoint": 442, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5764,7 +5321,6 @@ "previousPoint": 443, "type": 1, "relatedPoint": 443, - "chapater": 1, "tips": "第六章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5777,7 +5333,6 @@ "previousPoint": 444, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5790,7 +5345,6 @@ "previousPoint": 445, "type": 1, "relatedPoint": 445, - "chapater": 1, "tips": "第六章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5803,7 +5357,6 @@ "previousPoint": 446, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5816,7 +5369,6 @@ "previousPoint": 447, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5829,7 +5381,6 @@ "previousPoint": 448, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5842,7 +5393,6 @@ "previousPoint": 449, "type": 1, "relatedPoint": 449, - "chapater": 1, "tips": "第六章&曹营", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5855,7 +5405,6 @@ "previousPoint": 0, "type": 0, "relatedPoint": 0, - "chapater": 0, "tips": 0, "__EMPTY": 0, "__EMPTY_1": 0, @@ -5868,7 +5417,6 @@ "previousPoint": 451, "type": 1, "relatedPoint": 451, - "chapater": 1, "tips": "第七章&七星坛", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5881,7 +5429,6 @@ "previousPoint": 452, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5894,7 +5441,6 @@ "previousPoint": 453, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5907,7 +5453,6 @@ "previousPoint": 454, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5920,7 +5465,6 @@ "previousPoint": 455, "type": 1, "relatedPoint": 455, - "chapater": 1, "tips": "第七章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5933,7 +5477,6 @@ "previousPoint": 456, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5946,7 +5489,6 @@ "previousPoint": 457, "type": 1, "relatedPoint": 457, - "chapater": 1, "tips": "第七章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5959,7 +5501,6 @@ "previousPoint": 458, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5972,7 +5513,6 @@ "previousPoint": 459, "type": 1, "relatedPoint": 459, - "chapater": 1, "tips": "第七章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5985,7 +5525,6 @@ "previousPoint": 460, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -5998,7 +5537,6 @@ "previousPoint": 461, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6011,7 +5549,6 @@ "previousPoint": 462, "type": 1, "relatedPoint": 462, - "chapater": 1, "tips": "第七章&乌林", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6024,7 +5561,6 @@ "previousPoint": 463, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6037,7 +5573,6 @@ "previousPoint": 464, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6050,7 +5585,6 @@ "previousPoint": 465, "type": 1, "relatedPoint": 465, - "chapater": 1, "tips": "第七章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6063,7 +5597,6 @@ "previousPoint": 466, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6076,7 +5609,6 @@ "previousPoint": 467, "type": 1, "relatedPoint": 467, - "chapater": 1, "tips": "第七章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6089,7 +5621,6 @@ "previousPoint": 468, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6102,7 +5633,6 @@ "previousPoint": 469, "type": 1, "relatedPoint": 469, - "chapater": 1, "tips": "第七章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6115,7 +5645,6 @@ "previousPoint": 470, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6128,7 +5657,6 @@ "previousPoint": 471, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6141,7 +5669,6 @@ "previousPoint": 472, "type": 1, "relatedPoint": 472, - "chapater": 1, "tips": "第七章&南郡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6154,7 +5681,6 @@ "previousPoint": 473, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6167,7 +5693,6 @@ "previousPoint": 474, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6180,7 +5705,6 @@ "previousPoint": 475, "type": 1, "relatedPoint": 475, - "chapater": 1, "tips": "第七章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6193,7 +5717,6 @@ "previousPoint": 476, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6206,7 +5729,6 @@ "previousPoint": 477, "type": 1, "relatedPoint": 477, - "chapater": 1, "tips": "第七章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6219,7 +5741,6 @@ "previousPoint": 478, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6232,7 +5753,6 @@ "previousPoint": 479, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6245,7 +5765,6 @@ "previousPoint": 480, "type": 1, "relatedPoint": 480, - "chapater": 1, "tips": "第七章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6258,7 +5777,6 @@ "previousPoint": 481, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6271,7 +5789,6 @@ "previousPoint": 482, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6284,7 +5801,6 @@ "previousPoint": 483, "type": 1, "relatedPoint": 483, - "chapater": 1, "tips": "第七章&零陵", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6297,7 +5813,6 @@ "previousPoint": 484, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6310,7 +5825,6 @@ "previousPoint": 485, "type": 1, "relatedPoint": 485, - "chapater": 1, "tips": "第七章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6323,7 +5837,6 @@ "previousPoint": 486, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6336,7 +5849,6 @@ "previousPoint": 487, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6349,7 +5861,6 @@ "previousPoint": 488, "type": 1, "relatedPoint": 488, - "chapater": 1, "tips": "第七章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6362,7 +5873,6 @@ "previousPoint": 489, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6375,7 +5885,6 @@ "previousPoint": 490, "type": 1, "relatedPoint": 490, - "chapater": 1, "tips": "第七章&小关卡", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6388,7 +5897,6 @@ "previousPoint": 491, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6401,7 +5909,6 @@ "previousPoint": 492, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6414,7 +5921,6 @@ "previousPoint": 493, "type": 1, "relatedPoint": 493, - "chapater": 1, "tips": "第七章&桂阳", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6423,11 +5929,10 @@ }, { "pointId": 495, - "position": "-585&675", + "position": "-650&675", "previousPoint": 74, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6440,7 +5945,6 @@ "previousPoint": 495, "type": 2, "relatedPoint": 495, - "chapater": 1, "tips": "第一关遗迹", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6453,7 +5957,6 @@ "previousPoint": 496, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6466,7 +5969,6 @@ "previousPoint": 497, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6479,7 +5981,6 @@ "previousPoint": 498, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6492,7 +5993,6 @@ "previousPoint": 499, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6505,7 +6005,6 @@ "previousPoint": 500, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6518,7 +6017,6 @@ "previousPoint": 501, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6531,7 +6029,6 @@ "previousPoint": 502, "type": 2, "relatedPoint": 502, - "chapater": 1, "tips": "第二关遗迹", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6544,7 +6041,6 @@ "previousPoint": 503, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6557,7 +6053,6 @@ "previousPoint": 504, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6570,7 +6065,6 @@ "previousPoint": 505, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6583,7 +6077,6 @@ "previousPoint": 506, "type": 2, "relatedPoint": 506, - "chapater": 1, "tips": "第三关遗迹", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6596,7 +6089,6 @@ "previousPoint": 507, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第二章秘境转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6609,7 +6101,6 @@ "previousPoint": 508, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第二章秘境转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6622,7 +6113,6 @@ "previousPoint": 509, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第二章秘境转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6635,7 +6125,6 @@ "previousPoint": 510, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "第二章秘境对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6648,7 +6137,6 @@ "previousPoint": 511, "type": 2, "relatedPoint": 511, - "chapater": 1, "tips": "第二章秘境 虎牢关", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6661,7 +6149,6 @@ "previousPoint": 215, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第三章秘境转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6674,7 +6161,6 @@ "previousPoint": 513, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第三章秘境转折点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6687,7 +6173,6 @@ "previousPoint": 514, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "第三章秘境对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6700,7 +6185,6 @@ "previousPoint": 515, "type": 2, "relatedPoint": 515, - "chapater": 1, "tips": "第三章秘境", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6713,7 +6197,6 @@ "previousPoint": 252, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6726,7 +6209,6 @@ "previousPoint": 517, "type": 1, "relatedPoint": 517, - "chapater": 1, "tips": "第四章秘境", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6739,7 +6221,6 @@ "previousPoint": 390, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6752,7 +6233,6 @@ "previousPoint": 519, "type": 1, "relatedPoint": 519, - "chapater": 1, "tips": "第五章秘境", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6765,7 +6245,6 @@ "previousPoint": 520, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6778,7 +6257,6 @@ "previousPoint": 521, "type": 1, "relatedPoint": 521, - "chapater": 1, "tips": "第六章秘境", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6791,7 +6269,6 @@ "previousPoint": 492, "type": 0, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6804,7 +6281,6 @@ "previousPoint": 523, "type": 0, "relatedPoint": 523, - "chapater": 1, "tips": "第七章秘境", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6817,7 +6293,6 @@ "previousPoint": 116, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第二章遗迹转折点1", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6830,7 +6305,6 @@ "previousPoint": 525, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第二章遗迹转折点2", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6843,7 +6317,6 @@ "previousPoint": 526, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第二章遗迹转折点3", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6856,7 +6329,6 @@ "previousPoint": 527, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6869,7 +6341,6 @@ "previousPoint": 528, "type": 2, "relatedPoint": 528, - "chapater": 1, "tips": "第二章遗迹关1", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6882,7 +6353,6 @@ "previousPoint": 529, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第二章遗迹转折点4", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6895,7 +6365,6 @@ "previousPoint": 530, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第二章遗迹转折点5", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6908,7 +6377,6 @@ "previousPoint": 531, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第二章遗迹转折点6", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6921,7 +6389,6 @@ "previousPoint": 532, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6934,7 +6401,6 @@ "previousPoint": 533, "type": 2, "relatedPoint": 533, - "chapater": 1, "tips": "第二章遗迹关2", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6947,7 +6413,6 @@ "previousPoint": 534, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第二章遗迹转折点7", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6960,7 +6425,6 @@ "previousPoint": 535, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第二章遗迹转折点8", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6973,7 +6437,6 @@ "previousPoint": 536, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第二章遗迹转折点9", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6986,7 +6449,6 @@ "previousPoint": 537, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -6999,7 +6461,6 @@ "previousPoint": 538, "type": 2, "relatedPoint": 538, - "chapater": 1, "tips": "第二章遗迹关3", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7012,7 +6473,6 @@ "previousPoint": 212, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第三章遗迹转折点1", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7025,7 +6485,6 @@ "previousPoint": 540, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第三章遗迹转折点2", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7038,7 +6497,6 @@ "previousPoint": 541, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第三章遗迹转折点3", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7051,7 +6509,6 @@ "previousPoint": 542, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7064,7 +6521,6 @@ "previousPoint": 543, "type": 2, "relatedPoint": 543, - "chapater": 1, "tips": "第三章遗迹关1", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7077,7 +6533,6 @@ "previousPoint": 544, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第三章遗迹转折点4", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7090,7 +6545,6 @@ "previousPoint": 545, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第三章遗迹转折点5", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7103,7 +6557,6 @@ "previousPoint": 546, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第三章遗迹转折点6", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7116,7 +6569,6 @@ "previousPoint": 547, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7129,7 +6581,6 @@ "previousPoint": 548, "type": 2, "relatedPoint": 548, - "chapater": 1, "tips": "第三章遗迹关2", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7142,7 +6593,6 @@ "previousPoint": 549, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第三章遗迹转折点7", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7155,7 +6605,6 @@ "previousPoint": 550, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第三章遗迹转折点8", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7168,7 +6617,6 @@ "previousPoint": 551, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第三章遗迹转折点9", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7181,7 +6629,6 @@ "previousPoint": 552, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7194,7 +6641,6 @@ "previousPoint": 553, "type": 2, "relatedPoint": 553, - "chapater": 1, "tips": "第三章遗迹关3", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7207,7 +6653,6 @@ "previousPoint": 258, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第四章遗迹转折点1", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7220,7 +6665,6 @@ "previousPoint": 555, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第四章遗迹转折点2", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7233,7 +6677,6 @@ "previousPoint": 556, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第四章遗迹转折点3", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7246,7 +6689,6 @@ "previousPoint": 557, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7259,7 +6701,6 @@ "previousPoint": 558, "type": 2, "relatedPoint": 558, - "chapater": 1, "tips": "第四章遗迹关1", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7272,7 +6713,6 @@ "previousPoint": 559, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第四章遗迹转折点4", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7285,7 +6725,6 @@ "previousPoint": 560, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第四章遗迹转折点5", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7298,7 +6737,6 @@ "previousPoint": 561, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第四章遗迹转折点6", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7311,7 +6749,6 @@ "previousPoint": 562, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7324,7 +6761,6 @@ "previousPoint": 563, "type": 2, "relatedPoint": 563, - "chapater": 1, "tips": "第四章遗迹关2", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7337,7 +6773,6 @@ "previousPoint": 564, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第四章遗迹转折点7", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7350,7 +6785,6 @@ "previousPoint": 556, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第四章遗迹转折点8", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7363,7 +6797,6 @@ "previousPoint": 557, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第四章遗迹转折点9", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7376,7 +6809,6 @@ "previousPoint": 558, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7389,7 +6821,6 @@ "previousPoint": 559, "type": 2, "relatedPoint": 568, - "chapater": 1, "tips": "第四章遗迹关3", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7402,7 +6833,6 @@ "previousPoint": 337, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第五章遗迹转折点1", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7415,7 +6845,6 @@ "previousPoint": 561, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第五章遗迹转折点2", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7428,7 +6857,6 @@ "previousPoint": 562, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第五章遗迹转折点3", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7441,7 +6869,6 @@ "previousPoint": 563, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7454,7 +6881,6 @@ "previousPoint": 564, "type": 2, "relatedPoint": 568, - "chapater": 1, "tips": "第五章遗迹关1", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7467,7 +6893,6 @@ "previousPoint": 556, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第五章遗迹转折点4", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7480,7 +6905,6 @@ "previousPoint": 557, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第五章遗迹转折点5", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7493,7 +6917,6 @@ "previousPoint": 558, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第五章遗迹转折点6", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7506,7 +6929,6 @@ "previousPoint": 559, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7519,7 +6941,6 @@ "previousPoint": 560, "type": 2, "relatedPoint": 573, - "chapater": 1, "tips": "第五章遗迹关2", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7532,7 +6953,6 @@ "previousPoint": 561, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第五章遗迹转折点7", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7545,7 +6965,6 @@ "previousPoint": 562, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第五章遗迹转折点8", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7558,7 +6977,6 @@ "previousPoint": 563, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第五章遗迹转折点9", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7571,7 +6989,6 @@ "previousPoint": 564, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7584,7 +7001,6 @@ "previousPoint": 556, "type": 2, "relatedPoint": 578, - "chapater": 1, "tips": "第五章遗迹关3", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7593,11 +7009,10 @@ }, { "pointId": 585, - "position": "1504&-14", - "previousPoint": 399, + "position": "-2587&-1621", + "previousPoint": 398, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第六章遗迹转折点1", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7606,11 +7021,10 @@ }, { "pointId": 586, - "position": "1281&29", - "previousPoint": 558, + "position": "-2358&-1535", + "previousPoint": 585, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第六章遗迹转折点2", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7619,11 +7033,10 @@ }, { "pointId": 587, - "position": "1271&31", - "previousPoint": 559, + "position": "-2166&-1463", + "previousPoint": 586, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第六章遗迹转折点3", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7632,11 +7045,10 @@ }, { "pointId": 588, - "position": "-564&1611", - "previousPoint": 16, + "position": "-2102&-1472", + "previousPoint": 587, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7645,63 +7057,22 @@ }, { "pointId": 589, - "position": "-583&1594", + "position": "-2005&-1442", "previousPoint": 588, "type": 2, "relatedPoint": 588, - "chapater": 1, "tips": "第六章遗迹关1", "__EMPTY": 0, "__EMPTY_1": 0, "__EMPTY_2": 0, "__EMPTY_3": 0 }, - { - "pointId": 590, - "position": "-619&1543", - "previousPoint": 589, - "type": 4, - "relatedPoint": 0, - "chapater": 1, - "tips": "第六章遗迹转折点4", - "__EMPTY": 0, - "__EMPTY_1": 0, - "__EMPTY_2": 0, - "__EMPTY_3": 0 - }, - { - "pointId": 591, - "position": "-618&1461", - "previousPoint": 590, - "type": 4, - "relatedPoint": 0, - "chapater": 1, - "tips": "第六章遗迹转折点5", - "__EMPTY": 0, - "__EMPTY_1": 0, - "__EMPTY_2": 0, - "__EMPTY_3": 0 - }, - { - "pointId": 592, - "position": "-585&1413", - "previousPoint": 591, - "type": 4, - "relatedPoint": 0, - "chapater": 1, - "tips": "第六章遗迹转折点6", - "__EMPTY": 0, - "__EMPTY_1": 0, - "__EMPTY_2": 0, - "__EMPTY_3": 0 - }, { "pointId": 593, - "position": "-571&1387", - "previousPoint": 592, + "position": "-1921&-1431", + "previousPoint": 589, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7710,11 +7081,10 @@ }, { "pointId": 594, - "position": "-545&1261", + "position": "-1849&-1377", "previousPoint": 593, "type": 2, "relatedPoint": 593, - "chapater": 1, "tips": "第六章遗迹关2", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7723,50 +7093,22 @@ }, { "pointId": 595, - "position": "-582&1224", + "position": "-1830&-1323", "previousPoint": 594, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第六章遗迹转折点7", "__EMPTY": 0, "__EMPTY_1": 0, "__EMPTY_2": 0, "__EMPTY_3": 0 }, - { - "pointId": 596, - "position": "-595&1201", - "previousPoint": 595, - "type": 4, - "relatedPoint": 0, - "chapater": 1, - "tips": "第六章遗迹转折点8", - "__EMPTY": 0, - "__EMPTY_1": 0, - "__EMPTY_2": 0, - "__EMPTY_3": 0 - }, - { - "pointId": 597, - "position": "-486&1288", - "previousPoint": 596, - "type": 4, - "relatedPoint": 0, - "chapater": 1, - "tips": "第六章遗迹转折点9", - "__EMPTY": 0, - "__EMPTY_1": 0, - "__EMPTY_2": 0, - "__EMPTY_3": 0 - }, { "pointId": 598, - "position": "-419&1378", - "previousPoint": 597, + "position": "-1630&-1244", + "previousPoint": 595, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7775,11 +7117,10 @@ }, { "pointId": 599, - "position": "-399&1452", + "position": "-1588&-1178", "previousPoint": 598, "type": 2, "relatedPoint": 598, - "chapater": 1, "tips": "第六章遗迹关3", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7792,7 +7133,6 @@ "previousPoint": 494, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第七章遗迹转折点1", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7805,7 +7145,6 @@ "previousPoint": 564, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第七章遗迹转折点2", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7818,7 +7157,6 @@ "previousPoint": 556, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第七章遗迹转折点3", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7831,7 +7169,6 @@ "previousPoint": 557, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7844,7 +7181,6 @@ "previousPoint": 558, "type": 2, "relatedPoint": 598, - "chapater": 1, "tips": "第七章遗迹关1", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7857,7 +7193,6 @@ "previousPoint": 559, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第七章遗迹转折点4", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7870,7 +7205,6 @@ "previousPoint": 560, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第七章遗迹转折点5", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7883,7 +7217,6 @@ "previousPoint": 561, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第七章遗迹转折点6", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7896,7 +7229,6 @@ "previousPoint": 562, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7909,7 +7241,6 @@ "previousPoint": 563, "type": 2, "relatedPoint": 603, - "chapater": 1, "tips": "第七章遗迹关2", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7922,7 +7253,6 @@ "previousPoint": 564, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第七章遗迹转折点7", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7935,7 +7265,6 @@ "previousPoint": 556, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第七章遗迹转折点8", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7948,7 +7277,6 @@ "previousPoint": 557, "type": 4, "relatedPoint": 0, - "chapater": 1, "tips": "第七章遗迹转折点9", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7961,7 +7289,6 @@ "previousPoint": 558, "type": 3, "relatedPoint": 0, - "chapater": 1, "tips": "对话点", "__EMPTY": 0, "__EMPTY_1": 0, @@ -7974,11 +7301,406 @@ "previousPoint": 559, "type": 2, "relatedPoint": 608, - "chapater": 1, "tips": "第七章遗迹关3", "__EMPTY": 0, "__EMPTY_1": 0, "__EMPTY_2": 0, "__EMPTY_3": 0 + }, + { + "pointId": 615, + "position": "1087&-3277", + "previousPoint": 494, + "type": 0, + "relatedPoint": 0, + "tips": "上接桂阳之战的主线", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 616, + "position": "1321&-3120", + "previousPoint": 615, + "type": 0, + "relatedPoint": 0, + "tips": "转折点2", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 617, + "position": "1414&-3082", + "previousPoint": 616, + "type": 0, + "relatedPoint": 0, + "tips": "对话点", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 618, + "position": "1481&-3085", + "previousPoint": 617, + "type": 0, + "relatedPoint": 617, + "tips": "小关卡1", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 619, + "position": "1573&-2876", + "previousPoint": 618, + "type": 0, + "relatedPoint": 0, + "tips": "转折点1", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 620, + "position": "1743&-2752", + "previousPoint": 619, + "type": 0, + "relatedPoint": 0, + "tips": "对话点", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 621, + "position": "1794&-2737", + "previousPoint": 620, + "type": 0, + "relatedPoint": 620, + "tips": "小关卡2", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 622, + "position": "1985&-2634", + "previousPoint": 621, + "type": 0, + "relatedPoint": 0, + "tips": "转折点1", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 623, + "position": "2098&-2597", + "previousPoint": 622, + "type": 0, + "relatedPoint": 0, + "tips": "转折点2", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 624, + "position": "2144&-2591", + "previousPoint": 623, + "type": 0, + "relatedPoint": 0, + "tips": "对话点", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 625, + "position": "2194&-2590", + "previousPoint": 624, + "type": 0, + "relatedPoint": 624, + "tips": "小关卡3", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 626, + "position": "2473&-2497", + "previousPoint": 625, + "type": 0, + "relatedPoint": 0, + "tips": "转折点1", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 627, + "position": "2608&-2440", + "previousPoint": 626, + "type": 0, + "relatedPoint": 0, + "tips": "转折点2", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 628, + "position": "2691&-2435", + "previousPoint": 627, + "type": 0, + "relatedPoint": 0, + "tips": "对话点", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 629, + "position": "2764&-2351", + "previousPoint": 628, + "type": 0, + "relatedPoint": 628, + "tips": "甘露寺", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 630, + "position": "2897&-2451", + "previousPoint": 629, + "type": 0, + "relatedPoint": 0, + "tips": "转折点1", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 631, + "position": "2995&-2488", + "previousPoint": 630, + "type": 0, + "relatedPoint": 0, + "tips": "转折点2", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 632, + "position": "3070&-2538", + "previousPoint": 631, + "type": 0, + "relatedPoint": 0, + "tips": "转折点3", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 633, + "position": "3116&-2612", + "previousPoint": 632, + "type": 0, + "relatedPoint": 0, + "tips": "对话点", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 634, + "position": "3141&-2656", + "previousPoint": 633, + "type": 0, + "relatedPoint": 633, + "tips": "小关卡1", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 635, + "position": "3202&-2772", + "previousPoint": 634, + "type": 0, + "relatedPoint": 0, + "tips": "转折点1", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 636, + "position": "3216&-2895", + "previousPoint": 635, + "type": 0, + "relatedPoint": 0, + "tips": "转折点2", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 637, + "position": "3067&-3094", + "previousPoint": 636, + "type": 0, + "relatedPoint": 0, + "tips": "转折点3", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 638, + "position": "3037&-3143", + "previousPoint": 637, + "type": 0, + "relatedPoint": 0, + "tips": "对话点", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 639, + "position": "3000&-3150", + "previousPoint": 638, + "type": 0, + "relatedPoint": 638, + "tips": "小关卡2", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 640, + "position": "2889&-3233", + "previousPoint": 639, + "type": 0, + "relatedPoint": 0, + "tips": "转折点1", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 641, + "position": "2715&-3296", + "previousPoint": 640, + "type": 0, + "relatedPoint": 0, + "tips": "转折点2", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 642, + "position": "2599&-3307", + "previousPoint": 641, + "type": 0, + "relatedPoint": 0, + "tips": "对话点", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 643, + "position": "2542&-3307", + "previousPoint": 642, + "type": 0, + "relatedPoint": 642, + "tips": "小关3", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 644, + "position": "2403&-3303", + "previousPoint": 643, + "type": 0, + "relatedPoint": 0, + "tips": "转折点1", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 645, + "position": "2298&-3272", + "previousPoint": 644, + "type": 0, + "relatedPoint": 0, + "tips": "转折点2", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 646, + "position": "2171&-3170", + "previousPoint": 645, + "type": 0, + "relatedPoint": 0, + "tips": "对话点", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, + { + "pointId": 647, + "position": "2062&-3088", + "previousPoint": 646, + "type": 0, + "relatedPoint": 646, + "tips": "柴桑", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 } ] \ No newline at end of file diff --git a/web-server/app/service/Auth.ts b/web-server/app/service/Auth.ts index f4aa6b28a..e5066b192 100644 --- a/web-server/app/service/Auth.ts +++ b/web-server/app/service/Auth.ts @@ -312,7 +312,7 @@ export default class Auth extends Service { const code = ctx.service.utils.genCode(6); const seqId = await Counter.getNewCounter(COUNTER.ROLE) || -1; - const role = await RoleModel.createRole(uid, serverId, { roleId, code, roleName: roleId, seqId, lv: DEFAULT_LV, exp: (getExpByLv(DEFAULT_LV - 1) || { sum: 0 }).sum || 0 }); + const role = await RoleModel.createRole(uid, serverId, { roleId, code, roleName: "", seqId, lv: DEFAULT_LV, exp: (getExpByLv(DEFAULT_LV - 1) || { sum: 0 }).sum || 0 }); if (role) { // 任务 await checkTask(roleId, TASK_TYPE.ROLE_LV, role.lv, false, {}); diff --git a/web-server/config/config.default.ts b/web-server/config/config.default.ts index abbd7cb13..2ff815dcb 100644 --- a/web-server/config/config.default.ts +++ b/web-server/config/config.default.ts @@ -21,7 +21,7 @@ export default (appInfo: EggAppInfo) => { config.middleware = [ 'parmsDecode' ]; config.mongoose = { - url: 'mongodb://dbop:zyzMon2021@dds-8vb7474e31ba7ed41.mongodb.zhangbei.rds.aliyuncs.com:3717,dds-8vb7474e31ba7ed42.mongodb.zhangbei.rds.aliyuncs.com:3717/zyz?replicaSet=mgset-505529944', // 内网 + url: 'mongodb://dbop:zyzdbopbantu@dds-8vbdb47c6fb58a541.mongodb.zhangbei.rds.aliyuncs.com:3717,dds-8vbdb47c6fb58a542.mongodb.zhangbei.rds.aliyuncs.com:3717/zyz?replicaSet=mgset-500808098', // 内网 options: { useNewUrlParser: true, useUnifiedTopology: true }, }; config.gmmongoose = { @@ -29,8 +29,8 @@ export default (appInfo: EggAppInfo) => { options: { useNewUrlParser: true, useUnifiedTopology: true }, }; config.redis = { - url: 'r-8vb130185rp2ir3lqn.redis.zhangbei.rds.aliyuncs.com', // 内网 - pw: 'zyz_monitor_2021' + url: 'r-8vb4i2kgl91886fkxd.redis.zhangbei.rds.aliyuncs.com', // 内网 + pw: 'zyz_2020' }; // config.alinode = { diff --git a/web-server/package.json b/web-server/package.json index 016addd96..59afd8fcd 100644 --- a/web-server/package.json +++ b/web-server/package.json @@ -25,7 +25,8 @@ "monitor": "cross-env EGG_SERVER_ENV=monitor npm run dev", "distribute": "cross-env EGG_SERVER_ENV=distribute npm run dev", "lylocal": "cross-env EGG_SERVER_ENV=lylocal npm run dev", - "alpha": "cross-env EGG_SERVER_ENV=alpha npm run dev" + "alpha": "cross-env EGG_SERVER_ENV=alpha npm run dev", + "stable": "cross-env EGG_SERVER_ENV=stable npm run dev" }, "dependencies": { "@types/underscore": "^1.11.3",