fix 秘境json字段
This commit is contained in:
@@ -133,6 +133,13 @@ export const EVENT_ANSWER_STATUS = {
|
||||
WRONG: 2
|
||||
};
|
||||
|
||||
export const EXPEDITION_WAR_RECORD_STATUS = {
|
||||
HIDE: -1,
|
||||
WAITING: 0,
|
||||
SUCCESS: 1,
|
||||
FAIL: 2
|
||||
};
|
||||
|
||||
export const EVENT_START_BATTLE = 101;
|
||||
|
||||
export const HANG_UP_CONSTS = {
|
||||
@@ -206,7 +213,7 @@ export const GONGSHI = {
|
||||
*/
|
||||
export const GOLD_COST_RATIO = {
|
||||
"TOWER_HANG_SPDUP": { "A": 0, "B": 50 }, // 天梯挂机加速花费
|
||||
"TPWER_TASK_REF": { "A": 0, "B": 200 }, // 天梯派遣刷新花费
|
||||
"TOWER_TASK_REF": { "A": 0, "B": 50 }, // 天梯派遣刷新花费
|
||||
"DAILY_REF_NUM": { "A": 50, "B": 0 }, // 每日购买次数花费
|
||||
"DUNGRON_BUY_NUM": { "A": 0, "B": 50 } // 秘境购买次数花费
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import BaseModel from './BaseModel';
|
||||
import { index, getModelForClass, prop } from '@typegoose/typegoose';
|
||||
import { EXPEDITION_WAR_RECORD_STATUS } from '../consts/consts';
|
||||
|
||||
class Enemies {
|
||||
@prop({ required: true })
|
||||
@@ -56,7 +57,7 @@ export default class ExpeditionWarRecord extends BaseModel {
|
||||
@prop({ required: true, default: '' })
|
||||
battleCode: string; // 关联关卡唯一值
|
||||
@prop({ required: true, default: 0 })
|
||||
battleStatus: number; // 是否通过, 0-可挑战 1-成功 2-挑战失败
|
||||
battleStatus: number; // 是否通过, -1-已生成 0-可挑战 1-成功 2-挑战失败
|
||||
@prop({ required: true, default: 0 })
|
||||
enemyFrom: number; // 敌军数据来源:1-配表的敌军队,2-玩家
|
||||
@prop({ required: true, default: '' })
|
||||
@@ -67,7 +68,7 @@ export default class ExpeditionWarRecord extends BaseModel {
|
||||
ce: number; // 敌军战力
|
||||
|
||||
public static async getRecordByCode(expeditionCode: string, lean = true) {
|
||||
const result = await ExpeditionWarRecordModel.find({ expeditionCode, battleStatus: {$gte: 0} }).select('expeditionId battleId battleCode battleStatus ce').sort({expeditionId: 1}).lean(lean);
|
||||
const result = await ExpeditionWarRecordModel.find({ expeditionCode, battleStatus: {$gte: EXPEDITION_WAR_RECORD_STATUS.WAITING} }).select('expeditionId battleId battleCode battleStatus ce').sort({expeditionId: 1}).lean(lean);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
@@ -126,6 +126,8 @@ export default class Role extends BaseModel {
|
||||
towerTaskCnt: number; // 刷新派遣任务的次数,向上累加,每天8个
|
||||
@prop({ required: false})
|
||||
towerTaskRefTime: Date; // 刷新派遣任务的时间
|
||||
@prop({ required: true, default: 0})
|
||||
towerTaskReCnt: number; // 刷新派遣任务刷新次数
|
||||
|
||||
// 奇遇事件相关
|
||||
@prop({ required: true, default: 0 })
|
||||
@@ -273,7 +275,7 @@ export default class Role extends BaseModel {
|
||||
|
||||
// 重置派遣次数
|
||||
public static async resetTowerCnt(roleId: string, curTime: Date, lean = true) {
|
||||
const role = await RoleModel.findOneAndUpdate({roleId}, {towerTaskCnt: 0, towerTaskRefTime: curTime}, {new: true}).lean(lean);
|
||||
const role = await RoleModel.findOneAndUpdate({roleId}, {towerTaskCnt: 0, towerTaskRefTime: curTime, towerTaskReCnt: 0}, {new: true}).lean(lean);
|
||||
return role;
|
||||
}
|
||||
// 刷新派遣任务次数增长
|
||||
@@ -281,6 +283,11 @@ export default class Role extends BaseModel {
|
||||
const role = await RoleModel.findOneAndUpdate({roleId}, {$inc: {towerTaskCnt: num}}, {new: true}).lean(lean);
|
||||
return role;
|
||||
}
|
||||
// 派遣任务增加刷新次数
|
||||
public static async increaseTowerRefCnt(roleId: string, num: number, lean = true) {
|
||||
const role = await RoleModel.findOneAndUpdate({roleId}, {$inc: {towerTaskReCnt: num}}, {new: true}).lean(lean);
|
||||
return role;
|
||||
}
|
||||
|
||||
// 刷新远征重置次数
|
||||
public static async increaseExpeditionResetCnt(roleId: string, needRefresh: boolean, curTime: Date, lean = true) {
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
[
|
||||
{
|
||||
"war_id": 104,
|
||||
"dispatchJsonId": 104,
|
||||
"bg_img_id": 602,
|
||||
"war_id": 5001,
|
||||
"dispatchJsonId": 5001,
|
||||
"bg_img_id": 104,
|
||||
"script_id": 0,
|
||||
"fixReward": "10205&1|17001&10|17005&2|17006&3",
|
||||
"warType": 6,
|
||||
@@ -24,9 +24,9 @@
|
||||
"iconInMap": "city&1"
|
||||
},
|
||||
{
|
||||
"war_id": 105,
|
||||
"dispatchJsonId": 105,
|
||||
"bg_img_id": 603,
|
||||
"war_id": 5002,
|
||||
"dispatchJsonId": 5002,
|
||||
"bg_img_id": 104,
|
||||
"script_id": 0,
|
||||
"fixReward": "10005&1|17002&10|17007&2|17008&3",
|
||||
"warType": 6,
|
||||
@@ -40,7 +40,7 @@
|
||||
"starInfoInUI": "1.我方无人阵亡;\r\n2.在5回合内获得胜利",
|
||||
"cost": 0,
|
||||
"recommendedPower": 10008,
|
||||
"previousGk": 104,
|
||||
"previousGk": 5001,
|
||||
"lvLimted": 0,
|
||||
"heroInUI": "2&10|1&9|1&1001",
|
||||
"detailUIBg": "dengeon1",
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
[
|
||||
{
|
||||
"war_id": 106,
|
||||
"dispatchJsonId": 106,
|
||||
"bg_img_id": 601,
|
||||
"war_id": 5501,
|
||||
"dispatchJsonId": 5501,
|
||||
"bg_img_id": 104,
|
||||
"script_id": 0,
|
||||
"fixReward": "10205&1|17001&10|17005&2|17006&3",
|
||||
"warType": 13,
|
||||
@@ -16,7 +16,7 @@
|
||||
"starInfoInUI": "1.我方无人阵亡;\r\n2.在5回合内获得胜利",
|
||||
"cost": 0,
|
||||
"recommendedPower": 10008,
|
||||
"previousGk": 105,
|
||||
"previousGk": 5002,
|
||||
"lvLimted_1": 0,
|
||||
"heroInUI": "2&10|1&9|1&1001",
|
||||
"detailUIBg": "dengeon1",
|
||||
@@ -24,9 +24,9 @@
|
||||
"iconInMap": "city&1"
|
||||
},
|
||||
{
|
||||
"war_id": 107,
|
||||
"dispatchJsonId": 107,
|
||||
"bg_img_id": 107,
|
||||
"war_id": 5502,
|
||||
"dispatchJsonId": 5501,
|
||||
"bg_img_id": 104,
|
||||
"script_id": 0,
|
||||
"fixReward": "10005&1|17002&10|17007&2|17008&3",
|
||||
"warType": 13,
|
||||
@@ -40,7 +40,7 @@
|
||||
"starInfoInUI": "1.我方无人阵亡;\r\n2.在5回合内获得胜利",
|
||||
"cost": 0,
|
||||
"recommendedPower": 10008,
|
||||
"previousGk": 106,
|
||||
"previousGk": 5503,
|
||||
"lvLimted_1": 0,
|
||||
"heroInUI": "2&10|1&9|1&1001",
|
||||
"detailUIBg": "dengeon1",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
{
|
||||
"warID": 4001,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 0,
|
||||
@@ -22,7 +22,7 @@
|
||||
{
|
||||
"warID": 4001,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 1,
|
||||
@@ -42,7 +42,7 @@
|
||||
{
|
||||
"warID": 4001,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 2,
|
||||
@@ -62,7 +62,7 @@
|
||||
{
|
||||
"warID": 4001,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 3,
|
||||
@@ -82,7 +82,7 @@
|
||||
{
|
||||
"warID": 4001,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 4,
|
||||
@@ -102,7 +102,7 @@
|
||||
{
|
||||
"warID": 4001,
|
||||
"actorName": "李典",
|
||||
"actorID": 312,
|
||||
"actorId": 312,
|
||||
"dataId": 2001,
|
||||
"relation": 2,
|
||||
"outIndex": 0,
|
||||
@@ -122,7 +122,7 @@
|
||||
{
|
||||
"warID": 4001,
|
||||
"actorName": "贾诩",
|
||||
"actorID": 314,
|
||||
"actorId": 314,
|
||||
"dataId": 2002,
|
||||
"relation": 2,
|
||||
"outIndex": 1,
|
||||
@@ -142,7 +142,7 @@
|
||||
{
|
||||
"warID": 4001,
|
||||
"actorName": "许褚",
|
||||
"actorID": 315,
|
||||
"actorId": 315,
|
||||
"dataId": 2003,
|
||||
"relation": 2,
|
||||
"outIndex": 2,
|
||||
@@ -162,7 +162,7 @@
|
||||
{
|
||||
"warID": 4001,
|
||||
"actorName": "邓艾",
|
||||
"actorID": 309,
|
||||
"actorId": 309,
|
||||
"dataId": 2004,
|
||||
"relation": 2,
|
||||
"outIndex": 3,
|
||||
@@ -182,7 +182,7 @@
|
||||
{
|
||||
"warID": 4001,
|
||||
"actorName": "曹仁",
|
||||
"actorID": 311,
|
||||
"actorId": 311,
|
||||
"dataId": 2005,
|
||||
"relation": 2,
|
||||
"outIndex": 4,
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
{
|
||||
"warID": 4002,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 0,
|
||||
@@ -21,7 +21,7 @@
|
||||
{
|
||||
"warID": 4002,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 1,
|
||||
@@ -40,7 +40,7 @@
|
||||
{
|
||||
"warID": 4002,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 2,
|
||||
@@ -59,7 +59,7 @@
|
||||
{
|
||||
"warID": 4002,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 3,
|
||||
@@ -78,7 +78,7 @@
|
||||
{
|
||||
"warID": 4002,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 4,
|
||||
@@ -97,7 +97,7 @@
|
||||
{
|
||||
"warID": 4002,
|
||||
"actorName": "贾诩",
|
||||
"actorID": 314,
|
||||
"actorId": 314,
|
||||
"dataId": 2001,
|
||||
"relation": 2,
|
||||
"outIndex": 0,
|
||||
@@ -116,7 +116,7 @@
|
||||
{
|
||||
"warID": 4002,
|
||||
"actorName": "曹仁",
|
||||
"actorID": 311,
|
||||
"actorId": 311,
|
||||
"dataId": 2002,
|
||||
"relation": 2,
|
||||
"outIndex": 1,
|
||||
@@ -135,7 +135,7 @@
|
||||
{
|
||||
"warID": 4002,
|
||||
"actorName": "邓艾",
|
||||
"actorID": 309,
|
||||
"actorId": 309,
|
||||
"dataId": 2003,
|
||||
"relation": 2,
|
||||
"outIndex": 2,
|
||||
@@ -154,7 +154,7 @@
|
||||
{
|
||||
"warID": 4002,
|
||||
"actorName": "许褚",
|
||||
"actorID": 315,
|
||||
"actorId": 315,
|
||||
"dataId": 2004,
|
||||
"relation": 2,
|
||||
"outIndex": 3,
|
||||
@@ -173,7 +173,7 @@
|
||||
{
|
||||
"warID": 4002,
|
||||
"actorName": "李典",
|
||||
"actorID": 312,
|
||||
"actorId": 312,
|
||||
"dataId": 2005,
|
||||
"relation": 2,
|
||||
"outIndex": 4,
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
{
|
||||
"warID": 4003,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 0,
|
||||
@@ -21,7 +21,7 @@
|
||||
{
|
||||
"warID": 4003,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 1,
|
||||
@@ -40,7 +40,7 @@
|
||||
{
|
||||
"warID": 4003,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 2,
|
||||
@@ -59,7 +59,7 @@
|
||||
{
|
||||
"warID": 4003,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 3,
|
||||
@@ -78,7 +78,7 @@
|
||||
{
|
||||
"warID": 4003,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 4,
|
||||
@@ -97,7 +97,7 @@
|
||||
{
|
||||
"warID": 4003,
|
||||
"actorName": "曹仁",
|
||||
"actorID": 311,
|
||||
"actorId": 311,
|
||||
"dataId": 2001,
|
||||
"relation": 2,
|
||||
"outIndex": 0,
|
||||
@@ -116,7 +116,7 @@
|
||||
{
|
||||
"warID": 4003,
|
||||
"actorName": "许褚",
|
||||
"actorID": 315,
|
||||
"actorId": 315,
|
||||
"dataId": 2002,
|
||||
"relation": 2,
|
||||
"outIndex": 1,
|
||||
@@ -135,7 +135,7 @@
|
||||
{
|
||||
"warID": 4003,
|
||||
"actorName": "贾诩",
|
||||
"actorID": 314,
|
||||
"actorId": 314,
|
||||
"dataId": 2003,
|
||||
"relation": 2,
|
||||
"outIndex": 2,
|
||||
@@ -154,7 +154,7 @@
|
||||
{
|
||||
"warID": 4003,
|
||||
"actorName": "邓艾",
|
||||
"actorID": 309,
|
||||
"actorId": 309,
|
||||
"dataId": 2004,
|
||||
"relation": 2,
|
||||
"outIndex": 3,
|
||||
@@ -173,7 +173,7 @@
|
||||
{
|
||||
"warID": 4003,
|
||||
"actorName": "李典",
|
||||
"actorID": 312,
|
||||
"actorId": 312,
|
||||
"dataId": 2005,
|
||||
"relation": 2,
|
||||
"outIndex": 4,
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
{
|
||||
"warID": 4004,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 0,
|
||||
@@ -21,7 +21,7 @@
|
||||
{
|
||||
"warID": 4004,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 1,
|
||||
@@ -40,7 +40,7 @@
|
||||
{
|
||||
"warID": 4004,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 2,
|
||||
@@ -59,7 +59,7 @@
|
||||
{
|
||||
"warID": 4004,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 3,
|
||||
@@ -78,7 +78,7 @@
|
||||
{
|
||||
"warID": 4004,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 4,
|
||||
@@ -97,7 +97,7 @@
|
||||
{
|
||||
"warID": 4004,
|
||||
"actorName": "贾诩",
|
||||
"actorID": 314,
|
||||
"actorId": 314,
|
||||
"dataId": 2001,
|
||||
"relation": 2,
|
||||
"outIndex": 0,
|
||||
@@ -116,7 +116,7 @@
|
||||
{
|
||||
"warID": 4004,
|
||||
"actorName": "曹仁",
|
||||
"actorID": 311,
|
||||
"actorId": 311,
|
||||
"dataId": 2002,
|
||||
"relation": 2,
|
||||
"outIndex": 1,
|
||||
@@ -135,7 +135,7 @@
|
||||
{
|
||||
"warID": 4004,
|
||||
"actorName": "许褚",
|
||||
"actorID": 315,
|
||||
"actorId": 315,
|
||||
"dataId": 2003,
|
||||
"relation": 2,
|
||||
"outIndex": 2,
|
||||
@@ -154,7 +154,7 @@
|
||||
{
|
||||
"warID": 4004,
|
||||
"actorName": "邓艾",
|
||||
"actorID": 309,
|
||||
"actorId": 309,
|
||||
"dataId": 2004,
|
||||
"relation": 2,
|
||||
"outIndex": 3,
|
||||
@@ -173,7 +173,7 @@
|
||||
{
|
||||
"warID": 4004,
|
||||
"actorName": "李典",
|
||||
"actorID": 312,
|
||||
"actorId": 312,
|
||||
"dataId": 2005,
|
||||
"relation": 2,
|
||||
"outIndex": 4,
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
{
|
||||
"warID": 4005,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 0,
|
||||
@@ -21,7 +21,7 @@
|
||||
{
|
||||
"warID": 4005,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 1,
|
||||
@@ -40,7 +40,7 @@
|
||||
{
|
||||
"warID": 4005,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 2,
|
||||
@@ -59,7 +59,7 @@
|
||||
{
|
||||
"warID": 4005,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 3,
|
||||
@@ -78,7 +78,7 @@
|
||||
{
|
||||
"warID": 4005,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 4,
|
||||
@@ -97,7 +97,7 @@
|
||||
{
|
||||
"warID": 4005,
|
||||
"actorName": "贾诩",
|
||||
"actorID": 314,
|
||||
"actorId": 314,
|
||||
"dataId": 2001,
|
||||
"relation": 2,
|
||||
"outIndex": 0,
|
||||
@@ -116,7 +116,7 @@
|
||||
{
|
||||
"warID": 4005,
|
||||
"actorName": "曹仁",
|
||||
"actorID": 311,
|
||||
"actorId": 311,
|
||||
"dataId": 2002,
|
||||
"relation": 2,
|
||||
"outIndex": 1,
|
||||
@@ -135,7 +135,7 @@
|
||||
{
|
||||
"warID": 4005,
|
||||
"actorName": "许褚",
|
||||
"actorID": 315,
|
||||
"actorId": 315,
|
||||
"dataId": 2003,
|
||||
"relation": 2,
|
||||
"outIndex": 2,
|
||||
@@ -154,7 +154,7 @@
|
||||
{
|
||||
"warID": 4005,
|
||||
"actorName": "邓艾",
|
||||
"actorID": 309,
|
||||
"actorId": 309,
|
||||
"dataId": 2004,
|
||||
"relation": 2,
|
||||
"outIndex": 3,
|
||||
@@ -173,7 +173,7 @@
|
||||
{
|
||||
"warID": 4005,
|
||||
"actorName": "李典",
|
||||
"actorID": 312,
|
||||
"actorId": 312,
|
||||
"dataId": 2005,
|
||||
"relation": 2,
|
||||
"outIndex": 4,
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
{
|
||||
"warID": 4006,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 0,
|
||||
@@ -21,7 +21,7 @@
|
||||
{
|
||||
"warID": 4006,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 1,
|
||||
@@ -40,7 +40,7 @@
|
||||
{
|
||||
"warID": 4006,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 2,
|
||||
@@ -59,7 +59,7 @@
|
||||
{
|
||||
"warID": 4006,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 3,
|
||||
@@ -78,7 +78,7 @@
|
||||
{
|
||||
"warID": 4006,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 4,
|
||||
@@ -97,7 +97,7 @@
|
||||
{
|
||||
"warID": 4006,
|
||||
"actorName": "贾诩",
|
||||
"actorID": 314,
|
||||
"actorId": 314,
|
||||
"dataId": 2001,
|
||||
"relation": 2,
|
||||
"outIndex": 0,
|
||||
@@ -116,7 +116,7 @@
|
||||
{
|
||||
"warID": 4006,
|
||||
"actorName": "曹仁",
|
||||
"actorID": 311,
|
||||
"actorId": 311,
|
||||
"dataId": 2002,
|
||||
"relation": 2,
|
||||
"outIndex": 1,
|
||||
@@ -135,7 +135,7 @@
|
||||
{
|
||||
"warID": 4006,
|
||||
"actorName": "许褚",
|
||||
"actorID": 315,
|
||||
"actorId": 315,
|
||||
"dataId": 2003,
|
||||
"relation": 2,
|
||||
"outIndex": 2,
|
||||
@@ -154,7 +154,7 @@
|
||||
{
|
||||
"warID": 4006,
|
||||
"actorName": "邓艾",
|
||||
"actorID": 309,
|
||||
"actorId": 309,
|
||||
"dataId": 2004,
|
||||
"relation": 2,
|
||||
"outIndex": 3,
|
||||
@@ -173,7 +173,7 @@
|
||||
{
|
||||
"warID": 4006,
|
||||
"actorName": "李典",
|
||||
"actorID": 312,
|
||||
"actorId": 312,
|
||||
"dataId": 2005,
|
||||
"relation": 2,
|
||||
"outIndex": 4,
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
{
|
||||
"warID": 4007,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 0,
|
||||
@@ -21,7 +21,7 @@
|
||||
{
|
||||
"warID": 4007,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 1,
|
||||
@@ -40,7 +40,7 @@
|
||||
{
|
||||
"warID": 4007,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 2,
|
||||
@@ -59,7 +59,7 @@
|
||||
{
|
||||
"warID": 4007,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 3,
|
||||
@@ -78,7 +78,7 @@
|
||||
{
|
||||
"warID": 4007,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 4,
|
||||
@@ -97,7 +97,7 @@
|
||||
{
|
||||
"warID": 4007,
|
||||
"actorName": "邓艾",
|
||||
"actorID": 309,
|
||||
"actorId": 309,
|
||||
"dataId": 2001,
|
||||
"relation": 2,
|
||||
"outIndex": 0,
|
||||
@@ -116,7 +116,7 @@
|
||||
{
|
||||
"warID": 4007,
|
||||
"actorName": "许褚",
|
||||
"actorID": 315,
|
||||
"actorId": 315,
|
||||
"dataId": 2002,
|
||||
"relation": 2,
|
||||
"outIndex": 1,
|
||||
@@ -135,7 +135,7 @@
|
||||
{
|
||||
"warID": 4007,
|
||||
"actorName": "李典",
|
||||
"actorID": 312,
|
||||
"actorId": 312,
|
||||
"dataId": 2003,
|
||||
"relation": 2,
|
||||
"outIndex": 2,
|
||||
@@ -154,7 +154,7 @@
|
||||
{
|
||||
"warID": 4007,
|
||||
"actorName": "曹仁",
|
||||
"actorID": 311,
|
||||
"actorId": 311,
|
||||
"dataId": 2004,
|
||||
"relation": 2,
|
||||
"outIndex": 3,
|
||||
@@ -173,7 +173,7 @@
|
||||
{
|
||||
"warID": 4007,
|
||||
"actorName": "贾诩",
|
||||
"actorID": 314,
|
||||
"actorId": 314,
|
||||
"dataId": 2005,
|
||||
"relation": 2,
|
||||
"outIndex": 4,
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
{
|
||||
"warID": 4008,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 0,
|
||||
@@ -21,7 +21,7 @@
|
||||
{
|
||||
"warID": 4008,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 1,
|
||||
@@ -40,7 +40,7 @@
|
||||
{
|
||||
"warID": 4008,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 2,
|
||||
@@ -59,7 +59,7 @@
|
||||
{
|
||||
"warID": 4008,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 3,
|
||||
@@ -78,7 +78,7 @@
|
||||
{
|
||||
"warID": 4008,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 4,
|
||||
@@ -97,7 +97,7 @@
|
||||
{
|
||||
"warID": 4008,
|
||||
"actorName": "曹仁",
|
||||
"actorID": 311,
|
||||
"actorId": 311,
|
||||
"dataId": 2001,
|
||||
"relation": 2,
|
||||
"outIndex": 0,
|
||||
@@ -116,7 +116,7 @@
|
||||
{
|
||||
"warID": 4008,
|
||||
"actorName": "贾诩",
|
||||
"actorID": 314,
|
||||
"actorId": 314,
|
||||
"dataId": 2002,
|
||||
"relation": 2,
|
||||
"outIndex": 1,
|
||||
@@ -135,7 +135,7 @@
|
||||
{
|
||||
"warID": 4008,
|
||||
"actorName": "李典",
|
||||
"actorID": 312,
|
||||
"actorId": 312,
|
||||
"dataId": 2003,
|
||||
"relation": 2,
|
||||
"outIndex": 2,
|
||||
@@ -154,7 +154,7 @@
|
||||
{
|
||||
"warID": 4008,
|
||||
"actorName": "许褚",
|
||||
"actorID": 315,
|
||||
"actorId": 315,
|
||||
"dataId": 2004,
|
||||
"relation": 2,
|
||||
"outIndex": 3,
|
||||
@@ -173,7 +173,7 @@
|
||||
{
|
||||
"warID": 4008,
|
||||
"actorName": "邓艾",
|
||||
"actorID": 309,
|
||||
"actorId": 309,
|
||||
"dataId": 2005,
|
||||
"relation": 2,
|
||||
"outIndex": 4,
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
{
|
||||
"warID": 4009,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 0,
|
||||
@@ -21,7 +21,7 @@
|
||||
{
|
||||
"warID": 4009,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 1,
|
||||
@@ -40,7 +40,7 @@
|
||||
{
|
||||
"warID": 4009,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 2,
|
||||
@@ -59,7 +59,7 @@
|
||||
{
|
||||
"warID": 4009,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 3,
|
||||
@@ -78,7 +78,7 @@
|
||||
{
|
||||
"warID": 4009,
|
||||
"actorName": "我军",
|
||||
"actorID": 0,
|
||||
"actorId": 0,
|
||||
"dataId": 0,
|
||||
"relation": 0,
|
||||
"outIndex": 4,
|
||||
@@ -97,7 +97,7 @@
|
||||
{
|
||||
"warID": 4009,
|
||||
"actorName": "邓艾",
|
||||
"actorID": 309,
|
||||
"actorId": 309,
|
||||
"dataId": 2001,
|
||||
"relation": 2,
|
||||
"outIndex": 0,
|
||||
@@ -116,7 +116,7 @@
|
||||
{
|
||||
"warID": 4009,
|
||||
"actorName": "李典",
|
||||
"actorID": 312,
|
||||
"actorId": 312,
|
||||
"dataId": 2002,
|
||||
"relation": 2,
|
||||
"outIndex": 1,
|
||||
@@ -135,7 +135,7 @@
|
||||
{
|
||||
"warID": 4009,
|
||||
"actorName": "贾诩",
|
||||
"actorID": 314,
|
||||
"actorId": 314,
|
||||
"dataId": 2003,
|
||||
"relation": 2,
|
||||
"outIndex": 2,
|
||||
@@ -154,7 +154,7 @@
|
||||
{
|
||||
"warID": 4009,
|
||||
"actorName": "曹仁",
|
||||
"actorID": 311,
|
||||
"actorId": 311,
|
||||
"dataId": 2004,
|
||||
"relation": 2,
|
||||
"outIndex": 3,
|
||||
@@ -173,7 +173,7 @@
|
||||
{
|
||||
"warID": 4009,
|
||||
"actorName": "许褚",
|
||||
"actorID": 315,
|
||||
"actorId": 315,
|
||||
"dataId": 2005,
|
||||
"relation": 2,
|
||||
"outIndex": 4,
|
||||
|
||||
Reference in New Issue
Block a user