diff --git a/game-server/app/services/pvpService.ts b/game-server/app/services/pvpService.ts new file mode 100644 index 000000000..4dd2b6c77 --- /dev/null +++ b/game-server/app/services/pvpService.ts @@ -0,0 +1,50 @@ +import { dicPvpOpponent } from "../pubUtils/dictionary/DicPvpOpponent"; +import { OppPlayers, PvpDefenseModel } from "../db/PvpDefense"; +import { getRandomIndexByLen } from '../pubUtils/util'; +import { RoleType } from "../db/Role"; + +export async function refreshEnemies(role: RoleType, score: number, pLv: number) { + let { roleId, topFiveCe } = role; + let oppPlayers = new Array(); + let opp = dicPvpOpponent.values() + for(let { id, maxLv, minLv, ratio } of opp) { + let flag = false; // 是否筛选成功 + if(score > 3000) { + flag = await matchPlayer(oppPlayers,roleId, id, pLv + minLv, pLv + maxLv); + // TODO 当前后分数段没有时,返回前一名的玩家 + if(!flag) flag = matchRobot(oppPlayers, topFiveCe, ratio); + } else { + flag = matchRobot(oppPlayers, topFiveCe, ratio); + } + return flag; + } + + return oppPlayers; +} + +async function matchPlayer(oppPlayers: OppPlayers[], roleId: string, pos: number, minLv: number, maxLv: number ) { + let range = await PvpDefenseModel.findByTeamLv(minLv, maxLv); + if(range.length <= 0) return false; + + let index = getRandomIndexByLen(range.length); + let result = range[index]; + if(!result) return false; + if(result.roleId == roleId) { + range.splice(index, 1); + if(range.length <= 0) return false; + index = getRandomIndexByLen(range.length); + result = range[range.length]; + } + + oppPlayers.push({ + oppDef: result._id, + pos, + isRobot: false, + robot: null + }); + return true; +} + +function matchRobot(oppPlayers: OppPlayers[], ce: number, ratio: number) { + return true +} \ No newline at end of file diff --git a/shared/consts/constModules/sysConst.ts b/shared/consts/constModules/sysConst.ts index bc792256e..f2f9fd452 100644 --- a/shared/consts/constModules/sysConst.ts +++ b/shared/consts/constModules/sysConst.ts @@ -288,7 +288,11 @@ export const FILENAME = { DIC_TERAPH: 'dic_zyz_teraph', DIC_SCHOOL: 'dic_zyz_school', DIC_SCHOOL_RATE: 'dic_zyz_schoolRate', - DIC_HERO_SCROLL: 'dic_zyz_heroScroll' + DIC_HERO_SCROLL: 'dic_zyz_heroScroll', + DIC_PVP_OPPONENT: 'dic_pvp_opponent', + DIC_PVP_TEAM_LEVEL: 'dic_pvp_teamLevel', + DIC_GK_PVP: 'dic_zyz_gk_pvp', + DIC_PVP_REFRESHCONSUME: 'dic_pvp_refreshConsume' } export const WAR_RELATE_TABLES = [ @@ -301,7 +305,8 @@ export const WAR_RELATE_TABLES = [ FILENAME.DIC_GK_MAIN, FILENAME.DIC_GK_MAIN_ELITE, FILENAME.DIC_GK_TOWER, - FILENAME.DIC_GK_TREASURE + FILENAME.DIC_GK_TREASURE, + FILENAME.DIC_GK_PVP ] // 装备栏强化类型 diff --git a/shared/db/PvpDefense.ts b/shared/db/PvpDefense.ts index 13be46dfb..03ad014fa 100644 --- a/shared/db/PvpDefense.ts +++ b/shared/db/PvpDefense.ts @@ -51,7 +51,9 @@ class Robot { @prop({ required: true }) sHid: number; @prop({ required: true }) - topFiveCe: number; + defCe: number; + @prop({ required: true }) + warId: number; // 模板的warId } export class OppPlayers { @@ -85,6 +87,8 @@ export default class PvpDefense extends BaseModel { @prop({ required: true, default: 0 }) score: number; @prop({ required: true, default: 0 }) + pLv: number; + @prop({ required: true, default: 0 }) hisScore: number; //历史最高积分 @prop({ required: true, default: 0 }) winStreakNum: number; //连胜次数 @@ -155,6 +159,11 @@ export default class PvpDefense extends BaseModel { const result: PvpDefenseType = await PvpDefenseModel.findOne({ roleId }).populate('role', 'Heroes.hero', 'OppPlayers.oppDef').lean(lean); return result; } + + public static async findByTeamLv(min: number, max: number) { + const result: PvpDefenseType[] = await PvpDefenseModel.find({ $gte: { pLv: min }, $lte: { pLv: max } }).lean(); + return result; + } } export const PvpDefenseModel = getModelForClass(PvpDefense); diff --git a/shared/pubUtils/data.ts b/shared/pubUtils/data.ts index 047af3a7d..aec10b867 100644 --- a/shared/pubUtils/data.ts +++ b/shared/pubUtils/data.ts @@ -15,7 +15,7 @@ import { dicQuestion } from "./dictionary/DicQuestion"; import { dicSe } from "./dictionary/DicSe"; import { dicTower } from "./dictionary/DicTower"; import { dicTowerTask } from "./dictionary/DicTowerTask"; -import { dicWar } from "./dictionary/DicWar"; +import { dicWar, dicWarPvp } from "./dictionary/DicWar"; import { dicWarJson } from "./dictionary/DicWarJson"; import { dicXunbao } from "./dictionary/DicXunbao"; import { SPECIAL_ATTR } from "../consts/consts"; @@ -36,6 +36,9 @@ import { dicSchool } from './dictionary/DicSchool'; import { dicSchoolRate } from './dictionary/DicSchoolRate'; import { dicHeroScroll, preHeroScroll } from './dictionary/DicHeroScroll'; import { ABI_TYPE_TO_STAGE } from "../consts"; +import { dicPvpOpponent } from './dictionary/DicPvpOpponent'; +import { dicPvpTeamLevel } from './dictionary/DicPvpTeamLevel'; +import { dicPvpRefreshConsume } from './dictionary/DicPvpRefreshConsume'; export const gameData = { blurprtCompose: dicBlueprtCompose, @@ -84,7 +87,11 @@ export const gameData = { school: dicSchool, schoolRate: dicSchoolRate, heroScroll: dicHeroScroll, - preHeroScroll: preHeroScroll + preHeroScroll: preHeroScroll, + pvpOpponent: dicPvpOpponent, + pvpTeamLevel: dicPvpTeamLevel, + pvpWar: dicWarPvp, + pvpRefreshConsume: dicPvpRefreshConsume }; // 在此提供一些原先在gamedata中提供的方法,以便更方便获取gameData数据 @@ -251,4 +258,13 @@ export function getSuit(id: number) { export function getFuncsSwitch(id:number) { const funcInfo = gameData.funcsSwitch.get(id); return funcInfo; +} + +export function getPLvByScore(score: number) { + let lv = 0; + for(let {teamLv, topFiveMin, topFiveMax} of gameData.pvpTeamLevel) { + if(score > topFiveMin) lv = teamLv; + if(score < topFiveMax) break; + } + return lv; } \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicPvpOpponent.ts b/shared/pubUtils/dictionary/DicPvpOpponent.ts new file mode 100644 index 000000000..58e9f0c6a --- /dev/null +++ b/shared/pubUtils/dictionary/DicPvpOpponent.ts @@ -0,0 +1,27 @@ +// pvp三个对手 +import {readJsonFile} from '../util' +import { FILENAME } from '../../consts' + +export interface DicPvpOpponent { + // id + readonly id: number; + // 战胜可得积分 + readonly score: number; + // 匹配对手最高等级 + readonly maxLv: number; + // 匹配对手最低等级 + readonly minLv: number; + // 系数 + readonly ratio: number; +} + +const str = readJsonFile(FILENAME.DIC_PVP_OPPONENT); +let arr = JSON.parse(str); + +export const dicPvpOpponent = new Map(); + +arr.forEach(o => { + dicPvpOpponent.set(o.id, o); +}); + +arr = undefined; \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicPvpRefreshConsume.ts b/shared/pubUtils/dictionary/DicPvpRefreshConsume.ts new file mode 100644 index 000000000..c9daeab11 --- /dev/null +++ b/shared/pubUtils/dictionary/DicPvpRefreshConsume.ts @@ -0,0 +1,25 @@ +// pvp三个对手 +import { readJsonFile, parseGoodStr } from '../util' +import { FILENAME } from '../../consts' +import { RewardInter } from '../interface'; + +export interface DicPvpRefreshConsume { + // id + readonly id: number; + // 次数 + readonly count: number; + // 消耗 + readonly consume: RewardInter[] +} + +const str = readJsonFile(FILENAME.DIC_PVP_TEAM_LEVEL); +let arr = JSON.parse(str); + +export const dicPvpRefreshConsume = new Map(); + +arr.forEach(o => { + o.consume = parseGoodStr(o.consume); + dicPvpRefreshConsume.set(o.count, o); +}); + +arr = undefined; \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicPvpTeamLevel.ts b/shared/pubUtils/dictionary/DicPvpTeamLevel.ts new file mode 100644 index 000000000..fdd042ee4 --- /dev/null +++ b/shared/pubUtils/dictionary/DicPvpTeamLevel.ts @@ -0,0 +1,25 @@ +// pvp三个对手 +import { readJsonFile } from '../util' +import { FILENAME } from '../../consts' + +export interface DicPvpTeamLevel { + // id + readonly id: number; + // 队伍等级 + readonly teamLv: number; + // 最高五人军功和下限 + readonly topFiveMin: number; + // 最高五人军功和上限 + readonly topFiveMax: number; +} + +const str = readJsonFile(FILENAME.DIC_PVP_TEAM_LEVEL); +let arr = JSON.parse(str); + +export const dicPvpTeamLevel = new Array(); + +arr.forEach(o => { + dicPvpTeamLevel.push(o); +}); + +arr = undefined; \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicWar.ts b/shared/pubUtils/dictionary/DicWar.ts index 1c21f0361..2bbe68dd8 100644 --- a/shared/pubUtils/dictionary/DicWar.ts +++ b/shared/pubUtils/dictionary/DicWar.ts @@ -1,6 +1,6 @@ // 关卡表 import {decodeArrayListStr, readJsonFile} from '../util' -import { WAR_RELATE_TABLES } from '../../consts'; +import { WAR_RELATE_TABLES, WAR_TYPE } from '../../consts'; export interface DicWar { @@ -30,6 +30,7 @@ export interface DicWar { } export const dicWar = new Map(); +export const dicWarPvp = new Array(); for(let filename of WAR_RELATE_TABLES) { const str = readJsonFile(filename); @@ -40,10 +41,13 @@ for(let filename of WAR_RELATE_TABLES) { o.conditionReward = parseConditionReward(o.conditionReward); o.parseRandomReward = parseRandomReward(o.parseRandomReward); dicWar.set(o.war_id, o); + if(o.warType == WAR_TYPE.PVP) { + dicWarPvp.push(o); + } }); } -function parseFixReward(str: string) { +function parseFixReward(str: string = '') { let result = new Array<{id: number, count: number}>(); if(!str) return result; let decodeArr = decodeArrayListStr(str); @@ -56,7 +60,7 @@ function parseFixReward(str: string) { return result } -function parseConditionReward(str: string) { +function parseConditionReward(str: string = '') { let result = new Array<{id: number, count: number, condition: number}>(); if(!str) return result; let decodeArr = decodeArrayListStr(str); @@ -69,7 +73,7 @@ function parseConditionReward(str: string) { return result } -function parseRandomReward(str: string) { +function parseRandomReward(str: string = '') { let result = new Array<{id: number, count: number, frequency: number}>(); if(!str) return result; let decodeArr = decodeArrayListStr(str); diff --git a/shared/pubUtils/interface.ts b/shared/pubUtils/interface.ts index 98364c67e..f4d976e04 100644 --- a/shared/pubUtils/interface.ts +++ b/shared/pubUtils/interface.ts @@ -53,4 +53,5 @@ export interface SclPosInter { export interface SclResultInter { id: number; position: SclPosInter[] -} \ No newline at end of file +} + diff --git a/shared/pubUtils/util.ts b/shared/pubUtils/util.ts index 136783673..448797c1c 100644 --- a/shared/pubUtils/util.ts +++ b/shared/pubUtils/util.ts @@ -6,6 +6,7 @@ import fs = require('fs'); import path = require('path'); import { DicRandomEffectPool } from './dictionary/DicRandomEffectPool'; import { HERO_CE_RATIO, ABI_STAGE } from '../consts'; +import { PvpDefenseType } from '../db/PvpDefense'; const _ = require('underscore'); @@ -173,6 +174,10 @@ export function getRandomByLen(arr: Array): any { return arr[Math.floor(Math.random() * len)] } +export function getRandomIndexByLen(len: number) { + return Math.floor(Math.random() * len); +} + export function getRandomWithWeight(randomList: any) { let len = randomList.reduce((pre, cur) => { return pre + cur.weight || 1; diff --git a/shared/resource/jsons/dic_goods.json b/shared/resource/jsons/dic_goods.json old mode 100644 new mode 100755 index 33ebadd22..d70b029e0 --- a/shared/resource/jsons/dic_goods.json +++ b/shared/resource/jsons/dic_goods.json @@ -50911,6 +50911,43 @@ "value": 0, "info": "情谊点40003的介绍的介绍的介绍的介绍的介绍的介绍的介绍的介绍的介绍的介绍的介绍的介绍的介绍的介绍的介绍的介绍的介绍的介绍" }, + { + "good_id": 40004, + "name": "武道币", + "lvLimited": 1, + "quality": 1, + "image_id": 1, + "itid": 34, + "goodType": 2, + "pieces": 0, + "pieceId": 0, + "composeMaterial": "&", + "specialMaterial": "&", + "suitId": 0, + "decomposeItem": "&", + "hole": 0, + "randomEffect": "&", + "hid": 0, + "hp": 0, + "atk": 0, + "matk": 0, + "def": 0, + "mdef": 0, + "agi": 0, + "luk": 0, + "hp_up": 0, + "atk_up": 0, + "matk_up": 0, + "def_up": 0, + "mdef_up": 0, + "agi_up": 0, + "luk_up": 0, + "specialAttr": "&", + "suitId_1": 0, + "getWays": "1&0", + "value": 0, + "info": "武道币40004的介绍的介绍的介绍的介绍的介绍的介绍的介绍的介绍的介绍的介绍的介绍的介绍的介绍的介绍的介绍的介绍的介绍的介绍" + }, { "good_id": 41001, "name": "漂亮衣服1", diff --git a/shared/resource/jsons/dic_pvp_boxReward.json b/shared/resource/jsons/dic_pvp_boxReward.json new file mode 100755 index 000000000..2315c3356 --- /dev/null +++ b/shared/resource/jsons/dic_pvp_boxReward.json @@ -0,0 +1,1002 @@ +[ + { + "id": 1, + "score": 500, + "reward": "31002&200" + }, + { + "id": 2, + "score": 1000, + "reward": "31003&5" + }, + { + "id": 3, + "score": 1500, + "reward": "50080&1" + }, + { + "id": 4, + "score": 2000, + "reward": "40004&100" + }, + { + "id": 5, + "score": 2500, + "reward": "17001&2" + }, + { + "id": 6, + "score": 3000, + "reward": "31002&400" + }, + { + "id": 7, + "score": 3500, + "reward": "31003&10" + }, + { + "id": 8, + "score": 4000, + "reward": "6003&10" + }, + { + "id": 9, + "score": 4500, + "reward": "17053&10" + }, + { + "id": 10, + "score": 5000, + "reward": "21001&50" + }, + { + "id": 11, + "score": 5500, + "reward": "31002&600" + }, + { + "id": 12, + "score": 6000, + "reward": "31003&15" + }, + { + "id": 13, + "score": 6500, + "reward": "17007&10" + }, + { + "id": 14, + "score": 7000, + "reward": "17011&10" + }, + { + "id": 15, + "score": 7500, + "reward": "17001&4" + }, + { + "id": 16, + "score": 8000, + "reward": "31002&800" + }, + { + "id": 17, + "score": 8500, + "reward": "31003&20" + }, + { + "id": 18, + "score": 9000, + "reward": "6013&12" + }, + { + "id": 19, + "score": 9500, + "reward": "17053&15" + }, + { + "id": 20, + "score": 10000, + "reward": "17008&15" + }, + { + "id": 21, + "score": 11000, + "reward": "31002&1000" + }, + { + "id": 22, + "score": 12000, + "reward": "31003&25" + }, + { + "id": 23, + "score": 13000, + "reward": "50092&1" + }, + { + "id": 24, + "score": 14000, + "reward": "40004&200" + }, + { + "id": 25, + "score": 15000, + "reward": "17001&6" + }, + { + "id": 26, + "score": 16000, + "reward": "31002&1200" + }, + { + "id": 27, + "score": 17000, + "reward": "31003&30" + }, + { + "id": 28, + "score": 18000, + "reward": "6023&14" + }, + { + "id": 29, + "score": 19000, + "reward": "17053&20" + }, + { + "id": 30, + "score": 20000, + "reward": "21022&50" + }, + { + "id": 31, + "score": 21000, + "reward": "31002&1400" + }, + { + "id": 32, + "score": 22000, + "reward": "17012&20" + }, + { + "id": 33, + "score": 23000, + "reward": "17017&20" + }, + { + "id": 34, + "score": 24000, + "reward": "17009&10" + }, + { + "id": 35, + "score": 25000, + "reward": "17001&8" + }, + { + "id": 36, + "score": 26000, + "reward": "31002&1600" + }, + { + "id": 37, + "score": 27000, + "reward": "17018&20" + }, + { + "id": 38, + "score": 28000, + "reward": "6033&16" + }, + { + "id": 39, + "score": 29000, + "reward": "17053&25" + }, + { + "id": 40, + "score": 30000, + "reward": "17021&20" + }, + { + "id": 41, + "score": 31000, + "reward": "31002&1800" + }, + { + "id": 42, + "score": 32000, + "reward": "17013&20" + }, + { + "id": 43, + "score": 33000, + "reward": "50105&1" + }, + { + "id": 44, + "score": 34000, + "reward": "40004&400" + }, + { + "id": 45, + "score": 35000, + "reward": "17001&10" + }, + { + "id": 46, + "score": 36000, + "reward": "31002&2000" + }, + { + "id": 47, + "score": 37000, + "reward": "17025&20" + }, + { + "id": 48, + "score": 38000, + "reward": "6043&18" + }, + { + "id": 49, + "score": 39000, + "reward": "17053&30" + }, + { + "id": 50, + "score": 40000, + "reward": "21006&50" + }, + { + "id": 51, + "score": 41000, + "reward": "31002&2200" + }, + { + "id": 52, + "score": 42000, + "reward": "17029&20" + }, + { + "id": 53, + "score": 43000, + "reward": "17045&10" + }, + { + "id": 54, + "score": 44000, + "reward": "60060&20" + }, + { + "id": 55, + "score": 45000, + "reward": "42144&30" + }, + { + "id": 56, + "score": 46000, + "reward": "31002&2400" + }, + { + "id": 57, + "score": 47000, + "reward": "17046&10" + }, + { + "id": 58, + "score": 48000, + "reward": "6053&20" + }, + { + "id": 59, + "score": 49000, + "reward": "17053&35" + }, + { + "id": 60, + "score": 50000, + "reward": "42191&50" + }, + { + "id": 61, + "score": 52000, + "reward": "31002&2600" + }, + { + "id": 62, + "score": 54000, + "reward": "42216&30" + }, + { + "id": 63, + "score": 56000, + "reward": "50124&1" + }, + { + "id": 64, + "score": 58000, + "reward": "40004&600" + }, + { + "id": 65, + "score": 60000, + "reward": "42336&30" + }, + { + "id": 66, + "score": 62000, + "reward": "31002&2800" + }, + { + "id": 67, + "score": 64000, + "reward": "42357&30" + }, + { + "id": 68, + "score": 66000, + "reward": "6003&22" + }, + { + "id": 69, + "score": 68000, + "reward": "17053&40" + }, + { + "id": 70, + "score": 70000, + "reward": "42384&30" + }, + { + "id": 71, + "score": 72000, + "reward": "31002&3000" + }, + { + "id": 72, + "score": 74000, + "reward": "42432&30" + }, + { + "id": 73, + "score": 76000, + "reward": "42480&30" + }, + { + "id": 74, + "score": 78000, + "reward": "42528&30" + }, + { + "id": 75, + "score": 80000, + "reward": "42552&30" + }, + { + "id": 76, + "score": 82000, + "reward": "31002&3200" + }, + { + "id": 77, + "score": 84000, + "reward": "40004&700" + }, + { + "id": 78, + "score": 86000, + "reward": "6013&24" + }, + { + "id": 79, + "score": 88000, + "reward": "17053&45" + }, + { + "id": 80, + "score": 90000, + "reward": "21032&50" + }, + { + "id": 81, + "score": 92000, + "reward": "31002&3400" + }, + { + "id": 82, + "score": 94000, + "reward": "31001&10000" + }, + { + "id": 83, + "score": 96000, + "reward": "50070&1" + }, + { + "id": 84, + "score": 98000, + "reward": "40004&800" + }, + { + "id": 85, + "score": 100000, + "reward": "40004&900" + }, + { + "id": 86, + "score": 103000, + "reward": "31002&3600" + }, + { + "id": 87, + "score": 106000, + "reward": "41003&1" + }, + { + "id": 88, + "score": 109000, + "reward": "6023&26" + }, + { + "id": 89, + "score": 112000, + "reward": "17053&50" + }, + { + "id": 90, + "score": 115000, + "reward": "31001&20000" + }, + { + "id": 91, + "score": 118000, + "reward": "31002&3800" + }, + { + "id": 92, + "score": 121000, + "reward": "33503&2" + }, + { + "id": 93, + "score": 124000, + "reward": "33527&2" + }, + { + "id": 94, + "score": 127000, + "reward": "33551&2" + }, + { + "id": 95, + "score": 130000, + "reward": "41004&1" + }, + { + "id": 96, + "score": 133000, + "reward": "31002&4000" + }, + { + "id": 97, + "score": 136000, + "reward": "31001&30000" + }, + { + "id": 98, + "score": 139000, + "reward": "6033&28" + }, + { + "id": 99, + "score": 142000, + "reward": "17053&55" + }, + { + "id": 100, + "score": 145000, + "reward": "21043&100" + }, + { + "id": 101, + "score": 148000, + "reward": "31002&4200" + }, + { + "id": 102, + "score": 151000, + "reward": "31001&40000" + }, + { + "id": 103, + "score": 154000, + "reward": "50005&1" + }, + { + "id": 104, + "score": 157000, + "reward": "40004&1000" + }, + { + "id": 105, + "score": 160000, + "reward": "40004&1100" + }, + { + "id": 106, + "score": 163000, + "reward": "31002&4400" + }, + { + "id": 107, + "score": 166000, + "reward": "33054&2" + }, + { + "id": 108, + "score": 169000, + "reward": "6043&30" + }, + { + "id": 109, + "score": 172000, + "reward": "17053&60" + }, + { + "id": 110, + "score": 175000, + "reward": "31001&50000" + }, + { + "id": 111, + "score": 178000, + "reward": "31002&4600" + }, + { + "id": 112, + "score": 181000, + "reward": "50030&1" + }, + { + "id": 113, + "score": 184000, + "reward": "33528&2" + }, + { + "id": 114, + "score": 187000, + "reward": "41005&1" + }, + { + "id": 115, + "score": 190000, + "reward": "50072&1" + }, + { + "id": 116, + "score": 193000, + "reward": "31002&4800" + }, + { + "id": 117, + "score": 196000, + "reward": "31001&50000" + }, + { + "id": 118, + "score": 199000, + "reward": "6053&32" + }, + { + "id": 119, + "score": 202000, + "reward": "17053&65" + }, + { + "id": 120, + "score": 207000, + "reward": "50036&1" + }, + { + "id": 121, + "score": 212000, + "reward": "31002&5000" + }, + { + "id": 122, + "score": 217000, + "reward": "50042&1" + }, + { + "id": 123, + "score": 222000, + "reward": "50011&1" + }, + { + "id": 124, + "score": 227000, + "reward": "40004&1200" + }, + { + "id": 125, + "score": 232000, + "reward": "50048&1" + }, + { + "id": 126, + "score": 237000, + "reward": "31002&5200" + }, + { + "id": 127, + "score": 242000, + "reward": "50042&1" + }, + { + "id": 128, + "score": 247000, + "reward": "6003&34" + }, + { + "id": 129, + "score": 252000, + "reward": "17053&70" + }, + { + "id": 130, + "score": 257000, + "reward": "21044&100" + }, + { + "id": 131, + "score": 262000, + "reward": "31002&5400" + }, + { + "id": 132, + "score": 267000, + "reward": "50054&1" + }, + { + "id": 133, + "score": 272000, + "reward": "40004&1300" + }, + { + "id": 134, + "score": 277000, + "reward": "31001&60000" + }, + { + "id": 135, + "score": 282000, + "reward": "17039&50" + }, + { + "id": 136, + "score": 287000, + "reward": "31002&5600" + }, + { + "id": 137, + "score": 292000, + "reward": "41006&1" + }, + { + "id": 138, + "score": 297000, + "reward": "6013&36" + }, + { + "id": 139, + "score": 302000, + "reward": "17053&75" + }, + { + "id": 140, + "score": 307000, + "reward": "31001&70000" + }, + { + "id": 141, + "score": 312000, + "reward": "31002&5800" + }, + { + "id": 142, + "score": 317000, + "reward": "50084&1" + }, + { + "id": 143, + "score": 322000, + "reward": "50023&1" + }, + { + "id": 144, + "score": 327000, + "reward": "40004&1400" + }, + { + "id": 145, + "score": 332000, + "reward": "17039&50" + }, + { + "id": 146, + "score": 337000, + "reward": "31002&6000" + }, + { + "id": 147, + "score": 342000, + "reward": "50060&1" + }, + { + "id": 148, + "score": 347000, + "reward": "6023&38" + }, + { + "id": 149, + "score": 352000, + "reward": "17053&80" + }, + { + "id": 150, + "score": 357000, + "reward": "21023&100" + }, + { + "id": 151, + "score": 362000, + "reward": "31002&6200" + }, + { + "id": 152, + "score": 367000, + "reward": "50066&1" + }, + { + "id": 153, + "score": 372000, + "reward": "60008&1" + }, + { + "id": 154, + "score": 377000, + "reward": "40004&1500" + }, + { + "id": 155, + "score": 382000, + "reward": "17039&50" + }, + { + "id": 156, + "score": 387000, + "reward": "31002&6400" + }, + { + "id": 157, + "score": 392000, + "reward": "31001&80000" + }, + { + "id": 158, + "score": 397000, + "reward": "6033&40" + }, + { + "id": 159, + "score": 402000, + "reward": "17053&85" + }, + { + "id": 160, + "score": 500000, + "reward": "60018&1" + }, + { + "id": 161, + "score": 598000, + "reward": "31002&6600" + }, + { + "id": 162, + "score": 696000, + "reward": "31001&100000" + }, + { + "id": 163, + "score": 794000, + "reward": "50035&1" + }, + { + "id": 164, + "score": 892000, + "reward": "40004&1600" + }, + { + "id": 165, + "score": 990000, + "reward": "17039&50" + }, + { + "id": 166, + "score": 1088000, + "reward": "31002&6800" + }, + { + "id": 167, + "score": 1186000, + "reward": "60028&1" + }, + { + "id": 168, + "score": 1284000, + "reward": "6043&42" + }, + { + "id": 169, + "score": 1382000, + "reward": "17053&90" + }, + { + "id": 170, + "score": 1480000, + "reward": "60028&1" + }, + { + "id": 171, + "score": 1578000, + "reward": "31002&7000" + }, + { + "id": 172, + "score": 1676000, + "reward": "40004&1700" + }, + { + "id": 173, + "score": 1774000, + "reward": "40004&1800" + }, + { + "id": 174, + "score": 1872000, + "reward": "60038&1" + }, + { + "id": 175, + "score": 1970000, + "reward": "17039&50" + }, + { + "id": 176, + "score": 2068000, + "reward": "31002&7200" + }, + { + "id": 177, + "score": 2166000, + "reward": "60048&1" + }, + { + "id": 178, + "score": 2264000, + "reward": "6053&44" + }, + { + "id": 179, + "score": 2362000, + "reward": "17053&95" + }, + { + "id": 180, + "score": 2460000, + "reward": "21056&100" + }, + { + "id": 181, + "score": 2558000, + "reward": "31002&7400" + }, + { + "id": 182, + "score": 2656000, + "reward": "60058&1" + }, + { + "id": 183, + "score": 2754000, + "reward": "50047&1" + }, + { + "id": 184, + "score": 2852000, + "reward": "40004&2000" + }, + { + "id": 185, + "score": 2950000, + "reward": "17039&50" + }, + { + "id": 186, + "score": 3048000, + "reward": "31002&7600" + }, + { + "id": 187, + "score": 3146000, + "reward": "60059&1" + }, + { + "id": 188, + "score": 3244000, + "reward": "6003&46" + }, + { + "id": 189, + "score": 3342000, + "reward": "17053&100" + }, + { + "id": 190, + "score": 3440000, + "reward": "60049&1" + }, + { + "id": 191, + "score": 3538000, + "reward": "31002&7800" + }, + { + "id": 192, + "score": 3636000, + "reward": "60029&1" + }, + { + "id": 193, + "score": 3734000, + "reward": "50090&1" + }, + { + "id": 194, + "score": 3832000, + "reward": "60039&1" + }, + { + "id": 195, + "score": 3930000, + "reward": "17039&50" + }, + { + "id": 196, + "score": 4028000, + "reward": "31002&8000" + }, + { + "id": 197, + "score": 4126000, + "reward": "50108&1" + }, + { + "id": 198, + "score": 4224000, + "reward": "6013&50" + }, + { + "id": 199, + "score": 4322000, + "reward": "17053&105" + }, + { + "id": 200, + "score": 4420000, + "reward": "21033&100" + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_pvp_heroAccountReward.json b/shared/resource/jsons/dic_pvp_heroAccountReward.json new file mode 100755 index 000000000..06e040558 --- /dev/null +++ b/shared/resource/jsons/dic_pvp_heroAccountReward.json @@ -0,0 +1,93 @@ +[ + { + "id": 1, + "min": 600, + "max": 799, + "heroscore": 500, + "reward": "40004&200" + }, + { + "id": 2, + "min": 800, + "max": 999, + "heroscore": 700, + "reward": "40004&240" + }, + { + "id": 3, + "min": 1000, + "max": 1199, + "heroscore": 850, + "reward": "40004&280" + }, + { + "id": 4, + "min": 1200, + "max": 1399, + "heroscore": 1050, + "reward": "40004&320" + }, + { + "id": 5, + "min": 1400, + "max": 1599, + "heroscore": 1250, + "reward": "40004&360" + }, + { + "id": 6, + "min": 1600, + "max": 1799, + "heroscore": 1450, + "reward": "40004&400" + }, + { + "id": 7, + "min": 1800, + "max": 1999, + "heroscore": 1650, + "reward": "40004&440" + }, + { + "id": 8, + "min": 2000, + "max": 2199, + "heroscore": 1800, + "reward": "40004&500" + }, + { + "id": 9, + "min": 2200, + "max": 2399, + "heroscore": 2000, + "reward": "40004&560" + }, + { + "id": 10, + "min": 2400, + "max": 2599, + "heroscore": 2200, + "reward": "40004&620" + }, + { + "id": 11, + "min": 2600, + "max": 2799, + "heroscore": 2400, + "reward": "40004&680" + }, + { + "id": 12, + "min": 2800, + "max": 2999, + "heroscore": 2600, + "reward": "40004&740" + }, + { + "id": 13, + "min": 3000, + "max": -1, + "heroscore": 3000, + "reward": "40004&1000" + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_pvp_opponent.json b/shared/resource/jsons/dic_pvp_opponent.json new file mode 100755 index 000000000..9ca533b5d --- /dev/null +++ b/shared/resource/jsons/dic_pvp_opponent.json @@ -0,0 +1,23 @@ +[ + { + "id": 1, + "score": 15, + "maxLv": 4, + "minLv": 2, + "ratio": 0.95 + }, + { + "id": 2, + "score": 10, + "maxLv": 1, + "minLv": -1, + "ratio": 0.75 + }, + { + "id": 3, + "score": 5, + "maxLv": -2, + "minLv": -4, + "ratio": 0.5 + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_pvp_rankReward.json b/shared/resource/jsons/dic_pvp_rankReward.json new file mode 100755 index 000000000..a6d21ece5 --- /dev/null +++ b/shared/resource/jsons/dic_pvp_rankReward.json @@ -0,0 +1,50 @@ +[ + { + "id": 1, + "min": 0, + "max": 1, + "reward": "41003&1|60059&5|60049&5|60039&5|60062&5|1006&100|21043&100|17001&20|11004&50|13030&6|40004&1200" + }, + { + "id": 2, + "min": 2, + "max": 3, + "reward": "41003&1|21006&100|17001&15|11004&50|13030&6|40004&1200" + }, + { + "id": 3, + "min": 4, + "max": 10, + "reward": "41003&1|21044&100|17001&12|11004&50|13030&6|40004&1000" + }, + { + "id": 4, + "min": 11, + "max": 50, + "reward": "41003&1|21042&60|17001&10|11004&50|13030&6|40004&800" + }, + { + "id": 5, + "min": 51, + "max": 100, + "reward": "41003&1|21005&50|17001&8|11004&50|13030&6|40004&600" + }, + { + "id": 6, + "min": 101, + "max": 500, + "reward": "21009&20|17001&6|11004&50|13030&4|40004&400" + }, + { + "id": 7, + "min": 501, + "max": 999, + "reward": "17001&4|11003&50|13030&2|40004&200" + }, + { + "id": 8, + "min": 1000, + "max": -1, + "reward": "17001&2|11003&20|40004&100" + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_pvp_refreshConsume.json b/shared/resource/jsons/dic_pvp_refreshConsume.json new file mode 100755 index 000000000..ae947de29 --- /dev/null +++ b/shared/resource/jsons/dic_pvp_refreshConsume.json @@ -0,0 +1,42 @@ +[ + { + "id": 1, + "count": 1, + "consume": "&" + }, + { + "id": 2, + "count": 2, + "consume": "&" + }, + { + "id": 3, + "count": 3, + "consume": "&" + }, + { + "id": 4, + "count": 4, + "consume": "31002&10" + }, + { + "id": 5, + "count": 5, + "consume": "31002&20" + }, + { + "id": 6, + "count": 6, + "consume": "31002&30" + }, + { + "id": 7, + "count": 7, + "consume": "31002&40" + }, + { + "id": 8, + "count": 8, + "consume": "31002&50" + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_pvp_teamLevel.json b/shared/resource/jsons/dic_pvp_teamLevel.json new file mode 100755 index 000000000..5571f7eea --- /dev/null +++ b/shared/resource/jsons/dic_pvp_teamLevel.json @@ -0,0 +1,422 @@ +[ + { + "id": 1, + "teamLv": 1, + "topFiveMin": 0, + "topFiveMax": 500 + }, + { + "id": 2, + "teamLv": 2, + "topFiveMin": 501, + "topFiveMax": 1020 + }, + { + "id": 3, + "teamLv": 3, + "topFiveMin": 1021, + "topFiveMax": 1560 + }, + { + "id": 4, + "teamLv": 4, + "topFiveMin": 1561, + "topFiveMax": 2120 + }, + { + "id": 5, + "teamLv": 5, + "topFiveMin": 2121, + "topFiveMax": 2700 + }, + { + "id": 6, + "teamLv": 6, + "topFiveMin": 2701, + "topFiveMax": 3300 + }, + { + "id": 7, + "teamLv": 7, + "topFiveMin": 3301, + "topFiveMax": 3920 + }, + { + "id": 8, + "teamLv": 8, + "topFiveMin": 3921, + "topFiveMax": 4560 + }, + { + "id": 9, + "teamLv": 9, + "topFiveMin": 4561, + "topFiveMax": 5220 + }, + { + "id": 10, + "teamLv": 10, + "topFiveMin": 5221, + "topFiveMax": 5900 + }, + { + "id": 11, + "teamLv": 11, + "topFiveMin": 5901, + "topFiveMax": 6600 + }, + { + "id": 12, + "teamLv": 12, + "topFiveMin": 6601, + "topFiveMax": 7320 + }, + { + "id": 13, + "teamLv": 13, + "topFiveMin": 7321, + "topFiveMax": 8060 + }, + { + "id": 14, + "teamLv": 14, + "topFiveMin": 8061, + "topFiveMax": 8820 + }, + { + "id": 15, + "teamLv": 15, + "topFiveMin": 8821, + "topFiveMax": 9600 + }, + { + "id": 16, + "teamLv": 16, + "topFiveMin": 9601, + "topFiveMax": 10400 + }, + { + "id": 17, + "teamLv": 17, + "topFiveMin": 10401, + "topFiveMax": 11220 + }, + { + "id": 18, + "teamLv": 18, + "topFiveMin": 11221, + "topFiveMax": 12060 + }, + { + "id": 19, + "teamLv": 19, + "topFiveMin": 12061, + "topFiveMax": 12920 + }, + { + "id": 20, + "teamLv": 20, + "topFiveMin": 12921, + "topFiveMax": 13800 + }, + { + "id": 21, + "teamLv": 21, + "topFiveMin": 13801, + "topFiveMax": 14700 + }, + { + "id": 22, + "teamLv": 22, + "topFiveMin": 14701, + "topFiveMax": 15620 + }, + { + "id": 23, + "teamLv": 23, + "topFiveMin": 15621, + "topFiveMax": 16560 + }, + { + "id": 24, + "teamLv": 24, + "topFiveMin": 16501, + "topFiveMax": 17520 + }, + { + "id": 25, + "teamLv": 25, + "topFiveMin": 17521, + "topFiveMax": 18500 + }, + { + "id": 26, + "teamLv": 26, + "topFiveMin": 18501, + "topFiveMax": 19500 + }, + { + "id": 27, + "teamLv": 27, + "topFiveMin": 19501, + "topFiveMax": 20520 + }, + { + "id": 28, + "teamLv": 28, + "topFiveMin": 20521, + "topFiveMax": 21560 + }, + { + "id": 29, + "teamLv": 29, + "topFiveMin": 21561, + "topFiveMax": 22620 + }, + { + "id": 30, + "teamLv": 30, + "topFiveMin": 22621, + "topFiveMax": 23700 + }, + { + "id": 31, + "teamLv": 31, + "topFiveMin": 23701, + "topFiveMax": 24800 + }, + { + "id": 32, + "teamLv": 32, + "topFiveMin": 24801, + "topFiveMax": 25920 + }, + { + "id": 33, + "teamLv": 33, + "topFiveMin": 25921, + "topFiveMax": 27060 + }, + { + "id": 34, + "teamLv": 34, + "topFiveMin": 27061, + "topFiveMax": 28220 + }, + { + "id": 35, + "teamLv": 35, + "topFiveMin": 28221, + "topFiveMax": 29400 + }, + { + "id": 36, + "teamLv": 36, + "topFiveMin": 29401, + "topFiveMax": 30600 + }, + { + "id": 37, + "teamLv": 37, + "topFiveMin": 30601, + "topFiveMax": 31820 + }, + { + "id": 38, + "teamLv": 38, + "topFiveMin": 31821, + "topFiveMax": 33060 + }, + { + "id": 39, + "teamLv": 39, + "topFiveMin": 33061, + "topFiveMax": 34100 + }, + { + "id": 40, + "teamLv": 40, + "topFiveMin": 34321, + "topFiveMax": 35260 + }, + { + "id": 41, + "teamLv": 41, + "topFiveMin": 35601, + "topFiveMax": 36900 + }, + { + "id": 42, + "teamLv": 42, + "topFiveMin": 36901, + "topFiveMax": 38220 + }, + { + "id": 43, + "teamLv": 43, + "topFiveMin": 38221, + "topFiveMax": 39560 + }, + { + "id": 44, + "teamLv": 44, + "topFiveMin": 39561, + "topFiveMax": 40920 + }, + { + "id": 45, + "teamLv": 45, + "topFiveMin": 40921, + "topFiveMax": 42300 + }, + { + "id": 46, + "teamLv": 46, + "topFiveMin": 42301, + "topFiveMax": 43700 + }, + { + "id": 47, + "teamLv": 47, + "topFiveMin": 43701, + "topFiveMax": 45120 + }, + { + "id": 48, + "teamLv": 48, + "topFiveMin": 45121, + "topFiveMax": 46560 + }, + { + "id": 49, + "teamLv": 49, + "topFiveMin": 46561, + "topFiveMax": 48020 + }, + { + "id": 50, + "teamLv": 50, + "topFiveMin": 48021, + "topFiveMax": 49500 + }, + { + "id": 51, + "teamLv": 51, + "topFiveMin": 49501, + "topFiveMax": 51000 + }, + { + "id": 52, + "teamLv": 52, + "topFiveMin": 51001, + "topFiveMax": 52520 + }, + { + "id": 53, + "teamLv": 53, + "topFiveMin": 52521, + "topFiveMax": 54060 + }, + { + "id": 54, + "teamLv": 54, + "topFiveMin": 54061, + "topFiveMax": 55620 + }, + { + "id": 55, + "teamLv": 55, + "topFiveMin": 55621, + "topFiveMax": 57200 + }, + { + "id": 56, + "teamLv": 56, + "topFiveMin": 57201, + "topFiveMax": 58800 + }, + { + "id": 57, + "teamLv": 57, + "topFiveMin": 58801, + "topFiveMax": 60420 + }, + { + "id": 58, + "teamLv": 58, + "topFiveMin": 60421, + "topFiveMax": 62060 + }, + { + "id": 59, + "teamLv": 59, + "topFiveMin": 62061, + "topFiveMax": 63720 + }, + { + "id": 60, + "teamLv": 60, + "topFiveMin": 63721, + "topFiveMax": 65400 + }, + { + "id": 61, + "teamLv": 61, + "topFiveMin": 65401, + "topFiveMax": 67100 + }, + { + "id": 62, + "teamLv": 62, + "topFiveMin": 67101, + "topFiveMax": 68820 + }, + { + "id": 63, + "teamLv": 63, + "topFiveMin": 68821, + "topFiveMax": 70560 + }, + { + "id": 64, + "teamLv": 64, + "topFiveMin": 70561, + "topFiveMax": 72320 + }, + { + "id": 65, + "teamLv": 65, + "topFiveMin": 72321, + "topFiveMax": 74100 + }, + { + "id": 66, + "teamLv": 66, + "topFiveMin": 74101, + "topFiveMax": 75900 + }, + { + "id": 67, + "teamLv": 67, + "topFiveMin": 75901, + "topFiveMax": 77720 + }, + { + "id": 68, + "teamLv": 68, + "topFiveMin": 77721, + "topFiveMax": 79560 + }, + { + "id": 69, + "teamLv": 69, + "topFiveMin": 79561, + "topFiveMax": 81420 + }, + { + "id": 70, + "teamLv": 70, + "topFiveMin": 81421, + "topFiveMax": 83300 + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_war_conditions.json b/shared/resource/jsons/dic_war_conditions.json old mode 100644 new mode 100755 index d6f965b89..75a898a2d --- a/shared/resource/jsons/dic_war_conditions.json +++ b/shared/resource/jsons/dic_war_conditions.json @@ -1,3113 +1,3632 @@ [ { + "id": 1, "warid": 107, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 2, "warid": 107, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 3, "warid": 107, "c_type": 106, "data": "3&", "describe": "3回合内获得胜利" }, { - "warid": 111, + "id": 4, + "warid": 112, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { - "warid": 111, + "id": 5, + "warid": 112, "c_type": 102, "data": "1&", "describe": "我军撤退人数不超过1人" }, { - "warid": 111, + "id": 6, + "warid": 112, "c_type": 106, "data": "5&", "describe": "5回合内获得胜利" }, { - "warid": 115, + "id": 7, + "warid": 116, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { - "warid": 115, + "id": 8, + "warid": 116, "c_type": 102, "data": "1&", "describe": "我军撤退人数不超过1人" }, { - "warid": 115, + "id": 9, + "warid": 116, "c_type": 106, "data": "7&", "describe": "7回合内获得胜利" }, { - "warid": 119, + "id": 10, + "warid": 120, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { - "warid": 119, + "id": 11, + "warid": 120, "c_type": 102, "data": "2&", "describe": "我军撤退人数不超过2人" }, { - "warid": 119, + "id": 12, + "warid": 120, "c_type": 106, "data": "5&", "describe": "5回合内获得胜利" }, { - "warid": 123, + "id": 13, + "warid": 124, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { - "warid": 123, + "id": 14, + "warid": 124, "c_type": 109, "data": "4&", "describe": "我军出战人数不超过4人" }, { - "warid": 123, + "id": 15, + "warid": 124, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { - "warid": 127, + "id": 16, + "warid": 128, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { - "warid": 127, + "id": 17, + "warid": 128, "c_type": 109, "data": "4&", "describe": "我军出战人数不超过4人" }, { - "warid": 127, + "id": 18, + "warid": 128, "c_type": 102, "data": "2&", "describe": "我军撤退人数不超过2人" }, { + "id": 19, "warid": 1000, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 20, "warid": 1000, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 21, "warid": 1000, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 22, "warid": 1001, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 23, "warid": 1001, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 24, "warid": 1001, "c_type": 106, "data": "13&", "describe": "13回合内获得胜利" }, { + "id": 25, "warid": 1002, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 26, "warid": 1002, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 27, "warid": 1002, "c_type": 102, "data": "2&", "describe": "我军撤退小于2" }, { + "id": 28, "warid": 1003, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 29, "warid": 1003, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 30, "warid": 1003, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 31, "warid": 1004, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 32, "warid": 1004, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 33, "warid": 1004, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 34, "warid": 1005, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 35, "warid": 1005, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 36, "warid": 1005, "c_type": 108, "data": "2&", "describe": "友军撤退人数不超过2" }, { + "id": 37, "warid": 1006, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 38, "warid": 1006, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 39, "warid": 1006, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 40, "warid": 1007, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 41, "warid": 1007, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 42, "warid": 1007, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 43, "warid": 1008, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 44, "warid": 1008, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 45, "warid": 1008, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 46, "warid": 1009, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 47, "warid": 1009, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 48, "warid": 1009, "c_type": 106, "data": "13&", "describe": "13回合内获得胜利" }, { + "id": 49, "warid": 1010, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 50, "warid": 1010, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 51, "warid": 1010, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 52, "warid": 1011, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 53, "warid": 1011, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 54, "warid": 1011, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 55, "warid": 1012, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 56, "warid": 1012, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 57, "warid": 1012, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 58, "warid": 1013, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 59, "warid": 1013, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 60, "warid": 1013, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 61, "warid": 1014, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 62, "warid": 1014, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 63, "warid": 1014, "c_type": 108, "data": "2&", "describe": "友军撤退人数不超过2" }, { + "id": 64, "warid": 1015, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 65, "warid": 1015, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 66, "warid": 1015, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 67, "warid": 1016, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 68, "warid": 1016, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 69, "warid": 1016, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 70, "warid": 1017, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 71, "warid": 1017, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 72, "warid": 1017, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 73, "warid": 1018, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 74, "warid": 1018, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 75, "warid": 1018, "c_type": 106, "data": "13&", "describe": "13回合内获得胜利" }, { + "id": 76, "warid": 1019, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 77, "warid": 1019, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 78, "warid": 1019, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 79, "warid": 1020, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 80, "warid": 1020, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 81, "warid": 1020, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 82, "warid": 1021, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 83, "warid": 1021, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 84, "warid": 1021, "c_type": 108, "data": "2&", "describe": "友军撤退人数不超过2" }, { + "id": 85, "warid": 1022, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 86, "warid": 1022, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 87, "warid": 1022, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 88, "warid": 1023, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 89, "warid": 1023, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 90, "warid": 1023, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 91, "warid": 1024, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 92, "warid": 1024, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 93, "warid": 1024, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 94, "warid": 1025, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 95, "warid": 1025, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 96, "warid": 1025, "c_type": 106, "data": "13&", "describe": "13回合内获得胜利" }, { + "id": 97, "warid": 1026, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 98, "warid": 1026, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 99, "warid": 1026, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 100, "warid": 1027, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 101, "warid": 1027, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 102, "warid": 1027, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 103, "warid": 1028, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 104, "warid": 1028, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 105, "warid": 1028, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 106, "warid": 1029, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 107, "warid": 1029, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 108, "warid": 1029, "c_type": 108, "data": "2&", "describe": "友军撤退人数不超过2" }, { + "id": 109, "warid": 1030, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 110, "warid": 1030, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 111, "warid": 1030, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 112, "warid": 1031, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 113, "warid": 1031, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 114, "warid": 1031, "c_type": 106, "data": "20&", "describe": "20回合内获得胜利" }, { + "id": 115, "warid": 1032, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 116, "warid": 1032, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 117, "warid": 1032, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 118, "warid": 1033, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 119, "warid": 1033, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 120, "warid": 1033, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 121, "warid": 1034, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 122, "warid": 1034, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 123, "warid": 1034, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 124, "warid": 1035, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 125, "warid": 1035, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 126, "warid": 1035, "c_type": 106, "data": "13&", "describe": "13回合内获得胜利" }, { + "id": 127, "warid": 1036, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 128, "warid": 1036, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 129, "warid": 1036, "c_type": 108, "data": "2&", "describe": "友军撤退人数不超过2" }, { + "id": 130, "warid": 1037, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 131, "warid": 1037, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 132, "warid": 1037, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 133, "warid": 1038, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 134, "warid": 1038, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 135, "warid": 1038, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 136, "warid": 1039, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 137, "warid": 1039, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 138, "warid": 1039, "c_type": 106, "data": "20&", "describe": "20回合内获得胜利" }, { + "id": 139, "warid": 1040, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 140, "warid": 1040, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 141, "warid": 1040, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 142, "warid": 1041, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 143, "warid": 1041, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 144, "warid": 1041, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 145, "warid": 1042, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 146, "warid": 1042, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 147, "warid": 1042, "c_type": 108, "data": "2&", "describe": "友军撤退人数不超过2" }, { + "id": 148, "warid": 1043, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 149, "warid": 1043, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 150, "warid": 1043, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 151, "warid": 1044, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 152, "warid": 1044, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 153, "warid": 1044, "c_type": 106, "data": "20&", "describe": "20回合内获得胜利" }, { + "id": 154, "warid": 1045, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 155, "warid": 1045, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 156, "warid": 1045, "c_type": 106, "data": "13&", "describe": "13回合内获得胜利" }, { + "id": 157, "warid": 1046, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 158, "warid": 1046, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 159, "warid": 1046, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 160, "warid": 1047, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 161, "warid": 1047, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 162, "warid": 1047, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 163, "warid": 1048, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 164, "warid": 1048, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 165, "warid": 1048, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 166, "warid": 1049, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 167, "warid": 1049, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 168, "warid": 1049, "c_type": 108, "data": "2&", "describe": "友军撤退人数不超过2" }, { + "id": 169, "warid": 1050, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 170, "warid": 1050, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 171, "warid": 1050, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 172, "warid": 1051, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 173, "warid": 1051, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 174, "warid": 1051, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 175, "warid": 1052, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 176, "warid": 1052, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 177, "warid": 1052, "c_type": 106, "data": "13&", "describe": "13回合内获得胜利" }, { + "id": 178, "warid": 1053, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 179, "warid": 1053, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 180, "warid": 1053, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 181, "warid": 1054, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 182, "warid": 1054, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 183, "warid": 1054, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 184, "warid": 1055, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 185, "warid": 1055, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 186, "warid": 1055, "c_type": 106, "data": "20&", "describe": "20回合内获得胜利" }, { + "id": 187, "warid": 1056, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 188, "warid": 1056, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 189, "warid": 1056, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 190, "warid": 1057, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 191, "warid": 1057, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 192, "warid": 1057, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 193, "warid": 1058, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 194, "warid": 1058, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 195, "warid": 1058, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 196, "warid": 1059, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 197, "warid": 1059, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 198, "warid": 1059, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 199, "warid": 1060, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 200, "warid": 1060, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 201, "warid": 1060, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 202, "warid": 1061, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 203, "warid": 1061, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 204, "warid": 1061, "c_type": 106, "data": "13&", "describe": "13回合内获得胜利" }, { + "id": 205, "warid": 1062, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 206, "warid": 1062, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 207, "warid": 1062, "c_type": 106, "data": "20&", "describe": "20回合内获得胜利" }, { + "id": 208, "warid": 1063, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 209, "warid": 1063, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 210, "warid": 1063, "c_type": 108, "data": "2&", "describe": "友军撤退人数不超过2" }, { + "id": 211, "warid": 1064, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 212, "warid": 1064, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 213, "warid": 1064, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 214, "warid": 1065, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 215, "warid": 1065, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 216, "warid": 1065, "c_type": 108, "data": "2&", "describe": "友军撤退人数不超过2" }, { + "id": 217, "warid": 1066, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 218, "warid": 1066, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 219, "warid": 1066, "c_type": 106, "data": "13&", "describe": "13回合内获得胜利" }, { + "id": 220, "warid": 1067, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 221, "warid": 1067, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 222, "warid": 1067, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 223, "warid": 1068, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 224, "warid": 1068, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 225, "warid": 1068, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 226, "warid": 1069, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 227, "warid": 1069, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 228, "warid": 1069, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 229, "warid": 1070, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 230, "warid": 1070, "c_type": 106, "data": "13&", "describe": "13回合内获得胜利" }, { + "id": 231, "warid": 1070, "c_type": 102, "data": "2&", "describe": "我军撤退小于2" }, { + "id": 232, "warid": 1071, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 233, "warid": 1071, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 234, "warid": 1071, "c_type": 106, "data": "20&", "describe": "20回合内获得胜利" }, { + "id": 235, "warid": 1072, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 236, "warid": 1072, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 237, "warid": 1072, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 238, "warid": 1073, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 239, "warid": 1073, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 240, "warid": 1073, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 241, "warid": 1074, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 242, "warid": 1074, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 243, "warid": 1074, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 244, "warid": 1075, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 245, "warid": 1075, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 246, "warid": 1075, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 247, "warid": 1076, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 248, "warid": 1076, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 249, "warid": 1076, "c_type": 108, "data": "2&", "describe": "友军撤退人数不超过2" }, { + "id": 250, "warid": 1077, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 251, "warid": 1077, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 252, "warid": 1077, "c_type": 106, "data": "20&", "describe": "20回合内获得胜利" }, { + "id": 253, "warid": 1078, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 254, "warid": 1078, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 255, "warid": 1078, "c_type": 106, "data": "13&", "describe": "13回合内获得胜利" }, { + "id": 256, "warid": 1079, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 257, "warid": 1079, "c_type": 106, "data": "13&", "describe": "13回合内获得胜利" }, { + "id": 258, "warid": 1079, "c_type": 102, "data": "2&", "describe": "我军撤退小于2" }, { + "id": 259, "warid": 1080, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 260, "warid": 1080, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 261, "warid": 1080, "c_type": 106, "data": "13&", "describe": "13回合内获得胜利" }, { + "id": 262, "warid": 1081, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 263, "warid": 1081, "c_type": 102, "data": "2&", "describe": "我军撤退人数不超过2" }, { + "id": 264, "warid": 1081, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 265, "warid": 1082, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 266, "warid": 1082, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 267, "warid": 1082, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 268, "warid": 1083, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 269, "warid": 1083, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 270, "warid": 1083, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 271, "warid": 1084, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 272, "warid": 1084, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 273, "warid": 1084, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 274, "warid": 1085, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 275, "warid": 1085, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 276, "warid": 1085, "c_type": 108, "data": "2&", "describe": "友军撤退人数不超过2" }, { + "id": 277, "warid": 1086, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 278, "warid": 1086, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 279, "warid": 1086, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 280, "warid": 1087, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 281, "warid": 1087, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 282, "warid": 1087, "c_type": 106, "data": "15&", "describe": "15回合内获胜" }, { + "id": 283, "warid": 1088, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 284, "warid": 1088, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 285, "warid": 1088, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 286, "warid": 1089, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 287, "warid": 1089, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 288, "warid": 1089, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 289, "warid": 1090, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 290, "warid": 1090, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 291, "warid": 1090, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 292, "warid": 1091, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 293, "warid": 1091, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 294, "warid": 1091, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 295, "warid": 1092, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 296, "warid": 1092, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 297, "warid": 1092, "c_type": 106, "data": "20&", "describe": "20回合内获得胜利" }, { + "id": 298, "warid": 1093, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 299, "warid": 1093, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 300, "warid": 1093, "c_type": 106, "data": "13&", "describe": "13回合内获得胜利" }, { + "id": 301, "warid": 1094, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 302, "warid": 1094, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 303, "warid": 1094, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 304, "warid": 1095, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 305, "warid": 1095, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 306, "warid": 1095, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 307, "warid": 1096, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 308, "warid": 1096, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 309, "warid": 1096, "c_type": 106, "data": "13&", "describe": "13回合内获得胜利" }, { + "id": 310, "warid": 1097, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 311, "warid": 1097, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 312, "warid": 1097, "c_type": 108, "data": "2&", "describe": "友军撤退人数不超过2" }, { + "id": 313, "warid": 1098, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 314, "warid": 1098, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 315, "warid": 1098, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 316, "warid": 1099, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 317, "warid": 1099, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 318, "warid": 1099, "c_type": 106, "data": "15&", "describe": "15回合内获胜" }, { + "id": 319, "warid": 1100, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 320, "warid": 1100, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 321, "warid": 1100, "c_type": 106, "data": "20&", "describe": "20回合内获得胜利" }, { + "id": 322, "warid": 1101, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 323, "warid": 1101, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 324, "warid": 1101, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 325, "warid": 1102, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 326, "warid": 1102, "c_type": 102, "data": "2&", "describe": "我军撤退人数不超过2" }, { + "id": 327, "warid": 1102, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 328, "warid": 1103, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 329, "warid": 1103, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 330, "warid": 1103, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 331, "warid": 1104, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 332, "warid": 1104, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 333, "warid": 1104, "c_type": 106, "data": "15&", "describe": "15回合内获胜" }, { + "id": 334, "warid": 1105, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 335, "warid": 1105, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 336, "warid": 1105, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 337, "warid": 1106, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 338, "warid": 1106, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 339, "warid": 1106, "c_type": 106, "data": "13&", "describe": "13回合内获得胜利" }, { + "id": 340, "warid": 1107, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 341, "warid": 1107, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 342, "warid": 1107, "c_type": 108, "data": "2&", "describe": "友军撤退人数不超过2" }, { + "id": 343, "warid": 1108, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 344, "warid": 1108, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 345, "warid": 1108, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 346, "warid": 1109, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 347, "warid": 1109, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 348, "warid": 1109, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 349, "warid": 1110, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 350, "warid": 1110, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 351, "warid": 1110, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 352, "warid": 1111, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 353, "warid": 1111, "c_type": 102, "data": "2&", "describe": "我军撤退人数不超过2" }, { + "id": 354, "warid": 1111, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 355, "warid": 1112, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 356, "warid": 1112, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 357, "warid": 1112, "c_type": 106, "data": "13&", "describe": "13回合内获得胜利" }, { + "id": 358, "warid": 1113, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 359, "warid": 1113, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 360, "warid": 1113, "c_type": 108, "data": "2&", "describe": "友军撤退人数不超过2" }, { + "id": 361, "warid": 1114, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 362, "warid": 1114, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 363, "warid": 1114, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 364, "warid": 1115, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 365, "warid": 1115, "c_type": 102, "data": "2&", "describe": "我军撤退人数不超过2" }, { + "id": 366, "warid": 1115, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 367, "warid": 1116, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 368, "warid": 1116, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 369, "warid": 1116, "c_type": 106, "data": "15&", "describe": "15回合内获胜" }, { + "id": 370, "warid": 1117, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 371, "warid": 1117, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 372, "warid": 1117, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 373, "warid": 1118, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 374, "warid": 1118, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 375, "warid": 1118, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 376, "warid": 1119, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 377, "warid": 1119, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 378, "warid": 1119, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 379, "warid": 1120, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 380, "warid": 1120, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 381, "warid": 1120, "c_type": 106, "data": "15&", "describe": "15回合内获胜" }, { + "id": 382, "warid": 1121, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 383, "warid": 1121, "c_type": 102, "data": "2&", "describe": "我军撤退人数不超过2" }, { + "id": 384, "warid": 1121, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 385, "warid": 1122, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 386, "warid": 1122, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 387, "warid": 1122, "c_type": 106, "data": "20&", "describe": "20回合内获得胜利" }, { + "id": 388, "warid": 1123, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 389, "warid": 1123, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 390, "warid": 1123, "c_type": 108, "data": "2&", "describe": "友军撤退人数不超过2" }, { + "id": 391, "warid": 1124, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 392, "warid": 1124, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 393, "warid": 1124, "c_type": 106, "data": "13&", "describe": "13回合内获得胜利" }, { + "id": 394, "warid": 1125, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 395, "warid": 1125, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 396, "warid": 1125, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 397, "warid": 1126, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 398, "warid": 1126, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 399, "warid": 1126, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 400, "warid": 1127, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 401, "warid": 1127, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 402, "warid": 1127, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 403, "warid": 1128, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 404, "warid": 1128, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 405, "warid": 1128, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 406, "warid": 1129, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 407, "warid": 1129, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 408, "warid": 1129, "c_type": 106, "data": "13&", "describe": "13回合内获得胜利" }, { + "id": 409, "warid": 1130, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 410, "warid": 1130, "c_type": 102, "data": "2&", "describe": "我军撤退人数不超过2" }, { + "id": 411, "warid": 1130, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 412, "warid": 1131, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 413, "warid": 1131, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 414, "warid": 1131, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 415, "warid": 1132, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 416, "warid": 1132, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 417, "warid": 1132, "c_type": 106, "data": "15&", "describe": "15回合内获胜" }, { + "id": 418, "warid": 1133, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 419, "warid": 1133, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 420, "warid": 1133, "c_type": 108, "data": "2&", "describe": "友军撤退人数不超过2" }, { + "id": 421, "warid": 1134, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 422, "warid": 1134, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 423, "warid": 1134, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 424, "warid": 1135, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 425, "warid": 1135, "c_type": 108, "data": "2&", "describe": "友军撤退人数不超过2" }, { + "id": 426, "warid": 1135, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 427, "warid": 1136, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 428, "warid": 1136, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 429, "warid": 1136, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 430, "warid": 1137, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 431, "warid": 1137, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 432, "warid": 1137, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 433, "warid": 1138, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 434, "warid": 1138, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 435, "warid": 1138, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 436, "warid": 1139, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 437, "warid": 1139, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 438, "warid": 1139, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 439, "warid": 1140, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 440, "warid": 1140, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 441, "warid": 1140, "c_type": 108, "data": "2&", "describe": "友军撤退人数不超过2" }, { + "id": 442, "warid": 1141, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 443, "warid": 1141, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 444, "warid": 1141, "c_type": 106, "data": "20&", "describe": "20回合内获得胜利" }, { + "id": 445, "warid": 1142, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 446, "warid": 1142, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 447, "warid": 1142, "c_type": 106, "data": "13&", "describe": "13回合内获得胜利" }, { + "id": 448, "warid": 1143, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 449, "warid": 1143, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 450, "warid": 1143, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 451, "warid": 1144, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 452, "warid": 1144, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 453, "warid": 1144, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 454, "warid": 1145, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 455, "warid": 1145, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 456, "warid": 1145, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 457, "warid": 1146, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 458, "warid": 1146, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 459, "warid": 1146, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 460, "warid": 1147, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 461, "warid": 1147, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 462, "warid": 1147, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 463, "warid": 1148, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 464, "warid": 1148, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 465, "warid": 1148, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 466, "warid": 1149, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 467, "warid": 1149, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 468, "warid": 1149, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 469, "warid": 1150, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 470, "warid": 1150, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 471, "warid": 1150, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 472, "warid": 1151, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 473, "warid": 1151, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 474, "warid": 1151, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 475, "warid": 1152, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 476, "warid": 1152, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 477, "warid": 1152, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 478, "warid": 1153, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 479, "warid": 1153, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 480, "warid": 1153, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 481, "warid": 1154, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 482, "warid": 1154, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 483, "warid": 1154, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 484, "warid": 1155, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 485, "warid": 1155, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 486, "warid": 1155, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 487, "warid": 1156, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 488, "warid": 1156, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 489, "warid": 1156, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 490, "warid": 1157, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 491, "warid": 1157, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 492, "warid": 1157, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 493, "warid": 1158, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 494, "warid": 1158, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 495, "warid": 1158, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 496, "warid": 1159, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 497, "warid": 1159, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 498, "warid": 1159, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 499, "warid": 1160, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 500, "warid": 1160, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 501, "warid": 1160, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 502, "warid": 1161, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 503, "warid": 1161, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 504, "warid": 1161, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 505, "warid": 3001, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 506, "warid": 3001, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 507, "warid": 3001, "c_type": 108, "data": "1&", "describe": "友军死亡不超过1" }, { + "id": 508, "warid": 5001, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 509, "warid": 5001, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 510, "warid": 5001, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 511, "warid": 5002, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 512, "warid": 5002, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 513, "warid": 5002, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 514, "warid": 5501, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 515, "warid": 5501, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 516, "warid": 5501, "c_type": 106, "data": "10&", "describe": "10回合内获得胜利" }, { + "id": 517, "warid": 5502, "c_type": 302, "data": "99&", "describe": "取得胜利" }, { + "id": 518, "warid": 5502, "c_type": 102, "data": "0&", "describe": "我军全员生存" }, { + "id": 519, "warid": 5502, "c_type": 106, "data": "10&", diff --git a/shared/resource/jsons/dic_zyz_gk_pvp.json b/shared/resource/jsons/dic_zyz_gk_pvp.json new file mode 100755 index 000000000..0c8b215e5 --- /dev/null +++ b/shared/resource/jsons/dic_zyz_gk_pvp.json @@ -0,0 +1,47 @@ +[ + { + "war_id": 4501, + "dispatchJsonId": 4501, + "bg_img_id": 107, + "warType": 9, + "gk_name": "地图1", + "victoryInfoInUI": "5回合内杀死2个敌军", + "victoryCondition ": "111&5&2&" + }, + { + "war_id": 4502, + "dispatchJsonId": 4502, + "bg_img_id": 542, + "warType": 9, + "gk_name": "地图2", + "victoryInfoInUI": "我军死亡武将不超过2人", + "victoryCondition ": "102&2&" + }, + { + "war_id": 4503, + "dispatchJsonId": 4503, + "bg_img_id": 543, + "warType": 9, + "gk_name": "地图3", + "victoryInfoInUI": "我军全员生存", + "victoryCondition ": "102&0&" + }, + { + "war_id": 4504, + "dispatchJsonId": 4504, + "bg_img_id": 501, + "warType": 9, + "gk_name": "地图4", + "victoryInfoInUI": "8回合内获得胜利", + "victoryCondition ": "106&8&" + }, + { + "war_id": 4505, + "dispatchJsonId": 4505, + "bg_img_id": 1003, + "warType": 9, + "gk_name": "地图5", + "victoryInfoInUI": "同一名武将击杀3名敌军", + "victoryCondition ": "400&3&" + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_zyz_movePoint.json b/shared/resource/jsons/dic_zyz_movePoint.json old mode 100644 new mode 100755 index d20da33f8..a641d3011 --- a/shared/resource/jsons/dic_zyz_movePoint.json +++ b/shared/resource/jsons/dic_zyz_movePoint.json @@ -242,7 +242,7 @@ { "pointId": 31, "position": "-555&721", - "previousPoint": "23&", + "previousPoint": "23&31", "wayPoints": "&", "chapater": 1, "tips": "遗迹第一关" @@ -250,7 +250,7 @@ { "pointId": 32, "position": "-1294&721", - "previousPoint": "31&", + "previousPoint": "31&32", "wayPoints": "&", "chapater": 1, "tips": "遗迹第二关" @@ -258,7 +258,7 @@ { "pointId": 33, "position": "-1200&1038", - "previousPoint": "32&", + "previousPoint": "32&33", "wayPoints": "&", "chapater": 1, "tips": "遗迹第三关" diff --git a/shared/resource/warJsons/4501.json b/shared/resource/warJsons/4501.json new file mode 100755 index 000000000..85857ec36 --- /dev/null +++ b/shared/resource/warJsons/4501.json @@ -0,0 +1,362 @@ +[ + { + "warID": 4501, + "actorName": "我军", + "actorId": 0, + "dataId": 0, + "relation": 0, + "outIndex": 0, + "dirction": 2, + "x": 11, + "y": 6, + "var": 501, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4501, + "actorName": "我军", + "actorId": 0, + "dataId": 1, + "relation": 0, + "outIndex": 1, + "dirction": 2, + "x": 12, + "y": 6, + "var": 502, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4501, + "actorName": "我军", + "actorId": 0, + "dataId": 2, + "relation": 0, + "outIndex": 2, + "dirction": 2, + "x": 13, + "y": 6, + "var": 503, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4501, + "actorName": "我军", + "actorId": 0, + "dataId": 3, + "relation": 0, + "outIndex": 3, + "dirction": 2, + "x": 11, + "y": 5, + "var": 504, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4501, + "actorName": "我军", + "actorId": 0, + "dataId": 4, + "relation": 0, + "outIndex": 4, + "dirction": 2, + "x": 12, + "y": 5, + "var": 505, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4501, + "actorName": "我军", + "actorId": 0, + "dataId": 5, + "relation": 0, + "outIndex": 5, + "dirction": 2, + "x": 13, + "y": 5, + "var": 506, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4501, + "actorName": "我军", + "actorId": 0, + "dataId": 6, + "relation": 0, + "outIndex": 6, + "dirction": 2, + "x": 11, + "y": 4, + "var": 507, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4501, + "actorName": "我军", + "actorId": 0, + "dataId": 7, + "relation": 0, + "outIndex": 7, + "dirction": 2, + "x": 12, + "y": 4, + "var": 508, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4501, + "actorName": "我军", + "actorId": 0, + "dataId": 8, + "relation": 0, + "outIndex": 8, + "dirction": 2, + "x": 13, + "y": 4, + "var": 509, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4501, + "actorName": "李典", + "actorId": 312, + "dataId": 2001, + "relation": 2, + "outIndex": 0, + "dirction": 1, + "x": 4, + "y": 6, + "var": 1501, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4501, + "actorName": "贾诩", + "actorId": 314, + "dataId": 2002, + "relation": 2, + "outIndex": 1, + "dirction": 1, + "x": 5, + "y": 6, + "var": 1502, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4501, + "actorName": "许褚", + "actorId": 315, + "dataId": 2003, + "relation": 2, + "outIndex": 2, + "dirction": 1, + "x": 5, + "y": 5, + "var": 1503, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4501, + "actorName": "邓艾", + "actorId": 309, + "dataId": 2004, + "relation": 2, + "outIndex": 3, + "dirction": 1, + "x": 4, + "y": 4, + "var": 1504, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4501, + "actorName": "曹仁", + "actorId": 311, + "dataId": 2005, + "relation": 2, + "outIndex": 4, + "dirction": 1, + "x": 5, + "y": 4, + "var": 1505, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4501, + "actorName": "敌军", + "actorId": 0, + "dataId": 2006, + "relation": 2, + "outIndex": 5, + "dirction": 1, + "x": 3, + "y": 6, + "var": 1506, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4501, + "actorName": "敌军", + "actorId": 0, + "dataId": 2007, + "relation": 2, + "outIndex": 6, + "dirction": 1, + "x": 3, + "y": 5, + "var": 1507, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4501, + "actorName": "敌军", + "actorId": 0, + "dataId": 2008, + "relation": 2, + "outIndex": 7, + "dirction": 1, + "x": 4, + "y": 5, + "var": 1508, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4501, + "actorName": "敌军", + "actorId": 0, + "dataId": 2009, + "relation": 2, + "outIndex": 8, + "dirction": 1, + "x": 3, + "y": 4, + "var": 1509, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + } +] \ No newline at end of file diff --git a/shared/resource/warJsons/4502.json b/shared/resource/warJsons/4502.json new file mode 100755 index 000000000..89e7943ec --- /dev/null +++ b/shared/resource/warJsons/4502.json @@ -0,0 +1,362 @@ +[ + { + "warID": 4502, + "actorName": "我军", + "actorId": 0, + "dataId": 0, + "relation": 0, + "outIndex": 0, + "dirction": 2, + "x": 12, + "y": 8, + "var": 0, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4502, + "actorName": "我军", + "actorId": 0, + "dataId": 1, + "relation": 0, + "outIndex": 1, + "dirction": 2, + "x": 13, + "y": 8, + "var": 1, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4502, + "actorName": "我军", + "actorId": 0, + "dataId": 2, + "relation": 0, + "outIndex": 2, + "dirction": 2, + "x": 14, + "y": 8, + "var": 2, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4502, + "actorName": "我军", + "actorId": 0, + "dataId": 3, + "relation": 0, + "outIndex": 3, + "dirction": 2, + "x": 12, + "y": 7, + "var": 3, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4502, + "actorName": "我军", + "actorId": 0, + "dataId": 4, + "relation": 0, + "outIndex": 4, + "dirction": 2, + "x": 13, + "y": 7, + "var": 4, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4502, + "actorName": "我军", + "actorId": 0, + "dataId": 5, + "relation": 0, + "outIndex": 5, + "dirction": 2, + "x": 14, + "y": 7, + "var": 5, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4502, + "actorName": "我军", + "actorId": 0, + "dataId": 6, + "relation": 0, + "outIndex": 6, + "dirction": 2, + "x": 12, + "y": 6, + "var": 6, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4502, + "actorName": "我军", + "actorId": 0, + "dataId": 7, + "relation": 0, + "outIndex": 7, + "dirction": 2, + "x": 13, + "y": 6, + "var": 7, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4502, + "actorName": "我军", + "actorId": 0, + "dataId": 8, + "relation": 0, + "outIndex": 8, + "dirction": 2, + "x": 14, + "y": 6, + "var": 8, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4502, + "actorName": "李典", + "actorId": 312, + "dataId": 2001, + "relation": 2, + "outIndex": 0, + "dirction": 1, + "x": 6, + "y": 8, + "var": 2001, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4502, + "actorName": "贾诩", + "actorId": 314, + "dataId": 2002, + "relation": 2, + "outIndex": 1, + "dirction": 1, + "x": 7, + "y": 8, + "var": 2002, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4502, + "actorName": "许褚", + "actorId": 315, + "dataId": 2003, + "relation": 2, + "outIndex": 2, + "dirction": 1, + "x": 7, + "y": 7, + "var": 2003, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4502, + "actorName": "邓艾", + "actorId": 309, + "dataId": 2004, + "relation": 2, + "outIndex": 3, + "dirction": 1, + "x": 6, + "y": 6, + "var": 2004, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4502, + "actorName": "曹仁", + "actorId": 311, + "dataId": 2005, + "relation": 2, + "outIndex": 4, + "dirction": 1, + "x": 7, + "y": 6, + "var": 2005, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4502, + "actorName": "敌军", + "actorId": 0, + "dataId": 2006, + "relation": 2, + "outIndex": 5, + "dirction": 1, + "x": 5, + "y": 8, + "var": 2006, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4502, + "actorName": "敌军", + "actorId": 0, + "dataId": 2007, + "relation": 2, + "outIndex": 6, + "dirction": 1, + "x": 5, + "y": 7, + "var": 2007, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4502, + "actorName": "敌军", + "actorId": 0, + "dataId": 2008, + "relation": 2, + "outIndex": 7, + "dirction": 1, + "x": 6, + "y": 7, + "var": 2008, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4502, + "actorName": "敌军", + "actorId": 0, + "dataId": 2009, + "relation": 2, + "outIndex": 8, + "dirction": 1, + "x": 5, + "y": 6, + "var": 2009, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + } +] \ No newline at end of file diff --git a/shared/resource/warJsons/4503.json b/shared/resource/warJsons/4503.json new file mode 100755 index 000000000..5593787eb --- /dev/null +++ b/shared/resource/warJsons/4503.json @@ -0,0 +1,362 @@ +[ + { + "warID": 4503, + "actorName": "我军", + "actorId": 0, + "dataId": 0, + "relation": 0, + "outIndex": 0, + "dirction": 2, + "x": 11, + "y": 6, + "var": 0, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4503, + "actorName": "我军", + "actorId": 0, + "dataId": 1, + "relation": 0, + "outIndex": 1, + "dirction": 2, + "x": 12, + "y": 6, + "var": 1, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4503, + "actorName": "我军", + "actorId": 0, + "dataId": 2, + "relation": 0, + "outIndex": 2, + "dirction": 2, + "x": 13, + "y": 6, + "var": 2, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4503, + "actorName": "我军", + "actorId": 0, + "dataId": 3, + "relation": 0, + "outIndex": 3, + "dirction": 2, + "x": 11, + "y": 5, + "var": 3, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4503, + "actorName": "我军", + "actorId": 0, + "dataId": 4, + "relation": 0, + "outIndex": 4, + "dirction": 2, + "x": 12, + "y": 5, + "var": 4, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4503, + "actorName": "我军", + "actorId": 0, + "dataId": 5, + "relation": 0, + "outIndex": 5, + "dirction": 2, + "x": 13, + "y": 5, + "var": 5, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4503, + "actorName": "我军", + "actorId": 0, + "dataId": 6, + "relation": 0, + "outIndex": 6, + "dirction": 2, + "x": 11, + "y": 4, + "var": 6, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4503, + "actorName": "我军", + "actorId": 0, + "dataId": 7, + "relation": 0, + "outIndex": 7, + "dirction": 2, + "x": 12, + "y": 4, + "var": 7, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4503, + "actorName": "我军", + "actorId": 0, + "dataId": 8, + "relation": 0, + "outIndex": 8, + "dirction": 2, + "x": 13, + "y": 4, + "var": 8, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4503, + "actorName": "李典", + "actorId": 312, + "dataId": 2001, + "relation": 2, + "outIndex": 0, + "dirction": 1, + "x": 2, + "y": 6, + "var": 2001, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4503, + "actorName": "贾诩", + "actorId": 314, + "dataId": 2002, + "relation": 2, + "outIndex": 1, + "dirction": 1, + "x": 3, + "y": 6, + "var": 2002, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4503, + "actorName": "许褚", + "actorId": 315, + "dataId": 2003, + "relation": 2, + "outIndex": 2, + "dirction": 1, + "x": 4, + "y": 6, + "var": 2003, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4503, + "actorName": "邓艾", + "actorId": 309, + "dataId": 2004, + "relation": 2, + "outIndex": 3, + "dirction": 1, + "x": 2, + "y": 5, + "var": 2004, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4503, + "actorName": "曹仁", + "actorId": 311, + "dataId": 2005, + "relation": 2, + "outIndex": 4, + "dirction": 1, + "x": 3, + "y": 5, + "var": 2005, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4503, + "actorName": "敌军", + "actorId": 0, + "dataId": 2006, + "relation": 2, + "outIndex": 5, + "dirction": 1, + "x": 4, + "y": 5, + "var": 2006, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4503, + "actorName": "敌军", + "actorId": 0, + "dataId": 2007, + "relation": 2, + "outIndex": 6, + "dirction": 1, + "x": 2, + "y": 4, + "var": 2007, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4503, + "actorName": "敌军", + "actorId": 0, + "dataId": 2008, + "relation": 2, + "outIndex": 7, + "dirction": 1, + "x": 3, + "y": 4, + "var": 2008, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4503, + "actorName": "敌军", + "actorId": 0, + "dataId": 2009, + "relation": 2, + "outIndex": 8, + "dirction": 1, + "x": 4, + "y": 4, + "var": 2009, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + } +] \ No newline at end of file diff --git a/shared/resource/warJsons/4504.json b/shared/resource/warJsons/4504.json new file mode 100755 index 000000000..fb2150ca8 --- /dev/null +++ b/shared/resource/warJsons/4504.json @@ -0,0 +1,362 @@ +[ + { + "warID": 4504, + "actorName": "我军", + "actorId": 0, + "dataId": 0, + "relation": 0, + "outIndex": 0, + "dirction": 2, + "x": 12, + "y": 7, + "var": 0, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4504, + "actorName": "我军", + "actorId": 0, + "dataId": 1, + "relation": 0, + "outIndex": 1, + "dirction": 2, + "x": 13, + "y": 7, + "var": 1, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4504, + "actorName": "我军", + "actorId": 0, + "dataId": 2, + "relation": 0, + "outIndex": 2, + "dirction": 2, + "x": 14, + "y": 7, + "var": 2, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4504, + "actorName": "我军", + "actorId": 0, + "dataId": 3, + "relation": 0, + "outIndex": 3, + "dirction": 2, + "x": 12, + "y": 6, + "var": 3, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4504, + "actorName": "我军", + "actorId": 0, + "dataId": 4, + "relation": 0, + "outIndex": 4, + "dirction": 2, + "x": 13, + "y": 6, + "var": 4, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4504, + "actorName": "我军", + "actorId": 0, + "dataId": 5, + "relation": 0, + "outIndex": 5, + "dirction": 2, + "x": 14, + "y": 6, + "var": 5, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4504, + "actorName": "我军", + "actorId": 0, + "dataId": 6, + "relation": 0, + "outIndex": 6, + "dirction": 2, + "x": 12, + "y": 5, + "var": 6, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4504, + "actorName": "我军", + "actorId": 0, + "dataId": 7, + "relation": 0, + "outIndex": 7, + "dirction": 2, + "x": 13, + "y": 5, + "var": 7, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4504, + "actorName": "我军", + "actorId": 0, + "dataId": 8, + "relation": 0, + "outIndex": 8, + "dirction": 2, + "x": 14, + "y": 5, + "var": 8, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4504, + "actorName": "李典", + "actorId": 312, + "dataId": 2001, + "relation": 2, + "outIndex": 0, + "dirction": 1, + "x": 4, + "y": 7, + "var": 2001, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4504, + "actorName": "贾诩", + "actorId": 314, + "dataId": 2002, + "relation": 2, + "outIndex": 1, + "dirction": 1, + "x": 5, + "y": 7, + "var": 2002, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4504, + "actorName": "许褚", + "actorId": 315, + "dataId": 2003, + "relation": 2, + "outIndex": 2, + "dirction": 1, + "x": 5, + "y": 6, + "var": 2003, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4504, + "actorName": "邓艾", + "actorId": 309, + "dataId": 2004, + "relation": 2, + "outIndex": 3, + "dirction": 1, + "x": 4, + "y": 5, + "var": 2004, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4504, + "actorName": "曹仁", + "actorId": 311, + "dataId": 2005, + "relation": 2, + "outIndex": 4, + "dirction": 1, + "x": 5, + "y": 5, + "var": 2005, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4504, + "actorName": "敌军", + "actorId": 0, + "dataId": 2006, + "relation": 2, + "outIndex": 5, + "dirction": 1, + "x": 3, + "y": 6, + "var": 2006, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4504, + "actorName": "敌军", + "actorId": 0, + "dataId": 2007, + "relation": 2, + "outIndex": 6, + "dirction": 1, + "x": 4, + "y": 6, + "var": 2007, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4504, + "actorName": "敌军", + "actorId": 0, + "dataId": 2008, + "relation": 2, + "outIndex": 7, + "dirction": 1, + "x": 3, + "y": 7, + "var": 2008, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4504, + "actorName": "敌军", + "actorId": 0, + "dataId": 2009, + "relation": 2, + "outIndex": 8, + "dirction": 1, + "x": 3, + "y": 5, + "var": 2009, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + } +] \ No newline at end of file diff --git a/shared/resource/warJsons/4505.json b/shared/resource/warJsons/4505.json new file mode 100755 index 000000000..3a5cd84bf --- /dev/null +++ b/shared/resource/warJsons/4505.json @@ -0,0 +1,362 @@ +[ + { + "warID": 4505, + "actorName": "我军", + "actorId": 0, + "dataId": 0, + "relation": 0, + "outIndex": 0, + "dirction": 2, + "x": 13, + "y": 6, + "var": 0, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4505, + "actorName": "我军", + "actorId": 0, + "dataId": 1, + "relation": 0, + "outIndex": 1, + "dirction": 2, + "x": 14, + "y": 6, + "var": 1, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4505, + "actorName": "我军", + "actorId": 0, + "dataId": 2, + "relation": 0, + "outIndex": 2, + "dirction": 2, + "x": 15, + "y": 6, + "var": 2, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4505, + "actorName": "我军", + "actorId": 0, + "dataId": 3, + "relation": 0, + "outIndex": 3, + "dirction": 2, + "x": 13, + "y": 5, + "var": 3, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4505, + "actorName": "我军", + "actorId": 0, + "dataId": 4, + "relation": 0, + "outIndex": 4, + "dirction": 2, + "x": 14, + "y": 5, + "var": 4, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4505, + "actorName": "我军", + "actorId": 0, + "dataId": 5, + "relation": 0, + "outIndex": 5, + "dirction": 2, + "x": 15, + "y": 5, + "var": 5, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4505, + "actorName": "我军", + "actorId": 0, + "dataId": 6, + "relation": 0, + "outIndex": 6, + "dirction": 2, + "x": 13, + "y": 4, + "var": 6, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4505, + "actorName": "我军", + "actorId": 0, + "dataId": 7, + "relation": 0, + "outIndex": 7, + "dirction": 2, + "x": 14, + "y": 4, + "var": 7, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4505, + "actorName": "我军", + "actorId": 0, + "dataId": 8, + "relation": 0, + "outIndex": 8, + "dirction": 2, + "x": 15, + "y": 4, + "var": 8, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4505, + "actorName": "李典", + "actorId": 312, + "dataId": 2001, + "relation": 2, + "outIndex": 0, + "dirction": 1, + "x": 3, + "y": 6, + "var": 2001, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4505, + "actorName": "贾诩", + "actorId": 314, + "dataId": 2002, + "relation": 2, + "outIndex": 1, + "dirction": 1, + "x": 4, + "y": 6, + "var": 2002, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4505, + "actorName": "许褚", + "actorId": 315, + "dataId": 2003, + "relation": 2, + "outIndex": 2, + "dirction": 1, + "x": 4, + "y": 5, + "var": 2003, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4505, + "actorName": "邓艾", + "actorId": 309, + "dataId": 2004, + "relation": 2, + "outIndex": 3, + "dirction": 1, + "x": 3, + "y": 4, + "var": 2004, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4505, + "actorName": "曹仁", + "actorId": 311, + "dataId": 2005, + "relation": 2, + "outIndex": 4, + "dirction": 1, + "x": 4, + "y": 4, + "var": 2005, + "lv": 0, + "hide": 0, + "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": "6001&", + "star": 0, + "spine": 0 + }, + { + "warID": 4505, + "actorName": "敌军", + "actorId": 0, + "dataId": 2006, + "relation": 2, + "outIndex": 5, + "dirction": 1, + "x": 2, + "y": 6, + "var": 2006, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4505, + "actorName": "敌军", + "actorId": 0, + "dataId": 2007, + "relation": 2, + "outIndex": 6, + "dirction": 1, + "x": 2, + "y": 5, + "var": 2007, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4505, + "actorName": "敌军", + "actorId": 0, + "dataId": 2008, + "relation": 2, + "outIndex": 7, + "dirction": 1, + "x": 3, + "y": 5, + "var": 2008, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + }, + { + "warID": 4505, + "actorName": "敌军", + "actorId": 0, + "dataId": 2009, + "relation": 2, + "outIndex": 8, + "dirction": 1, + "x": 2, + "y": 4, + "var": 2009, + "lv": 0, + "hide": 0, + "initial_ai": 1, + "attribute": "&", + "skill": 0, + "seid": "&", + "star": 0, + "spine": 0 + } +] \ No newline at end of file