添加查看详细武将接口
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
import {Application, BackendSession} from 'pinus';
|
||||
const _ = require('underscore');
|
||||
import { gameData } from '../../../pubUtils/data';
|
||||
import { checkPvp, initPvpInfo, refreshEnemies, getEnemies, getPlusScore, getLvByScore, defaultHeroes} from '../../../services/pvpService';
|
||||
import { checkPvp, initPvpInfo, refreshEnemies, getEnemies, getPlusScore, getLvByScore, defaultHeroes, checkRoleIsRobot} from '../../../services/pvpService';
|
||||
import { RoleModel, RoleType } from '../../../db/Role';
|
||||
import { STATUS } from '../../../consts/statusCode';
|
||||
import { resResult, reduceCe, genCode } from '../../../pubUtils/util';
|
||||
import { SystemConfigModel } from '../../../db/SystemConfig'
|
||||
|
||||
import { PvpDefenseModel, PvpDefenseType, OppPlayers } from '../../../db/PvpDefense';
|
||||
import { oppHeroesDefenseInter, pvpEndParamInter, RankParam } from '../../../pubUtils/interface';
|
||||
import { oppHeroesDefenseInter, pvpEndParamInter, RankParam, PlayerDetail, PlayerDetailHero } from '../../../pubUtils/interface';
|
||||
import { PVP_HERO_POS, REDIS_KEY } from '../../../consts';
|
||||
|
||||
import { HeroType, HeroModel } from '../../../db/Hero';
|
||||
@@ -359,4 +359,64 @@ export class PvpHandler {
|
||||
|
||||
return resResult(STATUS.SUCCESS, { ranks: ranks.slice(0, 100), myRank });
|
||||
}
|
||||
|
||||
async getPlayerDetail(msg: { roleId: string }, session: BackendSession) {
|
||||
|
||||
let roleId = session.get('roleId');
|
||||
|
||||
let { roleId: oppoRoleId } = msg;
|
||||
let isRobot = checkRoleIsRobot(oppoRoleId);
|
||||
|
||||
let result: PlayerDetail;
|
||||
|
||||
if(isRobot) { // 如果是机器人,从自己的pvpDefense中寻找
|
||||
let role = await RoleModel.findByRoleId(roleId);
|
||||
let pvpDefense = await PvpDefenseModel.findByRoleId(roleId);
|
||||
let { oppPlayers } = pvpDefense;
|
||||
let curOpp = oppPlayers.find(cur => cur.roleId == oppoRoleId);
|
||||
if(!curOpp) return resResult(STATUS.PVP_ROLE_NOT_FOUND);
|
||||
|
||||
let heroes = new Array<PlayerDetailHero>();
|
||||
|
||||
let { robot } = curOpp;
|
||||
let { warId } = robot;
|
||||
let dicWarJson = gameData.warJson.get(warId);
|
||||
|
||||
for(let json of dicWarJson) {
|
||||
const { actorId, relation } = json;
|
||||
if(relation == 2 && actorId > 0) { // 默认格子
|
||||
let dicHero = gameData.hero.get(actorId);
|
||||
heroes.push({
|
||||
actorId,
|
||||
star: dicHero.initialStars,
|
||||
colorStar: 0,
|
||||
quality: dicHero.quality,
|
||||
score: 0,
|
||||
lv: role.lv
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
result = new PlayerDetail({...robot, lv: role.lv, heroes})
|
||||
|
||||
} else { // 查询对方pvpDefense
|
||||
let pvpDefense = await PvpDefenseModel.findByRoleId(oppoRoleId);
|
||||
let dbHeroes = await HeroModel.findByRole(oppoRoleId);
|
||||
let role = await RoleModel.findByRoleId(oppoRoleId);
|
||||
|
||||
let heroes = new Array<PlayerDetailHero>();
|
||||
for(let {hid, lv, star, colorStar, quality } of dbHeroes) {
|
||||
let heroScore = pvpDefense.heroScores.find(cur => cur.hid == hid);
|
||||
heroes.push({
|
||||
actorId: hid, lv, star, colorStar, quality,
|
||||
score: heroScore?heroScore.score: 0
|
||||
});
|
||||
}
|
||||
heroes.sort((a, b) => b.score - a.score);
|
||||
|
||||
result = new PlayerDetail({...role, heroes});
|
||||
}
|
||||
|
||||
return resResult(STATUS.SUCCESS, result);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
// 一些通用的interface定义
|
||||
|
||||
import { RoleType } from "../db/Role";
|
||||
import { Robot } from "../db/PvpDefense";
|
||||
import { reduceCe } from "./util";
|
||||
|
||||
export interface RewardInter {
|
||||
id: number;
|
||||
count: number;
|
||||
@@ -115,4 +119,41 @@ export class RankParam {
|
||||
this.sHid = sHid;
|
||||
this.title = title;
|
||||
}
|
||||
}
|
||||
|
||||
export interface PlayerDetailHero {
|
||||
actorId: number;
|
||||
lv: number;
|
||||
star: number;
|
||||
colorStar: number;
|
||||
quality: number;
|
||||
score: number;
|
||||
}
|
||||
|
||||
export class PlayerDetail {
|
||||
roleId: string;
|
||||
roleName: string;
|
||||
lv: number;
|
||||
title?: number = 1;
|
||||
sHid?: number = 19;
|
||||
headHid?: number = 19;
|
||||
|
||||
score?: number = 0;
|
||||
pLv?: number = 1;
|
||||
defCe?: number = 0;
|
||||
|
||||
heroes: PlayerDetailHero[];
|
||||
|
||||
constructor(detail: PlayerDetail) {
|
||||
if(detail.roleId) this.roleId = detail.roleId;
|
||||
if(detail.roleName) this.roleName = detail.roleName;
|
||||
if(detail.lv) this.lv = detail.lv;
|
||||
if(detail.title) this.title = detail.title;
|
||||
if(detail.sHid) this.sHid = detail.sHid;
|
||||
if(detail.headHid) this.headHid = detail.headHid;
|
||||
if(detail.score) this.score = detail.score;
|
||||
if(detail.pLv) this.pLv = detail.pLv;
|
||||
if(detail.defCe) this.defCe = reduceCe(detail.defCe);
|
||||
if(detail.heroes) this.heroes = detail.heroes;
|
||||
}
|
||||
}
|
||||
30
shared/resource/warJsons/4001.json
Normal file → Executable file
30
shared/resource/warJsons/4001.json
Normal file → Executable file
@@ -1,6 +1,6 @@
|
||||
[
|
||||
{
|
||||
"warID": 4001,
|
||||
"warId": 4001,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -21,7 +21,7 @@
|
||||
"__EMPTY": 0
|
||||
},
|
||||
{
|
||||
"warID": 4001,
|
||||
"warId": 4001,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -42,7 +42,7 @@
|
||||
"__EMPTY": 0
|
||||
},
|
||||
{
|
||||
"warID": 4001,
|
||||
"warId": 4001,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -63,7 +63,7 @@
|
||||
"__EMPTY": 0
|
||||
},
|
||||
{
|
||||
"warID": 4001,
|
||||
"warId": 4001,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -84,7 +84,7 @@
|
||||
"__EMPTY": 0
|
||||
},
|
||||
{
|
||||
"warID": 4001,
|
||||
"warId": 4001,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -105,7 +105,7 @@
|
||||
"__EMPTY": 0
|
||||
},
|
||||
{
|
||||
"warID": 4001,
|
||||
"warId": 4001,
|
||||
"actorName": "李典",
|
||||
"actorId": 312,
|
||||
"dataId": 2001,
|
||||
@@ -120,13 +120,13 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&610|2&295|3&0|4&84|5&107|6&110|7&80|8&3|9&3|10&3|11&2|12&2|13&2|14&1|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6001&",
|
||||
"star": 0,
|
||||
"spine": 0,
|
||||
"__EMPTY": 0
|
||||
},
|
||||
{
|
||||
"warID": 4001,
|
||||
"warId": 4001,
|
||||
"actorName": "贾诩",
|
||||
"actorId": 314,
|
||||
"dataId": 2002,
|
||||
@@ -141,13 +141,13 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&660|2&0|3&275|4&130|5&40|6&120|7&100|8&3|9&2|10&2|11&2|12&2|13&1|14&1|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6001&",
|
||||
"star": 0,
|
||||
"spine": 0,
|
||||
"__EMPTY": 0
|
||||
},
|
||||
{
|
||||
"warID": 4001,
|
||||
"warId": 4001,
|
||||
"actorName": "许褚",
|
||||
"actorId": 315,
|
||||
"dataId": 2003,
|
||||
@@ -162,13 +162,13 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&700|2&170|3&0|4&180|5&100|6&100|7&84|8&3|9&2|10&2|11&3|12&3|13&1|14&3|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6001&",
|
||||
"star": 0,
|
||||
"spine": 0,
|
||||
"__EMPTY": 0
|
||||
},
|
||||
{
|
||||
"warID": 4001,
|
||||
"warId": 4001,
|
||||
"actorName": "邓艾",
|
||||
"actorId": 309,
|
||||
"dataId": 2004,
|
||||
@@ -183,13 +183,13 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&740|2&185|3&0|4&115|5&115|6&97|7&87|8&2|9&3|10&3|11&4|12&5|13&2|14&4|15&3|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6001&",
|
||||
"star": 0,
|
||||
"spine": 0,
|
||||
"__EMPTY": 0
|
||||
},
|
||||
{
|
||||
"warID": 4001,
|
||||
"warId": 4001,
|
||||
"actorName": "曹仁",
|
||||
"actorId": 311,
|
||||
"dataId": 2005,
|
||||
@@ -204,7 +204,7 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&580|2&320|3&0|4&90|5&105|6&96|7&86|8&2|9&2|10&3|11&3|12&5|13&2|14&3|15&3|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6001&",
|
||||
"star": 0,
|
||||
"spine": 0,
|
||||
"__EMPTY": 0
|
||||
|
||||
30
shared/resource/warJsons/4002.json
Normal file → Executable file
30
shared/resource/warJsons/4002.json
Normal file → Executable file
@@ -1,6 +1,6 @@
|
||||
[
|
||||
{
|
||||
"warID": 4002,
|
||||
"warId": 4002,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -20,7 +20,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4002,
|
||||
"warId": 4002,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -40,7 +40,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4002,
|
||||
"warId": 4002,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -60,7 +60,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4002,
|
||||
"warId": 4002,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -80,7 +80,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4002,
|
||||
"warId": 4002,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -100,7 +100,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4002,
|
||||
"warId": 4002,
|
||||
"actorName": "贾诩",
|
||||
"actorId": 314,
|
||||
"dataId": 2001,
|
||||
@@ -115,12 +115,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&660|2&0|3&275|4&130|5&40|6&120|7&100|8&3|9&2|10&2|11&2|12&2|13&1|14&1|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6002&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4002,
|
||||
"warId": 4002,
|
||||
"actorName": "曹仁",
|
||||
"actorId": 311,
|
||||
"dataId": 2002,
|
||||
@@ -135,12 +135,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&580|2&320|3&0|4&90|5&105|6&96|7&86|8&2|9&2|10&3|11&3|12&5|13&2|14&3|15&3|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6002&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4002,
|
||||
"warId": 4002,
|
||||
"actorName": "邓艾",
|
||||
"actorId": 309,
|
||||
"dataId": 2003,
|
||||
@@ -155,12 +155,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&740|2&185|3&0|4&115|5&115|6&97|7&87|8&2|9&3|10&3|11&4|12&5|13&2|14&4|15&3|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6002&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4002,
|
||||
"warId": 4002,
|
||||
"actorName": "许褚",
|
||||
"actorId": 315,
|
||||
"dataId": 2004,
|
||||
@@ -175,12 +175,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&700|2&170|3&0|4&180|5&100|6&100|7&84|8&3|9&2|10&2|11&3|12&3|13&1|14&3|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6002&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4002,
|
||||
"warId": 4002,
|
||||
"actorName": "李典",
|
||||
"actorId": 312,
|
||||
"dataId": 2005,
|
||||
@@ -195,7 +195,7 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&610|2&295|3&0|4&84|5&107|6&110|7&80|8&3|9&3|10&3|11&2|12&2|13&2|14&1|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6002&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
}
|
||||
|
||||
30
shared/resource/warJsons/4003.json
Normal file → Executable file
30
shared/resource/warJsons/4003.json
Normal file → Executable file
@@ -1,6 +1,6 @@
|
||||
[
|
||||
{
|
||||
"warID": 4003,
|
||||
"warId": 4003,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -20,7 +20,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4003,
|
||||
"warId": 4003,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -40,7 +40,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4003,
|
||||
"warId": 4003,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -60,7 +60,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4003,
|
||||
"warId": 4003,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -80,7 +80,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4003,
|
||||
"warId": 4003,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -100,7 +100,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4003,
|
||||
"warId": 4003,
|
||||
"actorName": "曹仁",
|
||||
"actorId": 311,
|
||||
"dataId": 2001,
|
||||
@@ -115,12 +115,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&580|2&320|3&0|4&90|5&105|6&96|7&86|8&2|9&2|10&3|11&3|12&5|13&2|14&3|15&3|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6003&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4003,
|
||||
"warId": 4003,
|
||||
"actorName": "许褚",
|
||||
"actorId": 315,
|
||||
"dataId": 2002,
|
||||
@@ -135,12 +135,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&700|2&170|3&0|4&180|5&100|6&100|7&84|8&3|9&2|10&2|11&3|12&3|13&1|14&3|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6003&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4003,
|
||||
"warId": 4003,
|
||||
"actorName": "贾诩",
|
||||
"actorId": 314,
|
||||
"dataId": 2003,
|
||||
@@ -155,12 +155,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&660|2&0|3&275|4&130|5&40|6&120|7&100|8&3|9&2|10&2|11&2|12&2|13&1|14&1|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6003&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4003,
|
||||
"warId": 4003,
|
||||
"actorName": "邓艾",
|
||||
"actorId": 309,
|
||||
"dataId": 2004,
|
||||
@@ -175,12 +175,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&740|2&185|3&0|4&115|5&115|6&97|7&87|8&2|9&3|10&3|11&4|12&5|13&2|14&4|15&3|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6003&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4003,
|
||||
"warId": 4003,
|
||||
"actorName": "李典",
|
||||
"actorId": 312,
|
||||
"dataId": 2005,
|
||||
@@ -195,7 +195,7 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&610|2&295|3&0|4&84|5&107|6&110|7&80|8&3|9&3|10&3|11&2|12&2|13&2|14&1|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6003&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
}
|
||||
|
||||
30
shared/resource/warJsons/4004.json
Normal file → Executable file
30
shared/resource/warJsons/4004.json
Normal file → Executable file
@@ -1,6 +1,6 @@
|
||||
[
|
||||
{
|
||||
"warID": 4004,
|
||||
"warId": 4004,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -20,7 +20,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4004,
|
||||
"warId": 4004,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -40,7 +40,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4004,
|
||||
"warId": 4004,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -60,7 +60,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4004,
|
||||
"warId": 4004,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -80,7 +80,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4004,
|
||||
"warId": 4004,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -100,7 +100,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4004,
|
||||
"warId": 4004,
|
||||
"actorName": "贾诩",
|
||||
"actorId": 314,
|
||||
"dataId": 2001,
|
||||
@@ -115,12 +115,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&660|2&0|3&275|4&130|5&40|6&120|7&100|8&3|9&2|10&2|11&2|12&2|13&1|14&1|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6001&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4004,
|
||||
"warId": 4004,
|
||||
"actorName": "曹仁",
|
||||
"actorId": 311,
|
||||
"dataId": 2002,
|
||||
@@ -135,12 +135,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&580|2&320|3&0|4&90|5&105|6&96|7&86|8&2|9&2|10&3|11&3|12&5|13&2|14&3|15&3|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6001&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4004,
|
||||
"warId": 4004,
|
||||
"actorName": "许褚",
|
||||
"actorId": 315,
|
||||
"dataId": 2003,
|
||||
@@ -155,12 +155,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&700|2&170|3&0|4&180|5&100|6&100|7&84|8&3|9&2|10&2|11&3|12&3|13&1|14&3|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6001&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4004,
|
||||
"warId": 4004,
|
||||
"actorName": "邓艾",
|
||||
"actorId": 309,
|
||||
"dataId": 2004,
|
||||
@@ -175,12 +175,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&740|2&185|3&0|4&115|5&115|6&97|7&87|8&2|9&3|10&3|11&4|12&5|13&2|14&4|15&3|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6001&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4004,
|
||||
"warId": 4004,
|
||||
"actorName": "李典",
|
||||
"actorId": 312,
|
||||
"dataId": 2005,
|
||||
@@ -195,7 +195,7 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&610|2&295|3&0|4&84|5&107|6&110|7&80|8&3|9&3|10&3|11&2|12&2|13&2|14&1|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6001&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
}
|
||||
|
||||
30
shared/resource/warJsons/4005.json
Normal file → Executable file
30
shared/resource/warJsons/4005.json
Normal file → Executable file
@@ -1,6 +1,6 @@
|
||||
[
|
||||
{
|
||||
"warID": 4005,
|
||||
"warId": 4005,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -20,7 +20,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4005,
|
||||
"warId": 4005,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -40,7 +40,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4005,
|
||||
"warId": 4005,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -60,7 +60,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4005,
|
||||
"warId": 4005,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -80,7 +80,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4005,
|
||||
"warId": 4005,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -100,7 +100,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4005,
|
||||
"warId": 4005,
|
||||
"actorName": "贾诩",
|
||||
"actorId": 314,
|
||||
"dataId": 2001,
|
||||
@@ -115,12 +115,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&660|2&0|3&275|4&130|5&40|6&120|7&100|8&3|9&2|10&2|11&2|12&2|13&1|14&1|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6002&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4005,
|
||||
"warId": 4005,
|
||||
"actorName": "曹仁",
|
||||
"actorId": 311,
|
||||
"dataId": 2002,
|
||||
@@ -135,12 +135,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&580|2&320|3&0|4&90|5&105|6&96|7&86|8&2|9&2|10&3|11&3|12&5|13&2|14&3|15&3|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6002&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4005,
|
||||
"warId": 4005,
|
||||
"actorName": "许褚",
|
||||
"actorId": 315,
|
||||
"dataId": 2003,
|
||||
@@ -155,12 +155,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&700|2&170|3&0|4&180|5&100|6&100|7&84|8&3|9&2|10&2|11&3|12&3|13&1|14&3|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6002&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4005,
|
||||
"warId": 4005,
|
||||
"actorName": "邓艾",
|
||||
"actorId": 309,
|
||||
"dataId": 2004,
|
||||
@@ -175,12 +175,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&740|2&185|3&0|4&115|5&115|6&97|7&87|8&2|9&3|10&3|11&4|12&5|13&2|14&4|15&3|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6002&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4005,
|
||||
"warId": 4005,
|
||||
"actorName": "李典",
|
||||
"actorId": 312,
|
||||
"dataId": 2005,
|
||||
@@ -195,7 +195,7 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&610|2&295|3&0|4&84|5&107|6&110|7&80|8&3|9&3|10&3|11&2|12&2|13&2|14&1|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6002&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
}
|
||||
|
||||
30
shared/resource/warJsons/4006.json
Normal file → Executable file
30
shared/resource/warJsons/4006.json
Normal file → Executable file
@@ -1,6 +1,6 @@
|
||||
[
|
||||
{
|
||||
"warID": 4006,
|
||||
"warId": 4006,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -20,7 +20,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4006,
|
||||
"warId": 4006,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -40,7 +40,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4006,
|
||||
"warId": 4006,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -60,7 +60,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4006,
|
||||
"warId": 4006,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -80,7 +80,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4006,
|
||||
"warId": 4006,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -100,7 +100,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4006,
|
||||
"warId": 4006,
|
||||
"actorName": "贾诩",
|
||||
"actorId": 314,
|
||||
"dataId": 2001,
|
||||
@@ -115,12 +115,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&660|2&0|3&275|4&130|5&40|6&120|7&100|8&3|9&2|10&2|11&2|12&2|13&1|14&1|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6003&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4006,
|
||||
"warId": 4006,
|
||||
"actorName": "曹仁",
|
||||
"actorId": 311,
|
||||
"dataId": 2002,
|
||||
@@ -135,12 +135,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&580|2&320|3&0|4&90|5&105|6&96|7&86|8&2|9&2|10&3|11&3|12&5|13&2|14&3|15&3|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6003&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4006,
|
||||
"warId": 4006,
|
||||
"actorName": "许褚",
|
||||
"actorId": 315,
|
||||
"dataId": 2003,
|
||||
@@ -155,12 +155,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&700|2&170|3&0|4&180|5&100|6&100|7&84|8&3|9&2|10&2|11&3|12&3|13&1|14&3|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6003&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4006,
|
||||
"warId": 4006,
|
||||
"actorName": "邓艾",
|
||||
"actorId": 309,
|
||||
"dataId": 2004,
|
||||
@@ -175,12 +175,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&740|2&185|3&0|4&115|5&115|6&97|7&87|8&2|9&3|10&3|11&4|12&5|13&2|14&4|15&3|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6003&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4006,
|
||||
"warId": 4006,
|
||||
"actorName": "李典",
|
||||
"actorId": 312,
|
||||
"dataId": 2005,
|
||||
@@ -195,7 +195,7 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&610|2&295|3&0|4&84|5&107|6&110|7&80|8&3|9&3|10&3|11&2|12&2|13&2|14&1|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6003&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
}
|
||||
|
||||
30
shared/resource/warJsons/4007.json
Normal file → Executable file
30
shared/resource/warJsons/4007.json
Normal file → Executable file
@@ -1,6 +1,6 @@
|
||||
[
|
||||
{
|
||||
"warID": 4007,
|
||||
"warId": 4007,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -20,7 +20,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4007,
|
||||
"warId": 4007,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -40,7 +40,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4007,
|
||||
"warId": 4007,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -60,7 +60,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4007,
|
||||
"warId": 4007,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -80,7 +80,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4007,
|
||||
"warId": 4007,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -100,7 +100,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4007,
|
||||
"warId": 4007,
|
||||
"actorName": "邓艾",
|
||||
"actorId": 309,
|
||||
"dataId": 2001,
|
||||
@@ -115,12 +115,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&740|2&185|3&0|4&115|5&115|6&97|7&87|8&2|9&3|10&3|11&4|12&5|13&2|14&4|15&3|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6001&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4007,
|
||||
"warId": 4007,
|
||||
"actorName": "许褚",
|
||||
"actorId": 315,
|
||||
"dataId": 2002,
|
||||
@@ -135,12 +135,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&700|2&170|3&0|4&180|5&100|6&100|7&84|8&3|9&2|10&2|11&3|12&3|13&1|14&3|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6001&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4007,
|
||||
"warId": 4007,
|
||||
"actorName": "李典",
|
||||
"actorId": 312,
|
||||
"dataId": 2003,
|
||||
@@ -155,12 +155,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&610|2&295|3&0|4&84|5&107|6&110|7&80|8&3|9&3|10&3|11&2|12&2|13&2|14&1|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6001&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4007,
|
||||
"warId": 4007,
|
||||
"actorName": "曹仁",
|
||||
"actorId": 311,
|
||||
"dataId": 2004,
|
||||
@@ -175,12 +175,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&580|2&320|3&0|4&90|5&105|6&96|7&86|8&2|9&2|10&3|11&3|12&5|13&2|14&3|15&3|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6001&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4007,
|
||||
"warId": 4007,
|
||||
"actorName": "贾诩",
|
||||
"actorId": 314,
|
||||
"dataId": 2005,
|
||||
@@ -195,7 +195,7 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&580|2&150|3&170|4&90|5&105|6&96|7&86|8&2|9&2|10&3|11&3|12&5|13&2|14&3|15&3|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6001&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
}
|
||||
|
||||
30
shared/resource/warJsons/4008.json
Normal file → Executable file
30
shared/resource/warJsons/4008.json
Normal file → Executable file
@@ -1,6 +1,6 @@
|
||||
[
|
||||
{
|
||||
"warID": 4008,
|
||||
"warId": 4008,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -20,7 +20,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4008,
|
||||
"warId": 4008,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -40,7 +40,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4008,
|
||||
"warId": 4008,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -60,7 +60,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4008,
|
||||
"warId": 4008,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -80,7 +80,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4008,
|
||||
"warId": 4008,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -100,7 +100,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4008,
|
||||
"warId": 4008,
|
||||
"actorName": "曹仁",
|
||||
"actorId": 311,
|
||||
"dataId": 2001,
|
||||
@@ -115,12 +115,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&580|2&320|3&0|4&90|5&105|6&96|7&86|8&2|9&2|10&3|11&3|12&5|13&2|14&3|15&3|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6002&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4008,
|
||||
"warId": 4008,
|
||||
"actorName": "贾诩",
|
||||
"actorId": 314,
|
||||
"dataId": 2002,
|
||||
@@ -135,12 +135,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&660|2&0|3&275|4&130|5&40|6&120|7&100|8&3|9&2|10&2|11&2|12&2|13&1|14&1|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6002&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4008,
|
||||
"warId": 4008,
|
||||
"actorName": "李典",
|
||||
"actorId": 312,
|
||||
"dataId": 2003,
|
||||
@@ -155,12 +155,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&610|2&295|3&0|4&84|5&107|6&110|7&80|8&3|9&3|10&3|11&2|12&2|13&2|14&1|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6002&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4008,
|
||||
"warId": 4008,
|
||||
"actorName": "许褚",
|
||||
"actorId": 315,
|
||||
"dataId": 2004,
|
||||
@@ -175,12 +175,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&700|2&170|3&0|4&180|5&100|6&100|7&84|8&3|9&2|10&2|11&3|12&3|13&1|14&3|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6002&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4008,
|
||||
"warId": 4008,
|
||||
"actorName": "邓艾",
|
||||
"actorId": 309,
|
||||
"dataId": 2005,
|
||||
@@ -195,7 +195,7 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&740|2&185|3&0|4&115|5&115|6&97|7&87|8&2|9&3|10&3|11&4|12&5|13&2|14&4|15&3|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6002&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
}
|
||||
|
||||
30
shared/resource/warJsons/4009.json
Normal file → Executable file
30
shared/resource/warJsons/4009.json
Normal file → Executable file
@@ -1,6 +1,6 @@
|
||||
[
|
||||
{
|
||||
"warID": 4009,
|
||||
"warId": 4009,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -20,7 +20,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4009,
|
||||
"warId": 4009,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -40,7 +40,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4009,
|
||||
"warId": 4009,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -60,7 +60,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4009,
|
||||
"warId": 4009,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -80,7 +80,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4009,
|
||||
"warId": 4009,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
@@ -100,7 +100,7 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4009,
|
||||
"warId": 4009,
|
||||
"actorName": "邓艾",
|
||||
"actorId": 309,
|
||||
"dataId": 2001,
|
||||
@@ -115,12 +115,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&740|2&185|3&0|4&115|5&115|6&97|7&87|8&2|9&3|10&3|11&4|12&5|13&2|14&4|15&3|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6003&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4009,
|
||||
"warId": 4009,
|
||||
"actorName": "李典",
|
||||
"actorId": 312,
|
||||
"dataId": 2002,
|
||||
@@ -135,12 +135,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&610|2&295|3&0|4&84|5&107|6&110|7&80|8&3|9&3|10&3|11&2|12&2|13&2|14&1|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6003&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4009,
|
||||
"warId": 4009,
|
||||
"actorName": "贾诩",
|
||||
"actorId": 314,
|
||||
"dataId": 2003,
|
||||
@@ -155,12 +155,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&660|2&0|3&275|4&130|5&40|6&120|7&100|8&3|9&2|10&2|11&2|12&2|13&1|14&1|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6003&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4009,
|
||||
"warId": 4009,
|
||||
"actorName": "曹仁",
|
||||
"actorId": 311,
|
||||
"dataId": 2004,
|
||||
@@ -175,12 +175,12 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&580|2&320|3&0|4&90|5&105|6&96|7&86|8&2|9&2|10&3|11&3|12&5|13&2|14&3|15&3|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6003&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4009,
|
||||
"warId": 4009,
|
||||
"actorName": "许褚",
|
||||
"actorId": 315,
|
||||
"dataId": 2005,
|
||||
@@ -195,7 +195,7 @@
|
||||
"initial_ai": 1,
|
||||
"attribute": "1&700|2&170|3&0|4&180|5&100|6&100|7&84|8&3|9&2|10&2|11&3|12&3|13&1|14&3|15&2|16&2|17&50",
|
||||
"skill": 0,
|
||||
"seid": 0,
|
||||
"seid": "6003&",
|
||||
"star": 0,
|
||||
"spine": 0
|
||||
}
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
[
|
||||
{
|
||||
"warID": 4501,
|
||||
"warId": 4501,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 0,
|
||||
"dirction": 2,
|
||||
"x": 11,
|
||||
"x": 4,
|
||||
"y": 6,
|
||||
"var": 501,
|
||||
"lv": 0,
|
||||
@@ -20,14 +20,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4501,
|
||||
"warId": 4501,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 1,
|
||||
"relation": 0,
|
||||
"outIndex": 1,
|
||||
"dirction": 2,
|
||||
"x": 12,
|
||||
"x": 5,
|
||||
"y": 6,
|
||||
"var": 502,
|
||||
"lv": 0,
|
||||
@@ -40,15 +40,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4501,
|
||||
"warId": 4501,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 2,
|
||||
"relation": 0,
|
||||
"outIndex": 2,
|
||||
"dirction": 2,
|
||||
"x": 13,
|
||||
"y": 6,
|
||||
"x": 5,
|
||||
"y": 5,
|
||||
"var": 503,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -60,15 +60,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4501,
|
||||
"warId": 4501,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 3,
|
||||
"relation": 0,
|
||||
"outIndex": 3,
|
||||
"dirction": 2,
|
||||
"x": 11,
|
||||
"y": 5,
|
||||
"x": 4,
|
||||
"y": 4,
|
||||
"var": 504,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -80,15 +80,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4501,
|
||||
"warId": 4501,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 4,
|
||||
"relation": 0,
|
||||
"outIndex": 4,
|
||||
"dirction": 2,
|
||||
"x": 12,
|
||||
"y": 5,
|
||||
"x": 5,
|
||||
"y": 4,
|
||||
"var": 505,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -100,15 +100,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4501,
|
||||
"warId": 4501,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 5,
|
||||
"relation": 0,
|
||||
"outIndex": 5,
|
||||
"dirction": 2,
|
||||
"x": 13,
|
||||
"y": 5,
|
||||
"x": 3,
|
||||
"y": 6,
|
||||
"var": 506,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -120,15 +120,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4501,
|
||||
"warId": 4501,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 6,
|
||||
"relation": 0,
|
||||
"outIndex": 6,
|
||||
"dirction": 2,
|
||||
"x": 11,
|
||||
"y": 4,
|
||||
"x": 3,
|
||||
"y": 5,
|
||||
"var": 507,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -140,15 +140,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4501,
|
||||
"warId": 4501,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 7,
|
||||
"relation": 0,
|
||||
"outIndex": 7,
|
||||
"dirction": 2,
|
||||
"x": 12,
|
||||
"y": 4,
|
||||
"x": 4,
|
||||
"y": 5,
|
||||
"var": 508,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -160,14 +160,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4501,
|
||||
"warId": 4501,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 8,
|
||||
"relation": 0,
|
||||
"outIndex": 8,
|
||||
"dirction": 2,
|
||||
"x": 13,
|
||||
"x": 3,
|
||||
"y": 4,
|
||||
"var": 509,
|
||||
"lv": 0,
|
||||
@@ -180,14 +180,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4501,
|
||||
"warId": 4501,
|
||||
"actorName": "李典",
|
||||
"actorId": 312,
|
||||
"dataId": 2001,
|
||||
"relation": 2,
|
||||
"outIndex": 0,
|
||||
"dirction": 1,
|
||||
"x": 4,
|
||||
"x": 12,
|
||||
"y": 6,
|
||||
"var": 1501,
|
||||
"lv": 0,
|
||||
@@ -200,14 +200,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4501,
|
||||
"warId": 4501,
|
||||
"actorName": "贾诩",
|
||||
"actorId": 314,
|
||||
"dataId": 2002,
|
||||
"relation": 2,
|
||||
"outIndex": 1,
|
||||
"dirction": 1,
|
||||
"x": 5,
|
||||
"x": 13,
|
||||
"y": 6,
|
||||
"var": 1502,
|
||||
"lv": 0,
|
||||
@@ -220,14 +220,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4501,
|
||||
"warId": 4501,
|
||||
"actorName": "许褚",
|
||||
"actorId": 315,
|
||||
"dataId": 2003,
|
||||
"relation": 2,
|
||||
"outIndex": 2,
|
||||
"dirction": 1,
|
||||
"x": 5,
|
||||
"x": 13,
|
||||
"y": 5,
|
||||
"var": 1503,
|
||||
"lv": 0,
|
||||
@@ -240,14 +240,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4501,
|
||||
"warId": 4501,
|
||||
"actorName": "邓艾",
|
||||
"actorId": 309,
|
||||
"dataId": 2004,
|
||||
"relation": 2,
|
||||
"outIndex": 3,
|
||||
"dirction": 1,
|
||||
"x": 4,
|
||||
"x": 11,
|
||||
"y": 4,
|
||||
"var": 1504,
|
||||
"lv": 0,
|
||||
@@ -260,14 +260,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4501,
|
||||
"warId": 4501,
|
||||
"actorName": "曹仁",
|
||||
"actorId": 311,
|
||||
"dataId": 2005,
|
||||
"relation": 2,
|
||||
"outIndex": 4,
|
||||
"dirction": 1,
|
||||
"x": 5,
|
||||
"x": 12,
|
||||
"y": 4,
|
||||
"var": 1505,
|
||||
"lv": 0,
|
||||
@@ -280,15 +280,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4501,
|
||||
"warId": 4501,
|
||||
"actorName": "敌军",
|
||||
"actorId": 0,
|
||||
"dataId": 2006,
|
||||
"relation": 2,
|
||||
"outIndex": 5,
|
||||
"dirction": 1,
|
||||
"x": 3,
|
||||
"y": 6,
|
||||
"x": 13,
|
||||
"y": 4,
|
||||
"var": 1506,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -300,15 +300,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4501,
|
||||
"warId": 4501,
|
||||
"actorName": "敌军",
|
||||
"actorId": 0,
|
||||
"dataId": 2007,
|
||||
"relation": 2,
|
||||
"outIndex": 6,
|
||||
"dirction": 1,
|
||||
"x": 3,
|
||||
"y": 5,
|
||||
"x": 11,
|
||||
"y": 6,
|
||||
"var": 1507,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -320,14 +320,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4501,
|
||||
"warId": 4501,
|
||||
"actorName": "敌军",
|
||||
"actorId": 0,
|
||||
"dataId": 2008,
|
||||
"relation": 2,
|
||||
"outIndex": 7,
|
||||
"dirction": 1,
|
||||
"x": 4,
|
||||
"x": 11,
|
||||
"y": 5,
|
||||
"var": 1508,
|
||||
"lv": 0,
|
||||
@@ -340,15 +340,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4501,
|
||||
"warId": 4501,
|
||||
"actorName": "敌军",
|
||||
"actorId": 0,
|
||||
"dataId": 2009,
|
||||
"relation": 2,
|
||||
"outIndex": 8,
|
||||
"dirction": 1,
|
||||
"x": 3,
|
||||
"y": 4,
|
||||
"x": 12,
|
||||
"y": 5,
|
||||
"var": 1509,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
[
|
||||
{
|
||||
"warID": 4502,
|
||||
"warId": 4502,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 0,
|
||||
"dirction": 2,
|
||||
"x": 12,
|
||||
"x": 6,
|
||||
"y": 8,
|
||||
"var": 0,
|
||||
"lv": 0,
|
||||
@@ -20,14 +20,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4502,
|
||||
"warId": 4502,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 1,
|
||||
"relation": 0,
|
||||
"outIndex": 1,
|
||||
"dirction": 2,
|
||||
"x": 13,
|
||||
"x": 7,
|
||||
"y": 8,
|
||||
"var": 1,
|
||||
"lv": 0,
|
||||
@@ -40,15 +40,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4502,
|
||||
"warId": 4502,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 2,
|
||||
"relation": 0,
|
||||
"outIndex": 2,
|
||||
"dirction": 2,
|
||||
"x": 14,
|
||||
"y": 8,
|
||||
"x": 7,
|
||||
"y": 7,
|
||||
"var": 2,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -60,15 +60,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4502,
|
||||
"warId": 4502,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 3,
|
||||
"relation": 0,
|
||||
"outIndex": 3,
|
||||
"dirction": 2,
|
||||
"x": 12,
|
||||
"y": 7,
|
||||
"x": 6,
|
||||
"y": 6,
|
||||
"var": 3,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -80,15 +80,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4502,
|
||||
"warId": 4502,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 4,
|
||||
"relation": 0,
|
||||
"outIndex": 4,
|
||||
"dirction": 2,
|
||||
"x": 13,
|
||||
"y": 7,
|
||||
"x": 7,
|
||||
"y": 6,
|
||||
"var": 4,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -100,15 +100,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4502,
|
||||
"warId": 4502,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 5,
|
||||
"relation": 0,
|
||||
"outIndex": 5,
|
||||
"dirction": 2,
|
||||
"x": 14,
|
||||
"y": 7,
|
||||
"x": 5,
|
||||
"y": 8,
|
||||
"var": 5,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -120,15 +120,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4502,
|
||||
"warId": 4502,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 6,
|
||||
"relation": 0,
|
||||
"outIndex": 6,
|
||||
"dirction": 2,
|
||||
"x": 12,
|
||||
"y": 6,
|
||||
"x": 5,
|
||||
"y": 7,
|
||||
"var": 6,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -140,15 +140,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4502,
|
||||
"warId": 4502,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 7,
|
||||
"relation": 0,
|
||||
"outIndex": 7,
|
||||
"dirction": 2,
|
||||
"x": 13,
|
||||
"y": 6,
|
||||
"x": 6,
|
||||
"y": 7,
|
||||
"var": 7,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -160,14 +160,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4502,
|
||||
"warId": 4502,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 8,
|
||||
"relation": 0,
|
||||
"outIndex": 8,
|
||||
"dirction": 2,
|
||||
"x": 14,
|
||||
"x": 5,
|
||||
"y": 6,
|
||||
"var": 8,
|
||||
"lv": 0,
|
||||
@@ -180,14 +180,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4502,
|
||||
"warId": 4502,
|
||||
"actorName": "李典",
|
||||
"actorId": 312,
|
||||
"dataId": 2001,
|
||||
"relation": 2,
|
||||
"outIndex": 0,
|
||||
"dirction": 1,
|
||||
"x": 6,
|
||||
"x": 13,
|
||||
"y": 8,
|
||||
"var": 2001,
|
||||
"lv": 0,
|
||||
@@ -200,14 +200,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4502,
|
||||
"warId": 4502,
|
||||
"actorName": "贾诩",
|
||||
"actorId": 314,
|
||||
"dataId": 2002,
|
||||
"relation": 2,
|
||||
"outIndex": 1,
|
||||
"dirction": 1,
|
||||
"x": 7,
|
||||
"x": 14,
|
||||
"y": 8,
|
||||
"var": 2002,
|
||||
"lv": 0,
|
||||
@@ -220,14 +220,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4502,
|
||||
"warId": 4502,
|
||||
"actorName": "许褚",
|
||||
"actorId": 315,
|
||||
"dataId": 2003,
|
||||
"relation": 2,
|
||||
"outIndex": 2,
|
||||
"dirction": 1,
|
||||
"x": 7,
|
||||
"x": 13,
|
||||
"y": 7,
|
||||
"var": 2003,
|
||||
"lv": 0,
|
||||
@@ -240,14 +240,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4502,
|
||||
"warId": 4502,
|
||||
"actorName": "邓艾",
|
||||
"actorId": 309,
|
||||
"dataId": 2004,
|
||||
"relation": 2,
|
||||
"outIndex": 3,
|
||||
"dirction": 1,
|
||||
"x": 6,
|
||||
"x": 12,
|
||||
"y": 6,
|
||||
"var": 2004,
|
||||
"lv": 0,
|
||||
@@ -260,14 +260,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4502,
|
||||
"warId": 4502,
|
||||
"actorName": "曹仁",
|
||||
"actorId": 311,
|
||||
"dataId": 2005,
|
||||
"relation": 2,
|
||||
"outIndex": 4,
|
||||
"dirction": 1,
|
||||
"x": 7,
|
||||
"x": 13,
|
||||
"y": 6,
|
||||
"var": 2005,
|
||||
"lv": 0,
|
||||
@@ -280,14 +280,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4502,
|
||||
"warId": 4502,
|
||||
"actorName": "敌军",
|
||||
"actorId": 0,
|
||||
"dataId": 2006,
|
||||
"relation": 2,
|
||||
"outIndex": 5,
|
||||
"dirction": 1,
|
||||
"x": 5,
|
||||
"x": 12,
|
||||
"y": 8,
|
||||
"var": 2006,
|
||||
"lv": 0,
|
||||
@@ -300,14 +300,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4502,
|
||||
"warId": 4502,
|
||||
"actorName": "敌军",
|
||||
"actorId": 0,
|
||||
"dataId": 2007,
|
||||
"relation": 2,
|
||||
"outIndex": 6,
|
||||
"dirction": 1,
|
||||
"x": 5,
|
||||
"x": 12,
|
||||
"y": 7,
|
||||
"var": 2007,
|
||||
"lv": 0,
|
||||
@@ -320,14 +320,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4502,
|
||||
"warId": 4502,
|
||||
"actorName": "敌军",
|
||||
"actorId": 0,
|
||||
"dataId": 2008,
|
||||
"relation": 2,
|
||||
"outIndex": 7,
|
||||
"dirction": 1,
|
||||
"x": 6,
|
||||
"x": 14,
|
||||
"y": 7,
|
||||
"var": 2008,
|
||||
"lv": 0,
|
||||
@@ -340,14 +340,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4502,
|
||||
"warId": 4502,
|
||||
"actorName": "敌军",
|
||||
"actorId": 0,
|
||||
"dataId": 2009,
|
||||
"relation": 2,
|
||||
"outIndex": 8,
|
||||
"dirction": 1,
|
||||
"x": 5,
|
||||
"x": 14,
|
||||
"y": 6,
|
||||
"var": 2009,
|
||||
"lv": 0,
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
[
|
||||
{
|
||||
"warID": 4503,
|
||||
"warId": 4503,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 0,
|
||||
"dirction": 2,
|
||||
"x": 11,
|
||||
"x": 2,
|
||||
"y": 6,
|
||||
"var": 0,
|
||||
"lv": 0,
|
||||
@@ -20,14 +20,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4503,
|
||||
"warId": 4503,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 1,
|
||||
"relation": 0,
|
||||
"outIndex": 1,
|
||||
"dirction": 2,
|
||||
"x": 12,
|
||||
"x": 3,
|
||||
"y": 6,
|
||||
"var": 1,
|
||||
"lv": 0,
|
||||
@@ -40,14 +40,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4503,
|
||||
"warId": 4503,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 2,
|
||||
"relation": 0,
|
||||
"outIndex": 2,
|
||||
"dirction": 2,
|
||||
"x": 13,
|
||||
"x": 4,
|
||||
"y": 6,
|
||||
"var": 2,
|
||||
"lv": 0,
|
||||
@@ -60,14 +60,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4503,
|
||||
"warId": 4503,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 3,
|
||||
"relation": 0,
|
||||
"outIndex": 3,
|
||||
"dirction": 2,
|
||||
"x": 11,
|
||||
"x": 2,
|
||||
"y": 5,
|
||||
"var": 3,
|
||||
"lv": 0,
|
||||
@@ -80,14 +80,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4503,
|
||||
"warId": 4503,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 4,
|
||||
"relation": 0,
|
||||
"outIndex": 4,
|
||||
"dirction": 2,
|
||||
"x": 12,
|
||||
"x": 3,
|
||||
"y": 5,
|
||||
"var": 4,
|
||||
"lv": 0,
|
||||
@@ -100,14 +100,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4503,
|
||||
"warId": 4503,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 5,
|
||||
"relation": 0,
|
||||
"outIndex": 5,
|
||||
"dirction": 2,
|
||||
"x": 13,
|
||||
"x": 4,
|
||||
"y": 5,
|
||||
"var": 5,
|
||||
"lv": 0,
|
||||
@@ -120,14 +120,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4503,
|
||||
"warId": 4503,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 6,
|
||||
"relation": 0,
|
||||
"outIndex": 6,
|
||||
"dirction": 2,
|
||||
"x": 11,
|
||||
"x": 2,
|
||||
"y": 4,
|
||||
"var": 6,
|
||||
"lv": 0,
|
||||
@@ -140,14 +140,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4503,
|
||||
"warId": 4503,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 7,
|
||||
"relation": 0,
|
||||
"outIndex": 7,
|
||||
"dirction": 2,
|
||||
"x": 12,
|
||||
"x": 3,
|
||||
"y": 4,
|
||||
"var": 7,
|
||||
"lv": 0,
|
||||
@@ -160,14 +160,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4503,
|
||||
"warId": 4503,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 8,
|
||||
"relation": 0,
|
||||
"outIndex": 8,
|
||||
"dirction": 2,
|
||||
"x": 13,
|
||||
"x": 4,
|
||||
"y": 4,
|
||||
"var": 8,
|
||||
"lv": 0,
|
||||
@@ -180,14 +180,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4503,
|
||||
"warId": 4503,
|
||||
"actorName": "李典",
|
||||
"actorId": 312,
|
||||
"dataId": 2001,
|
||||
"relation": 2,
|
||||
"outIndex": 0,
|
||||
"dirction": 1,
|
||||
"x": 2,
|
||||
"x": 11,
|
||||
"y": 6,
|
||||
"var": 2001,
|
||||
"lv": 0,
|
||||
@@ -200,14 +200,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4503,
|
||||
"warId": 4503,
|
||||
"actorName": "贾诩",
|
||||
"actorId": 314,
|
||||
"dataId": 2002,
|
||||
"relation": 2,
|
||||
"outIndex": 1,
|
||||
"dirction": 1,
|
||||
"x": 3,
|
||||
"x": 12,
|
||||
"y": 6,
|
||||
"var": 2002,
|
||||
"lv": 0,
|
||||
@@ -220,14 +220,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4503,
|
||||
"warId": 4503,
|
||||
"actorName": "许褚",
|
||||
"actorId": 315,
|
||||
"dataId": 2003,
|
||||
"relation": 2,
|
||||
"outIndex": 2,
|
||||
"dirction": 1,
|
||||
"x": 4,
|
||||
"x": 13,
|
||||
"y": 6,
|
||||
"var": 2003,
|
||||
"lv": 0,
|
||||
@@ -240,14 +240,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4503,
|
||||
"warId": 4503,
|
||||
"actorName": "邓艾",
|
||||
"actorId": 309,
|
||||
"dataId": 2004,
|
||||
"relation": 2,
|
||||
"outIndex": 3,
|
||||
"dirction": 1,
|
||||
"x": 2,
|
||||
"x": 11,
|
||||
"y": 5,
|
||||
"var": 2004,
|
||||
"lv": 0,
|
||||
@@ -260,14 +260,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4503,
|
||||
"warId": 4503,
|
||||
"actorName": "曹仁",
|
||||
"actorId": 311,
|
||||
"dataId": 2005,
|
||||
"relation": 2,
|
||||
"outIndex": 4,
|
||||
"dirction": 1,
|
||||
"x": 3,
|
||||
"x": 12,
|
||||
"y": 5,
|
||||
"var": 2005,
|
||||
"lv": 0,
|
||||
@@ -280,14 +280,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4503,
|
||||
"warId": 4503,
|
||||
"actorName": "敌军",
|
||||
"actorId": 0,
|
||||
"dataId": 2006,
|
||||
"relation": 2,
|
||||
"outIndex": 5,
|
||||
"dirction": 1,
|
||||
"x": 4,
|
||||
"x": 13,
|
||||
"y": 5,
|
||||
"var": 2006,
|
||||
"lv": 0,
|
||||
@@ -300,14 +300,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4503,
|
||||
"warId": 4503,
|
||||
"actorName": "敌军",
|
||||
"actorId": 0,
|
||||
"dataId": 2007,
|
||||
"relation": 2,
|
||||
"outIndex": 6,
|
||||
"dirction": 1,
|
||||
"x": 2,
|
||||
"x": 11,
|
||||
"y": 4,
|
||||
"var": 2007,
|
||||
"lv": 0,
|
||||
@@ -320,14 +320,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4503,
|
||||
"warId": 4503,
|
||||
"actorName": "敌军",
|
||||
"actorId": 0,
|
||||
"dataId": 2008,
|
||||
"relation": 2,
|
||||
"outIndex": 7,
|
||||
"dirction": 1,
|
||||
"x": 3,
|
||||
"x": 12,
|
||||
"y": 4,
|
||||
"var": 2008,
|
||||
"lv": 0,
|
||||
@@ -340,14 +340,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4503,
|
||||
"warId": 4503,
|
||||
"actorName": "敌军",
|
||||
"actorId": 0,
|
||||
"dataId": 2009,
|
||||
"relation": 2,
|
||||
"outIndex": 8,
|
||||
"dirction": 1,
|
||||
"x": 4,
|
||||
"x": 13,
|
||||
"y": 4,
|
||||
"var": 2009,
|
||||
"lv": 0,
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
[
|
||||
{
|
||||
"warID": 4504,
|
||||
"warId": 4504,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 0,
|
||||
"dirction": 2,
|
||||
"x": 12,
|
||||
"x": 4,
|
||||
"y": 7,
|
||||
"var": 0,
|
||||
"lv": 0,
|
||||
@@ -20,14 +20,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4504,
|
||||
"warId": 4504,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 1,
|
||||
"relation": 0,
|
||||
"outIndex": 1,
|
||||
"dirction": 2,
|
||||
"x": 13,
|
||||
"x": 5,
|
||||
"y": 7,
|
||||
"var": 1,
|
||||
"lv": 0,
|
||||
@@ -40,15 +40,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4504,
|
||||
"warId": 4504,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 2,
|
||||
"relation": 0,
|
||||
"outIndex": 2,
|
||||
"dirction": 2,
|
||||
"x": 14,
|
||||
"y": 7,
|
||||
"x": 5,
|
||||
"y": 6,
|
||||
"var": 2,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -60,15 +60,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4504,
|
||||
"warId": 4504,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 3,
|
||||
"relation": 0,
|
||||
"outIndex": 3,
|
||||
"dirction": 2,
|
||||
"x": 12,
|
||||
"y": 6,
|
||||
"x": 4,
|
||||
"y": 5,
|
||||
"var": 3,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -80,15 +80,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4504,
|
||||
"warId": 4504,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 4,
|
||||
"relation": 0,
|
||||
"outIndex": 4,
|
||||
"dirction": 2,
|
||||
"x": 13,
|
||||
"y": 6,
|
||||
"x": 5,
|
||||
"y": 5,
|
||||
"var": 4,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -100,14 +100,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4504,
|
||||
"warId": 4504,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 5,
|
||||
"relation": 0,
|
||||
"outIndex": 5,
|
||||
"dirction": 2,
|
||||
"x": 14,
|
||||
"x": 3,
|
||||
"y": 6,
|
||||
"var": 5,
|
||||
"lv": 0,
|
||||
@@ -120,15 +120,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4504,
|
||||
"warId": 4504,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 6,
|
||||
"relation": 0,
|
||||
"outIndex": 6,
|
||||
"dirction": 2,
|
||||
"x": 12,
|
||||
"y": 5,
|
||||
"x": 4,
|
||||
"y": 6,
|
||||
"var": 6,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -140,15 +140,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4504,
|
||||
"warId": 4504,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 7,
|
||||
"relation": 0,
|
||||
"outIndex": 7,
|
||||
"dirction": 2,
|
||||
"x": 13,
|
||||
"y": 5,
|
||||
"x": 3,
|
||||
"y": 7,
|
||||
"var": 7,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -160,14 +160,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4504,
|
||||
"warId": 4504,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 8,
|
||||
"relation": 0,
|
||||
"outIndex": 8,
|
||||
"dirction": 2,
|
||||
"x": 14,
|
||||
"x": 3,
|
||||
"y": 5,
|
||||
"var": 8,
|
||||
"lv": 0,
|
||||
@@ -180,14 +180,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4504,
|
||||
"warId": 4504,
|
||||
"actorName": "李典",
|
||||
"actorId": 312,
|
||||
"dataId": 2001,
|
||||
"relation": 2,
|
||||
"outIndex": 0,
|
||||
"dirction": 1,
|
||||
"x": 4,
|
||||
"x": 13,
|
||||
"y": 7,
|
||||
"var": 2001,
|
||||
"lv": 0,
|
||||
@@ -200,14 +200,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4504,
|
||||
"warId": 4504,
|
||||
"actorName": "贾诩",
|
||||
"actorId": 314,
|
||||
"dataId": 2002,
|
||||
"relation": 2,
|
||||
"outIndex": 1,
|
||||
"dirction": 1,
|
||||
"x": 5,
|
||||
"x": 14,
|
||||
"y": 7,
|
||||
"var": 2002,
|
||||
"lv": 0,
|
||||
@@ -220,14 +220,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4504,
|
||||
"warId": 4504,
|
||||
"actorName": "许褚",
|
||||
"actorId": 315,
|
||||
"dataId": 2003,
|
||||
"relation": 2,
|
||||
"outIndex": 2,
|
||||
"dirction": 1,
|
||||
"x": 5,
|
||||
"x": 14,
|
||||
"y": 6,
|
||||
"var": 2003,
|
||||
"lv": 0,
|
||||
@@ -240,14 +240,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4504,
|
||||
"warId": 4504,
|
||||
"actorName": "邓艾",
|
||||
"actorId": 309,
|
||||
"dataId": 2004,
|
||||
"relation": 2,
|
||||
"outIndex": 3,
|
||||
"dirction": 1,
|
||||
"x": 4,
|
||||
"x": 13,
|
||||
"y": 5,
|
||||
"var": 2004,
|
||||
"lv": 0,
|
||||
@@ -260,14 +260,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4504,
|
||||
"warId": 4504,
|
||||
"actorName": "曹仁",
|
||||
"actorId": 311,
|
||||
"dataId": 2005,
|
||||
"relation": 2,
|
||||
"outIndex": 4,
|
||||
"dirction": 1,
|
||||
"x": 5,
|
||||
"x": 12,
|
||||
"y": 5,
|
||||
"var": 2005,
|
||||
"lv": 0,
|
||||
@@ -280,15 +280,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4504,
|
||||
"warId": 4504,
|
||||
"actorName": "敌军",
|
||||
"actorId": 0,
|
||||
"dataId": 2006,
|
||||
"relation": 2,
|
||||
"outIndex": 5,
|
||||
"dirction": 1,
|
||||
"x": 3,
|
||||
"y": 6,
|
||||
"x": 12,
|
||||
"y": 7,
|
||||
"var": 2006,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -300,14 +300,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4504,
|
||||
"warId": 4504,
|
||||
"actorName": "敌军",
|
||||
"actorId": 0,
|
||||
"dataId": 2007,
|
||||
"relation": 2,
|
||||
"outIndex": 6,
|
||||
"dirction": 1,
|
||||
"x": 4,
|
||||
"x": 12,
|
||||
"y": 6,
|
||||
"var": 2007,
|
||||
"lv": 0,
|
||||
@@ -320,15 +320,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4504,
|
||||
"warId": 4504,
|
||||
"actorName": "敌军",
|
||||
"actorId": 0,
|
||||
"dataId": 2008,
|
||||
"relation": 2,
|
||||
"outIndex": 7,
|
||||
"dirction": 1,
|
||||
"x": 3,
|
||||
"y": 7,
|
||||
"x": 13,
|
||||
"y": 6,
|
||||
"var": 2008,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -340,14 +340,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4504,
|
||||
"warId": 4504,
|
||||
"actorName": "敌军",
|
||||
"actorId": 0,
|
||||
"dataId": 2009,
|
||||
"relation": 2,
|
||||
"outIndex": 8,
|
||||
"dirction": 1,
|
||||
"x": 3,
|
||||
"x": 14,
|
||||
"y": 5,
|
||||
"var": 2009,
|
||||
"lv": 0,
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
[
|
||||
{
|
||||
"warID": 4505,
|
||||
"warId": 4505,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 0,
|
||||
"dirction": 2,
|
||||
"x": 13,
|
||||
"x": 3,
|
||||
"y": 6,
|
||||
"var": 0,
|
||||
"lv": 0,
|
||||
@@ -20,14 +20,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4505,
|
||||
"warId": 4505,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 1,
|
||||
"relation": 0,
|
||||
"outIndex": 1,
|
||||
"dirction": 2,
|
||||
"x": 14,
|
||||
"x": 4,
|
||||
"y": 6,
|
||||
"var": 1,
|
||||
"lv": 0,
|
||||
@@ -40,15 +40,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4505,
|
||||
"warId": 4505,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 2,
|
||||
"relation": 0,
|
||||
"outIndex": 2,
|
||||
"dirction": 2,
|
||||
"x": 15,
|
||||
"y": 6,
|
||||
"x": 4,
|
||||
"y": 5,
|
||||
"var": 2,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -60,15 +60,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4505,
|
||||
"warId": 4505,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 3,
|
||||
"relation": 0,
|
||||
"outIndex": 3,
|
||||
"dirction": 2,
|
||||
"x": 13,
|
||||
"y": 5,
|
||||
"x": 3,
|
||||
"y": 4,
|
||||
"var": 3,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -80,15 +80,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4505,
|
||||
"warId": 4505,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 4,
|
||||
"relation": 0,
|
||||
"outIndex": 4,
|
||||
"dirction": 2,
|
||||
"x": 14,
|
||||
"y": 5,
|
||||
"x": 4,
|
||||
"y": 4,
|
||||
"var": 4,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -100,15 +100,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4505,
|
||||
"warId": 4505,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 5,
|
||||
"relation": 0,
|
||||
"outIndex": 5,
|
||||
"dirction": 2,
|
||||
"x": 15,
|
||||
"y": 5,
|
||||
"x": 2,
|
||||
"y": 6,
|
||||
"var": 5,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -120,15 +120,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4505,
|
||||
"warId": 4505,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 6,
|
||||
"relation": 0,
|
||||
"outIndex": 6,
|
||||
"dirction": 2,
|
||||
"x": 13,
|
||||
"y": 4,
|
||||
"x": 2,
|
||||
"y": 5,
|
||||
"var": 6,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -140,15 +140,15 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4505,
|
||||
"warId": 4505,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 7,
|
||||
"relation": 0,
|
||||
"outIndex": 7,
|
||||
"dirction": 2,
|
||||
"x": 14,
|
||||
"y": 4,
|
||||
"x": 3,
|
||||
"y": 5,
|
||||
"var": 7,
|
||||
"lv": 0,
|
||||
"hide": 0,
|
||||
@@ -160,14 +160,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4505,
|
||||
"warId": 4505,
|
||||
"actorName": "我军",
|
||||
"actorId": 0,
|
||||
"dataId": 8,
|
||||
"relation": 0,
|
||||
"outIndex": 8,
|
||||
"dirction": 2,
|
||||
"x": 15,
|
||||
"x": 2,
|
||||
"y": 4,
|
||||
"var": 8,
|
||||
"lv": 0,
|
||||
@@ -180,14 +180,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4505,
|
||||
"warId": 4505,
|
||||
"actorName": "李典",
|
||||
"actorId": 312,
|
||||
"dataId": 2001,
|
||||
"relation": 2,
|
||||
"outIndex": 0,
|
||||
"dirction": 1,
|
||||
"x": 3,
|
||||
"x": 14,
|
||||
"y": 6,
|
||||
"var": 2001,
|
||||
"lv": 0,
|
||||
@@ -200,14 +200,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4505,
|
||||
"warId": 4505,
|
||||
"actorName": "贾诩",
|
||||
"actorId": 314,
|
||||
"dataId": 2002,
|
||||
"relation": 2,
|
||||
"outIndex": 1,
|
||||
"dirction": 1,
|
||||
"x": 4,
|
||||
"x": 15,
|
||||
"y": 6,
|
||||
"var": 2002,
|
||||
"lv": 0,
|
||||
@@ -220,14 +220,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4505,
|
||||
"warId": 4505,
|
||||
"actorName": "许褚",
|
||||
"actorId": 315,
|
||||
"dataId": 2003,
|
||||
"relation": 2,
|
||||
"outIndex": 2,
|
||||
"dirction": 1,
|
||||
"x": 4,
|
||||
"x": 15,
|
||||
"y": 5,
|
||||
"var": 2003,
|
||||
"lv": 0,
|
||||
@@ -240,14 +240,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4505,
|
||||
"warId": 4505,
|
||||
"actorName": "邓艾",
|
||||
"actorId": 309,
|
||||
"dataId": 2004,
|
||||
"relation": 2,
|
||||
"outIndex": 3,
|
||||
"dirction": 1,
|
||||
"x": 3,
|
||||
"x": 14,
|
||||
"y": 4,
|
||||
"var": 2004,
|
||||
"lv": 0,
|
||||
@@ -260,14 +260,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4505,
|
||||
"warId": 4505,
|
||||
"actorName": "曹仁",
|
||||
"actorId": 311,
|
||||
"dataId": 2005,
|
||||
"relation": 2,
|
||||
"outIndex": 4,
|
||||
"dirction": 1,
|
||||
"x": 4,
|
||||
"x": 15,
|
||||
"y": 4,
|
||||
"var": 2005,
|
||||
"lv": 0,
|
||||
@@ -280,14 +280,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4505,
|
||||
"warId": 4505,
|
||||
"actorName": "敌军",
|
||||
"actorId": 0,
|
||||
"dataId": 2006,
|
||||
"relation": 2,
|
||||
"outIndex": 5,
|
||||
"dirction": 1,
|
||||
"x": 2,
|
||||
"x": 13,
|
||||
"y": 6,
|
||||
"var": 2006,
|
||||
"lv": 0,
|
||||
@@ -300,14 +300,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4505,
|
||||
"warId": 4505,
|
||||
"actorName": "敌军",
|
||||
"actorId": 0,
|
||||
"dataId": 2007,
|
||||
"relation": 2,
|
||||
"outIndex": 6,
|
||||
"dirction": 1,
|
||||
"x": 2,
|
||||
"x": 13,
|
||||
"y": 5,
|
||||
"var": 2007,
|
||||
"lv": 0,
|
||||
@@ -320,14 +320,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4505,
|
||||
"warId": 4505,
|
||||
"actorName": "敌军",
|
||||
"actorId": 0,
|
||||
"dataId": 2008,
|
||||
"relation": 2,
|
||||
"outIndex": 7,
|
||||
"dirction": 1,
|
||||
"x": 3,
|
||||
"x": 14,
|
||||
"y": 5,
|
||||
"var": 2008,
|
||||
"lv": 0,
|
||||
@@ -340,14 +340,14 @@
|
||||
"spine": 0
|
||||
},
|
||||
{
|
||||
"warID": 4505,
|
||||
"warId": 4505,
|
||||
"actorName": "敌军",
|
||||
"actorId": 0,
|
||||
"dataId": 2009,
|
||||
"relation": 2,
|
||||
"outIndex": 8,
|
||||
"dirction": 1,
|
||||
"x": 2,
|
||||
"x": 13,
|
||||
"y": 4,
|
||||
"var": 2009,
|
||||
"lv": 0,
|
||||
|
||||
Reference in New Issue
Block a user